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
@@ -0,0 +1,185 @@
1
+ import { StoryObj } from '@storybook/react-vite';
2
+ import { ITimeRange } from '../../interfaces/components/TimeRange';
3
+ declare const meta: {
4
+ title: string;
5
+ component: (props: ITimeRange) => import("react/jsx-runtime").JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ tags: string[];
10
+ argTypes: {
11
+ id: {
12
+ control: "text";
13
+ description: string;
14
+ table: {
15
+ category: string;
16
+ type: {
17
+ summary: string;
18
+ };
19
+ defaultValue: {
20
+ summary: string;
21
+ };
22
+ };
23
+ };
24
+ value: {
25
+ control: "object";
26
+ description: string;
27
+ table: {
28
+ category: string;
29
+ type: {
30
+ summary: string;
31
+ };
32
+ defaultValue: {
33
+ summary: string;
34
+ };
35
+ };
36
+ };
37
+ locale: {
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
+ zIndexPopper: {
54
+ control: "number";
55
+ description: string;
56
+ table: {
57
+ category: string;
58
+ type: {
59
+ summary: string;
60
+ };
61
+ defaultValue: {
62
+ summary: string;
63
+ };
64
+ };
65
+ };
66
+ offsetPopover: {
67
+ control: "number";
68
+ description: string;
69
+ table: {
70
+ category: string;
71
+ type: {
72
+ summary: string;
73
+ };
74
+ defaultValue: {
75
+ summary: string;
76
+ };
77
+ };
78
+ };
79
+ classNameContainer: {
80
+ control: "text";
81
+ description: string;
82
+ table: {
83
+ category: string;
84
+ type: {
85
+ summary: string;
86
+ };
87
+ defaultValue: {
88
+ summary: string;
89
+ };
90
+ };
91
+ };
92
+ className: {
93
+ control: "text";
94
+ description: string;
95
+ table: {
96
+ category: string;
97
+ type: {
98
+ summary: string;
99
+ };
100
+ defaultValue: {
101
+ summary: string;
102
+ };
103
+ };
104
+ };
105
+ floatingOptions: {
106
+ control: "object";
107
+ description: string;
108
+ table: {
109
+ category: string;
110
+ type: {
111
+ summary: string;
112
+ };
113
+ defaultValue: {
114
+ summary: string;
115
+ };
116
+ };
117
+ };
118
+ buttonClick: {
119
+ control: "object";
120
+ description: string;
121
+ table: {
122
+ category: string;
123
+ type: {
124
+ summary: string;
125
+ };
126
+ defaultValue: {
127
+ summary: string;
128
+ };
129
+ };
130
+ };
131
+ buttonReset: {
132
+ control: "object";
133
+ description: string;
134
+ table: {
135
+ category: string;
136
+ type: {
137
+ summary: string;
138
+ };
139
+ defaultValue: {
140
+ summary: string;
141
+ };
142
+ };
143
+ };
144
+ buttonSubmit: {
145
+ control: "object";
146
+ description: string;
147
+ table: {
148
+ category: string;
149
+ type: {
150
+ summary: string;
151
+ };
152
+ defaultValue: {
153
+ summary: string;
154
+ };
155
+ };
156
+ };
157
+ onChange: {
158
+ action: string;
159
+ description: string;
160
+ table: {
161
+ category: string;
162
+ type: {
163
+ summary: string;
164
+ };
165
+ };
166
+ };
167
+ disableValidation: {
168
+ control: "boolean";
169
+ description: string;
170
+ table: {
171
+ category: string;
172
+ type: {
173
+ summary: string;
174
+ };
175
+ defaultValue: {
176
+ summary: string;
177
+ };
178
+ };
179
+ };
180
+ };
181
+ render: (args: ITimeRange) => import("react/jsx-runtime").JSX.Element;
182
+ };
183
+ export default meta;
184
+ type Story = StoryObj<typeof meta>;
185
+ export declare const Default: Story;
@@ -8,7 +8,44 @@ declare const meta: {
8
8
  layout: string;
9
9
  };
10
10
  tags: string[];
11
- argTypes: {};
11
+ argTypes: {
12
+ children: {
13
+ control: "object";
14
+ description: string;
15
+ table: {
16
+ category: string;
17
+ type: {
18
+ summary: string;
19
+ };
20
+ };
21
+ };
22
+ id: {
23
+ control: "text";
24
+ description: string;
25
+ table: {
26
+ category: string;
27
+ type: {
28
+ summary: string;
29
+ };
30
+ defaultValue: {
31
+ summary: string;
32
+ };
33
+ };
34
+ };
35
+ noTime: {
36
+ control: "boolean";
37
+ description: string;
38
+ table: {
39
+ category: string;
40
+ type: {
41
+ summary: string;
42
+ };
43
+ defaultValue: {
44
+ summary: string;
45
+ };
46
+ };
47
+ };
48
+ };
12
49
  render: (args: import('../../interfaces/components/Timeline').ITimelineLayout) => import("react/jsx-runtime").JSX.Element;
13
50
  };
