@internxt/ui 0.0.25

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 (98) hide show
  1. package/README.md +69 -0
  2. package/dist/components/avatar/Avatar.d.ts +29 -0
  3. package/dist/components/avatar/components/DefaultAvatar.d.ts +5 -0
  4. package/dist/components/avatar/components/PictureAvatar.d.ts +6 -0
  5. package/dist/components/avatar/index.d.ts +1 -0
  6. package/dist/components/baseDialog/BaseDialog.d.ts +62 -0
  7. package/dist/components/baseDialog/index.d.ts +2 -0
  8. package/dist/components/breadcrumbs/Breadcrumbs.d.ts +68 -0
  9. package/dist/components/breadcrumbs/BreadcrumbsItem.d.ts +91 -0
  10. package/dist/components/breadcrumbs/index.d.ts +3 -0
  11. package/dist/components/button/Button.d.ts +75 -0
  12. package/dist/components/button/index.d.ts +2 -0
  13. package/dist/components/buttonCircle/CircleButton.d.ts +19 -0
  14. package/dist/components/buttonCircle/index.d.ts +2 -0
  15. package/dist/components/card/Card.d.ts +17 -0
  16. package/dist/components/card/index.d.ts +1 -0
  17. package/dist/components/checkbox/Checkbox.d.ts +46 -0
  18. package/dist/components/checkbox/index.d.ts +2 -0
  19. package/dist/components/contextMenu/ContextMenu.d.ts +56 -0
  20. package/dist/components/contextMenu/index.d.ts +2 -0
  21. package/dist/components/copyable/Copyable.d.ts +27 -0
  22. package/dist/components/copyable/index.d.ts +2 -0
  23. package/dist/components/dialog/Dialog.d.ts +50 -0
  24. package/dist/components/dialog/index.d.ts +2 -0
  25. package/dist/components/dropdown/Dropdown.d.ts +20 -0
  26. package/dist/components/dropdown/index.d.ts +2 -0
  27. package/dist/components/empty/Empty.d.ts +40 -0
  28. package/dist/components/empty/index.d.ts +2 -0
  29. package/dist/components/header/Header.d.ts +24 -0
  30. package/dist/components/header/index.d.ts +2 -0
  31. package/dist/components/index.d.ts +28 -0
  32. package/dist/components/infiniteScroll/InfiniteScroll.d.ts +45 -0
  33. package/dist/components/infiniteScroll/index.d.ts +2 -0
  34. package/dist/components/input/Input.d.ts +115 -0
  35. package/dist/components/input/index.d.ts +2 -0
  36. package/dist/components/list/List.d.ts +135 -0
  37. package/dist/components/list/ListHeader.d.ts +33 -0
  38. package/dist/components/list/ListItem.d.ts +25 -0
  39. package/dist/components/list/index.d.ts +2 -0
  40. package/dist/components/loader/Loader.d.ts +40 -0
  41. package/dist/components/loader/index.d.ts +2 -0
  42. package/dist/components/menu/Menu.d.ts +72 -0
  43. package/dist/components/menu/index.d.ts +2 -0
  44. package/dist/components/modal/Modal.d.ts +53 -0
  45. package/dist/components/modal/index.d.ts +2 -0
  46. package/dist/components/modalTransparent/TransparentModal.d.ts +11 -0
  47. package/dist/components/modalTransparent/index.d.ts +2 -0
  48. package/dist/components/popover/Popover.d.ts +30 -0
  49. package/dist/components/popover/index.d.ts +2 -0
  50. package/dist/components/radioButton/RadioButton.d.ts +26 -0
  51. package/dist/components/radioButton/index.d.ts +2 -0
  52. package/dist/components/skeletonLoader/SkeletonLoader.d.ts +19 -0
  53. package/dist/components/skeletonLoader/index.d.ts +2 -0
  54. package/dist/components/slider/RangeSlider.d.ts +56 -0
  55. package/dist/components/slider/index.d.ts +2 -0
  56. package/dist/components/switch/Switch.d.ts +33 -0
  57. package/dist/components/switch/index.d.ts +2 -0
  58. package/dist/components/table/Table.d.ts +59 -0
  59. package/dist/components/table/index.d.ts +6 -0
  60. package/dist/components/textArea/TextArea.d.ts +36 -0
  61. package/dist/components/textArea/index.d.ts +2 -0
  62. package/dist/components/tooltip/Tooltip.d.ts +46 -0
  63. package/dist/components/tooltip/index.d.ts +2 -0
  64. package/dist/hooks/useHotKeys.d.ts +5 -0
  65. package/dist/index.cjs.js +198 -0
  66. package/dist/index.cjs.js.map +1 -0
  67. package/dist/index.d.ts +1 -0
  68. package/dist/index.es.js +6052 -0
  69. package/dist/index.es.js.map +1 -0
  70. package/dist/stories/components/avatar/Avatar.stories.d.ts +18 -0
  71. package/dist/stories/components/baseDialog/BaseDialog.stories.d.ts +9 -0
  72. package/dist/stories/components/breadcrumbs/breadcrumbs.stories.d.ts +10 -0
  73. package/dist/stories/components/button/Button.stories.d.ts +12 -0
  74. package/dist/stories/components/buttonCircle/ButtonCircle.stories.d.ts +25 -0
  75. package/dist/stories/components/card/Card.stories.d.ts +8 -0
  76. package/dist/stories/components/checkbox/Checkbox.stories.d.ts +12 -0
  77. package/dist/stories/components/contextMenu/ContextMenu.stories.d.ts +7 -0
  78. package/dist/stories/components/copyable/Copyable.stories.d.ts +8 -0
  79. package/dist/stories/components/dialog/Dialog.stories.d.ts +7 -0
  80. package/dist/stories/components/dropdown/Dropdown.stories.d.ts +8 -0
  81. package/dist/stories/components/empty/Empty.stories.d.ts +8 -0
  82. package/dist/stories/components/header/Header.stories.d.ts +8 -0
  83. package/dist/stories/components/infiniteScroll/InfiniteScroll.stories.d.ts +8 -0
  84. package/dist/stories/components/input/Input.stories.d.ts +12 -0
  85. package/dist/stories/components/list/List.stories.d.ts +13 -0
  86. package/dist/stories/components/loader/Loader.stories.d.ts +11 -0
  87. package/dist/stories/components/menu/Menu.stories.d.ts +8 -0
  88. package/dist/stories/components/modal/Modal.stories.d.ts +7 -0
  89. package/dist/stories/components/modalTransparent/TransparentModal.stories.d.ts +9 -0
  90. package/dist/stories/components/popover/Popover.stories.d.ts +7 -0
  91. package/dist/stories/components/radioButton/RadioButton.stories.d.ts +7 -0
  92. package/dist/stories/components/skeletonLoader/SkeletonLoader.stories.d.ts +7 -0
  93. package/dist/stories/components/slider/RangeSlider.stories.d.ts +7 -0
  94. package/dist/stories/components/switch/Switch.stories.d.ts +9 -0
  95. package/dist/stories/components/table/Table.stories.d.ts +6 -0
  96. package/dist/stories/components/textArea/TextArea.stories.d.ts +8 -0
  97. package/dist/stories/components/tooltip/Tooltip.stories.d.ts +11 -0
  98. package/package.json +106 -0
