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.
Files changed (214) hide show
  1. package/dist/assets/_colors.scss +80 -0
  2. package/dist/assets/_mixins.scss +32 -5
  3. package/dist/assets/_typography.scss +582 -0
  4. package/dist/assets/colors.css +40 -0
  5. package/dist/assets/core.css +1 -1
  6. package/dist/assets/fontfamily.css +1 -1
  7. package/dist/assets/fonts/PlusJakartaSans-Italic.ttf +0 -0
  8. package/dist/assets/fonts/PlusJakartaSans.ttf +0 -0
  9. package/dist/assets/style.css +1 -1
  10. package/dist/assets/toast.css +98 -194
  11. package/dist/assets/typography.css +96 -0
  12. package/dist/index.cjs +120 -117
  13. package/dist/index.d.ts +1 -0
  14. package/dist/index.mjs +27703 -27059
  15. package/dist/package.json.d.ts +46 -47
  16. package/dist/src/components/Alert/index.d.ts +1 -0
  17. package/dist/src/components/Badges/Badges.config.d.ts +57 -0
  18. package/dist/src/components/Badges/Badges.d.ts +1 -0
  19. package/dist/src/components/Badges/Badges.stories.d.ts +117 -2
  20. package/dist/src/components/Breadcrumbs/Breadcrumbs.config.d.ts +113 -0
  21. package/dist/src/components/Breadcrumbs/Breadcrumbs.d.ts +2 -1
  22. package/dist/src/components/Breadcrumbs/Breadcrumbs.stories.d.ts +221 -6
  23. package/dist/src/components/Button/Button.config.d.ts +70 -0
  24. package/dist/src/components/Button/Button.d.ts +1 -0
  25. package/dist/src/components/Button/Button.stories.d.ts +129 -4
  26. package/dist/src/components/ButtonIcon/ButtonIcon.config.d.ts +53 -0
  27. package/dist/src/components/ButtonIcon/ButtonIcon.d.ts +1 -0
  28. package/dist/src/components/ButtonIcon/ButtonIcon.stories.d.ts +123 -4
  29. package/dist/src/components/ButtonPopover/ButtonPopover.d.ts +1 -0
  30. package/dist/src/components/ButtonPopover/ButtonPopover.stories.d.ts +258 -2
  31. package/dist/src/components/Calendar/Calendar.d.ts +3 -1
  32. package/dist/src/components/Calendar/Calendar.stories.d.ts +283 -2
  33. package/dist/src/components/Calendar/CalendarButton.d.ts +1 -0
  34. package/dist/src/components/Calendar/CalendarCell.d.ts +1 -0
  35. package/dist/src/components/Calendar/CalendarMonth.d.ts +1 -0
  36. package/dist/src/components/Calendar/CalendarRange.d.ts +1 -0
  37. package/dist/src/components/Calendar/CalendarYear.d.ts +1 -0
  38. package/dist/src/components/Chart/DoughnutChart.d.ts +1 -0
  39. package/dist/src/components/Chart/GradientBarChart.d.ts +1 -0
  40. package/dist/src/components/Chart/GradientBarChart.stories.d.ts +71 -4
  41. package/dist/src/components/Chart/GradientLineChart.d.ts +1 -0
  42. package/dist/src/components/Chart/GradientLineChart.stories.d.ts +82 -4
  43. package/dist/src/components/Chart/LineChart.d.ts +1 -0
  44. package/dist/src/components/Chart/LineChart.stories.d.ts +35 -2
  45. package/dist/src/components/Chips/Chips.config.d.ts +35 -0
  46. package/dist/src/components/Chips/Chips.d.ts +1 -0
  47. package/dist/src/components/Chips/Chips.stories.d.ts +137 -2
  48. package/dist/src/components/Collapse/Collapse.d.ts +1 -0
  49. package/dist/src/components/Collapse/Collapse.stories.d.ts +89 -2
  50. package/dist/src/components/Collapse/CollapseV2.d.ts +1 -0
  51. package/dist/src/components/Collapse/CollapseV2.stories.d.ts +59 -2
  52. package/dist/src/components/Colors/Colors.stories.d.ts +2 -1
  53. package/dist/src/components/DatePicker/DatePicker.d.ts +1 -0
  54. package/dist/src/components/DatePicker/DatePicker.stories.d.ts +221 -2
  55. package/dist/src/components/DatePicker/DateRangePicker.d.ts +1 -0
  56. package/dist/src/components/DatePicker/FilterDate.d.ts +2 -1
  57. package/dist/src/components/DatePicker/FilterDate.stories.d.ts +232 -3
  58. package/dist/src/components/DatePicker/MonthYearPicker.d.ts +1 -0
  59. package/dist/src/components/DatePicker/MonthYearPicker.stories.d.ts +198 -2
  60. package/dist/src/components/ErrorMessage/ErrorMessage.config.d.ts +8 -0
  61. package/dist/src/components/ErrorMessage/ErrorMessage.d.ts +1 -0
  62. package/dist/src/components/ErrorMessage/ErrorMessage.stories.d.ts +39 -2
  63. package/dist/src/components/FilterContainer/FilterContainer.d.ts +1 -0
  64. package/dist/src/components/FilterContainer/FilterContainer.stories.d.ts +165 -0
  65. package/dist/src/components/Input/InputFloatingInner.config.d.ts +9 -0
  66. package/dist/src/components/Input/InputFloatingInner.d.ts +1 -0
  67. package/dist/src/components/Input/InputFloatingInner.stories.d.ts +177 -6
  68. package/dist/src/components/Input/InputInnerLabel.config.d.ts +8 -0
  69. package/dist/src/components/Input/InputInnerLabel.d.ts +5 -0
  70. package/dist/src/components/Input/InputInnerLabel.stories.d.ts +205 -0
  71. package/dist/src/components/Input/InputNative.config.d.ts +9 -0
  72. package/dist/src/components/Input/InputNative.d.ts +1 -0
  73. package/dist/src/components/Input/InputNative.stories.d.ts +149 -5
  74. package/dist/src/components/Input/InputReguler.config.d.ts +9 -0
  75. package/dist/src/components/Input/InputReguler.d.ts +1 -0
  76. package/dist/src/components/Input/InputReguler.stories.d.ts +177 -6
  77. package/dist/src/components/Modal/ModalDialog.config.d.ts +9 -0
  78. package/dist/src/components/Modal/ModalDialog.d.ts +1 -0
  79. package/dist/src/components/Modal/ModalDialog.stories.d.ts +121 -2
  80. package/dist/src/components/NumberFormat/NumberFormat.d.ts +1 -0
  81. package/dist/src/components/NumberFormat/NumberFormat.stories.d.ts +373 -18
  82. package/dist/src/components/Pagination/Pagination.config.d.ts +5 -0
  83. package/dist/src/components/Pagination/Pagination.d.ts +2 -1
  84. package/dist/src/components/Pagination/Pagination.stories.d.ts +200 -3
  85. package/dist/src/components/Popover/Popover.d.ts +1 -0
  86. package/dist/src/components/Popover/Popover.stories.d.ts +216 -7
  87. package/dist/src/components/PortalComponent/PortalComponent.d.ts +1 -0
  88. package/dist/src/components/PortalComponent/PortalComponent.stories.d.ts +61 -0
  89. package/dist/src/components/RadioCheckbox/CheckboxTable.d.ts +1 -0
  90. package/dist/src/components/RadioCheckbox/RadioCheckbox.config.d.ts +41 -0
  91. package/dist/src/components/RadioCheckbox/RadioCheckbox.d.ts +1 -0
  92. package/dist/src/components/RadioCheckbox/RadioCheckbox.stories.d.ts +230 -8
  93. package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.config.d.ts +25 -0
  94. package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.d.ts +1 -0
  95. package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.stories.d.ts +196 -4
  96. package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.config.d.ts +26 -0
  97. package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.d.ts +2 -1
  98. package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.stories.d.ts +5 -4
  99. package/dist/src/components/SelectDropdownContainer/styleConfig.d.ts +5 -1
  100. package/dist/src/components/Sidebar/ItemSidebar.config.d.ts +34 -0
  101. package/dist/src/components/Sidebar/ItemSidebar.d.ts +1 -0
  102. package/dist/src/components/Sidebar/Sidebar.config.d.ts +16 -0
  103. package/dist/src/components/Sidebar/Sidebar.d.ts +2 -1
  104. package/dist/src/components/Sidebar/Sidebar.stories.d.ts +6 -5
  105. package/dist/src/components/Step/Step.d.ts +1 -0
  106. package/dist/src/components/Step/Step.stories.d.ts +135 -2
  107. package/dist/src/components/Step/StepIndicator.d.ts +1 -0
  108. package/dist/src/components/Step/StepIndicator.stories.d.ts +148 -2
  109. package/dist/src/components/Switch/Switch.config.d.ts +26 -0
  110. package/dist/src/components/Switch/Switch.d.ts +1 -0
  111. package/dist/src/components/Switch/Switch.stories.d.ts +128 -2
  112. package/dist/src/components/Table/Table.config.d.ts +5 -0
  113. package/dist/src/components/Table/Table.d.ts +3 -3
  114. package/dist/src/components/Table/Table.stories.d.ts +71 -52
  115. package/dist/src/components/Table/TableSubMobile.d.ts +4 -0
  116. package/dist/src/components/Tabs/TabPanel.d.ts +1 -0
  117. package/dist/src/components/Tabs/Tabs.config.d.ts +31 -0
  118. package/dist/src/components/Tabs/Tabs.d.ts +2 -1
  119. package/dist/src/components/Tabs/Tabs.stories.d.ts +220 -3
  120. package/dist/src/components/TextEditor/TextEditor.d.ts +1 -0
  121. package/dist/src/components/TextEditor/TextEditor.stories.d.ts +59 -10
  122. package/dist/src/components/Textarea/Textarea.config.d.ts +31 -0
  123. package/dist/src/components/Textarea/Textarea.d.ts +1 -0
  124. package/dist/src/components/Textarea/Textarea.stories.d.ts +250 -3
  125. package/dist/src/components/Textarea/TextareaFloatingInner.config.d.ts +6 -0
  126. package/dist/src/components/Textarea/TextareaFloatingInner.d.ts +1 -0
  127. package/dist/src/components/Textarea/TextareaFloatingInner.stories.d.ts +260 -3
  128. package/dist/src/components/Textarea/TextareaInnerLabel.config.d.ts +7 -0
  129. package/dist/src/components/Textarea/TextareaInnerLabel.d.ts +5 -0
  130. package/dist/src/components/Textarea/TextareaInnerLabel.stories.d.ts +259 -0
  131. package/dist/src/components/TimeRange/TimeRange.d.ts +4 -0
  132. package/dist/src/components/TimeRange/TimeRange.stories.d.ts +186 -0
  133. package/dist/src/components/Timeline/Timeline.d.ts +1 -0
  134. package/dist/src/components/Timeline/Timeline.stories.d.ts +40 -2
  135. package/dist/src/components/Tooltip/Tooltip.d.ts +1 -0
  136. package/dist/src/components/Tooltip/Tooltip.stories.d.ts +159 -2
  137. package/dist/src/components/TruncateComponent/TruncateComponent.d.ts +1 -0
  138. package/dist/src/components/TruncateComponent/TruncateComponent.stories.d.ts +106 -2
  139. package/dist/src/components/Typography/Typography.stories.d.ts +2 -1
  140. package/dist/src/components/Upload/UploadFile.d.ts +1 -0
  141. package/dist/src/components/Upload/UploadFile.stories.d.ts +127 -2
  142. package/dist/src/components/Upload/UploadImage.d.ts +2 -1
  143. package/dist/src/components/Upload/UploadImage.stories.d.ts +145 -3
  144. package/dist/src/components/Upload/UploadMultipleFile.d.ts +2 -1
  145. package/dist/src/components/Upload/UploadMultipleFile.stories.d.ts +190 -3
  146. package/dist/src/components/Virtualization/ListVirtualization.d.ts +1 -0
  147. package/dist/src/components/Virtualization/ListVirtualization.stories.d.ts +279 -2
  148. package/dist/src/components/Virtualization/TableVirtualization.d.ts +1 -0
  149. package/dist/src/components/Virtualization/TableVirtualization.stories.d.ts +296 -2
  150. package/dist/src/components/index.d.ts +15 -8
  151. package/dist/src/components/screens/Screens.stories.d.ts +14 -0
  152. package/dist/src/config/bigNumber/index.d.ts +1 -0
  153. package/dist/src/config/components/borderRadius.d.ts +1 -0
  154. package/dist/src/config/components/font.d.ts +7 -0
  155. package/dist/src/config/components/gap.d.ts +1 -0
  156. package/dist/src/config/components/tinymce.d.ts +1 -0
  157. package/dist/src/config/components/typography.d.ts +3 -49
  158. package/dist/src/config/tailwind/index.d.ts +3 -1
  159. package/dist/src/config/tailwind/nativeScreen.d.ts +3 -0
  160. package/dist/src/config/tailwind/typography.d.ts +1 -0
  161. package/dist/src/hooks/index.d.ts +6 -3
  162. package/dist/src/hooks/useAsyncDebounce.d.ts +9 -0
  163. package/dist/src/hooks/useCombinedResizeObserver.d.ts +67 -0
  164. package/dist/src/hooks/useCountdown.d.ts +67 -3
  165. package/dist/src/hooks/useDeepCompareEffect.d.ts +14 -0
  166. package/dist/src/hooks/useElementOrWindowMediaQuery.d.ts +9 -0
  167. package/dist/src/hooks/useEventListener.d.ts +28 -0
  168. package/dist/src/hooks/useMasonry.d.ts +80 -0
  169. package/dist/src/hooks/useMergeRefs.d.ts +27 -0
  170. package/dist/src/hooks/useOtpInput.d.ts +200 -0
  171. package/dist/src/hooks/useStateRef.d.ts +9 -0
  172. package/dist/src/interfaces/components/Alert/index.d.ts +9 -0
  173. package/dist/src/interfaces/components/Badges/index.d.ts +31 -1
  174. package/dist/src/interfaces/components/Breadcrumbs/index.d.ts +86 -2
  175. package/dist/src/interfaces/components/Button/index.d.ts +47 -2
  176. package/dist/src/interfaces/components/ButtonIcon/index.d.ts +37 -0
  177. package/dist/src/interfaces/components/ButtonPopover/index.d.ts +79 -0
  178. package/dist/src/interfaces/components/Calendar/index.d.ts +385 -3
  179. package/dist/src/interfaces/components/Chart/index.d.ts +461 -0
  180. package/dist/src/interfaces/components/Checkbox/index.d.ts +13 -0
  181. package/dist/src/interfaces/components/Chips/index.d.ts +39 -1
  182. package/dist/src/interfaces/components/Collapse/index.d.ts +61 -0
  183. package/dist/src/interfaces/components/DatePicker/index.d.ts +278 -1
  184. package/dist/src/interfaces/components/ErrorMessage/index.d.ts +17 -1
  185. package/dist/src/interfaces/components/FilterContainer/index.d.ts +103 -0
  186. package/dist/src/interfaces/components/Input/index.d.ts +194 -0
  187. package/dist/src/interfaces/components/Modal/index.d.ts +46 -0
  188. package/dist/src/interfaces/components/NumberFormat/index.d.ts +26 -0
  189. package/dist/src/interfaces/components/Pagination/index.d.ts +84 -0
  190. package/dist/src/interfaces/components/Popover/index.d.ts +99 -1
  191. package/dist/src/interfaces/components/RadioCheckbox/RadioCheckbox.d.ts +60 -2
  192. package/dist/src/interfaces/components/RadioCheckbox/RadioCheckboxLabel.d.ts +47 -1
  193. package/dist/src/interfaces/components/SelectDropdownContainer/index.d.ts +197 -2
  194. package/dist/src/interfaces/components/Sidebar/index.d.ts +230 -1
  195. package/dist/src/interfaces/components/Step/index.d.ts +154 -0
  196. package/dist/src/interfaces/components/Switch/index.d.ts +54 -1
  197. package/dist/src/interfaces/components/Table/index.d.ts +403 -6
  198. package/dist/src/interfaces/components/Tabs/index.d.ts +131 -1
  199. package/dist/src/interfaces/components/TextEditor/index.d.ts +13 -0
  200. package/dist/src/interfaces/components/Textarea/index.d.ts +170 -0
  201. package/dist/src/interfaces/components/TimeRange/index.d.ts +129 -0
  202. package/dist/src/interfaces/components/Timeline/index.d.ts +37 -0
  203. package/dist/src/interfaces/components/Tooltip/index.d.ts +57 -0
  204. package/dist/src/interfaces/components/TruncateComponent/index.d.ts +34 -0
  205. package/dist/src/interfaces/components/UploadFile/index.d.ts +187 -0
  206. package/dist/src/interfaces/components/Virtualization/ListVirtualization.d.ts +139 -0
  207. package/dist/src/interfaces/components/Virtualization/TableVirtualization.d.ts +144 -0
  208. package/dist/src/main.d.ts +1 -0
  209. package/dist/src/utils/common.d.ts +5 -4
  210. package/dist/src/utils/constant.d.ts +1 -0
  211. package/dist/types-external/table.d.ts +3 -0
  212. package/package.json +46 -47
  213. package/dist/index.cjs.map +0 -1
  214. package/dist/index.mjs.map +0 -1
