@dreamcommerce/aurora 2.5.2 → 2.5.3-2
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/assets/icon_wrong_file_format.js +22 -0
- package/build/cjs/packages/aurora/src/assets/icon_wrong_file_format.js.map +1 -0
- package/build/cjs/packages/aurora/src/components/controls/hoc/control_image_picker/index.js +26 -0
- package/build/cjs/packages/aurora/src/components/controls/hoc/control_image_picker/index.js.map +1 -0
- package/build/cjs/packages/aurora/src/components/file_picker/constants.js +19 -0
- package/build/cjs/packages/aurora/src/components/file_picker/constants.js.map +1 -0
- package/build/cjs/packages/aurora/src/components/file_picker/use_file_picker.js +50 -2
- package/build/cjs/packages/aurora/src/components/file_picker/use_file_picker.js.map +1 -1
- package/build/cjs/packages/aurora/src/components/image_picker/components/image_input.js +32 -0
- package/build/cjs/packages/aurora/src/components/image_picker/components/image_input.js.map +1 -0
- package/build/cjs/packages/aurora/src/components/image_picker/components/selected_image_preview.js +37 -0
- package/build/cjs/packages/aurora/src/components/image_picker/components/selected_image_preview.js.map +1 -0
- package/build/cjs/packages/aurora/src/components/image_picker/css_classes.js +29 -0
- package/build/cjs/packages/aurora/src/components/image_picker/css_classes.js.map +1 -0
- package/build/cjs/packages/aurora/src/components/image_picker/index.js +103 -0
- package/build/cjs/packages/aurora/src/components/image_picker/index.js.map +1 -0
- package/build/cjs/packages/aurora/src/components/image_picker/utils.js +12 -0
- package/build/cjs/packages/aurora/src/components/image_picker/utils.js.map +1 -0
- package/build/cjs/packages/aurora/src/components/modal/components/modal.js +2 -2
- package/build/cjs/packages/aurora/src/css/image_picker/main.module.less.js +12 -0
- package/build/cjs/packages/aurora/src/css/image_picker/main.module.less.js.map +1 -0
- package/build/cjs/packages/aurora/src/css/modal/main.module.less.js +1 -1
- package/build/cjs/packages/aurora/src/index.js +51 -47
- package/build/cjs/packages/aurora/src/index.js.map +1 -1
- package/build/cjs/packages/aurora/src/translations/en.json.js +4 -1
- package/build/cjs/packages/aurora/src/translations/en.json.js.map +1 -1
- package/build/cjs/packages/aurora/src/translations/pl.json.js +4 -1
- package/build/cjs/packages/aurora/src/translations/pl.json.js.map +1 -1
- package/build/esm/packages/aurora/src/assets/icon_wrong_file_format.d.ts +4 -0
- package/build/esm/packages/aurora/src/assets/icon_wrong_file_format.js +14 -0
- package/build/esm/packages/aurora/src/assets/icon_wrong_file_format.js.map +1 -0
- package/build/esm/packages/aurora/src/components/controls/hoc/control_image_picker/index.d.ts +4 -0
- package/build/esm/packages/aurora/src/components/controls/hoc/control_image_picker/index.js +18 -0
- package/build/esm/packages/aurora/src/components/controls/hoc/control_image_picker/index.js.map +1 -0
- package/build/esm/packages/aurora/src/components/controls/types.d.ts +10 -0
- package/build/esm/packages/aurora/src/components/file_picker/constants.d.ts +8 -0
- package/build/esm/packages/aurora/src/components/file_picker/constants.js +11 -0
- package/build/esm/packages/aurora/src/components/file_picker/constants.js.map +1 -0
- package/build/esm/packages/aurora/src/components/file_picker/types.d.ts +3 -0
- package/build/esm/packages/aurora/src/components/file_picker/use_file_picker.d.ts +1 -1
- package/build/esm/packages/aurora/src/components/file_picker/use_file_picker.js +50 -2
- package/build/esm/packages/aurora/src/components/file_picker/use_file_picker.js.map +1 -1
- package/build/esm/packages/aurora/src/components/image_picker/components/image_input.d.ts +4 -0
- package/build/esm/packages/aurora/src/components/image_picker/components/image_input.js +24 -0
- package/build/esm/packages/aurora/src/components/image_picker/components/image_input.js.map +1 -0
- package/build/esm/packages/aurora/src/components/image_picker/components/selected_image_preview.d.ts +4 -0
- package/build/esm/packages/aurora/src/components/image_picker/components/selected_image_preview.js +29 -0
- package/build/esm/packages/aurora/src/components/image_picker/components/selected_image_preview.js.map +1 -0
- package/build/esm/packages/aurora/src/components/image_picker/css_classes.d.ts +22 -0
- package/build/esm/packages/aurora/src/components/image_picker/css_classes.js +25 -0
- package/build/esm/packages/aurora/src/components/image_picker/css_classes.js.map +1 -0
- package/build/esm/packages/aurora/src/components/image_picker/index.d.ts +4 -0
- package/build/esm/packages/aurora/src/components/image_picker/index.js +94 -0
- package/build/esm/packages/aurora/src/components/image_picker/index.js.map +1 -0
- package/build/esm/packages/aurora/src/components/image_picker/types.d.ts +37 -0
- package/build/esm/packages/aurora/src/components/image_picker/types.js +2 -0
- package/build/esm/packages/aurora/src/components/image_picker/types.js.map +1 -0
- package/build/esm/packages/aurora/src/components/image_picker/utils.d.ts +1 -0
- package/build/esm/packages/aurora/src/components/image_picker/utils.js +8 -0
- package/build/esm/packages/aurora/src/components/image_picker/utils.js.map +1 -0
- package/build/esm/packages/aurora/src/components/modal/components/modal.js +2 -2
- package/build/esm/packages/aurora/src/css/image_picker/main.module.less.js +8 -0
- package/build/esm/packages/aurora/src/css/image_picker/main.module.less.js.map +1 -0
- package/build/esm/packages/aurora/src/css/modal/main.module.less.js +1 -1
- package/build/esm/packages/aurora/src/index.d.ts +7 -4
- package/build/esm/packages/aurora/src/index.js +4 -2
- package/build/esm/packages/aurora/src/index.js.map +1 -1
- package/build/esm/packages/aurora/src/translations/en.json +4 -1
- package/build/esm/packages/aurora/src/translations/en.json.js +4 -1
- package/build/esm/packages/aurora/src/translations/en.json.js.map +1 -1
- package/build/esm/packages/aurora/src/translations/pl.json +4 -1
- package/build/esm/packages/aurora/src/translations/pl.json.js +4 -1
- package/build/esm/packages/aurora/src/translations/pl.json.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import React, { useState, useEffect } from 'react';
|
|
2
|
+
import { useTranslation } from '../../../../../external/react-i18next/dist/es/useTranslation.js';
|
|
3
|
+
import { createUseStyles } from '../../../../../external/react-jss/dist/react-jss.esm.js';
|
|
4
|
+
import classnames from 'classnames';
|
|
5
|
+
import { FILE_PICKER_ERROR } from '../file_picker/constants.js';
|
|
6
|
+
import { useFilePicker } from '../file_picker/use_file_picker.js';
|
|
7
|
+
import { getAcceptFilesParametersFromAllowedExtensions } from '../file_picker/utils.js';
|
|
8
|
+
import CSS_CLASSES from './css_classes.js';
|
|
9
|
+
import ControlInput from '../controls/hoc/control_input/index.js';
|
|
10
|
+
import styles from '../../css/image_picker/main.module.less.js';
|
|
11
|
+
import ImageInput from './components/image_input.js';
|
|
12
|
+
import SelectedImagePreview from './components/selected_image_preview.js';
|
|
13
|
+
import Spacing from '../spacing/index.js';
|
|
14
|
+
import { checkIfInvalideFileFormatErrorOccured } from './utils.js';
|
|
15
|
+
|
|
16
|
+
const ImagePicker = ({ id, onChange, allowedExtensions = ['WEBP', 'JPG', 'PNG', 'GIF'], initialFile, name, className = '', hasWidthInput, widthInputPostfix = 'px', widthInputLabel, widthInputHint }) => {
|
|
17
|
+
const [t] = useTranslation();
|
|
18
|
+
const [fileFormatIsCorrect, setFileFormatIsCorrect] = useState(true);
|
|
19
|
+
const [imageSize, setImageSize] = useState({ width: 0, height: 0 });
|
|
20
|
+
const [widthInputValue, setWidthInputValue] = useState();
|
|
21
|
+
const [isInputWidthTooBig, setIsInputWidthTooBig] = useState(false);
|
|
22
|
+
const { onDropFile, onFileChange, onDragOver, onDragLeave, onFileDelete, onPreviewError, file, errors, isPreview, isDragOver, isVectorImage } = useFilePicker({ initialFile, onChange, allowedExtensions });
|
|
23
|
+
const acceptFiles = getAcceptFilesParametersFromAllowedExtensions(allowedExtensions);
|
|
24
|
+
const showMaxWidthInput = hasWidthInput && file && fileFormatIsCorrect && !isVectorImage;
|
|
25
|
+
const imagePickerClassName = classnames(styles[CSS_CLASSES.imagePicker], className && className);
|
|
26
|
+
const imagePickerWrapperClassName = classnames(styles[CSS_CLASSES.imagePickerWrapper], file && styles[CSS_CLASSES.imagePickerWrapperHasFile], !fileFormatIsCorrect && styles[CSS_CLASSES.imagePickerWrapperError]);
|
|
27
|
+
const useStyles = createUseStyles({
|
|
28
|
+
imagePickerWrapper: {
|
|
29
|
+
border: ({ isDragOver }) => (isDragOver ? '1px solid #135cc8' : ''),
|
|
30
|
+
backgroundColor: ({ isDragOver }) => (isDragOver ? 'rgba(208, 230, 255, 0.5)' : ''),
|
|
31
|
+
'& svg': {
|
|
32
|
+
// @ts-ignore
|
|
33
|
+
fill: ({ isDragOver }) => (isDragOver ? '#3c83ec' : '')
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
const dragOverStyles = useStyles({ isDragOver });
|
|
38
|
+
const getImageWidth = (event) => {
|
|
39
|
+
let selectedImage;
|
|
40
|
+
if (event.target instanceof HTMLInputElement) {
|
|
41
|
+
const { target: { files } } = event;
|
|
42
|
+
selectedImage = files[0];
|
|
43
|
+
}
|
|
44
|
+
else {
|
|
45
|
+
const { dataTransfer: { files } } = event;
|
|
46
|
+
selectedImage = files[0];
|
|
47
|
+
}
|
|
48
|
+
const imgElement = document.createElement('img');
|
|
49
|
+
const objectURL = URL.createObjectURL(selectedImage);
|
|
50
|
+
imgElement.onload = () => {
|
|
51
|
+
setImageSize({ width: imgElement.width, height: imgElement.height });
|
|
52
|
+
URL.revokeObjectURL(objectURL);
|
|
53
|
+
};
|
|
54
|
+
imgElement.src = objectURL;
|
|
55
|
+
};
|
|
56
|
+
const checkIfInputMaxWidthIsGreaterThenImageWidth = () => {
|
|
57
|
+
if (!widthInputValue || !imageSize.width)
|
|
58
|
+
return;
|
|
59
|
+
widthInputValue > imageSize.width ? setIsInputWidthTooBig(true) : setIsInputWidthTooBig(false);
|
|
60
|
+
};
|
|
61
|
+
const handleonDropFile = (event) => {
|
|
62
|
+
onDropFile(event);
|
|
63
|
+
getImageWidth(event);
|
|
64
|
+
};
|
|
65
|
+
const handleOnFileChange = (event) => {
|
|
66
|
+
onFileChange(event);
|
|
67
|
+
getImageWidth(event);
|
|
68
|
+
};
|
|
69
|
+
const handleOnFileDelete = () => {
|
|
70
|
+
setImageSize({ width: 0, height: 0 });
|
|
71
|
+
onFileDelete();
|
|
72
|
+
};
|
|
73
|
+
const handleOnWidthInputChange = (event) => {
|
|
74
|
+
setWidthInputValue(event.target.valueAsNumber);
|
|
75
|
+
};
|
|
76
|
+
useEffect(() => {
|
|
77
|
+
checkIfInvalideFileFormatErrorOccured(errors) ? setFileFormatIsCorrect(false) : setFileFormatIsCorrect(true);
|
|
78
|
+
file && checkIfInputMaxWidthIsGreaterThenImageWidth();
|
|
79
|
+
}, [errors, file, widthInputValue]);
|
|
80
|
+
useEffect(() => {
|
|
81
|
+
setWidthInputValue(imageSize.width);
|
|
82
|
+
}, [imageSize]);
|
|
83
|
+
return (React.createElement("div", { className: imagePickerClassName },
|
|
84
|
+
React.createElement("div", { className: `${imagePickerWrapperClassName} ${dragOverStyles.imagePickerWrapper}` },
|
|
85
|
+
file && (React.createElement(SelectedImagePreview, { file: file, onFileDelete: handleOnFileDelete, onPreviewError: onPreviewError, isPreview: isPreview, fileFormatIsCorrect: fileFormatIsCorrect, imageSize: imageSize })),
|
|
86
|
+
React.createElement(ImageInput, { onDragLeave: onDragLeave, onDragOver: onDragOver, isDragOver: isDragOver, allowedExtensions: allowedExtensions, id: id, onDropFile: handleonDropFile }),
|
|
87
|
+
React.createElement("input", { onChange: handleOnFileChange, id: id, type: "file", name: name, className: styles[CSS_CLASSES.imagePickerInput], accept: acceptFiles })),
|
|
88
|
+
!fileFormatIsCorrect && React.createElement("p", { className: styles[CSS_CLASSES.imagePickerErrorText] }, t('Invalid file format')),
|
|
89
|
+
showMaxWidthInput && (React.createElement(Spacing, { as: "div", "mt-xs": 2 },
|
|
90
|
+
React.createElement(ControlInput, { id: `${id}-image-width`, type: "number", postfix: widthInputPostfix, value: widthInputValue, isRequired: true, label: widthInputLabel, hint: widthInputHint, onChange: handleOnWidthInputChange, errors: isInputWidthTooBig ? [`${t(FILE_PICKER_ERROR.invalidInputWidth)}`] : null })))));
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
export default ImagePicker;
|
|
94
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA,+BAA+B,iEAAqE;AACpG,gCAAgC,yDAA6D;AAC7F;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;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,37 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare type TImagePickerFile = {
|
|
3
|
+
fileUrl: string;
|
|
4
|
+
fileName: string;
|
|
5
|
+
};
|
|
6
|
+
export interface IImagePicker {
|
|
7
|
+
id: string;
|
|
8
|
+
name?: string;
|
|
9
|
+
className?: string;
|
|
10
|
+
onChange?: (imageList: FileList | null) => void;
|
|
11
|
+
allowedExtensions?: string[];
|
|
12
|
+
initialFile?: TImagePickerFile;
|
|
13
|
+
hasWidthInput?: boolean;
|
|
14
|
+
widthInputPostfix?: string;
|
|
15
|
+
widthInputLabel?: string;
|
|
16
|
+
widthInputHint?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface ISelectedImagePreview {
|
|
19
|
+
file: TImagePickerFile;
|
|
20
|
+
isPreview: boolean;
|
|
21
|
+
fileFormatIsCorrect?: boolean;
|
|
22
|
+
imageSize?: TImageSize;
|
|
23
|
+
onPreviewError: () => void;
|
|
24
|
+
onFileDelete: () => void;
|
|
25
|
+
}
|
|
26
|
+
export interface IImagePickerInput {
|
|
27
|
+
id: string;
|
|
28
|
+
onDropFile: (event: React.DragEvent<HTMLLabelElement>) => void;
|
|
29
|
+
onDragOver: (event: React.DragEvent<HTMLLabelElement>) => void;
|
|
30
|
+
onDragLeave: (event: React.DragEvent<HTMLLabelElement>) => void;
|
|
31
|
+
allowedExtensions: string[];
|
|
32
|
+
isDragOver: boolean;
|
|
33
|
+
}
|
|
34
|
+
export declare type TImageSize = {
|
|
35
|
+
width: number;
|
|
36
|
+
height: number;
|
|
37
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../../../../src/components/image_picker/types.ts"],"names":[],"mappings":"AAAA,OAAkB,OAAO,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const checkIfInvalideFileFormatErrorOccured: (errorsArray: string[] | undefined) => boolean | undefined;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { FILE_PICKER_ERROR } from '../file_picker/constants.js';
|
|
2
|
+
|
|
3
|
+
const checkIfInvalideFileFormatErrorOccured = (errorsArray) => {
|
|
4
|
+
return errorsArray && errorsArray.includes(FILE_PICKER_ERROR.invalidFileFormat);
|
|
5
|
+
};
|
|
6
|
+
|
|
7
|
+
export { checkIfInvalideFileFormatErrorOccured };
|
|
8
|
+
//# sourceMappingURL=utils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import cssClasses from '../../../css/modal/main.module.less.js';
|
|
3
3
|
|
|
4
|
-
const Modal = ({ children, className, modalRef }) => {
|
|
5
|
-
return (React.createElement("div", { "data-test-id": "modal", ref: modalRef, className: `${cssClasses['modal-window']} ${cssClasses['modal-window_visible']} ${className}` },
|
|
4
|
+
const Modal = ({ children, className, modalRef, style = {} }) => {
|
|
5
|
+
return (React.createElement("div", { style: style, "data-test-id": "modal", ref: modalRef, className: `${cssClasses['modal-window']} ${cssClasses['modal-window_visible']} ${className}` },
|
|
6
6
|
React.createElement("div", { className: cssClasses['modal-window__body'] }, children)));
|
|
7
7
|
};
|
|
8
8
|
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import styleInject from '../../../../../external/style-inject/dist/style-inject.es.js';
|
|
2
|
+
|
|
3
|
+
var css_248z = "/* font colors */\n/* actions */\n/* background */\n/* errors */\n/* borders */\n/* grid */\n/* scrollBar */\n/* sizes */\n.main-module_image-picker__wrapper__2RK3f {\n border: 1px dashed #abb4cd;\n border-radius: 2px;\n}\n.main-module_image-picker__wrapper-error__kCZeA {\n border-color: #e60c54;\n}\n.main-module_image-picker__wrapper-error__kCZeA:hover {\n border-color: #e60c54;\n}\n.main-module_image-picker__wrapper-has-file__2zmRc {\n position: relative;\n}\n.main-module_image-picker__wrapper-has-file__2zmRc .main-module_image-picker__label__1i_Fq {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 46px;\n left: 0;\n}\n.main-module_image-picker__wrapper-has-file__2zmRc .main-module_image-picker__description__1v13N {\n display: none;\n}\n.main-module_image-picker__wrapper__2RK3f:hover {\n border-color: #135cc8;\n}\n.main-module_image-picker__wrapper__2RK3f:hover .main-module_image-picker__upload-icon__3sMvN {\n fill: #3c83ec;\n}\n.main-module_image-picker__label__1i_Fq {\n cursor: pointer;\n}\n.main-module_image-picker__input__3Wu2I {\n display: none;\n}\n.main-module_image-picker__description__1v13N {\n padding: 2rem 0;\n text-align: center;\n}\n.main-module_image-picker__description__1v13N p {\n color: #3c83ec;\n}\n.main-module_image-picker__description__1v13N span {\n font-size: 12px;\n color: #59687e;\n}\n.main-module_image-picker__upload-icon__3sMvN {\n width: 1rem;\n height: auto;\n margin-bottom: 1rem;\n fill: #abb4cd;\n}\n.main-module_image-picker__delete-button__21_kT {\n display: flex;\n align-items: center;\n flex-shrink: 0;\n color: #3c83ec;\n cursor: pointer;\n}\n.main-module_image-picker__delete-button__21_kT:hover .main-module_image-picker__delete-label__3v2ot {\n text-decoration: underline;\n}\n.main-module_image-picker__wrong-file-format-icon__X-NL0 {\n margin: 2rem 0 0.5rem;\n fill: #ffffff;\n}\n.main-module_image-picker__delete-icon__30pkO {\n fill: #3c83ec;\n margin-right: 0.5rem;\n}\n.main-module_image-picker__selected-file__3bRqa {\n display: flex;\n align-items: center;\n justify-content: space-between;\n height: 46px;\n}\n.main-module_image-picker__selected-file-name-wrapper__37MKd,\n.main-module_image-picker__selected-file-remove-wrapper__2v4W2 {\n flex: 1;\n max-width: 50%;\n padding: 1rem;\n}\n.main-module_image-picker__selected-file-remove-wrapper__2v4W2 {\n display: flex;\n justify-content: flex-end;\n}\n.main-module_image-picker__selected-file-full-name__3fALB {\n color: #59687e;\n}\n.main-module_image-picker__image-preview-wrapper__1jPXU {\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.main-module_image-picker__image-preview__12pRu {\n max-width: 100%;\n max-height: 100%;\n}\n.main-module_image-picker__error-text__rXAvw {\n margin-top: 0.5rem;\n color: #e60c54;\n}\n";
|
|
4
|
+
var styles = {"image-picker__wrapper":"main-module_image-picker__wrapper__2RK3f","image-picker__wrapper-error":"main-module_image-picker__wrapper-error__kCZeA","image-picker__wrapper-has-file":"main-module_image-picker__wrapper-has-file__2zmRc","image-picker__label":"main-module_image-picker__label__1i_Fq","image-picker__description":"main-module_image-picker__description__1v13N","image-picker__upload-icon":"main-module_image-picker__upload-icon__3sMvN","image-picker__input":"main-module_image-picker__input__3Wu2I","image-picker__delete-button":"main-module_image-picker__delete-button__21_kT","image-picker__delete-label":"main-module_image-picker__delete-label__3v2ot","image-picker__wrong-file-format-icon":"main-module_image-picker__wrong-file-format-icon__X-NL0","image-picker__delete-icon":"main-module_image-picker__delete-icon__30pkO","image-picker__selected-file":"main-module_image-picker__selected-file__3bRqa","image-picker__selected-file-name-wrapper":"main-module_image-picker__selected-file-name-wrapper__37MKd","image-picker__selected-file-remove-wrapper":"main-module_image-picker__selected-file-remove-wrapper__2v4W2","image-picker__selected-file-full-name":"main-module_image-picker__selected-file-full-name__3fALB","image-picker__image-preview-wrapper":"main-module_image-picker__image-preview-wrapper__1jPXU","image-picker__image-preview":"main-module_image-picker__image-preview__12pRu","image-picker__error-text":"main-module_image-picker__error-text__rXAvw"};
|
|
5
|
+
styleInject(css_248z);
|
|
6
|
+
|
|
7
|
+
export default styles;
|
|
8
|
+
//# sourceMappingURL=main.module.less.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA,wBAAwB,8DAAkE;AAC1F;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import styleInject from '../../../../../external/style-inject/dist/style-inject.es.js';
|
|
2
2
|
|
|
3
|
-
var css_248z = "/* font colors */\n/* actions */\n/* background */\n/* errors */\n/* borders */\n/* grid */\n/* scrollBar */\n/* sizes */\n.main-module_modal-window__1epDY {\n flex-direction: column;\n position: relative;\n z-index: 2000;\n max-width: 1400px;\n max-height: 100%;\n min-width: 320px;\n background-color: #ffffff;\n border-radius: 5px;\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);\n transition: all 0.25s ease;\n}\n.main-module_modal-window_show-transition-start__20Zyy,\n.main-module_modal-window_hide-transition-end__2tbM7 {\n opacity: 0;\n transform: translate3d(0, -20vh, 0);\n}\n.main-module_modal-window_show-transition-end__1bGXM,\n.main-module_modal-window_hide-transition-start__3v2ve {\n opacity: 1;\n transform: translate3d(0, 0, 0);\n}\n.main-module_modal-window_show-tooltip-transition-start__3T6jk,\n.main-module_modal-window_hide-tooltip-transition-end__1-Elu {\n opacity: 0;\n}\n.main-module_modal-window_show-tooltip-transition-end__3qcFY,\n.main-module_modal-window_hide-tooltip-transition-start__1LrQS {\n opacity: 1;\n}\n.main-module_modal-window_visible__Y9ArZ {\n display: flex;\n}\n.main-module_modal-window_relative__2bV4q {\n position: absolute;\n}\n.main-module_modal-window_loading__i6ehQ {\n min-width: auto;\n}\n.main-module_modal-window_small__2ohvZ {\n max-width: 440px;\n}\n.main-module_modal-window__body__o4m8Y {\n display: flex;\n flex-direction: column;\n overflow: hidden;\n max-height: calc(var(--vh, 1vh) * 100 - (2 * 1rem));\n}\n.main-module_modal-window__body_no-overflow__144M5 {\n overflow: visible;\n}\n.main-module_modal-window__header__vMn-j {\n flex: 0 0 auto;\n display: flex;\n justify-content: space-between;\n align-items:
|
|
3
|
+
var css_248z = "/* font colors */\n/* actions */\n/* background */\n/* errors */\n/* borders */\n/* grid */\n/* scrollBar */\n/* sizes */\n.main-module_modal-window__1epDY {\n flex-direction: column;\n position: relative;\n z-index: 2000;\n max-width: 1400px;\n max-height: 100%;\n min-width: 320px;\n background-color: #ffffff;\n border-radius: 5px;\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);\n transition: all 0.25s ease;\n}\n.main-module_modal-window_show-transition-start__20Zyy,\n.main-module_modal-window_hide-transition-end__2tbM7 {\n opacity: 0;\n transform: translate3d(0, -20vh, 0);\n}\n.main-module_modal-window_show-transition-end__1bGXM,\n.main-module_modal-window_hide-transition-start__3v2ve {\n opacity: 1;\n transform: translate3d(0, 0, 0);\n}\n.main-module_modal-window_show-tooltip-transition-start__3T6jk,\n.main-module_modal-window_hide-tooltip-transition-end__1-Elu {\n opacity: 0;\n}\n.main-module_modal-window_show-tooltip-transition-end__3qcFY,\n.main-module_modal-window_hide-tooltip-transition-start__1LrQS {\n opacity: 1;\n}\n.main-module_modal-window_visible__Y9ArZ {\n display: flex;\n}\n.main-module_modal-window_relative__2bV4q {\n position: absolute;\n}\n.main-module_modal-window_loading__i6ehQ {\n min-width: auto;\n}\n.main-module_modal-window_small__2ohvZ {\n max-width: 440px;\n}\n.main-module_modal-window__body__o4m8Y {\n display: flex;\n flex-direction: column;\n overflow: hidden;\n max-height: calc(var(--vh, 1vh) * 100 - (2 * 1rem));\n}\n.main-module_modal-window__body_no-overflow__144M5 {\n overflow: visible;\n}\n.main-module_modal-window__header__vMn-j {\n flex: 0 0 auto;\n display: flex;\n justify-content: space-between;\n align-items: flex-start;\n padding: 2rem 2rem 0.5rem 2rem;\n}\n.main-module_modal-window__header-actions__Qj4RZ {\n margin-left: 2rem;\n}\n.main-module_modal-window__close-icon__32GlC {\n cursor: pointer;\n fill: #5c657e;\n}\n.main-module_modal-window__close-icon__32GlC * {\n fill: #5c657e;\n}\n.main-module_modal-window__content__2Yq_0 {\n overflow-y: auto;\n -ms-scroll-chaining: none;\n overscroll-behavior: none;\n padding: 1rem 2rem 1rem 2rem;\n}\n.main-module_modal-window__content_no-overflow__d24L_ {\n overflow-y: visible;\n}\n.main-module_modal-window__footer__1o3OM {\n padding: 0.75rem 2rem;\n text-align: right;\n border-top: 1px solid #ececec;\n border-bottom: 2px solid transparent;\n}\n.main-module_modal-window-mask__mR_gM {\n align-items: center;\n justify-content: center;\n position: fixed;\n top: 0;\n left: 0;\n z-index: 1900;\n background-color: rgba(0, 0, 0, 0.5);\n width: calc(100vw);\n height: calc(var(--vh, 1vh) * 100);\n transition: all 0.25s ease;\n}\n.main-module_modal-window-mask_show-transition-start__2F24Y,\n.main-module_modal-window-mask_hide-transition-end__1SeMQ {\n opacity: 0;\n}\n.main-module_modal-window-mask_show-transition-end__3QHf6,\n.main-module_modal-window-mask_hide-transition-start__1FESf {\n opacity: 1;\n}\n";
|
|
4
4
|
var cssClasses = {"modal-window":"main-module_modal-window__1epDY","modal-window_show-transition-start":"main-module_modal-window_show-transition-start__20Zyy","modal-window_hide-transition-end":"main-module_modal-window_hide-transition-end__2tbM7","modal-window_show-transition-end":"main-module_modal-window_show-transition-end__1bGXM","modal-window_hide-transition-start":"main-module_modal-window_hide-transition-start__3v2ve","modal-window_show-tooltip-transition-start":"main-module_modal-window_show-tooltip-transition-start__3T6jk","modal-window_hide-tooltip-transition-end":"main-module_modal-window_hide-tooltip-transition-end__1-Elu","modal-window_show-tooltip-transition-end":"main-module_modal-window_show-tooltip-transition-end__3qcFY","modal-window_hide-tooltip-transition-start":"main-module_modal-window_hide-tooltip-transition-start__1LrQS","modal-window_visible":"main-module_modal-window_visible__Y9ArZ","modal-window_relative":"main-module_modal-window_relative__2bV4q","modal-window_loading":"main-module_modal-window_loading__i6ehQ","modal-window_small":"main-module_modal-window_small__2ohvZ","modal-window__body":"main-module_modal-window__body__o4m8Y","modal-window__body_no-overflow":"main-module_modal-window__body_no-overflow__144M5","modal-window__header":"main-module_modal-window__header__vMn-j","modal-window__header-actions":"main-module_modal-window__header-actions__Qj4RZ","modal-window__close-icon":"main-module_modal-window__close-icon__32GlC","modal-window__content":"main-module_modal-window__content__2Yq_0","modal-window__content_no-overflow":"main-module_modal-window__content_no-overflow__d24L_","modal-window__footer":"main-module_modal-window__footer__1o3OM","modal-window-mask":"main-module_modal-window-mask__mR_gM","modal-window-mask_show-transition-start":"main-module_modal-window-mask_show-transition-start__2F24Y","modal-window-mask_hide-transition-end":"main-module_modal-window-mask_hide-transition-end__1SeMQ","modal-window-mask_show-transition-end":"main-module_modal-window-mask_show-transition-end__3QHf6","modal-window-mask_hide-transition-start":"main-module_modal-window-mask_hide-transition-start__1FESf"};
|
|
5
5
|
styleInject(css_248z);
|
|
6
6
|
|
|
@@ -20,6 +20,7 @@ import ControlCheckboxSwitch from "./components/controls/hoc/control_checkbox_sw
|
|
|
20
20
|
import ControlColorPicker from "./components/controls/hoc/control_color_picker";
|
|
21
21
|
import ControlDatepicker from "./components/controls/hoc/control_date_picker";
|
|
22
22
|
import ControlFilePicker from "./components/controls/hoc/control_file_picker";
|
|
23
|
+
import ControlImagePicker from "./components/controls/hoc/control_image_picker";
|
|
23
24
|
import ControlInput from "./components/controls/hoc/control_input";
|
|
24
25
|
import ControlMultiSelect from "./components/controls/hoc/control_multi_select";
|
|
25
26
|
import ControlRadio from "./components/controls/hoc/control_radio";
|
|
@@ -61,6 +62,7 @@ import IconMobile from "./assets/icon_mobile";
|
|
|
61
62
|
import IconTablet from "./assets/icon_tablet";
|
|
62
63
|
import IconTick from "./assets/icon_tick";
|
|
63
64
|
import IconWarning from "./assets/icon_warning";
|
|
65
|
+
import ImagePicker from "./components/image_picker";
|
|
64
66
|
import Label from "./components/label";
|
|
65
67
|
import Link from "./components/link";
|
|
66
68
|
import Loader from "./components/loader";
|
|
@@ -75,13 +77,14 @@ import SearchListInput from "./components/search_list/components/search_list_inp
|
|
|
75
77
|
import SearchListResults from "./components/search_list/components/search_list_results";
|
|
76
78
|
import Select from "./components/dropdown/hoc/select";
|
|
77
79
|
import Slide from "./components/slide";
|
|
78
|
-
import SlideHeader from "./components/slide/components/slide_header";
|
|
79
80
|
import SlideContent from "./components/slide/components/slide_content";
|
|
80
81
|
import SlideFooter from "./components/slide/components/slide_footer";
|
|
82
|
+
import SlideHeader from "./components/slide/components/slide_header";
|
|
81
83
|
import SlideWrapper from "./components/slide/components/slide_wrapper";
|
|
82
84
|
import Spacing from "./components/spacing";
|
|
83
85
|
import Stack from "./components/stack";
|
|
84
86
|
import { TFilePickerFile } from "./components/file_picker/types";
|
|
87
|
+
import { TImagePickerFile } from "./components/image_picker/types";
|
|
85
88
|
import { TMessageBoxType } from "./components/message-box/types";
|
|
86
89
|
import Table from "./components/table";
|
|
87
90
|
import Tabs from "./components/tabs/components/tabs";
|
|
@@ -93,20 +96,20 @@ import TabsWrapper from "./components/tabs/components/tabs_wrapper";
|
|
|
93
96
|
import Tag from "./components/tag";
|
|
94
97
|
import TagsSelector from "./components/tags_selector";
|
|
95
98
|
import Tooltip from "./components/tooltip";
|
|
99
|
+
import { Typography } from "./components/typography";
|
|
96
100
|
import WithLoader from "./components/with_loader";
|
|
97
101
|
import { useDropdownContext } from "./components/dropdown/context";
|
|
98
102
|
import { useFlashMessenger } from "./components/flash_messenger/context";
|
|
99
103
|
import { useSearchList } from "./components/search_list/use_search_list";
|
|
100
104
|
import { useToggle } from "./components/dropdown/hooks";
|
|
101
|
-
import { Typography } from "./components/typography";
|
|
102
105
|
/**
|
|
103
106
|
* export hooks
|
|
104
107
|
*/
|
|
105
108
|
/**
|
|
106
109
|
* export components
|
|
107
110
|
*/
|
|
108
|
-
export { Accordion, Button, Tooltip, ButtonsGroup, Dropdown, Select, MultiSelect, Label, Stack, Control, ControlInput, ControlCheckbox, ControlCheckboxSwitch, ControlRadio, ControlSelect, ControlRange, ControlMultiSelect, ControlTextarea, Gallery, Datepicker, ColorPicker, ControlColorPicker, ControlDatepicker, ControlFilePicker, Heading, Typography, Modal, ModalProvider, AbsoluteModal, RelativeModal, TabsWrapper, Tabs, TabsItem, TabsItemList, TabsPanel, TabsPanelList, SearchList, SearchListInput, SearchListResults, Tag, TagsSelector, ControlTagsSelector, Table, DataTable, Grid, DropdownContext, ModalContext, IconCalendar, Spacing, IconArrow, IconTick, FilePicker, ControlCellSelector, Hint, ControlRadioGroup, MessageBox, FlashMessenger, useFlashMessenger, Loader, WithLoader, useDropdownContext, FlashMessengerContext, FlashMessagesList, Link, IconTablet, IconMobile, IconLaptop, IconDesktop, IconWarning, useToggle, useSearchList, Slide, SlideWrapper, SlideHeader, SlideContent, SlideFooter };
|
|
111
|
+
export { Accordion, Button, Tooltip, ButtonsGroup, Dropdown, Select, MultiSelect, Label, Stack, Control, ControlInput, ControlCheckbox, ControlCheckboxSwitch, ControlRadio, ControlSelect, ControlRange, ControlMultiSelect, ControlTextarea, Gallery, Datepicker, ColorPicker, ControlColorPicker, ControlDatepicker, ControlFilePicker, ControlImagePicker, Heading, Typography, Modal, ModalProvider, AbsoluteModal, RelativeModal, TabsWrapper, Tabs, TabsItem, TabsItemList, TabsPanel, TabsPanelList, SearchList, SearchListInput, SearchListResults, Tag, TagsSelector, ControlTagsSelector, Table, DataTable, Grid, DropdownContext, ModalContext, IconCalendar, Spacing, IconArrow, IconTick, FilePicker, ImagePicker, ControlCellSelector, Hint, ControlRadioGroup, MessageBox, FlashMessenger, useFlashMessenger, Loader, WithLoader, useDropdownContext, FlashMessengerContext, FlashMessagesList, Link, IconTablet, IconMobile, IconLaptop, IconDesktop, IconWarning, useToggle, useSearchList, Slide, SlideWrapper, SlideHeader, SlideContent, SlideFooter };
|
|
109
112
|
/**
|
|
110
113
|
* export types
|
|
111
114
|
*/
|
|
112
|
-
export type { IDropdownProps, ISelectOption, IHeadingProps, ICellProps, IIRowProps, ITableProps, IDropdownContext, IControlRadioGroupOption, IColor, IDatepickerRange, TFilePickerFile, TMessageBoxType, ILoaderProps, IWithLoader, TFlashMessage, TFlashMessageExtended };
|
|
115
|
+
export type { IDropdownProps, ISelectOption, IHeadingProps, ICellProps, IIRowProps, ITableProps, IDropdownContext, IControlRadioGroupOption, IColor, IDatepickerRange, TFilePickerFile, TImagePickerFile, TMessageBoxType, ILoaderProps, IWithLoader, TFlashMessage, TFlashMessageExtended };
|
|
@@ -23,6 +23,9 @@ export { default as ControlDatepicker } from './components/controls/hoc/control_
|
|
|
23
23
|
export { default as FilePicker } from './components/file_picker/index.js';
|
|
24
24
|
export { default as ControlFilePicker } from './components/controls/hoc/control_file_picker/index.js';
|
|
25
25
|
export { default as ControlInput } from './components/controls/hoc/control_input/index.js';
|
|
26
|
+
export { default as Spacing } from './components/spacing/index.js';
|
|
27
|
+
export { default as ImagePicker } from './components/image_picker/index.js';
|
|
28
|
+
export { default as ControlImagePicker } from './components/controls/hoc/control_image_picker/index.js';
|
|
26
29
|
export { default as MultiSelect } from './components/dropdown/hoc/multiselect/index.js';
|
|
27
30
|
export { default as ControlMultiSelect } from './components/controls/hoc/control_multi_select/index.js';
|
|
28
31
|
export { default as ControlRadio } from './components/controls/hoc/control_radio/index.js';
|
|
@@ -59,11 +62,10 @@ export { useSearchList } from './components/search_list/use_search_list.js';
|
|
|
59
62
|
export { SearchListInput } from './components/search_list/components/search_list_input.js';
|
|
60
63
|
export { SearchListResults } from './components/search_list/components/search_list_results.js';
|
|
61
64
|
export { default as Slide } from './components/slide/index.js';
|
|
62
|
-
export { SlideHeader } from './components/slide/components/slide_header.js';
|
|
63
65
|
export { SlideContent } from './components/slide/components/slide_content.js';
|
|
64
66
|
export { SlideFooter } from './components/slide/components/slide_footer.js';
|
|
67
|
+
export { SlideHeader } from './components/slide/components/slide_header.js';
|
|
65
68
|
export { SlideWrapper } from './components/slide/components/slide_wrapper.js';
|
|
66
|
-
export { default as Spacing } from './components/spacing/index.js';
|
|
67
69
|
export { default as Tabs } from './components/tabs/components/tabs.js';
|
|
68
70
|
export { TabsItem } from './components/tabs/components/tabs_item.js';
|
|
69
71
|
export { TabsItemList } from './components/tabs/components/tabs_item_list.js';
|
|
@@ -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;"}
|
|
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;"}
|
|
@@ -48,5 +48,8 @@
|
|
|
48
48
|
"Selected cell 6": "Bottom left",
|
|
49
49
|
"Selected cell 7": "Bottom center",
|
|
50
50
|
"Selected cell 8": "Bottom right",
|
|
51
|
-
"Drag file or select": "Drag file or select"
|
|
51
|
+
"Drag file or select": "Drag file or select",
|
|
52
|
+
"Drag a file here or browse": "Drag a file here or browse",
|
|
53
|
+
"supported format": "supported format",
|
|
54
|
+
"The value cannot be greater than the width of the uploaded file": "The value cannot be greater than the width of the uploaded file"
|
|
52
55
|
}
|
|
@@ -75,7 +75,10 @@ var en = {
|
|
|
75
75
|
"Selected cell 6": "Bottom left",
|
|
76
76
|
"Selected cell 7": "Bottom center",
|
|
77
77
|
"Selected cell 8": "Bottom right",
|
|
78
|
-
"Drag file or select": "Drag file or select"
|
|
78
|
+
"Drag file or select": "Drag file or select",
|
|
79
|
+
"Drag a file here or browse": "Drag a file here or browse",
|
|
80
|
+
"supported format": "supported format",
|
|
81
|
+
"The value cannot be greater than the width of the uploaded file": "The value cannot be greater than the width of the uploaded file"
|
|
79
82
|
};
|
|
80
83
|
|
|
81
84
|
export default en;
|
|
@@ -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;"}
|
|
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;"}
|
|
@@ -48,5 +48,8 @@
|
|
|
48
48
|
"Selected cell 6": "Dół z lewej",
|
|
49
49
|
"Selected cell 7": "Dół na środku",
|
|
50
50
|
"Selected cell 8": "Dół z prawej",
|
|
51
|
-
"Drag file or select": "Przeciągnij plik lub wybierz"
|
|
51
|
+
"Drag file or select": "Przeciągnij plik lub wybierz",
|
|
52
|
+
"Drag a file here or browse": "Przeciągnij lub wybierz plik z dysku",
|
|
53
|
+
"supported format": "obsługiwany format",
|
|
54
|
+
"The value cannot be greater than the width of the uploaded file": "Wartość nie może być większa od szerokości wgranego pliku"
|
|
52
55
|
}
|
|
@@ -75,7 +75,10 @@ var pl = {
|
|
|
75
75
|
"Selected cell 6": "Dół z lewej",
|
|
76
76
|
"Selected cell 7": "Dół na środku",
|
|
77
77
|
"Selected cell 8": "Dół z prawej",
|
|
78
|
-
"Drag file or select": "Przeciągnij plik lub wybierz"
|
|
78
|
+
"Drag file or select": "Przeciągnij plik lub wybierz",
|
|
79
|
+
"Drag a file here or browse": "Przeciągnij lub wybierz plik z dysku",
|
|
80
|
+
"supported format": "obsługiwany format",
|
|
81
|
+
"The value cannot be greater than the width of the uploaded file": "Wartość nie może być większa od szerokości wgranego pliku"
|
|
79
82
|
};
|
|
80
83
|
|
|
81
84
|
export default pl;
|
|
@@ -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;"}
|
|
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;"}
|