1mpacto-react-ui 0.2.0-beta.9 → 2.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 (158) 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/typography.css +96 -0
  11. package/dist/index.cjs +108 -96
  12. package/dist/index.d.ts +2 -0
  13. package/dist/index.mjs +16743 -15220
  14. package/dist/package.json.d.ts +1 -1
  15. package/dist/src/components/Badges/Badges.config.d.ts +57 -0
  16. package/dist/src/components/Badges/Badges.stories.d.ts +115 -1
  17. package/dist/src/components/Breadcrumbs/Breadcrumbs.config.d.ts +113 -0
  18. package/dist/src/components/Breadcrumbs/Breadcrumbs.d.ts +1 -1
  19. package/dist/src/components/Breadcrumbs/Breadcrumbs.stories.d.ts +219 -5
  20. package/dist/src/components/Button/Button.config.d.ts +70 -0
  21. package/dist/src/components/Button/Button.stories.d.ts +127 -3
  22. package/dist/src/components/ButtonIcon/ButtonIcon.config.d.ts +53 -0
  23. package/dist/src/components/ButtonIcon/ButtonIcon.stories.d.ts +121 -3
  24. package/dist/src/components/ButtonPopover/ButtonPopover.stories.d.ts +256 -1
  25. package/dist/src/components/Calendar/Calendar.d.ts +2 -1
  26. package/dist/src/components/Calendar/Calendar.stories.d.ts +281 -1
  27. package/dist/src/components/Chart/GradientBarChart.stories.d.ts +67 -1
  28. package/dist/src/components/Chart/GradientLineChart.stories.d.ts +78 -1
  29. package/dist/src/components/Chart/LineChart.stories.d.ts +33 -1
  30. package/dist/src/components/Chips/Chips.config.d.ts +35 -0
  31. package/dist/src/components/Chips/Chips.stories.d.ts +135 -1
  32. package/dist/src/components/Collapse/Collapse.stories.d.ts +87 -1
  33. package/dist/src/components/Collapse/CollapseV2.stories.d.ts +57 -1
  34. package/dist/src/components/DatePicker/DatePicker.stories.d.ts +219 -1
  35. package/dist/src/components/DatePicker/FilterDate.d.ts +1 -1
  36. package/dist/src/components/DatePicker/FilterDate.stories.d.ts +230 -2
  37. package/dist/src/components/DatePicker/MonthYearPicker.stories.d.ts +196 -1
  38. package/dist/src/components/ErrorMessage/ErrorMessage.config.d.ts +8 -0
  39. package/dist/src/components/ErrorMessage/ErrorMessage.stories.d.ts +37 -1
  40. package/dist/src/components/FilterContainer/FilterContainer.stories.d.ts +164 -0
  41. package/dist/src/components/Input/InputFloatingInner.config.d.ts +9 -0
  42. package/dist/src/components/Input/InputFloatingInner.stories.d.ts +175 -5
  43. package/dist/src/components/Input/InputInnerLabel.config.d.ts +8 -0
  44. package/dist/src/components/Input/InputInnerLabel.d.ts +4 -0
  45. package/dist/src/components/Input/InputInnerLabel.stories.d.ts +204 -0
  46. package/dist/src/components/Input/InputNative.config.d.ts +9 -0
  47. package/dist/src/components/Input/InputNative.stories.d.ts +147 -4
  48. package/dist/src/components/Input/InputReguler.config.d.ts +9 -0
  49. package/dist/src/components/Input/InputReguler.stories.d.ts +175 -5
  50. package/dist/src/components/Modal/ModalDialog.config.d.ts +9 -0
  51. package/dist/src/components/Modal/ModalDialog.stories.d.ts +119 -1
  52. package/dist/src/components/NumberFormat/NumberFormat.stories.d.ts +371 -17
  53. package/dist/src/components/Pagination/Pagination.config.d.ts +5 -0
  54. package/dist/src/components/Pagination/Pagination.d.ts +1 -1
  55. package/dist/src/components/Pagination/Pagination.stories.d.ts +198 -2
  56. package/dist/src/components/Popover/Popover.stories.d.ts +212 -4
  57. package/dist/src/components/PortalComponent/PortalComponent.stories.d.ts +60 -0
  58. package/dist/src/components/RadioCheckbox/RadioCheckbox.config.d.ts +41 -0
  59. package/dist/src/components/RadioCheckbox/RadioCheckbox.stories.d.ts +228 -7
  60. package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.config.d.ts +25 -0
  61. package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.stories.d.ts +194 -3
  62. package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.config.d.ts +26 -0
  63. package/dist/src/components/SelectDropdownContainer/styleConfig.d.ts +4 -1
  64. package/dist/src/components/Sidebar/ItemSidebar.config.d.ts +34 -0
  65. package/dist/src/components/Sidebar/Sidebar.config.d.ts +16 -0
  66. package/dist/src/components/Step/Step.stories.d.ts +133 -1
  67. package/dist/src/components/Step/StepIndicator.stories.d.ts +146 -1
  68. package/dist/src/components/Switch/Switch.config.d.ts +26 -0
  69. package/dist/src/components/Switch/Switch.stories.d.ts +126 -1
  70. package/dist/src/components/Table/Table.config.d.ts +4 -0
  71. package/dist/src/components/Table/Table.d.ts +2 -3
  72. package/dist/src/components/Table/Table.stories.d.ts +69 -51
  73. package/dist/src/components/Table/TableSubMobile.d.ts +3 -0
  74. package/dist/src/components/Tabs/Tabs.config.d.ts +31 -0
  75. package/dist/src/components/Tabs/Tabs.d.ts +1 -1
  76. package/dist/src/components/Tabs/Tabs.stories.d.ts +218 -2
  77. package/dist/src/components/TextEditor/TextEditor.stories.d.ts +57 -9
  78. package/dist/src/components/Textarea/Textarea.config.d.ts +31 -0
  79. package/dist/src/components/Textarea/Textarea.stories.d.ts +248 -2
  80. package/dist/src/components/Textarea/TextareaFloatingInner.config.d.ts +6 -0
  81. package/dist/src/components/Textarea/TextareaFloatingInner.stories.d.ts +258 -2
  82. package/dist/src/components/Textarea/TextareaInnerLabel.config.d.ts +7 -0
  83. package/dist/src/components/Textarea/TextareaInnerLabel.d.ts +4 -0
  84. package/dist/src/components/Textarea/TextareaInnerLabel.stories.d.ts +258 -0
  85. package/dist/src/components/TimeRange/TimeRange.d.ts +3 -0
  86. package/dist/src/components/TimeRange/TimeRange.stories.d.ts +185 -0
  87. package/dist/src/components/Timeline/Timeline.stories.d.ts +38 -1
  88. package/dist/src/components/Tooltip/Tooltip.stories.d.ts +157 -1
  89. package/dist/src/components/TruncateComponent/TruncateComponent.stories.d.ts +104 -1
  90. package/dist/src/components/Upload/UploadFile.stories.d.ts +125 -1
  91. package/dist/src/components/Upload/UploadImage.d.ts +1 -1
  92. package/dist/src/components/Upload/UploadImage.stories.d.ts +143 -2
  93. package/dist/src/components/Upload/UploadMultipleFile.d.ts +1 -1
  94. package/dist/src/components/Upload/UploadMultipleFile.stories.d.ts +188 -2
  95. package/dist/src/components/Virtualization/ListVirtualization.stories.d.ts +277 -1
  96. package/dist/src/components/Virtualization/TableVirtualization.stories.d.ts +294 -1
  97. package/dist/src/components/index.d.ts +14 -8
  98. package/dist/src/components/screens/Screens.stories.d.ts +13 -0
  99. package/dist/src/config/components/borderRadius.d.ts +1 -0
  100. package/dist/src/config/components/font.d.ts +7 -0
  101. package/dist/src/config/components/gap.d.ts +1 -0
  102. package/dist/src/config/components/typography.d.ts +3 -49
  103. package/dist/src/config/tailwind/index.d.ts +2 -1
  104. package/dist/src/config/tailwind/nativeScreen.d.ts +3 -0
  105. package/dist/src/config/tailwind/typography.d.ts +1 -0
  106. package/dist/src/hooks/index.d.ts +5 -3
  107. package/dist/src/hooks/useAsyncDebounce.d.ts +9 -0
  108. package/dist/src/hooks/useCombinedResizeObserver.d.ts +66 -0
  109. package/dist/src/hooks/useCountdown.d.ts +67 -3
  110. package/dist/src/hooks/useDeepCompareEffect.d.ts +13 -0
  111. package/dist/src/hooks/useElementOrWindowMediaQuery.d.ts +9 -0
  112. package/dist/src/hooks/useEventListener.d.ts +27 -0
  113. package/dist/src/hooks/useMasonry.d.ts +79 -0
  114. package/dist/src/hooks/useMergeRefs.d.ts +26 -0
  115. package/dist/src/hooks/useOtpInput.d.ts +199 -0
  116. package/dist/src/hooks/useStateRef.d.ts +8 -0
  117. package/dist/src/interfaces/components/Alert/index.d.ts +8 -0
  118. package/dist/src/interfaces/components/Badges/index.d.ts +30 -1
  119. package/dist/src/interfaces/components/Breadcrumbs/index.d.ts +85 -2
  120. package/dist/src/interfaces/components/Button/index.d.ts +46 -2
  121. package/dist/src/interfaces/components/ButtonIcon/index.d.ts +36 -0
  122. package/dist/src/interfaces/components/ButtonPopover/index.d.ts +78 -0
  123. package/dist/src/interfaces/components/Calendar/index.d.ts +384 -3
  124. package/dist/src/interfaces/components/Chart/index.d.ts +460 -0
  125. package/dist/src/interfaces/components/Checkbox/index.d.ts +12 -0
  126. package/dist/src/interfaces/components/Chips/index.d.ts +38 -1
  127. package/dist/src/interfaces/components/Collapse/index.d.ts +60 -0
  128. package/dist/src/interfaces/components/DatePicker/index.d.ts +277 -1
  129. package/dist/src/interfaces/components/ErrorMessage/index.d.ts +17 -1
  130. package/dist/src/interfaces/components/FilterContainer/index.d.ts +102 -0
  131. package/dist/src/interfaces/components/Input/index.d.ts +193 -0
  132. package/dist/src/interfaces/components/Modal/index.d.ts +45 -0
  133. package/dist/src/interfaces/components/NumberFormat/index.d.ts +25 -0
  134. package/dist/src/interfaces/components/Pagination/index.d.ts +83 -0
  135. package/dist/src/interfaces/components/Popover/index.d.ts +98 -1
  136. package/dist/src/interfaces/components/RadioCheckbox/RadioCheckbox.d.ts +59 -2
  137. package/dist/src/interfaces/components/RadioCheckbox/RadioCheckboxLabel.d.ts +46 -1
  138. package/dist/src/interfaces/components/SelectDropdownContainer/index.d.ts +196 -2
  139. package/dist/src/interfaces/components/Sidebar/index.d.ts +229 -1
  140. package/dist/src/interfaces/components/Step/index.d.ts +153 -0
  141. package/dist/src/interfaces/components/Switch/index.d.ts +54 -1
  142. package/dist/src/interfaces/components/Table/index.d.ts +402 -6
  143. package/dist/src/interfaces/components/Tabs/index.d.ts +130 -1
  144. package/dist/src/interfaces/components/TextEditor/index.d.ts +12 -0
  145. package/dist/src/interfaces/components/Textarea/index.d.ts +169 -0
  146. package/dist/src/interfaces/components/TimeRange/index.d.ts +128 -0
  147. package/dist/src/interfaces/components/Timeline/index.d.ts +36 -0
  148. package/dist/src/interfaces/components/Tooltip/index.d.ts +56 -0
  149. package/dist/src/interfaces/components/TruncateComponent/index.d.ts +34 -0
  150. package/dist/src/interfaces/components/UploadFile/index.d.ts +186 -0
  151. package/dist/src/interfaces/components/Virtualization/ListVirtualization.d.ts +138 -0
  152. package/dist/src/interfaces/components/Virtualization/TableVirtualization.d.ts +143 -0
  153. package/dist/src/utils/common.d.ts +4 -4
  154. package/dist/src/utils/constant.d.ts +1 -0
  155. package/dist/types-external/table.d.ts +3 -0
  156. package/package.json +1 -1
  157. package/dist/index.cjs.map +0 -1
  158. 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": "2.0.0",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "node": ">=20.19.4",
