@integry/sdk 4.5.2 → 4.5.4
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/.vscode/launch.json +2 -2
- package/THIRD_PARTY_LICENSES +0 -37
- package/dist/esm/index.csm.d.ts +12 -2
- package/dist/esm/index.csm.js +7262 -1
- package/dist/umd/index.umd.d.ts +9 -1
- package/dist/umd/index.umd.js +7262 -1
- package/jest.config.cjs +10 -0
- package/package.json +10 -4
- package/src/components/AddTagButton/index.ts +23 -0
- package/src/components/BasicSelect/index.ts +114 -0
- package/src/components/BasicSelect/styles.module.scss +44 -0
- package/src/components/Button/index.ts +94 -0
- package/src/components/Button/styles.module.scss +152 -0
- package/src/components/CheckboxGroup/Checkbox.ts +104 -0
- package/src/components/CheckboxGroup/index.ts +190 -0
- package/src/components/CheckboxGroup/styles.module.scss +63 -0
- package/src/components/CollapsedMenu/index.ts +101 -0
- package/src/components/CollapsedMenu/styles.module.scss +46 -0
- package/src/components/ConfigureFieldWrapper/index.ts +85 -0
- package/src/components/ConfigureFieldWrapper/styles.module.scss +57 -0
- package/src/components/EditableText/index.ts +121 -0
- package/src/components/EditableText/styles.module.scss +38 -0
- package/src/components/EditableTextArea/index.ts +143 -0
- package/src/components/EditableTextArea/styles.module.scss +91 -0
- package/src/components/ErrorMessage/index.ts +16 -0
- package/src/components/ErrorMessage/styles.module.scss +19 -0
- package/src/components/ErrorPage/index.ts +42 -0
- package/src/components/ErrorPage/styles.module.scss +26 -0
- package/src/components/Footer/index.ts +41 -0
- package/src/components/Footer/styles.module.scss +40 -0
- package/src/components/HTMLContent/index.tsx +275 -0
- package/src/components/HTMLContent/styles.module.scss +3 -0
- package/src/components/InfoBox/index.ts +48 -0
- package/src/components/InfoBox/styles.module.scss +21 -0
- package/src/components/Input/BaseInput/index.ts +170 -0
- package/src/components/Input/BaseInput/styles.module.scss +94 -0
- package/src/components/Input/DateInput/index.ts +103 -0
- package/src/components/Input/DateInput/styles.module.scss +50 -0
- package/src/components/Input/Input/index.ts +206 -0
- package/src/components/Input/Input/styles.module.scss +14 -0
- package/src/components/Input/PasswordInput/index.ts +164 -0
- package/src/components/Input/PasswordInput/styles.module.scss +37 -0
- package/src/components/Input/index.ts +7 -0
- package/src/components/Label/index.ts +61 -0
- package/src/components/Label/styles.module.scss +41 -0
- package/src/components/LargeLoader/index.ts +25 -0
- package/src/components/LargeLoader/styles.module.scss +16 -0
- package/src/components/Listbox/ListBoxItem.ts +57 -0
- package/src/components/Listbox/index.ts +479 -0
- package/src/components/Listbox/styles.module.scss +197 -0
- package/src/components/Loader/index.ts +25 -0
- package/src/components/Loader/styles.module.scss +16 -0
- package/src/components/MediaGallery/MediaGalleryModal.ts +82 -0
- package/src/components/MediaGallery/MediaSlider.ts +76 -0
- package/src/components/MediaGallery/index.ts +92 -0
- package/src/components/MediaGallery/styles.module.scss +156 -0
- package/src/components/MediaUpload/index.ts +233 -0
- package/src/components/MediaUpload/styles.module.scss +118 -0
- package/src/components/Modal/index.ts +87 -0
- package/src/components/Modal/styles.module.scss +441 -0
- package/src/components/MultipurposeField/Dropdown/ListBoxItem.tsx +58 -0
- package/src/components/MultipurposeField/Dropdown/index.tsx +981 -0
- package/src/components/MultipurposeField/Dropdown/styles.module.scss +208 -0
- package/src/components/MultipurposeField/TagMenu/index.ts +384 -0
- package/src/components/MultipurposeField/TagMenu/styles.module.scss +136 -0
- package/src/components/MultipurposeField/TagOptions/index.tsx +83 -0
- package/src/components/MultipurposeField/TagOptions/styles.module.scss +95 -0
- package/src/components/MultipurposeField/index.tsx +687 -0
- package/src/components/MultipurposeField/styles.module.scss +56 -0
- package/src/components/NewModal/index.ts +69 -0
- package/src/components/NewModal/styles.module.scss +70 -0
- package/src/components/OverflowTooltip/index.tsx +59 -0
- package/src/components/PopUp/ConfirmationPopUp/index.ts +58 -0
- package/src/components/PopUp/ConfirmationPopUp/styles.module.scss +49 -0
- package/src/components/PopUp/SuccessPopUp/index.ts +62 -0
- package/src/components/PopUp/SuccessPopUp/styles.module.scss +38 -0
- package/src/components/RadioGroup/Radio.ts +129 -0
- package/src/components/RadioGroup/index.ts +169 -0
- package/src/components/RadioGroup/styles.module.scss +81 -0
- package/src/components/Search/index.ts +69 -0
- package/src/components/Search/styles.module.scss +149 -0
- package/src/components/TabBar/Tab.ts +33 -0
- package/src/components/TabBar/index.ts +64 -0
- package/src/components/TabBar/styles.module.scss +43 -0
- package/src/components/Tag/index.ts +29 -0
- package/src/components/Tag/styles.module.scss +57 -0
- package/src/components/TextArea/index.ts +172 -0
- package/src/components/TextArea/styles.module.scss +70 -0
- package/src/components/TextContent/index.tsx +128 -0
- package/src/components/TextContent/styles.module.scss +6 -0
- package/src/components/ThreeDotLoader/index.ts +39 -0
- package/src/components/ThreeDotLoader/styles.module.scss +41 -0
- package/src/components/TimeInput/index.ts +129 -0
- package/src/components/TimeInput/styles.module.scss +16 -0
- package/src/components/Toggle/index.ts +34 -0
- package/src/components/Toggle/styles.module.scss +56 -0
- package/src/components/Toggle-v2/index.ts +40 -0
- package/src/components/Toggle-v2/styles.module.scss +86 -0
- package/src/components/Tooltip/index.ts +271 -0
- package/src/components/Tooltip/styles.module.scss +105 -0
- package/src/components/form/ObjectField/index.ts +364 -0
- package/src/components/form/ObjectField/styles.module.scss +103 -0
- package/src/components/form/index.ts +3 -0
- package/src/contexts/AppContext.ts +12 -0
- package/src/declaration.d.ts +7 -0
- package/src/extensions/HMAC.ts +25 -0
- package/src/extensions/IntegryAPIError.ts +19 -0
- package/src/features/common/AccountDropdown/index.ts +291 -0
- package/src/features/common/AccountDropdown/styles.module.scss +19 -0
- package/src/features/common/ActionForm/index.ts +1818 -0
- package/src/features/common/ActionForm/styles.module.scss +23 -0
- package/src/features/common/AppCard/index.ts +207 -0
- package/src/features/common/AppCard/styles.module.scss +117 -0
- package/src/features/common/AppCardCompact/index.ts +189 -0
- package/src/features/common/AppCardCompact/styles.module.scss +141 -0
- package/src/features/common/AuthSelector/index.ts +537 -0
- package/src/features/common/AuthSelector/styles.module.scss +161 -0
- package/src/features/common/AuthSelectorCompact/index.ts +706 -0
- package/src/features/common/AuthSelectorCompact/styles.module.scss +219 -0
- package/src/features/common/AuthSelectorDropdown/index.ts +704 -0
- package/src/features/common/AuthSelectorDropdown/styles.module.scss +361 -0
- package/src/features/common/DynamicField/index.ts +229 -0
- package/src/features/common/DynamicField/styles.module.scss +67 -0
- package/src/features/common/DynamicTypedField/index.ts +217 -0
- package/src/features/common/DynamicTypedField/styles.module.scss +67 -0
- package/src/features/common/FunctionForm/index.ts +862 -0
- package/src/features/common/FunctionForm/styles.module.scss +163 -0
- package/src/features/common/MappingUI/index.ts +649 -0
- package/src/features/common/MappingUI/styles.module.scss +121 -0
- package/src/features/common/MarketplaceAppCard/index.ts +279 -0
- package/src/features/common/MarketplaceAppCard/styles.module.scss +231 -0
- package/src/features/common/MarketplaceAppCardCompact/index.ts +283 -0
- package/src/features/common/MarketplaceAppCardCompact/styles.module.scss +255 -0
- package/src/features/common/NewMappingUI/index.ts +515 -0
- package/src/features/common/NewMappingUI/styles.module.scss +113 -0
- package/src/features/common/RequestAppWidget/RequestAppModal/index.ts +67 -0
- package/src/features/common/RequestAppWidget/RequestAppModal/styles.module.scss +23 -0
- package/src/features/common/RequestAppWidget/index.ts +48 -0
- package/src/features/common/RequestAppWidget/request-app-form.ts +89 -0
- package/src/features/common/RequestAppWidget/styles.module.scss +43 -0
- package/src/features/common/SectionField/index.ts +272 -0
- package/src/features/common/SectionField/styles.module.scss +67 -0
- package/src/features/common/Step/index.ts +827 -0
- package/src/features/common/Step/styles.module.scss +12 -0
- package/src/features/common/StepNavigation/CollapsedSteps.ts +125 -0
- package/src/features/common/StepNavigation/NavItem.ts +111 -0
- package/src/features/common/StepNavigation/index.ts +257 -0
- package/src/features/common/StepNavigation/styles.module.scss +117 -0
- package/src/features/common/Steps/index.ts +1139 -0
- package/src/features/common/Steps/styles.module.scss +314 -0
- package/src/features/containers/AppFlowContainer/AppFlowListing/compactStyles.module.scss +383 -0
- package/src/features/containers/AppFlowContainer/AppFlowListing/flow-instance.tsx +367 -0
- package/src/features/containers/AppFlowContainer/AppFlowListing/flowCard.tsx +194 -0
- package/src/features/containers/AppFlowContainer/AppFlowListing/flowCardCompact.tsx +389 -0
- package/src/features/containers/AppFlowContainer/AppFlowListing/flowInstanceCompact.tsx +577 -0
- package/src/features/containers/AppFlowContainer/AppFlowListing/index.tsx +83 -0
- package/src/features/containers/AppFlowContainer/AppFlowListing/styles.module.scss +212 -0
- package/src/features/containers/AppFlowContainer/AppFlowWrap/app-page-loader.tsx +45 -0
- package/src/features/containers/AppFlowContainer/AppFlowWrap/index.tsx +1081 -0
- package/src/features/containers/AppFlowContainer/AppFlowWrap/styles.module.scss +452 -0
- package/src/features/containers/AppFlowContainer/Authentication/index.ts +610 -0
- package/src/features/containers/AppFlowContainer/Authentication/styles.module.scss +468 -0
- package/src/features/containers/AppFlowContainer/index.ts +114 -0
- package/src/features/containers/AppPageContainer/AppPage/index.tsx +262 -0
- package/src/features/containers/AppPageContainer/AppPage/styles.module.scss +120 -0
- package/src/features/containers/AppPageContainer/IntegrationCard/index.ts +165 -0
- package/src/features/containers/AppPageContainer/IntegrationCard/styles.module.scss +81 -0
- package/src/features/containers/AppPageContainer/index.tsx +93 -0
- package/src/features/containers/AppPageContainer/styles.module.scss +0 -0
- package/src/features/containers/AppsForFlows/index.ts +161 -0
- package/src/features/containers/AppsForFlows/styles.module.scss +280 -0
- package/src/features/containers/AppsForFlowsCompact/index.ts +161 -0
- package/src/features/containers/AppsForFlowsCompact/styles.module.scss +279 -0
- package/src/features/containers/AuthSetupContainer/AppSelection.ts +73 -0
- package/src/features/containers/AuthSetupContainer/AuthTypeSelection.ts +67 -0
- package/src/features/containers/AuthSetupContainer/Footer.ts +32 -0
- package/src/features/containers/AuthSetupContainer/Header.ts +39 -0
- package/src/features/containers/AuthSetupContainer/PostAdditionPopup.ts +27 -0
- package/src/features/containers/AuthSetupContainer/index.ts +349 -0
- package/src/features/containers/AuthSetupContainer/styles.module.scss +229 -0
- package/src/features/containers/FlowSetupContainer/index.ts +390 -0
- package/src/features/containers/FlowSetupContainer/styles.module.scss +18 -0
- package/src/features/containers/MarkeplaceApps/index.ts +574 -0
- package/src/features/containers/MarkeplaceApps/styles.module.scss +559 -0
- package/src/features/containers/MarketplaceAppsCompact/index.ts +576 -0
- package/src/features/containers/MarketplaceAppsCompact/styles.module.scss +546 -0
- package/src/features/containers/MarketplaceAppsContainer/index.ts +83 -0
- package/src/features/containers/MarketplaceContainer/AppCard/index.ts +91 -0
- package/src/features/containers/MarketplaceContainer/AppCard/styles.module.scss +66 -0
- package/src/features/containers/MarketplaceContainer/AppListing/index.ts +34 -0
- package/src/features/containers/MarketplaceContainer/AppListing/styles.module.scss +10 -0
- package/src/features/containers/MarketplaceContainer/MarketplaceContentWrap/index.ts +132 -0
- package/src/features/containers/MarketplaceContainer/MarketplaceContentWrap/styles.module.scss +117 -0
- package/src/features/containers/MarketplaceContainer/index.ts +242 -0
- package/src/features/containers/MarketplaceContainer/styles.module.scss +84 -0
- package/src/features/containers/SDKContainer/index.ts +817 -0
- package/src/features/containers/SDKContainer/styles.module.scss +266 -0
- package/src/features/containers/SDKDebugContainer/index.ts +137 -0
- package/src/features/containers/SDKDebugContainer/styles.module.scss +37 -0
- package/src/features/containers/SDKFailedContainer/index.ts +117 -0
- package/src/features/containers/SDKFailedContainer/styles.module.scss +57 -0
- package/src/features/integrations/IntegrationRow/Icons.ts +77 -0
- package/src/features/integrations/IntegrationRow/index.ts +129 -0
- package/src/features/integrations/IntegrationRow/styles.module.scss +62 -0
- package/src/features/integrations/IntegrationsHeader/index.ts +34 -0
- package/src/features/integrations/IntegrationsHeader/styles.module.scss +47 -0
- package/src/features/integrations/IntegrationsList/index.ts +252 -0
- package/src/features/integrations/IntegrationsList/styles.module.scss +67 -0
- package/src/features/templates/Template/index.ts +295 -0
- package/src/features/templates/Template/styles.module.scss +226 -0
- package/src/features/templates/TemplatesView/index.ts +368 -0
- package/src/features/templates/TemplatesView/styles.module.scss +71 -0
- package/src/features/templates/TemplatesViewCompact/index.ts +364 -0
- package/src/features/templates/TemplatesViewCompact/styles.module.scss +141 -0
- package/src/hooks/useAutosizeTextArea.ts +22 -0
- package/src/hooks/useCustomRef.ts +13 -0
- package/src/hooks/useDebounce.ts +17 -0
- package/src/hooks/useElementResize.ts +40 -0
- package/src/hooks/useEventListener.ts +44 -0
- package/src/hooks/useHover.ts +40 -0
- package/src/hooks/useOnClickOutside.ts +32 -0
- package/src/index.ts +2051 -0
- package/src/index.umd.ts +13 -0
- package/src/interfaces/index.ts +924 -0
- package/src/modules/api/index.ts +1315 -0
- package/src/modules/api/responseHandler.ts +38 -0
- package/src/modules/event-emitter/index.ts +72 -0
- package/src/modules/event-emitter/runners/abstract.ts +21 -0
- package/src/modules/event-emitter/runners/default.ts +11 -0
- package/src/modules/event-emitter/runners/ntimes.ts +28 -0
- package/src/modules/event-emitter/types.ts +34 -0
- package/src/store/actionFunctions.ts +1573 -0
- package/src/store/index.ts +17 -0
- package/src/store/initialState.ts +58 -0
- package/src/stories/Button.stories.tsx +83 -0
- package/src/stories/Checkbox/Checkbox.stories.tsx +41 -0
- package/src/stories/Checkbox/CheckboxGroup.stories.tsx +46 -0
- package/src/stories/EditableText.stories.tsx +35 -0
- package/src/stories/Input/BaseInput.stories.tsx +48 -0
- package/src/stories/Input/DateInput.stories.tsx +28 -0
- package/src/stories/Input/Input.stories.tsx +24 -0
- package/src/stories/Input/PasswordInput.stories.tsx +26 -0
- package/src/stories/Introduction.stories.mdx +211 -0
- package/src/stories/Label.stories.tsx +27 -0
- package/src/stories/Listbox.stories.tsx +122 -0
- package/src/stories/Radio/Radio.stories.tsx +39 -0
- package/src/stories/Radio/RadioGroup.stories.tsx +46 -0
- package/src/stories/StepNavigation/NavItem.stories.tsx +31 -0
- package/src/stories/StepNavigation/StepNavigation.stories.tsx +50 -0
- package/src/stories/TabBar.stories.tsx +31 -0
- package/src/stories/TextArea.stories.tsx +23 -0
- package/src/stories/TimeInput.stories.tsx +37 -0
- package/src/stories/Toggle.stories.tsx +33 -0
- package/src/stories/assets/code-brackets.svg +1 -0
- package/src/stories/assets/colors.svg +1 -0
- package/src/stories/assets/comments.svg +1 -0
- package/src/stories/assets/direction.svg +1 -0
- package/src/stories/assets/flow.svg +1 -0
- package/src/stories/assets/plugin.svg +1 -0
- package/src/stories/assets/repo.svg +1 -0
- package/src/stories/assets/stackalt.svg +1 -0
- package/src/types/index.ts +293 -0
- package/src/types/store.ts +366 -0
- package/src/types/utils.ts +19 -0
- package/src/utils/ActivityOutputUtils.ts +163 -0
- package/src/utils/common.ts +20 -0
- package/src/utils/copyToClipboard.ts +24 -0
- package/src/utils/datetime.ts +101 -0
- package/src/utils/getUrlParam.ts +11 -0
- package/src/utils/isAuthMessage.ts +16 -0
- package/src/utils/isBrowser.ts +1 -0
- package/src/utils/jsonEncodeDecode.ts +15 -0
- package/src/utils/objectUtils.ts +116 -0
- package/src/utils/popup.ts +30 -0
- package/src/utils/searchJson.ts +51 -0
- package/src/utils/stepUtils.ts +45 -0
- package/src/utils/truncate.ts +6 -0
- package/test/setup.ts +1 -0
- package/vitest.config.ts +10 -0
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
import { html } from 'htm/preact';
|
|
2
|
+
import { useEffect, useState } from 'preact/hooks';
|
|
3
|
+
import { forwardRef } from 'preact/compat';
|
|
4
|
+
import { copyStringToClipboard } from '@/utils/copyToClipboard';
|
|
5
|
+
import { Hint } from '@/components/Tooltip';
|
|
6
|
+
import { ErrorMessage } from '../ErrorMessage';
|
|
7
|
+
import { Label } from '../Label';
|
|
8
|
+
|
|
9
|
+
import styles from './styles.module.scss';
|
|
10
|
+
|
|
11
|
+
interface TextAreaProps {
|
|
12
|
+
title: string;
|
|
13
|
+
description: string;
|
|
14
|
+
placeholder: string;
|
|
15
|
+
value?: string;
|
|
16
|
+
showStepValidation?: boolean;
|
|
17
|
+
isRequired?: boolean;
|
|
18
|
+
regex: string | null;
|
|
19
|
+
regexErrorMessage: string | null;
|
|
20
|
+
showCopyButton?: boolean;
|
|
21
|
+
onChange?: (val: string, passesRegexTest?: boolean) => void;
|
|
22
|
+
onFocus?: () => void;
|
|
23
|
+
ref?: any;
|
|
24
|
+
isReadOnly?: boolean;
|
|
25
|
+
isChanged?: boolean;
|
|
26
|
+
className?: string;
|
|
27
|
+
id?: string;
|
|
28
|
+
fieldId?: string;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* TextArea component
|
|
33
|
+
*
|
|
34
|
+
*/
|
|
35
|
+
const TextArea = forwardRef((props: TextAreaProps, ref) => {
|
|
36
|
+
const {
|
|
37
|
+
title,
|
|
38
|
+
description,
|
|
39
|
+
value,
|
|
40
|
+
placeholder,
|
|
41
|
+
onChange = () => null,
|
|
42
|
+
onFocus = () => null,
|
|
43
|
+
showStepValidation = false,
|
|
44
|
+
regex,
|
|
45
|
+
regexErrorMessage,
|
|
46
|
+
showCopyButton = false,
|
|
47
|
+
isRequired = false,
|
|
48
|
+
isReadOnly = false,
|
|
49
|
+
isChanged = false,
|
|
50
|
+
className = '',
|
|
51
|
+
id = '',
|
|
52
|
+
fieldId = '',
|
|
53
|
+
} = props;
|
|
54
|
+
|
|
55
|
+
const [initialValue] = useState(value);
|
|
56
|
+
const [invalidInput, setInvalidInput] = useState(false);
|
|
57
|
+
const [showErrorOnFocusLoss, setShowErrorOnFocusLoss] = useState(false);
|
|
58
|
+
|
|
59
|
+
// validate on first render
|
|
60
|
+
useEffect(() => {
|
|
61
|
+
if (regex) {
|
|
62
|
+
const invalid = !new RegExp(regex.replace(/^\/|\/$/g, '')).test(
|
|
63
|
+
`${initialValue}`,
|
|
64
|
+
);
|
|
65
|
+
setInvalidInput(invalid);
|
|
66
|
+
}
|
|
67
|
+
}, [regex]);
|
|
68
|
+
|
|
69
|
+
const handleInputChange = (e: InputEvent) => {
|
|
70
|
+
if (!isReadOnly) {
|
|
71
|
+
if (e.currentTarget instanceof HTMLTextAreaElement) {
|
|
72
|
+
const { value: newValue } = e.currentTarget;
|
|
73
|
+
if (regex) {
|
|
74
|
+
if (!new RegExp(regex.replace(/^\/|\/$/g, '')).test(newValue)) {
|
|
75
|
+
onChange(newValue, false);
|
|
76
|
+
setInvalidInput(true);
|
|
77
|
+
} else {
|
|
78
|
+
onChange(newValue, true);
|
|
79
|
+
setInvalidInput(false);
|
|
80
|
+
}
|
|
81
|
+
} else {
|
|
82
|
+
onChange(newValue);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
const validate = () => {
|
|
89
|
+
setShowErrorOnFocusLoss(true);
|
|
90
|
+
};
|
|
91
|
+
|
|
92
|
+
const onCopy = () => {
|
|
93
|
+
copyStringToClipboard(value || '');
|
|
94
|
+
};
|
|
95
|
+
|
|
96
|
+
return html`
|
|
97
|
+
<${Hint} dismissOnClick=${false} position="top" deltaY=${0}>
|
|
98
|
+
<div
|
|
99
|
+
class="${`${styles.textareaInputWrapper} ${styles[className || '']}`}"
|
|
100
|
+
>
|
|
101
|
+
<fieldset>
|
|
102
|
+
<${Label} title=${title} description=${description}
|
|
103
|
+
isRequired=${isRequired}
|
|
104
|
+
labelTag=${isReadOnly && isChanged ? 'Changed' : ''} //>
|
|
105
|
+
${isReadOnly &&
|
|
106
|
+
html`<span
|
|
107
|
+
class=${styles.readonlyHint}
|
|
108
|
+
data-hint=${isReadOnly ? `Cannot modify user selection` : ''}
|
|
109
|
+
></span>`}
|
|
110
|
+
<div
|
|
111
|
+
class=${`${styles.textareaInputWrapper} ${styles[className || '']}`}
|
|
112
|
+
id=${fieldId}
|
|
113
|
+
>
|
|
114
|
+
<textarea
|
|
115
|
+
placeholder=${placeholder}
|
|
116
|
+
value=${value}
|
|
117
|
+
oninput=${handleInputChange}
|
|
118
|
+
onblur=${validate}
|
|
119
|
+
readonly=${isReadOnly}
|
|
120
|
+
class="${styles[className || '']}"
|
|
121
|
+
onFocus=${onFocus}
|
|
122
|
+
ref=${ref}
|
|
123
|
+
id=${id}
|
|
124
|
+
/>
|
|
125
|
+
</div>
|
|
126
|
+
${showCopyButton &&
|
|
127
|
+
html`
|
|
128
|
+
<div onclick=${onCopy} class=${styles.copyButton}>
|
|
129
|
+
<svg
|
|
130
|
+
width="12"
|
|
131
|
+
height="15"
|
|
132
|
+
viewBox="0 0 12 15"
|
|
133
|
+
fill="none"
|
|
134
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
135
|
+
>
|
|
136
|
+
<rect
|
|
137
|
+
x="0.75"
|
|
138
|
+
y="1"
|
|
139
|
+
width="7.5"
|
|
140
|
+
height="9.5"
|
|
141
|
+
rx="0.75"
|
|
142
|
+
stroke="#999999"
|
|
143
|
+
stroke-width="1.5"
|
|
144
|
+
/>
|
|
145
|
+
<rect
|
|
146
|
+
x="3.75"
|
|
147
|
+
y="4.5"
|
|
148
|
+
width="7.5"
|
|
149
|
+
height="9.5"
|
|
150
|
+
rx="0.75"
|
|
151
|
+
fill="#E4E4E4"
|
|
152
|
+
stroke="#999999"
|
|
153
|
+
stroke-width="1.5"
|
|
154
|
+
/>
|
|
155
|
+
</svg>
|
|
156
|
+
</div>
|
|
157
|
+
`}
|
|
158
|
+
</fieldset>
|
|
159
|
+
${showStepValidation &&
|
|
160
|
+
isRequired &&
|
|
161
|
+
!value &&
|
|
162
|
+
html`<${ErrorMessage}>Please enter a value<//>`}
|
|
163
|
+
${(showStepValidation || showErrorOnFocusLoss || initialValue) &&
|
|
164
|
+
invalidInput &&
|
|
165
|
+
value &&
|
|
166
|
+
html`<${ErrorMessage}>${regexErrorMessage || 'Invalid input'}<//>`}
|
|
167
|
+
</div>
|
|
168
|
+
<//>
|
|
169
|
+
`;
|
|
170
|
+
});
|
|
171
|
+
|
|
172
|
+
export { TextArea, TextAreaProps };
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
.textareaInputWrapper {
|
|
2
|
+
position: relative;
|
|
3
|
+
fieldset {
|
|
4
|
+
padding: 0;
|
|
5
|
+
margin: 0;
|
|
6
|
+
border: none;
|
|
7
|
+
}
|
|
8
|
+
tags {
|
|
9
|
+
height: 150px !important;
|
|
10
|
+
[class^='tagify__input'] {
|
|
11
|
+
white-space: normal !important;
|
|
12
|
+
line-height: 1.75rem;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
textarea {
|
|
16
|
+
margin-top: 10px;
|
|
17
|
+
font-family: inherit;
|
|
18
|
+
box-sizing: border-box;
|
|
19
|
+
display: block;
|
|
20
|
+
height: 6rem;
|
|
21
|
+
width: 100%;
|
|
22
|
+
resize: none;
|
|
23
|
+
color: #333;
|
|
24
|
+
appearance: none;
|
|
25
|
+
border-radius: 0.25rem;
|
|
26
|
+
border-width: 1px;
|
|
27
|
+
border-style: solid;
|
|
28
|
+
border: 1px solid #e2e0db;
|
|
29
|
+
padding: 8.5px 14px;
|
|
30
|
+
&:focus {
|
|
31
|
+
outline: none;
|
|
32
|
+
}
|
|
33
|
+
&::placeholder {
|
|
34
|
+
color: #999;
|
|
35
|
+
}
|
|
36
|
+
&.request-app-form-field {
|
|
37
|
+
margin-top: 6px;
|
|
38
|
+
border: 1px solid rgb(173, 169, 187);
|
|
39
|
+
border-radius: 5px;
|
|
40
|
+
resize: vertical;
|
|
41
|
+
height: 85px;
|
|
42
|
+
min-height: 85px;
|
|
43
|
+
max-height: 170px;
|
|
44
|
+
font-style: normal;
|
|
45
|
+
font-weight: 400;
|
|
46
|
+
font-size: 14px;
|
|
47
|
+
line-height: 17px;
|
|
48
|
+
color: #333333;
|
|
49
|
+
&::placeholder {
|
|
50
|
+
color: #8c8c8c;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
.copyButton {
|
|
55
|
+
position: absolute;
|
|
56
|
+
cursor: pointer;
|
|
57
|
+
right: 0px;
|
|
58
|
+
top: 16px;
|
|
59
|
+
padding: 8px;
|
|
60
|
+
&:hover {
|
|
61
|
+
opacity: 0.75;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
.readonlyHint {
|
|
65
|
+
width: 100%;
|
|
66
|
+
height: -webkit-fill-available;
|
|
67
|
+
z-index: 99;
|
|
68
|
+
position: absolute;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import { html } from 'htm/preact';
|
|
2
|
+
import { connect } from 'unistore/preact';
|
|
3
|
+
import { useEffect, useState } from 'preact/hooks';
|
|
4
|
+
import { StoreType } from '@/types/store';
|
|
5
|
+
|
|
6
|
+
import styles from './styles.module.scss';
|
|
7
|
+
|
|
8
|
+
interface TextContentFieldProps {
|
|
9
|
+
textContent: string;
|
|
10
|
+
xIntegryConfig?: any;
|
|
11
|
+
stepDataMapping?: any;
|
|
12
|
+
stepState?: any;
|
|
13
|
+
genericData?: any;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
const TextContent = (props: TextContentFieldProps) => {
|
|
17
|
+
const { textContent, xIntegryConfig = {} } = props;
|
|
18
|
+
const [htmlContentState, setHtmlContentState] = useState(textContent);
|
|
19
|
+
|
|
20
|
+
const replaceValuesWithJSON = (inputString: string, jsonData: any) => {
|
|
21
|
+
// Regular expression to match values inside double curly braces
|
|
22
|
+
const regex = /{(.*?)}/g;
|
|
23
|
+
|
|
24
|
+
// Use the replace method to replace matched values
|
|
25
|
+
const replacedString = inputString.replace(
|
|
26
|
+
regex,
|
|
27
|
+
(match: any, group: string) => {
|
|
28
|
+
// Trim the group to remove leading and trailing whitespaces
|
|
29
|
+
const key = group.trim();
|
|
30
|
+
|
|
31
|
+
// Access the nested values using a loop
|
|
32
|
+
const keys = key.split('.');
|
|
33
|
+
let value = jsonData;
|
|
34
|
+
|
|
35
|
+
// eslint-disable-next-line no-restricted-syntax
|
|
36
|
+
for (const k of keys) {
|
|
37
|
+
// eslint-disable-next-line no-prototype-builtins
|
|
38
|
+
if (value.hasOwnProperty(k)) {
|
|
39
|
+
value = value[k];
|
|
40
|
+
} else {
|
|
41
|
+
// If a key is not found, return an empty string
|
|
42
|
+
return '';
|
|
43
|
+
|
|
44
|
+
// If a key is not found, return the key as is
|
|
45
|
+
// return `{${key}}`;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
// Return the replacement value
|
|
50
|
+
return value;
|
|
51
|
+
},
|
|
52
|
+
);
|
|
53
|
+
|
|
54
|
+
return replacedString;
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
const generateInJsonData = () => {
|
|
58
|
+
let generatedJSON = {
|
|
59
|
+
steps: {},
|
|
60
|
+
storage: {},
|
|
61
|
+
};
|
|
62
|
+
const { stepDataMapping, stepState } = props;
|
|
63
|
+
const { steps = [] } = stepState;
|
|
64
|
+
if (steps.length > 0) {
|
|
65
|
+
let tempSteps = {};
|
|
66
|
+
steps.forEach(
|
|
67
|
+
(step: { title: string; type: string; stepId: number | string }) => {
|
|
68
|
+
const { title, type, stepId } = step;
|
|
69
|
+
if (type === 'CONFIGURATION') {
|
|
70
|
+
const objectTitle = `form_${title
|
|
71
|
+
.toLowerCase()
|
|
72
|
+
.replace(/ /g, '_')}`;
|
|
73
|
+
if (stepDataMapping[stepId]) {
|
|
74
|
+
let tempObject = {};
|
|
75
|
+
Object.keys(stepDataMapping[stepId]).forEach((fieldId) => {
|
|
76
|
+
const { value, machineName } = stepDataMapping[stepId][fieldId];
|
|
77
|
+
tempObject = {
|
|
78
|
+
...tempObject,
|
|
79
|
+
[machineName]: value,
|
|
80
|
+
};
|
|
81
|
+
});
|
|
82
|
+
tempSteps = {
|
|
83
|
+
...tempSteps,
|
|
84
|
+
[objectTitle]: {
|
|
85
|
+
in: {
|
|
86
|
+
...tempObject,
|
|
87
|
+
},
|
|
88
|
+
},
|
|
89
|
+
};
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
);
|
|
94
|
+
generatedJSON = {
|
|
95
|
+
...generatedJSON,
|
|
96
|
+
steps: {
|
|
97
|
+
...tempSteps,
|
|
98
|
+
},
|
|
99
|
+
storage: {
|
|
100
|
+
...props.genericData.storage,
|
|
101
|
+
},
|
|
102
|
+
};
|
|
103
|
+
}
|
|
104
|
+
return generatedJSON;
|
|
105
|
+
};
|
|
106
|
+
|
|
107
|
+
useEffect(() => {
|
|
108
|
+
const result = replaceValuesWithJSON(textContent, {
|
|
109
|
+
xIntegryConfig: { ...(xIntegryConfig || {}) },
|
|
110
|
+
...generateInJsonData(),
|
|
111
|
+
});
|
|
112
|
+
setHtmlContentState(result);
|
|
113
|
+
}, [textContent]);
|
|
114
|
+
|
|
115
|
+
return html`
|
|
116
|
+
<pre class="${styles.textContentField}">
|
|
117
|
+
${htmlContentState}
|
|
118
|
+
</pre
|
|
119
|
+
>
|
|
120
|
+
`;
|
|
121
|
+
};
|
|
122
|
+
|
|
123
|
+
export default connect<TextContentFieldProps, unknown, StoreType, unknown>([
|
|
124
|
+
'xIntegryConfig',
|
|
125
|
+
'stepDataMapping',
|
|
126
|
+
'stepState',
|
|
127
|
+
'genericData',
|
|
128
|
+
])(TextContent);
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { html } from 'htm/preact';
|
|
2
|
+
|
|
3
|
+
import styles from './styles.module.scss';
|
|
4
|
+
|
|
5
|
+
interface ThreeDotLoaderProps {
|
|
6
|
+
size?: number;
|
|
7
|
+
color?: string;
|
|
8
|
+
className?: string;
|
|
9
|
+
}
|
|
10
|
+
const LoaderDot = (props: { color: string; size: number }) => html`
|
|
11
|
+
<svg
|
|
12
|
+
width=${props.size}
|
|
13
|
+
height=${props.size}
|
|
14
|
+
viewBox="0 0 ${props.size} ${props.size}"
|
|
15
|
+
fill=${props.color}
|
|
16
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
17
|
+
>
|
|
18
|
+
<circle
|
|
19
|
+
cx="${props.size / 2}"
|
|
20
|
+
cy=${props.size / 2}
|
|
21
|
+
r=${props.size / 2}
|
|
22
|
+
fill=${props.color}
|
|
23
|
+
/>
|
|
24
|
+
</svg>
|
|
25
|
+
`;
|
|
26
|
+
|
|
27
|
+
const ThreeDotLoader = (props: ThreeDotLoaderProps) => {
|
|
28
|
+
const { size = 6, color = '#fff', className = '' } = props;
|
|
29
|
+
|
|
30
|
+
return html`
|
|
31
|
+
<div class=${`${styles.loader} ${styles.centered} ${styles[className]}`}>
|
|
32
|
+
<${LoaderDot} size=${size} color=${color} />
|
|
33
|
+
<${LoaderDot} size=${size} color=${color} />
|
|
34
|
+
<${LoaderDot} size=${size} color=${color} />
|
|
35
|
+
</div>
|
|
36
|
+
`;
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
export { ThreeDotLoader };
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
.loader {
|
|
2
|
+
display: flex;
|
|
3
|
+
svg {
|
|
4
|
+
animation-name: fadeInOut;
|
|
5
|
+
animation-duration: 1s;
|
|
6
|
+
animation-iteration-count: infinite;
|
|
7
|
+
animation-timing-function: linear;
|
|
8
|
+
animation-delay: 0;
|
|
9
|
+
margin: 0px 2px;
|
|
10
|
+
&:nth-child(2) {
|
|
11
|
+
animation-delay: 0.3s;
|
|
12
|
+
}
|
|
13
|
+
&:nth-child(3) {
|
|
14
|
+
animation-delay: 0.6s;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
&.integry-primary-btn {
|
|
18
|
+
justify-content: center;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
@keyframes fadeInOut {
|
|
23
|
+
0% {
|
|
24
|
+
opacity: 0.3;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
50% {
|
|
28
|
+
opacity: 1;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
100% {
|
|
32
|
+
opacity: 0.3;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.centered {
|
|
37
|
+
display: flex;
|
|
38
|
+
flex-direction: row;
|
|
39
|
+
align-items: center;
|
|
40
|
+
justify-content: center;
|
|
41
|
+
}
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
import { html } from 'htm/preact';
|
|
2
|
+
import { useEffect, useMemo, useRef, useState } from 'preact/hooks';
|
|
3
|
+
import { ErrorMessage } from '@/components/ErrorMessage';
|
|
4
|
+
import { Label } from '@/components/Label';
|
|
5
|
+
import { Select } from '@/components/BasicSelect';
|
|
6
|
+
import { generateDoubleDigitStringArr } from '@/utils/datetime';
|
|
7
|
+
|
|
8
|
+
import styles from './styles.module.scss';
|
|
9
|
+
|
|
10
|
+
interface TimeInputProps {
|
|
11
|
+
title: string;
|
|
12
|
+
description: string;
|
|
13
|
+
placeholder: string;
|
|
14
|
+
value?: string;
|
|
15
|
+
showStepValidation?: boolean;
|
|
16
|
+
isRequired?: boolean;
|
|
17
|
+
onChange?: (data: string) => void;
|
|
18
|
+
isReadOnly?: boolean;
|
|
19
|
+
isChanged?: boolean;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* TimeInput component
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
const TimeInput = (props: TimeInputProps) => {
|
|
27
|
+
const {
|
|
28
|
+
title,
|
|
29
|
+
description,
|
|
30
|
+
value = null,
|
|
31
|
+
onChange = () => null,
|
|
32
|
+
showStepValidation = false,
|
|
33
|
+
isRequired = false,
|
|
34
|
+
isReadOnly = false,
|
|
35
|
+
isChanged = false,
|
|
36
|
+
} = props;
|
|
37
|
+
|
|
38
|
+
const [mins, setMins] = useState('');
|
|
39
|
+
const [hours, setHours] = useState('');
|
|
40
|
+
const [amOrPm, setAmOrPm] = useState<'AM' | 'PM'>('AM');
|
|
41
|
+
|
|
42
|
+
const firstMount = useRef(true);
|
|
43
|
+
|
|
44
|
+
useEffect(() => {
|
|
45
|
+
const parsedVal = value?.split(':');
|
|
46
|
+
if (parsedVal && parsedVal.length > 0) {
|
|
47
|
+
const parsedHours = Number(parsedVal[0]);
|
|
48
|
+
const parsedMins = Number(parsedVal[1]);
|
|
49
|
+
if (parsedHours > 12) {
|
|
50
|
+
setAmOrPm('PM');
|
|
51
|
+
setHours(`${parsedHours - 12}`);
|
|
52
|
+
} else {
|
|
53
|
+
setHours(`${parsedHours}`);
|
|
54
|
+
}
|
|
55
|
+
setMins(`${parsedMins}`);
|
|
56
|
+
}
|
|
57
|
+
}, []);
|
|
58
|
+
|
|
59
|
+
useEffect(() => {
|
|
60
|
+
if (!firstMount.current) {
|
|
61
|
+
onChange(
|
|
62
|
+
`${amOrPm === 'PM' ? `${Number(hours) + 12}` : `${hours}`}:${mins}`,
|
|
63
|
+
);
|
|
64
|
+
}
|
|
65
|
+
firstMount.current = false;
|
|
66
|
+
}, [amOrPm, mins, hours]);
|
|
67
|
+
|
|
68
|
+
const hourOptionsArr = useMemo(
|
|
69
|
+
() => generateDoubleDigitStringArr(12).slice(1, 12),
|
|
70
|
+
[],
|
|
71
|
+
);
|
|
72
|
+
const minuteOptionsArr = useMemo(() => generateDoubleDigitStringArr(59), []);
|
|
73
|
+
|
|
74
|
+
return html`
|
|
75
|
+
<div class="${styles.timeInputWrapper}">
|
|
76
|
+
<fieldset>
|
|
77
|
+
<${Label} title=${title} description=${description}
|
|
78
|
+
isRequired=${isRequired} labelTag=${isReadOnly && isChanged ? 'Changed': ''} //>
|
|
79
|
+
<div class=${styles.selectWrap}>
|
|
80
|
+
<${Select}
|
|
81
|
+
ariaLabel="Select hours"
|
|
82
|
+
placeholder="00"
|
|
83
|
+
options=${hourOptionsArr.map((el) => ({
|
|
84
|
+
key: Number(el),
|
|
85
|
+
label: el,
|
|
86
|
+
}))}
|
|
87
|
+
value=${Number(hours)}
|
|
88
|
+
onChange=${(val: number) => setHours(hourOptionsArr[val])}
|
|
89
|
+
isReadOnly=${isReadOnly}
|
|
90
|
+
><//>
|
|
91
|
+
<${Select}
|
|
92
|
+
ariaLabel="Select minutes"
|
|
93
|
+
placeholder="00"
|
|
94
|
+
options=${minuteOptionsArr.map((el) => ({
|
|
95
|
+
key: Number(el),
|
|
96
|
+
label: el,
|
|
97
|
+
}))}
|
|
98
|
+
value=${Number(mins)}
|
|
99
|
+
onChange=${(val: number) => setMins(minuteOptionsArr[val])}
|
|
100
|
+
isReadOnly=${isReadOnly}
|
|
101
|
+
><//>
|
|
102
|
+
<${Select}
|
|
103
|
+
ariaLabel="Select AM or PM"
|
|
104
|
+
placeholder="AM"
|
|
105
|
+
options=${[
|
|
106
|
+
{
|
|
107
|
+
label: 'AM',
|
|
108
|
+
key: 'AM',
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
label: 'PM',
|
|
112
|
+
key: 'PM',
|
|
113
|
+
},
|
|
114
|
+
]}
|
|
115
|
+
value=${amOrPm}
|
|
116
|
+
onChange=${(index: number) => setAmOrPm(index === 0 ? 'AM' : 'PM')}
|
|
117
|
+
isReadOnly=${isReadOnly}
|
|
118
|
+
><//>
|
|
119
|
+
</div>
|
|
120
|
+
</fieldset>
|
|
121
|
+
${showStepValidation &&
|
|
122
|
+
isRequired &&
|
|
123
|
+
!(hours || !mins || !amOrPm) &&
|
|
124
|
+
html`<${ErrorMessage}>Please select a time<//>`}
|
|
125
|
+
</div>
|
|
126
|
+
`;
|
|
127
|
+
};
|
|
128
|
+
|
|
129
|
+
export { TimeInput, TimeInputProps };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
.timeInputWrapper {
|
|
2
|
+
fieldset {
|
|
3
|
+
padding: 0;
|
|
4
|
+
margin: 0;
|
|
5
|
+
border: none;
|
|
6
|
+
}
|
|
7
|
+
.selectWrap {
|
|
8
|
+
display: flex;
|
|
9
|
+
padding-top: 10px;
|
|
10
|
+
& > :not([hidden]) ~ :not([hidden]) {
|
|
11
|
+
--tw-space-x-reverse: 0;
|
|
12
|
+
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
13
|
+
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { html } from 'htm/preact';
|
|
2
|
+
|
|
3
|
+
import styles from './styles.module.scss';
|
|
4
|
+
|
|
5
|
+
interface ToggleProps {
|
|
6
|
+
id: string;
|
|
7
|
+
value: boolean;
|
|
8
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
9
|
+
onChange: (val: boolean, event?: any) => void;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Toggle component
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
const Toggle = (props: ToggleProps) => {
|
|
17
|
+
const { id, value: isToggled, onChange } = props;
|
|
18
|
+
|
|
19
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
20
|
+
const handleChange = (e: any) => {
|
|
21
|
+
onChange(!isToggled, e);
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
return html`
|
|
25
|
+
<div class=${styles.toggle}>
|
|
26
|
+
<div class=${`${styles.inner} ${isToggled ? styles.toggled : ''} `}>
|
|
27
|
+
<label for=${id} class=${`${isToggled ? styles.toggled : ''} `}></label>
|
|
28
|
+
<input type="checkbox" id=${id} onclick=${handleChange} />
|
|
29
|
+
</div>
|
|
30
|
+
</div>
|
|
31
|
+
`;
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
export { Toggle, ToggleProps };
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
.toggle {
|
|
2
|
+
position: relative;
|
|
3
|
+
.inner {
|
|
4
|
+
position: relative;
|
|
5
|
+
border-radius: 9999px;
|
|
6
|
+
background-color: #ababab;
|
|
7
|
+
transition-property: background-color, border-color, color, fill, stroke,
|
|
8
|
+
opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
9
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
10
|
+
transition-duration: 150ms;
|
|
11
|
+
transition-timing-function: linear;
|
|
12
|
+
position: relative;
|
|
13
|
+
height: 20px;
|
|
14
|
+
width: 40px;
|
|
15
|
+
&.toggled {
|
|
16
|
+
background: #3bb568;
|
|
17
|
+
}
|
|
18
|
+
label {
|
|
19
|
+
position: absolute;
|
|
20
|
+
left: 0px;
|
|
21
|
+
transform: translateX(0px);
|
|
22
|
+
cursor: pointer;
|
|
23
|
+
border-radius: 9999px;
|
|
24
|
+
border-width: 2px;
|
|
25
|
+
border-style: solid;
|
|
26
|
+
border-color: #ababab;
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
background-color: rgb(255, 255, 255);
|
|
29
|
+
transition-property: background-color, border-color, color, fill, stroke,
|
|
30
|
+
opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
31
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
32
|
+
transition-duration: 150ms;
|
|
33
|
+
transition-duration: 300ms;
|
|
34
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
35
|
+
height: 20px;
|
|
36
|
+
width: 20px;
|
|
37
|
+
&.toggled {
|
|
38
|
+
border-color: #3bb568;
|
|
39
|
+
transform: translateX(100%);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
input {
|
|
43
|
+
appearance: none;
|
|
44
|
+
width: 100%;
|
|
45
|
+
height: 100%;
|
|
46
|
+
background: none;
|
|
47
|
+
border: none;
|
|
48
|
+
&:active {
|
|
49
|
+
outline: none;
|
|
50
|
+
}
|
|
51
|
+
&:focus {
|
|
52
|
+
outline: none;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|