@@ -0,0 +1,18 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Avatar } from '../../../components/avatar';
3
+
4
+ declare const meta: Meta<typeof Avatar>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const DefaultAvatarXXS: Story;
8
+ export declare const PictureAvatarXXS: Story;
9
+ export declare const DefaultAvatarXS: Story;
10
+ export declare const PictureAvatarXS: Story;
11
+ export declare const DefaultAvatarSM: Story;
12
+ export declare const PictureAvatarSM: Story;
13
+ export declare const DefaultAvatarBase: Story;
14
+ export declare const PictureAvatarBase: Story;
15
+ export declare const DefaultAvatarLG: Story;
16
+ export declare const PictureAvatarLG: Story;
17
+ export declare const DefaultAvatarXL: Story;
18
+ export declare const PictureAvatarXL: Story;
@@ -0,0 +1,9 @@
1
+ import { BaseDialog } from '../../../components/baseDialog';
2
+ import { Meta, StoryObj } from '@storybook/react';
3
+
4
+ declare const meta: Meta<typeof BaseDialog>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const Default: Story;
8
+ export declare const WithoutCloseButton: Story;
9
+ export declare const CustomStyles: Story;
@@ -0,0 +1,10 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Breadcrumbs } from '../../../components/breadcrumbs';
3
+
4
+ declare const meta: Meta<typeof Breadcrumbs>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const DefaultBreadcrumbs: Story;
8
+ export declare const BreadcrumbWithHiddenItems: Story;
9
+ export declare const BreadcrumbWithIcons: Story;
10
+ export declare const BreadcrumbsWithCustomMenu: Story;
@@ -0,0 +1,12 @@
1
+ import { Button } from '../../../components/button';
2
+ import { Meta, StoryObj } from '@storybook/react';
3
+
4
+ declare const meta: Meta<typeof Button>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const Primary: Story;
8
+ export declare const Secondary: Story;
9
+ export declare const Tertiary: Story;
10
+ export declare const Ghost: Story;
11
+ export declare const Destructive: Story;
12
+ export declare const Loading: Story;
@@ -0,0 +1,25 @@
1
+ import { StoryObj } from '@storybook/react';
2
+
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ children, variant, active, onClick, onClickToggleButton, className, dropdown, indicator, isOpen, handleOpen, handleClose, }: import('../../../components/buttonCircle').CircleButtonProps) => JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ backgrounds: {
9
+ default: string;
10
+ values: {
11
+ name: string;
12
+ value: string;
13
+ }[];
14
+ };
15
+ };
16
+ tags: string[];
17
+ };
18
+ export default meta;
19
+ type Story = StoryObj<typeof meta>;
20
+ export declare const Default: Story;
21
+ export declare const Active: Story;
22
+ export declare const WithWarning: Story;
23
+ export declare const WithCustomIndicator: Story;
24
+ export declare const CancelButton: Story;
25
+ export declare const ButtonGroup: Story;
@@ -0,0 +1,8 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Card } from '../../../components/card';
3
+
4
+ declare const meta: Meta<typeof Card>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof Card>;
7
+ export declare const Default: Story;
8
+ export declare const CustomStyledCard: Story;
@@ -0,0 +1,12 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Checkbox } from '../../../components/checkbox';
3
+
4
+ declare const meta: Meta<typeof Checkbox>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const Enabled: Story;
8
+ export declare const Disabled: Story;
9
+ export declare const Checked: Story;
10
+ export declare const CheckedAndDisabled: Story;
11
+ export declare const Indeterminate: Story;
12
+ export declare const IndeterminateDisabled: Story;
@@ -0,0 +1,7 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+
3
+ declare const ContextMenuWithNotifications: () => import("react/jsx-runtime").JSX.Element;
4
+ declare const meta: Meta<typeof ContextMenuWithNotifications>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const DefaultContextMenu: Story;
@@ -0,0 +1,8 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Copyable } from '../../../components/copyable';
3
+
4
+ declare const meta: Meta<typeof Copyable>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof Copyable>;
7
+ export declare const Default: Story;
8
+ export declare const WithCustomClassName: Story;
@@ -0,0 +1,7 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Dialog } from '../../../components/dialog';
3
+
4
+ declare const meta: Meta<typeof Dialog>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const DialogExample: Story;
@@ -0,0 +1,8 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Dropdown } from '../../../components/dropdown';
3
+
4
+ declare const meta: Meta<typeof Dropdown>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const RightAlign: Story;
8
+ export declare const LeftAlign: Story;
@@ -0,0 +1,8 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Empty } from '../../../components/empty';
3
+
4
+ declare const meta: Meta<typeof Empty>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof Empty>;
7
+ export declare const Default: Story;
8
+ export declare const WithAction: Story;
@@ -0,0 +1,8 @@
1
+ import { Header } from '../../../components/header';
2
+ import { Meta, StoryObj } from '@storybook/react';
3
+
4
+ declare const meta: Meta<typeof Header>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const TestHeader: Story;
8
+ export declare const CustomHeader: Story;
@@ -0,0 +1,8 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { InfiniteScroll } from '../../../components/infiniteScroll';
3
+
4
+ declare const meta: Meta<typeof InfiniteScroll>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const Default: Story;
8
+ export declare const NoMoreItems: Story;
@@ -0,0 +1,12 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Input } from '../../../components/input';
3
+
4
+ declare const meta: Meta<typeof Input>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const Text: Story;
8
+ export declare const Search: Story;
9
+ export declare const Password: Story;
10
+ export declare const SuccessMessage: Story;
11
+ export declare const ErrorMessage: Story;
12
+ export declare const WarningMessage: Story;
@@ -0,0 +1,13 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { List } from '../../../components/list';
3
+
4
+ type DriveItemData = {
5
+ id: number;
6
+ name: string;
7
+ power: number;
8
+ type: string;
9
+ };
10
+ declare const meta: Meta<typeof List<DriveItemData, 'name' | 'power' | 'type'>>;
11
+ export default meta;
12
+ type Story = StoryObj<typeof meta>;
13
+ export declare const ListLayout: Story;
@@ -0,0 +1,11 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Loader } from '../../../components/loader';
3
+
4
+ declare const meta: Meta<typeof Loader>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const SpinnerLoader: Story;
8
+ export declare const PulseLoader: Story;
9
+ export declare const CustomSpinnerTextLoader: Story;
10
+ export declare const CustomPulseTextLoader: Story;
11
+ export declare const LargeLoader: Story;
@@ -0,0 +1,8 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Menu, MenuProps } from '../../../components/menu';
3
+
4
+ declare const meta: Meta<typeof Menu>;
5
+ export default meta;
6
+ type Story = StoryObj<MenuProps<unknown>>;
7
+ export declare const Default: Story;
8
+ export declare const WithIcons: Story;
@@ -0,0 +1,7 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Modal } from '../../../components/modal';
3
+
4
+ declare const meta: Meta<typeof Modal>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const ModalExample: Story;
@@ -0,0 +1,9 @@
1
+ import { TransparentModal } from '../../../components/modalTransparent';
2
+ import { Meta, StoryObj } from '@storybook/react';
3
+
4
+ declare const meta: Meta<typeof TransparentModal>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof TransparentModal>;
7
+ export declare const Default: Story;
8
+ export declare const WithForm: Story;
9
+ export declare const MeetingJoin: Story;
@@ -0,0 +1,7 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Popover } from '../../../components/popover';
3
+
4
+ declare const meta: Meta<typeof Popover>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const PopoverExample: Story;
@@ -0,0 +1,7 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { RadioButton } from '../../../components/radioButton';
3
+
4
+ declare const meta: Meta<typeof RadioButton>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof RadioButton>;
7
+ export declare const RadioButtonChecked: Story;
@@ -0,0 +1,7 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { SkeletonLoader } from '../../../components/skeletonLoader';
3
+
4
+ declare const meta: Meta<typeof SkeletonLoader>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const ListLayout: Story;
@@ -0,0 +1,7 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { RangeSlider } from '../../../components/slider';
3
+
4
+ declare const meta: Meta<typeof RangeSlider>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof RangeSlider>;
7
+ export declare const RangeSliderComponent: Story;
@@ -0,0 +1,9 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { SwitchComponent } from '../../../components/switch';
3
+
4
+ declare const meta: Meta<typeof SwitchComponent>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const Medium: Story;
8
+ export declare const Large: Story;
9
+ export declare const ExtraLarge: Story;
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+
3
+ declare const meta: Meta;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Default: Story;
@@ -0,0 +1,8 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { TextArea } from '../../../components/textArea';
3
+
4
+ declare const meta: Meta<typeof TextArea>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const AccentColorDefault: Story;
8
+ export declare const AccentColorRed: Story;
@@ -0,0 +1,11 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Tooltip } from '../../../components/tooltip';
3
+
4
+ declare const meta: Meta<typeof Tooltip>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof Tooltip>;
7
+ export declare const WithoutArrow: Story;
8
+ export declare const PopsFromTop: Story;
9
+ export declare const PopsFromLeft: Story;
10
+ export declare const PopsFromRight: Story;
11
+ export declare const PopsFromBottom: Story;
package/package.json ADDED
@@ -0,0 +1,106 @@
1
+ {
2
+ "name": "@internxt/ui",
3
+ "version": "0.0.25",
4
+ "description": "Library of Internxt components",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/internxt/ui.git"
8
+ },
9
+ "author": "",
10
+ "license": "MIT",
11
+ "homepage": "https://github.com/internxt/ui#readme",
12
+ "type": "module",
13
+ "main": "dist/index.cjs.js",
14
+ "module": "dist/index.es.js",
15
+ "types": "dist/index.d.ts",
16
+ "files": [
17
+ "/dist"
18
+ ],
19
+ "peerDependencies": {
20
+ "@phosphor-icons/react": "^2.1.7",
21
+ "react": "^18.3.1",
22
+ "react-dnd": "14.0.5",
23
+ "react-dnd-html5-backend": "^14.1.0"
24
+ },
25
+ "resolutions": {
26
+ "jackspeak": "2.1.1"
27
+ },
28
+ "devDependencies": {
29
+ "@chromatic-com/storybook": "^1.9.0",
30
+ "@internxt/eslint-config-internxt": "^1.0.10",
31
+ "@internxt/prettier-config": "internxt/prettier-config#v1.0.2",
32
+ "@storybook/addon-essentials": "^8.5.3",
33
+ "@storybook/addon-interactions": "^8.5.3",
34
+ "@storybook/addon-links": "^8.5.3",
35
+ "@storybook/addon-onboarding": "^8.5.3",
36
+ "@storybook/addon-themes": "^8.5.3",
37
+ "@storybook/blocks": "^8.5.3",
38
+ "@storybook/react": "^8.5.3",
39
+ "@storybook/react-vite": "^8.5.3",
40
+ "@storybook/test": "^8.5.3",
41
+ "@testing-library/dom": "^10.4.0",
42
+ "@testing-library/jest-dom": "^6.6.3",
43
+ "@testing-library/react": "^16.2.0",
44
+ "@testing-library/user-event": "^14.6.1",
45
+ "@types/lodash": "^4.17.15",
46
+ "@types/react": "^18.3.18",
47
+ "@types/react-dom": "^18.3.5",
48
+ "@typescript-eslint/eslint-plugin": "^7.18.0",
49
+ "@typescript-eslint/parser": "^7.18.0",
50
+ "@vitest/coverage-istanbul": "^2.1.9",
51
+ "@vitest/ui": "^2.1.9",
52
+ "eslint": "^8.57.1",
53
+ "eslint-config-prettier": "^9.1.0",
54
+ "eslint-plugin-prettier": "^5.2.3",
55
+ "eslint-plugin-react": "^7.34.1",
56
+ "eslint-plugin-react-hooks": "^4.6.2",
57
+ "eslint-plugin-storybook": "^0.8.0",
58
+ "gh-pages": "^6.3.0",
59
+ "husky": "^9.1.7",
60
+ "jsdom": "^24.1.3",
61
+ "lint-staged": "^15.4.3",
62
+ "prettier": "^3.4.2",
63
+ "prettier-plugin-tailwindcss": "^0.5.14",
64
+ "react": "^18.3.1",
65
+ "react-dnd": "16.0.1",
66
+ "react-dnd-html5-backend": "^14.1.0",
67
+ "sass": "^1.84.0",
68
+ "storybook": "^8.5.3",
69
+ "tailwindcss": "^3.4.17",
70
+ "typescript": "^5.7.3",
71
+ "vite": "^5.4.19",
72
+ "vite-plugin-css-injected-by-js": "^3.5.2",
73
+ "vite-plugin-dts": "^3.9.1",
74
+ "vite-plugin-svgr": "^4.3.0",
75
+ "vite-tsconfig-paths": "^5.1.4",
76
+ "vitest": "^2.1.9"
77
+ },
78
+ "scripts": {
79
+ "build:tsc": "tsc",
80
+ "build:vite": "vite build",
81
+ "build:storybook": "yarn storybook:build",
82
+ "build": "yarn build:tsc && yarn build:vite && yarn build:storybook",
83
+ "predeploy": "yarn storybook:build",
84
+ "deploy": "gh-pages -d storybook-static -b storybook-ui",
85
+ "format": "prettier --write --parser typescript '**/*.{ts,tsx}'",
86
+ "lint": "eslint . --ext .ts,.tsx --ignore-path .gitignore --fix",
87
+ "test": "vitest run",
88
+ "test:update": "vitest run -u",
89
+ "test:watch": "vitest",
90
+ "test:ui": "vitest --ui",
91
+ "coverage": "vitest run --coverage",
92
+ "storybook:dev": "storybook dev -p 6006",
93
+ "storybook:build": "storybook build"
94
+ },
95
+ "dependencies": {
96
+ "@internxt/css-config": "1.0.3",
97
+ "@phosphor-icons/react": "^2.1.7",
98
+ "@radix-ui/react-switch": "^1.1.3",
99
+ "@radix-ui/themes": "^3.2.0"
100
+ },
101
+ "lint-staged": {
102
+ "*.{ts,tsx}": [
103
+ "prettier --write"
104
+ ]
105
+ }
106
+ }