iguazio.dashboard-react-controls 1.9.3 → 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/components/Backdrop/Backdrop.js +7 -7
- package/dist/components/Button/Button.js +20 -26
- package/dist/components/ConfirmDialog/ConfirmDialog.js +18 -17
- package/dist/components/FormCheckBox/FormCheckBox.js +28 -32
- package/dist/components/FormChipCell/FormChip/FormChip.js +46 -50
- package/dist/components/FormChipCell/FormChipCell.js +122 -142
- package/dist/components/FormChipCell/FormChipCellView.js +44 -47
- package/dist/components/FormChipCell/HiddenChipsBlock/HiddenChipsBlock.js +23 -20
- package/dist/components/FormChipCell/NewChipForm/NewChipForm.js +129 -152
- package/dist/components/FormChipCell/NewChipInput/NewChipInput.js +24 -27
- package/dist/components/FormChipCell/formChipCell.util.js +6 -16
- package/dist/components/FormCombobox/FormCombobox.js +134 -195
- package/dist/components/FormInput/FormInput.js +134 -212
- package/dist/components/FormInput/InputNumberButtons/InputNumberButtons.js +15 -14
- package/dist/components/FormKeyValueTable/FormKeyValueTable.js +72 -72
- package/dist/components/FormRadio/FormRadio.js +21 -25
- package/dist/components/FormSelect/FormSelect.js +98 -126
- package/dist/components/FormSelect/FormSelect.test.js +56 -60
- package/dist/components/FormTextarea/FormTextarea.js +55 -71
- package/dist/components/FormToggle/FormToggle.js +25 -29
- package/dist/components/Modal/Modal.js +17 -18
- package/dist/components/PopUpDialog/PopUpDialog.js +53 -63
- package/dist/components/RoundedIcon/RoundedIcon.js +14 -13
- package/dist/components/Tip/Tip.js +58 -64
- package/dist/components/Tip/Tip.test.js +41 -64
- package/dist/components/Tooltip/Tooltip.js +75 -89
- package/dist/components/TooltipTemplate/ProducerTooltipTemplate.js +6 -5
- package/dist/components/TooltipTemplate/TextTooltipTemplate.js +10 -10
- package/dist/components/Wizard/Wizard.js +73 -107
- package/dist/components/Wizard/WizardSteps/WizardSteps.js +19 -20
- package/dist/components/index.js +18 -18
- package/dist/constants.js +26 -44
- package/dist/elements/FormActionButton/FormActionButton.js +12 -13
- package/dist/elements/FormRowActions/FormRowActions.js +19 -22
- package/dist/elements/OptionsMenu/OptionsMenu.js +10 -8
- package/dist/elements/SelectOption/SelectOption.js +14 -13
- package/dist/elements/SelectOption/SelectOption.test.js +39 -47
- package/dist/elements/ValidationTemplate/ValidationTemplate.js +7 -6
- package/dist/elements/index.js +5 -5
- package/dist/hooks/index.js +5 -5
- package/dist/hooks/useChipCell.hook.js +66 -85
- package/dist/hooks/useDebounce.hook.js +22 -24
- package/dist/hooks/useDetectOutsideClick.hook.js +4 -4
- package/dist/hooks/useFormTable.hook.js +99 -112
- package/dist/hooks/useHiddenChipsBlock.hook.js +40 -55
- package/dist/index.js +2 -3
- package/dist/types.js +43 -67
- package/dist/utils/common.util.js +19 -23
- package/dist/utils/form.util.js +33 -39
- package/dist/utils/generateChipsList.util.js +7 -7
- package/dist/utils/getFirstScrollableParent.util.js +4 -10
- package/dist/utils/math.util.js +3 -3
- package/dist/utils/validation.util.js +74 -131
- package/package.json +34 -34
|
@@ -27,11 +27,12 @@ under the Apache 2.0 license is conditioned upon your compliance with
|
|
|
27
27
|
such restriction.
|
|
28
28
|
*/
|
|
29
29
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
duration =
|
|
33
|
-
show
|
|
34
|
-
onClose
|
|
30
|
+
const Backdrop = _ref => {
|
|
31
|
+
let {
|
|
32
|
+
duration = 300,
|
|
33
|
+
show,
|
|
34
|
+
onClose
|
|
35
|
+
} = _ref;
|
|
35
36
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactTransitionGroup.CSSTransition, {
|
|
36
37
|
in: show,
|
|
37
38
|
timeout: duration,
|
|
@@ -51,5 +52,4 @@ Backdrop.defaultProps = {
|
|
|
51
52
|
Backdrop.propTypes = {
|
|
52
53
|
show: _propTypes.default.bool.isRequired
|
|
53
54
|
};
|
|
54
|
-
var _default = Backdrop;
|
|
55
|
-
exports.default = _default;
|
|
55
|
+
var _default = exports.default = Backdrop;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
3
|
Object.defineProperty(exports, "__esModule", {
|
|
5
4
|
value: true
|
|
6
5
|
});
|
|
@@ -14,7 +13,9 @@ var _types = require("../../types");
|
|
|
14
13
|
var _constants = require("../../constants");
|
|
15
14
|
require("./Button.scss");
|
|
16
15
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
17
|
-
|
|
16
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
17
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
18
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
18
19
|
/*
|
|
19
20
|
Copyright 2022 Iguazio Systems Ltd.
|
|
20
21
|
Licensed under the Apache License, Version 2.0 (the "License") with
|
|
@@ -31,27 +32,21 @@ illegal under applicable law, and the grant of the foregoing license
|
|
|
31
32
|
under the Apache 2.0 license is conditioned upon your compliance with
|
|
32
33
|
such restriction.
|
|
33
34
|
*/
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
label = _ref.label,
|
|
50
|
-
tooltip = _ref.tooltip,
|
|
51
|
-
variant = _ref.variant,
|
|
52
|
-
restProps = _objectWithoutProperties(_ref, _excluded);
|
|
53
|
-
var buttonClassName = (0, _classnames.default)('btn', "btn-".concat(variant), "btn-".concat(density), className);
|
|
54
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsxs)("button", _objectSpread(_objectSpread({}, restProps), {}, {
|
|
35
|
+
|
|
36
|
+
const Button = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
|
|
37
|
+
let {
|
|
38
|
+
className,
|
|
39
|
+
density,
|
|
40
|
+
icon,
|
|
41
|
+
id,
|
|
42
|
+
label,
|
|
43
|
+
tooltip,
|
|
44
|
+
variant,
|
|
45
|
+
...restProps
|
|
46
|
+
} = _ref;
|
|
47
|
+
const buttonClassName = (0, _classnames.default)('btn', "btn-".concat(variant), "btn-".concat(density), className);
|
|
48
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)("button", {
|
|
49
|
+
...restProps,
|
|
55
50
|
className: buttonClassName,
|
|
56
51
|
ref: ref,
|
|
57
52
|
"data-testid": id,
|
|
@@ -65,7 +60,7 @@ var Button = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
|
|
|
65
60
|
}) : /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
66
61
|
children: label
|
|
67
62
|
})]
|
|
68
|
-
})
|
|
63
|
+
});
|
|
69
64
|
});
|
|
70
65
|
Button.defaultProps = {
|
|
71
66
|
className: '',
|
|
@@ -84,5 +79,4 @@ Button.propTypes = {
|
|
|
84
79
|
tooltip: _propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.element]),
|
|
85
80
|
variant: _types.BUTTON_VARIANTS
|
|
86
81
|
};
|
|
87
|
-
var _default = Button;
|
|
88
|
-
exports.default = _default;
|
|
82
|
+
var _default = exports.default = Button;
|
|
@@ -30,27 +30,29 @@ under the Apache 2.0 license is conditioned upon your compliance with
|
|
|
30
30
|
such restriction.
|
|
31
31
|
*/
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
33
|
+
const ConfirmDialog = _ref => {
|
|
34
|
+
let {
|
|
35
|
+
cancelButton,
|
|
36
|
+
className,
|
|
37
|
+
closePopUp,
|
|
38
|
+
confirmButton,
|
|
39
|
+
customPosition,
|
|
40
|
+
header,
|
|
41
|
+
isOpen,
|
|
42
|
+
message,
|
|
43
|
+
messageOnly,
|
|
44
|
+
onResolve
|
|
45
|
+
} = _ref;
|
|
46
|
+
const messageClassNames = (0, _classnames.default)('confirm-dialog__message', messageOnly && 'confirm-dialog__message-only');
|
|
47
|
+
const handleCancelDialog = event => {
|
|
46
48
|
onResolve && onResolve();
|
|
47
49
|
cancelButton.handler && cancelButton.handler(event);
|
|
48
50
|
};
|
|
49
|
-
|
|
51
|
+
const handleCloseDialog = event => {
|
|
50
52
|
onResolve && onResolve();
|
|
51
53
|
closePopUp && closePopUp(event);
|
|
52
54
|
};
|
|
53
|
-
|
|
55
|
+
const handleConfirmDialog = event => {
|
|
54
56
|
onResolve && onResolve();
|
|
55
57
|
confirmButton.handler && confirmButton.handler(event);
|
|
56
58
|
};
|
|
@@ -99,5 +101,4 @@ ConfirmDialog.propTypes = {
|
|
|
99
101
|
message: _types.CONFIRM_DIALOG_MESSAGE,
|
|
100
102
|
messageOnly: _propTypes.default.bool
|
|
101
103
|
};
|
|
102
|
-
var _default = ConfirmDialog;
|
|
103
|
-
exports.default = _default;
|
|
104
|
+
var _default = exports.default = ConfirmDialog;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
3
|
Object.defineProperty(exports, "__esModule", {
|
|
5
4
|
value: true
|
|
6
5
|
});
|
|
@@ -11,7 +10,9 @@ var _reactFinalForm = require("react-final-form");
|
|
|
11
10
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
12
11
|
require("./formCheckBox.scss");
|
|
13
12
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
14
|
-
|
|
13
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
14
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
15
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
15
16
|
/*
|
|
16
17
|
Copyright 2022 Iguazio Systems Ltd.
|
|
17
18
|
Licensed under the Apache License, Version 2.0 (the "License") with
|
|
@@ -28,49 +29,45 @@ illegal under applicable law, and the grant of the foregoing license
|
|
|
28
29
|
under the Apache 2.0 license is conditioned upon your compliance with
|
|
29
30
|
such restriction.
|
|
30
31
|
*/
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
label = _ref.label,
|
|
46
|
-
name = _ref.name,
|
|
47
|
-
readOnly = _ref.readOnly,
|
|
48
|
-
inputProps = _objectWithoutProperties(_ref, _excluded);
|
|
49
|
-
var formFieldClassNames = (0, _classnames.default)('form-field-checkbox', readOnly && 'form-field-checkbox_readonly', className);
|
|
50
|
-
var labelClassNames = (0, _classnames.default)(highlightLabel && 'highlighted');
|
|
51
|
-
var inputRef = (0, _react.useRef)();
|
|
32
|
+
|
|
33
|
+
const FormCheckBox = _ref => {
|
|
34
|
+
let {
|
|
35
|
+
children,
|
|
36
|
+
className,
|
|
37
|
+
highlightLabel,
|
|
38
|
+
label,
|
|
39
|
+
name,
|
|
40
|
+
readOnly,
|
|
41
|
+
...inputProps
|
|
42
|
+
} = _ref;
|
|
43
|
+
const formFieldClassNames = (0, _classnames.default)('form-field-checkbox', readOnly && 'form-field-checkbox_readonly', className);
|
|
44
|
+
const labelClassNames = (0, _classnames.default)(highlightLabel && 'highlighted');
|
|
45
|
+
const inputRef = (0, _react.useRef)();
|
|
52
46
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactFinalForm.Field, {
|
|
53
47
|
name: name,
|
|
54
48
|
value: inputProps.value,
|
|
55
49
|
type: "checkbox",
|
|
56
|
-
children:
|
|
50
|
+
children: _ref2 => {
|
|
57
51
|
var _inputProps$value, _inputProps$value2;
|
|
58
|
-
|
|
52
|
+
let {
|
|
53
|
+
input
|
|
54
|
+
} = _ref2;
|
|
59
55
|
return /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
60
56
|
className: formFieldClassNames,
|
|
61
57
|
"data-testid": "form-field-checkbox",
|
|
62
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("input",
|
|
58
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("input", {
|
|
63
59
|
ref: inputRef,
|
|
64
60
|
className: (0, _classnames.default)(input.checked ? 'checked' : 'unchecked'),
|
|
65
61
|
type: "checkbox",
|
|
66
62
|
"data-testid": name ? "".concat(name, "-form-checkbox") : 'form-checkbox',
|
|
67
|
-
id: (_inputProps$value = inputProps.value) !== null && _inputProps$value !== void 0 ? _inputProps$value : name
|
|
68
|
-
|
|
63
|
+
id: (_inputProps$value = inputProps.value) !== null && _inputProps$value !== void 0 ? _inputProps$value : name,
|
|
64
|
+
...input,
|
|
65
|
+
...inputProps,
|
|
69
66
|
value: String(input.checked)
|
|
70
|
-
})
|
|
67
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)("label", {
|
|
71
68
|
htmlFor: (_inputProps$value2 = inputProps.value) !== null && _inputProps$value2 !== void 0 ? _inputProps$value2 : name,
|
|
72
69
|
className: labelClassNames,
|
|
73
|
-
children: [label ? label : '',
|
|
70
|
+
children: [label ? label : '', children]
|
|
74
71
|
})]
|
|
75
72
|
});
|
|
76
73
|
}
|
|
@@ -89,5 +86,4 @@ FormCheckBox.propTypes = {
|
|
|
89
86
|
label: _propTypes.default.string,
|
|
90
87
|
readOnly: _propTypes.default.bool
|
|
91
88
|
};
|
|
92
|
-
var _default = /*#__PURE__*/_react.default.memo(FormCheckBox);
|
|
93
|
-
exports.default = _default;
|
|
89
|
+
var _default = exports.default = /*#__PURE__*/_react.default.memo(FormCheckBox);
|
|
@@ -11,59 +11,56 @@ var _types = require("../../../types");
|
|
|
11
11
|
require("./formChip.scss");
|
|
12
12
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
13
13
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
14
|
-
function _getRequireWildcardCache(
|
|
15
|
-
function _interopRequireWildcard(
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
(0, _react.useEffect)(function () {
|
|
55
|
-
queueMicrotask(function () {
|
|
14
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
15
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
16
|
+
/*
|
|
17
|
+
Copyright 2022 Iguazio Systems Ltd.
|
|
18
|
+
Licensed under the Apache License, Version 2.0 (the "License") with
|
|
19
|
+
an addition restriction as set forth herein. You may not use this
|
|
20
|
+
file except in compliance with the License. You may obtain a copy of
|
|
21
|
+
the License at http://www.apache.org/licenses/LICENSE-2.0.
|
|
22
|
+
Unless required by applicable law or agreed to in writing, software
|
|
23
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
24
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
25
|
+
implied. See the License for the specific language governing
|
|
26
|
+
permissions and limitations under the License.
|
|
27
|
+
In addition, you may not use the software for any purposes that are
|
|
28
|
+
illegal under applicable law, and the grant of the foregoing license
|
|
29
|
+
under the Apache 2.0 license is conditioned upon your compliance with
|
|
30
|
+
such restriction.
|
|
31
|
+
*/
|
|
32
|
+
|
|
33
|
+
const FormChip = /*#__PURE__*/_react.default.forwardRef((_ref, ref) => {
|
|
34
|
+
let {
|
|
35
|
+
chip,
|
|
36
|
+
chipIndex,
|
|
37
|
+
chipOptions,
|
|
38
|
+
editConfig,
|
|
39
|
+
handleEditChip,
|
|
40
|
+
handleRemoveChip,
|
|
41
|
+
handleToEditMode,
|
|
42
|
+
isDeleteMode,
|
|
43
|
+
isEditable,
|
|
44
|
+
keyName,
|
|
45
|
+
meta,
|
|
46
|
+
setChipsSizes,
|
|
47
|
+
setEditConfig,
|
|
48
|
+
validationRules,
|
|
49
|
+
valueName
|
|
50
|
+
} = _ref;
|
|
51
|
+
const chipRef = _react.default.useRef();
|
|
52
|
+
(0, _react.useEffect)(() => {
|
|
53
|
+
queueMicrotask(() => {
|
|
56
54
|
if (chipRef.current && setChipsSizes) {
|
|
57
|
-
setChipsSizes(
|
|
58
|
-
|
|
59
|
-
|
|
55
|
+
setChipsSizes(state => ({
|
|
56
|
+
...state,
|
|
57
|
+
[chipIndex]: chipRef.current.getBoundingClientRect().width
|
|
58
|
+
}));
|
|
60
59
|
}
|
|
61
60
|
});
|
|
62
61
|
}, [chipIndex, setChipsSizes]);
|
|
63
62
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
64
|
-
onClick:
|
|
65
|
-
return handleToEditMode(event, chipIndex, keyName);
|
|
66
|
-
},
|
|
63
|
+
onClick: event => handleToEditMode(event, chipIndex, keyName),
|
|
67
64
|
ref: chipRef,
|
|
68
65
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_NewChipForm.default, {
|
|
69
66
|
chip: chip,
|
|
@@ -115,5 +112,4 @@ FormChip.propTypes = {
|
|
|
115
112
|
validationRules: _propTypes.default.object,
|
|
116
113
|
valueName: _propTypes.default.string
|
|
117
114
|
};
|
|
118
|
-
var _default = FormChip;
|
|
119
|
-
exports.default = _default;
|
|
115
|
+
var _default = exports.default = FormChip;
|