14
51
  export default meta;
@@ -6,7 +6,163 @@ declare const meta: {
6
6
  layout: string;
7
7
  };
8
8
  tags: string[];
9
- argTypes: {};
9
+ argTypes: {
10
+ children: {
11
+ control: "object";
12
+ description: string;
13
+ table: {
14
+ category: string;
15
+ type: {
16
+ summary: string;
17
+ };
18
+ };
19
+ };
20
+ text: {
21
+ control: "text";
22
+ description: string;
23
+ table: {
24
+ category: string;
25
+ type: {
26
+ summary: string;
27
+ };
28
+ };
29
+ };
30
+ backgroundColor: {
31
+ control: {
32
+ type: "color";
33
+ };
34
+ description: string;
35
+ table: {
36
+ category: string;
37
+ type: {
38
+ summary: string;
39
+ };
40
+ defaultValue: {
41
+ summary: string;
42
+ };
43
+ };
44
+ };
45
+ className: {
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
+ zIndexPopover: {
59
+ control: "number";
60
+ description: string;
61
+ table: {
62
+ category: string;
63
+ type: {
64
+ summary: string;
65
+ };
66
+ defaultValue: {
67
+ summary: string;
68
+ };
69
+ };
70
+ };
71
+ placement: {
72
+ control: {
73
+ type: "select";
74
+ };
75
+ description: string;
76
+ table: {
77
+ category: string;
78
+ type: {
79
+ summary: string;
80
+ };
81
+ defaultValue: {
82
+ summary: string;
83
+ };
84
+ };
85
+ };
86
+ delay: {
87
+ control: "number";
88
+ description: string;
89
+ table: {
90
+ category: string;
91
+ type: {
92
+ summary: string;
93
+ };
94
+ defaultValue: {
95
+ summary: string;
96
+ };
97
+ };
98
+ };
99
+ isHover: {
100
+ control: "boolean";
101
+ description: string;
102
+ table: {
103
+ category: string;
104
+ type: {
105
+ summary: string;
106
+ };
107
+ defaultValue: {
108
+ summary: string;
109
+ };
110
+ };
111
+ };
112
+ onShow: {
113
+ action: string;
114
+ description: string;
115
+ table: {
116
+ category: string;
117
+ type: {
118
+ summary: string;
119
+ };
120
+ };
121
+ };
122
+ onClose: {
123
+ action: string;
124
+ description: string;
125
+ table: {
126
+ category: string;
127
+ type: {
128
+ summary: string;
129
+ };
130
+ };
131
+ };
132
+ id: {
133
+ control: "text";
134
+ description: string;
135
+ table: {
136
+ category: string;
137
+ type: {
138
+ summary: string;
139
+ };
140
+ defaultValue: {
141
+ summary: string;
142
+ };
143
+ };
144
+ };
145
+ popoverProps: {
146
+ control: "object";
147
+ description: string;
148
+ table: {
149
+ category: string;
150
+ type: {
151
+ summary: string;
152
+ };
153
+ };
154
+ };
155
+ arrowProps: {
156
+ control: "object";
157
+ description: string;
158
+ table: {
159
+ category: string;
160
+ type: {
161
+ summary: string;
162
+ };
163
+ };
164
+ };
165
+ };
10
166
  };
11
167
  export default meta;
12
168
  type Story = StoryObj<typeof meta>;
@@ -6,7 +6,110 @@ declare const meta: {
6
6
  layout: string;
7
7
  };
8
8
  tags: string[];
