@dreamcommerce/aurora 3.0.0-67 → 3.0.0-68
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/build/cjs/packages/aurora/src/components/accordion/accordion.js +4 -4
- package/build/cjs/packages/aurora/src/components/accordion/accordion_constants.js +2 -2
- package/build/cjs/packages/aurora/src/components/accordion/components/accordion_trigger.js +1 -1
- package/build/cjs/packages/aurora/src/components/accordion/context/accordion_context.js +1 -1
- package/build/cjs/packages/aurora/src/components/color_picker/color_picker.js +2 -2
- package/build/cjs/packages/aurora/src/components/controls/color_picker_control/color_picker_control.js +1 -1
- package/build/cjs/packages/aurora/src/components/controls/controls_group/controls_group.js +21 -0
- package/build/cjs/packages/aurora/src/components/controls/controls_group/controls_group.js.map +1 -0
- package/build/cjs/packages/aurora/src/components/controls/text_area_control/text_area_control.js +60 -0
- package/build/cjs/packages/aurora/src/components/controls/text_area_control/text_area_control.js.map +1 -0
- package/build/cjs/packages/aurora/src/components/text_area/text_area.js +49 -0
- package/build/cjs/packages/aurora/src/components/text_area/text_area.js.map +1 -0
- package/build/cjs/packages/aurora/src/components/text_area/text_area_variants.js +10 -0
- package/build/cjs/packages/aurora/src/components/text_area/text_area_variants.js.map +1 -0
- package/build/cjs/packages/aurora/src/index.js +8 -2
- package/build/cjs/packages/aurora/src/index.js.map +1 -1
- package/build/esm/packages/aurora/src/components/accordion/accordion.js +5 -5
- package/build/esm/packages/aurora/src/components/accordion/accordion_constants.d.ts +1 -1
- package/build/esm/packages/aurora/src/components/accordion/accordion_constants.js +2 -2
- package/build/esm/packages/aurora/src/components/accordion/accordion_types.d.ts +4 -4
- package/build/esm/packages/aurora/src/components/accordion/accordion_types.js.map +1 -1
- package/build/esm/packages/aurora/src/components/accordion/components/accordion_trigger.js +2 -2
- package/build/esm/packages/aurora/src/components/accordion/context/accordion_context.js +2 -2
- package/build/esm/packages/aurora/src/components/color_picker/color_picker.d.ts +1 -1
- package/build/esm/packages/aurora/src/components/color_picker/color_picker.js +2 -2
- package/build/esm/packages/aurora/src/components/controls/color_picker_control/color_picker_control.js +2 -2
- package/build/esm/packages/aurora/src/components/controls/controls_group/controls_group.js +12 -6
- package/build/esm/packages/aurora/src/components/controls/controls_group/controls_group.js.map +1 -1
- package/build/esm/packages/aurora/src/components/controls/text_area_control/text_area_control.js +50 -15
- package/build/esm/packages/aurora/src/components/controls/text_area_control/text_area_control.js.map +1 -1
- package/build/esm/packages/aurora/src/components/text_area/text_area.js +40 -6
- package/build/esm/packages/aurora/src/components/text_area/text_area.js.map +1 -1
- package/build/esm/packages/aurora/src/components/text_area/text_area_variants.js +6 -3
- package/build/esm/packages/aurora/src/components/text_area/text_area_variants.js.map +1 -1
- package/build/esm/packages/aurora/src/index.d.ts +5 -2
- package/build/esm/packages/aurora/src/index.js +5 -2
- package/build/esm/packages/aurora/src/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -8,19 +8,19 @@ var AccordionPrimitive = require('@radix-ui/react-accordion');
|
|
|
8
8
|
var accordion_constants = require('./accordion_constants.js');
|
|
9
9
|
var accordion_context = require('./context/accordion_context.js');
|
|
10
10
|
|
|
11
|
-
var _excluded = ["className", "children", "
|
|
11
|
+
var _excluded = ["className", "children", "size"];
|
|
12
12
|
var Accordion = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
13
13
|
var className = _ref.className,
|
|
14
14
|
children = _ref.children,
|
|
15
|
-
_ref$
|
|
16
|
-
|
|
15
|
+
_ref$size = _ref.size,
|
|
16
|
+
size = _ref$size === void 0 ? accordion_constants.ACCORDION_SIZES.default : _ref$size,
|
|
17
17
|
props = _rollupPluginBabelHelpers.objectWithoutProperties(_ref, _excluded);
|
|
18
18
|
return /*#__PURE__*/React.createElement(AccordionPrimitive.Root, _rollupPluginBabelHelpers.objectSpread2({
|
|
19
19
|
ref: ref,
|
|
20
20
|
className: "aurora-group aurora-block aurora-w-full"
|
|
21
21
|
}, props), /*#__PURE__*/React.createElement(accordion_context.AccordionContext.Provider, {
|
|
22
22
|
value: {
|
|
23
|
-
|
|
23
|
+
size: size
|
|
24
24
|
}
|
|
25
25
|
}, children));
|
|
26
26
|
});
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var ACCORDION_SIZES = {
|
|
6
6
|
default: 'default',
|
|
7
7
|
small: 'small'
|
|
8
8
|
};
|
|
9
9
|
|
|
10
|
-
exports.
|
|
10
|
+
exports.ACCORDION_SIZES = ACCORDION_SIZES;
|
|
11
11
|
//# sourceMappingURL=accordion_constants.js.map
|
|
@@ -29,7 +29,7 @@ var AccordionTrigger = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
|
29
29
|
className: cn.cn('aurora-flex aurora-items-center aurora-gap-2 aurora-py-2 aurora-pl-1.5 aurora-pr-4 aurora-text aurora-font-semibold aurora-transition-all [&[data-state=open]>svg]:aurora-rotate-90', _rollupPluginBabelHelpers.defineProperty({}, 'aurora-bg', !backgroundColor), className)
|
|
30
30
|
}, props), icon ? icon : (/*#__PURE__*/React.createElement(arrow_right.ArrowRightIcon, {
|
|
31
31
|
color: css_icon_color_tokens.CSS_ICON_COLOR_TOKENS_VALUES[iconColor],
|
|
32
|
-
size: accordionContext.
|
|
32
|
+
size: accordionContext.size === accordion_constants.ACCORDION_SIZES.default ? 24 : 20,
|
|
33
33
|
className: cn.cn('aurora-shrink-0 aurora-text-muted-foreground aurora-transition-transform aurora-duration-200')
|
|
34
34
|
})), children));
|
|
35
35
|
});
|
|
@@ -10,7 +10,7 @@ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'defau
|
|
|
10
10
|
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
|
11
11
|
|
|
12
12
|
var AccordionContext = /*#__PURE__*/React__default['default'].createContext({
|
|
13
|
-
|
|
13
|
+
size: accordion_constants.ACCORDION_SIZES.default
|
|
14
14
|
});
|
|
15
15
|
|
|
16
16
|
exports.AccordionContext = AccordionContext;
|
|
@@ -11,7 +11,7 @@ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'defau
|
|
|
11
11
|
|
|
12
12
|
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
|
13
13
|
|
|
14
|
-
var
|
|
14
|
+
var ColorPicker = function ColorPicker(_ref) {
|
|
15
15
|
var id = _ref.id,
|
|
16
16
|
name = _ref.name,
|
|
17
17
|
initialColor = _ref.initialColor,
|
|
@@ -88,5 +88,5 @@ var ColorPickerWithContext = function ColorPickerWithContext(_ref) {
|
|
|
88
88
|
}));
|
|
89
89
|
};
|
|
90
90
|
|
|
91
|
-
exports.
|
|
91
|
+
exports.ColorPicker = ColorPicker;
|
|
92
92
|
//# sourceMappingURL=color_picker.js.map
|
|
@@ -36,7 +36,7 @@ var ColorPickerControl = function ColorPickerControl(_ref) {
|
|
|
36
36
|
tooltip: tooltip,
|
|
37
37
|
required: required,
|
|
38
38
|
className: "aurora-pb-1 aurora-text"
|
|
39
|
-
}, label$1)), /*#__PURE__*/React__default['default'].createElement(color_picker.
|
|
39
|
+
}, label$1)), /*#__PURE__*/React__default['default'].createElement(color_picker.ColorPicker, _rollupPluginBabelHelpers.objectSpread2({
|
|
40
40
|
id: id,
|
|
41
41
|
name: name,
|
|
42
42
|
initialColor: initialColor,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var React = require('react');
|
|
6
|
+
var stack = require('../../stack/stack.js');
|
|
7
|
+
|
|
8
|
+
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
9
|
+
|
|
10
|
+
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
|
11
|
+
|
|
12
|
+
var ControlsGroup = function ControlsGroup(_ref) {
|
|
13
|
+
var children = _ref.children;
|
|
14
|
+
return /*#__PURE__*/React__default['default'].createElement(stack.Stack, {
|
|
15
|
+
spacing: "4",
|
|
16
|
+
direction: "column"
|
|
17
|
+
}, children);
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
exports.ControlsGroup = ControlsGroup;
|
|
21
|
+
//# sourceMappingURL=controls_group.js.map
|
package/build/cjs/packages/aurora/src/components/controls/controls_group/controls_group.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
package/build/cjs/packages/aurora/src/components/controls/text_area_control/text_area_control.js
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var React = require('react');
|
|
6
|
+
var _rollupPluginBabelHelpers = require('../../../../../../_virtual/_rollupPluginBabelHelpers.js');
|
|
7
|
+
var label = require('../../label/label.js');
|
|
8
|
+
var index = require('../../../../../../external/classnames/index.js');
|
|
9
|
+
var helper_text = require('../../helper_text/helper_text.js');
|
|
10
|
+
var error_list = require('../../error_list/error_list.js');
|
|
11
|
+
var control = require('../../control/control.js');
|
|
12
|
+
var text_area = require('../../text_area/text_area.js');
|
|
13
|
+
|
|
14
|
+
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
15
|
+
|
|
16
|
+
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
|
17
|
+
|
|
18
|
+
var _excluded = ["id", "name", "label", "errors", "placeholder", "disabled", "readOnly", "value", "defaultValue", "helperText", "required", "tooltip", "onChange"];
|
|
19
|
+
var TextAreaControl = function TextAreaControl(_ref) {
|
|
20
|
+
var id = _ref.id,
|
|
21
|
+
name = _ref.name,
|
|
22
|
+
label$1 = _ref.label,
|
|
23
|
+
errors = _ref.errors,
|
|
24
|
+
placeholder = _ref.placeholder,
|
|
25
|
+
disabled = _ref.disabled,
|
|
26
|
+
readOnly = _ref.readOnly,
|
|
27
|
+
value = _ref.value,
|
|
28
|
+
defaultValue = _ref.defaultValue,
|
|
29
|
+
helperText = _ref.helperText,
|
|
30
|
+
_ref$required = _ref.required,
|
|
31
|
+
required = _ref$required === void 0 ? false : _ref$required,
|
|
32
|
+
tooltip = _ref.tooltip,
|
|
33
|
+
onChange = _ref.onChange,
|
|
34
|
+
props = _rollupPluginBabelHelpers.objectWithoutProperties(_ref, _excluded);
|
|
35
|
+
return /*#__PURE__*/React__default['default'].createElement(control.Control, {
|
|
36
|
+
classname: "aurora-flex aurora-flex-col aurora-gap-2"
|
|
37
|
+
}, label$1 && (/*#__PURE__*/React__default['default'].createElement(label.Label, {
|
|
38
|
+
htmlFor: id,
|
|
39
|
+
required: required,
|
|
40
|
+
tooltip: tooltip,
|
|
41
|
+
disabled: disabled,
|
|
42
|
+
className: index['default']('aurora-text-base aurora-text aurora-font-medium', disabled && 'aurora-text-subtle-light')
|
|
43
|
+
}, label$1)), /*#__PURE__*/React__default['default'].createElement(text_area.TextArea, _rollupPluginBabelHelpers.objectSpread2({
|
|
44
|
+
id: id,
|
|
45
|
+
name: name,
|
|
46
|
+
placeholder: placeholder,
|
|
47
|
+
value: value,
|
|
48
|
+
defaultValue: defaultValue,
|
|
49
|
+
disabled: disabled,
|
|
50
|
+
readOnly: readOnly,
|
|
51
|
+
errors: errors,
|
|
52
|
+
onChange: onChange
|
|
53
|
+
}, props)), helperText && /*#__PURE__*/React__default['default'].createElement(helper_text.HelperText, null, helperText), errors && /*#__PURE__*/React__default['default'].createElement(error_list.ErrorList, {
|
|
54
|
+
errors: errors
|
|
55
|
+
}));
|
|
56
|
+
};
|
|
57
|
+
TextAreaControl.displayName = 'TextAreaControl';
|
|
58
|
+
|
|
59
|
+
exports.TextAreaControl = TextAreaControl;
|
|
60
|
+
//# sourceMappingURL=text_area_control.js.map
|
package/build/cjs/packages/aurora/src/components/controls/text_area_control/text_area_control.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB,gDAAoD;AACxE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var React = require('react');
|
|
6
|
+
var _rollupPluginBabelHelpers = require('../../../../../_virtual/_rollupPluginBabelHelpers.js');
|
|
7
|
+
var cn = require('../../utilities/cn.js');
|
|
8
|
+
var text_area_variants = require('./text_area_variants.js');
|
|
9
|
+
|
|
10
|
+
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
11
|
+
|
|
12
|
+
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
|
13
|
+
|
|
14
|
+
var _excluded = ["errors", "className", "id", "name", "value", "defaultValue", "placeholder", "disabled", "readOnly", "onChange", "onKeyDown", "onKeyUp"];
|
|
15
|
+
var TextArea = /*#__PURE__*/React__default['default'].forwardRef(function (_ref, ref) {
|
|
16
|
+
var errors = _ref.errors,
|
|
17
|
+
className = _ref.className,
|
|
18
|
+
id = _ref.id,
|
|
19
|
+
name = _ref.name,
|
|
20
|
+
value = _ref.value,
|
|
21
|
+
_ref$defaultValue = _ref.defaultValue,
|
|
22
|
+
defaultValue = _ref$defaultValue === void 0 ? '' : _ref$defaultValue,
|
|
23
|
+
_ref$placeholder = _ref.placeholder,
|
|
24
|
+
placeholder = _ref$placeholder === void 0 ? '' : _ref$placeholder,
|
|
25
|
+
disabled = _ref.disabled,
|
|
26
|
+
readOnly = _ref.readOnly,
|
|
27
|
+
onChange = _ref.onChange,
|
|
28
|
+
onKeyDown = _ref.onKeyDown,
|
|
29
|
+
onKeyUp = _ref.onKeyUp,
|
|
30
|
+
props = _rollupPluginBabelHelpers.objectWithoutProperties(_ref, _excluded);
|
|
31
|
+
return /*#__PURE__*/React__default['default'].createElement("textarea", _rollupPluginBabelHelpers.objectSpread2(_rollupPluginBabelHelpers.objectSpread2({}, props), {}, {
|
|
32
|
+
ref: ref,
|
|
33
|
+
id: id,
|
|
34
|
+
name: name,
|
|
35
|
+
value: value,
|
|
36
|
+
defaultValue: defaultValue,
|
|
37
|
+
placeholder: placeholder,
|
|
38
|
+
disabled: disabled,
|
|
39
|
+
readOnly: readOnly,
|
|
40
|
+
onChange: onChange,
|
|
41
|
+
onKeyDown: onKeyDown,
|
|
42
|
+
onKeyUp: onKeyUp,
|
|
43
|
+
className: cn.cn(text_area_variants.textAreaVariants(), errors && 'aurora-border-danger', disabled && 'aurora-bg-subtle aurora-text-subtle-light aurora-pointer-events-none aurora-cursor-not-allowed', className)
|
|
44
|
+
}));
|
|
45
|
+
});
|
|
46
|
+
TextArea.displayName = 'TextArea';
|
|
47
|
+
|
|
48
|
+
exports.TextArea = TextArea;
|
|
49
|
+
//# sourceMappingURL=text_area.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var index = require('../../../../../external/class-variance-authority/dist/index.mjs.js');
|
|
6
|
+
|
|
7
|
+
var textAreaVariants = index.cva('aurora-rounded-6 aurora-h-[72px] focus aurora-border aurora-bg aurora-text-s aurora-placeholder-neutral-500 aurora-text aurora-px-3 aurora-py-2 hover:aurora-border-strong active:aurora-border-active disabled:aurora-opacity-50 aurora-w-full');
|
|
8
|
+
|
|
9
|
+
exports.textAreaVariants = textAreaVariants;
|
|
10
|
+
//# sourceMappingURL=text_area_variants.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA,oBAAoB,oEAAwE;AAC5F;AACA;AACA;AACA;"}
|
|
@@ -96,6 +96,9 @@ var select = require('./components/select/select.js');
|
|
|
96
96
|
var select_control = require('./components/controls/select_control/select_control.js');
|
|
97
97
|
var radio_group = require('./components/radio_group/radio_group.js');
|
|
98
98
|
var radio_group_control = require('./components/controls/radio_group_control/radio_group_control.js');
|
|
99
|
+
var text_area = require('./components/text_area/text_area.js');
|
|
100
|
+
var text_area_control = require('./components/controls/text_area_control/text_area_control.js');
|
|
101
|
+
var controls_group = require('./components/controls/controls_group/controls_group.js');
|
|
99
102
|
|
|
100
103
|
|
|
101
104
|
|
|
@@ -116,7 +119,7 @@ exports.CSS_POSITION_TOKENS = css_position_tokens.CSS_POSITION_TOKENS;
|
|
|
116
119
|
exports.CSS_BORDER_WIDTH_SIDE_TOKENS = css_border_width_tokens.CSS_BORDER_WIDTH_SIDE_TOKENS;
|
|
117
120
|
exports.CSS_BORDER_WIDTH_TOKENS = css_border_width_tokens.CSS_BORDER_WIDTH_TOKENS;
|
|
118
121
|
exports.CSS_ICON_COLOR_TOKENS_VALUES = css_icon_color_tokens.CSS_ICON_COLOR_TOKENS_VALUES;
|
|
119
|
-
exports.
|
|
122
|
+
exports.ACCORDION_SIZES = accordion_constants.ACCORDION_SIZES;
|
|
120
123
|
exports.Accordion = accordion.Accordion;
|
|
121
124
|
exports.AccordionContent = accordion_content.AccordionContent;
|
|
122
125
|
exports.AccordionItem = accordion_item.AccordionItem;
|
|
@@ -203,7 +206,7 @@ exports.Switch = _switch.Switch;
|
|
|
203
206
|
exports.SwitchControl = switch_control.SwitchControl;
|
|
204
207
|
exports.Input = input.Input;
|
|
205
208
|
exports.InputControl = input_control.InputControl;
|
|
206
|
-
exports.
|
|
209
|
+
exports.ColorPicker = color_picker.ColorPicker;
|
|
207
210
|
exports.ColorPickerControl = color_picker_control.ColorPickerControl;
|
|
208
211
|
exports.Checkbox = checkbox.Checkbox;
|
|
209
212
|
exports.CheckboxControl = checkbox_control.CheckboxControl;
|
|
@@ -211,4 +214,7 @@ exports.Select = select.Select;
|
|
|
211
214
|
exports.SelectControl = select_control.SelectControl;
|
|
212
215
|
exports.RadioGroup = radio_group.RadioGroup;
|
|
213
216
|
exports.RadioGroupControl = radio_group_control.RadioGroupControl;
|
|
217
|
+
exports.TextArea = text_area.TextArea;
|
|
218
|
+
exports.TextAreaControl = text_area_control.TextAreaControl;
|
|
219
|
+
exports.ControlsGroup = controls_group.ControlsGroup;
|
|
214
220
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import { forwardRef, createElement } from 'react';
|
|
2
2
|
import { objectWithoutProperties as _objectWithoutProperties, objectSpread2 as _objectSpread2 } from '../../../../../_virtual/_rollupPluginBabelHelpers.js';
|
|
3
3
|
import { Root } from '@radix-ui/react-accordion';
|
|
4
|
-
import {
|
|
4
|
+
import { ACCORDION_SIZES } from './accordion_constants.js';
|
|
5
5
|
import { AccordionContext } from './context/accordion_context.js';
|
|
6
6
|
|
|
7
|
-
var _excluded = ["className", "children", "
|
|
7
|
+
var _excluded = ["className", "children", "size"];
|
|
8
8
|
var Accordion = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
9
9
|
var className = _ref.className,
|
|
10
10
|
children = _ref.children,
|
|
11
|
-
_ref$
|
|
12
|
-
|
|
11
|
+
_ref$size = _ref.size,
|
|
12
|
+
size = _ref$size === void 0 ? ACCORDION_SIZES.default : _ref$size,
|
|
13
13
|
props = _objectWithoutProperties(_ref, _excluded);
|
|
14
14
|
return /*#__PURE__*/createElement(Root, _objectSpread2({
|
|
15
15
|
ref: ref,
|
|
16
16
|
className: "aurora-group aurora-block aurora-w-full"
|
|
17
17
|
}, props), /*#__PURE__*/createElement(AccordionContext.Provider, {
|
|
18
18
|
value: {
|
|
19
|
-
|
|
19
|
+
size: size
|
|
20
20
|
}
|
|
21
21
|
}, children));
|
|
22
22
|
});
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { TCssBackgroundTokens, TCssBorderStyleTokens, TCssIconColorTokens } from "../../constants/css_tokens/css_tokens_types";
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
4
|
-
import {
|
|
4
|
+
import { ACCORDION_SIZES } from "./accordion_constants";
|
|
5
5
|
import { Any } from 'ts-toolbelt';
|
|
6
|
-
export declare type
|
|
6
|
+
export declare type TAccordionSize = Any.Keys<typeof ACCORDION_SIZES>;
|
|
7
7
|
export declare type TAccordionContext = {
|
|
8
|
-
|
|
8
|
+
size: TAccordionSize;
|
|
9
9
|
};
|
|
10
10
|
export declare type TAccordionTriggerProps = {
|
|
11
11
|
backgroundColor?: TCssBackgroundTokens;
|
|
@@ -14,5 +14,5 @@ export declare type TAccordionTriggerProps = {
|
|
|
14
14
|
icon?: React.ReactNode;
|
|
15
15
|
} & React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Trigger>;
|
|
16
16
|
export declare type TAccordionProps = {
|
|
17
|
-
|
|
17
|
+
size?: TAccordionSize;
|
|
18
18
|
} & React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Root>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accordion_types.js","sourceRoot":"","sources":["../../../../../../../src/components/accordion/accordion_types.ts"],"names":[],"mappings":"AAAA,OAAiF,8CAA8C,CAAC;AAChI,OAAuB,OAAO,CAAC;AAC/B,OAAoC,2BAA2B,CAAC;AAChE,
|
|
1
|
+
{"version":3,"file":"accordion_types.js","sourceRoot":"","sources":["../../../../../../../src/components/accordion/accordion_types.ts"],"names":[],"mappings":"AAAA,OAAiF,8CAA8C,CAAC;AAChI,OAAuB,OAAO,CAAC;AAC/B,OAAoC,2BAA2B,CAAC;AAChE,OAAgC,iDAAiD,CAAC;AAClF,OAAoB,aAAa,CAAC"}
|
|
@@ -2,7 +2,7 @@ import { forwardRef, useContext, createElement } from 'react';
|
|
|
2
2
|
import { objectWithoutProperties as _objectWithoutProperties, defineProperty as _defineProperty, objectSpread2 as _objectSpread2 } from '../../../../../../_virtual/_rollupPluginBabelHelpers.js';
|
|
3
3
|
import { Header, Trigger } from '@radix-ui/react-accordion';
|
|
4
4
|
import { CSS_ICON_COLOR_TOKENS_VALUES } from '../../../constants/css_tokens/css_icon_color_tokens.js';
|
|
5
|
-
import {
|
|
5
|
+
import { ACCORDION_SIZES } from '../accordion_constants.js';
|
|
6
6
|
import { AccordionContext } from '../context/accordion_context.js';
|
|
7
7
|
import { cn } from '../../../utilities/cn.js';
|
|
8
8
|
import { ArrowRightIcon } from '../../../assets/icons/arrow_right.js';
|
|
@@ -25,7 +25,7 @@ var AccordionTrigger = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
25
25
|
className: cn('aurora-flex aurora-items-center aurora-gap-2 aurora-py-2 aurora-pl-1.5 aurora-pr-4 aurora-text aurora-font-semibold aurora-transition-all [&[data-state=open]>svg]:aurora-rotate-90', _defineProperty({}, 'aurora-bg', !backgroundColor), className)
|
|
26
26
|
}, props), icon ? icon : (/*#__PURE__*/createElement(ArrowRightIcon, {
|
|
27
27
|
color: CSS_ICON_COLOR_TOKENS_VALUES[iconColor],
|
|
28
|
-
size: accordionContext.
|
|
28
|
+
size: accordionContext.size === ACCORDION_SIZES.default ? 24 : 20,
|
|
29
29
|
className: cn('aurora-shrink-0 aurora-text-muted-foreground aurora-transition-transform aurora-duration-200')
|
|
30
30
|
})), children));
|
|
31
31
|
});
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React__default from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { ACCORDION_SIZES } from '../accordion_constants.js';
|
|
3
3
|
|
|
4
4
|
var AccordionContext = /*#__PURE__*/React__default.createContext({
|
|
5
|
-
|
|
5
|
+
size: ACCORDION_SIZES.default
|
|
6
6
|
});
|
|
7
7
|
|
|
8
8
|
export { AccordionContext };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { IColorPickerProps } from './color_picker_types';
|
|
3
|
-
export declare const
|
|
3
|
+
export declare const ColorPicker: ({ id, name, initialColor, colorVariables, errors, onChange, onCancel, onSave, withGradient: isWithGradient }: IColorPickerProps) => React.JSX.Element;
|
|
@@ -3,7 +3,7 @@ import { ColorPickerContext } from './color_picker_context.js';
|
|
|
3
3
|
import ColorPickerPure from './components/pure_color_picker.js';
|
|
4
4
|
import useSetupColorPicker from './hooks/setup_color_piceker.js';
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var ColorPicker = function ColorPicker(_ref) {
|
|
7
7
|
var id = _ref.id,
|
|
8
8
|
name = _ref.name,
|
|
9
9
|
initialColor = _ref.initialColor,
|
|
@@ -80,5 +80,5 @@ var ColorPickerWithContext = function ColorPickerWithContext(_ref) {
|
|
|
80
80
|
}));
|
|
81
81
|
};
|
|
82
82
|
|
|
83
|
-
export {
|
|
83
|
+
export { ColorPicker };
|
|
84
84
|
//# sourceMappingURL=color_picker.js.map
|
|
@@ -3,7 +3,7 @@ import { objectWithoutProperties as _objectWithoutProperties, objectSpread2 as _
|
|
|
3
3
|
import { Label } from '../../label/label.js';
|
|
4
4
|
import { ErrorList } from '../../error_list/error_list.js';
|
|
5
5
|
import { Control } from '../../control/control.js';
|
|
6
|
-
import {
|
|
6
|
+
import { ColorPicker } from '../../color_picker/color_picker.js';
|
|
7
7
|
|
|
8
8
|
var _excluded = ["label", "tooltip", "required", "id", "name", "errors", "initialColor", "colorVariables", "onChange", "onCancel", "onSave", "withGradient"];
|
|
9
9
|
var ColorPickerControl = function ColorPickerControl(_ref) {
|
|
@@ -28,7 +28,7 @@ var ColorPickerControl = function ColorPickerControl(_ref) {
|
|
|
28
28
|
tooltip: tooltip,
|
|
29
29
|
required: required,
|
|
30
30
|
className: "aurora-pb-1 aurora-text"
|
|
31
|
-
}, label)), /*#__PURE__*/React__default.createElement(
|
|
31
|
+
}, label)), /*#__PURE__*/React__default.createElement(ColorPicker, _objectSpread2({
|
|
32
32
|
id: id,
|
|
33
33
|
name: name,
|
|
34
34
|
initialColor: initialColor,
|
|
@@ -1,7 +1,13 @@
|
|
|
1
|
-
import 'react';
|
|
2
|
-
import { Stack } from '
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import React__default from 'react';
|
|
2
|
+
import { Stack } from '../../stack/stack.js';
|
|
3
|
+
|
|
4
|
+
var ControlsGroup = function ControlsGroup(_ref) {
|
|
5
|
+
var children = _ref.children;
|
|
6
|
+
return /*#__PURE__*/React__default.createElement(Stack, {
|
|
7
|
+
spacing: "4",
|
|
8
|
+
direction: "column"
|
|
9
|
+
}, children);
|
|
6
10
|
};
|
|
7
|
-
|
|
11
|
+
|
|
12
|
+
export { ControlsGroup };
|
|
13
|
+
//# sourceMappingURL=controls_group.js.map
|
package/build/esm/packages/aurora/src/components/controls/controls_group/controls_group.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
package/build/esm/packages/aurora/src/components/controls/text_area_control/text_area_control.js
CHANGED
|
@@ -1,17 +1,52 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import '
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
1
|
+
import React__default from 'react';
|
|
2
|
+
import { objectWithoutProperties as _objectWithoutProperties, objectSpread2 as _objectSpread2 } from '../../../../../../_virtual/_rollupPluginBabelHelpers.js';
|
|
3
|
+
import { Label } from '../../label/label.js';
|
|
4
|
+
import classnames from '../../../../../../external/classnames/index.js';
|
|
5
|
+
import { HelperText } from '../../helper_text/helper_text.js';
|
|
6
|
+
import { ErrorList } from '../../error_list/error_list.js';
|
|
7
|
+
import { Control } from '../../control/control.js';
|
|
8
|
+
import { TextArea } from '../../text_area/text_area.js';
|
|
9
|
+
|
|
10
|
+
var _excluded = ["id", "name", "label", "errors", "placeholder", "disabled", "readOnly", "value", "defaultValue", "helperText", "required", "tooltip", "onChange"];
|
|
11
|
+
var TextAreaControl = function TextAreaControl(_ref) {
|
|
12
|
+
var id = _ref.id,
|
|
13
|
+
name = _ref.name,
|
|
14
|
+
label = _ref.label,
|
|
15
|
+
errors = _ref.errors,
|
|
16
|
+
placeholder = _ref.placeholder,
|
|
17
|
+
disabled = _ref.disabled,
|
|
18
|
+
readOnly = _ref.readOnly,
|
|
19
|
+
value = _ref.value,
|
|
20
|
+
defaultValue = _ref.defaultValue,
|
|
21
|
+
helperText = _ref.helperText,
|
|
22
|
+
_ref$required = _ref.required,
|
|
23
|
+
required = _ref$required === void 0 ? false : _ref$required,
|
|
24
|
+
tooltip = _ref.tooltip,
|
|
25
|
+
onChange = _ref.onChange,
|
|
26
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
27
|
+
return /*#__PURE__*/React__default.createElement(Control, {
|
|
28
|
+
classname: "aurora-flex aurora-flex-col aurora-gap-2"
|
|
29
|
+
}, label && (/*#__PURE__*/React__default.createElement(Label, {
|
|
30
|
+
htmlFor: id,
|
|
31
|
+
required: required,
|
|
32
|
+
tooltip: tooltip,
|
|
33
|
+
disabled: disabled,
|
|
34
|
+
className: classnames('aurora-text-base aurora-text aurora-font-medium', disabled && 'aurora-text-subtle-light')
|
|
35
|
+
}, label)), /*#__PURE__*/React__default.createElement(TextArea, _objectSpread2({
|
|
36
|
+
id: id,
|
|
37
|
+
name: name,
|
|
38
|
+
placeholder: placeholder,
|
|
39
|
+
value: value,
|
|
40
|
+
defaultValue: defaultValue,
|
|
41
|
+
disabled: disabled,
|
|
42
|
+
readOnly: readOnly,
|
|
43
|
+
errors: errors,
|
|
44
|
+
onChange: onChange
|
|
45
|
+
}, props)), helperText && /*#__PURE__*/React__default.createElement(HelperText, null, helperText), errors && /*#__PURE__*/React__default.createElement(ErrorList, {
|
|
46
|
+
errors: errors
|
|
47
|
+
}));
|
|
15
48
|
};
|
|
16
49
|
TextAreaControl.displayName = 'TextAreaControl';
|
|
17
|
-
|
|
50
|
+
|
|
51
|
+
export { TextAreaControl };
|
|
52
|
+
//# sourceMappingURL=text_area_control.js.map
|
package/build/esm/packages/aurora/src/components/controls/text_area_control/text_area_control.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA,uBAAuB,gDAAoD;AAC3E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -1,7 +1,41 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import './
|
|
5
|
-
|
|
1
|
+
import React__default from 'react';
|
|
2
|
+
import { objectWithoutProperties as _objectWithoutProperties, objectSpread2 as _objectSpread2 } from '../../../../../_virtual/_rollupPluginBabelHelpers.js';
|
|
3
|
+
import { cn } from '../../utilities/cn.js';
|
|
4
|
+
import { textAreaVariants } from './text_area_variants.js';
|
|
5
|
+
|
|
6
|
+
var _excluded = ["errors", "className", "id", "name", "value", "defaultValue", "placeholder", "disabled", "readOnly", "onChange", "onKeyDown", "onKeyUp"];
|
|
7
|
+
var TextArea = /*#__PURE__*/React__default.forwardRef(function (_ref, ref) {
|
|
8
|
+
var errors = _ref.errors,
|
|
9
|
+
className = _ref.className,
|
|
10
|
+
id = _ref.id,
|
|
11
|
+
name = _ref.name,
|
|
12
|
+
value = _ref.value,
|
|
13
|
+
_ref$defaultValue = _ref.defaultValue,
|
|
14
|
+
defaultValue = _ref$defaultValue === void 0 ? '' : _ref$defaultValue,
|
|
15
|
+
_ref$placeholder = _ref.placeholder,
|
|
16
|
+
placeholder = _ref$placeholder === void 0 ? '' : _ref$placeholder,
|
|
17
|
+
disabled = _ref.disabled,
|
|
18
|
+
readOnly = _ref.readOnly,
|
|
19
|
+
onChange = _ref.onChange,
|
|
20
|
+
onKeyDown = _ref.onKeyDown,
|
|
21
|
+
onKeyUp = _ref.onKeyUp,
|
|
22
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
23
|
+
return /*#__PURE__*/React__default.createElement("textarea", _objectSpread2(_objectSpread2({}, props), {}, {
|
|
24
|
+
ref: ref,
|
|
25
|
+
id: id,
|
|
26
|
+
name: name,
|
|
27
|
+
value: value,
|
|
28
|
+
defaultValue: defaultValue,
|
|
29
|
+
placeholder: placeholder,
|
|
30
|
+
disabled: disabled,
|
|
31
|
+
readOnly: readOnly,
|
|
32
|
+
onChange: onChange,
|
|
33
|
+
onKeyDown: onKeyDown,
|
|
34
|
+
onKeyUp: onKeyUp,
|
|
35
|
+
className: cn(textAreaVariants(), errors && 'aurora-border-danger', disabled && 'aurora-bg-subtle aurora-text-subtle-light aurora-pointer-events-none aurora-cursor-not-allowed', className)
|
|
36
|
+
}));
|
|
37
|
+
});
|
|
6
38
|
TextArea.displayName = 'TextArea';
|
|
7
|
-
|
|
39
|
+
|
|
40
|
+
export { TextArea };
|
|
41
|
+
//# sourceMappingURL=text_area.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
-
import { cva } from 'class-variance-authority';
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import { cva } from '../../../../../external/class-variance-authority/dist/index.mjs.js';
|
|
2
|
+
|
|
3
|
+
var textAreaVariants = cva('aurora-rounded-6 aurora-h-[72px] focus aurora-border aurora-bg aurora-text-s aurora-placeholder-neutral-500 aurora-text aurora-px-3 aurora-py-2 hover:aurora-border-strong active:aurora-border-active disabled:aurora-opacity-50 aurora-w-full');
|
|
4
|
+
|
|
5
|
+
export { textAreaVariants };
|
|
6
|
+
//# sourceMappingURL=text_area_variants.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA,oBAAoB,oEAAwE;AAC5F;AACA;AACA;AACA;"}
|
|
@@ -5,7 +5,7 @@ export { AccordionContent } from "./components/accordion/components/accordion_co
|
|
|
5
5
|
export { AccordionItem } from "./components/accordion/components/accordion_item";
|
|
6
6
|
export { AccordionTrigger } from "./components/accordion/components/accordion_trigger";
|
|
7
7
|
export { ActionListGenericTrigger } from "./components/action_list/components/action_list_generic_trigger";
|
|
8
|
-
export {
|
|
8
|
+
export { ACCORDION_SIZES } from "./components/accordion/accordion_constants";
|
|
9
9
|
export { ActionList } from "./components/action_list/action_list";
|
|
10
10
|
export { ActionListLabel } from "./components/action_list/components/action_list_label";
|
|
11
11
|
export { ActionListGroup } from "./components/action_list/components/action_list_group";
|
|
@@ -87,7 +87,7 @@ export { Switch } from "./components/switch/switch";
|
|
|
87
87
|
export { SwitchControl } from './components/controls/switch_control/switch_control';
|
|
88
88
|
export { Input } from "./components/input/input";
|
|
89
89
|
export { InputControl } from './components/controls/input_control/input_control';
|
|
90
|
-
export {
|
|
90
|
+
export { ColorPicker } from "./components/color_picker/color_picker";
|
|
91
91
|
export { ColorPickerControl } from './components/controls/color_picker_control/color_picker_control';
|
|
92
92
|
export { Checkbox } from "./components/checkbox/checkbox";
|
|
93
93
|
export { CheckboxControl } from './components/controls/checkbox_control/checkbox_control';
|
|
@@ -95,3 +95,6 @@ export { Select } from "./components/select/select";
|
|
|
95
95
|
export { SelectControl } from './components/controls/select_control/select_control';
|
|
96
96
|
export { RadioGroup } from "./components/radio_group/radio_group";
|
|
97
97
|
export { RadioGroupControl } from "./components/controls/radio_group_control/radio_group_control";
|
|
98
|
+
export { TextArea } from "./components/text_area/text_area";
|
|
99
|
+
export { TextAreaControl } from "./components/controls/text_area_control/text_area_control";
|
|
100
|
+
export { ControlsGroup } from "./components/controls/controls_group/controls_group";
|
|
@@ -13,7 +13,7 @@ export { CSS_BORDER_STYLE_TOKENS } from './constants/css_tokens/css_border_style
|
|
|
13
13
|
export { CSS_POSITION_TOKENS } from './constants/css_tokens/css_position_tokens.js';
|
|
14
14
|
export { CSS_BORDER_WIDTH_SIDE_TOKENS, CSS_BORDER_WIDTH_TOKENS } from './constants/css_tokens/css_border_width_tokens.js';
|
|
15
15
|
export { CSS_ICON_COLOR_TOKENS_VALUES } from './constants/css_tokens/css_icon_color_tokens.js';
|
|
16
|
-
export {
|
|
16
|
+
export { ACCORDION_SIZES } from './components/accordion/accordion_constants.js';
|
|
17
17
|
export { Accordion } from './components/accordion/accordion.js';
|
|
18
18
|
export { AccordionContent } from './components/accordion/components/accordion_content.js';
|
|
19
19
|
export { AccordionItem } from './components/accordion/components/accordion_item.js';
|
|
@@ -84,7 +84,7 @@ export { Switch } from './components/switch/switch.js';
|
|
|
84
84
|
export { SwitchControl } from './components/controls/switch_control/switch_control.js';
|
|
85
85
|
export { Input } from './components/input/input.js';
|
|
86
86
|
export { InputControl } from './components/controls/input_control/input_control.js';
|
|
87
|
-
export {
|
|
87
|
+
export { ColorPicker } from './components/color_picker/color_picker.js';
|
|
88
88
|
export { ColorPickerControl } from './components/controls/color_picker_control/color_picker_control.js';
|
|
89
89
|
export { Checkbox } from './components/checkbox/checkbox.js';
|
|
90
90
|
export { CheckboxControl } from './components/controls/checkbox_control/checkbox_control.js';
|
|
@@ -92,4 +92,7 @@ export { Select } from './components/select/select.js';
|
|
|
92
92
|
export { SelectControl } from './components/controls/select_control/select_control.js';
|
|
93
93
|
export { RadioGroup } from './components/radio_group/radio_group.js';
|
|
94
94
|
export { RadioGroupControl } from './components/controls/radio_group_control/radio_group_control.js';
|
|
95
|
+
export { TextArea } from './components/text_area/text_area.js';
|
|
96
|
+
export { TextAreaControl } from './components/controls/text_area_control/text_area_control.js';
|
|
97
|
+
export { ControlsGroup } from './components/controls/controls_group/controls_group.js';
|
|
95
98
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|