@kwantis-id3/frontend-library 1.0.0-rc.9 → 1.0.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.
Files changed (44) hide show
  1. package/dist/esm/index.js +185 -96
  2. package/dist/esm/index.js.map +1 -1
  3. package/dist/esm/types/components/Accordion/AccordionStyled.d.ts +2 -0
  4. package/dist/esm/types/components/Accordion/index.d.ts +2 -0
  5. package/dist/esm/types/components/Button/ButtonInterfaces.d.ts +1 -2
  6. package/dist/esm/types/components/Checkbox/Checkbox.d.ts +3 -0
  7. package/dist/esm/types/components/Checkbox/CheckboxInterfaces.d.ts +23 -0
  8. package/dist/esm/types/components/Checkbox/CheckboxStyled.d.ts +32 -0
  9. package/dist/esm/types/components/Checkbox/index.d.ts +2 -0
  10. package/dist/esm/types/components/DataGrid/DataGrid.d.ts +3 -0
  11. package/dist/esm/types/components/DataGrid/DataGridInterfaces.d.ts +9 -0
  12. package/dist/esm/types/components/DataGrid/index.d.ts +2 -0
  13. package/dist/esm/types/components/Drawer/Drawer.d.ts +1 -1
  14. package/dist/esm/types/components/Drawer/DrawerInterfaces.d.ts +14 -0
  15. package/dist/esm/types/components/Drawer/DrawerStyled.d.ts +3 -0
  16. package/dist/esm/types/components/Dropdown/DropdownInterfaces.d.ts +9 -0
  17. package/dist/esm/types/components/Dropdown/DropdownStyled.d.ts +1 -0
  18. package/dist/esm/types/components/Indicator/IndicatorInterfaces.d.ts +1 -1
  19. package/dist/esm/types/components/Indicator/NeutralIndicator.d.ts +3 -0
  20. package/dist/esm/types/components/InputField/InputField.d.ts +1 -1
  21. package/dist/esm/types/components/InputField/InputFieldInterfaces.d.ts +2 -1
  22. package/dist/esm/types/components/MultiViewList/MultiViewGrid.d.ts +5 -0
  23. package/dist/esm/types/components/MultiViewList/MultiViewList.d.ts +1 -0
  24. package/dist/esm/types/components/MultiViewList/MultiViewListInterfaces.d.ts +13 -1
  25. package/dist/esm/types/components/MultiViewList/MultiViewListStyled.d.ts +3 -0
  26. package/dist/esm/types/components/MultiViewList/index.d.ts +1 -0
  27. package/dist/esm/types/components/Slider/Thumb.d.ts +7 -0
  28. package/dist/esm/types/components/Switch/Switch.d.ts +2 -0
  29. package/dist/esm/types/components/Switch/SwitchInterfaces.d.ts +17 -0
  30. package/dist/esm/types/components/Switch/SwitchStyled.d.ts +35 -0
  31. package/dist/esm/types/components/Switch/index.d.ts +2 -0
  32. package/dist/esm/types/components/Table/DebouncedFilter.d.ts +1 -2
  33. package/dist/esm/types/components/Tag/TagInterfaces.d.ts +1 -2
  34. package/dist/esm/types/components/ThemeContext/ThemeContext.d.ts +4 -3
  35. package/dist/esm/types/components/ThemeContext/ThemeInterfaces.d.ts +2 -0
  36. package/dist/esm/types/components/TreeView/TreeUtils.d.ts +19 -0
  37. package/dist/esm/types/components/TreeView/TreeViewInterfaces.d.ts +6 -0
  38. package/dist/esm/types/components/index.d.ts +3 -0
  39. package/dist/esm/types/utils/index.d.ts +4 -5
  40. package/dist/esm/types/utils/isMobile.d.ts +1 -2
  41. package/dist/esm/types/utils/testing.d.ts +21 -0
  42. package/dist/index.d.ts +127 -21
  43. package/package.json +28 -23
  44. package/dist/esm/types/utils/styled.d.ts +0 -2
