test-stpr-ui-kit 0.6.15 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +52 -9
- package/dist/components/Accordion/Accordion.css +1 -0
- package/dist/components/Accordion/Accordion.d.ts +3 -0
- package/dist/components/Accordion/Accordion.js +78 -0
- package/dist/components/Accordion/Accordion.module.scss.js +37 -0
- package/dist/components/Accordion/index.d.ts +2 -0
- package/dist/components/Accordion/types/index.d.ts +22 -0
- package/dist/components/ApplyButtons/ApplyButtons.css +1 -0
- package/dist/components/ApplyButtons/ApplyButtons.d.ts +3 -0
- package/dist/components/ApplyButtons/ApplyButtons.js +67 -0
- package/dist/components/ApplyButtons/ApplyButtons.module.scss.js +16 -0
- package/dist/components/ApplyButtons/index.d.ts +2 -0
- package/dist/components/ApplyButtons/types/index.d.ts +24 -0
- package/dist/components/AuthProtected/AuthProtected.d.ts +3 -0
- package/dist/components/AuthProtected/AuthProtected.js +37 -0
- package/dist/components/AuthProtected/index.d.ts +2 -0
- package/dist/components/AuthProtected/types/index.d.ts +11 -0
- package/dist/components/BaseTooltip/BaseTooltip.css +1 -0
- package/dist/components/BaseTooltip/BaseTooltip.d.ts +3 -0
- package/dist/components/BaseTooltip/BaseTooltip.js +25 -0
- package/dist/components/BaseTooltip/BaseTooltip.module.scss.js +11 -0
- package/dist/components/BaseTooltip/index.d.ts +2 -0
- package/dist/components/BaseTooltip/types/index.d.ts +8 -0
- package/dist/components/Breadcrumb/Breadcrumb.css +1 -0
- package/dist/components/Breadcrumb/Breadcrumb.d.ts +3 -0
- package/dist/components/Breadcrumb/Breadcrumb.js +42 -0
- package/dist/components/Breadcrumb/Breadcrumb.module.scss.js +17 -0
- package/dist/components/Breadcrumb/index.d.ts +2 -0
- package/dist/components/Breadcrumb/types/index.d.ts +11 -0
- package/dist/components/Button/Button.css +1 -0
- package/dist/components/Button/Button.d.ts +3 -0
- package/dist/components/Button/Button.js +74 -0
- package/dist/components/Button/Button.module.scss.js +33 -0
- package/dist/components/Button/index.d.ts +2 -0
- package/dist/components/Button/types/index.d.ts +24 -0
- package/dist/components/Checkbox/Checkbox.css +1 -0
- package/dist/components/Checkbox/Checkbox.d.ts +3 -0
- package/dist/components/Checkbox/Checkbox.js +72 -0
- package/dist/components/Checkbox/Checkbox.module.scss.js +33 -0
- package/dist/components/Checkbox/index.d.ts +2 -0
- package/dist/components/Checkbox/types/index.d.ts +24 -0
- package/dist/components/Confirm/Confirm.d.ts +3 -0
- package/dist/components/Confirm/Confirm.js +85 -0
- package/dist/components/Confirm/index.d.ts +2 -0
- package/dist/components/Confirm/types/index.d.ts +7 -0
- package/dist/components/ContextMenu/ContextMenu.css +1 -0
- package/dist/components/ContextMenu/ContextMenu.d.ts +3 -0
- package/dist/components/ContextMenu/ContextMenu.js +39 -0
- package/dist/components/ContextMenu/ContextMenu.module.scss.js +13 -0
- package/dist/components/ContextMenu/index.d.ts +2 -0
- package/dist/components/ContextMenu/types/index.d.ts +12 -0
- package/dist/components/DatePicker/DatePicker.css +1 -0
- package/dist/components/DatePicker/DatePicker.d.ts +4 -0
- package/dist/components/DatePicker/DatePicker.js +198 -0
- package/dist/components/DatePicker/DatePicker.module.scss.js +31 -0
- package/dist/components/DatePicker/index.d.ts +2 -0
- package/dist/components/DatePicker/types/index.d.ts +33 -0
- package/dist/components/DatePickerInput/DatePickerInput.css +1 -0
- package/dist/components/DatePickerInput/DatePickerInput.d.ts +3 -0
- package/dist/components/DatePickerInput/DatePickerInput.js +101 -0
- package/dist/components/DatePickerInput/DatePickerInput.module.scss.js +25 -0
- package/dist/components/DatePickerInput/index.d.ts +2 -0
- package/dist/components/DatePickerInput/types/index.d.ts +32 -0
- package/dist/components/DefaultDropzone/DefaultDropzone.d.ts +3 -0
- package/dist/components/DefaultDropzone/DefaultDropzone.js +11 -0
- package/dist/components/DefaultDropzone/hooks/useDefaultDropzone.d.ts +2 -0
- package/dist/components/DefaultDropzone/hooks/useDefaultDropzone.js +5 -0
- package/dist/components/DefaultDropzone/index.d.ts +2 -0
- package/dist/components/DefaultDropzone/types/index.d.ts +10 -0
- package/dist/components/Dropdown/Dropdown.css +1 -0
- package/dist/components/Dropdown/Dropdown.d.ts +3 -0
- package/dist/components/Dropdown/Dropdown.js +68 -0
- package/dist/components/Dropdown/Dropdown.module.scss.js +21 -0
- package/dist/components/Dropdown/index.d.ts +2 -0
- package/dist/components/Dropdown/types/index.d.ts +14 -0
- package/dist/components/EllipsisTextWithTooltip/EllipsisTextWithTooltip.css +1 -0
- package/dist/components/EllipsisTextWithTooltip/EllipsisTextWithTooltip.d.ts +3 -0
- package/dist/components/EllipsisTextWithTooltip/EllipsisTextWithTooltip.js +75 -0
- package/dist/components/EllipsisTextWithTooltip/EllipsisTextWithTooltip.module.scss.js +11 -0
- package/dist/components/EllipsisTextWithTooltip/index.d.ts +2 -0
- package/dist/components/EllipsisTextWithTooltip/types/index.d.ts +13 -0
- package/dist/components/EllipsisTextWithTooltip/utils/index.d.ts +2 -0
- package/dist/components/EllipsisTextWithTooltip/utils/index.js +5 -0
- package/dist/components/Form/Form.css +1 -0
- package/dist/components/Form/Form.d.ts +3 -0
- package/dist/components/Form/Form.js +28 -0
- package/dist/components/Form/Form.module.scss.js +15 -0
- package/dist/components/Form/index.d.ts +2 -0
- package/dist/components/Form/types/index.d.ts +13 -0
- package/dist/components/Icons/Icon.css +1 -0
- package/dist/components/Icons/Icon.d.ts +43 -0
- package/dist/components/Icons/Icon.js +136 -0
- package/dist/components/Icons/Icon.module.scss.js +7 -0
- package/dist/components/Icons/index.d.ts +3 -0
- package/dist/components/Icons/types/index.d.ts +47 -0
- package/dist/components/Icons/types/index.js +4 -0
- package/dist/components/IfcPreview/IfcPreview.css +1 -0
- package/dist/components/IfcPreview/IfcPreview.d.ts +3 -0
- package/dist/components/IfcPreview/IfcPreview.js +104 -0
- package/dist/components/IfcPreview/IfcPreview.module.scss.js +37 -0
- package/dist/components/IfcPreview/components/IfcPreviewCard/IfcPreviewCard.d.ts +14 -0
- package/dist/components/IfcPreview/components/IfcPreviewCard/IfcPreviewCard.js +79 -0
- package/dist/components/IfcPreview/components/IfcPreviewCard/index.d.ts +1 -0
- package/dist/components/IfcPreview/components/IfcPreviewViewerLayer/IfcPreviewViewerLayer.d.ts +18 -0
- package/dist/components/IfcPreview/components/IfcPreviewViewerLayer/IfcPreviewViewerLayer.js +59 -0
- package/dist/components/IfcPreview/components/IfcPreviewViewerLayer/index.d.ts +1 -0
- package/dist/components/IfcPreview/constants/index.d.ts +3 -0
- package/dist/components/IfcPreview/constants/index.js +6 -0
- package/dist/components/IfcPreview/hooks/useIfcPreviewModel.d.ts +20 -0
- package/dist/components/IfcPreview/hooks/useIfcPreviewModel.js +34 -0
- package/dist/components/IfcPreview/hooks/useIfcPreviewViewer.d.ts +30 -0
- package/dist/components/IfcPreview/hooks/useIfcPreviewViewer.js +73 -0
- package/dist/components/IfcPreview/index.d.ts +2 -0
- package/dist/components/IfcPreview/types/index.d.ts +52 -0
- package/dist/components/IfcPreview/utils/file-hellper.d.ts +2 -0
- package/dist/components/IfcPreview/utils/file-hellper.js +7 -0
- package/dist/components/IfcPreview/utils/fileSizeLimit.d.ts +7 -0
- package/dist/components/IfcPreview/utils/fileSizeLimit.js +8 -0
- package/dist/components/IfcPreview/utils/modelSource.d.ts +7 -0
- package/dist/components/IfcPreview/utils/modelSource.js +35 -0
- package/dist/components/IfcViewer/IfcViewer.css +1 -0
- package/dist/components/IfcViewer/IfcViewer.d.ts +3 -0
- package/dist/components/IfcViewer/IfcViewer.js +71 -0
- package/dist/components/IfcViewer/IfcViewer.module.scss.js +13 -0
- package/dist/components/IfcViewer/index.d.ts +2 -0
- package/dist/components/IfcViewer/types/index.d.ts +12 -0
- package/dist/components/IfcViewer/utils/fetchIfc.d.ts +1 -0
- package/dist/components/IfcViewer/utils/fetchIfc.js +9 -0
- package/dist/components/IfcViewer/utils/formatMeshProgress.d.ts +1 -0
- package/dist/components/IfcViewer/utils/formatMeshProgress.js +4 -0
- package/dist/components/IfcViewer/utils/ifcWebViewer.d.ts +14 -0
- package/dist/components/IfcViewer/utils/ifcWebViewer.js +120 -0
- package/dist/components/Input/Input.css +1 -0
- package/dist/components/Input/Input.d.ts +3 -0
- package/dist/components/Input/Input.js +121 -0
- package/dist/components/Input/Input.module.scss.js +33 -0
- package/dist/components/Input/index.d.ts +2 -0
- package/dist/components/Input/types/index.d.ts +40 -0
- package/dist/components/Label/Label.css +1 -0
- package/dist/components/Label/Label.d.ts +3 -0
- package/dist/components/Label/Label.js +36 -0
- package/dist/components/Label/Label.module.scss.js +9 -0
- package/dist/components/Label/index.d.ts +2 -0
- package/dist/components/Label/types/index.d.ts +9 -0
- package/dist/components/Layer/Layer.css +1 -0
- package/dist/components/Layer/Layer.d.ts +3 -0
- package/dist/components/Layer/Layer.js +26 -0
- package/dist/components/Layer/Layer.module.scss.js +9 -0
- package/dist/components/Layer/index.d.ts +2 -0
- package/dist/components/Layer/types/index.d.ts +7 -0
- package/dist/components/MediaContextProvider/MediaContextProvider.d.ts +3 -0
- package/dist/components/MediaContextProvider/MediaContextProvider.js +25 -0
- package/dist/components/MediaContextProvider/constants/index.d.ts +3 -0
- package/dist/components/MediaContextProvider/constants/index.js +11 -0
- package/dist/components/MediaContextProvider/hooks/index.d.ts +8 -0
- package/dist/components/MediaContextProvider/hooks/index.js +14 -0
- package/dist/components/MediaContextProvider/index.d.ts +4 -0
- package/dist/components/MediaContextProvider/types/index.d.ts +23 -0
- package/dist/components/Modal/Modal.css +1 -0
- package/dist/components/Modal/Modal.d.ts +3 -0
- package/dist/components/Modal/Modal.js +89 -0
- package/dist/components/Modal/Modal.module.scss.js +56 -0
- package/dist/components/Modal/hooks/index.d.ts +17 -0
- package/dist/components/Modal/hooks/index.js +25 -0
- package/dist/components/Modal/index.d.ts +3 -0
- package/dist/components/Modal/types/index.d.ts +24 -0
- package/dist/components/Portal/Potral.d.ts +3 -0
- package/dist/components/Portal/Potral.js +18 -0
- package/dist/components/Portal/index.d.ts +2 -0
- package/dist/components/Portal/types/index.d.ts +5 -0
- package/dist/components/ProgressWrapper/ProgressWrapper.css +1 -0
- package/dist/components/ProgressWrapper/ProgressWrapper.d.ts +3 -0
- package/dist/components/ProgressWrapper/ProgressWrapper.js +50 -0
- package/dist/components/ProgressWrapper/ProgressWrapper.module.scss.js +17 -0
- package/dist/components/ProgressWrapper/constants/index.d.ts +1 -0
- package/dist/components/ProgressWrapper/constants/index.js +4 -0
- package/dist/components/ProgressWrapper/hooks/index.d.ts +5 -0
- package/dist/components/ProgressWrapper/hooks/index.js +41 -0
- package/dist/components/ProgressWrapper/index.d.ts +3 -0
- package/dist/components/ProgressWrapper/types/index.d.ts +17 -0
- package/dist/components/Select/Select.css +1 -0
- package/dist/components/Select/Select.d.ts +3 -0
- package/dist/components/Select/Select.js +195 -0
- package/dist/components/Select/Select.module.scss.js +69 -0
- package/dist/components/Select/constants/index.d.ts +3 -0
- package/dist/components/Select/constants/index.js +5 -0
- package/dist/components/Select/hooks/useSelect.d.ts +28 -0
- package/dist/components/Select/hooks/useSelect.js +73 -0
- package/dist/components/Select/index.d.ts +2 -0
- package/dist/components/Select/types/index.d.ts +50 -0
- package/dist/components/Skeleton/Skeleton.css +1 -0
- package/dist/components/Skeleton/Skeleton.d.ts +3 -0
- package/dist/components/Skeleton/Skeleton.js +38 -0
- package/dist/components/Skeleton/Skeleton.module.scss.js +13 -0
- package/dist/components/Skeleton/index.d.ts +2 -0
- package/dist/components/Skeleton/typs/index.d.ts +10 -0
- package/dist/components/Spinner/Spinner.css +1 -0
- package/dist/components/Spinner/Spinner.d.ts +3 -0
- package/dist/components/Spinner/Spinner.js +46 -0
- package/dist/components/Spinner/Spinner.module.scss.js +28 -0
- package/dist/components/Spinner/index.d.ts +2 -0
- package/dist/components/Spinner/types/index.d.ts +9 -0
- package/dist/components/Table/Table.css +1 -0
- package/dist/components/Table/Table.d.ts +2 -0
- package/dist/components/Table/Table.js +219 -0
- package/dist/components/Table/Table.module.scss.js +41 -0
- package/dist/components/Table/hooks/index.d.ts +12 -0
- package/dist/components/Table/hooks/index.js +28 -0
- package/dist/components/Table/index.d.ts +3 -0
- package/dist/components/Table/types/index.d.ts +39 -0
- package/dist/components/Table/utils/index.d.ts +2 -0
- package/dist/components/Table/utils/index.js +5 -0
- package/dist/components/Tabs/Tabs.css +1 -0
- package/dist/components/Tabs/Tabs.d.ts +3 -0
- package/dist/components/Tabs/Tabs.js +73 -0
- package/dist/components/Tabs/Tabs.module.scss.js +26 -0
- package/dist/components/Tabs/index.d.ts +2 -0
- package/dist/components/Tabs/types/index.d.ts +25 -0
- package/dist/components/Text/Text.css +1 -0
- package/dist/components/Text/Text.d.ts +3 -0
- package/dist/components/Text/Text.js +39 -0
- package/dist/components/Text/Text.module.scss.js +17 -0
- package/dist/components/Text/index.d.ts +2 -0
- package/dist/components/Text/types/index.d.ts +15 -0
- package/dist/components/TextWithLabel/TextWithLabel.css +1 -0
- package/dist/components/TextWithLabel/TextWithLabel.d.ts +3 -0
- package/dist/components/TextWithLabel/TextWithLabel.js +39 -0
- package/dist/components/TextWithLabel/TextWithLabel.module.scss.js +9 -0
- package/dist/components/TextWithLabel/index.d.ts +2 -0
- package/dist/components/TextWithLabel/types/index.d.ts +6 -0
- package/dist/components/Textarea/Textarea.css +1 -0
- package/dist/components/Textarea/Textarea.d.ts +3 -0
- package/dist/components/Textarea/Textarea.js +132 -0
- package/dist/components/Textarea/Textarea.module.scss.js +35 -0
- package/dist/components/Textarea/index.d.ts +2 -0
- package/dist/components/Textarea/types/index.d.ts +45 -0
- package/dist/components/Tooltip/Tooltip.css +1 -0
- package/dist/components/Tooltip/Tooltip.d.ts +4 -0
- package/dist/components/Tooltip/Tooltip.js +191 -0
- package/dist/components/Tooltip/Tooltip.module.scss.js +13 -0
- package/dist/components/Tooltip/index.d.ts +3 -0
- package/dist/components/Tooltip/types/index.d.ts +36 -0
- package/dist/components/Tooltip/types/index.js +4 -0
- package/dist/components/UploadFiles/UploadFiles.css +1 -0
- package/dist/components/UploadFiles/UploadFiles.d.ts +3 -0
- package/dist/components/UploadFiles/UploadFiles.js +238 -0
- package/dist/components/UploadFiles/UploadFiles.module.scss.js +73 -0
- package/dist/components/UploadFiles/index.d.ts +2 -0
- package/dist/components/UploadFiles/types/index.d.ts +33 -0
- package/dist/components/UploadFiles/utils/index.d.ts +12 -0
- package/dist/components/UploadFiles/utils/index.js +67 -0
- package/dist/components/ViewImageModal/ViewImageModal.css +1 -0
- package/dist/components/ViewImageModal/ViewImageModal.d.ts +3 -0
- package/dist/components/ViewImageModal/ViewImageModal.js +71 -0
- package/dist/components/ViewImageModal/ViewImageModal.module.scss.js +19 -0
- package/dist/components/ViewImageModal/index.d.ts +2 -0
- package/dist/components/ViewImageModal/types/index.d.ts +13 -0
- package/dist/components-assets/IfcPreview/web-ifc/web-ifc.wasm +0 -0
- package/dist/hooks/useClickOutside.d.ts +14 -0
- package/dist/hooks/useClickOutside.js +15 -0
- package/dist/images/add_file.svg.js +5 -0
- package/dist/images/add_user.svg.js +5 -0
- package/dist/images/arrow-bottom.svg.js +5 -0
- package/dist/images/calendar.svg.js +5 -0
- package/dist/images/check.svg.js +5 -0
- package/dist/images/chevron_down.svg.js +5 -0
- package/dist/images/close.svg.js +5 -0
- package/dist/images/copy.svg.js +5 -0
- package/dist/images/dots.svg.js +5 -0
- package/dist/images/download.svg.js +5 -0
- package/dist/images/edit.svg.js +5 -0
- package/dist/images/eye.svg.js +5 -0
- package/dist/images/file.svg.js +5 -0
- package/dist/images/file_not_filled.svg.js +5 -0
- package/dist/images/filter.svg.js +5 -0
- package/dist/images/folder.svg.js +5 -0
- package/dist/images/history_clock.svg.js +5 -0
- package/dist/images/info.svg.js +5 -0
- package/dist/images/info_error.svg.js +5 -0
- package/dist/images/layers-three.svg.js +5 -0
- package/dist/images/link-angled.svg.js +5 -0
- package/dist/images/logout.svg.js +5 -0
- package/dist/images/minus.svg.js +5 -0
- package/dist/images/pause-circle.svg.js +5 -0
- package/dist/images/play-circle.svg.js +5 -0
- package/dist/images/plus.svg.js +5 -0
- package/dist/images/plus_circle.svg.js +5 -0
- package/dist/images/plus_square.svg.js +5 -0
- package/dist/images/refresh.svg.js +5 -0
- package/dist/images/save.svg.js +5 -0
- package/dist/images/search.svg.js +5 -0
- package/dist/images/select_chevron_down.svg.js +5 -0
- package/dist/images/terminal_square.svg.js +5 -0
- package/dist/images/trash.svg.js +5 -0
- package/dist/images/update.svg.js +5 -0
- package/dist/images/upload-top.svg.js +5 -0
- package/dist/images/upload.svg.js +5 -0
- package/dist/images/user-right.svg.js +5 -0
- package/dist/images/warning_color.svg.js +5 -0
- package/dist/styles/tokens.css +250 -0
- package/dist/test-stpr-ui-kit.d.ts +36 -0
- package/dist/test-stpr-ui-kit.js +43 -15043
- package/dist/utils/index.d.ts +2 -0
- package/dist/utils/sleep.d.ts +1 -0
- package/dist/utils/stringHelper.d.ts +13 -0
- package/dist/utils/stringHelper.js +4 -0
- package/package.json +34 -30
- package/dist/images/icon.svg +0 -8
- package/dist/images/viewImageExample.jpg +0 -0
- package/dist/test-stpr-ui-kit.css +0 -1
- package/dist/test-stpr-ui-kit.es.d.ts +0 -829
- package/dist/test-stpr-ui-kit.umd.cjs +0 -9
- /package/dist/{images → components-assets/ViewImageModal}/fallBackSrc.jpeg +0 -0
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M19.5 14V17.3333C19.5 17.7754 19.3244 18.1993 19.0118 18.5118C18.6993 18.8244 18.2754 19 17.8333 19H6.16667C5.72464 19 5.30072 18.8244 4.98816 18.5118C4.67559 18.1993 4.5 17.7754 4.5 17.3333V14", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { d: "M7.83325 9.83333L11.9999 14L16.1666 9.83333", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { d: "M12 14V3.99995", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M13.9487 6.9516L17.5487 10.5516M4.94873 19.5516L9.31472 18.6719C9.54649 18.6252 9.75931 18.511 9.92645 18.3438L19.7001 8.56478C20.1687 8.09593 20.1684 7.33594 19.6994 6.86748L17.629 4.7994C17.1602 4.33113 16.4006 4.33145 15.9322 4.80011L6.15749 14.5802C5.99068 14.7471 5.87678 14.9595 5.83003 15.1908L4.94873 19.5516Z", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M2.01677 10.5917C1.90328 10.412 1.84654 10.3222 1.81477 10.1836C1.79091 10.0795 1.79091 9.91531 1.81477 9.81122C1.84654 9.67263 1.90328 9.58278 2.01677 9.40308C2.95461 7.9181 5.74617 4.16406 10.0003 4.16406C14.2545 4.16406 17.0461 7.9181 17.9839 9.40308C18.0974 9.58278 18.1541 9.67263 18.1859 9.81122C18.2098 9.91531 18.2098 10.0795 18.1859 10.1836C18.1541 10.3222 18.0974 10.412 17.9839 10.5917C17.0461 12.0767 14.2545 15.8307 10.0003 15.8307C5.74617 15.8307 2.95461 12.0767 2.01677 10.5917Z", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { d: "M10.0003 12.4974C11.381 12.4974 12.5003 11.3781 12.5003 9.9974C12.5003 8.61668 11.381 7.4974 10.0003 7.4974C8.61962 7.4974 7.50034 8.61668 7.50034 9.9974C7.50034 11.3781 8.61962 12.4974 10.0003 12.4974Z", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 26 32", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M14.125 0V11.2002C14.1251 11.4762 14.3489 11.7002 14.625 11.7002H26V28.7998C26 29.6485 25.6573 30.4624 25.0479 31.0625C24.4384 31.6626 23.612 32 22.75 32H3.25C2.38805 32 1.56164 31.6626 0.952148 31.0625C0.342655 30.4624 0 29.6485 0 28.7998V3.2002C0 2.3515 0.342655 1.53762 0.952148 0.9375C1.56164 0.337386 2.38805 0 3.25 0H14.125ZM25.4922 10.7002H15.125V0.492188L25.4922 10.7002Z", fill: "currentColor" }));
|
|
3
|
+
export {
|
|
4
|
+
l as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M14 2.26953V6.40007C14 6.96012 14 7.24015 14.109 7.45406C14.2049 7.64222 14.3578 7.7952 14.546 7.89108C14.7599 8.00007 15.0399 8.00007 15.6 8.00007H19.7305M16 13H8M16 17H8M10 9H8M14 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9265 19.673 20.362C20 19.7202 20 18.8802 20 17.2V8L14 2Z", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as C from "react";
|
|
2
|
+
const t = (e) => /* @__PURE__ */ C.createElement("svg", { width: 24, height: 24, viewBox: "0 0 18 19", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ C.createElement("path", { d: "M17.0002 2.6001C17.0002 2.04005 16.9999 1.75981 16.8909 1.5459C16.795 1.35774 16.6426 1.20487 16.4544 1.10899C16.2405 1 15.9599 1 15.3999 1H2.59985C2.0398 1 1.76005 1 1.54614 1.10899C1.35798 1.20487 1.20511 1.35774 1.10924 1.5459C1.00024 1.75981 1.00024 2.04005 1.00024 2.6001V3.33736C1.00024 3.58195 1.00024 3.70433 1.02787 3.81942C1.05237 3.92146 1.09288 4.01893 1.14771 4.1084C1.20953 4.20928 1.29615 4.29591 1.46899 4.46875L6.53174 9.53149C6.70468 9.70443 6.79068 9.79044 6.85252 9.89135C6.90735 9.98082 6.9484 10.0786 6.9729 10.1807C7.00025 10.2946 7.00025 10.4155 7.00024 10.6552V15.411C7.00024 16.2682 7.00024 16.6971 7.18079 16.9552C7.33844 17.1806 7.58165 17.331 7.85376 17.3712C8.16538 17.4172 8.54895 17.2257 9.31567 16.8424L10.1157 16.4424C10.4367 16.2819 10.5969 16.2013 10.7142 16.0815C10.8179 15.9756 10.8972 15.8485 10.9456 15.7084C11.0002 15.5499 11.0002 15.37 11.0002 15.011V10.6626C11.0002 10.418 11.0002 10.2958 11.0279 10.1807C11.0524 10.0786 11.0929 9.98082 11.1477 9.89135C11.2091 9.79111 11.2949 9.70533 11.4656 9.53469L11.469 9.53149L16.5317 4.46875C16.7047 4.2958 16.7907 4.20932 16.8525 4.1084C16.9073 4.01893 16.9484 3.92146 16.9729 3.81942C17.0002 3.70551 17.0002 3.58444 17.0002 3.3448V2.6001Z", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
t as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M10.8334 5.83333L9.9038 3.9741C9.63625 3.439 9.50247 3.17144 9.30289 2.97597C9.1264 2.80311 8.91368 2.67164 8.68014 2.59109C8.41605 2.5 8.11692 2.5 7.51866 2.5H4.33341C3.39999 2.5 2.93328 2.5 2.57676 2.68166C2.26316 2.84144 2.00819 3.09641 1.8484 3.41002C1.66675 3.76654 1.66675 4.23325 1.66675 5.16667V5.83333M1.66675 5.83333H14.3334C15.7335 5.83333 16.4336 5.83333 16.9684 6.10582C17.4388 6.3455 17.8212 6.72795 18.0609 7.19836C18.3334 7.73314 18.3334 8.4332 18.3334 9.83333V13.5C18.3334 14.9001 18.3334 15.6002 18.0609 16.135C17.8212 16.6054 17.4388 16.9878 16.9684 17.2275C16.4336 17.5 15.7335 17.5 14.3334 17.5H5.66675C4.26662 17.5 3.56655 17.5 3.03177 17.2275C2.56137 16.9878 2.17892 16.6054 1.93923 16.135C1.66675 15.6002 1.66675 14.9001 1.66675 13.5V5.83333Z", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 16 17", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M8 4.61111V8.5H11.8889M8 15.5C4.13401 15.5 1 12.366 1 8.5C1 4.63401 4.13401 1.5 8 1.5C11.866 1.5 15 4.63401 15 8.5C15 12.366 11.866 15.5 8 15.5Z", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { d: "M12 8V12", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { d: "M12 16H12.01", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (r) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 32 32", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...r }, /* @__PURE__ */ e.createElement("path", { d: "M16 0.5C24.5604 0.5 31.5 7.43959 31.5 16C31.5 24.5604 24.5604 31.5 16 31.5C7.43959 31.5 0.5 24.5604 0.5 16C0.5 7.43959 7.43959 0.5 16 0.5Z", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { d: "M16 22.4V16", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { d: "M16 9.59961H16.016", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const r = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M1.66675 10.0009L9.70194 14.0185C9.81126 14.0732 9.86592 14.1005 9.92325 14.1113C9.97403 14.1208 10.0261 14.1208 10.0769 14.1113C10.1342 14.1005 10.1889 14.0732 10.2982 14.0185L18.3334 10.0009M1.66675 14.1676L9.70194 18.1852C9.81126 18.2399 9.86592 18.2672 9.92325 18.278C9.97403 18.2875 10.0261 18.2875 10.0769 18.278C10.1342 18.2672 10.1889 18.2399 10.2982 18.1852L18.3334 14.1676M1.66675 5.83428L9.70194 1.81669C9.81126 1.76203 9.86592 1.7347 9.92325 1.72394C9.97403 1.71442 10.0261 1.71442 10.0769 1.72394C10.1342 1.7347 10.1889 1.76203 10.2982 1.81669L18.3334 5.83428L10.2982 9.85188C10.1889 9.90654 10.1342 9.93387 10.0769 9.94462C10.0261 9.95415 9.97403 9.95415 9.92325 9.94462C9.86592 9.93387 9.81126 9.90654 9.70194 9.85188L1.66675 5.83428Z", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
r as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M7.37851 10.1907L5.14505 12.4242C4.31092 13.2583 3.83124 14.3933 3.84001 15.5861C3.84877 16.7789 4.31796 17.9208 5.19167 18.7675C6.03836 19.6413 7.18048 20.1104 8.3731 20.1192C9.59293 20.1282 10.701 19.6755 11.5352 18.8414L13.7687 16.6079M16.6215 13.8097L18.8549 11.5762C19.6891 10.7421 20.1688 9.60711 20.16 8.4143C20.1512 7.22149 19.682 6.0796 18.8083 5.23287C17.9618 4.38638 16.8199 3.91717 15.6271 3.90841C14.4343 3.89964 13.2992 4.35209 12.465 5.18625L10.2315 7.4197M8.6131 15.3274L15.3135 8.62701", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M12 15L15 12M15 12L12 9M15 12H4M9 7.24859V7.2002C9 6.08009 9 5.51962 9.21799 5.0918C9.40973 4.71547 9.71547 4.40973 10.0918 4.21799C10.5196 4 11.0801 4 12.2002 4H16.8002C17.9203 4 18.4796 4 18.9074 4.21799C19.2837 4.40973 19.5905 4.71547 19.7822 5.0918C20 5.5192 20 6.07899 20 7.19691V16.8036C20 17.9215 20 18.4805 19.7822 18.9079C19.5905 19.2842 19.2837 19.5905 18.9074 19.7822C18.48 20 17.921 20 16.8031 20H12.1969C11.079 20 10.5192 20 10.0918 19.7822C9.71547 19.5905 9.40973 19.2839 9.21799 18.9076C9 18.4798 9 17.9201 9 16.8V16.75", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M5 12H19", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M6.33301 10.0007V6.00065M9.66634 10.0007V6.00065M14.6663 8.00065C14.6663 11.6825 11.6816 14.6673 7.99967 14.6673C4.31778 14.6673 1.33301 11.6825 1.33301 8.00065C1.33301 4.31875 4.31778 1.33398 7.99967 1.33398C11.6816 1.33398 14.6663 4.31875 14.6663 8.00065Z", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const r = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M7.99967 14.6673C11.6816 14.6673 14.6663 11.6825 14.6663 8.00065C14.6663 4.31875 11.6816 1.33398 7.99967 1.33398C4.31778 1.33398 1.33301 4.31875 1.33301 8.00065C1.33301 11.6825 4.31778 14.6673 7.99967 14.6673Z", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { d: "M6.33301 5.97754C6.33301 5.65935 6.33301 5.50025 6.3995 5.41144C6.45745 5.33403 6.54615 5.28561 6.64259 5.27872C6.75326 5.27082 6.88709 5.35685 7.15474 5.52891L10.3018 7.55202C10.5341 7.70133 10.6502 7.77598 10.6903 7.87091C10.7253 7.95385 10.7253 8.04745 10.6903 8.13039C10.6502 8.22532 10.5341 8.29997 10.3018 8.44928L7.15475 10.4724C6.88709 10.6445 6.75326 10.7305 6.64259 10.7226C6.54615 10.7157 6.45745 10.6673 6.3995 10.5899C6.33301 10.501 6.33301 10.342 6.33301 10.0238V5.97754Z", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
r as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M12 5V19", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { d: "M5 12H19", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as C from "react";
|
|
2
|
+
const t = (e) => /* @__PURE__ */ C.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, viewBox: "0 0 16 16", fill: "none", ...e }, /* @__PURE__ */ C.createElement("path", { d: "M8 14.4C4.472 14.4 1.6 11.528 1.6 8C1.6 4.472 4.472 1.6 8 1.6C11.528 1.6 14.4 4.472 14.4 8C14.4 11.528 11.528 14.4 8 14.4ZM8 0C6.94943 0 5.90914 0.206926 4.93853 0.608964C3.96793 1.011 3.08601 1.60028 2.34315 2.34315C0.842855 3.84344 0 5.87827 0 8C0 10.1217 0.842855 12.1566 2.34315 13.6569C3.08601 14.3997 3.96793 14.989 4.93853 15.391C5.90914 15.7931 6.94943 16 8 16C10.1217 16 12.1566 15.1571 13.6569 13.6569C15.1571 12.1566 16 10.1217 16 8C16 6.94943 15.7931 5.90914 15.391 4.93853C14.989 3.96793 14.3997 3.08601 13.6569 2.34315C12.914 1.60028 12.0321 1.011 11.0615 0.608964C10.0909 0.206926 9.05058 0 8 0ZM8.8 4H7.2V7.2H4V8.8H7.2V12H8.8V8.8H12V7.2H8.8V4Z", fill: "currentColor" }));
|
|
3
|
+
export {
|
|
4
|
+
t as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const r = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M19 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3Z", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { d: "M12 8V16", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { d: "M8 12H16", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
r as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M4.5 10.2222C4.5 10.2222 6.18841 7.79397 7.56007 6.34511C8.93174 4.89624 10.8272 4 12.9211 4C17.1068 4 20.5 7.58172 20.5 12C20.5 16.4183 17.1068 20 12.9211 20C9.46582 20 6.55062 17.5594 5.63833 14.2222M4.5 10.2222V4.88889M4.5 10.2222H9.55263", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const t = (C) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...C }, /* @__PURE__ */ e.createElement("path", { d: "M16.4444 20L7.55556 19.9998M16.4444 20L17.1583 19.9998C18.152 19.9998 18.6489 19.9998 19.0288 19.8063C19.3633 19.6358 19.636 19.3637 19.8064 19.0292C20 18.6493 20 18.1519 20 17.1582V9.52843C20 9.12948 20 8.92902 19.9575 8.73866C19.9195 8.56884 19.8571 8.40575 19.7717 8.25413C19.677 8.08595 19.544 7.93822 19.2826 7.64777L16.8335 4.92658C16.5306 4.58998 16.377 4.41938 16.1927 4.29687C16.0269 4.18667 15.8438 4.10541 15.6509 4.05588C15.4333 4 15.1998 4 14.7334 4H6.84462C5.84897 4 5.35077 4 4.97049 4.19376C4.63598 4.3642 4.36421 4.63597 4.19377 4.97048C4 5.35076 4 5.84895 4 6.84459V17.1556C4 18.1512 4 18.6484 4.19377 19.0286C4.36421 19.3631 4.63598 19.6358 4.97049 19.8063C5.3504 19.9998 5.84799 19.9998 6.8417 19.9998H7.55556M16.4444 20V16.6193C16.4444 15.6256 16.4444 15.1281 16.2509 14.7481C16.0804 14.4136 15.8077 14.1419 15.4732 13.9714C15.093 13.7777 14.5958 13.7777 13.6002 13.7777H10.4002C9.40452 13.7777 8.90633 13.7777 8.52604 13.9714C8.19153 14.1419 7.91976 14.4136 7.74932 14.7481C7.55556 15.1284 7.55556 15.6266 7.55556 16.6223V19.9998M14.6667 7.55552H9.33333", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
t as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M21 21L16.65 16.65M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M12 15.275L6 9.275L7.275 8L12 12.725L16.725 8L18 9.275L12 15.275Z", fill: "currentColor" }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const r = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, viewBox: "0 0 17 17", fill: "none", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M4.88889 10.6667L7.05556 8.5L4.88889 6.33333M9.22222 10.6667H12.1111M5.46667 15H11.5333C12.7468 15 13.3535 15 13.817 14.7638C14.2247 14.5561 14.5561 14.2247 14.7638 13.817C15 13.3535 15 12.7468 15 11.5333V5.46667C15 4.25322 15 3.6465 14.7638 3.18302C14.5561 2.77534 14.2247 2.44388 13.817 2.23615C13.3535 2 12.7468 2 11.5333 2H5.46667C4.25322 2 3.6465 2 3.18302 2.23615C2.77534 2.44388 2.44388 2.77534 2.23615 3.18302C2 3.6465 2 4.25322 2 5.46667V11.5333C2 12.7468 2 13.3535 2.23615 13.817C2.44388 14.2247 2.77534 14.5561 3.18302 14.7638C3.6465 15 4.25322 15 5.46667 15Z", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
r as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const r = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M3 6H5H21", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { d: "M19 6V20C19 20.5304 18.7893 21.0391 18.4142 21.4142C18.0391 21.7893 17.5304 22 17 22H7C6.46957 22 5.96086 21.7893 5.58579 21.4142C5.21071 21.0391 5 20.5304 5 20V6M8 6V4C8 3.46957 8.21071 2.96086 8.58579 2.58579C8.96086 2.21071 9.46957 2 10 2H14C14.5304 2 15.0391 2.21071 15.4142 2.58579C15.7893 2.96086 16 3.46957 16 4V6", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { d: "M10 11V17", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { d: "M14 11V17", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
r as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, viewBox: "0 0 20 20", fill: "none", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M7.12246 16.4728C9.12174 17.3598 11.503 17.3116 13.5421 16.1343C16.93 14.1783 18.0908 9.84618 16.1348 6.45828L15.9265 6.09743M3.86571 13.5417C1.9097 10.1538 3.07048 5.8217 6.45839 3.8657C8.49754 2.68839 10.8788 2.64022 12.878 3.52719M2.07812 13.6114L4.35483 14.2215L4.96488 11.9447M15.0358 8.05479L15.6459 5.77808L17.9226 6.38813", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M14 2H2M12 8.66667L8 4.66667M8 4.66667L4 8.66667M8 4.66667V14", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const r = (o) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "-2 -2 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...o }, /* @__PURE__ */ e.createElement("path", { d: "M2 10V17C2 17.5304 2.21071 18.0391 2.58579 18.4142C2.96086 18.7893 3.46957 19 4 19H16C16.5304 19 17.0391 18.7893 17.4142 18.4142C17.7893 18.0391 18 17.5304 18 17V10", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { d: "M14 5L10 1L6 5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { d: "M10 2V13", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
r as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M17.8327 19.5L20.3327 17M20.3327 17L17.8327 14.5M20.3327 17H15.3327M11.9993 14.9167H8.24935C7.08638 14.9167 6.50489 14.9167 6.03173 15.0602C4.96639 15.3834 4.13272 16.217 3.80955 17.2824C3.66602 17.7555 3.66602 18.337 3.66602 19.5M14.0827 8.25C14.0827 10.3211 12.4038 12 10.3327 12C8.26161 12 6.58268 10.3211 6.58268 8.25C6.58268 6.17893 8.26161 4.5 10.3327 4.5C12.4038 4.5 14.0827 6.17893 14.0827 8.25Z", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 26 26", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M12.971 2.24023L25.8228 24.5002H0.119141L12.971 2.24023Z", fill: "#002A64" }), /* @__PURE__ */ e.createElement("path", { d: "M13.0835 4.20023L25.2079 25.2002H0.959141L13.0835 4.20023Z", fill: "#036BFD" }), /* @__PURE__ */ e.createElement("path", { d: "M14.3991 21.0002H11.8791V23.5202H14.3991V21.0002Z", fill: "#F5F5F7" }), /* @__PURE__ */ e.createElement("path", { d: "M14.3991 10.6402H11.8791V19.8802H14.3991V10.6402Z", fill: "#F5F5F7" }));
|
|
3
|
+
export {
|
|
4
|
+
l as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
:root {
|
|
3
|
+
--color-white: #ffffff;
|
|
4
|
+
--color-black: #000000;
|
|
5
|
+
--color-woodsmoke: #131313;
|
|
6
|
+
--color-red: #ff2e00;
|
|
7
|
+
--color-red-hover: #e51722;
|
|
8
|
+
--color-red-pressed: #ff1a26;
|
|
9
|
+
--color-gray: #858585;
|
|
10
|
+
--color-light-gray: #bbbbbb;
|
|
11
|
+
--color-strange-gray: #d9d9d9;
|
|
12
|
+
--color-accent-blue: #036bfd;
|
|
13
|
+
--color-green-blue: #0255c9;
|
|
14
|
+
--color-aqua-blue: #3588fd;
|
|
15
|
+
--color-mramor-blue: #daeaff;
|
|
16
|
+
--color-light-blue: #daeaff;
|
|
17
|
+
--color-steel-gray: #c4d2e5;
|
|
18
|
+
--color-frost-blue: #c6deff;
|
|
19
|
+
--color-light-smoke: #f0f0f6;
|
|
20
|
+
--color-light-steel: #c6d2e3;
|
|
21
|
+
--color-alice-blue: #edf6fa;
|
|
22
|
+
--color-green: #1edcaf;
|
|
23
|
+
--color-dark-blue: #002a64;
|
|
24
|
+
--color-mint: #cdfff3;
|
|
25
|
+
--color-caribbean-green: #0cc79b;
|
|
26
|
+
--color-green-emerald: #00c974;
|
|
27
|
+
--color-orange-pizazz: #ff9500;
|
|
28
|
+
--color-strange-blue: #edf6fa;
|
|
29
|
+
--color-link-water: #cdd7e7;
|
|
30
|
+
--color-light-red: #ffeaea;
|
|
31
|
+
--color-light-green: #efffef;
|
|
32
|
+
--color-gray-chicago: #555555;
|
|
33
|
+
--color-light-orange: #fff9e3;
|
|
34
|
+
/* Primitive-collection */
|
|
35
|
+
/* Gray */
|
|
36
|
+
--spui-color-gray-50: oklch(0.985 0 0);
|
|
37
|
+
--spui-color-gray-100: oklch(0.97 0 0);
|
|
38
|
+
--spui-color-gray-200: oklch(0.955 0 0);
|
|
39
|
+
--spui-color-gray-300: oklch(0.88 0 0);
|
|
40
|
+
--spui-color-gray-400: oklch(0.7 0 0);
|
|
41
|
+
--spui-color-gray-500: oklch(0.6167 0 0);
|
|
42
|
+
--spui-color-gray-600: oklch(0.44 0 0);
|
|
43
|
+
--spui-color-gray-700: oklch(0.37 0 0);
|
|
44
|
+
--spui-color-gray-800: oklch(0.27 0 0);
|
|
45
|
+
--spui-color-gray-900: oklch(0.1867 0 0);
|
|
46
|
+
--spui-color-gray-950: oklch(0.145 0 0);
|
|
47
|
+
/* Pink */
|
|
48
|
+
--spui-color-pink-50: oklch(0.97 0.014 0) ️;
|
|
49
|
+
--spui-color-pink-100: oklch(0.93 0.034 0);
|
|
50
|
+
--spui-color-pink-200: oklch(0.86 0.074 0);
|
|
51
|
+
--spui-color-pink-300: oklch(0.81 0.114 0);
|
|
52
|
+
--spui-color-pink-400: oklch(0.75 0.164 0);
|
|
53
|
+
--spui-color-pink-500: oklch(0.7 0.204 0);
|
|
54
|
+
--spui-color-pink-600: oklch(0.64 0.244 0);
|
|
55
|
+
--spui-color-pink-700: oklch(0.54 0.214 0);
|
|
56
|
+
--spui-color-pink-800: oklch(0.43 0.174 0);
|
|
57
|
+
--spui-color-pink-900: oklch(0.35 0.14 0);
|
|
58
|
+
--spui-color-pink-950: oklch(0.3 0.11 0);
|
|
59
|
+
/* Red */
|
|
60
|
+
--spui-color-red-50: oklch(0.97 0.014 30);
|
|
61
|
+
--spui-color-red-100: oklch(0.93 0.03 30);
|
|
62
|
+
--spui-color-red-200: oklch(0.9 0.044 30);
|
|
63
|
+
--spui-color-red-300: oklch(0.84 0.084 30);
|
|
64
|
+
--spui-color-red-400: oklch(0.77 0.13 30);
|
|
65
|
+
--spui-color-red-500: oklch(0.67 0.21 30);
|
|
66
|
+
--spui-color-red-600: oklch(0.6 0.2 30);
|
|
67
|
+
--spui-color-red-700: oklch(0.45 0.18 30);
|
|
68
|
+
--spui-color-red-800: oklch(0.4 0.14 30);
|
|
69
|
+
--spui-color-red-900: oklch(0.32 0.12 30);
|
|
70
|
+
--spui-color-red-950: oklch(0.27 0.1 30);
|
|
71
|
+
/* Orange */
|
|
72
|
+
--spui-color-orange-50: oklch(0.97 0.014 60);
|
|
73
|
+
--spui-color-orange-100: oklch(0.94 0.034 60);
|
|
74
|
+
--spui-color-orange-200: oklch(0.91 0.054 60);
|
|
75
|
+
--spui-color-orange-300: oklch(0.87 0.084 60);
|
|
76
|
+
--spui-color-orange-400: oklch(0.82 0.104 60);
|
|
77
|
+
--spui-color-orange-500: oklch(0.77 0.144 60);
|
|
78
|
+
--spui-color-orange-600: oklch(0.7 0.16 60);
|
|
79
|
+
--spui-color-orange-700: oklch(0.53 0.12 60);
|
|
80
|
+
--spui-color-orange-800: oklch(0.57 0.13 60);
|
|
81
|
+
--spui-color-orange-900: oklch(0.35 0.09 50);
|
|
82
|
+
--spui-color-orange-950: oklch(0.3 0.06 60);
|
|
83
|
+
/* Green */
|
|
84
|
+
--spui-color-green-50: oklch(0.97 0.014 160);
|
|
85
|
+
--spui-color-green-100: oklch(0.96 0.044 160);
|
|
86
|
+
--spui-color-green-200: oklch(0.94 0.084 160);
|
|
87
|
+
--spui-color-green-300: oklch(0.9 0.134 160);
|
|
88
|
+
--spui-color-green-400: oklch(0.78 0.174 160);
|
|
89
|
+
--spui-color-green-500: oklch(0.69 0.15 160);
|
|
90
|
+
--spui-color-green-600: oklch(0.59 0.13 160);
|
|
91
|
+
--spui-color-green-700: oklch(0.51 0.11 160);
|
|
92
|
+
--spui-color-green-800: oklch(0.45 0.1 160);
|
|
93
|
+
--spui-color-green-900: oklch(0.36 0.08 160);
|
|
94
|
+
--spui-color-green-950: oklch(0.3 0.06 160);
|
|
95
|
+
/* Blue */
|
|
96
|
+
--spui-color-blue-50: oklch(0.97 0.014 240);
|
|
97
|
+
--spui-color-blue-100: oklch(0.93 0.034 240);
|
|
98
|
+
--spui-color-blue-200: oklch(0.9 0.054 240);
|
|
99
|
+
--spui-color-blue-300: oklch(0.83 0.094 240);
|
|
100
|
+
--spui-color-blue-400: oklch(0.71 0.16 240);
|
|
101
|
+
--spui-color-blue-500: oklch(0.65 0.14 240);
|
|
102
|
+
--spui-color-blue-600: oklch(0.59 0.13 240);
|
|
103
|
+
--spui-color-blue-700: oklch(0.53 0.12 240);
|
|
104
|
+
--spui-color-blue-800: oklch(0.44 0.1 240);
|
|
105
|
+
--spui-color-blue-900: oklch(0.36 0.08 240);
|
|
106
|
+
--spui-color-blue-950: oklch(0.3 0.06 240);
|
|
107
|
+
/* Purple */
|
|
108
|
+
--spui-color-purple-50: oklch(0.97 0.014 300);
|
|
109
|
+
--spui-color-purple-100: oklch(0.93 0.034 300);
|
|
110
|
+
--spui-color-purple-200: oklch(0.9 0.054 300);
|
|
111
|
+
--spui-color-purple-300: oklch(0.83 0.084 300);
|
|
112
|
+
--spui-color-purple-400: oklch(0.74 0.144 300);
|
|
113
|
+
--spui-color-purple-500: oklch(0.64 0.22 300);
|
|
114
|
+
--spui-color-purple-600: oklch(0.51 0.22 300);
|
|
115
|
+
--spui-color-purple-700: oklch(0.42 0.2 300);
|
|
116
|
+
--spui-color-purple-800: oklch(0.36 0.18 300);
|
|
117
|
+
--spui-color-purple-900: oklch(0.32 0.12 300);
|
|
118
|
+
--spui-color-purple-950: oklch(0.25 0.13 300);
|
|
119
|
+
/* Palette-orange */
|
|
120
|
+
--orange-base: oklch(70% 0.18 55);
|
|
121
|
+
--orange-light: oklch(from var(--orange-base) calc(l + 0.15) c h);
|
|
122
|
+
--orange-dark: oklch(from var(--orange-base) calc(l - 0.15) c h);
|
|
123
|
+
/* Palette-green */
|
|
124
|
+
--green-base: oklch(65% 0.2 150);
|
|
125
|
+
--green-light: oklch(from var(--green-base) calc(l + 0.15) c h);
|
|
126
|
+
--green-dark: oklch(from var(--green-base) calc(l - 0.15) c h);
|
|
127
|
+
/* Palette-purple */
|
|
128
|
+
--purple-base: oklch(55% 0.22 300);
|
|
129
|
+
--purple-light: oklch(from var(--purple-base) calc(l + 0.15) c h);
|
|
130
|
+
--purple-dark: oklch(from var(--purple-base) calc(l - 0.15) c h);
|
|
131
|
+
--font-family-hauss: "ALS_Hauss", Verdana, Arial, Sans-serif;
|
|
132
|
+
--font-family-gorizont: "ALS_Gorizont 2.1", Verdana, Arial, Sans-serif;
|
|
133
|
+
--spui-font-weight-regular: 400;
|
|
134
|
+
--spui-font-weight-medium: 500;
|
|
135
|
+
--spui-font-weight-bold: 700;
|
|
136
|
+
--spui-font-family-main: var(--font-family-hauss);
|
|
137
|
+
--spui-font-family-title: var(--font-family-gorizont);
|
|
138
|
+
--spui-font-heading-1: var(--spui-font-weight-bold) 48px/56px var(--spui-font-family-title);
|
|
139
|
+
--spui-font-heading-2: var(--spui-font-weight-bold) 40px/48px var(--spui-font-family-title);
|
|
140
|
+
--spui-font-heading-3: var(--spui-font-weight-bold) 32px/40px var(--spui-font-family-title);
|
|
141
|
+
--spui-font-heading-4: var(--spui-font-weight-bold) 28px/32px var(--spui-font-family-title);
|
|
142
|
+
--spui-font-heading-5: var(--spui-font-weight-bold) 0px/56px var(--spui-font-family-title);
|
|
143
|
+
--spui-font-heading-6: var(--spui-font-weight-bold) 0px/56px var(--spui-font-family-title);
|
|
144
|
+
--spui-font-text-p1-content: var(--spui-font-weight-regular) 20px/28px var(--spui-font-family-main);
|
|
145
|
+
--spui-scale-0: 0px;
|
|
146
|
+
--spui-scale-0-25x: 1px;
|
|
147
|
+
--spui-scale-0-50x: 2px;
|
|
148
|
+
--spui-scale-1x: 4px;
|
|
149
|
+
--spui-scale-2x: 8px;
|
|
150
|
+
--spui-scale-3x: 12px;
|
|
151
|
+
--spui-scale-4x: 16px;
|
|
152
|
+
--spui-scale-5x: 20px;
|
|
153
|
+
--spui-scale-6x: 24px;
|
|
154
|
+
--spui-scale-7x: 28px;
|
|
155
|
+
--spui-scale-8x: 32px;
|
|
156
|
+
--spui-scale-10x: 40px;
|
|
157
|
+
--spui-scale-11x: 44px;
|
|
158
|
+
--spui-scale-12x: 48px;
|
|
159
|
+
--spui-scale-14x: 56px;
|
|
160
|
+
--spui-scale-16x: 64px;
|
|
161
|
+
--spui-scale-20x: 80px;
|
|
162
|
+
--spui-control-height-xs: 16px;
|
|
163
|
+
--spui-control-height-sm: 24px;
|
|
164
|
+
--spui-control-height-base: 32px;
|
|
165
|
+
--spui-control-height-md: 44px;
|
|
166
|
+
--spui-control-height-lg: 48px;
|
|
167
|
+
--spui-control-height-xl: 56px;
|
|
168
|
+
--spui-icon-size-xs: 16px;
|
|
169
|
+
--spui-icon-size-sm: 20px;
|
|
170
|
+
--spui-icon-size-base: 24px;
|
|
171
|
+
--spui-icon-size-lg: 28px;
|
|
172
|
+
--spui-icon-size-xl: 32px;
|
|
173
|
+
--spui-breackpoint-tablet: 743.98px;
|
|
174
|
+
--spui-breackpoint-desktop: 1279.98px;
|
|
175
|
+
/* Alias-collection */
|
|
176
|
+
--spui-border-width-none: var(--spui-scale-0); /* 0px */
|
|
177
|
+
--spui-border-width-sm: var(--spui-scale-0-25x); /* 1px */
|
|
178
|
+
--spui-border-width-md: var(--spui-scale-0-50x); /* 2px */
|
|
179
|
+
--spui-border-width-lg: var(--spui-scale-1x); /* 4px */
|
|
180
|
+
--spui-border-radius-none: var(--spui-scale-0); /* 0px */
|
|
181
|
+
--spui-border-radius-sm: var(--spui-scale-1x); /* 4px */
|
|
182
|
+
--spui-border-radius-md: var(--spui-scale-2x); /* 8px */
|
|
183
|
+
--spui-border-radius-lg: var(--spui-scale-4x); /* 16px */
|
|
184
|
+
--spui-border-radius-xl: var(--spui-scale-8x); /* 32px */
|
|
185
|
+
--spui-border-radius-full: 50%;
|
|
186
|
+
--spui-spacing-none: var(--spui-scale-0); /* 0px */
|
|
187
|
+
--spui-spacing-1x: var(--spui-scale-1x); /* 4px */
|
|
188
|
+
--spui-spacing-2x: var(--spui-scale-2x); /* 8px */
|
|
189
|
+
--spui-spacing-3x: var(--spui-scale-3x); /* 12px */
|
|
190
|
+
--spui-spacing-4x: var(--spui-scale-4x); /* 16px */
|
|
191
|
+
--spui-spacing-5x: var(--spui-scale-5x); /* 20px */
|
|
192
|
+
--spui-spacing-6x: var(--spui-scale-6x); /*24px*/
|
|
193
|
+
--spui-spacing-8x: var(--spui-scale-8x); /* 32px */
|
|
194
|
+
--spui-spacing-10x: var(--spui-scale-10x); /* 40px */
|
|
195
|
+
--spui-spacing-12x: var(--spui-scale-12x); /* 48px */
|
|
196
|
+
--spui-spacing-16x: var(--spui-scale-16x); /* 64px */
|
|
197
|
+
--spui-spacing-20x: var(--spui-scale-20x); /* 80px */
|
|
198
|
+
/* Mapped-collection */
|
|
199
|
+
--spui-color-text-primary: var(--color-woodsmoke);
|
|
200
|
+
--spui-color-text-secondary: var(--color-gray);
|
|
201
|
+
--spui-color-text-tertiary: var(--neutral-600, lime);
|
|
202
|
+
--spui-color-text-disabled: var(--color-gray);
|
|
203
|
+
--spui-color-text-action: var(--color-accent-blue);
|
|
204
|
+
--spui-color-text-action-hover: var(--color-aqua-blue);
|
|
205
|
+
--spui-color-text-action-active: var(--color-green-blue);
|
|
206
|
+
--spui-color-text-on-action: var(--color-white);
|
|
207
|
+
--spui-color-text-error: var(--color-red);
|
|
208
|
+
--spui-color-text-success: var(--color, lime);
|
|
209
|
+
--spui-color-text-warning: var(--color, lime);
|
|
210
|
+
--spui-color-text-info: var(--color, lime);
|
|
211
|
+
--spui-color-icon-primary: var(--color-woodsmoke);
|
|
212
|
+
--spui-color-icon-disabled: var(--color-gray);
|
|
213
|
+
--spui-color-icon-action: var(--color-accent-blue);
|
|
214
|
+
--spui-color-icon-action-hover: var(--color-aqua-blue);
|
|
215
|
+
--spui-color-icon-action-active: var(--color-green-blue);
|
|
216
|
+
--spui-color-icon-on-action: var(--color-white);
|
|
217
|
+
--spui-color-icon-error: var(--color-red);
|
|
218
|
+
--spui-color-icon-success: var(--color, lime);
|
|
219
|
+
--spui-color-icon-warning: var(--color, lime);
|
|
220
|
+
--spui-color-icon-info: var(--color, lime);
|
|
221
|
+
--spui-color-border-primary: var(--color-light-steel);
|
|
222
|
+
--spui-color-border-action: var(--color-accent-blue);
|
|
223
|
+
--spui-color-border-action-hover: var(--color-aqua-blue);
|
|
224
|
+
--spui-color-border-action-active: var(--color-green-blue);
|
|
225
|
+
--spui-color-border-success: var(--color, lime);
|
|
226
|
+
--spui-color-border-error: var(--color-red);
|
|
227
|
+
--spui-color-border-warning: var(--color, lime);
|
|
228
|
+
--spui-color-border-info: var(--color, lime);
|
|
229
|
+
--spui-color-border-disabled: var(--color-light-steel);
|
|
230
|
+
--spui-color-surface-page: var(--color-alice-blue);
|
|
231
|
+
--spui-color-surface-default: var(--color-white);
|
|
232
|
+
--spui-color-surface-secondary: var(--color-light-blue);
|
|
233
|
+
--spui-color-surface-secondary-hover: var(--color-frost-blue);
|
|
234
|
+
--spui-color-surface-secondary-active: var(--color-steel-gray);
|
|
235
|
+
--spui-color-surface-tertiary: var(--neutral-100, lime);
|
|
236
|
+
--spui-color-surface-action: var(--color-accent-blue);
|
|
237
|
+
--spui-color-surface-action-hover: var(--color-aqua-blue);
|
|
238
|
+
--spui-color-surface-action-active: var(--color-green-blue);
|
|
239
|
+
--spui-color-surface-success: var(--success-50, lime);
|
|
240
|
+
--spui-color-surface-warning: var(--warning-50, lime);
|
|
241
|
+
--spui-color-surface-info: var(--primary-50, lime);
|
|
242
|
+
--spui-color-surface-error: var(--error-50, lime);
|
|
243
|
+
--spui-color-surface-disabled: var(--color-light-smoke);
|
|
244
|
+
--spui-color-surface-transparent: transparent;
|
|
245
|
+
--psor-color-green-0: #ecfdf3;
|
|
246
|
+
--psor-color-green-1: #abefc6;
|
|
247
|
+
--psor-color-green-4: #067647;
|
|
248
|
+
--spui-color-surface-mask: #121212b3;
|
|
249
|
+
--spui-scrollbar-width: 4px;
|
|
250
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export { Accordion } from "./components/Accordion";
|
|
2
|
+
export { ApplyButtons } from "./components/ApplyButtons";
|
|
3
|
+
export { AuthProtected } from "./components/AuthProtected";
|
|
4
|
+
export { BaseTooltip } from "./components/BaseTooltip";
|
|
5
|
+
export { Breadcrumb, type TCrumbItem } from "./components/Breadcrumb";
|
|
6
|
+
export { Button } from "./components/Button";
|
|
7
|
+
export { Checkbox, type TOnChangeCheckbox } from "./components/Checkbox";
|
|
8
|
+
export { Confirm } from "./components/Confirm";
|
|
9
|
+
export { ContextMenu, type TContextMenuOption } from "./components/ContextMenu";
|
|
10
|
+
export { DatePicker, type TOnChangeDatePicker } from "./components/DatePicker";
|
|
11
|
+
export { DatePickerInput, type TOnChangeDatePickerInput } from "./components/DatePickerInput";
|
|
12
|
+
export { DefaultDropzone } from "./components/DefaultDropzone";
|
|
13
|
+
export { Dropdown, type TDropdownListItem } from "./components/Dropdown";
|
|
14
|
+
export { EllipsisTextWithTooltip } from "./components/EllipsisTextWithTooltip";
|
|
15
|
+
export { Form } from "./components/Form";
|
|
16
|
+
export { EIconName, Icon } from "./components/Icons";
|
|
17
|
+
export { IfcPreview, type IIfcPreviewProps } from "./components/IfcPreview";
|
|
18
|
+
export { IfcViewer, type IIfcViewerProps } from "./components/IfcViewer";
|
|
19
|
+
export { type IInputProps, Input, type TOnBlurInput, type TOnChangeInput, } from "./components/Input";
|
|
20
|
+
export { Label } from "./components/Label";
|
|
21
|
+
export { Layer } from "./components/Layer";
|
|
22
|
+
export { MediaContext, MediaContextProvider } from "./components/MediaContextProvider";
|
|
23
|
+
export { Modal, useModal } from "./components/Modal";
|
|
24
|
+
export { Portal } from "./components/Portal";
|
|
25
|
+
export { ProgressWrapper, useAnimatedValue } from "./components/ProgressWrapper";
|
|
26
|
+
export { type ISelectProps, Select, type TOnBlurSelect, type TOnChangeSelect, type TSelectOption, } from "./components/Select";
|
|
27
|
+
export { Skeleton } from "./components/Skeleton";
|
|
28
|
+
export { Spinner } from "./components/Spinner";
|
|
29
|
+
export { Table, type TableProps, type TClickOnCellAction, type TColumn, useTableActions, } from "./components/Table";
|
|
30
|
+
export { Tabs, type TabsProps, type TPaneItem } from "./components/Tabs";
|
|
31
|
+
export { Text } from "./components/Text";
|
|
32
|
+
export { type ITextareaProps, Textarea, type TOnChangeTextarea } from "./components/Textarea";
|
|
33
|
+
export { TextWithLabel } from "./components/TextWithLabel";
|
|
34
|
+
export { ETooltipPosition, InfoTooltip, Tooltip } from "./components/Tooltip";
|
|
35
|
+
export { type IUploadFilesProps, UploadFiles } from "./components/UploadFiles";
|
|
36
|
+
export { ViewImageModal } from "./components/ViewImageModal";
|