@groupeactual/ui-kit 1.7.4 → 1.7.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/es/index.d.ts
CHANGED
|
@@ -508,8 +508,5 @@ interface PaletteDS {
|
|
|
508
508
|
main: string;
|
|
509
509
|
};
|
|
510
510
|
}
|
|
511
|
-
interface ThemeDS {
|
|
512
|
-
palette: PaletteDS;
|
|
513
|
-
}
|
|
514
511
|
|
|
515
|
-
export { type AcceptTextType, Accordion, AutocompleteMultipleSelect as AutoCompleteMulti, AutoCompleteSingle, BannerNotification, Breadcrumbs, Button, Checkbox, CheckboxGroup, type CheckboxItemType, Chip, Datatable, DatatableCellRender, DatePicker, DesignSystemContext, type DesignSystemContextValues, DesignSystemProvider, Dialog, Drawer, EmbeddedNotification, type FileDataType, FileUploader, IconButton, IconProvider, Link, MenuItem, MultiSelect, NotistackAdapter, Pagination, RadioGroup, Select, Snackbar, Stepper, Switch, Text, TextField,
|
|
512
|
+
export { type AcceptTextType, Accordion, AutocompleteMultipleSelect as AutoCompleteMulti, AutoCompleteSingle, BannerNotification, Breadcrumbs, Button, Checkbox, CheckboxGroup, type CheckboxItemType, Chip, Datatable, DatatableCellRender, DatePicker, DesignSystemContext, type DesignSystemContextValues, DesignSystemProvider, Dialog, Drawer, EmbeddedNotification, type FileDataType, FileUploader, IconButton, IconProvider, Link, MenuItem, MultiSelect, NotistackAdapter, Pagination, type PaletteDS, RadioGroup, Select, Snackbar, Stepper, Switch, Text, TextField, TimePicker, Tooltip };
|
package/dist/es/src/index.d.ts
CHANGED
|
@@ -2,4 +2,4 @@ export * from './components';
|
|
|
2
2
|
export { default as DesignSystemProvider } from './DesignSystemProvider';
|
|
3
3
|
export { DesignSystemContext } from './DesignSystemProvider';
|
|
4
4
|
export { type DesignSystemContextValues } from './DesignSystemProvider';
|
|
5
|
-
export { type
|
|
5
|
+
export { type PaletteDS } from './interfaces/theme';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
interface PaletteDS {
|
|
1
|
+
export interface PaletteDS {
|
|
2
2
|
redActual: string;
|
|
3
3
|
blueClickable: string;
|
|
4
4
|
blueHoverClickable: string;
|
|
@@ -49,7 +49,3 @@ interface PaletteDS {
|
|
|
49
49
|
main: string;
|
|
50
50
|
};
|
|
51
51
|
}
|
|
52
|
-
export interface ThemeDS {
|
|
53
|
-
palette: PaletteDS;
|
|
54
|
-
}
|
|
55
|
-
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@groupeactual/ui-kit",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A simple template for a custom React component library",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@mui/x-date-pickers": "7.15.0",
|
|
34
34
|
"@mui/x-date-pickers-pro": "7.15.0",
|
|
35
35
|
"styled-components": "^6.1.13",
|
|
36
|
-
"@groupeactual/design-tokens": "1.7.
|
|
36
|
+
"@groupeactual/design-tokens": "1.7.5"
|
|
37
37
|
},
|
|
38
38
|
"scripts": {
|
|
39
39
|
"build": "rollup -c",
|
package/src/index.ts
CHANGED
|
@@ -2,4 +2,4 @@ export * from './components';
|
|
|
2
2
|
export { default as DesignSystemProvider } from './DesignSystemProvider';
|
|
3
3
|
export { DesignSystemContext } from './DesignSystemProvider';
|
|
4
4
|
export { type DesignSystemContextValues } from './DesignSystemProvider';
|
|
5
|
-
export { type
|
|
5
|
+
export { type PaletteDS } from './interfaces/theme';
|
package/src/interfaces/theme.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
interface PaletteDS {
|
|
1
|
+
export interface PaletteDS {
|
|
2
2
|
redActual: string;
|
|
3
3
|
blueClickable: string;
|
|
4
4
|
blueHoverClickable: string;
|
|
@@ -49,7 +49,3 @@ interface PaletteDS {
|
|
|
49
49
|
main: string;
|
|
50
50
|
};
|
|
51
51
|
}
|
|
52
|
-
|
|
53
|
-
export interface ThemeDS {
|
|
54
|
-
palette: PaletteDS;
|
|
55
|
-
}
|