@@ -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[];
@@ -7,8 +7,122 @@ declare const meta: {
7
7
  };
8
8
  tags: string[];
9
9
  argTypes: {
10
+ children: {
11
+ control: "text";
12
+ description: string;
13
+ table: {
14
+ category: string;
15
+ type: {
16
+ summary: string;
17
+ };
18
+ };
19
+ };
20
+ variants: {
21
+ control: {
22
+ type: "select";
23
+ };
24
+ options: string[];
25
+ description: string;
26
+ table: {
27
+ category: string;
28
+ type: {
29
+ summary: string;
30
+ };
31
+ defaultValue: {
32
+ summary: string;
33
+ };
34
+ };
35
+ };
36
+ rounded: {
37
+ control: {
38
+ type: "select";
39
+ };
40
+ options: string[];
41
+ description: string;
42
+ table: {
43
+ category: string;
44
+ type: {
45
+ summary: string;
46
+ };
47
+ defaultValue: {
48
+ summary: string;
49
+ };
50
+ };
51
+ };
52
+ typography: {
53
+ control: {
54
+ type: "select";
55
+ };
56
+ options: string[];
57
+ description: string;
58
+ table: {
59
+ category: string;
60
+ type: {
61
+ summary: string;
62
+ };
63
+ defaultValue: {
64
+ summary: string;
65
+ };
66
+ };
67
+ };
68
+ fonts: {
69
+ control: {
70
+ type: "select";
71
+ };
72
+ options: string[];
73
+ description: string;
74
+ table: {
75
+ category: string;
76
+ type: {
77
+ summary: string;
78
+ };
79
+ defaultValue: {
80
+ summary: string;
81
+ };
82
+ };
83
+ };
10
84
  className: {
11
- type: "string";
85
+ control: "text";
86
+ description: string;
87
+ table: {
88
+ category: string;
89
+ type: {
90
+ summary: string;
91
+ };
92
+ defaultValue: {
93
+ summary: string;
94
+ };
95
+ };
96
+ };
97
+ style: {
98
+ control: "object";
99
+ description: string;
100
+ table: {
101
+ category: string;
102
+ type: {
103
+ summary: string;
104
+ };
105
+ };
106
+ };
107
+ onClick: {
108
+ action: string;
109
+ description: string;
110
+ table: {
111
+ category: string;
112
+ type: {
113
+ summary: string;
114
+ };
115
+ };
116
+ };
117
+ title: {
118
+ control: "text";
119
+ description: string;
120
+ table: {
121
+ category: string;
122
+ type: {
123
+ summary: string;
124
+ };
125
+ };
12
126
  };
13
127
  };