9
- argTypes: {};
9
+ argTypes: {
10
+ children: {
11
+ control: "object";
12
+ description: string;
13
+ table: {
14
+ category: string;
15
+ type: {
16
+ summary: string;
17
+ };
18
+ };
19
+ };
20
+ moreElement: {
21
+ control: "object";
22
+ description: string;
23
+ table: {
24
+ category: string;
25
+ type: {
26
+ summary: string;
27
+ };
28
+ };
29
+ };
30
+ maxWidth: {
31
+ control: "text";
32
+ description: string;
33
+ table: {
34
+ category: string;
35
+ type: {
36
+ summary: string;
37
+ };
38
+ defaultValue: {
39
+ summary: string;
40
+ };
41
+ };
42
+ };
43
+ gap: {
44
+ control: "number";
45
+ description: string;
46
+ table: {
47
+ category: string;
48
+ type: {
49
+ summary: string;
50
+ };
51
+ defaultValue: {
52
+ summary: string;
53
+ };
54
+ };
55
+ };
56
+ gapStyle: {
57
+ control: "text";
58
+ description: string;
59
+ table: {
60
+ category: string;
61
+ type: {
62
+ summary: string;
63
+ };
64
+ defaultValue: {
65
+ summary: string;
66
+ };
67
+ };
68
+ };
69
+ className: {
70
+ control: "text";
71
+ description: string;
72
+ table: {
73
+ category: string;
74
+ type: {
75
+ summary: string;
76
+ };
77
+ defaultValue: {
78
+ summary: string;
79
+ };
80
+ };
81
+ };
82
+ style: {
83
+ control: "object";
84
+ description: string;
85
+ table: {
86
+ category: string;
87
+ type: {
88
+ summary: string;
89
+ };
90
+ };
91
+ };
92
+ onClick: {
93
+ action: string;
94
+ description: string;
95
+ table: {
96
+ category: string;
97
+ type: {
98
+ summary: string;
99
+ };
100
+ };
101
+ };
102
+ title: {
103
+ control: "text";
104
+ description: string;
105
+ table: {
106
+ category: string;
107
+ type: {
108
+ summary: string;
109
+ };
110
+ };
111
+ };
112
+ };
10
113
  render: (args: import('../../interfaces/components/TruncateComponent').ITruncateComponent) => import("react/jsx-runtime").JSX.Element;
11
114
  };
12
115
  export default meta;
@@ -10,8 +10,132 @@ declare const meta: {
10
10
  };
11
11
  tags: string[];
12
12
  argTypes: {
13
+ validateFile: {
14
+ control: "object";
15
+ description: string;
16
+ table: {
17
+ category: string;
18
+ type: {
19
+ summary: string;
20
+ };
21
+ defaultValue: {
22
+ summary: string;
23
+ };
24
+ };
25
+ };
26
+ maxFile: {
27
+ control: "number";
28
+ description: string;
29
+ table: {
30
+ category: string;
31
+ type: {
32
+ summary: string;
33
+ };
34
+ defaultValue: {
35
+ summary: string;
36
+ };
37
+ };
38
+ };
39
+ maxSize: {
40
+ control: "number";
41
+ description: string;
42
+ table: {
43
+ category: string;
44
+ type: {
45
+ summary: string;
46
+ };
47
+ defaultValue: {
48
+ summary: string;
49
+ };
50
+ };
51
+ };
52
+ fileName: {
53
+ control: "text";
54
+ description: string;
55
+ table: {
56
+ category: string;
57
+ type: {
58
+ summary: string;
59
+ };
60
+ };
61
+ };
62
+ label: {
63
+ control: "text";
64
+ description: string;
65
+ table: {
66
+ category: string;
67
+ type: {
68
+ summary: string;
69
+ };
70
+ defaultValue: {
71
+ summary: string;
72
+ };
73
+ };
74
+ };
13
75
  error: {
14
- type: "string";
76
+ control: "text";
77
+ description: string;
78
+ table: {
79
+ category: string;
80
+ type: {
81
+ summary: string;
82
+ };
83
+ defaultValue: {
84
+ summary: string;
85
+ };
86
+ };
87
+ };
88
+ priorityError: {
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
+ inputProps: {
105
+ control: "object";
106
+ description: string;
107
+ table: {
108
+ category: string;
109
+ type: {
110
+ summary: string;
111
+ };
112
+ defaultValue: {
113
+ summary: string;
114
+ };
115
+ };
116
+ };
117
+ onChange: {
118
+ action: string;
119
+ description: string;
120
+ table: {
121
+ category: string;
122
+ type: {
123
+ summary: string;
124
+ };
125
+ };
126
+ };
127
+ eventError: {
128
+ action: string;
129
+ description: string;
130
+ table: {
131
+ category: string;
132
+ type: {
133
+ summary: string;
134
+ };
135
+ defaultValue: {
136
+ summary: string;
137
+ };
138
+ };
15
139
  };
16
140
  };
17
141
  args: {
@@ -1,3 +1,3 @@
1
1
  import { IUploadImage } from '../../interfaces/components/UploadFile';
2
- declare const UploadImage: ({ onChange, valueUrl, validateFile, validateFileDesc, maxSize, icon, desc, classNameContainer, classNameImage, classNameAction, }: IUploadImage) => import("react/jsx-runtime").JSX.Element;
2
+ declare const UploadImage: ({ onChange, valueUrl, validateFile, validateFileDesc, maxSize, icon, desc, classNameContainer, classNameImage, classNameAction, id, }: IUploadImage) => import("react/jsx-runtime").JSX.Element;
3
3
  export default UploadImage;