1mpacto-react-ui 0.2.0-beta.9 → 1.0.1
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/_colors.scss +80 -0
- package/dist/assets/_mixins.scss +32 -5
- package/dist/assets/_typography.scss +582 -0
- package/dist/assets/colors.css +40 -0
- package/dist/assets/core.css +1 -1
- package/dist/assets/fontfamily.css +1 -1
- package/dist/assets/fonts/PlusJakartaSans-Italic.ttf +0 -0
- package/dist/assets/fonts/PlusJakartaSans.ttf +0 -0
- package/dist/assets/style.css +1 -1
- package/dist/assets/toast.css +98 -194
- package/dist/assets/typography.css +96 -0
- package/dist/index.cjs +120 -117
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +27703 -27059
- package/dist/package.json.d.ts +46 -47
- package/dist/src/components/Alert/index.d.ts +1 -0
- package/dist/src/components/Badges/Badges.config.d.ts +57 -0
- package/dist/src/components/Badges/Badges.d.ts +1 -0
- package/dist/src/components/Badges/Badges.stories.d.ts +117 -2
- package/dist/src/components/Breadcrumbs/Breadcrumbs.config.d.ts +113 -0
- package/dist/src/components/Breadcrumbs/Breadcrumbs.d.ts +2 -1
- package/dist/src/components/Breadcrumbs/Breadcrumbs.stories.d.ts +221 -6
- package/dist/src/components/Button/Button.config.d.ts +70 -0
- package/dist/src/components/Button/Button.d.ts +1 -0
- package/dist/src/components/Button/Button.stories.d.ts +129 -4
- package/dist/src/components/ButtonIcon/ButtonIcon.config.d.ts +53 -0
- package/dist/src/components/ButtonIcon/ButtonIcon.d.ts +1 -0
- package/dist/src/components/ButtonIcon/ButtonIcon.stories.d.ts +123 -4
- package/dist/src/components/ButtonPopover/ButtonPopover.d.ts +1 -0
- package/dist/src/components/ButtonPopover/ButtonPopover.stories.d.ts +258 -2
- package/dist/src/components/Calendar/Calendar.d.ts +3 -1
- package/dist/src/components/Calendar/Calendar.stories.d.ts +283 -2
- package/dist/src/components/Calendar/CalendarButton.d.ts +1 -0
- package/dist/src/components/Calendar/CalendarCell.d.ts +1 -0
- package/dist/src/components/Calendar/CalendarMonth.d.ts +1 -0
- package/dist/src/components/Calendar/CalendarRange.d.ts +1 -0
- package/dist/src/components/Calendar/CalendarYear.d.ts +1 -0
- package/dist/src/components/Chart/DoughnutChart.d.ts +1 -0
- package/dist/src/components/Chart/GradientBarChart.d.ts +1 -0
- package/dist/src/components/Chart/GradientBarChart.stories.d.ts +71 -4
- package/dist/src/components/Chart/GradientLineChart.d.ts +1 -0
- package/dist/src/components/Chart/GradientLineChart.stories.d.ts +82 -4
- package/dist/src/components/Chart/LineChart.d.ts +1 -0
- package/dist/src/components/Chart/LineChart.stories.d.ts +35 -2
- package/dist/src/components/Chips/Chips.config.d.ts +35 -0
- package/dist/src/components/Chips/Chips.d.ts +1 -0
- package/dist/src/components/Chips/Chips.stories.d.ts +137 -2
- package/dist/src/components/Collapse/Collapse.d.ts +1 -0
- package/dist/src/components/Collapse/Collapse.stories.d.ts +89 -2
- package/dist/src/components/Collapse/CollapseV2.d.ts +1 -0
- package/dist/src/components/Collapse/CollapseV2.stories.d.ts +59 -2
- package/dist/src/components/Colors/Colors.stories.d.ts +2 -1
- package/dist/src/components/DatePicker/DatePicker.d.ts +1 -0
- package/dist/src/components/DatePicker/DatePicker.stories.d.ts +221 -2
- package/dist/src/components/DatePicker/DateRangePicker.d.ts +1 -0
- package/dist/src/components/DatePicker/FilterDate.d.ts +2 -1
- package/dist/src/components/DatePicker/FilterDate.stories.d.ts +232 -3
- package/dist/src/components/DatePicker/MonthYearPicker.d.ts +1 -0
- package/dist/src/components/DatePicker/MonthYearPicker.stories.d.ts +198 -2
- package/dist/src/components/ErrorMessage/ErrorMessage.config.d.ts +8 -0
- package/dist/src/components/ErrorMessage/ErrorMessage.d.ts +1 -0
- package/dist/src/components/ErrorMessage/ErrorMessage.stories.d.ts +39 -2
- package/dist/src/components/FilterContainer/FilterContainer.d.ts +1 -0
- package/dist/src/components/FilterContainer/FilterContainer.stories.d.ts +165 -0
- package/dist/src/components/Input/InputFloatingInner.config.d.ts +9 -0
- package/dist/src/components/Input/InputFloatingInner.d.ts +1 -0
- package/dist/src/components/Input/InputFloatingInner.stories.d.ts +177 -6
- package/dist/src/components/Input/InputInnerLabel.config.d.ts +8 -0
- package/dist/src/components/Input/InputInnerLabel.d.ts +5 -0
- package/dist/src/components/Input/InputInnerLabel.stories.d.ts +205 -0
- package/dist/src/components/Input/InputNative.config.d.ts +9 -0
- package/dist/src/components/Input/InputNative.d.ts +1 -0
- package/dist/src/components/Input/InputNative.stories.d.ts +149 -5
- package/dist/src/components/Input/InputReguler.config.d.ts +9 -0
- package/dist/src/components/Input/InputReguler.d.ts +1 -0
- package/dist/src/components/Input/InputReguler.stories.d.ts +177 -6
- package/dist/src/components/Modal/ModalDialog.config.d.ts +9 -0
- package/dist/src/components/Modal/ModalDialog.d.ts +1 -0
- package/dist/src/components/Modal/ModalDialog.stories.d.ts +121 -2
- package/dist/src/components/NumberFormat/NumberFormat.d.ts +1 -0
- package/dist/src/components/NumberFormat/NumberFormat.stories.d.ts +373 -18
- package/dist/src/components/Pagination/Pagination.config.d.ts +5 -0
- package/dist/src/components/Pagination/Pagination.d.ts +2 -1
- package/dist/src/components/Pagination/Pagination.stories.d.ts +200 -3
- package/dist/src/components/Popover/Popover.d.ts +1 -0
- package/dist/src/components/Popover/Popover.stories.d.ts +216 -7
- package/dist/src/components/PortalComponent/PortalComponent.d.ts +1 -0
- package/dist/src/components/PortalComponent/PortalComponent.stories.d.ts +61 -0
- package/dist/src/components/RadioCheckbox/CheckboxTable.d.ts +1 -0
- package/dist/src/components/RadioCheckbox/RadioCheckbox.config.d.ts +41 -0
- package/dist/src/components/RadioCheckbox/RadioCheckbox.d.ts +1 -0
- package/dist/src/components/RadioCheckbox/RadioCheckbox.stories.d.ts +230 -8
- package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.config.d.ts +25 -0
- package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.d.ts +1 -0
- package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.stories.d.ts +196 -4
- package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.config.d.ts +26 -0
- package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.d.ts +2 -1
- package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.stories.d.ts +5 -4
- package/dist/src/components/SelectDropdownContainer/styleConfig.d.ts +5 -1
- package/dist/src/components/Sidebar/ItemSidebar.config.d.ts +34 -0
- package/dist/src/components/Sidebar/ItemSidebar.d.ts +1 -0
- package/dist/src/components/Sidebar/Sidebar.config.d.ts +16 -0
- package/dist/src/components/Sidebar/Sidebar.d.ts +2 -1
- package/dist/src/components/Sidebar/Sidebar.stories.d.ts +6 -5
- package/dist/src/components/Step/Step.d.ts +1 -0
- package/dist/src/components/Step/Step.stories.d.ts +135 -2
- package/dist/src/components/Step/StepIndicator.d.ts +1 -0
- package/dist/src/components/Step/StepIndicator.stories.d.ts +148 -2
- package/dist/src/components/Switch/Switch.config.d.ts +26 -0
- package/dist/src/components/Switch/Switch.d.ts +1 -0
- package/dist/src/components/Switch/Switch.stories.d.ts +128 -2
- package/dist/src/components/Table/Table.config.d.ts +5 -0
- package/dist/src/components/Table/Table.d.ts +3 -3
- package/dist/src/components/Table/Table.stories.d.ts +71 -52
- package/dist/src/components/Table/TableSubMobile.d.ts +4 -0
- package/dist/src/components/Tabs/TabPanel.d.ts +1 -0
- package/dist/src/components/Tabs/Tabs.config.d.ts +31 -0
- package/dist/src/components/Tabs/Tabs.d.ts +2 -1
- package/dist/src/components/Tabs/Tabs.stories.d.ts +220 -3
- package/dist/src/components/TextEditor/TextEditor.d.ts +1 -0
- package/dist/src/components/TextEditor/TextEditor.stories.d.ts +59 -10
- package/dist/src/components/Textarea/Textarea.config.d.ts +31 -0
- package/dist/src/components/Textarea/Textarea.d.ts +1 -0
- package/dist/src/components/Textarea/Textarea.stories.d.ts +250 -3
- package/dist/src/components/Textarea/TextareaFloatingInner.config.d.ts +6 -0
- package/dist/src/components/Textarea/TextareaFloatingInner.d.ts +1 -0
- package/dist/src/components/Textarea/TextareaFloatingInner.stories.d.ts +260 -3
- package/dist/src/components/Textarea/TextareaInnerLabel.config.d.ts +7 -0
- package/dist/src/components/Textarea/TextareaInnerLabel.d.ts +5 -0
- package/dist/src/components/Textarea/TextareaInnerLabel.stories.d.ts +259 -0
- package/dist/src/components/TimeRange/TimeRange.d.ts +4 -0
- package/dist/src/components/TimeRange/TimeRange.stories.d.ts +186 -0
- package/dist/src/components/Timeline/Timeline.d.ts +1 -0
- package/dist/src/components/Timeline/Timeline.stories.d.ts +40 -2
- package/dist/src/components/Tooltip/Tooltip.d.ts +1 -0
- package/dist/src/components/Tooltip/Tooltip.stories.d.ts +159 -2
- package/dist/src/components/TruncateComponent/TruncateComponent.d.ts +1 -0
- package/dist/src/components/TruncateComponent/TruncateComponent.stories.d.ts +106 -2
- package/dist/src/components/Typography/Typography.stories.d.ts +2 -1
- package/dist/src/components/Upload/UploadFile.d.ts +1 -0
- package/dist/src/components/Upload/UploadFile.stories.d.ts +127 -2
- package/dist/src/components/Upload/UploadImage.d.ts +2 -1
- package/dist/src/components/Upload/UploadImage.stories.d.ts +145 -3
- package/dist/src/components/Upload/UploadMultipleFile.d.ts +2 -1
- package/dist/src/components/Upload/UploadMultipleFile.stories.d.ts +190 -3
- package/dist/src/components/Virtualization/ListVirtualization.d.ts +1 -0
- package/dist/src/components/Virtualization/ListVirtualization.stories.d.ts +279 -2
- package/dist/src/components/Virtualization/TableVirtualization.d.ts +1 -0
- package/dist/src/components/Virtualization/TableVirtualization.stories.d.ts +296 -2
- package/dist/src/components/index.d.ts +15 -8
- package/dist/src/components/screens/Screens.stories.d.ts +14 -0
- package/dist/src/config/bigNumber/index.d.ts +1 -0
- package/dist/src/config/components/borderRadius.d.ts +1 -0
- package/dist/src/config/components/font.d.ts +7 -0
- package/dist/src/config/components/gap.d.ts +1 -0
- package/dist/src/config/components/tinymce.d.ts +1 -0
- package/dist/src/config/components/typography.d.ts +3 -49
- package/dist/src/config/tailwind/index.d.ts +3 -1
- package/dist/src/config/tailwind/nativeScreen.d.ts +3 -0
- package/dist/src/config/tailwind/typography.d.ts +1 -0
- package/dist/src/hooks/index.d.ts +6 -3
- package/dist/src/hooks/useAsyncDebounce.d.ts +9 -0
- package/dist/src/hooks/useCombinedResizeObserver.d.ts +67 -0
- package/dist/src/hooks/useCountdown.d.ts +67 -3
- package/dist/src/hooks/useDeepCompareEffect.d.ts +14 -0
- package/dist/src/hooks/useElementOrWindowMediaQuery.d.ts +9 -0
- package/dist/src/hooks/useEventListener.d.ts +28 -0
- package/dist/src/hooks/useMasonry.d.ts +80 -0
- package/dist/src/hooks/useMergeRefs.d.ts +27 -0
- package/dist/src/hooks/useOtpInput.d.ts +200 -0
- package/dist/src/hooks/useStateRef.d.ts +9 -0
- package/dist/src/interfaces/components/Alert/index.d.ts +9 -0
- package/dist/src/interfaces/components/Badges/index.d.ts +31 -1
- package/dist/src/interfaces/components/Breadcrumbs/index.d.ts +86 -2
- package/dist/src/interfaces/components/Button/index.d.ts +47 -2
- package/dist/src/interfaces/components/ButtonIcon/index.d.ts +37 -0
- package/dist/src/interfaces/components/ButtonPopover/index.d.ts +79 -0
- package/dist/src/interfaces/components/Calendar/index.d.ts +385 -3
- package/dist/src/interfaces/components/Chart/index.d.ts +461 -0
- package/dist/src/interfaces/components/Checkbox/index.d.ts +13 -0
- package/dist/src/interfaces/components/Chips/index.d.ts +39 -1
- package/dist/src/interfaces/components/Collapse/index.d.ts +61 -0
- package/dist/src/interfaces/components/DatePicker/index.d.ts +278 -1
- package/dist/src/interfaces/components/ErrorMessage/index.d.ts +17 -1
- package/dist/src/interfaces/components/FilterContainer/index.d.ts +103 -0
- package/dist/src/interfaces/components/Input/index.d.ts +194 -0
- package/dist/src/interfaces/components/Modal/index.d.ts +46 -0
- package/dist/src/interfaces/components/NumberFormat/index.d.ts +26 -0
- package/dist/src/interfaces/components/Pagination/index.d.ts +84 -0
- package/dist/src/interfaces/components/Popover/index.d.ts +99 -1
- package/dist/src/interfaces/components/RadioCheckbox/RadioCheckbox.d.ts +60 -2
- package/dist/src/interfaces/components/RadioCheckbox/RadioCheckboxLabel.d.ts +47 -1
- package/dist/src/interfaces/components/SelectDropdownContainer/index.d.ts +197 -2
- package/dist/src/interfaces/components/Sidebar/index.d.ts +230 -1
- package/dist/src/interfaces/components/Step/index.d.ts +154 -0
- package/dist/src/interfaces/components/Switch/index.d.ts +54 -1
- package/dist/src/interfaces/components/Table/index.d.ts +403 -6
- package/dist/src/interfaces/components/Tabs/index.d.ts +131 -1
- package/dist/src/interfaces/components/TextEditor/index.d.ts +13 -0
- package/dist/src/interfaces/components/Textarea/index.d.ts +170 -0
- package/dist/src/interfaces/components/TimeRange/index.d.ts +129 -0
- package/dist/src/interfaces/components/Timeline/index.d.ts +37 -0
- package/dist/src/interfaces/components/Tooltip/index.d.ts +57 -0
- package/dist/src/interfaces/components/TruncateComponent/index.d.ts +34 -0
- package/dist/src/interfaces/components/UploadFile/index.d.ts +187 -0
- package/dist/src/interfaces/components/Virtualization/ListVirtualization.d.ts +139 -0
- package/dist/src/interfaces/components/Virtualization/TableVirtualization.d.ts +144 -0
- package/dist/src/main.d.ts +1 -0
- package/dist/src/utils/common.d.ts +5 -4
- package/dist/src/utils/constant.d.ts +1 -0
- package/dist/types-external/table.d.ts +3 -0
- package/package.json +46 -47
- package/dist/index.cjs.map +0 -1
- package/dist/index.mjs.map +0 -1
package/dist/package.json.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
"name": "1mpacto-react-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": ">=20.19.4",
|
|
@@ -28,50 +28,49 @@ declare const _default: {
|
|
|
28
28
|
"install": "copyfiles -f dist/types-external/* ../../src/types/"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@chromatic-com/storybook": "^
|
|
32
|
-
"@
|
|
33
|
-
"@
|
|
34
|
-
"@
|
|
35
|
-
"@storybook/
|
|
36
|
-
"@storybook/
|
|
37
|
-
"@storybook/react-vite": "^
|
|
38
|
-
"@
|
|
31
|
+
"@chromatic-com/storybook": "^3.2.2",
|
|
32
|
+
"@storybook/addon-essentials": "^8.4.7",
|
|
33
|
+
"@storybook/addon-interactions": "^8.4.7",
|
|
34
|
+
"@storybook/addon-onboarding": "^8.4.7",
|
|
35
|
+
"@storybook/blocks": "^8.4.7",
|
|
36
|
+
"@storybook/react": "^8.4.7",
|
|
37
|
+
"@storybook/react-vite": "^8.4.7",
|
|
38
|
+
"@storybook/test": "^8.4.7",
|
|
39
39
|
"@types/js-cookie": "^3.0.6",
|
|
40
|
-
"@types/node": "^20",
|
|
40
|
+
"@types/node": "^20.14.10",
|
|
41
41
|
"@types/node-forge": "^1.3.14",
|
|
42
|
-
"@types/react": "^
|
|
43
|
-
"@types/react-dom": "^
|
|
44
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
45
|
-
"@typescript-eslint/parser": "^
|
|
46
|
-
"@vitejs/plugin-react-swc": "^3.
|
|
42
|
+
"@types/react": "^18.3.3",
|
|
43
|
+
"@types/react-dom": "^18.3.0",
|
|
44
|
+
"@typescript-eslint/eslint-plugin": "^7.13.1",
|
|
45
|
+
"@typescript-eslint/parser": "^7.13.1",
|
|
46
|
+
"@vitejs/plugin-react-swc": "^3.5.0",
|
|
47
47
|
"autoprefixer": "^10.4.19",
|
|
48
|
-
"eslint": "^
|
|
49
|
-
"eslint-config-prettier": "^
|
|
48
|
+
"eslint": "^8.57.0",
|
|
49
|
+
"eslint-config-prettier": "^9.1.0",
|
|
50
50
|
"eslint-plugin-import": "^2.32.0",
|
|
51
|
-
"eslint-plugin-prettier": "^5.
|
|
52
|
-
"eslint-plugin-react": "^7.
|
|
53
|
-
"eslint-plugin-react-hooks": "^
|
|
54
|
-
"eslint-plugin-react-refresh": "^0.4.
|
|
55
|
-
"eslint-plugin-storybook": "^
|
|
51
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
52
|
+
"eslint-plugin-react": "^7.34.3",
|
|
53
|
+
"eslint-plugin-react-hooks": "^4.6.2",
|
|
54
|
+
"eslint-plugin-react-refresh": "^0.4.7",
|
|
55
|
+
"eslint-plugin-storybook": "^0.11.1",
|
|
56
56
|
"glob": "^11.0.3",
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"react": "^
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"storybook": "^9.0.18",
|
|
57
|
+
"husky": "^9.0.11",
|
|
58
|
+
"lint-staged": "^15.2.7",
|
|
59
|
+
"postcss": "^8.4.39",
|
|
60
|
+
"prettier": "^3.3.2",
|
|
61
|
+
"react": "^18.3.1",
|
|
62
|
+
"react-dom": "^18.3.1",
|
|
63
|
+
"sass": "^1.77.6",
|
|
64
|
+
"storybook": "^8.4.7",
|
|
66
65
|
"tailwindcss": "^3.4.4",
|
|
67
66
|
"ts-node": "^10.9.2",
|
|
68
|
-
"typescript": "
|
|
69
|
-
"vite": "^
|
|
70
|
-
"vite-plugin-dts": "^
|
|
67
|
+
"typescript": "^5.2.2",
|
|
68
|
+
"vite": "^5.3.1",
|
|
69
|
+
"vite-plugin-dts": "^3.9.1"
|
|
71
70
|
},
|
|
72
71
|
"peerDependencies": {
|
|
73
|
-
"react": ">=
|
|
74
|
-
"react-dom": ">=
|
|
72
|
+
"react": ">=18",
|
|
73
|
+
"react-dom": ">=18",
|
|
75
74
|
"yup": ">=1.4.0"
|
|
76
75
|
},
|
|
77
76
|
"main": "./dist/index.cjs",
|
|
@@ -109,24 +108,24 @@ declare const _default: {
|
|
|
109
108
|
]
|
|
110
109
|
},
|
|
111
110
|
"dependencies": {
|
|
112
|
-
"@floating-ui/react": "^0.
|
|
113
|
-
"@internationalized/date": "^3.
|
|
114
|
-
"@tanstack/react-table": "^8.
|
|
111
|
+
"@floating-ui/react": "^0.26.19",
|
|
112
|
+
"@internationalized/date": "^3.5.4",
|
|
113
|
+
"@tanstack/react-table": "^8.19.2",
|
|
115
114
|
"@tinymce/tinymce-react": "^6.2.1",
|
|
116
115
|
"bignumber.js": "^9.1.2",
|
|
117
|
-
"chart.js": "^4.
|
|
116
|
+
"chart.js": "^4.4.3",
|
|
118
117
|
"copyfiles": "^2.4.1",
|
|
119
118
|
"date-fns": "^3.6.0",
|
|
120
119
|
"js-cookie": "^3.0.5",
|
|
121
120
|
"lossless-json": "^4.0.2",
|
|
122
121
|
"node-forge": "^1.3.1",
|
|
123
|
-
"react-aria": "^3.
|
|
124
|
-
"react-chartjs-2": "^5.
|
|
125
|
-
"react-number-format": "^5.4.
|
|
126
|
-
"react-select": "^5.
|
|
127
|
-
"react-stately": "^3.
|
|
128
|
-
"react-toastify": "^
|
|
129
|
-
"react-virtuoso": "^4.
|
|
122
|
+
"react-aria": "^3.33.1",
|
|
123
|
+
"react-chartjs-2": "^5.2.0",
|
|
124
|
+
"react-number-format": "^5.4.0",
|
|
125
|
+
"react-select": "^5.8.0",
|
|
126
|
+
"react-stately": "^3.31.1",
|
|
127
|
+
"react-toastify": "^10.0.5",
|
|
128
|
+
"react-virtuoso": "^4.7.11",
|
|
130
129
|
"tinymce": "^7.9.1"
|
|
131
130
|
}
|
|
132
131
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { TypeOptions } from 'react-toastify';
|
|
3
3
|
import { IOptionAlert } from '../../interfaces/components/Alert';
|
|
4
|
+
|
|
4
5
|
export declare const openAlert: (message: string | React.ReactNode | React.ReactNode[], type?: TypeOptions, options?: IOptionAlert) => import('react-toastify').Id;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
export declare const configBadges: {
|
|
2
|
+
variants: {
|
|
3
|
+
'filled-gray-600': string;
|
|
4
|
+
'filled-green-600': string;
|
|
5
|
+
'filled-red-500': string;
|
|
6
|
+
'filled-blue-600': string;
|
|
7
|
+
'filled-amber-800': string;
|
|
8
|
+
'filled-pink-600': string;
|
|
9
|
+
'filled-lime-700': string;
|
|
10
|
+
'filled-lime-900-bg_lime-100': string;
|
|
11
|
+
'filled-red-900': string;
|
|
12
|
+
'filled-laba-green-10': string;
|
|
13
|
+
'filled-green-50': string;
|
|
14
|
+
'filled-blue-gray-50': string;
|
|
15
|
+
'filled-cyan-800-bg_cyan-100': string;
|
|
16
|
+
'ghost-laba-orange-01': string;
|
|
17
|
+
'ghost-laba-green-01': string;
|
|
18
|
+
'ghost-laba-green-02': string;
|
|
19
|
+
'ghost-laba-blue-02': string;
|
|
20
|
+
'ghost-laba-blue-01': string;
|
|
21
|
+
'ghost-gray-200': string;
|
|
22
|
+
'ghost-green-100': string;
|
|
23
|
+
'ghost-red-100': string;
|
|
24
|
+
'ghost-blue-100': string;
|
|
25
|
+
'ghost-amber-100': string;
|
|
26
|
+
'ghost-laba-grey-05': string;
|
|
27
|
+
'ghost-laba-red-01': string;
|
|
28
|
+
'outline-gray-600': string;
|
|
29
|
+
'outline-green-600': string;
|
|
30
|
+
'outline-red-500': string;
|
|
31
|
+
'outline-blue-600': string;
|
|
32
|
+
'outline-amber-800': string;
|
|
33
|
+
'outline-laba-blue-01': string;
|
|
34
|
+
'outline-laba-orange-06': string;
|
|
35
|
+
'outline-laba-orange-06-bg_laba-orange-01': string;
|
|
36
|
+
'outline-laba-green-06': string;
|
|
37
|
+
'outline-laba-red-06': string;
|
|
38
|
+
};
|
|
39
|
+
borderRadius: {
|
|
40
|
+
'0px': string;
|
|
41
|
+
'2px': string;
|
|
42
|
+
'4px': string;
|
|
43
|
+
'6px': string;
|
|
44
|
+
'8px': string;
|
|
45
|
+
'12px': string;
|
|
46
|
+
'16px': string;
|
|
47
|
+
'24px': string;
|
|
48
|
+
full: string;
|
|
49
|
+
};
|
|
50
|
+
fonts: {
|
|
51
|
+
lato: string;
|
|
52
|
+
inter: string;
|
|
53
|
+
pJakartaSans: string;
|
|
54
|
+
};
|
|
55
|
+
typography: Record<import('../../config/components/typography').Itypography, string>;
|
|
56
|
+
};
|
|
57
|
+
export declare const keysConfigBadgesVariant: string[];
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { StoryObj } from '@storybook/react
|
|
1
|
+
import { StoryObj } from '@storybook/react';
|
|
2
|
+
|
|
2
3
|
declare const meta: {
|
|
3
4
|
title: string;
|
|
4
5
|
component: import('react').ForwardRefExoticComponent<import('../../interfaces/components/Badges').IBadges & import('react').RefAttributes<HTMLSpanElement>>;
|
|
@@ -7,8 +8,122 @@ declare const meta: {
|
|
|
7
8
|
};
|
|
8
9
|
tags: string[];
|
|
9
10
|
argTypes: {
|
|
11
|
+
children: {
|
|
12
|
+
control: "text";
|
|
13
|
+
description: string;
|
|
14
|
+
table: {
|
|
15
|
+
category: string;
|
|
16
|
+
type: {
|
|
17
|
+
summary: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
variants: {
|
|
22
|
+
control: {
|
|
23
|
+
type: "select";
|
|
24
|
+
};
|
|
25
|
+
options: string[];
|
|
26
|
+
description: string;
|
|
27
|
+
table: {
|
|
28
|
+
category: string;
|
|
29
|
+
type: {
|
|
30
|
+
summary: string;
|
|
31
|
+
};
|
|
32
|
+
defaultValue: {
|
|
33
|
+
summary: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
rounded: {
|
|
38
|
+
control: {
|
|
39
|
+
type: "select";
|
|
40
|
+
};
|
|
41
|
+
options: string[];
|
|
42
|
+
description: string;
|
|
43
|
+
table: {
|
|
44
|
+
category: string;
|
|
45
|
+
type: {
|
|
46
|
+
summary: string;
|
|
47
|
+
};
|
|
48
|
+
defaultValue: {
|
|
49
|
+
summary: string;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
typography: {
|
|
54
|
+
control: {
|
|
55
|
+
type: "select";
|
|
56
|
+
};
|
|
57
|
+
options: string[];
|
|
58
|
+
description: string;
|
|
59
|
+
table: {
|
|
60
|
+
category: string;
|
|
61
|
+
type: {
|
|
62
|
+
summary: string;
|
|
63
|
+
};
|
|
64
|
+
defaultValue: {
|
|
65
|
+
summary: string;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
fonts: {
|
|
70
|
+
control: {
|
|
71
|
+
type: "select";
|
|
72
|
+
};
|
|
73
|
+
options: string[];
|
|
74
|
+
description: string;
|
|
75
|
+
table: {
|
|
76
|
+
category: string;
|
|
77
|
+
type: {
|
|
78
|
+
summary: string;
|
|
79
|
+
};
|
|
80
|
+
defaultValue: {
|
|
81
|
+
summary: string;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
};
|
|
10
85
|
className: {
|
|
11
|
-
|
|
86
|
+
control: "text";
|
|
87
|
+
description: string;
|
|
88
|
+
table: {
|
|
89
|
+
category: string;
|
|
90
|
+
type: {
|
|
91
|
+
summary: string;
|
|
92
|
+
};
|
|
93
|
+
defaultValue: {
|
|
94
|
+
summary: string;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
style: {
|
|
99
|
+
control: "object";
|
|
100
|
+
description: string;
|
|
101
|
+
table: {
|
|
102
|
+
category: string;
|
|
103
|
+
type: {
|
|
104
|
+
summary: string;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
onClick: {
|
|
109
|
+
action: string;
|
|
110
|
+
description: string;
|
|
111
|
+
table: {
|
|
112
|
+
category: string;
|
|
113
|
+
type: {
|
|
114
|
+
summary: string;
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
title: {
|
|
119
|
+
control: "text";
|
|
120
|
+
description: string;
|
|
121
|
+
table: {
|
|
122
|
+
category: string;
|
|
123
|
+
type: {
|
|
124
|
+
summary: string;
|
|
125
|
+
};
|
|
126
|
+
};
|
|
12
127
|
};
|
|
13
128
|
};
|
|
14
129
|
};
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
export declare const configBreadcrumbs: {
|
|
2
|
+
fonts: {
|
|
3
|
+
lato: string;
|
|
4
|
+
inter: string;
|
|
5
|
+
pJakartaSans: string;
|
|
6
|
+
};
|
|
7
|
+
variants: {
|
|
8
|
+
'laba-blue-10': string;
|
|
9
|
+
'blue-700': string;
|
|
10
|
+
'bill-secondary-800': string;
|
|
11
|
+
};
|
|
12
|
+
gapAction: {
|
|
13
|
+
'gap-0': string;
|
|
14
|
+
'gap-x-0': string;
|
|
15
|
+
'gap-y-0': string;
|
|
16
|
+
'gap-px': string;
|
|
17
|
+
'gap-x-px': string;
|
|
18
|
+
'gap-y-px': string;
|
|
19
|
+
'gap-0.5': string;
|
|
20
|
+
'gap-x-0.5': string;
|
|
21
|
+
'gap-y-0.5': string;
|
|
22
|
+
'gap-1': string;
|
|
23
|
+
'gap-x-1': string;
|
|
24
|
+
'gap-y-1': string;
|
|
25
|
+
'gap-1.5': string;
|
|
26
|
+
'gap-x-1.5': string;
|
|
27
|
+
'gap-y-1.5': string;
|
|
28
|
+
'gap-2': string;
|
|
29
|
+
'gap-x-2': string;
|
|
30
|
+
'gap-y-2': string;
|
|
31
|
+
'gap-2.5': string;
|
|
32
|
+
'gap-x-2.5': string;
|
|
33
|
+
'gap-y-2.5': string;
|
|
34
|
+
'gap-3': string;
|
|
35
|
+
'gap-x-3': string;
|
|
36
|
+
'gap-y-3': string;
|
|
37
|
+
'gap-3.5': string;
|
|
38
|
+
'gap-x-3.5': string;
|
|
39
|
+
'gap-y-3.5': string;
|
|
40
|
+
'gap-4': string;
|
|
41
|
+
'gap-x-4': string;
|
|
42
|
+
'gap-y-4': string;
|
|
43
|
+
'gap-5': string;
|
|
44
|
+
'gap-x-5': string;
|
|
45
|
+
'gap-y-5': string;
|
|
46
|
+
'gap-6': string;
|
|
47
|
+
'gap-x-6': string;
|
|
48
|
+
'gap-y-6': string;
|
|
49
|
+
'gap-7': string;
|
|
50
|
+
'gap-x-7': string;
|
|
51
|
+
'gap-y-7': string;
|
|
52
|
+
'gap-8': string;
|
|
53
|
+
'gap-x-8': string;
|
|
54
|
+
'gap-y-8': string;
|
|
55
|
+
'gap-9': string;
|
|
56
|
+
'gap-x-9': string;
|
|
57
|
+
'gap-y-9': string;
|
|
58
|
+
'gap-10': string;
|
|
59
|
+
'gap-x-10': string;
|
|
60
|
+
'gap-y-10': string;
|
|
61
|
+
};
|
|
62
|
+
gapUrls: {
|
|
63
|
+
'gap-0': string;
|
|
64
|
+
'gap-x-0': string;
|
|
65
|
+
'gap-y-0': string;
|
|
66
|
+
'gap-px': string;
|
|
67
|
+
'gap-x-px': string;
|
|
68
|
+
'gap-y-px': string;
|
|
69
|
+
'gap-0.5': string;
|
|
70
|
+
'gap-x-0.5': string;
|
|
71
|
+
'gap-y-0.5': string;
|
|
72
|
+
'gap-1': string;
|
|
73
|
+
'gap-x-1': string;
|
|
74
|
+
'gap-y-1': string;
|
|
75
|
+
'gap-1.5': string;
|
|
76
|
+
'gap-x-1.5': string;
|
|
77
|
+
'gap-y-1.5': string;
|
|
78
|
+
'gap-2': string;
|
|
79
|
+
'gap-x-2': string;
|
|
80
|
+
'gap-y-2': string;
|
|
81
|
+
'gap-2.5': string;
|
|
82
|
+
'gap-x-2.5': string;
|
|
83
|
+
'gap-y-2.5': string;
|
|
84
|
+
'gap-3': string;
|
|
85
|
+
'gap-x-3': string;
|
|
86
|
+
'gap-y-3': string;
|
|
87
|
+
'gap-3.5': string;
|
|
88
|
+
'gap-x-3.5': string;
|
|
89
|
+
'gap-y-3.5': string;
|
|
90
|
+
'gap-4': string;
|
|
91
|
+
'gap-x-4': string;
|
|
92
|
+
'gap-y-4': string;
|
|
93
|
+
'gap-5': string;
|
|
94
|
+
'gap-x-5': string;
|
|
95
|
+
'gap-y-5': string;
|
|
96
|
+
'gap-6': string;
|
|
97
|
+
'gap-x-6': string;
|
|
98
|
+
'gap-y-6': string;
|
|
99
|
+
'gap-7': string;
|
|
100
|
+
'gap-x-7': string;
|
|
101
|
+
'gap-y-7': string;
|
|
102
|
+
'gap-8': string;
|
|
103
|
+
'gap-x-8': string;
|
|
104
|
+
'gap-y-8': string;
|
|
105
|
+
'gap-9': string;
|
|
106
|
+
'gap-x-9': string;
|
|
107
|
+
'gap-y-9': string;
|
|
108
|
+
'gap-10': string;
|
|
109
|
+
'gap-x-10': string;
|
|
110
|
+
'gap-y-10': string;
|
|
111
|
+
};
|
|
112
|
+
};
|
|
113
|
+
export declare const keysConfigBreadcrumbsVariant: string[];
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ElementType } from 'react';
|
|
2
2
|
import { IBreadcrumbs } from '../../interfaces/components/Breadcrumbs';
|
|
3
|
-
|
|
3
|
+
|
|
4
|
+
declare const Breadcrumbs: <T extends ElementType = "div">({ as, variants, fonts, urls, textBreadcrumbs, onClickBreadcrumbs, gapAction, gapUrls, className, textAction, iconAction, onClickAction, onClickUrls, separator, propsLink, classNameAction, classNameUrl, renderAction, ...props }: IBreadcrumbs<T>) => import("react/jsx-runtime").JSX.Element;
|
|
4
5
|
export default Breadcrumbs;
|