@@ -1,7 +1,7 @@
1
1
  declare const _default: {
2
2
  "name": "1mpacto-react-ui",
3
3
  "private": false,
4
- "version": "0.2.0-beta.9",
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": "^4.0.1",
32
- "@eslint/compat": "^1.3.1",
33
- "@eslint/eslintrc": "^3.3.1",
34
- "@eslint/js": "^9.32.0",
35
- "@storybook/addon-docs": "^9.0.18",
36
- "@storybook/addon-onboarding": "^9.0.18",
37
- "@storybook/react-vite": "^9.0.18",
38
- "@stylistic/eslint-plugin": "^5.2.2",
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": "^19.1.9",
43
- "@types/react-dom": "^19.1.7",
44
- "@typescript-eslint/eslint-plugin": "^8.38.0",
45
- "@typescript-eslint/parser": "^8.38.0",
46
- "@vitejs/plugin-react-swc": "^3.9.0",
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": "^9.32.0",
49
- "eslint-config-prettier": "^10.1.8",
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.5.3",
52
- "eslint-plugin-react": "^7.37.5",
53
- "eslint-plugin-react-hooks": "^5.2.0",
54
- "eslint-plugin-react-refresh": "^0.4.19",
55
- "eslint-plugin-storybook": "^9.0.18",
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
- "globals": "^16.3.0",
58
- "husky": "^9.1.7",
59
- "lint-staged": "^16.1.2",
60
- "postcss": "^8.5.2",
61
- "prettier": "^3.6.2",
62
- "react": "^19.1.1",
63
- "react-dom": "^19.1.1",
64
- "sass": "^1.89.2",
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": "~5.8.3",
69
- "vite": "^6.3.5",
70
- "vite-plugin-dts": "^4.5.4"
67
+ "typescript": "^5.2.2",
68
+ "vite": "^5.3.1",
69
+ "vite-plugin-dts": "^3.9.1"
71
70
  },
