@code0-tech/pictor 0.0.0-mvp.rc.1
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/LICENSE +29 -0
- package/README.md +0 -0
- package/dist/DFlowDataType.service-B7xAjgiJ.js +793 -0
- package/dist/assets/Avatar.css +1 -0
- package/dist/assets/Badge.css +1 -0
- package/dist/assets/Breadcrumb.css +1 -0
- package/dist/assets/Button.css +1 -0
- package/dist/assets/ButtonGroup.css +1 -0
- package/dist/assets/Card.css +1 -0
- package/dist/assets/Col.css +1 -0
- package/dist/assets/Command.css +1 -0
- package/dist/assets/Container.css +1 -0
- package/dist/assets/DFlow.css +1 -0
- package/dist/assets/DFlowFolder.css +1 -0
- package/dist/assets/DFlowFunctionDefaultCard.css +1 -0
- package/dist/assets/DFlowInputDataType.css +1 -0
- package/dist/assets/DFlowMiniMap.css +1 -0
- package/dist/assets/DFlowSuggestionSearchInput.css +1 -0
- package/dist/assets/DFlowValidation.css +1 -0
- package/dist/assets/DFullScreen.css +1 -0
- package/dist/assets/DLayout.css +1 -0
- package/dist/assets/DResizable.css +1 -0
- package/dist/assets/Dialog.css +1 -0
- package/dist/assets/FileTabs.css +1 -0
- package/dist/assets/Flex.css +1 -0
- package/dist/assets/Input.css +1 -0
- package/dist/assets/Menu.css +1 -0
- package/dist/assets/Quote.css +1 -0
- package/dist/assets/Row.css +1 -0
- package/dist/assets/ScrollArea.css +1 -0
- package/dist/assets/SegmentedControl.css +1 -0
- package/dist/assets/Text.css +1 -0
- package/dist/assets/Tooltip.css +1 -0
- package/dist/compiler-runtime-Cu50tn6L.js +54 -0
- package/dist/components/avatar/Avatar.d.ts +8 -0
- package/dist/components/avatar/Avatar.js +55 -0
- package/dist/components/badge/Badge.d.ts +7 -0
- package/dist/components/badge/Badge.js +22 -0
- package/dist/components/breadcrumb/Breadcrumb.d.ts +7 -0
- package/dist/components/breadcrumb/Breadcrumb.js +31 -0
- package/dist/components/button/Button.d.ts +10 -0
- package/dist/components/button/Button.js +28 -0
- package/dist/components/button-group/ButtonGroup.d.ts +7 -0
- package/dist/components/button-group/ButtonGroup.js +26 -0
- package/dist/components/card/Card.d.ts +14 -0
- package/dist/components/card/Card.js +39 -0
- package/dist/components/card/CardSection.d.ts +9 -0
- package/dist/components/card/CardSection.js +22 -0
- package/dist/components/col/Col.d.ts +13 -0
- package/dist/components/col/Col.js +26 -0
- package/dist/components/command/Command.d.ts +30 -0
- package/dist/components/command/Command.js +102 -0
- package/dist/components/container/Container.d.ts +6 -0
- package/dist/components/container/Container.js +20 -0
- package/dist/components/d-flow/DFlow.d.ts +5 -0
- package/dist/components/d-flow/DFlow.edges.hook.d.ts +4 -0
- package/dist/components/d-flow/DFlow.edges.hook.js +145 -0
- package/dist/components/d-flow/DFlow.js +373 -0
- package/dist/components/d-flow/DFlow.nodes.hook.d.ts +3 -0
- package/dist/components/d-flow/DFlow.nodes.hook.js +140 -0
- package/dist/components/d-flow/DFlow.service.d.ts +10 -0
- package/dist/components/d-flow/DFlow.service.js +11 -0
- package/dist/components/d-flow/DFlow.view.d.ts +109 -0
- package/dist/components/d-flow/DFlow.view.js +209 -0
- package/dist/components/d-flow/control/DFlowControl.d.ts +2 -0
- package/dist/components/d-flow/control/DFlowControl.js +77 -0
- package/dist/components/d-flow/control/index.d.ts +1 -0
- package/dist/components/d-flow/control/index.js +4 -0
- package/dist/components/d-flow/data-type/DFlowDataType.service.d.ts +10 -0
- package/dist/components/d-flow/data-type/DFlowDataType.service.js +7 -0
- package/dist/components/d-flow/data-type/DFlowDataType.validation.type.d.ts +2 -0
- package/dist/components/d-flow/data-type/DFlowDataType.validation.type.js +18 -0
- package/dist/components/d-flow/data-type/DFlowDataType.validation.value.d.ts +4 -0
- package/dist/components/d-flow/data-type/DFlowDataType.validation.value.js +6 -0
- package/dist/components/d-flow/data-type/DFlowDataType.view.d.ts +32 -0
- package/dist/components/d-flow/data-type/DFlowDataType.view.js +65 -0
- package/dist/components/d-flow/data-type/index.d.ts +2 -0
- package/dist/components/d-flow/data-type/index.js +6 -0
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeContainsKeyRule.d.ts +6 -0
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeContainsKeyRule.js +6 -0
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeContainsTypeRule.d.ts +6 -0
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeContainsTypeRule.js +6 -0
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeItemOfCollectionRule.d.ts +7 -0
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeItemOfCollectionRule.js +214 -0
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeNumberRangeRule.d.ts +4 -0
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeNumberRangeRule.js +214 -0
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeParentRule.d.ts +9 -0
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeParentRule.js +217 -0
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeRegexRule.d.ts +4 -0
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeRegexRule.js +214 -0
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeReturnTypeRule.d.ts +6 -0
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeReturnTypeRule.js +7 -0
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeRule.d.ts +8 -0
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeRule.js +10 -0
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeRules.d.ts +3 -0
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeRules.js +8 -0
- package/dist/components/d-flow/edge/DFlowEdge.d.ts +10 -0
- package/dist/components/d-flow/edge/DFlowEdge.js +48 -0
- package/dist/components/d-flow/folder/DFlowFolder.d.ts +19 -0
- package/dist/components/d-flow/folder/DFlowFolder.js +118 -0
- package/dist/components/d-flow/folder/index.d.ts +1 -0
- package/dist/components/d-flow/folder/index.js +6 -0
- package/dist/components/d-flow/function/DFlowFunction.input.hook.d.ts +4 -0
- package/dist/components/d-flow/function/DFlowFunction.input.hook.js +9 -0
- package/dist/components/d-flow/function/DFlowFunction.return.hook.d.ts +4 -0
- package/dist/components/d-flow/function/DFlowFunction.return.hook.js +11 -0
- package/dist/components/d-flow/function/DFlowFunction.service.d.ts +6 -0
- package/dist/components/d-flow/function/DFlowFunction.service.js +9 -0
- package/dist/components/d-flow/function/DFlowFunction.vaildation.hook.d.ts +10 -0
- package/dist/components/d-flow/function/DFlowFunction.vaildation.hook.js +75 -0
- package/dist/components/d-flow/function/DFlowFunction.view.d.ts +66 -0
- package/dist/components/d-flow/function/DFlowFunction.view.js +117 -0
- package/dist/components/d-flow/function/DFlowFunctionDefaultCard.d.ts +15 -0
- package/dist/components/d-flow/function/DFlowFunctionDefaultCard.js +158 -0
- package/dist/components/d-flow/function/DFlowFunctionGroupCard.d.ts +5 -0
- package/dist/components/d-flow/function/DFlowFunctionGroupCard.js +55 -0
- package/dist/components/d-flow/function/DFlowFunctionSuggestionCard.d.ts +11 -0
- package/dist/components/d-flow/function/DFlowFunctionSuggestionCard.js +26 -0
- package/dist/components/d-flow/function/DFlowFunctionTriggerCard.d.ts +9 -0
- package/dist/components/d-flow/function/DFlowFunctionTriggerCard.js +97 -0
- package/dist/components/d-flow/function/index.d.ts +2 -0
- package/dist/components/d-flow/function/index.js +7 -0
- package/dist/components/d-flow/index.d.ts +13 -0
- package/dist/components/d-flow/index.js +46 -0
- package/dist/components/d-flow/input/DFlowInputDataType.d.ts +8 -0
- package/dist/components/d-flow/input/DFlowInputDataType.js +422 -0
- package/dist/components/d-flow/minimap/DFlowMiniMap.d.ts +2 -0
- package/dist/components/d-flow/minimap/DFlowMiniMap.js +21 -0
- package/dist/components/d-flow/minimap/index.d.ts +1 -0
- package/dist/components/d-flow/minimap/index.js +4 -0
- package/dist/components/d-flow/suggestion/DFlowSuggestion.hook.d.ts +33 -0
- package/dist/components/d-flow/suggestion/DFlowSuggestion.hook.js +151 -0
- package/dist/components/d-flow/suggestion/DFlowSuggestion.service.d.ts +5 -0
- package/dist/components/d-flow/suggestion/DFlowSuggestion.service.js +18 -0
- package/dist/components/d-flow/suggestion/DFlowSuggestion.view.d.ts +21 -0
- package/dist/components/d-flow/suggestion/DFlowSuggestion.view.js +25 -0
- package/dist/components/d-flow/suggestion/DFlowSuggestionMenu.d.ts +8 -0
- package/dist/components/d-flow/suggestion/DFlowSuggestionMenu.js +67 -0
- package/dist/components/d-flow/suggestion/DFlowSuggestionMenu.util.d.ts +3 -0
- package/dist/components/d-flow/suggestion/DFlowSuggestionMenu.util.js +42 -0
- package/dist/components/d-flow/suggestion/DFlowSuggestionMenuFooter.d.ts +2 -0
- package/dist/components/d-flow/suggestion/DFlowSuggestionMenuFooter.js +69 -0
- package/dist/components/d-flow/suggestion/DFlowSuggestionMenuSearchBar.d.ts +6 -0
- package/dist/components/d-flow/suggestion/DFlowSuggestionMenuSearchBar.js +21 -0
- package/dist/components/d-flow/suggestion/DFlowSuggestionSearchInput.d.ts +7 -0
- package/dist/components/d-flow/suggestion/DFlowSuggestionSearchInput.js +21 -0
- package/dist/components/d-flow/suggestion/index.d.ts +2 -0
- package/dist/components/d-flow/suggestion/index.js +7 -0
- package/dist/components/d-flow/tab/DFlowTabDefault.d.ts +11 -0
- package/dist/components/d-flow/tab/DFlowTabDefault.js +97 -0
- package/dist/components/d-flow/tab/DFlowTabTrigger.d.ts +6 -0
- package/dist/components/d-flow/tab/DFlowTabTrigger.js +51 -0
- package/dist/components/d-flow/tab/DFlowTabs.d.ts +2 -0
- package/dist/components/d-flow/tab/DFlowTabs.js +105 -0
- package/dist/components/d-flow/type/DFlowType.service.d.ts +6 -0
- package/dist/components/d-flow/type/DFlowType.service.js +9 -0
- package/dist/components/d-flow/type/DFlowType.view.d.ts +35 -0
- package/dist/components/d-flow/type/DFlowType.view.js +69 -0
- package/dist/components/d-flow/type/index.d.ts +2 -0
- package/dist/components/d-flow/type/index.js +6 -0
- package/dist/components/d-flow/validation/DFlowValidation.d.ts +6 -0
- package/dist/components/d-flow/validation/DFlowValidation.hook.d.ts +3 -0
- package/dist/components/d-flow/validation/DFlowValidation.hook.js +10 -0
- package/dist/components/d-flow/validation/DFlowValidation.js +59 -0
- package/dist/components/d-flow/validation/index.d.ts +2 -0
- package/dist/components/d-flow/validation/index.js +6 -0
- package/dist/components/d-fullscreen/DFullScreen.d.ts +7 -0
- package/dist/components/d-fullscreen/DFullScreen.js +20 -0
- package/dist/components/d-layout/DLayout.d.ts +10 -0
- package/dist/components/d-layout/DLayout.js +51 -0
- package/dist/components/d-namespace/DNamespace.service.d.ts +6 -0
- package/dist/components/d-namespace/DNamespace.service.js +11 -0
- package/dist/components/d-namespace/DNamespace.view.d.ts +32 -0
- package/dist/components/d-namespace/DNamespace.view.js +65 -0
- package/dist/components/d-namespace/index.d.ts +12 -0
- package/dist/components/d-namespace/index.js +35 -0
- package/dist/components/d-namespace/license/DNamespaceLicense.service.d.ts +8 -0
- package/dist/components/d-namespace/license/DNamespaceLicense.service.js +11 -0
- package/dist/components/d-namespace/license/DNamespaceLicense.view.d.ts +26 -0
- package/dist/components/d-namespace/license/DNamespaceLicense.view.js +57 -0
- package/dist/components/d-namespace/member/DNamespaceMember.service.d.ts +9 -0
- package/dist/components/d-namespace/member/DNamespaceMember.service.js +11 -0
- package/dist/components/d-namespace/member/DNamespaceMember.view.d.ts +26 -0
- package/dist/components/d-namespace/member/DNamespaceMember.view.js +57 -0
- package/dist/components/d-namespace/project/DNamespaceProject.service.d.ts +9 -0
- package/dist/components/d-namespace/project/DNamespaceProject.service.js +11 -0
- package/dist/components/d-namespace/project/DNamespaceProject.view.d.ts +35 -0
- package/dist/components/d-namespace/project/DNamespaceProject.view.js +69 -0
- package/dist/components/d-namespace/project/DNamespaceProjectCard.d.ts +9 -0
- package/dist/components/d-namespace/project/DNamespaceProjectCard.js +57 -0
- package/dist/components/d-namespace/project/DNamespaceProjectMenu.d.ts +9 -0
- package/dist/components/d-namespace/project/DNamespaceProjectMenu.js +18 -0
- package/dist/components/d-namespace/role/DNamespaceRole.service.d.ts +10 -0
- package/dist/components/d-namespace/role/DNamespaceRole.service.js +11 -0
- package/dist/components/d-namespace/role/DNamespaceRole.view.d.ts +26 -0
- package/dist/components/d-namespace/role/DNamespaceRole.view.js +57 -0
- package/dist/components/d-organization/DOrganization.service.d.ts +8 -0
- package/dist/components/d-organization/DOrganization.service.js +11 -0
- package/dist/components/d-organization/DOrganization.view.d.ts +20 -0
- package/dist/components/d-organization/DOrganization.view.js +52 -0
- package/dist/components/d-organization/DOrganizationCard.d.ts +10 -0
- package/dist/components/d-organization/DOrganizationCard.js +63 -0
- package/dist/components/d-organization/DOrganizationMenu.d.ts +9 -0
- package/dist/components/d-organization/DOrganizationMenu.js +18 -0
- package/dist/components/d-organization/index.d.ts +4 -0
- package/dist/components/d-organization/index.js +19 -0
- package/dist/components/d-resizable/DResizable.d.ts +10 -0
- package/dist/components/d-resizable/DResizable.js +31 -0
- package/dist/components/d-runtime/DRuntime.service.d.ts +9 -0
- package/dist/components/d-runtime/DRuntime.service.js +11 -0
- package/dist/components/d-runtime/DRuntime.view.d.ts +38 -0
- package/dist/components/d-runtime/DRuntime.view.js +73 -0
- package/dist/components/d-runtime/index.d.ts +2 -0
- package/dist/components/d-runtime/index.js +6 -0
- package/dist/components/d-user/DUser.service.d.ts +21 -0
- package/dist/components/d-user/DUser.service.js +17 -0
- package/dist/components/d-user/DUser.view.d.ts +52 -0
- package/dist/components/d-user/DUser.view.js +100 -0
- package/dist/components/d-user/DUserMenu.d.ts +8 -0
- package/dist/components/d-user/DUserMenu.js +28 -0
- package/dist/components/d-user/index.d.ts +3 -0
- package/dist/components/d-user/index.js +17 -0
- package/dist/components/dialog/Dialog.d.ts +28 -0
- package/dist/components/dialog/Dialog.js +98 -0
- package/dist/components/file-tabs/FileTabs.d.ts +17 -0
- package/dist/components/file-tabs/FileTabs.js +70 -0
- package/dist/components/file-tabs/FileTabs.service.d.ts +13 -0
- package/dist/components/file-tabs/FileTabs.service.js +47 -0
- package/dist/components/file-tabs/FileTabs.view.d.ts +9 -0
- package/dist/components/file-tabs/FileTabs.view.js +1 -0
- package/dist/components/flex/Flex.d.ts +7 -0
- package/dist/components/flex/Flex.js +21 -0
- package/dist/components/form/CheckboxInput.d.ts +5 -0
- package/dist/components/form/CheckboxInput.js +67 -0
- package/dist/components/form/EmailInput.d.ts +8 -0
- package/dist/components/form/EmailInput.js +20 -0
- package/dist/components/form/Input.d.ts +22 -0
- package/dist/components/form/Input.js +153 -0
- package/dist/components/form/InputDescription.d.ts +5 -0
- package/dist/components/form/InputDescription.js +12 -0
- package/dist/components/form/InputLabel.d.ts +5 -0
- package/dist/components/form/InputLabel.js +12 -0
- package/dist/components/form/InputMessage.d.ts +5 -0
- package/dist/components/form/InputMessage.js +18 -0
- package/dist/components/form/InputSuggestion.d.ts +19 -0
- package/dist/components/form/InputSuggestion.js +102 -0
- package/dist/components/form/NumberInput.d.ts +6 -0
- package/dist/components/form/NumberInput.js +20 -0
- package/dist/components/form/PasswordInput.d.ts +8 -0
- package/dist/components/form/PasswordInput.js +18 -0
- package/dist/components/form/PinInput.d.ts +11 -0
- package/dist/components/form/PinInput.js +66 -0
- package/dist/components/form/RadioGroup.d.ts +5 -0
- package/dist/components/form/RadioGroup.js +48 -0
- package/dist/components/form/RadioInput.d.ts +7 -0
- package/dist/components/form/RadioInput.js +27 -0
- package/dist/components/form/SwitchInput.d.ts +6 -0
- package/dist/components/form/SwitchInput.js +19 -0
- package/dist/components/form/TextInput.d.ts +7 -0
- package/dist/components/form/TextInput.js +19 -0
- package/dist/components/form/index.d.ts +15 -0
- package/dist/components/form/index.js +37 -0
- package/dist/components/form/useForm.d.ts +25 -0
- package/dist/components/form/useForm.js +57 -0
- package/dist/components/menu/Menu.d.ts +27 -0
- package/dist/components/menu/Menu.js +104 -0
- package/dist/components/quote/Quote.d.ts +10 -0
- package/dist/components/quote/Quote.js +48 -0
- package/dist/components/row/Row.d.ts +6 -0
- package/dist/components/row/Row.js +20 -0
- package/dist/components/scroll-area/ScrollArea.d.ts +13 -0
- package/dist/components/scroll-area/ScrollArea.js +42 -0
- package/dist/components/segmented-control/SegmentedControl.d.ts +8 -0
- package/dist/components/segmented-control/SegmentedControl.js +23 -0
- package/dist/components/text/Text.d.ts +8 -0
- package/dist/components/text/Text.js +23 -0
- package/dist/components/tooltip/Tooltip.d.ts +13 -0
- package/dist/components/tooltip/Tooltip.js +47 -0
- package/dist/index.d.ts +28 -0
- package/dist/index.js +223 -0
- package/dist/utils/arrayService.d.ts +10 -0
- package/dist/utils/arrayService.js +1 -0
- package/dist/utils/contextStore.d.ts +62 -0
- package/dist/utils/contextStore.js +60 -0
- package/dist/utils/generics.d.ts +17 -0
- package/dist/utils/generics.js +311 -0
- package/dist/utils/index.d.ts +8 -0
- package/dist/utils/index.js +28 -0
- package/dist/utils/inspection.d.ts +13 -0
- package/dist/utils/inspection.js +4 -0
- package/dist/utils/nonReactiveArrayService.d.ts +19 -0
- package/dist/utils/nonReactiveArrayService.js +54 -0
- package/dist/utils/objectStore.d.ts +12 -0
- package/dist/utils/objectStore.js +34 -0
- package/dist/utils/reactiveArrayService.d.ts +22 -0
- package/dist/utils/reactiveArrayService.js +81 -0
- package/dist/utils/types.d.ts +57 -0
- package/dist/utils/types.js +4 -0
- package/dist/utils/utils.d.ts +68 -0
- package/dist/utils/utils.js +216 -0
- package/package.json +125 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.avatar{aspect-ratio:1/1;padding:.35rem;display:flex;width:38px;align-items:center;justify-content:center;overflow:hidden}.avatar{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem}.avatar--image{padding:0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.badge{padding:.175rem .7rem;display:inline-flex;font-size:.7rem;width:fit-content;align-items:center;gap:.35rem}.badge{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;border-radius:1rem}.badge--primary{border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;box-shadow:none}.badge--secondary{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;box-shadow:none}.badge--success{border:none;background:#071314;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;box-shadow:none}.badge--warning{border:none;background:#1c1313;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;box-shadow:none}.badge--error{border:none;background:#180016;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;box-shadow:none}.badge--info{border:none;background:#0e1a24;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;box-shadow:none}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.breadcrumb{display:flex;align-items:center;gap:.7rem}.breadcrumb{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.breadcrumb__splitter{color:#fff}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.button{padding:.35rem .7rem;gap:.5rem;cursor:pointer;height:fit-content;display:flex;align-items:center;width:fit-content;border-radius:50rem;justify-content:center;font-size:.8rem}.button:disabled,.button[data-disabled],.button[aria-disabled=true],.button--disabled{cursor:not-allowed;opacity:25%;pointer-events:unset}.button--primary{border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.button--primary:hover{box-shadow:inset 0 0 0 1px #ffffff40}.button--primary:active,.button--primary:focus{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.button--primary.button--outlined{background:transparent}.button--primary.button--none{background:transparent;box-shadow:none}.button--secondary{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.button--secondary:hover{box-shadow:inset 0 0 0 1px #ffffff40}.button--secondary:active,.button--secondary:focus{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.button--secondary.button--outlined{background:transparent}.button--secondary.button--none{background:transparent;box-shadow:none}.button--success{border:none;background:#071314;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.button--success:hover{box-shadow:inset 0 0 0 1px #ffffff40}.button--success:active,.button--success:focus{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.button--success.button--outlined{background:transparent}.button--success.button--none{background:transparent;box-shadow:none}.button--warning{border:none;background:#1c1313;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.button--warning:hover{box-shadow:inset 0 0 0 1px #ffffff40}.button--warning:active,.button--warning:focus{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.button--warning.button--outlined{background:transparent}.button--warning.button--none{background:transparent;box-shadow:none}.button--error{border:none;background:#180016;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.button--error:hover{box-shadow:inset 0 0 0 1px #ffffff40}.button--error:active,.button--error:focus{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.button--error.button--outlined{background:transparent}.button--error.button--none{background:transparent;box-shadow:none}.button--info{border:none;background:#0e1a24;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.button--info:hover{box-shadow:inset 0 0 0 1px #ffffff40}.button--info:active,.button--info:focus{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.button--info.button--outlined{background:transparent}.button--info.button--none{background:transparent;box-shadow:none}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.button-group{border:none;width:fit-content;background:transparent;position:relative;display:flex}.button-group *{margin-bottom:0}.button-group .button{margin-bottom:0;border-radius:0;display:inline-flex;height:100%}.button-group>div,.button-group .dropdown__trigger,.button-group .dropdown{display:inline-flex;margin-bottom:0!important}.button-group__first .button{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.button-group__last .button{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.card{display:block;padding:.7rem;position:relative;font-size:.8rem}.card{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.card>.card__section>img{border-radius:.5rem}.card>.card__section:first-child{margin-top:0}.card>.card__section--border:first-child{padding-top:0;border-top:none}.card>.card__section:not(:has(~.card__section)){margin-bottom:0}.card>.card__section--border:not(:has(~.card__section)){padding-bottom:0;border-bottom:none}.card *.card__section>img{border-radius:.5rem}.card__section{margin-bottom:.7rem;margin-top:.7rem;position:relative}.card__section--border{margin-right:-.7rem;margin-left:-.7rem;padding:.7rem;border-top:1px solid rgba(255,255,255,.1);border-bottom:1px solid rgba(255,255,255,.1)}.card__section--border+.card__section--border{border-top:none;margin-top:-.5em}.card--primary{border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem}.card--primary.card--none{background:transparent;border-color:transparent}.card--primary.card--filled{border-color:transparent}.card--primary.card--outlined{background:transparent}.card--outline-primary{outline-offset:.35rem;margin:.35rem;outline:rgba(3,0,20,.25) solid 1px}.card--border-primary{box-shadow:inset 0 0 0 1px #03001440}.card--secondary{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem}.card--secondary.card--none{background:transparent;border-color:transparent}.card--secondary.card--filled{border-color:transparent}.card--secondary.card--outlined{background:transparent}.card--outline-secondary{outline-offset:.35rem;margin:.35rem;outline:rgba(255,255,255,.1) solid 1px}.card--border-secondary{box-shadow:inset 0 0 0 1px #ffffff1a}.card--success{border:none;background:#071314;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem}.card--success.card--none{background:transparent;border-color:transparent}.card--success.card--filled{border-color:transparent}.card--success.card--outlined{background:transparent}.card--outline-success{outline-offset:.35rem;margin:.35rem;outline:rgba(41,191,18,.25) solid 1px}.card--border-success{box-shadow:inset 0 0 0 1px #29bf1240}.card--warning{border:none;background:#1c1313;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem}.card--warning.card--none{background:transparent;border-color:transparent}.card--warning.card--filled{border-color:transparent}.card--warning.card--outlined{background:transparent}.card--outline-warning{outline-offset:.35rem;margin:.35rem;outline:rgba(255,190,11,.25) solid 1px}.card--border-warning{box-shadow:inset 0 0 0 1px #ffbe0b40}.card--error{border:none;background:#180016;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem}.card--error.card--none{background:transparent;border-color:transparent}.card--error.card--filled{border-color:transparent}.card--error.card--outlined{background:transparent}.card--outline-error{outline-offset:.35rem;margin:.35rem;outline:rgba(217,4,41,.25) solid 1px}.card--border-error{box-shadow:inset 0 0 0 1px #d9042940}.card--info{border:none;background:#0e1a24;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem}.card--info.card--none{background:transparent;border-color:transparent}.card--info.card--filled{border-color:transparent}.card--info.card--outlined{background:transparent}.card--outline-info{outline-offset:.35rem;margin:.35rem;outline:rgba(112,255,178,.25) solid 1px}.card--border-info{box-shadow:inset 0 0 0 1px #70ffb240}.card--border--dashed{border-style:dashed}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.col{flex:1 0 0}@media(min-width:0){.col-xs-1{flex:0 0 auto;width:8.3333333333%}}@media(min-width:0){.col-xs-2{flex:0 0 auto;width:16.6666666667%}}@media(min-width:0){.col-xs-3{flex:0 0 auto;width:25%}}@media(min-width:0){.col-xs-4{flex:0 0 auto;width:33.3333333333%}}@media(min-width:0){.col-xs-5{flex:0 0 auto;width:41.6666666667%}}@media(min-width:0){.col-xs-6{flex:0 0 auto;width:50%}}@media(min-width:0){.col-xs-7{flex:0 0 auto;width:58.3333333333%}}@media(min-width:0){.col-xs-8{flex:0 0 auto;width:66.6666666667%}}@media(min-width:0){.col-xs-9{flex:0 0 auto;width:75%}}@media(min-width:0){.col-xs-10{flex:0 0 auto;width:83.3333333333%}}@media(min-width:0){.col-xs-11{flex:0 0 auto;width:91.6666666667%}}@media(min-width:0){.col-xs-12{flex:0 0 auto;width:100%}}@media(min-width:576px){.col-sm-1{flex:0 0 auto;width:8.3333333333%}}@media(min-width:576px){.col-sm-2{flex:0 0 auto;width:16.6666666667%}}@media(min-width:576px){.col-sm-3{flex:0 0 auto;width:25%}}@media(min-width:576px){.col-sm-4{flex:0 0 auto;width:33.3333333333%}}@media(min-width:576px){.col-sm-5{flex:0 0 auto;width:41.6666666667%}}@media(min-width:576px){.col-sm-6{flex:0 0 auto;width:50%}}@media(min-width:576px){.col-sm-7{flex:0 0 auto;width:58.3333333333%}}@media(min-width:576px){.col-sm-8{flex:0 0 auto;width:66.6666666667%}}@media(min-width:576px){.col-sm-9{flex:0 0 auto;width:75%}}@media(min-width:576px){.col-sm-10{flex:0 0 auto;width:83.3333333333%}}@media(min-width:576px){.col-sm-11{flex:0 0 auto;width:91.6666666667%}}@media(min-width:576px){.col-sm-12{flex:0 0 auto;width:100%}}@media(min-width:768px){.col-md-1{flex:0 0 auto;width:8.3333333333%}}@media(min-width:768px){.col-md-2{flex:0 0 auto;width:16.6666666667%}}@media(min-width:768px){.col-md-3{flex:0 0 auto;width:25%}}@media(min-width:768px){.col-md-4{flex:0 0 auto;width:33.3333333333%}}@media(min-width:768px){.col-md-5{flex:0 0 auto;width:41.6666666667%}}@media(min-width:768px){.col-md-6{flex:0 0 auto;width:50%}}@media(min-width:768px){.col-md-7{flex:0 0 auto;width:58.3333333333%}}@media(min-width:768px){.col-md-8{flex:0 0 auto;width:66.6666666667%}}@media(min-width:768px){.col-md-9{flex:0 0 auto;width:75%}}@media(min-width:768px){.col-md-10{flex:0 0 auto;width:83.3333333333%}}@media(min-width:768px){.col-md-11{flex:0 0 auto;width:91.6666666667%}}@media(min-width:768px){.col-md-12{flex:0 0 auto;width:100%}}@media(min-width:992px){.col-lg-1{flex:0 0 auto;width:8.3333333333%}}@media(min-width:992px){.col-lg-2{flex:0 0 auto;width:16.6666666667%}}@media(min-width:992px){.col-lg-3{flex:0 0 auto;width:25%}}@media(min-width:992px){.col-lg-4{flex:0 0 auto;width:33.3333333333%}}@media(min-width:992px){.col-lg-5{flex:0 0 auto;width:41.6666666667%}}@media(min-width:992px){.col-lg-6{flex:0 0 auto;width:50%}}@media(min-width:992px){.col-lg-7{flex:0 0 auto;width:58.3333333333%}}@media(min-width:992px){.col-lg-8{flex:0 0 auto;width:66.6666666667%}}@media(min-width:992px){.col-lg-9{flex:0 0 auto;width:75%}}@media(min-width:992px){.col-lg-10{flex:0 0 auto;width:83.3333333333%}}@media(min-width:992px){.col-lg-11{flex:0 0 auto;width:91.6666666667%}}@media(min-width:992px){.col-lg-12{flex:0 0 auto;width:100%}}@media(min-width:1200px){.col-xl-1{flex:0 0 auto;width:8.3333333333%}}@media(min-width:1200px){.col-xl-2{flex:0 0 auto;width:16.6666666667%}}@media(min-width:1200px){.col-xl-3{flex:0 0 auto;width:25%}}@media(min-width:1200px){.col-xl-4{flex:0 0 auto;width:33.3333333333%}}@media(min-width:1200px){.col-xl-5{flex:0 0 auto;width:41.6666666667%}}@media(min-width:1200px){.col-xl-6{flex:0 0 auto;width:50%}}@media(min-width:1200px){.col-xl-7{flex:0 0 auto;width:58.3333333333%}}@media(min-width:1200px){.col-xl-8{flex:0 0 auto;width:66.6666666667%}}@media(min-width:1200px){.col-xl-9{flex:0 0 auto;width:75%}}@media(min-width:1200px){.col-xl-10{flex:0 0 auto;width:83.3333333333%}}@media(min-width:1200px){.col-xl-11{flex:0 0 auto;width:91.6666666667%}}@media(min-width:1200px){.col-xl-12{flex:0 0 auto;width:100%}}@media(min-width:1400px){.col-xxl-1{flex:0 0 auto;width:8.3333333333%}}@media(min-width:1400px){.col-xxl-2{flex:0 0 auto;width:16.6666666667%}}@media(min-width:1400px){.col-xxl-3{flex:0 0 auto;width:25%}}@media(min-width:1400px){.col-xxl-4{flex:0 0 auto;width:33.3333333333%}}@media(min-width:1400px){.col-xxl-5{flex:0 0 auto;width:41.6666666667%}}@media(min-width:1400px){.col-xxl-6{flex:0 0 auto;width:50%}}@media(min-width:1400px){.col-xxl-7{flex:0 0 auto;width:58.3333333333%}}@media(min-width:1400px){.col-xxl-8{flex:0 0 auto;width:66.6666666667%}}@media(min-width:1400px){.col-xxl-9{flex:0 0 auto;width:75%}}@media(min-width:1400px){.col-xxl-10{flex:0 0 auto;width:83.3333333333%}}@media(min-width:1400px){.col-xxl-11{flex:0 0 auto;width:91.6666666667%}}@media(min-width:1400px){.col-xxl-12{flex:0 0 auto;width:100%}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.command{z-index:100;display:flex;height:100%;width:100%;flex-direction:column;overflow:hidden;background:#030014;padding:.7rem}.command{border:none;background:#030014;color:#030014bf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #c0bfc41a;border-radius:1rem}.command__dialog{padding:0;border:none}.command__list:focus{outline:none}.command__list{max-height:300px;overflow-y:auto;overflow-x:hidden}.command__input.input:focus,.command .input.input:hover:focus,.command .input.input:active:focus,.command .input.input:focus:focus,.command .input.input:focus-within:focus,.command .input.input:not(:focus):focus{outline:none}.command__input.input,.command .input.input:hover,.command .input.input:active,.command .input.input:focus,.command .input.input:focus-within,.command .input.input:not(:focus){width:100%;border:none!important;outline:none!important;background:transparent;box-shadow:none!important;display:flex;height:2rem;color:#ffffffbf;font-size:.8rem;border-radius:.65rem}.command__input.input::placeholder,.command .input.input:hover::placeholder,.command .input.input:active::placeholder,.command .input.input:focus::placeholder,.command .input.input:focus-within::placeholder,.command .input.input:not(:focus)::placeholder{color:#ffffff40}.command__input.input:disabled:disabled,.command__input.input:disabled[data-disabled],.command__input.input:disabled[aria-disabled=true],.command__input.input:disabled--disabled,.command .input.input:hover:disabled:disabled,.command .input.input:hover:disabled[data-disabled],.command .input.input:hover:disabled[aria-disabled=true],.command .input.input:hover:disabled--disabled,.command .input.input:active:disabled:disabled,.command .input.input:active:disabled[data-disabled],.command .input.input:active:disabled[aria-disabled=true],.command .input.input:active:disabled--disabled,.command .input.input:focus:disabled:disabled,.command .input.input:focus:disabled[data-disabled],.command .input.input:focus:disabled[aria-disabled=true],.command .input.input:focus:disabled--disabled,.command .input.input:focus-within:disabled:disabled,.command .input.input:focus-within:disabled[data-disabled],.command .input.input:focus-within:disabled[aria-disabled=true],.command .input.input:focus-within:disabled--disabled,.command .input.input:not(:focus):disabled:disabled,.command .input.input:not(:focus):disabled[data-disabled],.command .input.input:not(:focus):disabled[aria-disabled=true],.command .input.input:not(:focus):disabled--disabled{cursor:not-allowed;opacity:25%;pointer-events:unset}.command__input.input .input__right,.command .input.input:hover .input__right,.command .input.input:active .input__right,.command .input.input:focus .input__right,.command .input.input:focus-within .input__right,.command .input.input:not(:focus) .input__right{padding-right:0}.command__empty{padding:1rem 0 1.3rem;text-align:center;font-size:.8rem;color:#ffffff80}.command__empty{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.command [cmdk-group-heading]{padding:.35rem .7rem}.command__group{overflow:hidden;text-transform:uppercase;font-size:.7rem;padding:.35rem 0 0;color:#ffffff80}.command__group{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.command__item{position:relative;display:flex;cursor:pointer;-webkit-user-select:none;user-select:none;align-items:center;font-size:.8rem;outline:none;color:#ffffffbf;border-radius:.65rem;padding:.35rem .35rem .35rem .8rem;gap:.7rem;text-transform:none}.command__item[data-disabled=true]{pointer-events:none;color:#ffffff40}.command__item[data-selected=true]{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;box-shadow:none;width:100%}.command__item svg{pointer-events:none;width:1rem;height:1rem;flex-shrink:0}.command__separator{height:1px;margin:.35rem 0;background:#1c1a2c}.command__shortcut{margin-left:auto;font-size:.7rem;letter-spacing:.1rem;padding:0 .35rem;border-radius:.375rem!important;color:#ffffff80;background:#030014}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.container{margin-right:auto;margin-left:auto;max-width:1320px;min-width:1320px;padding-left:1rem;padding-right:1rem;position:relative;z-index:1}.container>*:first-child{margin-top:0}.container>*:last-child{margin-bottom:0}@media(max-width:1399px){.container{max-width:1140px;min-width:1140px}}@media(max-width:1199px){.container{max-width:960px;min-width:960px}}@media(max-width:991px){.container{max-width:720px;min-width:720px}}@media(max-width:767px){.container{max-width:540px;min-width:540px}}@media(max-width:575px){.container{max-width:100%;min-width:auto}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.react-flow{direction:ltr;--xy-edge-stroke-default: #b1b1b7;--xy-edge-stroke-width-default: 1;--xy-edge-stroke-selected-default: #555;--xy-connectionline-stroke-default: #b1b1b7;--xy-connectionline-stroke-width-default: 1;--xy-attribution-background-color-default: rgba(255, 255, 255, .5);--xy-minimap-background-color-default: #fff;--xy-minimap-mask-background-color-default: rgba(240, 240, 240, .6);--xy-minimap-mask-stroke-color-default: transparent;--xy-minimap-mask-stroke-width-default: 1;--xy-minimap-node-background-color-default: #e2e2e2;--xy-minimap-node-stroke-color-default: transparent;--xy-minimap-node-stroke-width-default: 2;--xy-background-color-default: transparent;--xy-background-pattern-dots-color-default: #91919a;--xy-background-pattern-lines-color-default: #eee;--xy-background-pattern-cross-color-default: #e2e2e2;background-color:var(--xy-background-color, var(--xy-background-color-default));--xy-node-color-default: inherit;--xy-node-border-default: 1px solid #1a192b;--xy-node-background-color-default: #fff;--xy-node-group-background-color-default: rgba(240, 240, 240, .25);--xy-node-boxshadow-hover-default: 0 1px 4px 1px rgba(0, 0, 0, .08);--xy-node-boxshadow-selected-default: 0 0 0 .5px #1a192b;--xy-node-border-radius-default: 3px;--xy-handle-background-color-default: #1a192b;--xy-handle-border-color-default: #fff;--xy-selection-background-color-default: rgba(0, 89, 220, .08);--xy-selection-border-default: 1px dotted rgba(0, 89, 220, .8);--xy-controls-button-background-color-default: #fefefe;--xy-controls-button-background-color-hover-default: #f4f4f4;--xy-controls-button-color-default: inherit;--xy-controls-button-color-hover-default: inherit;--xy-controls-button-border-color-default: #eee;--xy-controls-box-shadow-default: 0 0 2px 1px rgba(0, 0, 0, .08);--xy-edge-label-background-color-default: #ffffff;--xy-edge-label-color-default: inherit;--xy-resize-background-color-default: #3367d9}.react-flow.dark{--xy-edge-stroke-default: #3e3e3e;--xy-edge-stroke-width-default: 1;--xy-edge-stroke-selected-default: #727272;--xy-connectionline-stroke-default: #b1b1b7;--xy-connectionline-stroke-width-default: 1;--xy-attribution-background-color-default: rgba(150, 150, 150, .25);--xy-minimap-background-color-default: #141414;--xy-minimap-mask-background-color-default: rgba(60, 60, 60, .6);--xy-minimap-mask-stroke-color-default: transparent;--xy-minimap-mask-stroke-width-default: 1;--xy-minimap-node-background-color-default: #2b2b2b;--xy-minimap-node-stroke-color-default: transparent;--xy-minimap-node-stroke-width-default: 2;--xy-background-color-default: #141414;--xy-background-pattern-dots-color-default: #777;--xy-background-pattern-lines-color-default: #777;--xy-background-pattern-cross-color-default: #777;--xy-node-color-default: #f8f8f8;--xy-node-border-default: 1px solid #3c3c3c;--xy-node-background-color-default: #1e1e1e;--xy-node-group-background-color-default: rgba(240, 240, 240, .25);--xy-node-boxshadow-hover-default: 0 1px 4px 1px rgba(255, 255, 255, .08);--xy-node-boxshadow-selected-default: 0 0 0 .5px #999;--xy-handle-background-color-default: #bebebe;--xy-handle-border-color-default: #1e1e1e;--xy-selection-background-color-default: rgba(200, 200, 220, .08);--xy-selection-border-default: 1px dotted rgba(200, 200, 220, .8);--xy-controls-button-background-color-default: #2b2b2b;--xy-controls-button-background-color-hover-default: #3e3e3e;--xy-controls-button-color-default: #f8f8f8;--xy-controls-button-color-hover-default: #fff;--xy-controls-button-border-color-default: #5b5b5b;--xy-controls-box-shadow-default: 0 0 2px 1px rgba(0, 0, 0, .08);--xy-edge-label-background-color-default: #141414;--xy-edge-label-color-default: #f8f8f8}.react-flow__background{background-color:var(--xy-background-color-props, var(--xy-background-color, var(--xy-background-color-default)));pointer-events:none;z-index:-1}.react-flow__container{position:absolute;width:100%;height:100%;top:0;left:0}.react-flow__pane{z-index:1}.react-flow__pane.draggable{cursor:grab}.react-flow__pane.dragging{cursor:grabbing}.react-flow__pane.selection{cursor:pointer}.react-flow__viewport{transform-origin:0 0;z-index:2;pointer-events:none}.react-flow__renderer{z-index:4}.react-flow__selection{z-index:6}.react-flow__nodesselection-rect:focus,.react-flow__nodesselection-rect:focus-visible{outline:none}.react-flow__edge-path{stroke:var(--xy-edge-stroke, var(--xy-edge-stroke-default));stroke-width:var(--xy-edge-stroke-width, var(--xy-edge-stroke-width-default));fill:none}.react-flow__connection-path{stroke:var(--xy-connectionline-stroke, var(--xy-connectionline-stroke-default));stroke-width:var(--xy-connectionline-stroke-width, var(--xy-connectionline-stroke-width-default));fill:none}.react-flow .react-flow__edges{position:absolute}.react-flow .react-flow__edges svg{overflow:visible;position:absolute;pointer-events:none}.react-flow__edge{pointer-events:visibleStroke}.react-flow__edge.selectable{cursor:pointer}.react-flow__edge.animated path{stroke-dasharray:5;animation:dashdraw .5s linear infinite}.react-flow__edge.animated path.react-flow__edge-interaction{stroke-dasharray:none;animation:none}.react-flow__edge.inactive{pointer-events:none}.react-flow__edge.selected,.react-flow__edge:focus,.react-flow__edge:focus-visible{outline:none}.react-flow__edge.selected .react-flow__edge-path,.react-flow__edge.selectable:focus .react-flow__edge-path,.react-flow__edge.selectable:focus-visible .react-flow__edge-path{stroke:var(--xy-edge-stroke-selected, var(--xy-edge-stroke-selected-default))}.react-flow__edge-textwrapper{pointer-events:all}.react-flow__edge .react-flow__edge-text{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.react-flow__arrowhead polyline{stroke:var(--xy-edge-stroke, var(--xy-edge-stroke-default))}.react-flow__arrowhead polyline.arrowclosed{fill:var(--xy-edge-stroke, var(--xy-edge-stroke-default))}.react-flow__connection{pointer-events:none}.react-flow__connection .animated{stroke-dasharray:5;animation:dashdraw .5s linear infinite}svg.react-flow__connectionline{z-index:1001;overflow:visible;position:absolute}.react-flow__nodes{pointer-events:none;transform-origin:0 0}.react-flow__node{position:absolute;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:all;transform-origin:0 0;box-sizing:border-box;cursor:default}.react-flow__node.selectable{cursor:pointer}.react-flow__node.draggable{cursor:grab;pointer-events:all}.react-flow__node.draggable.dragging{cursor:grabbing}.react-flow__nodesselection{z-index:3;transform-origin:left top;pointer-events:none}.react-flow__nodesselection-rect{position:absolute;pointer-events:all;cursor:grab}.react-flow__handle{position:absolute;pointer-events:none;min-width:5px;min-height:5px;width:6px;height:6px;background-color:var(--xy-handle-background-color, var(--xy-handle-background-color-default));border:1px solid var(--xy-handle-border-color, var(--xy-handle-border-color-default));border-radius:100%}.react-flow__handle.connectingfrom{pointer-events:all}.react-flow__handle.connectionindicator{pointer-events:all;cursor:crosshair}.react-flow__handle-bottom{top:auto;left:50%;bottom:0;transform:translate(-50%,50%)}.react-flow__handle-top{top:0;left:50%;transform:translate(-50%,-50%)}.react-flow__handle-left{top:50%;left:0;transform:translate(-50%,-50%)}.react-flow__handle-right{top:50%;right:0;transform:translate(50%,-50%)}.react-flow__edgeupdater{cursor:move;pointer-events:all}.react-flow__pane.selection .react-flow__panel{pointer-events:none}.react-flow__panel{position:absolute;z-index:5;margin:15px}.react-flow__panel.top{top:0}.react-flow__panel.bottom{bottom:0}.react-flow__panel.top.center,.react-flow__panel.bottom.center{left:50%;transform:translate(-15px) translate(-50%)}.react-flow__panel.left{left:0}.react-flow__panel.right{right:0}.react-flow__panel.left.center,.react-flow__panel.right.center{top:50%;transform:translateY(-15px) translateY(-50%)}.react-flow__attribution{font-size:10px;background:var(--xy-attribution-background-color, var(--xy-attribution-background-color-default));padding:2px 3px;margin:0}.react-flow__attribution a{text-decoration:none;color:#999}@keyframes dashdraw{0%{stroke-dashoffset:10}}.react-flow__edgelabel-renderer{position:absolute;width:100%;height:100%;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;left:0;top:0}.react-flow__viewport-portal{position:absolute;width:100%;height:100%;left:0;top:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.react-flow__minimap{background:var( --xy-minimap-background-color-props, var(--xy-minimap-background-color, var(--xy-minimap-background-color-default)) )}.react-flow__minimap-svg{display:block}.react-flow__minimap-mask{fill:var( --xy-minimap-mask-background-color-props, var(--xy-minimap-mask-background-color, var(--xy-minimap-mask-background-color-default)) );stroke:var( --xy-minimap-mask-stroke-color-props, var(--xy-minimap-mask-stroke-color, var(--xy-minimap-mask-stroke-color-default)) );stroke-width:var( --xy-minimap-mask-stroke-width-props, var(--xy-minimap-mask-stroke-width, var(--xy-minimap-mask-stroke-width-default)) )}.react-flow__minimap-node{fill:var( --xy-minimap-node-background-color-props, var(--xy-minimap-node-background-color, var(--xy-minimap-node-background-color-default)) );stroke:var( --xy-minimap-node-stroke-color-props, var(--xy-minimap-node-stroke-color, var(--xy-minimap-node-stroke-color-default)) );stroke-width:var( --xy-minimap-node-stroke-width-props, var(--xy-minimap-node-stroke-width, var(--xy-minimap-node-stroke-width-default)) )}.react-flow__background-pattern.dots{fill:var( --xy-background-pattern-color-props, var(--xy-background-pattern-color, var(--xy-background-pattern-dots-color-default)) )}.react-flow__background-pattern.lines{stroke:var( --xy-background-pattern-color-props, var(--xy-background-pattern-color, var(--xy-background-pattern-lines-color-default)) )}.react-flow__background-pattern.cross{stroke:var( --xy-background-pattern-color-props, var(--xy-background-pattern-color, var(--xy-background-pattern-cross-color-default)) )}.react-flow__controls{display:flex;flex-direction:column;box-shadow:var(--xy-controls-box-shadow, var(--xy-controls-box-shadow-default))}.react-flow__controls.horizontal{flex-direction:row}.react-flow__controls-button{display:flex;justify-content:center;align-items:center;height:26px;width:26px;padding:4px;border:none;background:var(--xy-controls-button-background-color, var(--xy-controls-button-background-color-default));border-bottom:1px solid var( --xy-controls-button-border-color-props, var(--xy-controls-button-border-color, var(--xy-controls-button-border-color-default)) );color:var( --xy-controls-button-color-props, var(--xy-controls-button-color, var(--xy-controls-button-color-default)) );cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}.react-flow__controls-button svg{width:100%;max-width:12px;max-height:12px;fill:currentColor}.react-flow__edge.updating .react-flow__edge-path{stroke:#777}.react-flow__edge-text{font-size:10px}.react-flow__node.selectable:focus,.react-flow__node.selectable:focus-visible{outline:none}.react-flow__node-input,.react-flow__node-default,.react-flow__node-output,.react-flow__node-group{padding:10px;border-radius:var(--xy-node-border-radius, var(--xy-node-border-radius-default));width:150px;font-size:12px;color:var(--xy-node-color, var(--xy-node-color-default));text-align:center;border:var(--xy-node-border, var(--xy-node-border-default));background-color:var(--xy-node-background-color, var(--xy-node-background-color-default))}.react-flow__node-input.selectable:hover,.react-flow__node-default.selectable:hover,.react-flow__node-output.selectable:hover,.react-flow__node-group.selectable:hover{box-shadow:var(--xy-node-boxshadow-hover, var(--xy-node-boxshadow-hover-default))}.react-flow__node-input.selectable.selected,.react-flow__node-input.selectable:focus,.react-flow__node-input.selectable:focus-visible,.react-flow__node-default.selectable.selected,.react-flow__node-default.selectable:focus,.react-flow__node-default.selectable:focus-visible,.react-flow__node-output.selectable.selected,.react-flow__node-output.selectable:focus,.react-flow__node-output.selectable:focus-visible,.react-flow__node-group.selectable.selected,.react-flow__node-group.selectable:focus,.react-flow__node-group.selectable:focus-visible{box-shadow:var(--xy-node-boxshadow-selected, var(--xy-node-boxshadow-selected-default))}.react-flow__node-group{background-color:var(--xy-node-group-background-color, var(--xy-node-group-background-color-default))}.react-flow__nodesselection-rect,.react-flow__selection{background:var(--xy-selection-background-color, var(--xy-selection-background-color-default));border:var(--xy-selection-border, var(--xy-selection-border-default))}.react-flow__nodesselection-rect:focus,.react-flow__nodesselection-rect:focus-visible,.react-flow__selection:focus,.react-flow__selection:focus-visible{outline:none}.react-flow__controls-button:hover{background:var( --xy-controls-button-background-color-hover-props, var(--xy-controls-button-background-color-hover, var(--xy-controls-button-background-color-hover-default)) );color:var( --xy-controls-button-color-hover-props, var(--xy-controls-button-color-hover, var(--xy-controls-button-color-hover-default)) )}.react-flow__controls-button:disabled{pointer-events:none}.react-flow__controls-button:disabled svg{fill-opacity:.4}.react-flow__controls-button:last-child{border-bottom:none}.react-flow__controls.horizontal .react-flow__controls-button{border-bottom:none;border-right:1px solid var( --xy-controls-button-border-color-props, var(--xy-controls-button-border-color, var(--xy-controls-button-border-color-default)) )}.react-flow__controls.horizontal .react-flow__controls-button:last-child{border-right:none}.react-flow__resize-control{position:absolute}.react-flow__resize-control.left,.react-flow__resize-control.right{cursor:ew-resize}.react-flow__resize-control.top,.react-flow__resize-control.bottom{cursor:ns-resize}.react-flow__resize-control.top.left,.react-flow__resize-control.bottom.right{cursor:nwse-resize}.react-flow__resize-control.bottom.left,.react-flow__resize-control.top.right{cursor:nesw-resize}.react-flow__resize-control.handle{width:5px;height:5px;border:1px solid #fff;border-radius:1px;background-color:var(--xy-resize-background-color, var(--xy-resize-background-color-default));translate:-50% -50%}.react-flow__resize-control.handle.left{left:0;top:50%}.react-flow__resize-control.handle.right{left:100%;top:50%}.react-flow__resize-control.handle.top{left:50%;top:0}.react-flow__resize-control.handle.bottom{left:50%;top:100%}.react-flow__resize-control.handle.top.left,.react-flow__resize-control.handle.bottom.left{left:0}.react-flow__resize-control.handle.top.right,.react-flow__resize-control.handle.bottom.right{left:100%}.react-flow__resize-control.line{border-color:var(--xy-resize-background-color, var(--xy-resize-background-color-default));border-width:0;border-style:solid}.react-flow__resize-control.line.left,.react-flow__resize-control.line.right{width:1px;transform:translate(-50%);top:0;height:100%}.react-flow__resize-control.line.left{left:0;border-left-width:1px}.react-flow__resize-control.line.right{left:100%;border-right-width:1px}.react-flow__resize-control.line.top,.react-flow__resize-control.line.bottom{height:1px;transform:translateY(-50%);left:0;width:100%}.react-flow__resize-control.line.top{top:0;border-top-width:1px}.react-flow__resize-control.line.bottom{border-bottom-width:1px;top:100%}.react-flow__edge-textbg{fill:var(--xy-edge-label-background-color, var(--xy-edge-label-background-color-default))}.react-flow__edge-text{fill:var(--xy-edge-label-color, var(--xy-edge-label-color-default))}.flow{overflow:hidden}.flow .react-flow__node{background:transparent;padding:unset;box-shadow:none!important;border:none;border-radius:unset;color:unset;width:unset;font-size:unset;text-align:unset}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.d-folder{padding:.35rem .7rem;display:flex;white-space:nowrap;flex-wrap:nowrap;gap:.35rem;cursor:pointer;font-size:.8rem;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.d-folder{border-radius:1rem;border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.d-folder:hover{box-shadow:inset 0 0 0 1px #ffffff40}.d-folder{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;box-shadow:none;background:#030014}.d-folder__icon,.d-folder__status,.d-folder__item-icon{color:#70ffb2;display:flex;align-items:center;justify-content:center}.d-folder__status,.d-folder__item-icon{color:#fff}.d-folder__content{margin-left:.7rem;position:relative;padding-left:calc(5px + .35rem)}.d-folder__content:before{height:100%;width:1px;background:#1c1a2c;position:absolute;content:"";left:5px}.d-folder__item{padding:.35rem .7rem;display:flex;white-space:nowrap;flex-wrap:nowrap;gap:.35rem;align-items:center;cursor:pointer;font-size:.8rem;position:relative}.d-folder__item{border-radius:1rem;border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.d-folder__item:hover{box-shadow:inset 0 0 0 1px #ffffff40}.d-folder__item:active,.d-folder__item:focus{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.d-folder__item{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;box-shadow:none}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.d-flow-viewport-default-card__handle{border:none!important;padding:1px;z-index:-1;opacity:0}.d-flow-viewport-default-card__inspection{top:0;transform:translateY(-50%);padding:.35rem}.d-flow-viewport-default-card__inspection{border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem;position:absolute}.d-flow-viewport-default-card--active{box-shadow:inset 0 0 0 1px #70ffb240,0 0 0 3px #70ffb240}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.d-flow-viewport-data-type-input{padding:1rem;box-sizing:border-box;position:relative}.d-flow-viewport-data-type-input{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;border-radius:1rem}.d-flow-viewport-data-type-input__rule{margin-bottom:1rem;display:flex;position:relative;flex-direction:column;gap:1.2rem}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.d-flow-viewport-mini-map{border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem;margin:0;width:100%}.d-flow-viewport-mini-map>svg{border-radius:1rem}.d-flow-viewport-mini-map * .react-flow__minimap-mask{fill:#ffffff1a}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.d-flow-suggestion-search-input{box-shadow:none!important;background:none!important;margin-left:-.35rem;margin-right:-.35rem;padding-left:.35rem;padding-right:.35rem;border-radius:0!important}.d-flow-suggestion-search-input>input{padding-top:0!important;padding-bottom:0!important}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.d-flow-viewport-validations{padding:.35rem}.d-flow-viewport-validations{border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.d-full-screen{position:relative;overflow:hidden;overscroll-behavior:contain;box-sizing:border-box}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.d-layout{position:relative;width:100%;height:100%;overflow:hidden}.d-layout .flex{width:100%;height:100%;gap:.7rem}.d-layout__content{width:100%}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.d-resizable__panel{color:#fff;position:relative;overflow:hidden;z-index:0}.d-resizable__panel{border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem}.d-resizable__panel:has(.d-resizable__panel){background:#030014}.d-resizable__handle{position:relative;display:flex;align-items:center;justify-content:center}.d-resizable__handle[data-panel-group-direction=horizontal]{width:1rem;height:100%}.d-resizable__handle[data-panel-group-direction=vertical]{height:1rem;width:100%}.d-resizable__handle-bar{z-index:1;position:relative;display:block;padding:.25rem}.d-resizable__handle-bar{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem}.d-resizable[data-panel-group-direction=horizontal] * .d-resizable__handle-bar{min-height:3rem;height:15%}.d-resizable[data-panel-group-direction=vertical] * .d-resizable__handle-bar{min-width:3rem;min-height:auto;height:auto;width:15%}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.dialog{border:none;background:#030014;color:#030014bf;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem;backdrop-filter:none;-webkit-backdrop-filter:none;position:relative;padding:1.3rem;margin:auto;overflow:auto;inset:auto;height:fit-content;max-height:none}.dialog__overlay{position:fixed;inset:0;z-index:50;background:#00000080}.dialog__content{position:fixed;top:50%;left:50%;z-index:50;display:grid;width:100%;max-width:calc(100% - 2rem);gap:1rem;transform:translate(-50%,-50%);border:1px solid rgba(255,255,255,.1);padding:1rem;background:#030014;color:#fff;border-radius:1rem}@media(min-width:768px){.dialog__content{width:420px}}.dialog__title{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;font-weight:600;font-size:1.2rem;color:#fff;margin:0}.dialog__description{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;font-size:.8rem;color:#fff;margin:0}.dialog__header{display:flex;flex-direction:column;gap:.5rem;text-align:center}@media(min-width:640px){.dialog__header{text-align:left}}.dialog__footer{display:flex;flex-direction:column-reverse;gap:.5rem}@media(min-width:640px){.dialog__footer{flex-direction:row;justify-content:flex-end}}.dialog__close{position:absolute;top:1rem;right:1rem;border-radius:.125rem;border:none;opacity:.7;transition:opacity .2s ease;background:none;color:#fff}.dialog__close:hover{opacity:1}.dialog__close:focus{outline:none}.dialog__close:disabled{pointer-events:none}.dialog__close svg{pointer-events:none;flex-shrink:0}.dialog__close svg:not([class*=size-]){width:1rem;height:1rem}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.file-tabs{position:relative;width:100%;height:100%}.file-tabs__list{box-sizing:border-box;display:flex;flex-wrap:nowrap;align-items:center;justify-content:space-between;position:relative;gap:.7rem;padding:.7rem}.file-tabs__list-content{display:flex;overflow-x:scroll;flex-wrap:nowrap;gap:.35rem;-ms-overflow-style:none;scrollbar-width:none}.file-tabs__list-content::-webkit-scrollbar{display:none}.file-tabs__list-controls{display:flex;flex-wrap:nowrap;gap:.35rem}.file-tabs__trigger{padding:.35rem .7rem;display:flex;gap:.7rem;align-items:center;text-wrap:nowrap;margin-bottom:1px;cursor:pointer;font-size:.8rem}.file-tabs__trigger{border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.file-tabs__trigger:hover{box-shadow:inset 0 0 0 1px #c0bfc440}.file-tabs__trigger{border-radius:1rem;font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;background:transparent;box-shadow:none}.file-tabs__trigger[data-state=active]{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.file-tabs__trigger[data-state=active] .file-tabs__trigger-icon,.file-tabs__trigger:hover .file-tabs__trigger-icon,.file-tabs__trigger:active .file-tabs__trigger-icon{opacity:1}.file-tabs__trigger-icon{display:flex;align-items:center;justify-content:center;padding:.1rem;opacity:0;cursor:pointer;font-size:unset}.file-tabs__trigger-icon:hover{box-shadow:inset 0 0 0 1px #ffffff40}.file-tabs__trigger-icon{border-radius:1rem}.file-tabs__content{padding:1.4rem;position:relative}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.flex{display:flex}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.input{display:flex;z-index:1;align-items:stretch;box-sizing:border-box}.input{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.input:hover{box-shadow:inset 0 0 0 1px #ffffff40}.input:active,.input:focus{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.input{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;border-radius:1rem}.input:has(.input__control:focus){box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.input--not-valid{border:none;background:#180016;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #f6c0ca1a}.input__syntax{position:absolute;z-index:-1;overflow:hidden;font-size:.8rem;color:#ffffff80;white-space:nowrap;padding:.7rem;box-sizing:border-box;top:0;left:0;width:100%;height:100%}.input__left,.input__right{display:flex;align-items:stretch;margin:.175rem;gap:.7rem}.input__left>button,.input__right>button{height:100%;padding-left:0;padding-right:0}.input__left--action,.input__right--action{padding:0}.input__left--placeholder,.input__right--placeholder{border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;border-radius:.825rem;padding:.7rem}.input__left{padding-left:.7rem}.input__left--icon{align-items:center}.input__right{padding-right:.7rem}.input__right--icon{align-items:center}.input__control{background:none;border:none;outline:none;padding:.7rem;flex:1;width:100%;box-shadow:none;font-size:.8rem;box-sizing:border-box;color:#ffffff80}.input__control{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.input__control--syntax{color:transparent}.input__label{text-transform:uppercase;color:#ffffff80;font-size:.7rem;display:block}.input__label{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.input__description{color:#ffffff80;font-size:.8rem;margin:.35rem 0 .7rem;display:block}.input__description{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.input__message{padding:.7rem;z-index:0;display:flex;align-items:center;font-size:.7rem;gap:.35rem;margin-top:.7rem}.input__message{border:none;background:#180016;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #f6c0ca1a;border-radius:1rem;font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.input__message>svg{width:.8rem;height:.8rem}.pin-input{display:flex;justify-content:space-between;gap:.7rem;position:relative;background:transparent}.pin-input__field{flex:1;width:100%;aspect-ratio:1/1;text-align:center}.number-input::-webkit-outer-spin-button,.number-input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.number-input[type=number]{-moz-appearance:textfield}.radio-input{background:transparent!important;box-shadow:none!important;display:flex;align-items:center;box-sizing:border-box;gap:.35rem;position:relative}.radio-input__button{top:-1px;width:18px;height:18px;padding:.35rem}.radio-input__button{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.radio-input__button:active,.radio-input__button:focus{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.radio-input__button{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.radio-input__button:disabled,.radio-input__button[data-disabled],.radio-input__button[aria-disabled=true],.radio-input__button--disabled{cursor:not-allowed;opacity:25%;pointer-events:unset}.radio-input__button{border-radius:1rem}.radio-input__button[data-state=checked]{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.radio-input__indicator{height:100%;position:relative;display:block;aspect-ratio:1/1}.radio-input__indicator[data-state=checked]{background-color:#70ffb2}.radio-input__indicator[data-state=checked]{border-radius:1rem}.radio-button{padding:0;display:inline-flex}.checkbox-input{background:transparent!important;box-shadow:none!important;align-items:center;box-sizing:border-box;gap:.35rem;padding:.35rem 0}.checkbox-input__button{aspect-ratio:1/1;width:17px;height:17px;display:flex;align-items:center;justify-content:center}.checkbox-input__button{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.checkbox-input__button:active,.checkbox-input__button:focus{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.checkbox-input__button{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.checkbox-input__button:disabled,.checkbox-input__button[data-disabled],.checkbox-input__button[aria-disabled=true],.checkbox-input__button--disabled{cursor:not-allowed;opacity:25%;pointer-events:unset}.checkbox-input__button{border-radius:1rem}.checkbox-input__indicator{position:relative;display:flex;align-items:center;justify-content:center;top:1px}.switch-input{background:transparent!important;box-shadow:none!important}.switch-input .input__control{position:relative;box-sizing:border-box;padding:0;width:.9rem;height:.9rem;appearance:none;outline:none;cursor:pointer;background-color:transparent;border-radius:50%}.switch-input .input__control:checked:after{-webkit-transform:translateX(22px);-ms-transform:translateX(22px);transform:translate(22px);-webkit-transition:.4s;transition:.4s}.switch-input .input__control:checked:before{border:none;background:#0e1a24;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;position:absolute;width:2.6rem;height:1.25rem}.switch-input .input__control:after{width:.9rem;height:.9rem;background-color:#fff;border-radius:50%;position:absolute;content:"";-webkit-transition:.4s;transition:.4s}.switch-input .input__control:before{content:"";z-index:-1;-webkit-transition:.4s;transition:.4s;top:-.175rem;left:-.175rem}.switch-input .input__control:before{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem;position:absolute;width:2.6rem;height:1.25rem}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.menu{z-index:999}.menu__content,.menu__sub-content{padding:.35rem;position:relative;box-sizing:border-box}.menu__content,.menu__sub-content{border:none;background:#030014;color:#030014bf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #c0bfc41a;border-radius:1rem}.menu__label{text-transform:uppercase;font-size:.7rem;display:flex;gap:.35rem;align-items:center;padding:.35rem .7rem;color:#ffffff80}.menu__label{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.menu__item,.menu__sub-trigger{border-radius:.65rem;padding:.35rem .7rem;gap:.7rem;cursor:pointer;width:100%;display:flex;align-items:center;font-size:.8rem}.menu__item,.menu__sub-trigger{border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #c0bfc41a}.menu__item:focus,.menu__sub-trigger:focus{outline:none}.menu__item,.menu__sub-trigger{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.menu__item:disabled,.menu__item[data-disabled],.menu__item[aria-disabled=true],.menu__item--disabled,.menu__sub-trigger:disabled,.menu__sub-trigger[data-disabled],.menu__sub-trigger[aria-disabled=true],.menu__sub-trigger--disabled{cursor:not-allowed;opacity:25%;pointer-events:unset}.menu__item,.menu__sub-trigger{box-shadow:none}.menu__item:focus,.menu__sub-trigger:focus{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;box-shadow:none;width:100%}.menu__separator{border:none;margin:.35rem 0;color:#ffffff1a;height:1px;background-color:#ffffff1a}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@charset "UTF-8";.quote{position:relative}.quote__text:before,.quote__text:after{position:relative;content:"”"}.quote__footer{display:flex;gap:.5rem;align-items:center}.quote__footer>div{display:flex;flex-direction:column;gap:.25rem}.quote__img{height:40px}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.row{display:flex;flex-wrap:wrap;margin-left:-.5rem;margin-right:-.5rem}.row+.row{margin-top:1rem}.row>*{flex-shrink:0;max-width:100%;padding-left:.5rem;padding-right:.5rem;box-sizing:border-box}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.scroll-area{overflow:hidden}.scroll-area__viewport{width:100%;height:100%}.scroll-area__scrollbar{display:flex;-webkit-user-select:none;user-select:none;touch-action:none}.scroll-area__scrollbar[data-orientation=vertical]{width:.5rem}.scroll-area__scrollbar[data-orientation=horizontal]{flex-direction:column;height:.5rem}.scroll-area__thumb{flex:1;cursor:grabbing}.scroll-area__thumb{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.segmented-control{padding:.35rem;gap:.35rem;display:flex;flex-wrap:nowrap}.segmented-control{border:none;background:#030014;color:#030014bf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #c0bfc41a;border-radius:1rem}.segmented-control__item{cursor:pointer;padding:.35rem .7rem}.segmented-control__item{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:.65rem;font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;font-size:.8rem;box-shadow:none}.segmented-control__item[data-state=off]{background:transparent}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.text{font-family:Inter,sans-serif}.text--xs{font-size:.7rem}.text--sm{font-size:.8rem}.text--md{font-size:1rem}.text--lg{font-size:1.2rem}.text--xl{font-size:1.3rem}.text--primary{font-family:Inter,sans-serif;line-height:1.1;letter-spacing:-.75px;color:#fff}.text--secondary{line-height:1.1;letter-spacing:-.75px;color:#ffffffbf}.text--tertiary{line-height:1.1;letter-spacing:-.75px;color:#ffffff80}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.tooltip__content{z-index:999;padding:.35rem .7rem}.tooltip__content{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;border-radius:1rem;box-shadow:none}.tooltip__arrow{fill:#1c1a2c}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import p from "react";
|
|
2
|
+
var e = { exports: {} }, t = {};
|
|
3
|
+
/**
|
|
4
|
+
* @license React
|
|
5
|
+
* react-compiler-runtime.production.js
|
|
6
|
+
*
|
|
7
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
8
|
+
*
|
|
9
|
+
* This source code is licensed under the MIT license found in the
|
|
10
|
+
* LICENSE file in the root directory of this source tree.
|
|
11
|
+
*/
|
|
12
|
+
var a;
|
|
13
|
+
function s() {
|
|
14
|
+
if (a) return t;
|
|
15
|
+
a = 1;
|
|
16
|
+
var o = p.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;
|
|
17
|
+
return t.c = function(r) {
|
|
18
|
+
return o.H.useMemoCache(r);
|
|
19
|
+
}, t;
|
|
20
|
+
}
|
|
21
|
+
var n = {};
|
|
22
|
+
/**
|
|
23
|
+
* @license React
|
|
24
|
+
* react-compiler-runtime.development.js
|
|
25
|
+
*
|
|
26
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
27
|
+
*
|
|
28
|
+
* This source code is licensed under the MIT license found in the
|
|
29
|
+
* LICENSE file in the root directory of this source tree.
|
|
30
|
+
*/
|
|
31
|
+
var u;
|
|
32
|
+
function m() {
|
|
33
|
+
return u || (u = 1, process.env.NODE_ENV !== "production" && (function() {
|
|
34
|
+
var o = p.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;
|
|
35
|
+
n.c = function(r) {
|
|
36
|
+
var i = o.H;
|
|
37
|
+
return i === null && console.error(
|
|
38
|
+
`Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
|
|
39
|
+
1. You might have mismatching versions of React and the renderer (such as React DOM)
|
|
40
|
+
2. You might be breaking the Rules of Hooks
|
|
41
|
+
3. You might have more than one copy of React in the same app
|
|
42
|
+
See https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem.`
|
|
43
|
+
), i.useMemoCache(r);
|
|
44
|
+
};
|
|
45
|
+
})()), n;
|
|
46
|
+
}
|
|
47
|
+
var c;
|
|
48
|
+
function l() {
|
|
49
|
+
return c || (c = 1, process.env.NODE_ENV === "production" ? e.exports = s() : e.exports = m()), e.exports;
|
|
50
|
+
}
|
|
51
|
+
var _ = l();
|
|
52
|
+
export {
|
|
53
|
+
_ as c
|
|
54
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Code0Component } from '../../utils/types';
|
|
3
|
+
export interface AvatarProps extends Code0Component<HTMLDivElement> {
|
|
4
|
+
identifier?: string;
|
|
5
|
+
src?: string;
|
|
6
|
+
size?: number;
|
|
7
|
+
}
|
|
8
|
+
export declare const Avatar: React.FC<AvatarProps>;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { jsx as m } from "react/jsx-runtime";
|
|
2
|
+
import { c as p } from "../../compiler-runtime-Cu50tn6L.js";
|
|
3
|
+
import d from "react";
|
|
4
|
+
import { md5 as v } from "js-md5";
|
|
5
|
+
import '../../assets/Avatar.css';/* empty css */
|
|
6
|
+
import { mergeCode0Props as R } from "../../utils/utils.js";
|
|
7
|
+
const x = (f) => {
|
|
8
|
+
const t = p.c(3), {
|
|
9
|
+
src: e,
|
|
10
|
+
size: s
|
|
11
|
+
} = f;
|
|
12
|
+
let i;
|
|
13
|
+
return t[0] !== s || t[1] !== e ? (i = /* @__PURE__ */ m("img", { src: e, width: s, height: s, alt: "Avatar image" }), t[0] = s, t[1] = e, t[2] = i) : i = t[2], i;
|
|
14
|
+
}, E = ({
|
|
15
|
+
identifier: f,
|
|
16
|
+
size: t
|
|
17
|
+
}) => {
|
|
18
|
+
const e = d.useRef(null);
|
|
19
|
+
d.useEffect(() => {
|
|
20
|
+
s();
|
|
21
|
+
});
|
|
22
|
+
const s = () => {
|
|
23
|
+
const i = v(f), r = Math.floor(t / 5), c = i.slice(0, 6);
|
|
24
|
+
e.current.width = r * 5, e.current.height = r * 5;
|
|
25
|
+
let a = i.split("").map((o) => (o = parseInt(o, 16), o < 8 ? 0 : 1)), l = [];
|
|
26
|
+
l[0] = l[4] = a.slice(0, 5), l[1] = l[3] = a.slice(5, 10), l[2] = a.slice(10, 15);
|
|
27
|
+
const n = e.current.getContext("2d");
|
|
28
|
+
n.imageSmoothingEnabled = !1, n.clearRect(0, 0, e.current.width, e.current.height), l.forEach((o, h) => {
|
|
29
|
+
o.forEach((g, u) => {
|
|
30
|
+
g ? (n.fillStyle = "#" + c, n.fillRect(r * h, r * u, r, r)) : (n.fillStyle = "transparent", n.fillRect(r * h, r * u, r, r));
|
|
31
|
+
});
|
|
32
|
+
});
|
|
33
|
+
};
|
|
34
|
+
return /* @__PURE__ */ m("canvas", { ref: e });
|
|
35
|
+
}, $ = (f) => {
|
|
36
|
+
const t = p.c(12);
|
|
37
|
+
let e, s, i, r;
|
|
38
|
+
if (t[0] !== f) {
|
|
39
|
+
const {
|
|
40
|
+
identifier: l,
|
|
41
|
+
src: n,
|
|
42
|
+
size: o,
|
|
43
|
+
...h
|
|
44
|
+
} = f;
|
|
45
|
+
e = l, i = n, s = o === void 0 ? 25 : o, r = R(`avatar ${!e && i ? "avatar--image" : ""}`, h), t[0] = f, t[1] = e, t[2] = s, t[3] = i, t[4] = r;
|
|
46
|
+
} else
|
|
47
|
+
e = t[1], s = t[2], i = t[3], r = t[4];
|
|
48
|
+
let c;
|
|
49
|
+
t[5] !== e || t[6] !== s || t[7] !== i ? (c = e ? /* @__PURE__ */ m(E, { identifier: e, size: s }) : i ? /* @__PURE__ */ m(x, { src: i, size: s + 13 }) : null, t[5] = e, t[6] = s, t[7] = i, t[8] = c) : c = t[8];
|
|
50
|
+
let a;
|
|
51
|
+
return t[9] !== r || t[10] !== c ? (a = /* @__PURE__ */ m("div", { ...r, children: c }), t[9] = r, t[10] = c, t[11] = a) : a = t[11], a;
|
|
52
|
+
};
|
|
53
|
+
export {
|
|
54
|
+
$ as Avatar
|
|
55
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Code0Component, Color } from '../../utils/types';
|
|
3
|
+
export interface BadgeType extends Code0Component<HTMLSpanElement> {
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
color?: Color;
|
|
6
|
+
}
|
|
7
|
+
export declare const Badge: React.FC<BadgeType>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { jsx as s } from "react/jsx-runtime";
|
|
2
|
+
import { c as n } from "../../compiler-runtime-Cu50tn6L.js";
|
|
3
|
+
import '../../assets/Badge.css';/* empty css */
|
|
4
|
+
import { mergeCode0Props as a } from "../../utils/utils.js";
|
|
5
|
+
const b = (c) => {
|
|
6
|
+
const o = n.c(6);
|
|
7
|
+
let r, e;
|
|
8
|
+
if (o[0] !== c) {
|
|
9
|
+
const {
|
|
10
|
+
color: i,
|
|
11
|
+
children: l,
|
|
12
|
+
...m
|
|
13
|
+
} = c;
|
|
14
|
+
r = l, e = a(`badge badge--${i === void 0 ? "primary" : i}`, m), o[0] = c, o[1] = r, o[2] = e;
|
|
15
|
+
} else
|
|
16
|
+
r = o[1], e = o[2];
|
|
17
|
+
let t;
|
|
18
|
+
return o[3] !== r || o[4] !== e ? (t = /* @__PURE__ */ s("span", { ...e, children: r }), o[3] = r, o[4] = e, o[5] = t) : t = o[5], t;
|
|
19
|
+
};
|
|
20
|
+
export {
|
|
21
|
+
b as Badge
|
|
22
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Code0Component } from '../../utils/types';
|
|
3
|
+
export interface BreadcrumbProps extends Code0Component<HTMLDivElement> {
|
|
4
|
+
splitter?: React.ReactNode;
|
|
5
|
+
children?: React.ReactNode | React.ReactNode[];
|
|
6
|
+
}
|
|
7
|
+
export declare const Breadcrumb: React.FC<BreadcrumbProps>;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { jsx as d, jsxs as p, Fragment as f } from "react/jsx-runtime";
|
|
2
|
+
import { c as u } from "../../compiler-runtime-Cu50tn6L.js";
|
|
3
|
+
import a from "react";
|
|
4
|
+
import { mergeCode0Props as h } from "../../utils/utils.js";
|
|
5
|
+
import '../../assets/Breadcrumb.css';const j = (n) => {
|
|
6
|
+
const e = u.c(12);
|
|
7
|
+
let l, t, i;
|
|
8
|
+
if (e[0] !== n) {
|
|
9
|
+
const {
|
|
10
|
+
splitter: r,
|
|
11
|
+
children: c,
|
|
12
|
+
...o
|
|
13
|
+
} = n;
|
|
14
|
+
l = c, t = r === void 0 ? "/" : r, i = h("breadcrumb", o), e[0] = n, e[1] = l, e[2] = t, e[3] = i;
|
|
15
|
+
} else
|
|
16
|
+
l = e[1], t = e[2], i = e[3];
|
|
17
|
+
let s;
|
|
18
|
+
if (e[4] !== l || e[5] !== t) {
|
|
19
|
+
let r;
|
|
20
|
+
e[7] !== t ? (r = (c, o) => /* @__PURE__ */ p(f, { children: [
|
|
21
|
+
c,
|
|
22
|
+
o <= a.Children.count(c) ? /* @__PURE__ */ d("span", { className: "breadcrumb__splitter", children: t }) : null
|
|
23
|
+
] }), e[7] = t, e[8] = r) : r = e[8], s = a.Children.map(l, r), e[4] = l, e[5] = t, e[6] = s;
|
|
24
|
+
} else
|
|
25
|
+
s = e[6];
|
|
26
|
+
let m;
|
|
27
|
+
return e[9] !== i || e[10] !== s ? (m = /* @__PURE__ */ d("div", { ...i, children: s }), e[9] = i, e[10] = s, e[11] = m) : m = e[11], m;
|
|
28
|
+
};
|
|
29
|
+
export {
|
|
30
|
+
j as Breadcrumb
|
|
31
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { default as React, ReactNode } from 'react';
|
|
2
|
+
import { Code0Component, Color } from '../../utils/types';
|
|
3
|
+
export interface ButtonProps extends Code0Component<HTMLButtonElement> {
|
|
4
|
+
children: ReactNode | ReactNode[];
|
|
5
|
+
color?: Color;
|
|
6
|
+
variant?: "none" | "normal" | "outlined";
|
|
7
|
+
active?: boolean;
|
|
8
|
+
disabled?: boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare const Button: React.FC<ButtonProps>;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { jsx as x } from "react/jsx-runtime";
|
|
2
|
+
import { c as R } from "../../compiler-runtime-Cu50tn6L.js";
|
|
3
|
+
import g from "react";
|
|
4
|
+
import { mergeCode0Props as h } from "../../utils/utils.js";
|
|
5
|
+
import '../../assets/Button.css';const C = g.forwardRef((n, l) => {
|
|
6
|
+
const t = R.c(11);
|
|
7
|
+
let o, i, e, r;
|
|
8
|
+
if (t[0] !== n || t[1] !== l) {
|
|
9
|
+
const {
|
|
10
|
+
children: f,
|
|
11
|
+
variant: c,
|
|
12
|
+
color: d,
|
|
13
|
+
active: m,
|
|
14
|
+
disabled: b,
|
|
15
|
+
...u
|
|
16
|
+
} = n;
|
|
17
|
+
o = f;
|
|
18
|
+
const v = c === void 0 ? "normal" : c, $ = d === void 0 ? "secondary" : d, p = m === void 0 ? !1 : m;
|
|
19
|
+
i = b === void 0 ? !1 : b, e = l, r = h(`button button--${$} ${p ? "button--active" : ""} ${i ? "button--disabled" : ""} button--${v}`, u), t[0] = n, t[1] = l, t[2] = o, t[3] = i, t[4] = e, t[5] = r;
|
|
20
|
+
} else
|
|
21
|
+
o = t[2], i = t[3], e = t[4], r = t[5];
|
|
22
|
+
const s = i ? "true" : "false";
|
|
23
|
+
let a;
|
|
24
|
+
return t[6] !== o || t[7] !== e || t[8] !== r || t[9] !== s ? (a = /* @__PURE__ */ x("button", { ref: e, ...r, "aria-disabled": s, children: o }), t[6] = o, t[7] = e, t[8] = r, t[9] = s, t[10] = a) : a = t[10], a;
|
|
25
|
+
});
|
|
26
|
+
export {
|
|
27
|
+
C as Button
|
|
28
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { default as React, ReactElement } from 'react';
|
|
2
|
+
import { ButtonProps } from '../button/Button';
|
|
3
|
+
import { Code0Component } from '../../utils/types';
|
|
4
|
+
export interface ButtonGroupType extends Code0Component<HTMLDivElement> {
|
|
5
|
+
children: ReactElement<ButtonProps>[];
|
|
6
|
+
}
|
|
7
|
+
export declare const ButtonGroup: React.FC<ButtonGroupType>;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { jsx as u } from "react/jsx-runtime";
|
|
2
|
+
import { c } from "../../compiler-runtime-Cu50tn6L.js";
|
|
3
|
+
import { mergeCode0Props as g } from "../../utils/utils.js";
|
|
4
|
+
import '../../assets/ButtonGroup.css';const h = (i) => {
|
|
5
|
+
const t = c.c(10);
|
|
6
|
+
let e, o;
|
|
7
|
+
if (t[0] !== i) {
|
|
8
|
+
const {
|
|
9
|
+
children: l,
|
|
10
|
+
...s
|
|
11
|
+
} = i;
|
|
12
|
+
e = l, o = g("button-group", s), t[0] = i, t[1] = e, t[2] = o;
|
|
13
|
+
} else
|
|
14
|
+
e = t[1], o = t[2];
|
|
15
|
+
let r;
|
|
16
|
+
if (t[3] !== e) {
|
|
17
|
+
let l;
|
|
18
|
+
t[5] !== e.length ? (l = (s, m) => /* @__PURE__ */ u("div", { className: `${m == 0 || m == e.length - 1 ? m == 0 ? "button-group__first" : "button-group__last" : "button-group__item"}`, children: s }), t[5] = e.length, t[6] = l) : l = t[6], r = e.map(l), t[3] = e, t[4] = r;
|
|
19
|
+
} else
|
|
20
|
+
r = t[4];
|
|
21
|
+
let n;
|
|
22
|
+
return t[7] !== o || t[8] !== r ? (n = /* @__PURE__ */ u("div", { ...o, children: r }), t[7] = o, t[8] = r, t[9] = n) : n = t[9], n;
|
|
23
|
+
};
|
|
24
|
+
export {
|
|
25
|
+
h as ButtonGroup
|
|
26
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { default as React, ReactNode } from 'react';
|
|
2
|
+
import { Code0Component, Color } from '../../utils/types';
|
|
3
|
+
export interface Card extends Code0Component<HTMLDivElement> {
|
|
4
|
+
children: ReactNode | ReactNode[];
|
|
5
|
+
color?: Color;
|
|
6
|
+
variant?: "none" | "normal" | "outlined" | "filled";
|
|
7
|
+
gradient?: boolean;
|
|
8
|
+
gradientColor?: Color;
|
|
9
|
+
borderColor?: Color;
|
|
10
|
+
outline?: boolean;
|
|
11
|
+
outlineColor?: Color;
|
|
12
|
+
dashed?: boolean;
|
|
13
|
+
}
|
|
14
|
+
export declare const Card: React.FC<Card>;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { jsx as f, Fragment as E } from "react/jsx-runtime";
|
|
2
|
+
import { c as F } from "../../compiler-runtime-Cu50tn6L.js";
|
|
3
|
+
import '../../assets/Card.css';/* empty css */
|
|
4
|
+
import { mergeCode0Props as P } from "../../utils/utils.js";
|
|
5
|
+
const z = (d) => {
|
|
6
|
+
const o = F.c(6);
|
|
7
|
+
let r, t;
|
|
8
|
+
if (o[0] !== d) {
|
|
9
|
+
const {
|
|
10
|
+
children: C,
|
|
11
|
+
color: i,
|
|
12
|
+
variant: n,
|
|
13
|
+
gradient: a,
|
|
14
|
+
gradientColor: c,
|
|
15
|
+
borderColor: l,
|
|
16
|
+
outlineColor: s,
|
|
17
|
+
outline: m,
|
|
18
|
+
dashed: v,
|
|
19
|
+
...u
|
|
20
|
+
} = d;
|
|
21
|
+
r = C;
|
|
22
|
+
const h = i === void 0 ? "primary" : i, p = n === void 0 ? "normal" : n, $ = a === void 0 ? !1 : a, b = c === void 0 ? "secondary" : c, g = l === void 0 ? "secondary" : l, y = s === void 0 ? "secondary" : s, x = m === void 0 ? !1 : m, j = v === void 0 ? !1 : v;
|
|
23
|
+
t = P(`
|
|
24
|
+
card
|
|
25
|
+
card--${h} card--${p}
|
|
26
|
+
${x ? `card--outline-${y}` : ""}
|
|
27
|
+
${$ ? "card--gradient" : ""}
|
|
28
|
+
${g ? `card--border-${g}` : ""}
|
|
29
|
+
${j ? "card--border--dashed" : ""}
|
|
30
|
+
${$ ? `card--gradient-${b}` : ""}
|
|
31
|
+
`, u), o[0] = d, o[1] = r, o[2] = t;
|
|
32
|
+
} else
|
|
33
|
+
r = o[1], t = o[2];
|
|
34
|
+
let e;
|
|
35
|
+
return o[3] !== r || o[4] !== t ? (e = /* @__PURE__ */ f(E, { children: /* @__PURE__ */ f("div", { ...t, children: r }) }), o[3] = r, o[4] = t, o[5] = e) : e = o[5], e;
|
|
36
|
+
};
|
|
37
|
+
export {
|
|
38
|
+
z as Card
|
|
39
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Code0Component } from '../../utils/types';
|
|
2
|
+
import { default as React, ReactNode } from 'react';
|
|
3
|
+
export interface SectionType extends Code0Component<HTMLDivElement> {
|
|
4
|
+
children: ReactNode | ReactNode[];
|
|
5
|
+
image?: boolean;
|
|
6
|
+
border?: boolean;
|
|
7
|
+
}
|
|
8
|
+
declare const CardSection: React.FC<SectionType>;
|
|
9
|
+
export default CardSection;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { jsx as s, Fragment as m } from "react/jsx-runtime";
|
|
2
|
+
import { c as l } from "../../compiler-runtime-Cu50tn6L.js";
|
|
3
|
+
import { mergeCode0Props as f } from "../../utils/utils.js";
|
|
4
|
+
const u = (i) => {
|
|
5
|
+
const e = l.c(6);
|
|
6
|
+
let r, t;
|
|
7
|
+
if (e[0] !== i) {
|
|
8
|
+
const {
|
|
9
|
+
image: c,
|
|
10
|
+
border: d,
|
|
11
|
+
children: a,
|
|
12
|
+
...n
|
|
13
|
+
} = i;
|
|
14
|
+
r = a, t = f(`card__section ${(d === void 0 ? !1 : d) ? "card__section--border" : ""} ${(c === void 0 ? !1 : c) ? "card__section--image" : ""}`, n), e[0] = i, e[1] = r, e[2] = t;
|
|
15
|
+
} else
|
|
16
|
+
r = e[1], t = e[2];
|
|
17
|
+
let o;
|
|
18
|
+
return e[3] !== r || e[4] !== t ? (o = /* @__PURE__ */ s(m, { children: /* @__PURE__ */ s("div", { ...t, children: r }) }), e[3] = r, e[4] = t, e[5] = o) : o = e[5], o;
|
|
19
|
+
};
|
|
20
|
+
export {
|
|
21
|
+
u as default
|
|
22
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { default as React, ReactNode } from 'react';
|
|
2
|
+
import { Code0Component } from '../../utils/types';
|
|
3
|
+
export type ColBreakPointRange = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
4
|
+
export interface ColType extends Code0Component<HTMLDivElement> {
|
|
5
|
+
children: ReactNode | ReactNode[];
|
|
6
|
+
xs?: ColBreakPointRange;
|
|
7
|
+
sm?: ColBreakPointRange;
|
|
8
|
+
md?: ColBreakPointRange;
|
|
9
|
+
lg?: ColBreakPointRange;
|
|
10
|
+
xl?: ColBreakPointRange;
|
|
11
|
+
xxl?: ColBreakPointRange;
|
|
12
|
+
}
|
|
13
|
+
export declare const Col: React.FC<ColType>;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { jsx as f } from "react/jsx-runtime";
|
|
2
|
+
import { c as g } from "../../compiler-runtime-Cu50tn6L.js";
|
|
3
|
+
import { mergeCode0Props as p } from "../../utils/utils.js";
|
|
4
|
+
import '../../assets/Col.css';const C = (c) => {
|
|
5
|
+
const l = g.c(6);
|
|
6
|
+
let o, e;
|
|
7
|
+
if (l[0] !== c) {
|
|
8
|
+
const {
|
|
9
|
+
children: n,
|
|
10
|
+
xs: r,
|
|
11
|
+
sm: m,
|
|
12
|
+
md: $,
|
|
13
|
+
lg: s,
|
|
14
|
+
xl: i,
|
|
15
|
+
xxl: x,
|
|
16
|
+
...d
|
|
17
|
+
} = c;
|
|
18
|
+
o = n, e = p(`col ${r ? `col-xs-${r}` : ""} ${m ? `col-sm-${m}` : ""} ${$ ? `col-md-${$}` : ""} ${s ? `col-lg-${s}` : ""} ${i ? `col-lg-${i}` : ""} ${x ? `col-xxl-${x}` : ""}`, d), l[0] = c, l[1] = o, l[2] = e;
|
|
19
|
+
} else
|
|
20
|
+
o = l[1], e = l[2];
|
|
21
|
+
let t;
|
|
22
|
+
return l[3] !== o || l[4] !== e ? (t = /* @__PURE__ */ f("div", { ...e, children: o }), l[3] = o, l[4] = e, l[5] = t) : t = l[5], t;
|
|
23
|
+
};
|
|
24
|
+
export {
|
|
25
|
+
C as Col
|
|
26
|
+
};
|