@ntbjs/react-components 1.3.0-rc.16 → 1.3.0-rc.18
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/{AssetGallery-aca82e36.js → AssetGallery-d0c099e8.js} +1 -1
- package/{CompactTextInput-198d0800.js → CompactTextInput-c0d45782.js} +46 -34
- package/inputs/CompactTextInput/index.js +1 -1
- package/inputs/index.js +1 -1
- package/package.json +1 -1
- package/widgets/AssetGallery/index.js +2 -2
- package/widgets/index.js +2 -2
|
@@ -21,7 +21,7 @@ require('./Button-49f82b31.js');
|
|
|
21
21
|
require('./Checkbox-68dc38a8.js');
|
|
22
22
|
require('./CompactAutocompleteSelect-96137f48.js');
|
|
23
23
|
require('./CompactStarRating-15c1b812.js');
|
|
24
|
-
require('./CompactTextInput-
|
|
24
|
+
require('./CompactTextInput-c0d45782.js');
|
|
25
25
|
require('./MultiSelect-efd60232.js');
|
|
26
26
|
require('./Radio-32d0513a.js');
|
|
27
27
|
require('./TextArea-18fbcc9f.js');
|
|
@@ -54,7 +54,7 @@ function SvgLink(props) {
|
|
|
54
54
|
}, props), _ref);
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
-
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11, _templateObject12, _templateObject13, _templateObject14, _templateObject15, _templateObject16, _templateObject17, _templateObject18, _templateObject19, _templateObject20, _templateObject21, _templateObject22, _templateObject23, _templateObject24, _templateObject25, _templateObject26, _templateObject27, _templateObject28;
|
|
57
|
+
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11, _templateObject12, _templateObject13, _templateObject14, _templateObject15, _templateObject16, _templateObject17, _templateObject18, _templateObject19, _templateObject20, _templateObject21, _templateObject22, _templateObject23, _templateObject24, _templateObject25, _templateObject26, _templateObject27, _templateObject28, _templateObject29, _templateObject30, _templateObject31;
|
|
58
58
|
var fadeIn = styled.keyframes(_templateObject || (_templateObject = defaultTheme._taggedTemplateLiteral(["\n from {\n background-color: ", ";\n }\n to {\n background-color: ", ";\n }\n"])), function (props) {
|
|
59
59
|
return props.theme.themeProp('rgba(48, 130, 106, 0)', 'rgba(191, 224, 213, 0)');
|
|
60
60
|
}, function (props) {
|
|
@@ -67,35 +67,39 @@ var fadeOut = styled.keyframes(_templateObject2 || (_templateObject2 = defaultTh
|
|
|
67
67
|
});
|
|
68
68
|
var fadeInCheck = styled.keyframes(_templateObject3 || (_templateObject3 = defaultTheme._taggedTemplateLiteral(["\n from {\n opacity: 0\n }\n to {\n opacity: 1\n }\n"])));
|
|
69
69
|
var fadeOutCheck = styled.keyframes(_templateObject4 || (_templateObject4 = defaultTheme._taggedTemplateLiteral(["\n from {\n opacity: 1\n }\n to {\n opacity: 0\n }\n"])));
|
|
70
|
-
var
|
|
70
|
+
var linkColor = styled.css(_templateObject5 || (_templateObject5 = defaultTheme._taggedTemplateLiteral(["\n ", "\n"])), function (props) {
|
|
71
|
+
return props.theme.themeProp('color', props.theme.getColor('gray-200'), props.theme.getColor('emerald-500'));
|
|
72
|
+
});
|
|
73
|
+
var commonAnchorTagStyle = styled.css(_templateObject6 || (_templateObject6 = defaultTheme._taggedTemplateLiteral(["\n padding: 5px 8px;\n\n a,\n && {\n font-size: 0.875rem;\n }\n"])));
|
|
74
|
+
var CompactTextInput$1 = styled__default['default'].div.attrs(defaultTheme.applyDefaultTheme)(_templateObject7 || (_templateObject7 = defaultTheme._taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n height: 24px;\n font-family: ", ";\n"])), function (props) {
|
|
71
75
|
return props.theme.primaryFontFamily;
|
|
72
76
|
});
|
|
73
|
-
var Label = styled__default['default'].label.attrs(defaultTheme.applyDefaultTheme)(
|
|
77
|
+
var Label = styled__default['default'].label.attrs(defaultTheme.applyDefaultTheme)(_templateObject8 || (_templateObject8 = defaultTheme._taggedTemplateLiteral(["\n ", ";\n flex-basis: 33.33%;\n font-size: 0.875rem;\n line-height: 1rem;\n justify-content: space-between;\n height: 19px;\n display: flex;\n align-items: center;\n ", "\n"])), function (props) {
|
|
74
78
|
return props.theme.themeProp('color', props.theme.getColor('white'), props.theme.getColor('gray-700'));
|
|
75
79
|
}, function (props) {
|
|
76
|
-
return props.disabled && styled.css(
|
|
80
|
+
return props.disabled && styled.css(_templateObject9 || (_templateObject9 = defaultTheme._taggedTemplateLiteral(["\n opacity: 0.5;\n cursor: not-allowed;\n "])));
|
|
77
81
|
});
|
|
78
|
-
var InputContainer = styled__default['default'].div.attrs(defaultTheme.applyDefaultTheme)(
|
|
82
|
+
var InputContainer = styled__default['default'].div.attrs(defaultTheme.applyDefaultTheme)(_templateObject10 || (_templateObject10 = defaultTheme._taggedTemplateLiteral(["\n position: relative;\n height: 19px;\n flex-basis: ", ";\n"])), function (props) {
|
|
79
83
|
return props.$hasLabel ? '66.66%' : '100%';
|
|
80
84
|
});
|
|
81
|
-
var SuccessContainer = styled__default['default'].div.attrs(defaultTheme.applyDefaultTheme)(
|
|
85
|
+
var SuccessContainer = styled__default['default'].div.attrs(defaultTheme.applyDefaultTheme)(_templateObject11 || (_templateObject11 = defaultTheme._taggedTemplateLiteral(["\n opacity: 1;\n pointer-events: none;\n display: flex;\n opacity: ", ";\n animation: ", " 0.5s ease-in-out;\n transition: opacity 0.5s ease-in-out;\n margin-right: 5px;\n ", "\n > svg {\n width: 13px;\n }\n"])), function (props) {
|
|
82
86
|
return props.fadeIn ? 0 : 1;
|
|
83
87
|
}, function (props) {
|
|
84
88
|
return props.fadeIn ? fadeOutCheck : fadeInCheck;
|
|
85
89
|
}, function (props) {
|
|
86
90
|
return props.theme.themeProp('color', props.theme.getColor('gray-300'), props.theme.getColor('gray-500'));
|
|
87
91
|
});
|
|
88
|
-
var InputSuccessContainer = styled__default['default'].div.attrs(defaultTheme.applyDefaultTheme)(
|
|
92
|
+
var InputSuccessContainer = styled__default['default'].div.attrs(defaultTheme.applyDefaultTheme)(_templateObject12 || (_templateObject12 = defaultTheme._taggedTemplateLiteral(["\n opacity: 1;\n pointer-events: none;\n display: flex;\n justify-content: flex-end;\n opacity: ", ";\n animation: ", " 0.5s ease-in-out;\n transition: opacity 0.5s ease-in-out;\n position: relative;\n margin-top: -20px;\n margin-right: 8px;\n ", "\n > svg {\n width: 13px;\n }\n"])), function (props) {
|
|
89
93
|
return props.fadeIn ? 0 : 1;
|
|
90
94
|
}, function (props) {
|
|
91
95
|
return props.fadeIn ? fadeOutCheck : fadeInCheck;
|
|
92
96
|
}, function (props) {
|
|
93
97
|
return props.theme.themeProp('color', props.theme.getColor('gray-300'), props.theme.getColor('gray-500'));
|
|
94
98
|
});
|
|
95
|
-
var InputIconContainer = styled__default['default'].div.attrs(defaultTheme.applyDefaultTheme)(
|
|
96
|
-
return props.theme.themeProp('background', styled.css(
|
|
99
|
+
var InputIconContainer = styled__default['default'].div.attrs(defaultTheme.applyDefaultTheme)(_templateObject13 || (_templateObject13 = defaultTheme._taggedTemplateLiteral(["\n opacity: 0;\n pointer-events: none;\n border-top-right-radius: 3px;\n border-bottom-right-radius: 3px;\n padding: 5px 10px 0 0;\n ", ";\n\n display: flex;\n align-items: center;\n position: absolute;\n right: 0;\n top: 0;\n bottom: 0;\n color: ", ";\n\n ", "\n\n ", "\n\n > svg {\n width: 12px;\n }\n"])), function (props) {
|
|
100
|
+
return props.theme.themeProp('background', styled.css(_templateObject14 || (_templateObject14 = defaultTheme._taggedTemplateLiteral(["\n linear-gradient(-90deg,\n ", " 55%,\n transparent)\n "])), function (props) {
|
|
97
101
|
return props.type === 'error' ? '#901d1d' : props.type === 'warning' ? '#816600' : props.theme.getColor('gray-700');
|
|
98
|
-
}), styled.css(
|
|
102
|
+
}), styled.css(_templateObject15 || (_templateObject15 = defaultTheme._taggedTemplateLiteral(["\n linear-gradient(-90deg,\n ", " 55%,\n transparent)\n "])), function (props) {
|
|
99
103
|
return props.type === 'error' ? '#f7d5d0' : props.type === 'warning' ? '#fffebf' : props.theme.getColor('gray-100');
|
|
100
104
|
}));
|
|
101
105
|
}, function (props) {
|
|
@@ -105,12 +109,12 @@ var InputIconContainer = styled__default['default'].div.attrs(defaultTheme.apply
|
|
|
105
109
|
}, function (props) {
|
|
106
110
|
return props.type === 'error' && props.theme.themeProp('color', '#CB968F', '#CB968F');
|
|
107
111
|
});
|
|
108
|
-
var Input = styled__default['default'].input.attrs(defaultTheme.applyDefaultTheme)(
|
|
109
|
-
return props.readOnly && styled.css(
|
|
112
|
+
var Input = styled__default['default'].input.attrs(defaultTheme.applyDefaultTheme)(_templateObject16 || (_templateObject16 = defaultTheme._taggedTemplateLiteral(["\n box-sizing: border-box;\n height: 22px;\n width: 100%;\n display: block;\n font-size: 0.875rem;\n line-height: 1rem;\n font-family: inherit;\n\n ", "\n\n ", "\n\n ", "\n\n ", "\n padding: 1px 10px;\n ", ";\n border-radius: 3px;\n border: 1px solid transparent;\n text-overflow: ellipsis;\n\n ", ";\n\n &&:not(:hover):not(:focus) {\n ", "\n ", ";\n ", ";\n ", ";\n ", ";\n \n ", "\n }\n\n &&:hover:not(:focus) {\n\n ", "\n\n ", " \n\n ", ";\n\n ", ";\n\n ", ";\n\n\n ", "\n & + ", " {\n opacity: 1;\n \n }\n }\n\n ", "\n ", "\n\n }\n\n &&:focus {\n ", ";\n\n ", ";\n \n ", ";\n\n ", ";\n outline: none;\n\n ", ";\n\n ", ";\n }\n\n &&::placeholder {\n color: inherit;\n opacity: 0.6;\n }\n\n ", "\n"])), function (props) {
|
|
113
|
+
return props.readOnly && styled.css(_templateObject17 || (_templateObject17 = defaultTheme._taggedTemplateLiteral(["\n cursor: default;\n "])));
|
|
110
114
|
}, function (props) {
|
|
111
|
-
return props.disabled && styled.css(
|
|
115
|
+
return props.disabled && styled.css(_templateObject18 || (_templateObject18 = defaultTheme._taggedTemplateLiteral(["\n opacity: 0.5;\n "])));
|
|
112
116
|
}, function (props) {
|
|
113
|
-
return props.type === 'success' && styled.css(
|
|
117
|
+
return props.type === 'success' && styled.css(_templateObject19 || (_templateObject19 = defaultTheme._taggedTemplateLiteral(["\n animation: ", " 0.5s ease-in-out;\n "])), function (props) {
|
|
114
118
|
return props.type === 'success' ? fadeIn : fadeOut;
|
|
115
119
|
});
|
|
116
120
|
}, function (props) {
|
|
@@ -118,11 +122,9 @@ var Input = styled__default['default'].input.attrs(defaultTheme.applyDefaultThem
|
|
|
118
122
|
}, function (props) {
|
|
119
123
|
return props.theme.themeProp('background', props.theme.getColor('gray-900'), props.theme.getColor('white'));
|
|
120
124
|
}, function (props) {
|
|
121
|
-
return props.hasLink && styled.css(
|
|
122
|
-
return props.theme.themeProp('color', props.theme.getColor('gray-200'), props.theme.getColor('emerald-500'));
|
|
123
|
-
});
|
|
125
|
+
return props.hasLink && styled.css(_templateObject20 || (_templateObject20 = defaultTheme._taggedTemplateLiteral(["\n &&:not(:focus),\n &&:read-only {\n text-decoration: underline;\n ", "\n }\n &&:read-only {\n cursor: default;\n }\n "])), linkColor);
|
|
124
126
|
}, function (props) {
|
|
125
|
-
return !props.readOnly && styled.css(
|
|
127
|
+
return !props.readOnly && styled.css(_templateObject21 || (_templateObject21 = defaultTheme._taggedTemplateLiteral(["\n background: none;\n "])));
|
|
126
128
|
}, function (props) {
|
|
127
129
|
return props.type === 'warning' && props.theme.themeProp('background', '#634E01', '#FFFDE8');
|
|
128
130
|
}, function (props) {
|
|
@@ -132,9 +134,7 @@ var Input = styled__default['default'].input.attrs(defaultTheme.applyDefaultThem
|
|
|
132
134
|
}, function (props) {
|
|
133
135
|
return props.edit && props.theme.themeProp('border-color', 'rgba(39,39,42, 0.7)', 'rgba(228,228,231, 0.3)');
|
|
134
136
|
}, function (props) {
|
|
135
|
-
return props.hasLink && styled.css(
|
|
136
|
-
return props.theme.themeProp('color', props.theme.getColor('gray-200'), props.theme.getColor('emerald-500'));
|
|
137
|
-
});
|
|
137
|
+
return props.hasLink && styled.css(_templateObject22 || (_templateObject22 = defaultTheme._taggedTemplateLiteral(["\n &&:not(:focus),\n &&:read-only {\n text-decoration: underline;\n cursor: default;\n ", "\n }\n "])), linkColor);
|
|
138
138
|
}, function (props) {
|
|
139
139
|
return props.theme.themeProp('background', props.theme.getColor('gray-700'), props.theme.getColor('gray-100'));
|
|
140
140
|
}, function (props) {
|
|
@@ -146,11 +146,11 @@ var Input = styled__default['default'].input.attrs(defaultTheme.applyDefaultThem
|
|
|
146
146
|
}, function (props) {
|
|
147
147
|
return props.type === 'error' && props.theme.themeProp('background', '#901d1d', '#F7D5D0');
|
|
148
148
|
}, function (props) {
|
|
149
|
-
return props.hasLink && styled.css(
|
|
149
|
+
return props.hasLink && styled.css(_templateObject23 || (_templateObject23 = defaultTheme._taggedTemplateLiteral(["\n cursor: pointer;\n\n &&:read-only {\n background: none !important;\n cursor: default;\n }\n "])));
|
|
150
150
|
}, InputIconContainer, function (props) {
|
|
151
|
-
return props.disabled && styled.css(
|
|
151
|
+
return props.disabled && styled.css(_templateObject24 || (_templateObject24 = defaultTheme._taggedTemplateLiteral(["\n background: none !important;\n cursor: not-allowed;\n "])));
|
|
152
152
|
}, function (props) {
|
|
153
|
-
return props.disabled && props.hasLink && styled.css(
|
|
153
|
+
return props.disabled && props.hasLink && styled.css(_templateObject25 || (_templateObject25 = defaultTheme._taggedTemplateLiteral(["\n background: none !important;\n cursor: not-allowed !important;\n "])));
|
|
154
154
|
}, function (props) {
|
|
155
155
|
return !props.readOnly && props.theme.themeProp('background', props.theme.getColor('gray-700'), props.theme.getColor('gray-100'));
|
|
156
156
|
}, function (props) {
|
|
@@ -158,23 +158,22 @@ var Input = styled__default['default'].input.attrs(defaultTheme.applyDefaultThem
|
|
|
158
158
|
}, function (props) {
|
|
159
159
|
return props.type === 'error' && !props.readOnly && props.theme.themeProp('color', props.theme.getColor('gray-200'), props.theme.getColor('gray-700'));
|
|
160
160
|
}, function (props) {
|
|
161
|
-
return !props.readOnly && styled.css(
|
|
161
|
+
return !props.readOnly && styled.css(_templateObject26 || (_templateObject26 = defaultTheme._taggedTemplateLiteral(["\n border-color: ", ";\n "])), function (props) {
|
|
162
162
|
return props.theme.getColor('gray-600');
|
|
163
163
|
});
|
|
164
164
|
}, function (props) {
|
|
165
|
-
return props.type === 'warning' && styled.css(
|
|
165
|
+
return props.type === 'warning' && styled.css(_templateObject27 || (_templateObject27 = defaultTheme._taggedTemplateLiteral(["\n ", "\n ", "\n ", "\n "])), function (props) {
|
|
166
166
|
return props.theme.themeProp('border-color', '#F4E21E', '#F4E21E');
|
|
167
167
|
}, props.theme.themeProp('background', 'white', 'white'), props.theme.themeProp('color', 'black', 'black'));
|
|
168
168
|
}, function (props) {
|
|
169
|
-
return props.type === 'error' && styled.css(
|
|
169
|
+
return props.type === 'error' && styled.css(_templateObject28 || (_templateObject28 = defaultTheme._taggedTemplateLiteral(["\n ", "\n ", "\n ", "\n "])), function (props) {
|
|
170
170
|
return props.theme.themeProp('border-color', '#D83018', '#D83018');
|
|
171
171
|
}, props.theme.themeProp('background', 'white', 'white'), props.theme.themeProp('color', 'black', 'black'));
|
|
172
172
|
}, function (props) {
|
|
173
|
-
return props.bold && styled.css(
|
|
174
|
-
});
|
|
175
|
-
var LinkPopoverContainer = styled__default['default'].div.attrs(defaultTheme.applyDefaultTheme)(_templateObject28 || (_templateObject28 = defaultTheme._taggedTemplateLiteral(["\n padding: 5px 8px;\n\n a {\n font-size: 0.875rem;\n ", ";\n }\n\n svg {\n width: 18px;\n margin-right: 8px;\n }\n"])), function (props) {
|
|
176
|
-
return props.theme.themeProp('color', props.theme.getColor('gray-400'), props.theme.getColor('emerald-500'), 1);
|
|
173
|
+
return props.bold && styled.css(_templateObject29 || (_templateObject29 = defaultTheme._taggedTemplateLiteral(["\n font-size: 1rem;\n font-weight: 500;\n line-height: 1.0625;\n padding-top: 3px;\n padding-bottom: 2px;\n "])));
|
|
177
174
|
});
|
|
175
|
+
var LinkPopoverContainer = styled__default['default'].div.attrs(defaultTheme.applyDefaultTheme)(_templateObject30 || (_templateObject30 = defaultTheme._taggedTemplateLiteral(["\n ", "\n\n svg {\n width: 18px;\n margin-right: 8px;\n }\n"])), commonAnchorTagStyle);
|
|
176
|
+
var StyledLink = styled__default['default'].a.attrs(defaultTheme.applyDefaultTheme)(_templateObject31 || (_templateObject31 = defaultTheme._taggedTemplateLiteral(["\n ", "\n ", "\n"])), commonAnchorTagStyle, linkColor);
|
|
178
177
|
|
|
179
178
|
var CompactTextInput = React__default['default'].forwardRef(function CompactTextInput(_ref, forwardedRef) {
|
|
180
179
|
var label = _ref.label,
|
|
@@ -284,8 +283,8 @@ var CompactTextInput = React__default['default'].forwardRef(function CompactText
|
|
|
284
283
|
placement: "bottom-end",
|
|
285
284
|
trigger: 'mouseenter',
|
|
286
285
|
zIndex: 999999
|
|
287
|
-
}, input())), link &&
|
|
288
|
-
content: React__default['default'].createElement(LinkPopoverContainer, null, React__default['default'].createElement(
|
|
286
|
+
}, input())), link && !readOnly && React__default['default'].createElement("div", null, React__default['default'].createElement(Tooltip.Tooltip, {
|
|
287
|
+
content: React__default['default'].createElement(LinkPopoverContainer, null, activeLinkHandler ? React__default['default'].createElement(StyledLink, {
|
|
289
288
|
href: link,
|
|
290
289
|
target: linkTarget,
|
|
291
290
|
onClick: function onClick(e) {
|
|
@@ -295,12 +294,25 @@ var CompactTextInput = React__default['default'].forwardRef(function CompactText
|
|
|
295
294
|
}
|
|
296
295
|
},
|
|
297
296
|
rel: "noreferrer"
|
|
297
|
+
}, React__default['default'].createElement(SvgLink, null), currentValue) : React__default['default'].createElement(StyledLink, {
|
|
298
|
+
href: link,
|
|
299
|
+
target: linkTarget,
|
|
300
|
+
rel: "noreferrer"
|
|
298
301
|
}, React__default['default'].createElement(SvgLink, null), currentValue)),
|
|
299
302
|
key: "tooltip2",
|
|
300
303
|
placement: "bottom-start",
|
|
301
304
|
zIndex: 999999,
|
|
302
305
|
interactive: true
|
|
303
|
-
}, input())),
|
|
306
|
+
}, input())), link && readOnly && React__default['default'].createElement(StyledLink, {
|
|
307
|
+
href: link,
|
|
308
|
+
rel: "noreferrer",
|
|
309
|
+
style: {
|
|
310
|
+
marginLeft: 3,
|
|
311
|
+
marginTop: -2,
|
|
312
|
+
display: 'inline-block'
|
|
313
|
+
},
|
|
314
|
+
target: linkTarget
|
|
315
|
+
}, currentValue), !readOnly && !disabled && React__default['default'].createElement(React__default['default'].Fragment, null, React__default['default'].createElement(InputIconContainer, {
|
|
304
316
|
type: type
|
|
305
317
|
}, React__default['default'].createElement(editNote.SvgEditNote, null)), lodash.isEmpty(label) && React__default['default'].createElement(InputSuccessContainer, null, type === 'loading' && loadingIcon, type === 'success' && successIcon))));
|
|
306
318
|
});
|
package/inputs/index.js
CHANGED
|
@@ -7,7 +7,7 @@ var Button = require('../Button-49f82b31.js');
|
|
|
7
7
|
var Checkbox = require('../Checkbox-68dc38a8.js');
|
|
8
8
|
var CompactAutocompleteSelect = require('../CompactAutocompleteSelect-96137f48.js');
|
|
9
9
|
var CompactStarRating = require('../CompactStarRating-15c1b812.js');
|
|
10
|
-
var CompactTextInput = require('../CompactTextInput-
|
|
10
|
+
var CompactTextInput = require('../CompactTextInput-c0d45782.js');
|
|
11
11
|
var MultiSelect = require('../MultiSelect-efd60232.js');
|
|
12
12
|
var Radio = require('../Radio-32d0513a.js');
|
|
13
13
|
var TextArea = require('../TextArea-18fbcc9f.js');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var AssetGallery = require('../../AssetGallery-
|
|
3
|
+
var AssetGallery = require('../../AssetGallery-d0c099e8.js');
|
|
4
4
|
require('../../defaultTheme-ea44e34a.js');
|
|
5
5
|
require('styled-components');
|
|
6
6
|
require('lodash');
|
|
@@ -38,7 +38,7 @@ require('react-select-async-paginate');
|
|
|
38
38
|
require('../../react-select-creatable.esm-2f23d6c6.js');
|
|
39
39
|
require('react-dom');
|
|
40
40
|
require('../../CompactStarRating-15c1b812.js');
|
|
41
|
-
require('../../CompactTextInput-
|
|
41
|
+
require('../../CompactTextInput-c0d45782.js');
|
|
42
42
|
require('../../MultiSelect-efd60232.js');
|
|
43
43
|
require('../../Radio-32d0513a.js');
|
|
44
44
|
require('../../TextArea-18fbcc9f.js');
|
package/widgets/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var AssetGallery = require('../AssetGallery-
|
|
5
|
+
var AssetGallery = require('../AssetGallery-d0c099e8.js');
|
|
6
6
|
var ContextMenu = require('../ContextMenu-4ec3d9f3.js');
|
|
7
7
|
var AssetPreviewTopBar = require('../AssetPreviewTopBar-912c3469.js');
|
|
8
8
|
var Instructions = require('../Instructions-2babb8a3.js');
|
|
@@ -42,7 +42,7 @@ require('react-select-async-paginate');
|
|
|
42
42
|
require('../react-select-creatable.esm-2f23d6c6.js');
|
|
43
43
|
require('react-dom');
|
|
44
44
|
require('../CompactStarRating-15c1b812.js');
|
|
45
|
-
require('../CompactTextInput-
|
|
45
|
+
require('../CompactTextInput-c0d45782.js');
|
|
46
46
|
require('../MultiSelect-efd60232.js');
|
|
47
47
|
require('../Radio-32d0513a.js');
|
|
48
48
|
require('../TextArea-18fbcc9f.js');
|