72
71
  "peerDependencies": {
73
- "react": ">= 19",
74
- "react-dom": ">=19",
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.27.15",
113
- "@internationalized/date": "^3.8.2",
114
- "@tanstack/react-table": "^8.21.3",
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.5.0",
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.42.0",
124
- "react-chartjs-2": "^5.3.0",
125
- "react-number-format": "^5.4.4",
126
- "react-select": "^5.10.2",
127
- "react-stately": "^3.40.0",
128
- "react-toastify": "^11.0.5",
129
- "react-virtuoso": "^4.13.0",
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,3 +1,4 @@
1
1
  import { IBadges } from '../../interfaces/components/Badges';
2
+
2
3
  declare const Badges: import('react').ForwardRefExoticComponent<IBadges & import('react').RefAttributes<HTMLSpanElement>>;
3
4
  export default Badges;
@@ -1,4 +1,5 @@
1
- import { StoryObj } from '@storybook/react-vite';
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
- type: "string";
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
- declare const Breadcrumbs: <T extends ElementType = "div">({ as, variants, fonts, urls, textBreadcrumbs, onClickBreadcrumbs, gapAction, gapUrls, className, textAction, iconAction, onClickAction, onClickUrls, separator, propsLink, ...props }: IBreadcrumbs<T>) => import("react/jsx-runtime").JSX.Element;
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;