14
128
  };
@@ -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,4 @@
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
+ 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
4
  export default Breadcrumbs;
@@ -1,20 +1,234 @@
1
1
  import { StoryObj } from '@storybook/react-vite';
2
2
  declare const meta: {
3
3
  title: string;
4
- component: <T extends import('react').ElementType = "div">({ as, variants, fonts, urls, textBreadcrumbs, onClickBreadcrumbs, gapAction, gapUrls, className, textAction, iconAction, onClickAction, onClickUrls, separator, propsLink, ...props }: import('../../interfaces/components/Breadcrumbs').IBreadcrumbs<T>) => import("react/jsx-runtime").JSX.Element;
4
+ component: <T extends import('react').ElementType = "div">({ as, variants, fonts, urls, textBreadcrumbs, onClickBreadcrumbs, gapAction, gapUrls, className, textAction, iconAction, onClickAction, onClickUrls, separator, propsLink, classNameAction, classNameUrl, renderAction, ...props }: import('../../interfaces/components/Breadcrumbs').IBreadcrumbs<T>) => import("react/jsx-runtime").JSX.Element;
5
5
  parameters: {
6
6
  layout: string;
7
7
  };
8
8
  tags: string[];
9
9
  argTypes: {
10
+ urls: {
11
+ control: "object";
12
+ description: string;
13
+ table: {
14
+ category: string;
15
+ type: {
16
+ summary: string;
17
+ };
18
+ defaultValue: {
19
+ summary: string;
20
+ };
21
+ };
22
+ };
23
+ textBreadcrumbs: {
24
+ control: "object";
25
+ description: string;
26
+ table: {
27
+ category: string;
28
+ type: {
29
+ summary: string;
30
+ };
31
+ defaultValue: {
32
+ summary: string;
33
+ };
34
+ };
35
+ };
36
+ separator: {
37
+ control: "text";
38
+ description: string;
39
+ table: {
40
+ category: string;
41
+ type: {
42
+ summary: string;
43
+ };
44
+ defaultValue: {
45
+ summary: string;
46
+ };
47
+ };
48
+ };
49
+ textAction: {
50
+ control: "text";
51
+ description: string;
52
+ table: {
53
+ category: string;
54
+ type: {
55
+ summary: string;
56
+ };
57
+ defaultValue: {
58
+ summary: string;
59
+ };
60
+ };
61
+ };
62
+ iconAction: {
63
+ control: "object";
64
+ description: string;
65
+ table: {
66
+ category: string;
67
+ type: {
68
+ summary: string;
69
+ };
70
+ };
71
+ };
72
+ variants: {
73
+ control: {
74
+ type: "select";
75
+ };
76
+ options: string[];
77
+ description: string;
78
+ table: {
79
+ category: string;
80
+ type: {
81
+ summary: string;
82
+ };
83
+ defaultValue: {
84
+ summary: string;
85
+ };
86
+ };
87
+ };
88
+ fonts: {
89
+ control: {
90
+ type: "select";
91
+ };
92
+ options: string[];
93
+ description: string;
94
+ table: {
95
+ category: string;
96
+ type: {
97
+ summary: string;
98
+ };
99
+ defaultValue: {
100
+ summary: string;
101
+ };
102
+ };
103
+ };
104
+ gapAction: {
105
+ control: {
106
+ type: "select";
107
+ };
108
+ options: string[];
109
+ description: string;
110
+ table: {
111
+ category: string;
112
+ type: {
113
+ summary: string;
114
+ };
115
+ };
116
+ };
117
+ gapUrls: {
118
+ control: {
119
+ type: "select";
120
+ };
121
+ options: string[];
122
+ description: string;
123
+ table: {
124
+ category: string;
125
+ type: {
126
+ summary: string;
127
+ };
128
+ };
129
+ };
10
130
  className: {
11
- type: "string";
131
+ control: "text";
132
+ description: string;
133
+ table: {
134
+ category: string;
135
+ type: {
136
+ summary: string;
137
+ };
138
+ };
139
+ };
140
+ classNameAction: {
141
+ control: "text";
142
+ description: string;
143
+ table: {
144
+ category: string;
145
+ type: {
146
+ summary: string;
147
+ };
148
+ };
149
+ };
150
+ classNameUrl: {
151
+ control: "text";
152
+ description: string;
153
+ table: {
154
+ category: string;
155
+ type: {
156
+ summary: string;
157
+ };
158
+ };
159
+ };
160
+ onClick: {
161
+ action: string;
162
+ description: string;
163
+ table: {
164
+ category: string;
165
+ type: {
166
+ summary: string;
167
+ };
168
+ };
169
+ };
170
+ onClickAction: {
171
+ action: string;
172
+ description: string;
173
+ table: {
174
+ category: string;
175
+ type: {
176
+ summary: string;
177
+ };
178
+ };
179
+ };
180
+ onClickUrls: {
181
+ action: string;
182
+ description: string;
183
+ table: {
184
+ category: string;
185
+ type: {
186
+ summary: string;
187
+ };
188
+ };
189
+ };
190
+ onClickBreadcrumbs: {
191
+ control: "object";
192
+ description: string;
193
+ table: {
194
+ category: string;
195
+ type: {
196
+ summary: string;
197
+ };
198
+ };
12
199
  };
13
200
  as: {
14
- type: "string";
201
+ control: "text";
202
+ description: string;
203
+ table: {
204
+ category: string;
205
+ type: {
206
+ summary: string;
207
+ };
208
+ defaultValue: {
209
+ summary: string;
210
+ };
211
+ };
15
212
  };
16
- separator: {
17
- type: "string";
213
+ propsLink: {
214
+ control: "object";
215
+ description: string;
216
+ table: {
217
+ category: string;
218
+ type: {
219
+ summary: string;
220
+ };
221
+ };
222
+ };
223
+ renderAction: {
224
+ control: "object";
225
+ description: string;
226
+ table: {
227
+ category: string;
228
+ type: {
229
+ summary: string;
230
+ };
231
+ };
18
232
  };
19
233
  };
20
234
  render: (args: import('../../interfaces/components/Breadcrumbs').IBreadcrumbs<import('react').ElementType>) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,70 @@
1
+ export declare const configButton: {
2
+ size: {
3
+ large: string;
4
+ reguler: string;
5
+ small: string;
6
+ 'extra-small': string;
7
+ l: string;
8
+ m: string;
9
+ s: string;
10
+ xs: string;
11
+ 'bill-l': string;
12
+ 'bill-m': string;
13
+ 'bill-s': string;
14
+ 'bill-xs': string;
15
+ };
16
+ loadingSize: {
17
+ large: string;
18
+ reguler: string;
19
+ small: string;
20
+ 'extra-small': string;
21
+ l: string;
22
+ m: string;
23
+ s: string;
24
+ xs: string;
25
+ 'bill-l': string;
26
+ 'bill-m': string;
27
+ 'bill-s': string;
28
+ 'bill-xs': string;
29
+ };
30
+ variants: {
31
+ 'primary-laba-blue-10': string;
32
+ 'primary-red-700-dsb_laba-grey-06': string;
33
+ 'primary-green-700': string;
34
+ 'ghost-laba-blue-10': string;
35
+ 'ghost-red-700': string;
36
+ 'ghost-green-700': string;
37
+ 'ghost-laba-green-10': string;
38
+ 'nude-laba-blue-10': string;
39
+ 'nude-red-700': string;
40
+ 'nude-green-700': string;
41
+ 'nude-gray-500': string;
42
+ 'primary-blue-700': string;
43
+ 'secondary-blue-700': string;
44
+ 'tertiary-blue-700': string;
45
+ 'ghost-blue-gray-100-bg_white': string;
46
+ 'ghost-blue-gray-100-bg_white-text_blue-gray-400': string;
47
+ 'ghost-laba-blue-05': string;
48
+ 'secondary-red-600': string;
49
+ 'tertiary-red-300': string;
50
+ 'tertiary-gray-500': string;
51
+ 'tertiary-red-600': string;
52
+ 'tertiary-black': string;
53
+ 'secondary-green-600': string;
54
+ 'nude-laba-red-10': string;
55
+ 'nude-laba-red-05': string;
56
+ 'primary-red-700': string;
57
+ 'nude-laba-red-08': string;
58
+ 'ghost-laba-blue-01': string;
59
+ 'filled-laba-white_laba-blue-10': string;
60
+ 'filled-laba-white_laba-red-05': string;
61
+ 'secondary-red-700': string;
62
+ 'primary-bill-primary-600': string;
63
+ 'secondary-bill-secondary-800': string;
64
+ 'tertiary-bill-secondary-800': string;
65
+ 'primary-bill-red-700': string;
66
+ };
67
+ };
68
+ export declare const keysConfigButtonVariant: string[];
69
+ export declare const keysConfigButtonSize: string[];
70
+ export declare const keysConfigButtonLoadingSize: string[];