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.
- 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/typography.css +96 -0
- package/dist/index.cjs +108 -96
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +16743 -15220
- package/dist/package.json.d.ts +1 -1
- package/dist/src/components/Badges/Badges.config.d.ts +57 -0
- package/dist/src/components/Badges/Badges.stories.d.ts +115 -1
- package/dist/src/components/Breadcrumbs/Breadcrumbs.config.d.ts +113 -0
- package/dist/src/components/Breadcrumbs/Breadcrumbs.d.ts +1 -1
- package/dist/src/components/Breadcrumbs/Breadcrumbs.stories.d.ts +219 -5
- package/dist/src/components/Button/Button.config.d.ts +70 -0
- package/dist/src/components/Button/Button.stories.d.ts +127 -3
- package/dist/src/components/ButtonIcon/ButtonIcon.config.d.ts +53 -0
- package/dist/src/components/ButtonIcon/ButtonIcon.stories.d.ts +121 -3
- package/dist/src/components/ButtonPopover/ButtonPopover.stories.d.ts +256 -1
- package/dist/src/components/Calendar/Calendar.d.ts +2 -1
- package/dist/src/components/Calendar/Calendar.stories.d.ts +281 -1
- package/dist/src/components/Chart/GradientBarChart.stories.d.ts +67 -1
- package/dist/src/components/Chart/GradientLineChart.stories.d.ts +78 -1
- package/dist/src/components/Chart/LineChart.stories.d.ts +33 -1
- package/dist/src/components/Chips/Chips.config.d.ts +35 -0
- package/dist/src/components/Chips/Chips.stories.d.ts +135 -1
- package/dist/src/components/Collapse/Collapse.stories.d.ts +87 -1
- package/dist/src/components/Collapse/CollapseV2.stories.d.ts +57 -1
- package/dist/src/components/DatePicker/DatePicker.stories.d.ts +219 -1
- package/dist/src/components/DatePicker/FilterDate.d.ts +1 -1
- package/dist/src/components/DatePicker/FilterDate.stories.d.ts +230 -2
- package/dist/src/components/DatePicker/MonthYearPicker.stories.d.ts +196 -1
- package/dist/src/components/ErrorMessage/ErrorMessage.config.d.ts +8 -0
- package/dist/src/components/ErrorMessage/ErrorMessage.stories.d.ts +37 -1
- package/dist/src/components/FilterContainer/FilterContainer.stories.d.ts +164 -0
- package/dist/src/components/Input/InputFloatingInner.config.d.ts +9 -0
- package/dist/src/components/Input/InputFloatingInner.stories.d.ts +175 -5
- package/dist/src/components/Input/InputInnerLabel.config.d.ts +8 -0
- package/dist/src/components/Input/InputInnerLabel.d.ts +4 -0
- package/dist/src/components/Input/InputInnerLabel.stories.d.ts +204 -0
- package/dist/src/components/Input/InputNative.config.d.ts +9 -0
- package/dist/src/components/Input/InputNative.stories.d.ts +147 -4
- package/dist/src/components/Input/InputReguler.config.d.ts +9 -0
- package/dist/src/components/Input/InputReguler.stories.d.ts +175 -5
- package/dist/src/components/Modal/ModalDialog.config.d.ts +9 -0
- package/dist/src/components/Modal/ModalDialog.stories.d.ts +119 -1
- package/dist/src/components/NumberFormat/NumberFormat.stories.d.ts +371 -17
- package/dist/src/components/Pagination/Pagination.config.d.ts +5 -0
- package/dist/src/components/Pagination/Pagination.d.ts +1 -1
- package/dist/src/components/Pagination/Pagination.stories.d.ts +198 -2
- package/dist/src/components/Popover/Popover.stories.d.ts +212 -4
- package/dist/src/components/PortalComponent/PortalComponent.stories.d.ts +60 -0
- package/dist/src/components/RadioCheckbox/RadioCheckbox.config.d.ts +41 -0
- package/dist/src/components/RadioCheckbox/RadioCheckbox.stories.d.ts +228 -7
- package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.config.d.ts +25 -0
- package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.stories.d.ts +194 -3
- package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.config.d.ts +26 -0
- package/dist/src/components/SelectDropdownContainer/styleConfig.d.ts +4 -1
- package/dist/src/components/Sidebar/ItemSidebar.config.d.ts +34 -0
- package/dist/src/components/Sidebar/Sidebar.config.d.ts +16 -0
- package/dist/src/components/Step/Step.stories.d.ts +133 -1
- package/dist/src/components/Step/StepIndicator.stories.d.ts +146 -1
- package/dist/src/components/Switch/Switch.config.d.ts +26 -0
- package/dist/src/components/Switch/Switch.stories.d.ts +126 -1
- package/dist/src/components/Table/Table.config.d.ts +4 -0
- package/dist/src/components/Table/Table.d.ts +2 -3
- package/dist/src/components/Table/Table.stories.d.ts +69 -51
- package/dist/src/components/Table/TableSubMobile.d.ts +3 -0
- package/dist/src/components/Tabs/Tabs.config.d.ts +31 -0
- package/dist/src/components/Tabs/Tabs.d.ts +1 -1
- package/dist/src/components/Tabs/Tabs.stories.d.ts +218 -2
- package/dist/src/components/TextEditor/TextEditor.stories.d.ts +57 -9
- package/dist/src/components/Textarea/Textarea.config.d.ts +31 -0
- package/dist/src/components/Textarea/Textarea.stories.d.ts +248 -2
- package/dist/src/components/Textarea/TextareaFloatingInner.config.d.ts +6 -0
- package/dist/src/components/Textarea/TextareaFloatingInner.stories.d.ts +258 -2
- package/dist/src/components/Textarea/TextareaInnerLabel.config.d.ts +7 -0
- package/dist/src/components/Textarea/TextareaInnerLabel.d.ts +4 -0
- package/dist/src/components/Textarea/TextareaInnerLabel.stories.d.ts +258 -0
- package/dist/src/components/TimeRange/TimeRange.d.ts +3 -0
- package/dist/src/components/TimeRange/TimeRange.stories.d.ts +185 -0
- package/dist/src/components/Timeline/Timeline.stories.d.ts +38 -1
- package/dist/src/components/Tooltip/Tooltip.stories.d.ts +157 -1
- package/dist/src/components/TruncateComponent/TruncateComponent.stories.d.ts +104 -1
- package/dist/src/components/Upload/UploadFile.stories.d.ts +125 -1
- package/dist/src/components/Upload/UploadImage.d.ts +1 -1
- package/dist/src/components/Upload/UploadImage.stories.d.ts +143 -2
- package/dist/src/components/Upload/UploadMultipleFile.d.ts +1 -1
- package/dist/src/components/Upload/UploadMultipleFile.stories.d.ts +188 -2
- package/dist/src/components/Virtualization/ListVirtualization.stories.d.ts +277 -1
- package/dist/src/components/Virtualization/TableVirtualization.stories.d.ts +294 -1
- package/dist/src/components/index.d.ts +14 -8
- package/dist/src/components/screens/Screens.stories.d.ts +13 -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/typography.d.ts +3 -49
- package/dist/src/config/tailwind/index.d.ts +2 -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 +5 -3
- package/dist/src/hooks/useAsyncDebounce.d.ts +9 -0
- package/dist/src/hooks/useCombinedResizeObserver.d.ts +66 -0
- package/dist/src/hooks/useCountdown.d.ts +67 -3
- package/dist/src/hooks/useDeepCompareEffect.d.ts +13 -0
- package/dist/src/hooks/useElementOrWindowMediaQuery.d.ts +9 -0
- package/dist/src/hooks/useEventListener.d.ts +27 -0
- package/dist/src/hooks/useMasonry.d.ts +79 -0
- package/dist/src/hooks/useMergeRefs.d.ts +26 -0
- package/dist/src/hooks/useOtpInput.d.ts +199 -0
- package/dist/src/hooks/useStateRef.d.ts +8 -0
- package/dist/src/interfaces/components/Alert/index.d.ts +8 -0
- package/dist/src/interfaces/components/Badges/index.d.ts +30 -1
- package/dist/src/interfaces/components/Breadcrumbs/index.d.ts +85 -2
- package/dist/src/interfaces/components/Button/index.d.ts +46 -2
- package/dist/src/interfaces/components/ButtonIcon/index.d.ts +36 -0
- package/dist/src/interfaces/components/ButtonPopover/index.d.ts +78 -0
- package/dist/src/interfaces/components/Calendar/index.d.ts +384 -3
- package/dist/src/interfaces/components/Chart/index.d.ts +460 -0
- package/dist/src/interfaces/components/Checkbox/index.d.ts +12 -0
- package/dist/src/interfaces/components/Chips/index.d.ts +38 -1
- package/dist/src/interfaces/components/Collapse/index.d.ts +60 -0
- package/dist/src/interfaces/components/DatePicker/index.d.ts +277 -1
- package/dist/src/interfaces/components/ErrorMessage/index.d.ts +17 -1
- package/dist/src/interfaces/components/FilterContainer/index.d.ts +102 -0
- package/dist/src/interfaces/components/Input/index.d.ts +193 -0
- package/dist/src/interfaces/components/Modal/index.d.ts +45 -0
- package/dist/src/interfaces/components/NumberFormat/index.d.ts +25 -0
- package/dist/src/interfaces/components/Pagination/index.d.ts +83 -0
- package/dist/src/interfaces/components/Popover/index.d.ts +98 -1
- package/dist/src/interfaces/components/RadioCheckbox/RadioCheckbox.d.ts +59 -2
- package/dist/src/interfaces/components/RadioCheckbox/RadioCheckboxLabel.d.ts +46 -1
- package/dist/src/interfaces/components/SelectDropdownContainer/index.d.ts +196 -2
- package/dist/src/interfaces/components/Sidebar/index.d.ts +229 -1
- package/dist/src/interfaces/components/Step/index.d.ts +153 -0
- package/dist/src/interfaces/components/Switch/index.d.ts +54 -1
- package/dist/src/interfaces/components/Table/index.d.ts +402 -6
- package/dist/src/interfaces/components/Tabs/index.d.ts +130 -1
- package/dist/src/interfaces/components/TextEditor/index.d.ts +12 -0
- package/dist/src/interfaces/components/Textarea/index.d.ts +169 -0
- package/dist/src/interfaces/components/TimeRange/index.d.ts +128 -0
- package/dist/src/interfaces/components/Timeline/index.d.ts +36 -0
- package/dist/src/interfaces/components/Tooltip/index.d.ts +56 -0
- package/dist/src/interfaces/components/TruncateComponent/index.d.ts +34 -0
- package/dist/src/interfaces/components/UploadFile/index.d.ts +186 -0
- package/dist/src/interfaces/components/Virtualization/ListVirtualization.d.ts +138 -0
- package/dist/src/interfaces/components/Virtualization/TableVirtualization.d.ts +143 -0
- package/dist/src/utils/common.d.ts +4 -4
- package/dist/src/utils/constant.d.ts +1 -0
- package/dist/types-external/table.d.ts +3 -0
- package/package.json +1 -1
- package/dist/index.cjs.map +0 -1
- package/dist/index.mjs.map +0 -1
|
@@ -6,7 +6,287 @@ declare const meta: {
|
|
|
6
6
|
layout: string;
|
|
7
7
|
};
|
|
8
8
|
tags: string[];
|
|
9
|
-
argTypes: {
|
|
9
|
+
argTypes: {
|
|
10
|
+
withDateSelect: {
|
|
11
|
+
table: {
|
|
12
|
+
disable: true;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
createCalendar: {
|
|
16
|
+
table: {
|
|
17
|
+
disable: true;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
time: {
|
|
21
|
+
control: "object";
|
|
22
|
+
description: string;
|
|
23
|
+
table: {
|
|
24
|
+
category: string;
|
|
25
|
+
type: {
|
|
26
|
+
summary: string;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
hiddenHeader: {
|
|
31
|
+
control: "boolean";
|
|
32
|
+
description: string;
|
|
33
|
+
table: {
|
|
34
|
+
category: string;
|
|
35
|
+
type: {
|
|
36
|
+
summary: string;
|
|
37
|
+
};
|
|
38
|
+
defaultValue: {
|
|
39
|
+
summary: string;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
locale: {
|
|
44
|
+
control: "select";
|
|
45
|
+
options: string[];
|
|
46
|
+
description: string;
|
|
47
|
+
table: {
|
|
48
|
+
category: string;
|
|
49
|
+
type: {
|
|
50
|
+
summary: string;
|
|
51
|
+
};
|
|
52
|
+
defaultValue: {
|
|
53
|
+
summary: string;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
prevIcon: {
|
|
58
|
+
control: "object";
|
|
59
|
+
description: string;
|
|
60
|
+
table: {
|
|
61
|
+
category: string;
|
|
62
|
+
type: {
|
|
63
|
+
summary: string;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
nextIcon: {
|
|
68
|
+
control: "object";
|
|
69
|
+
description: string;
|
|
70
|
+
table: {
|
|
71
|
+
category: string;
|
|
72
|
+
type: {
|
|
73
|
+
summary: string;
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
buttonReset: {
|
|
78
|
+
control: "object";
|
|
79
|
+
description: string;
|
|
80
|
+
table: {
|
|
81
|
+
category: string;
|
|
82
|
+
type: {
|
|
83
|
+
summary: string;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
buttonSubmit: {
|
|
88
|
+
control: "object";
|
|
89
|
+
description: string;
|
|
90
|
+
table: {
|
|
91
|
+
category: string;
|
|
92
|
+
type: {
|
|
93
|
+
summary: string;
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
type: {
|
|
98
|
+
control: "object";
|
|
99
|
+
description: string;
|
|
100
|
+
table: {
|
|
101
|
+
category: string;
|
|
102
|
+
type: {
|
|
103
|
+
summary: string;
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
typeTime: {
|
|
108
|
+
control: "select";
|
|
109
|
+
description: string;
|
|
110
|
+
table: {
|
|
111
|
+
category: string;
|
|
112
|
+
type: {
|
|
113
|
+
summary: string;
|
|
114
|
+
};
|
|
115
|
+
defaultValue: {
|
|
116
|
+
summary: string;
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
};
|
|
120
|
+
withConfirm: {
|
|
121
|
+
control: "boolean";
|
|
122
|
+
description: string;
|
|
123
|
+
table: {
|
|
124
|
+
category: string;
|
|
125
|
+
type: {
|
|
126
|
+
summary: string;
|
|
127
|
+
};
|
|
128
|
+
defaultValue: {
|
|
129
|
+
summary: string;
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
isCustomTime: {
|
|
134
|
+
control: "boolean";
|
|
135
|
+
description: string;
|
|
136
|
+
table: {
|
|
137
|
+
category: string;
|
|
138
|
+
type: {
|
|
139
|
+
summary: string;
|
|
140
|
+
};
|
|
141
|
+
defaultValue: {
|
|
142
|
+
summary: string;
|
|
143
|
+
};
|
|
144
|
+
};
|
|
145
|
+
};
|
|
146
|
+
minDate: {
|
|
147
|
+
control: "date";
|
|
148
|
+
description: string;
|
|
149
|
+
table: {
|
|
150
|
+
category: string;
|
|
151
|
+
type: {
|
|
152
|
+
summary: string;
|
|
153
|
+
};
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
maxDate: {
|
|
157
|
+
control: "date";
|
|
158
|
+
description: string;
|
|
159
|
+
table: {
|
|
160
|
+
category: string;
|
|
161
|
+
type: {
|
|
162
|
+
summary: string;
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
};
|
|
166
|
+
isDisabled: {
|
|
167
|
+
control: "boolean";
|
|
168
|
+
description: string;
|
|
169
|
+
table: {
|
|
170
|
+
category: string;
|
|
171
|
+
type: {
|
|
172
|
+
summary: string;
|
|
173
|
+
};
|
|
174
|
+
defaultValue: {
|
|
175
|
+
summary: string;
|
|
176
|
+
};
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
isReadOnly: {
|
|
180
|
+
control: "boolean";
|
|
181
|
+
description: string;
|
|
182
|
+
table: {
|
|
183
|
+
category: string;
|
|
184
|
+
type: {
|
|
185
|
+
summary: string;
|
|
186
|
+
};
|
|
187
|
+
defaultValue: {
|
|
188
|
+
summary: string;
|
|
189
|
+
};
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
autoFocus: {
|
|
193
|
+
control: "boolean";
|
|
194
|
+
description: string;
|
|
195
|
+
table: {
|
|
196
|
+
category: string;
|
|
197
|
+
type: {
|
|
198
|
+
summary: string;
|
|
199
|
+
};
|
|
200
|
+
defaultValue: {
|
|
201
|
+
summary: string;
|
|
202
|
+
};
|
|
203
|
+
};
|
|
204
|
+
};
|
|
205
|
+
isDateUnavailable: {
|
|
206
|
+
control: "object";
|
|
207
|
+
description: string;
|
|
208
|
+
table: {
|
|
209
|
+
category: string;
|
|
210
|
+
type: {
|
|
211
|
+
summary: string;
|
|
212
|
+
};
|
|
213
|
+
};
|
|
214
|
+
};
|
|
215
|
+
value: {
|
|
216
|
+
control: "date";
|
|
217
|
+
description: string;
|
|
218
|
+
table: {
|
|
219
|
+
category: string;
|
|
220
|
+
type: {
|
|
221
|
+
summary: string;
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
};
|
|
225
|
+
defaultValue: {
|
|
226
|
+
control: "date";
|
|
227
|
+
description: string;
|
|
228
|
+
table: {
|
|
229
|
+
category: string;
|
|
230
|
+
type: {
|
|
231
|
+
summary: string;
|
|
232
|
+
};
|
|
233
|
+
};
|
|
234
|
+
};
|
|
235
|
+
activeType: {
|
|
236
|
+
control: "select";
|
|
237
|
+
options: string[];
|
|
238
|
+
description: string;
|
|
239
|
+
table: {
|
|
240
|
+
category: string;
|
|
241
|
+
type: {
|
|
242
|
+
summary: string;
|
|
243
|
+
};
|
|
244
|
+
defaultValue: {
|
|
245
|
+
summary: string;
|
|
246
|
+
};
|
|
247
|
+
};
|
|
248
|
+
};
|
|
249
|
+
onChange: {
|
|
250
|
+
action: string;
|
|
251
|
+
description: string;
|
|
252
|
+
table: {
|
|
253
|
+
category: string;
|
|
254
|
+
type: {
|
|
255
|
+
summary: string;
|
|
256
|
+
};
|
|
257
|
+
};
|
|
258
|
+
};
|
|
259
|
+
handlerChangeTime: {
|
|
260
|
+
action: string;
|
|
261
|
+
description: string;
|
|
262
|
+
table: {
|
|
263
|
+
category: string;
|
|
264
|
+
type: {
|
|
265
|
+
summary: string;
|
|
266
|
+
};
|
|
267
|
+
};
|
|
268
|
+
};
|
|
269
|
+
handlerReset: {
|
|
270
|
+
action: string;
|
|
271
|
+
description: string;
|
|
272
|
+
table: {
|
|
273
|
+
category: string;
|
|
274
|
+
type: {
|
|
275
|
+
summary: string;
|
|
276
|
+
};
|
|
277
|
+
};
|
|
278
|
+
};
|
|
279
|
+
handlerSubmit: {
|
|
280
|
+
action: string;
|
|
281
|
+
description: string;
|
|
282
|
+
table: {
|
|
283
|
+
category: string;
|
|
284
|
+
type: {
|
|
285
|
+
summary: string;
|
|
286
|
+
};
|
|
287
|
+
};
|
|
288
|
+
};
|
|
289
|
+
};
|
|
10
290
|
render: (args: import('../../interfaces/components/Calendar').ICalendar) => import("react/jsx-runtime").JSX.Element;
|
|
11
291
|
};
|
|
12
292
|
export default meta;
|
|
@@ -4,7 +4,73 @@ declare const meta: {
|
|
|
4
4
|
component: ({ data, classNameContainer, height, id, options, CustomTooltip }: import('..').IGradientBarChart) => import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
parameters: {};
|
|
6
6
|
tags: string[];
|
|
7
|
-
argTypes: {
|
|
7
|
+
argTypes: {
|
|
8
|
+
data: {
|
|
9
|
+
control: "object";
|
|
10
|
+
description: string;
|
|
11
|
+
table: {
|
|
12
|
+
category: string;
|
|
13
|
+
type: {
|
|
14
|
+
summary: string;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
height: {
|
|
19
|
+
control: {
|
|
20
|
+
type: "number";
|
|
21
|
+
};
|
|
22
|
+
description: string;
|
|
23
|
+
table: {
|
|
24
|
+
category: string;
|
|
25
|
+
type: {
|
|
26
|
+
summary: string;
|
|
27
|
+
};
|
|
28
|
+
defaultValue: {
|
|
29
|
+
summary: string;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
classNameContainer: {
|
|
34
|
+
control: "text";
|
|
35
|
+
description: string;
|
|
36
|
+
table: {
|
|
37
|
+
category: string;
|
|
38
|
+
type: {
|
|
39
|
+
summary: string;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
id: {
|
|
44
|
+
control: "text";
|
|
45
|
+
description: string;
|
|
46
|
+
table: {
|
|
47
|
+
category: string;
|
|
48
|
+
type: {
|
|
49
|
+
summary: string;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
options: {
|
|
54
|
+
control: "object";
|
|
55
|
+
description: string;
|
|
56
|
+
table: {
|
|
57
|
+
category: string;
|
|
58
|
+
type: {
|
|
59
|
+
summary: string;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
CustomTooltip: {
|
|
64
|
+
control: "object";
|
|
65
|
+
description: string;
|
|
66
|
+
table: {
|
|
67
|
+
category: string;
|
|
68
|
+
type: {
|
|
69
|
+
summary: string;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
};
|
|
8
74
|
args: {};
|
|
9
75
|
render: (args: import('..').IGradientBarChart) => import("react/jsx-runtime").JSX.Element;
|
|
10
76
|
};
|
|
@@ -4,7 +4,84 @@ declare const meta: {
|
|
|
4
4
|
component: ({ data, height, classNameContainer, id, options, CustomTooltip }: import('..').IGradientLineChart) => import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
parameters: {};
|
|
6
6
|
tags: string[];
|
|
7
|
-
argTypes: {
|
|
7
|
+
argTypes: {
|
|
8
|
+
id: {
|
|
9
|
+
control: "text";
|
|
10
|
+
description: string;
|
|
11
|
+
table: {
|
|
12
|
+
category: string;
|
|
13
|
+
type: {
|
|
14
|
+
summary: string;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
data: {
|
|
19
|
+
control: "object";
|
|
20
|
+
description: string;
|
|
21
|
+
table: {
|
|
22
|
+
category: string;
|
|
23
|
+
type: {
|
|
24
|
+
summary: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
height: {
|
|
29
|
+
control: {
|
|
30
|
+
type: "number";
|
|
31
|
+
min: number;
|
|
32
|
+
step: number;
|
|
33
|
+
};
|
|
34
|
+
description: string;
|
|
35
|
+
table: {
|
|
36
|
+
category: string;
|
|
37
|
+
type: {
|
|
38
|
+
summary: string;
|
|
39
|
+
};
|
|
40
|
+
defaultValue: {
|
|
41
|
+
summary: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
classNameContainer: {
|
|
46
|
+
control: "text";
|
|
47
|
+
description: string;
|
|
48
|
+
table: {
|
|
49
|
+
category: string;
|
|
50
|
+
type: {
|
|
51
|
+
summary: string;
|
|
52
|
+
};
|
|
53
|
+
defaultValue: {
|
|
54
|
+
summary: string;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
options: {
|
|
59
|
+
control: "object";
|
|
60
|
+
description: string;
|
|
61
|
+
table: {
|
|
62
|
+
category: string;
|
|
63
|
+
type: {
|
|
64
|
+
summary: string;
|
|
65
|
+
};
|
|
66
|
+
defaultValue: {
|
|
67
|
+
summary: string;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
CustomTooltip: {
|
|
72
|
+
control: false;
|
|
73
|
+
description: string;
|
|
74
|
+
table: {
|
|
75
|
+
category: string;
|
|
76
|
+
type: {
|
|
77
|
+
summary: string;
|
|
78
|
+
};
|
|
79
|
+
defaultValue: {
|
|
80
|
+
summary: string;
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
};
|
|
8
85
|
args: {};
|
|
9
86
|
render: (args: import('..').IGradientLineChart) => import("react/jsx-runtime").JSX.Element;
|
|
10
87
|
};
|
|
@@ -7,8 +7,40 @@ declare const meta: {
|
|
|
7
7
|
};
|
|
8
8
|
tags: string[];
|
|
9
9
|
argTypes: {
|
|
10
|
+
data: {
|
|
11
|
+
control: "object";
|
|
12
|
+
description: string;
|
|
13
|
+
table: {
|
|
14
|
+
category: string;
|
|
15
|
+
type: {
|
|
16
|
+
summary: string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
};
|
|
10
20
|
className: {
|
|
11
|
-
|
|
21
|
+
control: "text";
|
|
22
|
+
description: string;
|
|
23
|
+
table: {
|
|
24
|
+
category: string;
|
|
25
|
+
type: {
|
|
26
|
+
summary: string;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
height: {
|
|
31
|
+
control: {
|
|
32
|
+
type: "number";
|
|
33
|
+
};
|
|
34
|
+
description: string;
|
|
35
|
+
table: {
|
|
36
|
+
category: string;
|
|
37
|
+
type: {
|
|
38
|
+
summary: string;
|
|
39
|
+
};
|
|
40
|
+
defaultValue: {
|
|
41
|
+
summary: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
12
44
|
};
|
|
13
45
|
};
|
|
14
46
|
render: (args: import('../../interfaces/components/Chart').ILineChart) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export declare const configChips: {
|
|
2
|
+
fonts: {
|
|
3
|
+
lato: string;
|
|
4
|
+
inter: string;
|
|
5
|
+
pJakartaSans: string;
|
|
6
|
+
};
|
|
7
|
+
size: {
|
|
8
|
+
reguler: {
|
|
9
|
+
style: string;
|
|
10
|
+
typography: string;
|
|
11
|
+
};
|
|
12
|
+
small: {
|
|
13
|
+
style: string;
|
|
14
|
+
typography: string;
|
|
15
|
+
};
|
|
16
|
+
l: {
|
|
17
|
+
style: string;
|
|
18
|
+
typography: string;
|
|
19
|
+
};
|
|
20
|
+
s: {
|
|
21
|
+
style: string;
|
|
22
|
+
typography: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
typography: Record<import('../../config/components/typography').Itypography, string>;
|
|
26
|
+
variants: {
|
|
27
|
+
'filled-laba-blue-10': string;
|
|
28
|
+
'filled-gray-300': string;
|
|
29
|
+
'filled-blue-gray-100': string;
|
|
30
|
+
'ghost-laba-grey-02': string;
|
|
31
|
+
'nude-laba-grey-10': string;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
export declare const keyConfigChipsVariant: string[];
|
|
35
|
+
export declare const keyConfigChipsSize: string[];
|
|
@@ -7,8 +7,142 @@ 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
|
+
icon: {
|
|
21
|
+
control: "object";
|
|
22
|
+
description: string;
|
|
23
|
+
table: {
|
|
24
|
+
category: string;
|
|
25
|
+
type: {
|
|
26
|
+
summary: string;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
removeIcon: {
|
|
31
|
+
control: "object";
|
|
32
|
+
description: string;
|
|
33
|
+
table: {
|
|
34
|
+
category: string;
|
|
35
|
+
type: {
|
|
36
|
+
summary: string;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
variants: {
|
|
41
|
+
control: {
|
|
42
|
+
type: "select";
|
|
43
|
+
};
|
|
44
|
+
options: string[];
|
|
45
|
+
description: string;
|
|
46
|
+
table: {
|
|
47
|
+
category: string;
|
|
48
|
+
type: {
|
|
49
|
+
summary: string;
|
|
50
|
+
};
|
|
51
|
+
defaultValue: {
|
|
52
|
+
summary: string;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
size: {
|
|
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
|
+
typography: {
|
|
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
|
+
};
|
|
10
104
|
className: {
|
|
11
|
-
|
|
105
|
+
control: "text";
|
|
106
|
+
description: string;
|
|
107
|
+
table: {
|
|
108
|
+
category: string;
|
|
109
|
+
type: {
|
|
110
|
+
summary: string;
|
|
111
|
+
};
|
|
112
|
+
defaultValue: {
|
|
113
|
+
summary: string;
|
|
114
|
+
};
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
style: {
|
|
118
|
+
control: "object";
|
|
119
|
+
description: string;
|
|
120
|
+
table: {
|
|
121
|
+
category: string;
|
|
122
|
+
type: {
|
|
123
|
+
summary: string;
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
onClick: {
|
|
128
|
+
action: string;
|
|
129
|
+
description: string;
|
|
130
|
+
table: {
|
|
131
|
+
category: string;
|
|
132
|
+
type: {
|
|
133
|
+
summary: string;
|
|
134
|
+
};
|
|
135
|
+
};
|
|
136
|
+
};
|
|
137
|
+
title: {
|
|
138
|
+
control: "text";
|
|
139
|
+
description: string;
|
|
140
|
+
table: {
|
|
141
|
+
category: string;
|
|
142
|
+
type: {
|
|
143
|
+
summary: string;
|
|
144
|
+
};
|
|
145
|
+
};
|
|
12
146
|
};
|
|
13
147
|
};
|
|
14
148
|
};
|