1mpacto-react-ui 0.0.92 → 0.0.94
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/assets/core.css +1 -1
- package/dist/assets/style.css +1 -1
- package/dist/index.cjs +48 -46
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +5581 -5549
- package/dist/index.mjs.map +1 -1
- package/dist/src/components/Badges/Badges.stories.d.ts +18 -0
- package/dist/src/components/Breadcrumbs/Breadcrumbs.stories.d.ts +25 -0
- package/dist/src/components/Button/Button.stories.d.ts +33 -0
- package/dist/src/components/ButtonIcon/ButtonIcon.stories.d.ts +24 -0
- package/dist/src/components/Chart/LineChart.d.ts +4 -0
- package/dist/src/components/Chips/Chips.stories.d.ts +18 -0
- package/dist/src/components/DatePicker/DatePicker.stories.d.ts +19 -0
- package/dist/src/components/DatePicker/FilterDate.d.ts +1 -1
- package/dist/src/components/Input/InputFloatingInner.stories.d.ts +41 -0
- package/dist/src/components/Input/InputReguler.stories.d.ts +43 -0
- package/dist/src/components/NumberFormat/NumberFormat.stories.d.ts +48 -0
- package/dist/src/components/Pagination/Pagination.stories.d.ts +22 -0
- package/dist/src/components/Popover/Popover.stories.d.ts +23 -0
- package/dist/src/components/RadioCheckbox/RadioCheckbox.stories.d.ts +42 -0
- package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.d.ts +1 -1
- package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.stories.d.ts +26 -0
- package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.stories.d.ts +24 -0
- package/dist/src/components/Sidebar/Sidebar.stories.d.ts +25 -0
- package/dist/src/components/Switch/Switch.stories.d.ts +23 -0
- package/dist/src/components/Table/Table.stories.d.ts +16 -0
- package/dist/src/components/Tabs/Tabs.d.ts +1 -1
- package/dist/src/components/Textarea/Textarea.stories.d.ts +26 -0
- package/dist/src/components/Textarea/TextareaFloatingInner.stories.d.ts +26 -0
- package/dist/src/interfaces/components/Badges/index.d.ts +1 -1
- package/dist/src/interfaces/components/Chart/index.d.ts +12 -0
- package/dist/src/interfaces/components/DatePicker/index.d.ts +2 -0
- package/dist/src/interfaces/components/Modal/index.d.ts +1 -1
- package/dist/src/interfaces/components/Popover/index.d.ts +1 -0
- package/dist/src/interfaces/components/RadioCheckbox/RadioCheckboxLabel.d.ts +1 -0
- package/dist/src/interfaces/components/Step/index.d.ts +1 -0
- package/dist/src/interfaces/components/Tabs/index.d.ts +1 -0
- package/package.json +14 -2
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "1mpacto-react-ui",
|
3
3
|
"private": false,
|
4
|
-
"version": "0.0.
|
4
|
+
"version": "0.0.94",
|
5
5
|
"type": "module",
|
6
6
|
"scripts": {
|
7
7
|
"copy:toastify-css": "cp ./node_modules/react-toastify/dist/ReactToastify.css ./dist/assets/toast.css",
|
@@ -11,9 +11,19 @@
|
|
11
11
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
12
12
|
"preview": "vite preview",
|
13
13
|
"prepare": "husky && npm run build",
|
14
|
-
"watch:build": "npx watch \"npm run build\" ./src"
|
14
|
+
"watch:build": "npx watch \"npm run build\" ./src",
|
15
|
+
"storybook": "storybook dev -p 6006",
|
16
|
+
"build-storybook": "storybook build"
|
15
17
|
},
|
16
18
|
"devDependencies": {
|
19
|
+
"@chromatic-com/storybook": "^3.2.2",
|
20
|
+
"@storybook/addon-essentials": "^8.4.7",
|
21
|
+
"@storybook/addon-interactions": "^8.4.7",
|
22
|
+
"@storybook/addon-onboarding": "^8.4.7",
|
23
|
+
"@storybook/blocks": "^8.4.7",
|
24
|
+
"@storybook/react": "^8.4.7",
|
25
|
+
"@storybook/react-vite": "^8.4.7",
|
26
|
+
"@storybook/test": "^8.4.7",
|
17
27
|
"@types/js-cookie": "^3.0.6",
|
18
28
|
"@types/node": "^20.14.10",
|
19
29
|
"@types/react": "^18.3.3",
|
@@ -28,6 +38,7 @@
|
|
28
38
|
"eslint-plugin-react": "^7.34.3",
|
29
39
|
"eslint-plugin-react-hooks": "^4.6.2",
|
30
40
|
"eslint-plugin-react-refresh": "^0.4.7",
|
41
|
+
"eslint-plugin-storybook": "^0.11.1",
|
31
42
|
"husky": "^9.0.11",
|
32
43
|
"lint-staged": "^15.2.7",
|
33
44
|
"postcss": "^8.4.39",
|
@@ -35,6 +46,7 @@
|
|
35
46
|
"react": "^18.3.1",
|
36
47
|
"react-dom": "^18.3.1",
|
37
48
|
"sass": "^1.77.6",
|
49
|
+
"storybook": "^8.4.7",
|
38
50
|
"tailwindcss": "^3.4.4",
|
39
51
|
"typescript": "^5.2.2",
|
40
52
|
"vite": "^5.3.1",
|