@commonsku/styles 1.16.5 → 1.16.6
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/index.d.ts +57 -11
- package/dist/index.es.js +174 -291
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +174 -289
- package/dist/index.js.map +1 -1
- package/dist/styles/Artwork.d.ts +3 -3
- package/dist/styles/Artwork.d.ts.map +1 -1
- package/dist/styles/CollapsibleV2.d.ts +1 -0
- package/dist/styles/CollapsibleV2.d.ts.map +1 -1
- package/dist/styles/Csku.d.ts +11 -0
- package/dist/styles/Csku.d.ts.map +1 -1
- package/dist/styles/Img.d.ts +11 -13
- package/dist/styles/Img.d.ts.map +1 -1
- package/dist/styles/Input.d.ts +2 -0
- package/dist/styles/Input.d.ts.map +1 -1
- package/dist/styles/InputStepper.d.ts +19 -0
- package/dist/styles/InputStepper.d.ts.map +1 -1
- package/dist/styles/Popup.d.ts +4 -0
- package/dist/styles/Popup.d.ts.map +1 -1
- package/dist/styles/Tabs.d.ts +7 -6
- package/dist/styles/Tabs.d.ts.map +1 -1
- package/dist/styles/hooks/useClickOutside.d.ts.map +1 -1
- package/dist/styles/index.d.ts +2 -1
- package/dist/styles/index.d.ts.map +1 -1
- package/dist/utils/index.d.ts +4 -0
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/styled.d.ts +13 -0
- package/dist/utils/styled.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -372,7 +372,19 @@ var getUnit = function (measurement) {
|
|
|
372
372
|
var stripUnit = function (measurement) {
|
|
373
373
|
return (typeof measurement === "number") ? measurement : parseFloat(measurement);
|
|
374
374
|
};
|
|
375
|
-
var parseMeasurement = function (measurement) { return stripUnit(measurement) + getUnit(measurement); };
|
|
375
|
+
var parseMeasurement = function (measurement) { return stripUnit(measurement) + getUnit(measurement); };
|
|
376
|
+
var wait = function (time) {
|
|
377
|
+
var timeoutId;
|
|
378
|
+
var promise = new Promise(function (resolve) {
|
|
379
|
+
timeoutId = setTimeout(resolve, time);
|
|
380
|
+
});
|
|
381
|
+
return {
|
|
382
|
+
promise: promise,
|
|
383
|
+
cancel: function () {
|
|
384
|
+
clearTimeout(timeoutId);
|
|
385
|
+
},
|
|
386
|
+
};
|
|
387
|
+
};
|
|
376
388
|
|
|
377
389
|
var SharedStyles = styled.css(templateObject_1$1 || (templateObject_1$1 = __makeTemplateObject(["\n box-sizing: border-box;\n ", "\n"], ["\n box-sizing: border-box;\n ", "\n"])), function (p) { return _.map(_.pick(p, _.keys(SHARED_STYLE_MAPS)), function (v, k) {
|
|
378
390
|
return _.isUndefined(v) ? '' : SHARED_STYLE_MAPS[k](v);
|
|
@@ -2841,6 +2853,75 @@ var ButtonIcon = React__default.forwardRef(function (props, ref) {
|
|
|
2841
2853
|
});
|
|
2842
2854
|
var templateObject_1$d, templateObject_2$8;
|
|
2843
2855
|
|
|
2856
|
+
var LOADING_IMG_SRC = '/images/gears.gif';
|
|
2857
|
+
var NOT_FOUND_IMG_SRC = '/images/404.png';
|
|
2858
|
+
var DEFAULT_MAX_ATTEMPTS = 3;
|
|
2859
|
+
var DEFAULT_ATTEMPT_INTERVAL = 1000;
|
|
2860
|
+
// fetch image src, and return intervals.length times on error. wait intervals[n] ms on nth retry
|
|
2861
|
+
var fetchImage = function (src, intervals, onRetry) {
|
|
2862
|
+
var image = new Image();
|
|
2863
|
+
var cancel = function () {
|
|
2864
|
+
image.src = '';
|
|
2865
|
+
};
|
|
2866
|
+
var promise = new Promise(function (resolve, reject) {
|
|
2867
|
+
image.src = src;
|
|
2868
|
+
image.onload = resolve;
|
|
2869
|
+
image.onerror = reject;
|
|
2870
|
+
}).catch(function (error) {
|
|
2871
|
+
if (_.isEmpty(intervals)) {
|
|
2872
|
+
throw error;
|
|
2873
|
+
}
|
|
2874
|
+
else if (image.src === '') {
|
|
2875
|
+
return error;
|
|
2876
|
+
}
|
|
2877
|
+
else {
|
|
2878
|
+
onRetry && onRetry(error);
|
|
2879
|
+
var w = wait(intervals[0]);
|
|
2880
|
+
cancel = w.cancel;
|
|
2881
|
+
return w.promise.then(function () {
|
|
2882
|
+
var result = fetchImage(src, _.tail(intervals), onRetry);
|
|
2883
|
+
cancel = result.cancel;
|
|
2884
|
+
return result.promise;
|
|
2885
|
+
});
|
|
2886
|
+
}
|
|
2887
|
+
});
|
|
2888
|
+
return {
|
|
2889
|
+
promise: promise,
|
|
2890
|
+
cancel: function () {
|
|
2891
|
+
// use this to cancel next fetch
|
|
2892
|
+
cancel();
|
|
2893
|
+
}
|
|
2894
|
+
};
|
|
2895
|
+
};
|
|
2896
|
+
var Img = React__default.forwardRef(function (_a, ref) {
|
|
2897
|
+
var src = _a.src, _b = _a.alt, alt = _b === void 0 ? "" : _b, _c = _a.max_attempts, max_attempts = _c === void 0 ? DEFAULT_MAX_ATTEMPTS : _c, _d = _a.attempt_interval, attempt_interval = _d === void 0 ? DEFAULT_ATTEMPT_INTERVAL : _d, _e = _a.onRetry, onRetry = _e === void 0 ? null : _e, _f = _a.onFailed, onFailed = _f === void 0 ? null : _f, props = __rest(_a, ["src", "alt", "max_attempts", "attempt_interval", "onRetry", "onFailed"]);
|
|
2898
|
+
var _g = React.useState(true), loading = _g[0], setLoading = _g[1];
|
|
2899
|
+
var _h = React.useState(null), error = _h[0], setError = _h[1];
|
|
2900
|
+
var effectRef = React.useRef({});
|
|
2901
|
+
_.assign(effectRef.current, { onRetry: onRetry, onFailed: onFailed });
|
|
2902
|
+
React.useEffect(function () {
|
|
2903
|
+
var _a = effectRef.current, onRetry = _a.onRetry, onFailed = _a.onFailed, cancel = _a.cancel;
|
|
2904
|
+
// cancel previous fetch before start new fetch
|
|
2905
|
+
cancel && cancel();
|
|
2906
|
+
var result = fetchImage(src !== null && src !== void 0 ? src : "", _.map(_.range(max_attempts), function (i) {
|
|
2907
|
+
return attempt_interval * (i + 1) * (i + 1);
|
|
2908
|
+
}), onRetry);
|
|
2909
|
+
effectRef.current.cancel = result.cancel;
|
|
2910
|
+
result.promise
|
|
2911
|
+
.then(function () {
|
|
2912
|
+
setError(null);
|
|
2913
|
+
})
|
|
2914
|
+
.catch(function (e) {
|
|
2915
|
+
onFailed && onFailed(e);
|
|
2916
|
+
setError(e);
|
|
2917
|
+
})
|
|
2918
|
+
.finally(function () {
|
|
2919
|
+
setLoading(false);
|
|
2920
|
+
});
|
|
2921
|
+
}, [src, attempt_interval, max_attempts]);
|
|
2922
|
+
return React__default.createElement("img", __assign({ ref: ref, alt: alt, src: loading ? LOADING_IMG_SRC : (error ? NOT_FOUND_IMG_SRC : src) }, props));
|
|
2923
|
+
});
|
|
2924
|
+
|
|
2844
2925
|
var Label = styled__default.label(templateObject_1$e || (templateObject_1$e = __makeTemplateObject(["\n &&& {\n font-family: 'skufont-medium', sans-serif;\n color: ", ";\n font-size: 1rem;\n font-weight: 400;\n width: 100%;\n ", "\n }\n"], ["\n &&& {\n font-family: 'skufont-medium', sans-serif;\n color: ", ";\n font-size: 1rem;\n font-weight: 400;\n width: 100%;\n ", "\n }\n"])), function (props) { return props.error ? getThemeColor(props, 'special3') : getThemeColor(props, 'textlabel'); }, SharedStyles);
|
|
2845
2926
|
var templateObject_1$e;
|
|
2846
2927
|
|
|
@@ -2938,10 +3019,10 @@ var LabeledInput = React__default.forwardRef(function (_a, ref) {
|
|
|
2938
3019
|
React__default.createElement(Input, __assign({ ref: ref, name: name, required: required }, props))));
|
|
2939
3020
|
});
|
|
2940
3021
|
var LabeledIconInput = React__default.forwardRef(function (_a, ref) {
|
|
2941
|
-
var label = _a.label, name = _a.name, value = _a.value, defaultValue = _a.defaultValue, placeholder = _a.placeholder, required = _a.required, _b = _a.labelOnTop, labelOnTop = _b === void 0 ? false : _b, Icon = _a.Icon, noMargin = _a.noMargin, error = _a.error, disabled = _a.disabled, onFocus = _a.onFocus, onChange = _a.onChange, onBlur = _a.onBlur, _c = _a.iconPosition, iconPosition = _c === void 0 ? 'left' : _c, _d = _a.iconLabelStyles, iconLabelStyles =
|
|
3022
|
+
var label = _a.label, name = _a.name, value = _a.value, defaultValue = _a.defaultValue, placeholder = _a.placeholder, required = _a.required, _b = _a.labelOnTop, labelOnTop = _b === void 0 ? false : _b, Icon = _a.Icon, noMargin = _a.noMargin, error = _a.error, disabled = _a.disabled, onFocus = _a.onFocus, onChange = _a.onChange, onBlur = _a.onBlur, _c = _a.iconPosition, iconPosition = _c === void 0 ? 'left' : _c, _d = _a.iconColor, iconColor = _d === void 0 ? '#fff' : _d, _e = _a.iconLabelStyles, iconLabelStyles = _e === void 0 ? {} : _e, _f = _a.containerStyle, containerStyle = _f === void 0 ? {} : _f, props = __rest(_a, ["label", "name", "value", "defaultValue", "placeholder", "required", "labelOnTop", "Icon", "noMargin", "error", "disabled", "onFocus", "onChange", "onBlur", "iconPosition", "iconColor", "iconLabelStyles", "containerStyle"]);
|
|
2942
3023
|
var containerRef = React.useRef(null);
|
|
2943
|
-
var
|
|
2944
|
-
var
|
|
3024
|
+
var _g = React.useState(false), isActive = _g[0], setIsActive = _g[1];
|
|
3025
|
+
var _h = React.useState(false), isHovering = _h[0], setIsHovering = _h[1];
|
|
2945
3026
|
var activeBorderColor = getThemeColor(props, 'input.active.border', colors.input.active.border);
|
|
2946
3027
|
var activeTextColor = colors.input.active.text;
|
|
2947
3028
|
var errorBorderColor = getThemeColor(props, 'input.error.border', colors.input.error.border);
|
|
@@ -2966,8 +3047,8 @@ var LabeledIconInput = React__default.forwardRef(function (_a, ref) {
|
|
|
2966
3047
|
};
|
|
2967
3048
|
var NewIcon = React__default.useMemo(function () {
|
|
2968
3049
|
var iconProps = {
|
|
2969
|
-
fill:
|
|
2970
|
-
color:
|
|
3050
|
+
fill: iconColor,
|
|
3051
|
+
color: iconColor,
|
|
2971
3052
|
};
|
|
2972
3053
|
if (error) {
|
|
2973
3054
|
iconProps['fill'] = errorBorderColor;
|
|
@@ -2986,7 +3067,7 @@ var LabeledIconInput = React__default.forwardRef(function (_a, ref) {
|
|
|
2986
3067
|
iconProps['color'] = colors.input.icon.active.fill;
|
|
2987
3068
|
}
|
|
2988
3069
|
return React__default.cloneElement(Icon, iconProps);
|
|
2989
|
-
}, [Icon, error, disabled, errorBorderColor, isActive, isHovering]);
|
|
3070
|
+
}, [Icon, error, disabled, errorBorderColor, isActive, isHovering, iconColor]);
|
|
2990
3071
|
var onClickOutside = function (e) {
|
|
2991
3072
|
if (containerRef.current && !containerRef.current.contains(e.target)) {
|
|
2992
3073
|
setIsActive(false);
|
|
@@ -2998,7 +3079,7 @@ var LabeledIconInput = React__default.forwardRef(function (_a, ref) {
|
|
|
2998
3079
|
document$1.removeEventListener('click', onClickOutside);
|
|
2999
3080
|
};
|
|
3000
3081
|
}, []);
|
|
3001
|
-
return (React__default.createElement("div",
|
|
3082
|
+
return (React__default.createElement("div", { style: containerStyle },
|
|
3002
3083
|
label ? React__default.createElement(Label, { htmlFor: name, style: __assign(__assign({}, (!labelOnTop ? {} : { display: 'block' })), { fontFamily: "'skufont-medium', sans-serif", lineHeight: '24px', fontSize: '16px', color: getThemeColor(props, 'neutrals.100') }) },
|
|
3003
3084
|
label,
|
|
3004
3085
|
" ",
|
|
@@ -3427,7 +3508,10 @@ var templateObject_1$m, templateObject_2$d, templateObject_3$6, templateObject_4
|
|
|
3427
3508
|
|
|
3428
3509
|
var useClickOutside = function (props) {
|
|
3429
3510
|
var ref = props.ref, _a = props.eventType, eventType = _a === void 0 ? 'mousedown' : _a, onClick = props.onClick, onCleanup = props.onCleanup;
|
|
3511
|
+
var effectRef = React.useRef({});
|
|
3512
|
+
_.assign(effectRef.current, { eventType: eventType, onCleanup: onCleanup, ref: ref, onClick: onClick });
|
|
3430
3513
|
React.useEffect(function () {
|
|
3514
|
+
var _a = effectRef.current, eventType = _a.eventType, onCleanup = _a.onCleanup, ref = _a.ref, onClick = _a.onClick;
|
|
3431
3515
|
function handleClickOutside(e) {
|
|
3432
3516
|
if (ref.current && !ref.current.contains(e.target)) {
|
|
3433
3517
|
onClick && onClick(e);
|
|
@@ -3689,7 +3773,7 @@ var PopupContainer = function (_a) {
|
|
|
3689
3773
|
return ReactDOM.createPortal(children, ref.current);
|
|
3690
3774
|
};
|
|
3691
3775
|
var Popup = React__default.forwardRef(function (_a, forwardedRef) {
|
|
3692
|
-
var header = _a.header, _b = _a.noHeader, noHeader = _b === void 0 ? false : _b, title = _a.title, controls = _a.controls, children = _a.children, onClose = _a.onClose, _c = _a.noCloseButton, noCloseButton = _c === void 0 ? false : _c, _d = _a.closeOnEsc, closeOnEsc = _d === void 0 ? true : _d, _e = _a.closeOnClickOutside, closeOnClickOutside = _e === void 0 ? false : _e, overlayZIndex = _a.overlayZIndex, props = __rest(_a, ["header", "noHeader", "title", "controls", "children", "onClose", "noCloseButton", "closeOnEsc", "closeOnClickOutside", "overlayZIndex"]);
|
|
3776
|
+
var header = _a.header, _b = _a.noHeader, noHeader = _b === void 0 ? false : _b, title = _a.title, controls = _a.controls, children = _a.children, onClose = _a.onClose, _c = _a.noCloseButton, noCloseButton = _c === void 0 ? false : _c, _d = _a.closeOnEsc, closeOnEsc = _d === void 0 ? true : _d, _e = _a.closeOnClickOutside, closeOnClickOutside = _e === void 0 ? false : _e, overlayZIndex = _a.overlayZIndex, popupClassName = _a.popupClassName, contentClassName = _a.contentClassName, props = __rest(_a, ["header", "noHeader", "title", "controls", "children", "onClose", "noCloseButton", "closeOnEsc", "closeOnClickOutside", "overlayZIndex", "popupClassName", "contentClassName"]);
|
|
3693
3777
|
var ref = useFallbackRef(forwardedRef);
|
|
3694
3778
|
useClickOutside({
|
|
3695
3779
|
ref: ref,
|
|
@@ -3717,14 +3801,14 @@ var Popup = React__default.forwardRef(function (_a, forwardedRef) {
|
|
|
3717
3801
|
}, [closeOnClickOutside, closeOnEsc, onClose]);
|
|
3718
3802
|
return React__default.createElement(PopupContainer, null,
|
|
3719
3803
|
React__default.createElement(Overlay, { zIndex: overlayZIndex },
|
|
3720
|
-
React__default.createElement(PopupWindow, __assign({ className: "popup" }, props, { ref: ref }),
|
|
3804
|
+
React__default.createElement(PopupWindow, __assign({ className: "popup" + (popupClassName ? " ".concat(popupClassName) : '') }, props, { ref: ref }),
|
|
3721
3805
|
noHeader ? null :
|
|
3722
3806
|
header ? header : (React__default.createElement(PopupHeader, { className: "popup-header", xsStyle: "flex-wrap: wrap-reverse;", smStyle: "flex-wrap: wrap;" },
|
|
3723
3807
|
React__default.createElement(Col, { style: { textAlign: 'left', alignSelf: 'center' } },
|
|
3724
3808
|
React__default.createElement("span", { className: "title" }, title)),
|
|
3725
3809
|
React__default.createElement(Col, { style: { textAlign: 'right', alignSelf: 'center' } }, noCloseButton ? null :
|
|
3726
3810
|
controls || React__default.createElement(Button, { onClick: onClose }, "Close")))),
|
|
3727
|
-
React__default.createElement("div", { className: "popup-content" }, children))));
|
|
3811
|
+
React__default.createElement("div", { className: "popup-content" + (contentClassName ? " ".concat(contentClassName) : '') }, children))));
|
|
3728
3812
|
});
|
|
3729
3813
|
var ShowPopup = function (_a) {
|
|
3730
3814
|
var _b = _a.autoOpen, autoOpen = _b === void 0 ? false : _b, PopupComponent = _a.popup, render = _a.render, _c = _a.closeOnEsc, closeOnEsc = _c === void 0 ? true : _c, _d = _a.closeOnClickOutside, closeOnClickOutside = _d === void 0 ? false : _d, props = __rest(_a, ["autoOpen", "popup", "render", "closeOnEsc", "closeOnClickOutside"]);
|
|
@@ -4002,10 +4086,10 @@ var Tabs = /** @class */ (function (_super) {
|
|
|
4002
4086
|
};
|
|
4003
4087
|
Tabs.prototype.render = function () {
|
|
4004
4088
|
var _this = this;
|
|
4005
|
-
var _a = this.props, tabs = _a.tabs, size = _a.size, padded = _a.padded, props = __rest(_a, ["tabs", "size", "padded"]);
|
|
4089
|
+
var _a = this.props, tabs = _a.tabs, size = _a.size, padded = _a.padded, variant = _a.variant, props = __rest(_a, ["tabs", "size", "padded", "variant"]);
|
|
4006
4090
|
var selectedTab = this.getTab(tabs, this.state.selectedTabIndex);
|
|
4007
4091
|
return React__default.createElement("div", __assign({}, props),
|
|
4008
|
-
React__default.createElement(TabBar, { padded: padded === true }, tabs.map(function (tab, index) { return React__default.createElement(Tab, { key: index, size: size, className: index === _this.state.selectedTabIndex ? 'selected' : '', selected: index === _this.state.selectedTabIndex, onClick: function (e) {
|
|
4092
|
+
React__default.createElement(TabBar, { padded: padded === true }, tabs.map(function (tab, index) { return React__default.createElement(Tab, { key: index, size: tab.size || size, variant: tab.variant || variant, className: index === _this.state.selectedTabIndex ? 'selected' : '', selected: index === _this.state.selectedTabIndex, onClick: function (e) {
|
|
4009
4093
|
_this.setState({ selectedTabIndex: index });
|
|
4010
4094
|
var callback = tabs[index].onClick;
|
|
4011
4095
|
if (callback) {
|
|
@@ -4167,227 +4251,6 @@ var Product = function (props) {
|
|
|
4167
4251
|
};
|
|
4168
4252
|
var templateObject_1$u, templateObject_2$j, templateObject_3$b, templateObject_4$8;
|
|
4169
4253
|
|
|
4170
|
-
function _defineProperty(obj, key, value) {
|
|
4171
|
-
if (key in obj) {
|
|
4172
|
-
Object.defineProperty(obj, key, {
|
|
4173
|
-
value: value,
|
|
4174
|
-
enumerable: true,
|
|
4175
|
-
configurable: true,
|
|
4176
|
-
writable: true
|
|
4177
|
-
});
|
|
4178
|
-
} else {
|
|
4179
|
-
obj[key] = value;
|
|
4180
|
-
}
|
|
4181
|
-
return obj;
|
|
4182
|
-
}
|
|
4183
|
-
|
|
4184
|
-
function ownKeys(object, enumerableOnly) {
|
|
4185
|
-
var keys = Object.keys(object);
|
|
4186
|
-
if (Object.getOwnPropertySymbols) {
|
|
4187
|
-
var symbols = Object.getOwnPropertySymbols(object);
|
|
4188
|
-
enumerableOnly && (symbols = symbols.filter(function (sym) {
|
|
4189
|
-
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
4190
|
-
})), keys.push.apply(keys, symbols);
|
|
4191
|
-
}
|
|
4192
|
-
return keys;
|
|
4193
|
-
}
|
|
4194
|
-
function _objectSpread2(target) {
|
|
4195
|
-
for (var i = 1; i < arguments.length; i++) {
|
|
4196
|
-
var source = null != arguments[i] ? arguments[i] : {};
|
|
4197
|
-
i % 2 ? ownKeys(Object(source), !0).forEach(function (key) {
|
|
4198
|
-
_defineProperty(target, key, source[key]);
|
|
4199
|
-
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) {
|
|
4200
|
-
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
4201
|
-
});
|
|
4202
|
-
}
|
|
4203
|
-
return target;
|
|
4204
|
-
}
|
|
4205
|
-
|
|
4206
|
-
function _classCallCheck(instance, Constructor) {
|
|
4207
|
-
if (!(instance instanceof Constructor)) {
|
|
4208
|
-
throw new TypeError("Cannot call a class as a function");
|
|
4209
|
-
}
|
|
4210
|
-
}
|
|
4211
|
-
|
|
4212
|
-
function _defineProperties(target, props) {
|
|
4213
|
-
for (var i = 0; i < props.length; i++) {
|
|
4214
|
-
var descriptor = props[i];
|
|
4215
|
-
descriptor.enumerable = descriptor.enumerable || false;
|
|
4216
|
-
descriptor.configurable = true;
|
|
4217
|
-
if ("value" in descriptor) descriptor.writable = true;
|
|
4218
|
-
Object.defineProperty(target, descriptor.key, descriptor);
|
|
4219
|
-
}
|
|
4220
|
-
}
|
|
4221
|
-
function _createClass(Constructor, protoProps, staticProps) {
|
|
4222
|
-
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
4223
|
-
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
4224
|
-
Object.defineProperty(Constructor, "prototype", {
|
|
4225
|
-
writable: false
|
|
4226
|
-
});
|
|
4227
|
-
return Constructor;
|
|
4228
|
-
}
|
|
4229
|
-
|
|
4230
|
-
function _assertThisInitialized(self) {
|
|
4231
|
-
if (self === void 0) {
|
|
4232
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
4233
|
-
}
|
|
4234
|
-
return self;
|
|
4235
|
-
}
|
|
4236
|
-
|
|
4237
|
-
function _setPrototypeOf(o, p) {
|
|
4238
|
-
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
|
|
4239
|
-
o.__proto__ = p;
|
|
4240
|
-
return o;
|
|
4241
|
-
};
|
|
4242
|
-
return _setPrototypeOf(o, p);
|
|
4243
|
-
}
|
|
4244
|
-
|
|
4245
|
-
function _inherits(subClass, superClass) {
|
|
4246
|
-
if (typeof superClass !== "function" && superClass !== null) {
|
|
4247
|
-
throw new TypeError("Super expression must either be null or a function");
|
|
4248
|
-
}
|
|
4249
|
-
subClass.prototype = Object.create(superClass && superClass.prototype, {
|
|
4250
|
-
constructor: {
|
|
4251
|
-
value: subClass,
|
|
4252
|
-
writable: true,
|
|
4253
|
-
configurable: true
|
|
4254
|
-
}
|
|
4255
|
-
});
|
|
4256
|
-
Object.defineProperty(subClass, "prototype", {
|
|
4257
|
-
writable: false
|
|
4258
|
-
});
|
|
4259
|
-
if (superClass) _setPrototypeOf(subClass, superClass);
|
|
4260
|
-
}
|
|
4261
|
-
|
|
4262
|
-
function _getPrototypeOf(o) {
|
|
4263
|
-
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) {
|
|
4264
|
-
return o.__proto__ || Object.getPrototypeOf(o);
|
|
4265
|
-
};
|
|
4266
|
-
return _getPrototypeOf(o);
|
|
4267
|
-
}
|
|
4268
|
-
|
|
4269
|
-
function _isNativeReflectConstruct() {
|
|
4270
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
4271
|
-
if (Reflect.construct.sham) return false;
|
|
4272
|
-
if (typeof Proxy === "function") return true;
|
|
4273
|
-
try {
|
|
4274
|
-
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
|
|
4275
|
-
return true;
|
|
4276
|
-
} catch (e) {
|
|
4277
|
-
return false;
|
|
4278
|
-
}
|
|
4279
|
-
}
|
|
4280
|
-
|
|
4281
|
-
function _typeof(obj) {
|
|
4282
|
-
"@babel/helpers - typeof";
|
|
4283
|
-
|
|
4284
|
-
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) {
|
|
4285
|
-
return typeof obj;
|
|
4286
|
-
} : function (obj) {
|
|
4287
|
-
return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
|
4288
|
-
}, _typeof(obj);
|
|
4289
|
-
}
|
|
4290
|
-
|
|
4291
|
-
function _possibleConstructorReturn(self, call) {
|
|
4292
|
-
if (call && (_typeof(call) === "object" || typeof call === "function")) {
|
|
4293
|
-
return call;
|
|
4294
|
-
} else if (call !== void 0) {
|
|
4295
|
-
throw new TypeError("Derived constructors may only return object or undefined");
|
|
4296
|
-
}
|
|
4297
|
-
return _assertThisInitialized(self);
|
|
4298
|
-
}
|
|
4299
|
-
|
|
4300
|
-
function _createSuper(Derived) {
|
|
4301
|
-
var hasNativeReflectConstruct = _isNativeReflectConstruct();
|
|
4302
|
-
return function _createSuperInternal() {
|
|
4303
|
-
var Super = _getPrototypeOf(Derived),
|
|
4304
|
-
result;
|
|
4305
|
-
if (hasNativeReflectConstruct) {
|
|
4306
|
-
var NewTarget = _getPrototypeOf(this).constructor;
|
|
4307
|
-
result = Reflect.construct(Super, arguments, NewTarget);
|
|
4308
|
-
} else {
|
|
4309
|
-
result = Super.apply(this, arguments);
|
|
4310
|
-
}
|
|
4311
|
-
return _possibleConstructorReturn(this, result);
|
|
4312
|
-
};
|
|
4313
|
-
}
|
|
4314
|
-
|
|
4315
|
-
var LOADING_IMG_SRC = '/images/gears.gif';
|
|
4316
|
-
var NOT_FOUND_IMG_SRC = '/images/404.png';
|
|
4317
|
-
var DEFAULT_MAX_ATTEMPTS = 3;
|
|
4318
|
-
var DEFAULT_ATTEMPT_INTERVAL = 10000;
|
|
4319
|
-
var Img = /*#__PURE__*/function (_Component) {
|
|
4320
|
-
_inherits(Img, _Component);
|
|
4321
|
-
var _super = _createSuper(Img);
|
|
4322
|
-
function Img(props) {
|
|
4323
|
-
var _this;
|
|
4324
|
-
_classCallCheck(this, Img);
|
|
4325
|
-
_this = _super.call(this, props);
|
|
4326
|
-
_this.state = {
|
|
4327
|
-
src: _this.props.src,
|
|
4328
|
-
attempts: 0
|
|
4329
|
-
};
|
|
4330
|
-
_this.onError = _this.onError.bind(_assertThisInitialized(_this));
|
|
4331
|
-
return _this;
|
|
4332
|
-
}
|
|
4333
|
-
_createClass(Img, [{
|
|
4334
|
-
key: "UNSAFE_componentWillReceiveProps",
|
|
4335
|
-
value: function UNSAFE_componentWillReceiveProps(nextProps) {
|
|
4336
|
-
if (nextProps.src !== this.props.src) {
|
|
4337
|
-
this.setState({
|
|
4338
|
-
src: nextProps.src,
|
|
4339
|
-
attempts: 0
|
|
4340
|
-
});
|
|
4341
|
-
}
|
|
4342
|
-
}
|
|
4343
|
-
}, {
|
|
4344
|
-
key: "componentWillUnmount",
|
|
4345
|
-
value: function componentWillUnmount() {
|
|
4346
|
-
if (this.retryId) {
|
|
4347
|
-
clearTimeout(this.retryId);
|
|
4348
|
-
}
|
|
4349
|
-
}
|
|
4350
|
-
}, {
|
|
4351
|
-
key: "onError",
|
|
4352
|
-
value: function onError() {
|
|
4353
|
-
var _this2 = this;
|
|
4354
|
-
if (NOT_FOUND_IMG_SRC === this.state.src) {
|
|
4355
|
-
return;
|
|
4356
|
-
}
|
|
4357
|
-
var max_attempts = this.props.max_attempts || DEFAULT_MAX_ATTEMPTS;
|
|
4358
|
-
var attempt_interval = this.props.attempt_interval || DEFAULT_ATTEMPT_INTERVAL;
|
|
4359
|
-
if (this.state.attempts >= max_attempts) {
|
|
4360
|
-
this.setState({
|
|
4361
|
-
src: NOT_FOUND_IMG_SRC
|
|
4362
|
-
});
|
|
4363
|
-
return;
|
|
4364
|
-
}
|
|
4365
|
-
this.setState({
|
|
4366
|
-
src: LOADING_IMG_SRC,
|
|
4367
|
-
attempts: this.state.attempts + 1
|
|
4368
|
-
});
|
|
4369
|
-
this.retryId = setTimeout(function () {
|
|
4370
|
-
_this2.setState({
|
|
4371
|
-
src: _this2.props.src
|
|
4372
|
-
});
|
|
4373
|
-
}, attempt_interval * (this.state.attempts + 1) * (this.state.attempts + 1));
|
|
4374
|
-
}
|
|
4375
|
-
}, {
|
|
4376
|
-
key: "render",
|
|
4377
|
-
value: function render() {
|
|
4378
|
-
var props = _objectSpread2(_objectSpread2({
|
|
4379
|
-
onError: this.onError
|
|
4380
|
-
}, this.props), {}, {
|
|
4381
|
-
src: this.state.src
|
|
4382
|
-
});
|
|
4383
|
-
return /*#__PURE__*/React__default.createElement("img", Object.assign({
|
|
4384
|
-
alt: ""
|
|
4385
|
-
}, props));
|
|
4386
|
-
}
|
|
4387
|
-
}]);
|
|
4388
|
-
return Img;
|
|
4389
|
-
}(React.Component);
|
|
4390
|
-
|
|
4391
4254
|
var ArtworkName = styled__default.div(templateObject_1$v || (templateObject_1$v = __makeTemplateObject(["\n font-size: .9rem;\n font-weight: bold;\n"], ["\n font-size: .9rem;\n font-weight: bold;\n"])));
|
|
4392
4255
|
var UpdateDate = styled__default.div(templateObject_2$k || (templateObject_2$k = __makeTemplateObject(["\n font-size: ", ";\n color: ", ";\n"], ["\n font-size: ", ";\n color: ", ";\n"])), function (props) { return getThemeFontSize(props, 'tiny'); }, function (props) { return getThemeColor(props, 'textbody', colors.textbody); });
|
|
4393
4256
|
var ArtworkControls = styled__default.div(templateObject_3$c || (templateObject_3$c = __makeTemplateObject(["\n text-align: right;\n position: absolute;\n top: 0;\n left: 0;\n z-index: 2;\n padding: 10px;\n width: 100%;\n box-sizing: border-box;\n opacity: 0;\n transition: .3s all;\n"], ["\n text-align: right;\n position: absolute;\n top: 0;\n left: 0;\n z-index: 2;\n padding: 10px;\n width: 100%;\n box-sizing: border-box;\n opacity: 0;\n transition: .3s all;\n"])));
|
|
@@ -4403,12 +4266,12 @@ function extension(filename) {
|
|
|
4403
4266
|
return filename.substring(filename.lastIndexOf('.') + 1, filename.length);
|
|
4404
4267
|
}
|
|
4405
4268
|
var Artwork = function (_a) {
|
|
4406
|
-
var _b = _a.inputProps, inputProps = _b === void 0 ? {} : _b, props = __rest(_a, ["inputProps"]);
|
|
4269
|
+
var _b = _a.inputProps, inputProps = _b === void 0 ? {} : _b, onError = _a.onError, props = __rest(_a, ["inputProps", "onError"]);
|
|
4407
4270
|
/* TODO: 20 is arbitrary; ideally a component should know its width, and that should be used to compute the max length */
|
|
4408
4271
|
return React__default.createElement(ArtworkWrapper, { cssHeight: props.cssHeight ? props.cssHeight : props.picture ? 17 : 0, onClick: !props.picture && props.onClick ? props.onClick : undefined },
|
|
4409
4272
|
props.picture ?
|
|
4410
4273
|
React__default.createElement(ArtworkPicture, { onClick: function (e) { return props.onClick ? props.onClick(e) : null; }, cssHeight: props.cssHeight ? props.cssHeight : 17 },
|
|
4411
|
-
React__default.createElement(Img, { src: props.picture, style: { objectFit: "contain", width: "100%", height: "100%" }, onError:
|
|
4274
|
+
React__default.createElement(Img, { src: props.picture, style: { objectFit: "contain", width: "100%", height: "100%" }, onError: onError }))
|
|
4412
4275
|
:
|
|
4413
4276
|
React__default.createElement(IconDoc, { ext: extension(props.name), style: { width: "3vw" } }),
|
|
4414
4277
|
!props.edit ?
|
|
@@ -5211,6 +5074,14 @@ function _objectWithoutPropertiesLoose(source, excluded) {
|
|
|
5211
5074
|
return target;
|
|
5212
5075
|
}
|
|
5213
5076
|
|
|
5077
|
+
function _setPrototypeOf(o, p) {
|
|
5078
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
|
|
5079
|
+
o.__proto__ = p;
|
|
5080
|
+
return o;
|
|
5081
|
+
};
|
|
5082
|
+
return _setPrototypeOf(o, p);
|
|
5083
|
+
}
|
|
5084
|
+
|
|
5214
5085
|
function _inheritsLoose(subClass, superClass) {
|
|
5215
5086
|
subClass.prototype = Object.create(superClass.prototype);
|
|
5216
5087
|
subClass.prototype.constructor = subClass;
|
|
@@ -6081,6 +5952,15 @@ var InputStepperOuterContainer = styled__default.div(templateObject_1$M || (temp
|
|
|
6081
5952
|
var InputStepperInnerContainer = styled__default.div(templateObject_2$y || (templateObject_2$y = __makeTemplateObject(["\n &&&{\n display: flex;\n width: 100%;\n flex-direction: row;\n justify-content: space-between;\n border-radius: 5px;\n background-color: white;\n ", "\n ", "\n }\n"], ["\n &&&{\n display: flex;\n width: 100%;\n flex-direction: row;\n justify-content: space-between;\n border-radius: 5px;\n background-color: white;\n ", "\n ", "\n }\n"])), SharedStyles, SizerCss);
|
|
6082
5953
|
var InputStepperLabel = styled__default.label(templateObject_3$m || (templateObject_3$m = __makeTemplateObject(["\n &&&{\n font-size: ", ";\n font-family: ", ";\n line-height: ", ";\n margin-bottom: 8px;\n color: ", "\n ", "\n ", "\n }\n"], ["\n &&&{\n font-size: ", ";\n font-family: ", ";\n line-height: ", ";\n margin-bottom: 8px;\n color: ", "\n ", "\n ", "\n }\n"])), fontStyles.label.fontSize, fontStyles.label.fontFamily, fontStyles.label.lineHeight, neutrals.bodyText, SharedStyles, SizerCss);
|
|
6083
5954
|
var CurrentNumber = styled__default.div(templateObject_4$f || (templateObject_4$f = __makeTemplateObject(["\n &&&{\n display:flex;\n justify-content: center;\n align-items: center;\n height:38px;\n width:100%;\n border-top: 1px solid ", ";\n border-bottom: 1px solid ", ";\n color: ", ";\n text-align:center;\n vertical-align:middle;\n }\n"], ["\n &&&{\n display:flex;\n justify-content: center;\n align-items: center;\n height:38px;\n width:100%;\n border-top: 1px solid ", ";\n border-bottom: 1px solid ", ";\n color: ", ";\n text-align:center;\n vertical-align:middle;\n }\n"])), neutrals['60'], neutrals['60'], neutrals.bodyText);
|
|
5955
|
+
function InputStepperStyled(props) {
|
|
5956
|
+
var containerWidth = props.containerWidth, inputDisabled = props.inputDisabled, label = props.label, labelStyle = props.labelStyle, containerStyle = props.containerStyle, style = props.style, onIncrement = props.onIncrement, onDecrement = props.onDecrement, _a = props.decrementButtonProps, decrementButtonProps = _a === void 0 ? {} : _a, _b = props.incrementButtonProps, incrementButtonProps = _b === void 0 ? {} : _b, rest = __rest(props, ["containerWidth", "inputDisabled", "label", "labelStyle", "containerStyle", "style", "onIncrement", "onDecrement", "decrementButtonProps", "incrementButtonProps"]);
|
|
5957
|
+
return (React__default.createElement(InputStepperOuterContainer, { width: containerWidth, style: containerStyle },
|
|
5958
|
+
label && React__default.createElement(InputStepperLabel, { style: labelStyle }, label),
|
|
5959
|
+
React__default.createElement(InputStepperInnerContainer, { style: style },
|
|
5960
|
+
React__default.createElement(IconButton, __assign({ Icon: SubtractIcon, style: { borderRadius: "5px 0 0 5px" }, onClick: onDecrement }, decrementButtonProps)),
|
|
5961
|
+
React__default.createElement(Input, __assign({}, rest, { style: { width: '100%', margin: 0, borderRadius: 0, textAlign: "center" } })),
|
|
5962
|
+
React__default.createElement(IconButton, __assign({ Icon: AddIcon, style: { borderRadius: "0 5px 5px 0" }, onClick: onIncrement }, incrementButtonProps)))));
|
|
5963
|
+
}
|
|
6084
5964
|
var canIncrement = function (value, max) {
|
|
6085
5965
|
return (max !== undefined && value < max) || max === undefined;
|
|
6086
5966
|
};
|
|
@@ -6088,21 +5968,21 @@ var canDecrement = function (value, min) {
|
|
|
6088
5968
|
return (min !== undefined && value > min) || min === undefined;
|
|
6089
5969
|
};
|
|
6090
5970
|
function InputStepper(props) {
|
|
6091
|
-
var _a = props.min, min = _a === void 0 ? 0 : _a, max = props.max, width = props.width, label = props.label, _b = props.labelStyle, labelStyle = _b === void 0 ? {} : _b, _c = props.style, style = _c === void 0 ? {} : _c, _d = props.disabled, disabled = _d === void 0 ? false : _d, _e = props.inputDisabled, inputDisabled = _e === void 0 ? false : _e, localeOptions = props.localeOptions, initialValue = props.initialValue, rest = __rest(props, ["min", "max", "width", "label", "labelStyle", "style", "disabled", "inputDisabled", "localeOptions", "initialValue"]);
|
|
6092
|
-
var
|
|
5971
|
+
var _a = props.min, min = _a === void 0 ? 0 : _a, max = props.max, width = props.width, label = props.label, _b = props.labelStyle, labelStyle = _b === void 0 ? {} : _b, _c = props.style, style = _c === void 0 ? {} : _c, _d = props.disabled, disabled = _d === void 0 ? false : _d, _e = props.inputDisabled, inputDisabled = _e === void 0 ? false : _e, localeOptions = props.localeOptions, initialValue = props.initialValue, _f = props.delayChangeTimeout, delayChangeTimeout = _f === void 0 ? 1000 : _f, _g = props.holdIncrement, holdIncrement = _g === void 0 ? true : _g, _h = props.holdDecrement, holdDecrement = _h === void 0 ? true : _h, rest = __rest(props, ["min", "max", "width", "label", "labelStyle", "style", "disabled", "inputDisabled", "localeOptions", "initialValue", "delayChangeTimeout", "holdIncrement", "holdDecrement"]);
|
|
5972
|
+
var _j = useNumberInput({
|
|
6093
5973
|
defaultValue: initialValue,
|
|
6094
5974
|
onChange: rest.onChange,
|
|
6095
5975
|
onFocus: rest.onFocus,
|
|
6096
5976
|
onBlur: rest.onBlur,
|
|
6097
5977
|
inputMode: rest.inputMode,
|
|
6098
5978
|
localeOptions: localeOptions,
|
|
6099
|
-
}), ref =
|
|
6100
|
-
var
|
|
5979
|
+
}), ref = _j.ref, value = _j.value, inputMode = _j.inputMode, onChange = _j.onChange, onBlur = _j.onBlur, onFocus = _j.onFocus, updateValue = _j.updateValue;
|
|
5980
|
+
var _k = useLongPress(function () {
|
|
6101
5981
|
handleIncrement();
|
|
6102
|
-
}), onIncrementMouseDown =
|
|
6103
|
-
var
|
|
5982
|
+
}), onIncrementMouseDown = _k.onMouseDown, onIncrementMouseLeave = _k.onMouseLeave, onIncrementMouseUp = _k.onMouseUp, onIncrementTouchEnd = _k.onTouchEnd, onIncrementTouchStart = _k.onTouchStart;
|
|
5983
|
+
var _l = useLongPress(function () {
|
|
6104
5984
|
handleDecrement();
|
|
6105
|
-
}), onDecrementMouseDown =
|
|
5985
|
+
}), onDecrementMouseDown = _l.onMouseDown, onDecrementMouseLeave = _l.onMouseLeave, onDecrementMouseUp = _l.onMouseUp, onDecrementTouchEnd = _l.onTouchEnd, onDecrementTouchStart = _l.onTouchStart;
|
|
6106
5986
|
var valueNumber = typeof value === 'string' ? parseFloat(value) : value;
|
|
6107
5987
|
var decrementButtonVariant = disabled || !canDecrement(valueNumber, min)
|
|
6108
5988
|
? "disabled" : "primary";
|
|
@@ -6135,23 +6015,23 @@ function InputStepper(props) {
|
|
|
6135
6015
|
else if (!canDecrement(parseInt(val), min) && min !== undefined) {
|
|
6136
6016
|
updateValue(min);
|
|
6137
6017
|
}
|
|
6138
|
-
}, [ref, min, max, updateValue]),
|
|
6018
|
+
}, [ref, min, max, updateValue]), delayChangeTimeout);
|
|
6139
6019
|
return (React__default.createElement(InputStepperOuterContainer, { width: width },
|
|
6140
6020
|
React__default.createElement(InputStepperLabel, { style: labelStyle }, label),
|
|
6141
6021
|
React__default.createElement(InputStepperInnerContainer, { style: style },
|
|
6142
6022
|
React__default.createElement(IconButton, { Icon: SubtractIcon, variant: decrementButtonVariant, onClick: handleDecrement, style: { borderRadius: "5px 0 0 5px" }, onMouseDown: function (e) {
|
|
6143
|
-
if (e.button !== 0) {
|
|
6023
|
+
if (e.button !== 0 || !holdDecrement) {
|
|
6144
6024
|
return;
|
|
6145
6025
|
}
|
|
6146
6026
|
onDecrementMouseDown();
|
|
6147
|
-
}, onMouseOut: onDecrementMouseLeave, onMouseUp: onDecrementMouseUp, onTouchEnd: onDecrementTouchEnd, onTouchStart: onDecrementTouchStart }),
|
|
6027
|
+
}, onMouseOut: holdDecrement ? onDecrementMouseLeave : undefined, onMouseUp: holdDecrement ? onDecrementMouseUp : undefined, onTouchEnd: holdDecrement ? onDecrementTouchEnd : undefined, onTouchStart: holdDecrement ? onDecrementTouchStart : undefined }),
|
|
6148
6028
|
React__default.createElement(Input, __assign({}, rest, { style: { width: '100%', margin: 0, borderRadius: 0, textAlign: "center" }, value: value, inputMode: inputMode, onChange: onChange, onBlur: onBlur, onFocus: onFocus, disabled: inputDisabled, ref: ref, onKeyUp: delayChange })),
|
|
6149
6029
|
React__default.createElement(IconButton, { Icon: AddIcon, variant: incrementButtonVariant, onClick: handleIncrement, style: { borderRadius: "0 5px 5px 0" }, onMouseDown: function (e) {
|
|
6150
|
-
if (e.button !== 0) {
|
|
6030
|
+
if (e.button !== 0 || !holdIncrement) {
|
|
6151
6031
|
return;
|
|
6152
6032
|
}
|
|
6153
6033
|
onIncrementMouseDown();
|
|
6154
|
-
}, onMouseOut: onIncrementMouseLeave, onMouseUp: onIncrementMouseUp, onTouchEnd: onIncrementTouchEnd, onTouchStart: onIncrementTouchStart }))));
|
|
6034
|
+
}, onMouseOut: holdIncrement ? onIncrementMouseLeave : undefined, onMouseUp: holdIncrement ? onIncrementMouseUp : undefined, onTouchEnd: holdIncrement ? onIncrementTouchEnd : undefined, onTouchStart: holdIncrement ? onIncrementTouchStart : undefined }))));
|
|
6155
6035
|
}
|
|
6156
6036
|
var templateObject_1$M, templateObject_2$y, templateObject_3$m, templateObject_4$f;
|
|
6157
6037
|
|
|
@@ -6279,6 +6159,19 @@ function sortDirection(col) {
|
|
|
6279
6159
|
var VirtualTableStyles = styled__default.div(templateObject_1$N || (templateObject_1$N = __makeTemplateObject(["\npadding: 1rem;\n\n.table-list-rows {\n ", "\n}\n\n.table {\n display: inline-flex;\n flex-direction: column;\n ", "\n width: 100% !important;\n min-width: 100% !important;\n ", "\n\n .thead {\n padding-right: 15px;\n ", "\n\n .tr {\n overflow-x: hidden;\n min-width: 100%;\n }\n }\n\n .tbody {\n flex: 1 1 auto;\n height: 80vh;\n }\n\n .tr-group {\n display: flex;\n flex-direction: column;\n\n .tr, .tr-sub {\n width: 99%;\n }\n }\n\n .tr {\n display: flex;\n\n ", "\n }\n\n .tr.header {\n position: sticky;\n }\n\n .th,\n .td {\n margin: 0;\n padding: 0.5rem;\n ", "\n }\n}"], ["\npadding: 1rem;\n\n.table-list-rows {\n ", "\n}\n\n.table {\n display: inline-flex;\n flex-direction: column;\n ", "\n width: 100% !important;\n min-width: 100% !important;\n ", "\n\n .thead {\n padding-right: 15px;\n ", "\n\n .tr {\n overflow-x: hidden;\n min-width: 100%;\n }\n }\n\n .tbody {\n flex: 1 1 auto;\n height: 80vh;\n }\n\n .tr-group {\n display: flex;\n flex-direction: column;\n\n .tr, .tr-sub {\n width: 99%;\n }\n }\n\n .tr {\n display: flex;\n\n ", "\n }\n\n .tr.header {\n position: sticky;\n }\n\n .th,\n .td {\n margin: 0;\n padding: 0.5rem;\n ", "\n }\n}"])), function (p) { return p.rowClickable ? "\n .tr {\n cursor: pointer;\n }\n " : ''; }, function (p) { return p.bordered ? "\n border-spacing: 0;\n border: 1px solid black;\n " : ''; }, function (p) { return p.tableHeight ? "height: ".concat(p.tableHeight).concat(typeof p.tableHeight === 'number' ? 'px' : '', ";") : ''; }, function (p) { return p.bordered ? 'border-bottom: 1px solid #000;' : ''; }, function (p) { return p.bordered ? "\n :last-child {\n .td {\n border-bottom: 0;\n }\n }\n " : ''; }, function (p) { return p.bordered ? "\n border-bottom: 1px solid black;\n border-right: 1px solid black;\n :last-child {\n border-right: 0;\n }\n " : ''; });
|
|
6280
6160
|
var templateObject_1$N;
|
|
6281
6161
|
|
|
6162
|
+
var psuedoSelectors = {
|
|
6163
|
+
__after: '&:after',
|
|
6164
|
+
__before: '&:before',
|
|
6165
|
+
__firstLetter: '&:first-letter',
|
|
6166
|
+
__firstLine: '&:first-line',
|
|
6167
|
+
__active: '&:active',
|
|
6168
|
+
__firstChild: '&:first-child',
|
|
6169
|
+
__focus: '&:focus',
|
|
6170
|
+
__hover: '&:hover',
|
|
6171
|
+
__lang: '&:lang',
|
|
6172
|
+
__link: '&:link',
|
|
6173
|
+
__visited: '&:visited',
|
|
6174
|
+
};
|
|
6282
6175
|
var isSizeObj = function (val) { return typeof val === 'object' && (val['xs'] || val['sm'] || val['md'] || val['lg'] || val['xl']); };
|
|
6283
6176
|
var parseResponsiveValue = function (value, transform) {
|
|
6284
6177
|
if (typeof value === 'number' || typeof value === 'string' || typeof value === 'boolean') {
|
|
@@ -6299,7 +6192,7 @@ var parseResponsiveValue = function (value, transform) {
|
|
|
6299
6192
|
}
|
|
6300
6193
|
else if (typeof value === 'object') {
|
|
6301
6194
|
if (!isSizeObj(value)) {
|
|
6302
|
-
return value;
|
|
6195
|
+
return transform(value) || value;
|
|
6303
6196
|
}
|
|
6304
6197
|
return Object.keys(value)
|
|
6305
6198
|
.filter(function (k) { return sizes.includes(k); })
|
|
@@ -6321,47 +6214,29 @@ var createMeasurementStyle = function (v, keys) {
|
|
|
6321
6214
|
return (__assign(__assign({}, acc), (_a = {}, _a[k] = value, _a)));
|
|
6322
6215
|
}, {});
|
|
6323
6216
|
};
|
|
6324
|
-
var styleKeys = [
|
|
6217
|
+
var styleKeys = __spreadArray([
|
|
6325
6218
|
'pr', 'pl', 'pt', 'pb', 'px', 'py',
|
|
6326
6219
|
'mr', 'ml', 'mt', 'mb', 'mx', 'my',
|
|
6327
6220
|
'width', 'height',
|
|
6328
6221
|
'color', 'bg', 'background', 'backgroundColor',
|
|
6329
6222
|
'colSpan',
|
|
6330
|
-
'style', 'sx'
|
|
6331
|
-
];
|
|
6332
|
-
var
|
|
6333
|
-
|
|
6334
|
-
|
|
6335
|
-
|
|
6336
|
-
|
|
6337
|
-
|
|
6338
|
-
|
|
6339
|
-
|
|
6340
|
-
|
|
6341
|
-
pt: function (v) { return createMeasurementStyle(v, ['paddingTop']); },
|
|
6342
|
-
pb: function (v) { return createMeasurementStyle(v, ['paddingBottom']); },
|
|
6343
|
-
px: function (v) { return createMeasurementStyle(v, ['paddingLeft', 'paddingRight']); },
|
|
6344
|
-
py: function (v) { return createMeasurementStyle(v, ['paddingTop', 'paddingBottom']); },
|
|
6345
|
-
width: function (v) { return createMeasurementStyle(v, ['width']); },
|
|
6346
|
-
height: function (v) { return createMeasurementStyle(v, ['height']); },
|
|
6347
|
-
color: function (v) { return ({ color: v }); },
|
|
6348
|
-
bg: function (v) { return ({ background: v }); },
|
|
6349
|
-
background: function (v) { return ({ background: v }); },
|
|
6350
|
-
backgroundColor: function (v) { return ({ backgroundColor: v }); },
|
|
6351
|
-
hidden: function (v) { return (v ? { display: 'none' } : {}); },
|
|
6352
|
-
block: function (v) { return (v ? { display: 'block' } : {}); },
|
|
6353
|
-
inline_block: function (v) { return (v ? { display: 'inline-block' } : {}); },
|
|
6354
|
-
flex: function (v) { return (v ? { display: 'flex' } : {}); },
|
|
6355
|
-
inline_flex: function (v) { return (v ? { display: 'inline-flex' } : {}); },
|
|
6356
|
-
grid: function (v) { return (v ? { display: 'grid' } : {}); },
|
|
6357
|
-
float: function (v) { return (v === 'clearfix'
|
|
6223
|
+
'style', 'sx'
|
|
6224
|
+
], Object.keys(psuedoSelectors), true);
|
|
6225
|
+
var psuedoStylesTransformMap = Object.keys(psuedoSelectors)
|
|
6226
|
+
.reduce(function (acc, k) {
|
|
6227
|
+
var _a;
|
|
6228
|
+
return (__assign(__assign({}, acc), (_a = {}, _a[k] = function (v) {
|
|
6229
|
+
var _a;
|
|
6230
|
+
return (_a = {}, _a[psuedoSelectors[k]] = v, _a);
|
|
6231
|
+
}, _a)));
|
|
6232
|
+
}, {});
|
|
6233
|
+
var stylesTransformMap = __assign({ mr: function (v) { return createMeasurementStyle(v, ['marginRight']); }, ml: function (v) { return createMeasurementStyle(v, ['marginLeft']); }, mt: function (v) { return createMeasurementStyle(v, ['marginTop']); }, mb: function (v) { return createMeasurementStyle(v, ['marginBottom']); }, mx: function (v) { return createMeasurementStyle(v, ['marginLeft', 'marginRight']); }, my: function (v) { return createMeasurementStyle(v, ['marginTop', 'marginBottom']); }, pr: function (v) { return createMeasurementStyle(v, ['paddingRight']); }, pl: function (v) { return createMeasurementStyle(v, ['paddingLeft']); }, pt: function (v) { return createMeasurementStyle(v, ['paddingTop']); }, pb: function (v) { return createMeasurementStyle(v, ['paddingBottom']); }, px: function (v) { return createMeasurementStyle(v, ['paddingLeft', 'paddingRight']); }, py: function (v) { return createMeasurementStyle(v, ['paddingTop', 'paddingBottom']); }, width: function (v) { return createMeasurementStyle(v, ['width']); }, height: function (v) { return createMeasurementStyle(v, ['height']); }, color: function (v) { return ({ color: v }); }, bg: function (v) { return ({ background: v }); }, background: function (v) { return ({ background: v }); }, backgroundColor: function (v) { return ({ backgroundColor: v }); }, hidden: function (v) { return (v ? { display: 'none' } : {}); }, block: function (v) { return (v ? { display: 'block' } : {}); }, inline_block: function (v) { return (v ? { display: 'inline-block' } : {}); }, flex: function (v) { return (v ? { display: 'flex' } : {}); }, inline_flex: function (v) { return (v ? { display: 'inline-flex' } : {}); }, grid: function (v) { return (v ? { display: 'grid' } : {}); }, float: function (v) { return (v === 'clearfix'
|
|
6358
6234
|
? { '&::after': {
|
|
6359
6235
|
content: '',
|
|
6360
6236
|
display: 'table',
|
|
6361
6237
|
clear: 'both',
|
|
6362
6238
|
} }
|
|
6363
|
-
: { float: v }); },
|
|
6364
|
-
colSpan: function (v) {
|
|
6239
|
+
: { float: v }); }, colSpan: function (v) {
|
|
6365
6240
|
if (v === 'auto' || v === true) {
|
|
6366
6241
|
return { gridColumn: 'auto' };
|
|
6367
6242
|
}
|
|
@@ -6370,10 +6245,7 @@ var stylesTransformMap = {
|
|
|
6370
6245
|
}
|
|
6371
6246
|
var colSpan = stripUnit(v);
|
|
6372
6247
|
return { gridColumn: "span ".concat(colSpan, " / span ").concat(colSpan) };
|
|
6373
|
-
},
|
|
6374
|
-
style: function (v) { return v; },
|
|
6375
|
-
sx: function (v) { return v; },
|
|
6376
|
-
};
|
|
6248
|
+
}, style: function (v) { return v; }, sx: function (v) { return v; } }, psuedoStylesTransformMap);
|
|
6377
6249
|
var parseCskuStyles = function (p) {
|
|
6378
6250
|
var sizeStylesObj = {};
|
|
6379
6251
|
var stylesObj = {};
|
|
@@ -6434,7 +6306,7 @@ var GridItem = styled__default.div(function (p) {
|
|
|
6434
6306
|
});
|
|
6435
6307
|
|
|
6436
6308
|
var BaseCollapsible = function (props) {
|
|
6437
|
-
var children = props.children, style = props.style, label = props.label, controls = props.controls, _a = props.isOpen, isOpen = _a === void 0 ? false : _a, handleToggle = props.handleToggle;
|
|
6309
|
+
var children = props.children, style = props.style, label = props.label, controls = props.controls, header = props.header, _a = props.isOpen, isOpen = _a === void 0 ? false : _a, handleToggle = props.handleToggle;
|
|
6438
6310
|
var _b = React.useState(isOpen ? undefined : 0), height = _b[0], setHeight = _b[1];
|
|
6439
6311
|
var ref = React.useRef(null);
|
|
6440
6312
|
React.useEffect(function () {
|
|
@@ -6459,10 +6331,7 @@ var BaseCollapsible = function (props) {
|
|
|
6459
6331
|
React__default.createElement(Row, { style: __assign({ alignItems: 'center', padding: 10, paddingTop: 12, paddingBottom: 8, background: isOpen ? colors.white : colors.teal[20], borderRadius: isOpen ? 25 : 2000, flex: 'none', order: 1, flexGrow: 0 }, (isOpen
|
|
6460
6332
|
? { border: "3px solid ".concat(colors.teal.main) }
|
|
6461
6333
|
: {})) },
|
|
6462
|
-
React__default.createElement(
|
|
6463
|
-
React__default.createElement(CollapsibleLabel, { isOpen: isOpen }, label)),
|
|
6464
|
-
React__default.createElement(Col, { xs: true, sm: 5.9, style: { cursor: 'pointer', }, smStyle: "text-align: right;", xsStyle: "text-align: center;", onClick: handleToggle },
|
|
6465
|
-
React__default.createElement(CollapsibleControls, { isOpen: isOpen }, controls)),
|
|
6334
|
+
React__default.createElement(CollapsibleHeader, { isOpen: isOpen, handleToggle: handleToggle, controls: controls }, header || label),
|
|
6466
6335
|
React__default.createElement(Col, { xs: true, style: {
|
|
6467
6336
|
overflow: 'hidden',
|
|
6468
6337
|
transition: 'height 0.2s ease-in-out',
|
|
@@ -6482,6 +6351,20 @@ var Collapsible$1 = function (props) {
|
|
|
6482
6351
|
};
|
|
6483
6352
|
return (React__default.createElement(BaseCollapsible, __assign({ isOpen: isOpen, handleToggle: handleToggle }, rest), children));
|
|
6484
6353
|
};
|
|
6354
|
+
var CollapsibleHeader = function (props) {
|
|
6355
|
+
var children = props.children, controls = props.controls, isOpen = props.isOpen, handleToggle = props.handleToggle;
|
|
6356
|
+
if (children === undefined || children === null) {
|
|
6357
|
+
return null;
|
|
6358
|
+
}
|
|
6359
|
+
if (typeof children === 'string' || typeof children === 'number' || typeof children === 'boolean') {
|
|
6360
|
+
return React__default.createElement(React__default.Fragment, null,
|
|
6361
|
+
React__default.createElement(Col, { xs: true, sm: 5.9, style: { cursor: 'pointer', }, onClick: handleToggle },
|
|
6362
|
+
React__default.createElement(CollapsibleLabel, { isOpen: isOpen }, children)),
|
|
6363
|
+
React__default.createElement(Col, { xs: true, sm: 5.9, style: { cursor: 'pointer', }, smStyle: "text-align: right;", xsStyle: "text-align: center;", onClick: handleToggle },
|
|
6364
|
+
React__default.createElement(CollapsibleControls, { isOpen: isOpen }, controls)));
|
|
6365
|
+
}
|
|
6366
|
+
return React__default.cloneElement(children, { isOpen: isOpen, handleToggle: handleToggle });
|
|
6367
|
+
};
|
|
6485
6368
|
var CollapsibleLabel = function (props) {
|
|
6486
6369
|
var children = props.children, isOpen = props.isOpen;
|
|
6487
6370
|
if (children === undefined || children === null) {
|
|
@@ -7271,11 +7154,13 @@ exports.HeadlessTable = HeadlessTable;
|
|
|
7271
7154
|
exports.HistoryIcon = HistoryIcon;
|
|
7272
7155
|
exports.IconButton = IconButton;
|
|
7273
7156
|
exports.IconDoc = IconDoc;
|
|
7157
|
+
exports.Img = Img;
|
|
7274
7158
|
exports.InfoIcon = InfoIcon;
|
|
7275
7159
|
exports.Input = Input;
|
|
7276
7160
|
exports.InputIconLabel = InputIconLabel;
|
|
7277
7161
|
exports.InputIconLabelContainer = InputIconLabelContainer;
|
|
7278
7162
|
exports.InputStepper = InputStepper;
|
|
7163
|
+
exports.InputStepperStyled = InputStepperStyled;
|
|
7279
7164
|
exports.IntegrationsIcon = IntegrationsIcon;
|
|
7280
7165
|
exports.Label = Label;
|
|
7281
7166
|
exports.LabeledAsyncSelect = LabeledAsyncSelect;
|