@groupeactual/ui-kit 1.7.0-beta.7 → 1.7.0

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.
@@ -453,4 +453,59 @@ interface Props {
453
453
  }
454
454
  declare const DesignSystemProvider: ({ children, name: themeName, }: PropsWithChildren<Props>) => React.JSX.Element;
455
455
 
456
- 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, TimePicker, Tooltip };
456
+ interface PaletteDS {
457
+ redActual: string;
458
+ blueClickable: string;
459
+ blueHoverClickable: string;
460
+ greyMediumInactive: string;
461
+ greyXDark: string;
462
+ greyDark: string;
463
+ white: string;
464
+ greyXLight: string;
465
+ greyXDarkBgModal: string;
466
+ blueHoverEquivalence: string;
467
+ blueHoverOpacity12: string;
468
+ greyLightDefaultBorder: string;
469
+ blueInfo: string;
470
+ greenSuccess: string;
471
+ redError: string;
472
+ orangeWarning: string;
473
+ blueDark: string;
474
+ blueMedium: string;
475
+ blueLight: string;
476
+ greenDark: string;
477
+ greenMedium: string;
478
+ green: string;
479
+ brown: string;
480
+ greenLight: string;
481
+ orangeLight: string;
482
+ yellow: string;
483
+ purpleDark: string;
484
+ purple: string;
485
+ pink: string;
486
+ pinkLight: string;
487
+ primary: {
488
+ main: string;
489
+ dark: string;
490
+ };
491
+ secondary: {
492
+ main: string;
493
+ };
494
+ success: {
495
+ main: string;
496
+ };
497
+ error: {
498
+ main: string;
499
+ };
500
+ warning: {
501
+ main: string;
502
+ };
503
+ infos: {
504
+ main: string;
505
+ };
506
+ }
507
+ interface ThemeDS {
508
+ palette: PaletteDS;
509
+ }
510
+
511
+ 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, type ThemeDS, TimePicker, Tooltip };