Skip to content

Commit cd42226

Browse files
committed
sync(*): develop to master
Signed-off-by: Anoop N <[email protected]>
2 parents b03ad50 + 291e338 commit cd42226

File tree

109 files changed

+3807
-12
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+3807
-12
lines changed

.sonarcloud.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sonar.projectName=manager
77
sonar.sources=.
88
sonar.sourceEncoding=UTF-8
99
sonar.ws.timeout=60
10-
sonar.projectVersion=radium-eagle
10+
sonar.projectVersion=radium-eagle-2
1111

1212
sonar.exclusions=node_modules/**, **/node_modules/**, **/dist/**, **/semantic/**, **/coverage/**, **/static/**, **/mock/**, **/mockServiceWorker.js
1313
sonar.coverage.exclusions=**/*.spec.js

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,4 +135,4 @@
135135
"node": "^22",
136136
"yarn": ">=1.21.1"
137137
}
138-
}
138+
}

packages/manager-ui-kit/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.2.0](https://github.com/ovh/manager/compare/@ovh-ux/[email protected]...@ovh-ux/[email protected]) (2025-10-29)
7+
8+
### Features
9+
10+
- add missing components ([694d3f4](https://github.com/ovh/manager/commit/694d3f47c8c7fe94bc8f03948bebc719962b29ab)), closes [#MANAGER-19484](https://github.com/ovh/manager/issues/MANAGER-19484)
11+
- **muk:** export ODS enums from MUK ([20000ab](https://github.com/ovh/manager/commit/20000ab43846d97d7d3dba09ad681fc6ea684d8d))
12+
613
## [0.1.2](https://github.com/ovh/manager/compare/@ovh-ux/[email protected]...@ovh-ux/[email protected]) (2025-10-29)
714

815
**Note:** Version bump only for package @ovh-ux/muk

packages/manager-ui-kit/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ovh-ux/muk",
3-
"version": "0.1.2",
3+
"version": "0.2.0",
44
"license": "BSD-3-Clause",
55
"author": "OVH SAS",
66
"description": "MUK:Manager UI Kit",
@@ -26,6 +26,7 @@
2626
"lint:modern:fix": "manager-lint --fix --config eslint.config.mjs ./src",
2727
"prepare": "tsc && vite build",
2828
"test": "TZ=UTC manager-test run",
29+
"test:update": "TZ=UTC manager-test run -u",
2930
"test:ci": "TZ=UTC manager-test run --coverage"
3031
},
3132
"lint-staged": {
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import {
2+
BADGE_COLOR,
3+
BADGE_COLORS,
4+
BADGE_SIZE,
5+
BADGE_SIZES,
6+
} from '@ovhcloud/ods-react';
7+
8+
export { BADGE_SIZE, BADGE_SIZES, BADGE_COLOR, BADGE_COLORS };
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
export { Badge } from './badge.component';
22

33
export type { BadgeProps } from './badge.props';
4+
5+
export * from './Badge.constants';
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { BREADCRUMB_I18N } from '@ovhcloud/ods-react';
2+
3+
export { BREADCRUMB_I18N };
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
export { Breadcrumb } from './Breadcrumb.component';
22
export type { BreadcrumbProps } from './Breadcrumb.props';
3+
export * from './Breadcrumb.constants';
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import {
2+
BUTTON_COLOR,
3+
BUTTON_COLORS,
4+
BUTTON_SIZE,
5+
BUTTON_SIZES,
6+
BUTTON_VARIANT,
7+
BUTTON_VARIANTS,
8+
} from '@ovhcloud/ods-react';
9+
10+
export {
11+
BUTTON_COLOR,
12+
BUTTON_COLORS,
13+
BUTTON_SIZE,
14+
BUTTON_SIZES,
15+
BUTTON_VARIANTS,
16+
BUTTON_VARIANT,
17+
};
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
export { Button } from './Button.component';
22
export type { ButtonProps } from './Button.props';
3+
export * from './Button.constants';

0 commit comments

Comments
 (0)