@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/index.js ADDED
@@ -0,0 +1,128 @@
1
+ export { default as TextLink } from './TextLink.js';
2
+ export { default as Button } from './Button.js';
3
+ export { default as Label } from './Label.js';
4
+ export { default as Icon } from './Icon.js';
5
+ export { default as Switcher } from './Switcher.js';
6
+ export { default as Divider } from './Divider.js';
7
+ export { default as Radio } from './Radio.js';
8
+ export { default as Paper, alignItems, cornersRadius, justifyContents, paperDirections, paperWraps } from './Paper.js';
9
+ export { default as Portal } from './Portal.js';
10
+ export { default as Avatar } from './Avatar.js';
11
+ export { default as Badge } from './Badge.js';
12
+ export { default as BusyLoader } from './BusyLoader.js';
13
+ export { A as AreaChart, B as BarChart, e as ColumnChart, l as ColumnRangeChart, C as ComboBox, a as Counter, f as DalColumnChart, i as DonutChart, m as Dropdown, F as FunnelChart, k as HeatMapChart, H as Holder, I as ImagePreview, L as LineChart, c as MapChart, M as ModuleTitle, b as MultiSelectDropdownField, O as Overlay, h as PieChart, P as Profile, j as ScatterChart, S as StackedBarChart, g as StackedColumnChart, T as TimePicker, d as TreeMapChart, D as ValidatableDropdown, W as Widget } from './index-0cf65939.js';
14
+ export { default as SkeletonLoader } from './SkeletonLoader.js';
15
+ export { default as Scrollbar } from './Scrollbar.js';
16
+ export { default as Time } from './Time.js';
17
+ export { default as Empty } from './Empty.js';
18
+ export { P as Popover } from './index-a4635754.js';
19
+ export { P as PopoverV2 } from './index-702bf24a.js';
20
+ export { default as Title } from './Title.js';
21
+ export { default as Image } from './Image.js';
22
+ export { default as KeyValue } from './KeyValue.js';
23
+ export { default as Option } from './Option.js';
24
+ export { default as QRCode } from './QRCode.js';
25
+ export { Col, Row } from './Grid.js';
26
+ export { Tab, Tabs } from './Tabs.js';
27
+ export { Step, Steps } from './Steps.js';
28
+ export { Timeline, TimelineItem, timelineAppearances, timelineColors } from './Timeline.js';
29
+ export { default as RadioGroup } from './RadioGroup.js';
30
+ export { default as Checkbox } from './Checkbox.js';
31
+ export { default as Card } from './Card.js';
32
+ export { default as Tag } from './Tag.js';
33
+ export { default as Alert, alertTypes } from './Alert.js';
34
+ export { default as Tooltip } from './Tooltip.js';
35
+ export { R as Range } from './index-00fe8887.js';
36
+ export { default as Slider } from './Slider.js';
37
+ export { default as Pagination } from './Pagination.js';
38
+ export { default as ExtendedInput } from './ExtendedInput.js';
39
+ export { default as Editor, default as ValidatableEditor } from './Editor.js';
40
+ export { default as ValidatableUploader } from './ValidatableUploader.js';
41
+ export { default as ValidatableRadio } from './ValidatableRadio.js';
42
+ export { default as ValidatableCheckbox } from './ValidatableCheckbox.js';
43
+ export { default as ValidatableSwitcher } from './ValidatableSwitcher.js';
44
+ export { default as ValidatableNumberInput } from './ValidatableNumberInput.js';
45
+ export { default as ValidatableTextInput } from './ValidatableTextInput.js';
46
+ export { default as ValidatableDatePicker } from './ValidatableDatePicker.js';
47
+ export { default as Notification, notificationTypes } from './Notification.js';
48
+ export { default as Modal } from './Modal.js';
49
+ import './globalStyling-9c60a159.js';
50
+ export { Collapse, Panel } from './Collapse.js';
51
+ export { default as Status, statusIconTypes } from './Status.js';
52
+ export { default as Menu } from './Menu.js';
53
+ export { default as Progress } from './Progress.js';
54
+ export { default as MobileNavigation } from './MobileNavigation.js';
55
+ export { default as MobilePopup } from './MobilePopup.js';
56
+ export { U as Uploader } from './index-d9e8a888.js';
57
+ export { default as Products } from './Products.js';
58
+ export { default as Search } from './Search.js';
59
+ export { D as DatePickerInput } from './index-5e722d91.js';
60
+ export { default as Breadcrumb } from './Breadcrumb.js';
61
+ export { default as Section } from './Section.js';
62
+ export { default as ColorPicker } from './ColorPicker.js';
63
+ export { default as NavigationMenu } from './NavigationMenu.js';
64
+ export { default as Textarea } from './Textarea.js';
65
+ export { default as AdvancedSearch } from './AdvancedSearch.js';
66
+ export { default as FormableMultiSelectDropdown } from './FormableMultiSelectDropdown.js';
67
+ export { default as FormableNumberInput } from './FormableNumberInput.js';
68
+ export { default as FormableDatePicker } from './FormableDatePicker.js';
69
+ export { default as FormableTextInput } from './FormableTextInput.js';
70
+ export { default as FormableDropdown } from './FormableDropdown.js';
71
+ export { default as FormableCheckbox } from './FormableCheckbox.js';
72
+ export { default as FormableUploader } from './FormableUploader.js';
73
+ export { default as FormableSwitcher } from './FormableSwitcher.js';
74
+ export { default as FormableEditor } from './FormableEditor.js';
75
+ export { default as FormableRadio } from './FormableRadio.js';
76
+ export { F as FormableHOC } from './FormableHOC-21051057.js';
77
+ export { default as Toaster, toasterPositions } from './Toaster.js';
78
+ export { default as SearchWithDropdown } from './SearchWithDropdown.js';
79
+ export { default as CheckboxGroupWithSearch } from './CheckboxGroupWithSearch.js';
80
+ export { default as CheckboxGroup } from './CheckboxGroup.js';
81
+ export { default as Overspread } from './Overspread.js';
82
+ export { default as DatePicker } from './DatePicker.js';
83
+ export { default as DateFilter } from './DateFilter.js';
84
+ export { ComboTable, PaginationSelector, PaperWrapper, TableContainer, TableHeader, TablePagination, TableTitle, WithHeader, WithTitle } from './TableCompositions.js';
85
+ export { T as Table } from './index-67f4d4d1.js';
86
+ export { CardList, WrappedCardList } from './CardList.js';
87
+ import 'react';
88
+ export { default as Form } from './FormContainer.js';
89
+ export { default as TransferList } from './TransferList.js';
90
+ export { R as RichEditor } from './RichEditor-b7928765.js';
91
+ export { default as Drawer } from './Drawer.js';
92
+ export { default as ActionableList } from './ActionableList.js';
93
+ export { GeneUIDesignSystemContext, default as GeneUIProvider } from './GeneUIProvider.js';
94
+ import './index-e0af0caf.js';
95
+ import './_rollupPluginBabelHelpers-e8fb2e5c.js';
96
+ import './index-6ff23041.js';
97
+ import './style-inject.es-746bb8ed.js';
98
+ import './configs-91c86664.js';
99
+ import './index-ac59cb10.js';
100
+ import './dateValidation-67caec66.js';
101
+ import './_commonjsHelpers-24198af3.js';
102
+ import 'react-dom';
103
+ import './useKeyDown-38102ae7.js';
104
+ import './checkboxRadioSwitcher-5b69d7bd.js';
105
+ import './guid-8ddf77b3.js';
106
+ import './configs.js';
107
+ import './useEllipsisDetection-ef536015.js';
108
+ import './useMount-6fef51a5.js';
109
+ import './objectWithoutPropertiesLoose-299691d8.js';
110
+ import './rangeAndSlider-20599da4.js';
111
+ import './clsx.m-2bb6df4b.js';
112
+ import './useDeviceType-dd51db38.js';
113
+ import './useWindowSize-80369d76.js';
114
+ import './useClickOutside-5183e396.js';
115
+ import './index-5cea9a7d.js';
116
+ import './index-a59530cd.js';
117
+ import './index-b7a33c58.js';
118
+ import './localization-4ba17032.js';
119
+ import './Popover-f4d1cac0.js';
120
+ import './index-122432cd.js';
121
+ import './debounce-4419bc2f.js';
122
+ import './useWidth-9f4647f8.js';
123
+ import './checkTimeValidation-e56771be.js';
124
+ import './LinkButton.js';
125
+ import './index-262edd7a.js';
126
+ import './CellMeasurerCache-c11cec83.js';
127
+ import './index-e8776f3d.js';
128
+ import './react-beautiful-dnd.esm-38c37304.js';
@@ -0,0 +1,46 @@
1
+ /* Localization (https://developer.mozilla.org/en-US/docs/Mozilla/Localization/Web_Localizability/Creating_localizable_web_applications)
2
+ * The localization problem includes languages(i18n),
3
+ * date & number formating, currency and document direction.
4
+ * The project itself did not include any text and currency.
5
+ * Document direction problem is solved on the markup level.
6
+ * Here will be helpers for localizing date and number formats.
7
+ */
8
+
9
+ // For IE11
10
+ const getParsedString = date => [].filter.call(date, (v, i) => date.charCodeAt(i) !== 8206).join('');
11
+ const getBrowserTimeFormat = function () {
12
+ let includeSeconds = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
13
+ const date = new Date(2013, 11, 31, 23, 5, 8);
14
+ const dateString = date.toLocaleTimeString();
15
+ const parsedString = getParsedString(dateString);
16
+ let timeFormat;
17
+ if (!dateString.match(/23/i)) {
18
+ timeFormat = parsedString.replace(/PM|AM/, '').replace('11', 'hh').replace('05', 'mm').replace('08', includeSeconds ? 'ss' : '').trim();
19
+ timeFormat = includeSeconds ? "".concat(timeFormat, " A") : "".concat(timeFormat.slice(0, -1), " A");
20
+ } else {
21
+ timeFormat = parsedString.replace('23', 'HH').replace('05', 'mm').replace('08', includeSeconds ? 'ss' : '');
22
+ timeFormat = includeSeconds ? timeFormat : timeFormat.trim().slice(0, -1);
23
+ }
24
+ return timeFormat;
25
+ };
26
+
27
+ /**
28
+ * This function is used to get date format depending on browser settings.
29
+ * @param {boolean} withTime - returns time format also
30
+ * @param {boolean} includeSeconds - shows seconds
31
+ * @returns {string} Date format.
32
+ */
33
+
34
+ const getBrowserDateFormat = function () {
35
+ let withTime = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
36
+ let includeSeconds = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
37
+ const browserDate = new Date(2013, 11, 31).toLocaleDateString();
38
+ const parsedString = getParsedString(browserDate);
39
+ let dateFormat = parsedString.replace('31', 'DD').replace('12', 'MM').replace('2013', 'YYYY');
40
+ if (withTime) {
41
+ dateFormat = "".concat(dateFormat, " ").concat(getBrowserTimeFormat(includeSeconds));
42
+ }
43
+ return dateFormat;
44
+ };
45
+
46
+ export { getBrowserTimeFormat as a, getBrowserDateFormat as g };
@@ -0,0 +1,78 @@
1
+ function _typeof(o) {
2
+ "@babel/helpers - typeof";
3
+
4
+ return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
5
+ return typeof o;
6
+ } : function (o) {
7
+ return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
8
+ }, _typeof(o);
9
+ }
10
+
11
+ function _toPrimitive(input, hint) {
12
+ if (_typeof(input) !== "object" || input === null) return input;
13
+ var prim = input[Symbol.toPrimitive];
14
+ if (prim !== undefined) {
15
+ var res = prim.call(input, hint || "default");
16
+ if (_typeof(res) !== "object") return res;
17
+ throw new TypeError("@@toPrimitive must return a primitive value.");
18
+ }
19
+ return (hint === "string" ? String : Number)(input);
20
+ }
21
+
22
+ function _toPropertyKey(arg) {
23
+ var key = _toPrimitive(arg, "string");
24
+ return _typeof(key) === "symbol" ? key : String(key);
25
+ }
26
+
27
+ function _setPrototypeOf(o, p) {
28
+ _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
29
+ o.__proto__ = p;
30
+ return o;
31
+ };
32
+ return _setPrototypeOf(o, p);
33
+ }
34
+
35
+ function _defineProperty(obj, key, value) {
36
+ key = _toPropertyKey(key);
37
+ if (key in obj) {
38
+ Object.defineProperty(obj, key, {
39
+ value: value,
40
+ enumerable: true,
41
+ configurable: true,
42
+ writable: true
43
+ });
44
+ } else {
45
+ obj[key] = value;
46
+ }
47
+ return obj;
48
+ }
49
+
50
+ function _extends() {
51
+ _extends = Object.assign ? Object.assign.bind() : function (target) {
52
+ for (var i = 1; i < arguments.length; i++) {
53
+ var source = arguments[i];
54
+ for (var key in source) {
55
+ if (Object.prototype.hasOwnProperty.call(source, key)) {
56
+ target[key] = source[key];
57
+ }
58
+ }
59
+ }
60
+ return target;
61
+ };
62
+ return _extends.apply(this, arguments);
63
+ }
64
+
65
+ function _objectWithoutPropertiesLoose(source, excluded) {
66
+ if (source == null) return {};
67
+ var target = {};
68
+ var sourceKeys = Object.keys(source);
69
+ var key, i;
70
+ for (i = 0; i < sourceKeys.length; i++) {
71
+ key = sourceKeys[i];
72
+ if (excluded.indexOf(key) >= 0) continue;
73
+ target[key] = source[key];
74
+ }
75
+ return target;
76
+ }
77
+
78
+ export { _defineProperty as _, _setPrototypeOf as a, _objectWithoutPropertiesLoose as b, _extends as c, _toPropertyKey as d, _typeof as e };
package/package.json ADDED
@@ -0,0 +1,190 @@
1
+ {
2
+ "name": "@geneui/components",
3
+ "description": "The Gene UI components library designed for BI tools",
4
+ "version": "2.11.1",
5
+ "author": "SoftConstruct",
6
+ "homepage": "https://github.com/softconstruct/gene-ui-components#readme",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/softconstruct/gene-ui-components"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/softconstruct/gene-ui-components/issues"
13
+ },
14
+ "keywords": [
15
+ "react",
16
+ "gene-ui",
17
+ "design-system",
18
+ "component-library"
19
+ ],
20
+ "main": "index.js",
21
+ "scripts": {
22
+ "start": "start-storybook -p 6006 -s .storybook/public",
23
+ "test": "jest",
24
+ "build": "babel-node --config-file ./configs/.babelrc ./scripts/build.js",
25
+ "copy-build-statics-files": "babel-node --config-file ./configs/.babelrc ./scripts/copyFiles.js",
26
+ "bump-up-commit": "babel-node --config-file ./configs/.babelrc ./scripts/postPublish.js",
27
+ "build:watch": "watch 'npm run build' ./src",
28
+ "commit": "git-cz",
29
+ "changelog": "conventional-changelog -i CHANGELOG.md -s",
30
+ "add-lib-version-to-docs": "babel-node --config-file ./configs/.babelrc ./scripts/addVersionHistory.js",
31
+ "build-storybook": "npm run add-lib-version-to-docs && build-storybook",
32
+ "publish-lib": "npm run build && cd dist && npm publish",
33
+ "semantic-release": "semantic-release --extends ./configs/.releaserc.json --no-ci",
34
+ "create-component": "babel-node --config-file ./configs/.babelrc ./scripts/createComponent.js",
35
+ "find-component-usage": "babel-node --config-file ./configs/.babelrc ./scripts/findComponentUsage.js",
36
+ "format-code": "prettier --config ./configs/.prettierrc --write . --ignore-path ./configs/.prettierignore",
37
+ "lint-styles": "stylelint **/*.{css,scss,sass} --config ./configs/.stylelintrc.json --fix",
38
+ "lint-scripts": "eslint --config ./configs/.eslintrc.json src --ignore-path ./configs/.eslintignore --fix",
39
+ "fix-code-style": "npm run format-code && npm run lint-styles && npm run lint-scripts",
40
+ "analyze-bundle-size": "babel-node --config-file ./configs/.babelrc ./scripts/analyzeBundleSize.js"
41
+ },
42
+ "peerDependencies": {
43
+ "prop-types": "^15.8.1",
44
+ "react": "^16.8.1",
45
+ "react-dom": "^16.8.1"
46
+ },
47
+ "devDependencies": {
48
+ "@babel/cli": "^7.19.3",
49
+ "@babel/core": "^7.20.2",
50
+ "@babel/eslint-parser": "^7.19.1",
51
+ "@babel/node": "^7.20.2",
52
+ "@babel/plugin-proposal-class-properties": "^7.18.6",
53
+ "@babel/plugin-proposal-export-default-from": "^7.18.10",
54
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
55
+ "@babel/plugin-proposal-optional-chaining": "^7.18.9",
56
+ "@babel/plugin-syntax-jsx": "^7.18.6",
57
+ "@babel/preset-env": "^7.19.4",
58
+ "@babel/preset-react": "^7.18.6",
59
+ "@commitlint/cli": "^17.1.2",
60
+ "@commitlint/config-conventional": "^17.1.0",
61
+ "@faker-js/faker": "^7.6.0",
62
+ "@rollup/plugin-alias": "^4.0.2",
63
+ "@rollup/plugin-babel": "^6.0.0",
64
+ "@rollup/plugin-commonjs": "^23.0.0",
65
+ "@rollup/plugin-image": "^3.0.1",
66
+ "@rollup/plugin-json": "^6.0.0",
67
+ "@rollup/plugin-node-resolve": "^15.0.0",
68
+ "@semantic-release/changelog": "^6.0.2",
69
+ "@semantic-release/commit-analyzer": "^9.0.2",
70
+ "@semantic-release/git": "^10.0.1",
71
+ "@semantic-release/npm": "^9.0.1",
72
+ "@semantic-release/release-notes-generator": "^10.0.3",
73
+ "@storybook/addon-a11y": "^6.5.15",
74
+ "@storybook/addon-docs": "^6.5.15",
75
+ "@storybook/addon-essentials": "^6.4.22",
76
+ "@storybook/addon-viewport": "^6.5.15",
77
+ "@storybook/addons": "^6.4.22",
78
+ "@storybook/builder-webpack5": "^6.4.22",
79
+ "@storybook/manager-webpack5": "^6.4.22",
80
+ "@storybook/mdx2-csf": "^0.0.3",
81
+ "@storybook/preset-scss": "^1.0.3",
82
+ "@storybook/react": "^6.4.22",
83
+ "@storybook/theming": "^6.4.22",
84
+ "autoprefixer": "^10.4.13",
85
+ "babel-loader": "^8.2.5",
86
+ "chalk": "^4.1.2",
87
+ "commitizen": "^4.2.5",
88
+ "conventional-changelog-cli": "^2.2.2",
89
+ "css-loader": "^6.7.3",
90
+ "cz-conventional-changelog": "^3.3.0",
91
+ "enzyme": "^3.11.0",
92
+ "enzyme-adapter-react-16": "^1.15.2",
93
+ "eslint": "^8.25.0",
94
+ "eslint-config-airbnb": "^19.0.4",
95
+ "eslint-config-prettier": "^8.5.0",
96
+ "eslint-plugin-import": "^2.26.0",
97
+ "eslint-plugin-jsx-a11y": "^6.6.1",
98
+ "eslint-plugin-react": "^7.31.11",
99
+ "eslint-plugin-react-hooks": "^4.6.0",
100
+ "figlet": "^1.5.2",
101
+ "file-loader": "^6.2.0",
102
+ "git-cz": "^4.9.0",
103
+ "husky": "^1.3.1",
104
+ "identity-obj-proxy": "^3.0.0",
105
+ "immutability-helper": "^3.0.1",
106
+ "inquirer": "^8.2.4",
107
+ "jest": "^29.2.1",
108
+ "lint-staged": "^13.0.3",
109
+ "metro-react-native-babel-preset": "^0.51.1",
110
+ "open-cli": "^7.1.0",
111
+ "ora": "^5.4.1",
112
+ "postcss": "^8.4.31",
113
+ "postcss-prefix-selector": "^1.16.0",
114
+ "postcss-url": "^10.1.3",
115
+ "prettier": "^2.7.1",
116
+ "react": "^16.8.1",
117
+ "react-dom": "^16.8.1",
118
+ "react-test-renderer": "^16.12.0",
119
+ "rollup": "^3.1.0",
120
+ "rollup-plugin-peer-deps-external": "^2.2.0",
121
+ "rollup-plugin-postcss": "^4.0.0",
122
+ "rollup-plugin-scss": "^4.0.0",
123
+ "rollup-plugin-svg": "^1.0.1",
124
+ "rollup-plugin-visualizer": "^5.8.3",
125
+ "sass": "^1.55.0",
126
+ "sass-loader": "^13.2.0",
127
+ "semantic-release": "^19.0.5",
128
+ "storybook-dark-mode": "^2.0.4",
129
+ "style-loader": "^3.3.1",
130
+ "stylelint": "^14.14.0",
131
+ "stylelint-config-prettier": "^9.0.3",
132
+ "stylelint-config-standard-scss": "^5.0.0",
133
+ "treeify": "^1.1.0",
134
+ "watch": "^1.0.2",
135
+ "webpack": "^5.74.0",
136
+ "webpack-cli": "^4.10.0",
137
+ "webpack-dev-server": "^3.1.14",
138
+ "webpack-node-externals": "^1.7.2"
139
+ },
140
+ "dependencies": {
141
+ "classnames": "^2.3.2",
142
+ "dayjs": "^1.11.5",
143
+ "draft-js": "^0.11.7",
144
+ "draftjs-to-html": "^0.9.1",
145
+ "file-saver": "^2.0.5",
146
+ "highcharts": "^10.2.1",
147
+ "highcharts-react-official": "^3.1.0",
148
+ "html-to-draftjs": "^1.5.0",
149
+ "i": "^0.3.7",
150
+ "immer": "^9.0.18",
151
+ "jodit-react": "^1.3.23",
152
+ "npm": "^9.4.1",
153
+ "pure-react-carousel": "^1.30.1",
154
+ "qrcode.react": "^3.1.0",
155
+ "rc-slider": "^8.6.9",
156
+ "react-beautiful-dnd": "^13.1.1",
157
+ "react-colorful": "^5.6.1",
158
+ "react-custom-scrollbars": "^4.2.1",
159
+ "react-dnd": "^16.0.1",
160
+ "react-dnd-html5-backend": "^16.0.1",
161
+ "react-draft-wysiwyg": "^1.15.0",
162
+ "react-fast-compare": "^3.2.0",
163
+ "react-is": "^17.0.2",
164
+ "react-loading-skeleton": "^1.1.1",
165
+ "react-swipeable": "^7.0.0",
166
+ "react-tiny-popover": "^3.4.5",
167
+ "react-tiny-popover-latest": "npm:react-tiny-popover@^6.0.4",
168
+ "react-virtualized": "^9.21.1",
169
+ "resize-observer-polyfill": "^1.5.1",
170
+ "xlsx": "^0.18.5"
171
+ },
172
+ "husky": {
173
+ "hooks": {
174
+ "pre-commit": "lint-staged --config ./configs/.lintstagedrc.json",
175
+ "commit-msg": "commitlint --config ./configs/commitlint.config.js -E HUSKY_GIT_PARAMS"
176
+ }
177
+ },
178
+ "browserslist": [
179
+ ">0.2%",
180
+ "not dead",
181
+ "not ie <= 11",
182
+ "not op_mini all"
183
+ ],
184
+ "config": {
185
+ "commitizen": {
186
+ "path": "./node_modules/cz-conventional-changelog"
187
+ }
188
+ },
189
+ "license": "MIT"
190
+ }