@geneui/components 2.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (154) hide show
  1. package/ActionableList.js +1761 -0
  2. package/AdvancedSearch.js +872 -0
  3. package/Alert.js +98 -0
  4. package/Avatar.js +77 -0
  5. package/Badge.js +76 -0
  6. package/Breadcrumb.js +128 -0
  7. package/BusyLoader.js +69 -0
  8. package/Button.js +130 -0
  9. package/CHANGELOG.md +424 -0
  10. package/Card.js +513 -0
  11. package/CardList.js +705 -0
  12. package/CellMeasurerCache-c11cec83.js +229 -0
  13. package/Charts.js +99 -0
  14. package/Checkbox.js +232 -0
  15. package/CheckboxGroup.js +206 -0
  16. package/CheckboxGroupWithSearch.js +279 -0
  17. package/Collapse.js +196 -0
  18. package/ColorPicker.js +210 -0
  19. package/ComboBox.js +99 -0
  20. package/Counter.js +99 -0
  21. package/DateFilter.js +179 -0
  22. package/DatePicker.js +1231 -0
  23. package/DatePickerInput.js +30 -0
  24. package/Divider.js +56 -0
  25. package/Drawer.js +264 -0
  26. package/Dropdown.js +99 -0
  27. package/Editor.js +22965 -0
  28. package/Empty.js +132 -0
  29. package/ExtendedInput.js +578 -0
  30. package/Form.js +116 -0
  31. package/FormContainer.js +189 -0
  32. package/FormableCheckbox.js +27 -0
  33. package/FormableDatePicker.js +39 -0
  34. package/FormableDropdown.js +105 -0
  35. package/FormableEditor.js +24 -0
  36. package/FormableHOC-21051057.js +83 -0
  37. package/FormableMultiSelectDropdown.js +105 -0
  38. package/FormableNumberInput.js +31 -0
  39. package/FormableRadio.js +23 -0
  40. package/FormableSwitcher.js +23 -0
  41. package/FormableTextInput.js +31 -0
  42. package/FormableUploader.js +40 -0
  43. package/GeneUIProvider.js +256 -0
  44. package/Grid.js +166 -0
  45. package/Holder.js +99 -0
  46. package/Icon.js +63 -0
  47. package/Image.js +130 -0
  48. package/ImagePreview.js +99 -0
  49. package/KeyValue.js +63 -0
  50. package/Label.js +58 -0
  51. package/LinkButton.js +104 -0
  52. package/Menu.js +277 -0
  53. package/MobileNavigation.js +95 -0
  54. package/MobilePopup.js +180 -0
  55. package/Modal.js +251 -0
  56. package/ModuleTitle.js +99 -0
  57. package/NavigationMenu.js +212 -0
  58. package/Notification.js +120 -0
  59. package/Option.js +186 -0
  60. package/Overlay.js +99 -0
  61. package/Overspread.js +343 -0
  62. package/Pagination.js +258 -0
  63. package/Paper.js +97 -0
  64. package/Popover-f4d1cac0.js +411 -0
  65. package/Popover.js +20 -0
  66. package/PopoverV2.js +19 -0
  67. package/Portal.js +58 -0
  68. package/Products.js +115 -0
  69. package/Profile.js +99 -0
  70. package/Progress.js +200 -0
  71. package/QRCode.js +816 -0
  72. package/README.md +90 -0
  73. package/Radio.js +152 -0
  74. package/RadioGroup.js +105 -0
  75. package/Range.js +14 -0
  76. package/RichEditor-b7928765.js +228 -0
  77. package/RichEditor.js +13 -0
  78. package/Scrollbar.js +1587 -0
  79. package/Search.js +72 -0
  80. package/SearchWithDropdown.js +195 -0
  81. package/Section.js +62 -0
  82. package/SkeletonLoader.js +82 -0
  83. package/Slider.js +256 -0
  84. package/Status.js +104 -0
  85. package/Steps.js +312 -0
  86. package/SuggestionList.js +15 -0
  87. package/Switcher.js +194 -0
  88. package/Table.js +102 -0
  89. package/TableCompositions.js +17028 -0
  90. package/Tabs.js +236 -0
  91. package/Tag.js +103 -0
  92. package/TextLink.js +22 -0
  93. package/Textarea.js +239 -0
  94. package/Time.js +63 -0
  95. package/TimePicker.js +99 -0
  96. package/Timeline.js +114 -0
  97. package/Title.js +66 -0
  98. package/Toaster.js +116 -0
  99. package/Tooltip.js +157 -0
  100. package/TransferList.js +502 -0
  101. package/Uploader.js +32 -0
  102. package/ValidatableCheckbox.js +126 -0
  103. package/ValidatableDatePicker.js +312 -0
  104. package/ValidatableDropdown.js +99 -0
  105. package/ValidatableElements.js +99 -0
  106. package/ValidatableMultiSelectDropdown.js +99 -0
  107. package/ValidatableNumberInput.js +194 -0
  108. package/ValidatableRadio.js +117 -0
  109. package/ValidatableSwitcher.js +94 -0
  110. package/ValidatableTextInput.js +164 -0
  111. package/ValidatableTimeInput.js +171 -0
  112. package/ValidatableUploader.js +94 -0
  113. package/Widget.js +99 -0
  114. package/_commonjsHelpers-24198af3.js +35 -0
  115. package/_rollupPluginBabelHelpers-e8fb2e5c.js +16 -0
  116. package/checkTimeValidation-e56771be.js +16 -0
  117. package/checkboxRadioSwitcher-5b69d7bd.js +4 -0
  118. package/clsx.m-2bb6df4b.js +3 -0
  119. package/configs-91c86664.js +96 -0
  120. package/configs.js +131 -0
  121. package/dateValidation-67caec66.js +225 -0
  122. package/debounce-4419bc2f.js +17 -0
  123. package/globalStyling-9c60a159.js +4 -0
  124. package/guid-8ddf77b3.js +16 -0
  125. package/index-00fe8887.js +193 -0
  126. package/index-0cf65939.js +30991 -0
  127. package/index-122432cd.js +270 -0
  128. package/index-262edd7a.js +77 -0
  129. package/index-5cea9a7d.js +407 -0
  130. package/index-5e722d91.js +867 -0
  131. package/index-67f4d4d1.js +6568 -0
  132. package/index-6ff23041.js +66 -0
  133. package/index-702bf24a.js +1938 -0
  134. package/index-a4635754.js +329 -0
  135. package/index-a59530cd.js +4 -0
  136. package/index-ac59cb10.js +169 -0
  137. package/index-b7a33c58.js +11 -0
  138. package/index-d9e8a888.js +987 -0
  139. package/index-e0af0caf.js +1182 -0
  140. package/index-e8776f3d.js +807 -0
  141. package/index.js +128 -0
  142. package/localization-4ba17032.js +46 -0
  143. package/objectWithoutPropertiesLoose-299691d8.js +78 -0
  144. package/package.json +190 -0
  145. package/rangeAndSlider-20599da4.js +8839 -0
  146. package/react-beautiful-dnd.esm-38c37304.js +10117 -0
  147. package/style-inject.es-746bb8ed.js +28 -0
  148. package/useClickOutside-5183e396.js +25 -0
  149. package/useDeviceType-dd51db38.js +15 -0
  150. package/useEllipsisDetection-ef536015.js +23 -0
  151. package/useKeyDown-38102ae7.js +21 -0
  152. package/useMount-6fef51a5.js +9 -0
  153. package/useWidth-9f4647f8.js +15 -0
  154. package/useWindowSize-80369d76.js +33 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,424 @@
