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
@@ -7,26 +7,247 @@ declare const meta: {
7
7
  };
8
8
  tags: string[];
9
9
  argTypes: {
10
+ label: {
11
+ control: "text";
12
+ description: string;
13
+ table: {
14
+ category: string;
15
+ type: {
16
+ summary: string;
17
+ };
18
+ };
19
+ };
20
+ checkedIcon: {
21
+ control: "object";
22
+ description: string;
23
+ table: {
24
+ category: string;
25
+ type: {
26
+ summary: string;
27
+ };
28
+ };
29
+ };
30
+ sizeInput: {
31
+ control: {
32
+ type: "select";
33
+ };
34
+ options: string[];
35
+ description: string;
36
+ table: {
37
+ category: string;
38
+ type: {
39
+ summary: string;
40
+ };
41
+ defaultValue: {
42
+ summary: string;
43
+ };
44
+ };
45
+ };
46
+ variants: {
47
+ control: {
48
+ type: "select";
49
+ };
50
+ options: string[];
51
+ description: string;
52
+ table: {
53
+ category: string;
54
+ type: {
55
+ summary: string;
56
+ };
57
+ defaultValue: {
58
+ summary: string;
59
+ };
60
+ };
61
+ };
62
+ variantDisableds: {
63
+ control: {
64
+ type: "select";
65
+ };
66
+ options: string[];
67
+ description: string;
68
+ table: {
69
+ category: string;
70
+ type: {
71
+ summary: string;
72
+ };
73
+ defaultValue: {
74
+ summary: string;
75
+ };
76
+ };
77
+ };
78
+ borderRadius: {
79
+ control: {
80
+ type: "select";
81
+ };
82
+ options: string[];
83
+ description: string;
84
+ table: {
85
+ category: string;
86
+ type: {
87
+ summary: string;
88
+ };
89
+ defaultValue: {
90
+ summary: string;
91
+ };
92
+ };
93
+ };
94
+ typography: {
95
+ control: {
96
+ type: "select";
97
+ };
98
+ options: string[];
99
+ description: string;
100
+ table: {
101
+ category: string;
102
+ type: {
103
+ summary: string;
104
+ };
105
+ defaultValue: {
106
+ summary: string;
107
+ };
108
+ };
109
+ };
110
+ fonts: {
111
+ control: {
112
+ type: "select";
113
+ };
114
+ options: string[];
115
+ description: string;
116
+ table: {
117
+ category: string;
118
+ type: {
119
+ summary: string;
120
+ };
121
+ defaultValue: {
122
+ summary: string;
123
+ };
124
+ };
125
+ };
10
126
  className: {
11
- type: "string";
127
+ control: "text";
128
+ description: string;
129
+ table: {
130
+ category: string;
131
+ type: {
132
+ summary: string;
133
+ };
134
+ };
12
135
  };
13
136
  classNameContainer: {
14
- type: "string";
137
+ control: "text";
138
+ description: string;
139
+ table: {
140
+ category: string;
141
+ type: {
142
+ summary: string;
143
+ };
144
+ };
15
145
  };
16
146
  classNameLabel: {
17
- type: "string";
147
+ control: "text";
148
+ description: string;
149
+ table: {
150
+ category: string;
151
+ type: {
152
+ summary: string;
153
+ };
154
+ };
18
155
  };
19
156
  classNameCheckedIcon: {
20
- type: "string";
157
+ control: "text";
158
+ description: string;
159
+ table: {
160
+ category: string;
161
+ type: {
162
+ summary: string;
163
+ };
164
+ };
21
165
  };
22
166
  classNameContainerCheckedIcon: {
23
- type: "string";
167
+ control: "text";
168
+ description: string;
169
+ table: {
170
+ category: string;
171
+ type: {
172
+ summary: string;
173
+ };
174
+ };
24
175
  };
25
- checkedIcon: {
26
- control: "boolean";
176
+ type: {
177
+ control: {
178
+ type: "radio";
179
+ };
180
+ options: string[];
181
+ description: string;
182
+ table: {
183
+ category: string;
184
+ type: {
185
+ summary: string;
186
+ };
187
+ defaultValue: {
188
+ summary: string;
189
+ };
190
+ };
191
+ };
192
+ name: {
193
+ control: "text";
194
+ description: string;
195
+ table: {
196
+ category: string;
197
+ type: {
198
+ summary: string;
199
+ };
200
+ };
27
201
  };
28
202
  checked: {
29
203
  control: "boolean";
204
+ description: string;
205
+ table: {
206
+ category: string;
207
+ type: {
208
+ summary: string;
209
+ };
210
+ };
211
+ };
212
+ disabled: {
213
+ control: "boolean";
214
+ description: string;
215
+ table: {
216
+ category: string;
217
+ type: {
218
+ summary: string;
219
+ };
220
+ };
221
+ };
222
+ value: {
223
+ control: "text";
224
+ description: string;
225
+ table: {
226
+ category: string;
227
+ type: {
228
+ summary: string;
229
+ };
230
+ };
231
+ };
232
+ onChange: {
233
+ action: string;
234
+ description: string;
235
+ table: {
236
+ category: string;
237
+ type: {
238
+ summary: string;
239
+ };
240
+ };
241
+ };
242
+ id: {
243
+ control: "text";
244
+ description: string;
245
+ table: {
246
+ category: string;
247
+ type: {
248
+ summary: string;
249
+ };
250
+ };
30
251
  };
31
252
  };
32
253
  args: {
@@ -0,0 +1,25 @@
1
+ export declare const configRadioCheckboxLabel: {
2
+ borderRadius: {
3
+ '0px': string;
4
+ '2px': string;
5
+ '4px': string;
6
+ '6px': string;
7
+ '8px': string;
8
+ '12px': string;
9
+ '16px': string;
10
+ '24px': string;
11
+ full: string;
12
+ };
13
+ typographyLabel: Record<import('../../config/components/typography').Itypography, string>;
14
+ typographyDesc: Record<import('../../config/components/typography').Itypography, string>;
15
+ fonts: {
16
+ lato: string;
17
+ inter: string;
18
+ pJakartaSans: string;
19
+ };
20
+ variants: {
21
+ 'laba-blue-01': string;
22
+ 'blue-50': string;
23
+ };
24
+ };
25
+ export declare const keysConfigRadioCheckboxLabelVariant: string[];
@@ -7,11 +7,202 @@ declare const meta: {
7
7
  };
8
8
  tags: string[];
9
9
  argTypes: {
10
- className: {
11
- type: "string";
10
+ label: {
11
+ control: "text";
12
+ description: string;
13
+ table: {
14
+ category: string;
15
+ type: {
16
+ summary: string;
17
+ };
18
+ };
12
19
  };
13
20
  desc: {
14
- type: "string";
21
+ control: "text";
22
+ description: string;
23
+ table: {
24
+ category: string;
25
+ type: {
26
+ summary: string;
27
+ };
28
+ };
29
+ };
30
+ variants: {
31
+ control: {
32
+ type: "select";
33
+ };
34
+ options: string[];
35
+ description: string;
36
+ table: {
37
+ category: string;
38
+ type: {
39
+ summary: string;
40
+ };
41
+ };
42
+ };
43
+ backgroundWithHover: {
44
+ control: "boolean";
45
+ description: string;
46
+ table: {
47
+ category: string;
48
+ type: {
49
+ summary: string;
50
+ };
51
+ defaultValue: {
52
+ summary: string;
53
+ };
54
+ };
55
+ };
56
+ borderRadius: {
57
+ control: {
58
+ type: "select";
59
+ };
60
+ options: string[];
61
+ description: string;
62
+ table: {
63
+ category: string;
64
+ type: {
65
+ summary: string;
66
+ };
67
+ defaultValue: {
68
+ summary: string;
69
+ };
70
+ };
71
+ };
72
+ typographyLabel: {
73
+ control: {
74
+ type: "select";
75
+ };
76
+ options: string[];
77
+ description: string;
78
+ table: {
79
+ category: string;
80
+ type: {
81
+ summary: string;
82
+ };
83
+ };
84
+ };
85
+ typographyDesc: {
86
+ control: {
87
+ type: "select";
88
+ };
89
+ options: string[];
90
+ description: string;
91
+ table: {
92
+ category: string;
93
+ type: {
94
+ summary: string;
95
+ };
96
+ };
97
+ };
98
+ fonts: {
99
+ control: {
100
+ type: "select";
101
+ };
102
+ options: string[];
103
+ description: string;
104
+ table: {
105
+ category: string;
106
+ type: {
107
+ summary: string;
108
+ };
109
+ };
110
+ };
111
+ className: {
112
+ control: "text";
113
+ description: string;
114
+ table: {
115
+ category: string;
116
+ type: {
117
+ summary: string;
118
+ };
119
+ };
120
+ };
121
+ type: {
122
+ control: {
123
+ type: "radio";
124
+ };
125
+ options: string[];
126
+ description: string;
127
+ table: {
128
+ category: string;
129
+ type: {
130
+ summary: string;
131
+ };
132
+ defaultValue: {
133
+ summary: string;
134
+ };
135
+ };
136
+ };
137
+ name: {
138
+ control: "text";
139
+ description: string;
140
+ table: {
141
+ category: string;
142
+ type: {
143
+ summary: string;
144
+ };
145
+ };
146
+ };
147
+ radioCheckboxProps: {
148
+ control: "object";
149
+ description: string;
150
+ table: {
151
+ category: string;
152
+ type: {
153
+ summary: string;
154
+ };
155
+ };
156
+ };
157
+ checked: {
158
+ control: "boolean";
159
+ description: string;
160
+ table: {
161
+ category: string;
162
+ type: {
163
+ summary: string;
164
+ };
165
+ };
166
+ };
167
+ disabled: {
168
+ control: "boolean";
169
+ description: string;
170
+ table: {
171
+ category: string;
172
+ type: {
173
+ summary: string;
174
+ };
175
+ };
176
+ };
177
+ value: {
178
+ control: "text";
179
+ description: string;
180
+ table: {
181
+ category: string;
182
+ type: {
183
+ summary: string;
184
+ };
185
+ };
186
+ };
187
+ onChange: {
188
+ action: string;
189
+ description: string;
190
+ table: {
191
+ category: string;
192
+ type: {
193
+ summary: string;
194
+ };
195
+ };
196
+ };
197
+ id: {
198
+ control: "text";
199
+ description: string;
200
+ table: {
201
+ category: string;
202
+ type: {
203
+ summary: string;
204
+ };
205
+ };
15
206
  };
16
207
  };
17
208
  args: {
@@ -0,0 +1,26 @@
1
+ export declare const configSelectDropdownContainer: {
2
+ error: {
3
+ laba: string;
4
+ payhere: string;
5
+ bill: string;
6
+ };
7
+ variant: {
8
+ laba: import('react-select').StylesConfig;
9
+ payhere: import('react-select').StylesConfig;
10
+ bill: import('react-select').StylesConfig;
11
+ };
12
+ noSearchVariant: {
13
+ laba: import('react-select').StylesConfig;
14
+ payhere: import('react-select').StylesConfig;
15
+ bill: import('react-select').StylesConfig;
16
+ };
17
+ classNamePopover: {
18
+ laba: string;
19
+ payhere: string;
20
+ bill: string;
21
+ };
22
+ };
23
+ export declare const keysConfigSelectDropdownContainerError: string[];
24
+ export declare const keysConfigSelectDropdownContainerVariant: string[];
25
+ export declare const keysConfigSelectDropdownContainerNoSearchVariant: string[];
26
+ export declare const keysConfigSelectDropdownContainerClassNamePopover: string[];
@@ -1,4 +1,7 @@
1
1
  import { StylesConfig } from 'react-select';
2
2
  export declare const styleSelectDropdownContainerLaba: StylesConfig;
3
3
  export declare const styleSelectDropdownContainerPayhere: StylesConfig;
4
- export declare const styleSelectDropdownContainerNoSearch: StylesConfig;
4
+ export declare const styleSelectDropdownContainerBill: StylesConfig;
5
+ export declare const styleSelectDropdownContainerNoSearchLaba: StylesConfig;
6
+ export declare const styleSelectDropdownContainerNoSearchPayhere: StylesConfig;
7
+ export declare const styleSelectDropdownContainerNoSearchBill: StylesConfig;
@@ -0,0 +1,34 @@
1
+ export declare const configItemSidebar: {
2
+ variant: {
3
+ 'payhere-brand-base-white': string;
4
+ 'payhere-brand-base-transparent': string;
5
+ 'laba-white': string;
6
+ 'lpd-brand-base-white': string;
7
+ 'lpd-brand-base-transparent': string;
8
+ 'lpd-brand-base-white-responsive': string;
9
+ 'lpd-brand-base-transparent-responsive': string;
10
+ 'bill-brand-base-white': string;
11
+ 'bill-brand-base-white-responsive': string;
12
+ };
13
+ parent: {
14
+ '1': string;
15
+ '2': string;
16
+ '3': string;
17
+ '4': string;
18
+ '5': string;
19
+ '6': string;
20
+ '7': string;
21
+ '8': string;
22
+ };
23
+ divider: {
24
+ 'payhere-brand-base-white': string;
25
+ 'payhere-brand-base-transparent': string;
26
+ 'laba-white': string;
27
+ 'lpd-brand-base-white': string;
28
+ 'lpd-brand-base-transparent': string;
29
+ 'lpd-brand-base-white-responsive': string;
30
+ 'lpd-brand-base-transparent-responsive': string;
31
+ 'bill-brand-base-white': string;
32
+ 'bill-brand-base-white-responsive': string;
33
+ };
34
+ };
@@ -0,0 +1,16 @@
1
+ export declare const configSidebar: {
2
+ withCuctomWidthIconCompany: string[];
3
+ variants: {
4
+ 'payhere-brand-base-white': string;
5
+ 'payhere-brand-base-transparent': string;
6
+ 'laba-white': string;
7
+ 'lpd-brand-base-white': string;
8
+ 'lpd-brand-base-transparent': string;
9
+ 'lpd-brand-base-white-responsive': string;
10
+ 'lpd-brand-base-transparent-responsive': string;
11
+ 'bill-brand-base-white': string;
12
+ 'bill-brand-base-white-responsive': string;
13
+ };
14
+ mobileSupport: string[];
15
+ };
16
+ export declare const keysConfigSidebarVariant: string[];
@@ -6,7 +6,139 @@ declare const meta: {
6
6
  layout: string;
7
7
  };
8
8
  tags: string[];
9
- argTypes: {};
9
+ argTypes: {
10
+ stepList: {
11
+ control: "object";
12
+ description: string;
13
+ table: {
14
+ category: string;
15
+ type: {
16
+ summary: string;
17
+ };
18
+ };
19
+ };
20
+ activeStep: {
21
+ control: "number";
22
+ description: string;
23
+ table: {
24
+ category: string;
25
+ type: {
26
+ summary: string;
27
+ };
28
+ };
29
+ };
30
+ widthLine: {
31
+ control: "number";
32
+ description: string;
33
+ table: {
34
+ category: string;
35
+ type: {
36
+ summary: string;
37
+ };
38
+ defaultValue: {
39
+ summary: string;
40
+ };
41
+ };
42
+ };
43
+ beforeActiveType: {
44
+ control: {
45
+ type: "select";
46
+ };
47
+ options: string[];
48
+ description: string;
49
+ table: {
50
+ category: string;
51
+ type: {
52
+ summary: string;
53
+ };
54
+ defaultValue: {
55
+ summary: string;
56
+ };
57
+ };
58
+ };
59
+ afterActiveType: {
60
+ control: {
61
+ type: "select";
62
+ };
63
+ options: string[];
64
+ description: string;
65
+ table: {
66
+ category: string;
67
+ type: {
68
+ summary: string;
69
+ };
70
+ defaultValue: {
71
+ summary: string;
72
+ };
73
+ };
74
+ };
75
+ colorActive: {
76
+ control: "color";
77
+ description: string;
78
+ table: {
79
+ category: string;
80
+ type: {
81
+ summary: string;
82
+ };
83
+ defaultValue: {
84
+ summary: string;
85
+ };
86
+ };
87
+ };
88
+ colorInactive: {
89
+ control: "color";
90
+ description: string;
91
+ table: {
92
+ category: string;
93
+ type: {
94
+ summary: string;
95
+ };
96
+ defaultValue: {
97
+ summary: string;
98
+ };
99
+ };
100
+ };
101
+ classNameContainer: {
102
+ control: "text";
103
+ description: string;
104
+ table: {
105
+ category: string;
106
+ type: {
107
+ summary: string;
108
+ };
109
+ };
110
+ };
111
+ classNameContent: {
112
+ control: "text";
113
+ description: string;
114
+ table: {
115
+ category: string;
116
+ type: {
117
+ summary: string;
118
+ };
119
+ };
120
+ };
121
+ classNameDesc: {
122
+ control: "text";
123
+ description: string;
124
+ table: {
125
+ category: string;
126
+ type: {
127
+ summary: string;
128
+ };
129
+ };
130
+ };
131
+ onChange: {
132
+ action: string;
133
+ description: string;
134
+ table: {
135
+ category: string;
136
+ type: {
137
+ summary: string;
138
+ };
139
+ };
140
+ };
141
+ };
10
142
  render: (args: import('../../interfaces/components/Step').IStep) => import("react/jsx-runtime").JSX.Element;
11
143
  };
12
144
  export default meta;