package/dist/index.d.ts CHANGED
@@ -1,10 +1,11 @@
1
1
  import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
2
- import { Interpolation, Theme as Theme$1 } from '@emotion/react';
3
- import { Theme } from '@emotion/react/dist/declarations/src';
2
+ import * as _emotion_react from '@emotion/react';
3
+ import { Interpolation, Theme } from '@emotion/react';
4
4
  import * as react from 'react';
5
- import { PropsWithChildren, ReactNode, FC } from 'react';
6
- import { ColumnDef } from '@tanstack/react-table';
5
+ import { PropsWithChildren, ReactElement, FC, ReactNode } from 'react';
6
+ import * as _emotion_styled from '@emotion/styled';
7
7
  import { CreateStyled } from '@emotion/styled';
8
+ import { ColumnDef } from '@tanstack/react-table';
8
9
 
9
10
  type TButtonVariants = "contained" | "outlined" | "text";
10
11
  type TButtonProps = {
@@ -95,6 +96,8 @@ interface IIndicatorColors {
95
96
  warningFill: string;
96
97
  error: string;
97
98
  errorFill: string;
99
+ neutral: string;
100
+ neutralFill: string;
98
101
  }
99
102
  interface IPalette {
100
103
  /** Application background */
@@ -140,11 +143,19 @@ interface IThemeContextValue {
140
143
  setMode: (mode: TThemeMode) => void;
141
144
  }
142
145
 
146
+ declare const commonColors: ICommonColors;
143
147
  declare const defaultLightPalette: IPalette;
144
148
  declare const defaultDarkPalette: IPalette;
145
- declare const ThemeContextProvider: ({ palettes, defaultMode, children, }: PropsWithChildren<IThemeContextProps>) => ReactNode;
149
+ declare const ThemeContextProvider: ({ palettes, defaultMode, children, }: PropsWithChildren<IThemeContextProps>) => ReactElement;
146
150
  declare const useThemeContext: () => IThemeContextValue;
147
151
 
152
+ declare const AccordionGroup: _emotion_styled.StyledComponent<{
153
+ theme?: _emotion_react.Theme;
154
+ as?: React.ElementType;
155
+ } & {
156
+ $variant: "default" | "light";
157
+ }, react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
158
+
148
159
  type TAccordionProps = PropsWithChildren & {
149
160
  /** Title to be used if no custom trigger is passed */
150
161
  title: string;
@@ -171,7 +182,7 @@ declare const Accordion: FC<TAccordionProps>;
171
182
  declare const InputField: react.ForwardRefExoticComponent<react.InputHTMLAttributes<HTMLInputElement> & {
172
183
  containerClassName?: string;
173
184
  color?: string;
174
- sx?: React.CSSProperties;
185
+ sx?: _emotion_react.Interpolation<_emotion_react.Theme>;
175
186
  } & react.RefAttributes<HTMLInputElement>>;
176
187
 
177
188
  type TTextFieldProps = React.InputHTMLAttributes<HTMLInputElement> & {
@@ -180,7 +191,7 @@ type TTextFieldProps = React.InputHTMLAttributes<HTMLInputElement> & {
180
191
  /** The color of the input */
181
192
  color?: string;
182
193
  /** Change the styles of the input field */
183
- sx?: React.CSSProperties;
194
+ sx?: Interpolation<Theme>;
184
195
  };
185
196
 
186
197
  interface SingleSelectProps<Option = {
@@ -339,8 +350,17 @@ type TDropdownProps = {
339
350
  bgColor?: string;
340
351
  /** The hover color of the dropdown */
341
352
  hoverColor?: string;
353
+ /** The border color */
354
+ borderColor?: string;
355
+ /** The border width */
356
+ borderWidth?: string;
342
357
  /** Controls wether the dropdown should extend towards the left or the right */
343
358
  direction?: "left" | "right";
359
+ /** Controls whether the dropdown body should have absolute or fixed position
360
+ * By default, it is set to absolute, which means the dropdown will be positioned relative to its parent element.
361
+ * Use fixed if you want the body to be above the entire page, regardless of the parent element.
362
+ */
363
+ menuPosition?: "absolute" | "fixed";
344
364
  /** The mobile breakpoint, by default it's 768px */
345
365
  mobileBreakpoint?: number;
346
366
  };
@@ -380,7 +400,7 @@ type TIndicatorInstanceProps = {
380
400
  type TIndicatorProps = {
381
401
  variant: TIndicatorVariants;
382
402
  } & TIndicatorInstanceProps;
383
- type TIndicatorVariants = "live" | "success" | "warning" | "error";
403
+ type TIndicatorVariants = "live" | "success" | "warning" | "error" | "neutral";
384
404
 
385
405
  type TGenericIndicatorProps = {
386
406
  variant: TIndicatorVariants;
@@ -412,7 +432,7 @@ type TTagProps = {
412
432
  declare const Tag: FC<TTagProps>;
413
433
 
414
434
  type TCardSectionProps = PropsWithChildren & {
415
- sx?: Interpolation<Theme$1>;
435
+ sx?: Interpolation<Theme>;
416
436
  onClick?: (e: React.MouseEvent<HTMLElement>) => void;
417
437
  };
418
438
 
@@ -454,13 +474,35 @@ type TTableRow<T extends TCellValues> = {
454
474
  declare const Table: <Cell extends TCellValues, Row extends TTableRow<Cell>>(props: TTableProps<Cell, Row>) => _emotion_react_jsx_runtime.JSX.Element;
455
475
  declare const renderCell: (value: string | number | boolean | null) => _emotion_react_jsx_runtime.JSX.Element;
456
476
 
477
+ type TDataGridProps<Cell extends TCellValues, Row extends TDataGridRow<Cell>> = {
478
+ columns: ColumnDef<TDataGridRow<Cell>, Cell>[];
479
+ data: Row[] | undefined;
480
+ };
481
+ type TDataGridRow<Cell extends TCellValues> = {
482
+ [key: string]: Cell;
483
+ };
484
+
485
+ declare const DataGrid: <Cell extends TCellValues, Row extends TDataGridRow<Cell>>(props: TDataGridProps<Cell, Row>) => _emotion_react_jsx_runtime.JSX.Element;
486
+
457
487
  type TMultiViewListProps<Cell extends TCellValues, Row extends TTableRow<Cell>> = TTableProps<Cell, Row> & {
458
488
  mode: "table" | "cards";
459
- cardComponent: (item: Row) => React.ReactNode;
489
+ cardComponent: (item: Row, index: number) => React.ReactNode;
490
+ cardsWidth?: string;
491
+ cardsHeight?: string;
492
+ sx?: Interpolation<Theme>;
493
+ };
494
+ type TMultiViewGridProps<Cell extends TCellValues, Row extends TDataGridRow<Cell>> = TDataGridProps<Cell, Row> & {
495
+ mode: "table" | "cards";
496
+ cardComponent: (item: Row, index: number) => React.ReactNode;
497
+ cardsWidth?: string;
498
+ cardsHeight?: string;
499
+ sx?: Interpolation<Theme>;
460
500
  };
461
501
 
462
502
  declare const MultiViewList: <Cell extends TCellValues, Row extends TTableRow<Cell>>(props: TMultiViewListProps<Cell, Row>) => _emotion_react_jsx_runtime.JSX.Element;
463
503
 
504
+ declare const MultiViewGrid: <Cell extends TCellValues, Row extends TDataGridRow<Cell>>(props: TMultiViewGridProps<Cell, Row>) => _emotion_react_jsx_runtime.JSX.Element;
505
+
464
506
  /**
465
507
  * A callback to customize how items are rendered
466
508
  * @property isOpen: A boolean indicating if the item is expanded
@@ -505,10 +547,16 @@ type TTreeViewProps = TTreeItemFunctions & {
505
547
  /** Disable multi-selection possibility */
506
548
  isMultiSelectionDisabled?: boolean;
507
549
  /** Custom styles */
508
- sx?: Interpolation<Theme$1>;
550
+ sx?: Interpolation<Theme>;
509
551
  };
510
552
  type TUncontrolledTreeViewProps = TTreeViewProps & {
511
553
  items: TTreeViewItem[];
554
+ /** A search string used to filter the items. */
555
+ searchString?: string;
556
+ /** The ids of the items that should be expanded by default */
557
+ defaultExpandedItems?: string[];
558
+ /** Only allow one root item to be expanded at a time */
559
+ singleRootExpand?: boolean;
512
560
  };
513
561
  type TControlledTreeViewProps = TTreeViewProps & {
514
562
  /** The current state of the Tree View. */
@@ -534,7 +582,7 @@ type TTreeViewItem = TTreeItemFunctions & {
534
582
  /** A callback to fetch children asynchronously */
535
583
  childrenAsync?: () => Promise<TTreeViewItem[]>;
536
584
  /** Custom styles */
537
- sx?: Interpolation<Theme$1>;
585
+ sx?: Interpolation<Theme>;
538
586
  };
539
587
 
540
588
  /** @jsxImportSource @emotion/react */
@@ -546,6 +594,8 @@ declare const UncontrolledTreeView: FC<TUncontrolledTreeViewProps>;
546
594
  type TDrawerProps = {
547
595
  /** Position of the drawer */
548
596
  anchor: "top" | "right" | "bottom" | "left";
597
+ /** Optional state value to control the component */
598
+ isOpen?: boolean;
549
599
  /** Trigger showed when drawer is closed */
550
600
  closedTrigger?: ReactNode;
551
601
  /** Trigger showed when drawer is open */
@@ -560,18 +610,67 @@ type TDrawerProps = {
560
610
  maxOpen?: number;
561
611
  /** Background color */
562
612
  bgColor?: string;
613
+ /** Trigger Color */
614
+ triggerColor?: string;
563
615
  /** Trigger hover color */
564
616
  triggerHoverColor?: string;
617
+ /** Hide the default thumb trigger */
618
+ hideTrigger?: boolean;
619
+ /** Keep rendered when closed to preserve state */
620
+ keepMounted?: boolean;
621
+ /** Set a custom z-index */
622
+ zIndex?: number;
623
+ sx?: Interpolation<Theme>;
624
+ onOpen?: () => void;
625
+ onClose?: () => void;
565
626
  };
566
627
 
567
- declare const Drawer: ({ anchor, openContent, closedContent, openTrigger, closedTrigger, minOpen, maxOpen, bgColor, triggerHoverColor, }: TDrawerProps) => _emotion_react_jsx_runtime.JSX.Element;
628
+ declare const Drawer: ({ anchor, isOpen: isOpenProp, openContent, closedContent, openTrigger, closedTrigger, minOpen, maxOpen, bgColor, triggerColor, triggerHoverColor, onOpen, onClose, zIndex, hideTrigger, keepMounted, sx, }: TDrawerProps) => _emotion_react_jsx_runtime.JSX.Element;
568
629
 
569
- /**
570
- * Hook to check if the screen is mobile. The default breakpoint is 768px.
571
- * @param {number=} mobileBreakpoint breakpoint width to check against
572
- * @returns boolean
573
- */
574
- declare const useIsMobile: (mobileBreakpoint?: number) => boolean;
630
+ type TCheckboxProps = {
631
+ /** Lable of the checkbox */
632
+ label?: string;
633
+ /** HTML id */
634
+ htmlId?: string;
635
+ name?: string;
636
+ /** Controlled checked state */
637
+ checked?: boolean;
638
+ /** Uncontrolled default checked state */
639
+ defaultChecked?: boolean;
640
+ /** onChange handler */
641
+ onChange?: (checked: boolean) => void;
642
+ /** Mixed state in its children checkboxes */
643
+ indeterminate?: boolean;
644
+ /** Disabled state */
645
+ disabled?: boolean;
646
+ className?: string;
647
+ /** Custom styles */
648
+ sx?: Interpolation<Theme>;
649
+ /** Checkbox sizes */
650
+ size?: "small" | "medium" | "large";
651
+ };
652
+
653
+ declare const Checkbox: ({ label, htmlId, checked, defaultChecked, onChange, indeterminate, disabled, className, sx, name, size, }: TCheckboxProps) => _emotion_react_jsx_runtime.JSX.Element;
654
+
655
+ type TSwitchProps = {
656
+ /** Whether the switch is checked (controlled) */
657
+ checked?: boolean;
658
+ /** Default checked state (uncontrolled) */
659
+ defaultChecked?: boolean;
660
+ /** Callback function when the switch state changes */
661
+ onChange?: (checked: boolean) => void;
662
+ /** The color of switch when checked */
663
+ color?: string;
664
+ /** The label for the switch */
665
+ label?: string;
666
+ /** Size of switch */
667
+ size?: "small" | "medium" | "large";
668
+ /** HTML id */
669
+ htmlId?: string;
670
+ className?: string;
671
+ };
672
+
673
+ declare const Switch: (props: TSwitchProps) => _emotion_react_jsx_runtime.JSX.Element;
575
674
 
576
675
  /**
577
676
  * emotion.js doesn't support transient options out of the box.
@@ -582,7 +681,12 @@ declare const useIsMobile: (mobileBreakpoint?: number) => boolean;
582
681
  */
583
682
  declare const transientOptions: Parameters<CreateStyled>[1];
584
683
 
585
- declare const styled: CreateStyled;
684
+ /**
685
+ * Hook to check if the screen is mobile. The default breakpoint is 768px.
686
+ * @param {number=} mobileBreakpoint breakpoint width to check against
687
+ * @returns boolean
688
+ */
689
+ declare const useIsMobile: (mobileBreakpoint?: number) => boolean;
586
690
 
587
691
  /**
588
692
  *
@@ -615,4 +719,6 @@ declare const getHoverColor: (color: string) => string;
615
719
  */
616
720
  declare const getActiveColor: (color: string) => string;
617
721
 
618
- export { Accordion, Button, Card, CardContent, CardFooter, CardHeader, CardIndicators, CardMediaSection, ControlledTreeView, Drawer, Dropdown, IBackgroundColors, ICommonColors, IIndicatorColors, IPalette, IStandardPaletteColor, ITagColors, IThemeContextProps, IThemeContextValue, Indicator, InputField, Modal, MultiSelect, MultiSelectProps, MultiViewList, SingleSelect, SingleSelectProps, Slider, TAccordionProps, TButtonProps, TButtonVariants, TCardSectionProps, TCellValues, TColorScale, TControlledTreeViewProps, TCustomRenderProps, TDrawerProps, TDropdownItem, TDropdownItemProps, TDropdownProps, TIndicatorInstanceProps, TIndicatorProps, TIndicatorVariants, TModalProps, TMultiViewListProps, TRenderTriggerProps, TSliderProps, TTableCell, TTableProps, TTableRow, TTagProps, TTextFieldProps, TThemeMode, TTreeViewItem, TUncontrolledTreeViewProps, TViewState, Table, Tag, ThemeContextProvider, UncontrolledTreeView, darkenColor, defaultDarkPalette, defaultLightPalette, getActiveColor, getContrastColor, getHoverColor, lightenColor, renderCell, styled, transientOptions, useIsMobile, useThemeContext };
722
+ declare function usePrefersColorScheme(): "light" | "dark";
723
+
724
+ export { Accordion, AccordionGroup, Button, Card, CardContent, CardFooter, CardHeader, CardIndicators, CardMediaSection, Checkbox, ControlledTreeView, DataGrid, Drawer, Dropdown, IBackgroundColors, ICommonColors, IIndicatorColors, IPalette, IStandardPaletteColor, ITagColors, IThemeContextProps, IThemeContextValue, Indicator, InputField, Modal, MultiSelect, MultiSelectProps, MultiViewGrid, MultiViewList, SingleSelect, SingleSelectProps, Slider, Switch, TAccordionProps, TButtonProps, TButtonVariants, TCardSectionProps, TCellValues, TCheckboxProps, TColorScale, TControlledTreeViewProps, TCustomRenderProps, TDataGridProps, TDataGridRow, TDrawerProps, TDropdownItem, TDropdownItemProps, TDropdownProps, TIndicatorInstanceProps, TIndicatorProps, TIndicatorVariants, TModalProps, TMultiViewGridProps, TMultiViewListProps, TRenderTriggerProps, TSliderProps, TSwitchProps, TTableCell, TTableProps, TTableRow, TTagProps, TTextFieldProps, TThemeMode, TTreeViewItem, TUncontrolledTreeViewProps, TViewState, Table, Tag, ThemeContextProvider, UncontrolledTreeView, commonColors, darkenColor, defaultDarkPalette, defaultLightPalette, getActiveColor, getContrastColor, getHoverColor, lightenColor, renderCell, transientOptions, useIsMobile, usePrefersColorScheme, useThemeContext };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kwantis-id3/frontend-library",
3
- "version": "1.0.0-rc.9",
3
+ "version": "1.0.0",
4
4
  "description": "Kwantis frontend components collection",
5
5
  "scriptsComments": {
6
6
  "storybook": "Starts storybook in development mode",
@@ -27,7 +27,6 @@
27
27
  "test": "vitest run",
28
28
  "test:watch": "vitest",
29
29
  "test:coverage": "vitest --coverage",
30
- "chromatic": "npx chromatic --project-token=3dd812d03e4c",
31
30
  "build": "pnpm rollup",
32
31
  "bump:patch": "pnpm version patch",
33
32
  "bump:minor": "pnpm version minor",
@@ -42,20 +41,16 @@
42
41
  },
43
42
  "license": "apache-2.0",
44
43
  "devDependencies": {
45
- "@iconify/react": "^5.2.0",
44
+ "@emotion/jest": "^11.11.0",
46
45
  "@rollup/plugin-commonjs": "^24.0.1",
47
46
  "@rollup/plugin-node-resolve": "^15.0.1",
48
47
  "@rollup/plugin-terser": "^0.4.4",
49
48
  "@rollup/plugin-typescript": "^11.0.0",
50
- "@storybook/addon-essentials": "^8.6.4",
51
- "@storybook/addon-interactions": "^8.6.4",
52
- "@storybook/addon-links": "^8.6.4",
53
- "@storybook/addon-webpack5-compiler-swc": "^2.1.0",
54
- "@storybook/blocks": "^8.6.4",
55
- "@storybook/react": "^8.6.4",
56
- "@storybook/react-webpack5": "^8.6.4",
57
- "@storybook/test": "^8.6.4",
58
- "@storybook/types": "^8.6.4",
49
+ "@storybook/addon-docs": "^10.1.10",
50
+ "@storybook/addon-links": "^10.1.10",
51
+ "@storybook/addon-webpack5-compiler-swc": "^4.0.2",
52
+ "@storybook/react": "^10.1.10",
53
+ "@storybook/react-webpack5": "^10.1.10",
59
54
  "@testing-library/jest-dom": "^5.16.5",
60
55
  "@testing-library/react": "^16.2.0",
61
56
  "@testing-library/user-event": "^14.6.1",
@@ -65,26 +60,31 @@
65
60
  "@types/tinycolor2": "^1.4.3",
66
61
  "@typescript-eslint/eslint-plugin": "^5.58.0",
67
62
  "@typescript-eslint/parser": "^5.58.0",
68
- "@vitest/coverage-v8": "^3.0.5",
63
+ "@vitejs/plugin-react": "^5.1.2",
64
+ "@vitest/coverage-v8": "3.0.5",
69
65
  "chromatic": "^11.0.4",
70
- "eslint": "^8.38.0",
66
+ "eslint": "^8.57.1",
71
67
  "eslint-config-prettier": "^8.8.0",
72
68
  "eslint-plugin-react": "^7.32.2",
73
69
  "eslint-plugin-react-hooks": "^4.6.0",
74
- "eslint-plugin-storybook": "^0.11.4",
75
- "jsdom": "^23.0.1",
70
+ "eslint-plugin-storybook": "^10.1.10",
71
+ "jsdom": "^23.2.0",
72
+ "lucide-react": "^0.545.0",
76
73
  "prop-types": "15.8.1",
77
74
  "rollup": "^3.20.2",
78
75
  "rollup-plugin-dts": "^5.3.0",
79
76
  "rollup-plugin-peer-deps-external": "^2.2.4",
80
- "storybook": "^8.6.4",
77
+ "storybook": "^10.1.10",
81
78
  "ts-node": "^10.9.1",
82
79
  "tslib": "^2.5.0",
83
80
  "typescript": "^5.7.3",
84
81
  "vitest": "^3.0.5"
85
82
  },
86
83
  "peerDependencies": {
84
+ "@emotion/react": "^11.0.0",
85
+ "@emotion/styled": "^11.0.0",
87
86
  "@tanstack/react-table": "^8.0.0",
87
+ "lucide-react": "^0.545.0",
88
88
  "react": "^18.0.0 || ^19.0.0",
89
89
  "react-dom": "^18.0.0 || ^19.0.0"
90
90
  },
@@ -96,14 +96,10 @@
96
96
  ],
97
97
  "types": "dist/index.d.ts",
98
98
  "dependencies": {
99
- "@emotion/jest": "^11.11.0",
100
- "@emotion/react": "11.14.0",
101
- "@emotion/styled": "11.14.0",
102
99
  "react-range": "^1.8.14",
103
100
  "react-select": "^5.7.3",
104
101
  "tinycolor2": "^1.6.0"
105
102
  },
106
- "readme": "ERROR: No README data found!",
107
103
  "pnpm": {
108
104
  "overrides": {
109
105
  "@adobe/css-tools@<4.3.1": ">=4.3.1",
@@ -113,8 +109,17 @@
113
109
  "semver@>=7.0.0 <7.5.2": ">=7.5.2",
114
110
  "tough-cookie@<4.1.3": ">=4.1.3",
115
111
  "word-wrap@<1.2.4": ">=1.2.4",
116
- "@babel/traverse@<7.23.2": ">=7.23.2"
112
+ "@babel/traverse@<7.23.2": ">=7.23.2",
113
+ "brace-expansion@>=1.0.0 <=1.1.11": ">=1.1.12",
114
+ "brace-expansion@>=2.0.0 <=2.0.1": ">=2.0.2",
115
+ "form-data@>=4.0.0 <4.0.4": ">=4.0.4",
116
+ "js-yaml@>=4.0.0 <4.1.1": ">=4.1.1",
117
+ "glob@>=10.2.0 <10.5.0": ">=10.5.0"
117
118
  }
118
119
  },
119
- "packageManager": "pnpm@8.15.9+sha512.499434c9d8fdd1a2794ebf4552b3b25c0a633abcee5bb15e7b5de90f32f47b513aca98cd5cfd001c31f0db454bc3804edccd578501e4ca293a6816166bbd9f81"
120
+ "engines": {
121
+ "node": ">=20.0.0",
122
+ "pnpm": ">=10.0.0"
123
+ },
124
+ "packageManager": "pnpm@10.0.0+sha512.b8fef5494bd3fe4cbd4edabd0745df2ee5be3e4b0b8b08fa643aa3e4c6702ccc0f00d68fa8a8c9858a735a0032485a44990ed2810526c875e416f001b17df12b"
120
125
  }
@@ -1,2 +0,0 @@
1
- import { CreateStyled } from "@emotion/styled";
2
- export declare const styled: CreateStyled;