1
+ # Changelog
2
+
3
+ # 2.11.0 (2023-11-15)
4
+
5
+ ### Bug Fixes
6
+
7
+ - **Uploader:** add uploader delete functionality
8
+ - **Checkbox** add tooltip
9
+ - **ActionBar:** remove ActionBar animation
10
+ - **Checkbox:** change cursor type for hover and disabled states
11
+ - **Checkbox:** checkbox tooltip
12
+ - **CheckBoxGroupWithSearch:** add loading state
13
+ - **DatePickerInput:** text and icon may overlap in some cases
14
+ - **Dropdown:** change pointer in readOnly mode
15
+ - **Dropdown:** select issue
16
+ - **ExtendedInput:** add label width
17
+ - **ExtendedInput:** availability in case of error
18
+ - **ExtendedInput:** make available clear icon in case of error
19
+ - **ExtendedInput:** number input changes its value when it is in a disabled state
20
+ - **Option:** add tooltip to title and description
21
+ - **Portal:** add optional chining to Portal unmount lifecycle
22
+ - **Profile:** change languages, partners and bug fixes
23
+ - **RangePicker:** add check on apply date to check is the input empty
24
+ - **SearchWithDropdown:** dropdown width issue fix
25
+ - **ValidatableNumberInput:** fix error handling in case of space for validatableInputField
26
+
27
+ ### Features
28
+
29
+ - **NavigationMenu:** add mobile version
30
+ - **SuggestionList:** add placeholder value in the suggestion list
31
+
32
+ ## 2.10.4 (2023-07-10)
33
+
34
+ ### Bug Fixes
35
+
36
+ - **Build:** add no verify flag for bump up commit and git tag
37
+ - **Modal:** add loading state for the ok button
38
+ - **Portal:** change portal append target from body to geneUIProviderRef.current
39
+ - **Storybook:** set registry to local before view the package versions
40
+
41
+ ## 2.10.3 (2023-07-04)
42
+
43
+ ### Bug Fixes
44
+
45
+ - **Tooltip:** change placement of tooltip popover
46
+
47
+ ## 2.10.2 (2023-07-04)
48
+
49
+ ### Bug Fixes
50
+
51
+ - **Popover:** change popover parent container placement to provider
52
+
53
+ ## 2.10.1 (2023-06-28)
54
+
55
+ ### Bug Fixes
56
+
57
+ - **Profile:** add checking before set partners and languages states
58
+
59
+ # 2.10.0 (2023-06-27)
60
+
61
+ ### Bug Fixes
62
+
63
+ - **AdvancedSearch:** add a new prop to show more loading state and changed the scroll position
64
+ - **Button:** fix loading state for button component
65
+ - **DatePickerInput:** icon and padding
66
+ - **DatePickerInput:** reset icon direction and mobile version input value issue
67
+ - **ExtendedInput:** change asterisk position
68
+ - **Link:** add defaultProps for onClick and onMousDown
69
+ - **Link:** change story
70
+ - **Link:** fix onChange and onMouseDown
71
+ - **MobilePopup:** remove spaces from left and right
72
+ - **Radio:** changed the Radio components asterisk position
73
+ - **Storybook:** add filter to solve only major release versions
74
+ - **Storybook:** fix async render issue in the storybook decorators
75
+ - **Storybook:** fix version selector list issue and stage link issue
76
+ - **Storybook:** restyle sidebar
77
+ - **v2.9.x:** update branch from v2.9.x
78
+ - **ValidatableNumberInput:** fix validatable number input field error handling
79
+
80
+ ### Features
81
+
82
+ - **AdvancedSearch:** add advanced search component
83
+ - **Bade:** add color primary and reset positioning options to the component
84
+ - **Badge:** rewrite badge component
85
+ - **Badge:** change mobile navigation
86
+ - **Build:** improve build pipeline script
87
+ - **Build:** improve build pipeline script
88
+ - **Button:** add focus-visible and aria-label
89
+ - **Image:** empty state visualization
90
+ - **Link:** add button to the link component
91
+ - **Link:** add focus-visible and aria-label
92
+ - **Link:** add new Link component
93
+ - **Link:** add role='button'
94
+ - **Link:** changed onClick description
95
+ - **Link:** code refactor
96
+ - **Link:** prop name change
97
+ - **Link:** removed target prop
98
+ - **Option:** add title position prop for option component
99
+ - **Option:** add title position prop for option component
100
+ - **Overspread:** add onAnimationEnd prop
101
+ - **Profile:** restyle for mobile and added new props containerParent and padding
102
+ - **Provider:** add the provider component, css isolation build, content destination prop for popover
103
+ - **Scrollbar:** add prop to change scroll top value dynamically
104
+ - **Scrollbar:** add smooth scroll functional
105
+
106
+ # 2.9.0 (2023-04-07)
107
+
108
+ ### Bug Fixes
109
+
110
+ - **Combobox:** styles fixed
111
+ - **DatePicker:** added new props "max" and "min" for DatePickerComponent.MonthPicker
112
+ - **DatePickerInput:** fix onClick functionality
113
+ - **Dropdown:** add new props
114
+ - **ImagePreview:** imagePreview header alignment and width
115
+ - **ImageUpload:** file type upper case error
116
+ - **Menu:** added new onSubMenuClick prop
117
+
118
+ ### Features
119
+
120
+ - **Charts:** add loading and dateless states for charts
121
+ - **DatePickerInput:** add reset functionality
122
+ - **ImagePreview:** add default state to magnifier in image preview
123
+ - **Tooltip:** show only child new prop
124
+
125
+ ## 2.8.1 (2023-03-18)
126
+
127
+ ### Bug Fixes
128
+
129
+ - **Table:** change useDrag hook usage
130
+
131
+ # 2.8.0 (2023-03-13)
132
+
133
+ ### Bug Fixes
134
+
135
+ - **Table:** change dnd import in table component
136
+
137
+ ### Features
138
+
139
+ - **Storybook:** upgrade storybook version and improve docs
140
+
141
+ ## 2.7.2 (2023-03-13)
142
+
143
+ ### Bug Fixes
144
+
145
+ - **Counter:** change absolute imports
146
+ - **Counter:** show value of counter in tooltip
147
+
148
+ ## 2.7.1 (2023-02-07)
149
+
150
+ ### Bug Fixes
151
+
152
+ - **MapChart:** change zoom in zoom out logic
153
+
154
+ # 2.7.0 (2023-02-03)
155
+
156
+ ### Bug Fixes
157
+
158
+ - **Counter:** fix lib components imports
159
+ - **Textarea:** remove id from textarea tag
160
+ - **Divider:** code fixes
161
+ - **ExtendedInput:** textarea ref value
162
+ - **HeatmapChart:** improving heatmap chart component margins
163
+ - **Popover:** fixed prop types
164
+ - **Profile:** fixed profile component toggle
165
+ - **TimeInput:** change time input styles
166
+ - **TimePicker:** changed TimePicker position and added new prop for positions
167
+ - **Uploader:** added button type , and preview image ternary
168
+
169
+ ### Features
170
+
171
+ - **Counter:** add the counter component
172
+ - **Divider:** added new prop withSpace for turn off default spacing
173
+ - **Divider:** added new prop withSpace for turn off default spacing
174
+ - **Popover:** added new props for scrollbar scrollbarProps
175
+ - **TimeInput:** add input in date picker time
176
+
177
+ # 2.6.0 (2022-12-23)
178
+
179
+ ### Bug Fixes
180
+
181
+ - **Dropdown:** added tooltip for info icon, dark and RTL modes fixed
182
+ - **HeatmapChart:** fix some cases in the HeatMapChart component
183
+
184
+ ### Features
185
+
186
+ - **ColumnRangeChart:** added new column range chart
187
+ - **DatePicker:** calendar state improvement
188
+ - **Uploader:** added Request Headers optionality
189
+
190
+ ## 2.5.1 (2022-12-12)
191
+
192
+ ### Bug Fixes
193
+
194
+ - **Dropdown:** add state cleanup on destroy
195
+ - **PackageJson:** fix small code style
196
+
197
+ # 2.5.0 (2022-12-12)
198
+
199
+ ### Bug Fixes
200
+
201
+ - **Dropdown:** add scope for top position scroll condition
202
+ - **Dropdown:** code style fix
203
+ - **GIT:** test husky pre commit hook
204
+ - **GIT:** test husky pre commit hook lint staged
205
+ - **PackageLock:** regenerate package-lock.json file
206
+ - **PackageLock:** remove package-lock.json
207
+ - **Src:** apply prettier and lint rules to src
208
+ - **CI:** add pre commit hook and lint stage package
209
+
210
+ ### Features
211
+
212
+ - **Build:** change static files copy method after build
213
+ - **Semver:** change semver rules
214
+ - **Versioning:** remove dev branch from semver logic
215
+ - **QRCode:** levels changed
216
+ - **VulnerabilityPackages:** update vulnerable packages
217
+ - **Changelog:** update changelog
218
+ - **Style:** add local package for git-cz and custom config
219
+ - **CodeStyle:** fix code style
220
+ - **ESLint:** add rules to fix errors and warnings
221
+ - **ESLint:** fix ESLint babel config issue
222
+ - **Prettier:** format all existing code
223
+ - **Prettier:** setup prettier config and ignore
224
+ - **Stylelint:** add style lint rules and remove dist directory
225
+ - **Stylelint:** add style linter for css and scss code lint
226
+
227
+ ## 2.4.3 (2022-10-28)
228
+
229
+ ### Bug Fixes
230
+
231
+ - **DatePickerInput:** add icon and remove rangeSeparator prop
232
+ - **DatePickerInput:** remove format prop from defaultProps
233
+
234
+ ## 2.4.2 (2022-10-27)
235
+
236
+ ### Bug Fixes
237
+
238
+ - **Rollup:** add include external deps in plugins
239
+ - **Dist:** remove dist folder from project and release config file
240
+ - **DatePickerInput:** add new frozenDateRange prop
241
+ - **DatePickerInput:** datePicker closing issue
242
+ - **DatePickerInput:** fix DatePickerInput input onChange functionality
243
+ - **Dropdown:** dropdown cant show data while isLoading state is true
244
+ - **KeyValue:** scss width and flex improved
245
+ - **KeyValue:** add direction ltr
246
+ - **KeyValue:** fix component text style and add accessibility
247
+ - **NavigationMenu:** add new condition for mounting labels
248
+ - **Step:** add debounce for step detailed view component
249
+ - **Step:** add detail view popover
250
+ - **Step:** adding debounce for detail view popover to the step component
251
+ - **Step:** debouncing step component
252
+ - **TimePicker:** time picker component fires onBlur event
253
+
254
+ ## 2.4.1 (2022-10-13)
255
+
256
+ ### Bug Fixes
257
+
258
+ - **DateRange:** fix date picker frozenDateRange and Dropdown selection.
259
+ - **Dropdown:** fix dropdown selection issue.
260
+ - **PackageLock:** fix package-lock json
261
+ - **Hotfix:** hotfix without version change.
262
+ - **Build:** remove dist folder from source code.
263
+ - **Card:** add default prop to key value component in card col cmp
264
+ - **Dropdown:** scroll in time of press arrowDown does not work correctly
265
+
266
+ # 2.4.0 (2022-10-11)
267
+
268
+ ### Bug Fixes
269
+
270
+ - **ArrowDown:** fix arrow down issue
271
+ - **KeyDown:** fix key down issues
272
+ - **Revert:** Revert "Merge branch 'Build/update-node-and-sass' into 'release/2.4.0'"
273
+ - **Dropdown:** should opened after clicking arrow button and enter button on keyboard
274
+ - **DatePickerInput:** add frozenDateRange for single date picker
275
+ - **Holder:** fix holder hover render
276
+ - **Holder:** fix onHover functionality
277
+ - **NavigationMenuContent:** an element that has child elements is clickable
278
+ - **StackedBarChart:** added variation of percentage
279
+ - **StackedBarChart:** changed logic of background
280
+ - **StackedBarChart:** handling negative data and added percentage par stacking
281
+ - **StackedBarChart:** remove log
282
+ - **Tabs:** Component icon not visible icon should be visible when withIcons prop is true
283
+ - **DropDown refactoring:** remove unnecessary functional, fix bugs, code style improvement
284
+ - **DropDown refactoring:** remove unnecessary functional, fix bugs, code style improvement
285
+ - **DropDown:** remove unnecessary functional, fix bugs, code style improve
286
+ - **KeyValue:** add default props
287
+ - **StackedBarChart:** deleted redundant useState
288
+ - **StackedBarChart:** improved and optimized
289
+ - **StackedBarChart:** refactoring
290
+ - **StackedBarChart:** fonts
291
+ - **DropDown:** remove placeholder hide style
292
+
293
+ ### Features
294
+
295
+ - **ComboBox:** combobox is intended to add labels
296
+ - **DatePickerInput:** disable selected range
297
+ - **KeyValue:** add new appearance type for KeyValue component
298
+ - **StackedBarChart:** add fake data
299
+ - **StackedBarChart:** add new component StackedBarChart
300
+ - **Step:** add step detail function for steps component
301
+ - **Time:** startDate must accept string, moment, Date types
302
+ - **Build:** change node-sass to sass
303
+ - **Node:** changed node version and coupled sass
304
+
305
+ ## 2.3.4 (2022-09-15)
306
+
307
+ ### Bug Fixes
308
+
309
+ - **Dropdown:** hide date when loading is true
310
+
311
+ ## 2.3.3 (2022-09-09)
312
+
313
+ ### Bug Fixes
314
+
315
+ - **DonutChart:** add extra css to fix tooltip positions
316
+
317
+ ## 2.3.2 (2022-09-06)
318
+
319
+ ### Bug Fixes
320
+
321
+ - **DonutChart:** add width style
322
+
323
+ ## 2.3.1 (2022-09-06)
324
+
325
+ ### Bug Fixes
326
+
327
+ - **DonutChart:** remove dependency array from height calculation
328
+
329
+ # 2.3.0 (2022-09-06)
330
+
331
+ ### Bug Fixes
332
+
333
+ - **CheckboxGroup:** if state is empty select all option is hidden
334
+ - **DonutChart:** DonutChart resize issue resolved
335
+ - **DonutChart:** not enough responsive in empty state case
336
+ - **Dropdown:** removing busy condition
337
+ - **Export:** added unicode for csv file
338
+ - **Tooltip:** added screenType alternative
339
+ - **Uploader:** Removed file type requirement and added new prop → additionalContext
340
+ - **Build:** delete dist folder from project repo
341
+ - **CLI:** add create component CLI command
342
+
343
+ ### Features
344
+
345
+ - **ActionableList:** add new component
346
+
347
+ ## 2.2.4 (2022-07-22)
348
+
349
+ ### Bug Fixes
350
+
351
+ - **DatePicker Footer:** added an object that is used to add a custom button to set a custom date
352
+ - **DatePicker:** resolve conflicts
353
+ - **RangeOptions:** start and end props can resolve any types (date, string, moment ....)
354
+
355
+ ## 2.2.3 (2022-07-15)
356
+
357
+ ### Bug Fixes
358
+
359
+ - **Rollup:** add new loader to rollup config
360
+
361
+ ## 2.2.2 (2022-07-15)
362
+
363
+ ### Bug Fixes
364
+
365
+ - **Collapse:** controlled case close issue
366
+ - **DatePicker:** add mark date prop to date picker component
367
+ - **MultiSelectDropdownField:** optional chaining to prev crashing
368
+
369
+ ## 2.2.1 (2022-07-13)
370
+
371
+ ### Bug Fixes
372
+
373
+ - **DateRangePickerInput:** add new prop isIncludeEndDateLastSecond
374
+
375
+ # 2.2.0 (2022-07-11)
376
+
377
+ ### Bug Fixes
378
+
379
+ - **NavigationMenu:** use debounce function from utils
380
+ - **PieChart:** remove unused imports
381
+ - **DonutChart:** change props comment
382
+ - **ComboTable:** draggable functional isn't working in case of one row
383
+ - **DatePicker:** custom given format issue
384
+ - **DonutChart:** fixed donut chart responsiveness
385
+ - **Dropdown:** fix loader visibility issue in the dropdown list even if there is no data
386
+ - **ExtendedInput:** add default value support
387
+ - **Form:** add tooltip for formable fields
388
+ - **MapChart:** replaced icon import in map chart
389
+ - **NavigationMenu:** The menu sub tab closes immediately after moving the cursor
390
+ - **PieChart:** pie chart fixed tooltip and custom tooltip formatter
391
+ - **PieChart:** add customLegendFormatter and customTooltipFormatter props
392
+ - **PieChart:** resolve comments
393
+ - **PieChartStory:** wrapped into CodeBox component
394
+ - **RangePicker:** error border color don't show, closes
395
+
396
+ ### Features
397
+
398
+ - **MobileNavigation:** add badge for MobileNavigation component
399
+ - **RichEditor:** add toolbarButtons prop to support custom toolbar
400
+
401
+ ## 2.1.1 (2022-06-23)
402
+
403
+ ### Bug Fixes
404
+
405
+ - **MapChart:** replaced icon import in map chart
406
+
407
+ # 2.1.0 (2022-06-22)
408
+
409
+ ### Bug Fixes
410
+
411
+ - **Semver:** add the semantic release package
412
+ - **Semver:** change https fetch to ssh
413
+ - **Commitlint:** overwrite commitlint.config
414
+ - **Prettier:** add config to keep code style consistent
415
+ - **CodeStyle:** code style fixing
416
+ - **Collapse:** collapse issue related to controlled case
417
+ - **Chart:** add region chart story
418
+ - **Charts:** delete region chart default data
419
+ - **Chart:** resolved comments
420
+
421
+ ### Features
422
+
423
+ - **Chart:** add region chart
424
+ - **DateRangePickerInput:** add new prop isIncludeEndDateLastSecond