intelicoreact 1.8.8 → 1.8.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Atomic/FormElements/Dropdown/components/DropdownLoader.jsx +18 -1
- package/dist/Atomic/FormElements/FormattedRawSSN/FormattedRawSSN_old.jsx +121 -1
- package/dist/Atomic/FormElements/MobileCalendar/MobileCalendar.jsx +507 -1
- package/dist/Atomic/FormElements/MultiSelect/MultiSelect.jsx +46 -1
- package/dist/Atomic/FormElements/NumericInput/NumericInput.jsx +337 -1
- package/dist/Atomic/FormElements/RadioGroup/RadioGroup.jsx +66 -1
- package/dist/Atomic/FormElements/RadioGroupWithInput/RadioGroupWithInput.jsx +78 -1
- package/dist/Atomic/FormElements/RadioRowSwitcher/RadioRowSwitcher.jsx +54 -1
- package/dist/Atomic/FormElements/RangeCalendar/RangeCalendar.jsx +183 -1
- package/dist/Atomic/FormElements/RangeList/RangeList.jsx +181 -1
- package/dist/Atomic/FormElements/RangeList/partial/RangeListRow.jsx +41 -1
- package/dist/Atomic/FormElements/RangeSlider/RangeSlider.jsx +449 -1
- package/dist/Atomic/FormElements/RangeSlider2/RangeSlider2.jsx +865 -1
- package/dist/Atomic/FormElements/SwitchableRow/SwitchableRow.jsx +37 -1
- package/dist/Atomic/FormElements/SwitcherCheckbox/SwitcherCheckbox.jsx +48 -1
- package/dist/Atomic/FormElements/SwitcherRangeList/SwitcherRangeList.jsx +62 -1
- package/dist/Atomic/FormElements/SwitcherTagsDropdown/SwitcherTagsDropdown.jsx +175 -1
- package/dist/Atomic/FormElements/SwitcherTextarea/SwitcherTextarea.jsx +65 -1
- package/dist/Atomic/FormElements/TagListToDropdown/TagListToDropdown.jsx +118 -1
- package/dist/Atomic/FormElements/Text/Text.jsx +126 -1
- package/dist/Atomic/FormElements/Textarea/Textarea.jsx +61 -1
- package/dist/Atomic/FormElements/TieredCheckboxes/TieredCheckboxes.jsx +181 -1
- package/dist/Atomic/FormElements/TieredCheckboxes/partial/AccordionWithCheckbox.jsx +60 -1
- package/dist/Atomic/FormElements/VariantsListRadio/VariantsListRadio.jsx +83 -1
- package/dist/Atomic/FormElements/VariantsListRadio/partials/VariantsListRadioItem.jsx +80 -1
- package/dist/Atomic/FormElements/WidgetPseudoTable/WidgetPseudoTable.jsx +103 -1
- package/dist/Atomic/FormElements/WidgetWithSwitchableRows/WidgetWithSwitchableRows.jsx +115 -1
- package/dist/Atomic/Layout/Header/Header.jsx +86 -1
- package/dist/Atomic/Layout/MainMenu/MainMenu.jsx +164 -1
- package/dist/Atomic/UI/AccordionTable/AccordionTable.jsx +250 -1
- package/dist/Atomic/UI/AccordionText/AccordionText.jsx +68 -1
- package/dist/Atomic/UI/Arrow/Arrow.jsx +134 -1
- package/dist/Atomic/UI/Box/Box.jsx +53 -1
- package/dist/Atomic/UI/Chart/Chart.jsx +178 -1
- package/dist/Atomic/UI/Chart/partial/ChartTypeSwitcherIcon/ChartTypeSwitcherIcon.jsx +78 -1
- package/dist/Atomic/UI/Chart/partial/optionsConstructor.jsx +334 -1
- package/dist/Atomic/UI/CircleProgressBar/CircleProgressBar.jsx +111 -1
- package/dist/Atomic/UI/DateTime/DateTime.jsx +57 -1
- package/dist/Atomic/UI/DebugContainer/DebugContainer.jsx +44 -1
- package/dist/Atomic/UI/DebugContainer/useDebugContainer.jsx +15 -1
- package/dist/Atomic/UI/ExampleChartIntegration/ExampleChartIntegration.jsx +223 -1
- package/dist/Atomic/UI/MonoAccordion/MonoAccordion._test.jsx +75 -1
- package/dist/Atomic/UI/MonoAccordion/MonoAccordion.jsx +86 -1
- package/dist/Atomic/UI/PieChart/PieChart.jsx +41 -1
- package/dist/Atomic/UI/Table/Partials/TdCell.jsx +87 -1
- package/dist/Atomic/UI/Table/Partials/TdHeader.jsx +36 -1
- package/dist/Atomic/UI/Table/Partials/TdRow.jsx +103 -1
- package/dist/Atomic/UI/Table/Partials/TdTitle.jsx +55 -1
- package/dist/Atomic/UI/Table/Table.jsx +63 -1
- package/dist/Atomic/UI/Table/TdTypes/TdActions.jsx +80 -1
- package/dist/Atomic/UI/Table/TdTypes/TdPriority.jsx +26 -1
- package/dist/Atomic/UI/Table/TdTypes/TdRange.jsx +13 -1
- package/dist/Atomic/UI/Table/TdTypes/TdWeight.jsx +56 -1
- package/dist/Atomic/UI/TagList/TagList.jsx +256 -1
- package/dist/Atomic/UI/WizardStepper/constructor.jsx +86 -1
- package/dist/Classes/RESTAPI/partials/CredentialsProcessing.jsx +254 -1
- package/dist/Functions/customEventListener.jsx +96 -1
- package/dist/Functions/operations.jsx +138 -1
- package/dist/Functions/useFormTools/functions/RenderFields.jsx +108 -1
- package/dist/Functions/useFormTools/index.jsx +777 -1
- package/dist/Functions/usePasswordChecker.jsx +128 -1
- package/dist/Functions/utils.jsx +492 -1
- package/dist/Molecular/CustomIcons/components/AffiliateNetworks.jsx +22 -1
- package/dist/Molecular/CustomIcons/components/AlertCircle.jsx +24 -1
- package/dist/Molecular/CustomIcons/components/AppStore.jsx +30 -1
- package/dist/Molecular/CustomIcons/components/Arrow.jsx +33 -1
- package/dist/Molecular/CustomIcons/components/ArrowDown.jsx +18 -1
- package/dist/Molecular/CustomIcons/components/ArrowLeft.jsx +23 -1
- package/dist/Molecular/CustomIcons/components/ArrowRight.jsx +23 -1
- package/dist/Molecular/CustomIcons/components/ArrowUp.jsx +18 -1
- package/dist/Molecular/CustomIcons/components/Bell.jsx +16 -1
- package/dist/Molecular/CustomIcons/components/Button.jsx +13 -1
- package/dist/Molecular/CustomIcons/components/Campaigns.jsx +17 -1
- package/dist/Molecular/CustomIcons/components/Check.jsx +15 -1
- package/dist/Molecular/CustomIcons/components/Check2.jsx +13 -1
- package/dist/Molecular/CustomIcons/components/ChevronDown.jsx +13 -1
- package/dist/Molecular/CustomIcons/components/ChevronDownDisabled.jsx +12 -1
- package/dist/Molecular/CustomIcons/components/ChevronLeft.jsx +12 -1
- package/dist/Molecular/CustomIcons/components/ChevronRight.jsx +12 -1
- package/dist/Molecular/CustomIcons/components/ChevronUp.jsx +12 -1
- package/dist/Molecular/CustomIcons/components/ChevronUpDown.jsx +28 -1
- package/dist/Molecular/CustomIcons/components/Close.jsx +15 -1
- package/dist/Molecular/CustomIcons/components/ColumnsOrder.jsx +18 -1
- package/dist/Molecular/CustomIcons/components/Delete.jsx +17 -1
- package/dist/Molecular/CustomIcons/components/Edit.jsx +16 -1
- package/dist/Molecular/CustomIcons/components/Email.jsx +32 -1
- package/dist/Molecular/CustomIcons/components/FinturfLogo.jsx +19 -1
- package/dist/Molecular/CustomIcons/components/FinturfLogo2.jsx +36 -1
- package/dist/Molecular/CustomIcons/components/Flows.jsx +16 -1
- package/dist/Molecular/CustomIcons/components/Gift.jsx +26 -1
- package/dist/Molecular/CustomIcons/components/GoogleAuth.jsx +30 -1
- package/dist/Molecular/CustomIcons/components/GooglePlay.jsx +30 -1
- package/dist/Molecular/CustomIcons/components/HelpCircle.jsx +20 -1
- package/dist/Molecular/CustomIcons/components/HelpCircle2.jsx +21 -1
- package/dist/Molecular/CustomIcons/components/HelpCircleFilled.jsx +20 -1
- package/dist/Molecular/CustomIcons/components/Home.jsx +17 -1
- package/dist/Molecular/CustomIcons/components/Home2.jsx +23 -1
- package/dist/Molecular/CustomIcons/components/Key.jsx +24 -1
- package/dist/Molecular/CustomIcons/components/Landers.jsx +21 -1
- package/dist/Molecular/CustomIcons/components/Lock.jsx +16 -1
- package/dist/Molecular/CustomIcons/components/Mail.jsx +27 -1
- package/dist/Molecular/CustomIcons/components/Mastercard.jsx +74 -1
- package/dist/Molecular/CustomIcons/components/Minus.jsx +26 -1
- package/dist/Molecular/CustomIcons/components/Offers.jsx +17 -1
- package/dist/Molecular/CustomIcons/components/Pause.jsx +29 -1
- package/dist/Molecular/CustomIcons/components/PayPal.jsx +42 -1
- package/dist/Molecular/CustomIcons/components/PayPalLightLarge.jsx +29 -1
- package/dist/Molecular/CustomIcons/components/Phone.jsx +31 -1
- package/dist/Molecular/CustomIcons/components/Play.jsx +26 -1
- package/dist/Molecular/CustomIcons/components/Plus.jsx +26 -1
- package/dist/Molecular/CustomIcons/components/Profile.jsx +17 -1
- package/dist/Molecular/CustomIcons/components/QRCode.jsx +30 -1
- package/dist/Molecular/CustomIcons/components/Rectangle.jsx +13 -1
- package/dist/Molecular/CustomIcons/components/Revert.jsx +14 -1
- package/dist/Molecular/CustomIcons/components/Star.jsx +15 -1
- package/dist/Molecular/CustomIcons/components/Star2.jsx +17 -1
- package/dist/Molecular/CustomIcons/components/TrafficSources.jsx +15 -1
- package/dist/Molecular/CustomIcons/components/Trash.jsx +16 -1
- package/dist/Molecular/CustomIcons/components/TrashRed.jsx +16 -1
- package/dist/Molecular/CustomIcons/components/Triggers.jsx +16 -1
- package/dist/Molecular/CustomIcons/components/User.jsx +26 -1
- package/dist/Molecular/CustomIcons/components/Visa.jsx +32 -1
- package/dist/Molecular/CustomIcons/components/X.jsx +13 -1
- package/dist/Molecular/FormElement/FormElement.jsx +52 -1
- package/dist/Molecular/FormWithDependOn/FormWithDependOn.jsx +161 -1
- package/dist/Molecular/InputAddress/InputAddress.jsx +641 -1
- package/dist/Molecular/InputPassword/InputPassword.jsx +50 -1
- package/package.json +1 -1
|
@@ -1 +1,29 @@
|
|
|
1
|
-
|
|
1
|
+
export function PayPalLightLarge(props) {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width={61}
|
|
6
|
+
height={40}
|
|
7
|
+
fill="none"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<rect width={61} height={40} fill="#fff" rx={4} />
|
|
11
|
+
<path
|
|
12
|
+
fill="#253D80"
|
|
13
|
+
d="m25.85 31.65.444-2.75H20.626l3.253-20.325a.261.261 0 0 1 .09-.163.308.308 0 0 1 .177-.062h7.892c2.63 0 4.435.537 5.388 1.6.422.446.716.994.852 1.588a5.437 5.437 0 0 1 0 2.187v.625l.445.25c.338.166.644.39.902.662.388.462.64 1.02.724 1.613.096.775.061 1.56-.101 2.325a8.016 8.016 0 0 1-.979 2.637 5.41 5.41 0 0 1-1.538 1.663 6.485 6.485 0 0 1-2.071.913c-.83.206-1.685.306-2.542.3h-.622c-.437 0-.86.15-1.195.424-.337.28-.559.671-.623 1.1v.25l-.775 4.85v.188c.01.033.01.067 0 .1h-.076l-3.978.025Z"
|
|
14
|
+
/>
|
|
15
|
+
<path
|
|
16
|
+
fill="#189BD7"
|
|
17
|
+
d="m39.141 13.85-.076.463c-1.042 5.25-4.613 7.074-9.163 7.074H27.59c-.556 0-1.03.397-1.118.938l-1.182 7.4-.343 2.1a.58.58 0 0 0 .136.469c.112.129.276.204.449.206h4.117c.488 0 .904-.35.979-.825v-.2l.775-4.838v-.262a.973.973 0 0 1 .966-.825h.673c3.978 0 7.104-1.588 8.007-6.25a5.23 5.23 0 0 0-.814-4.663 4.098 4.098 0 0 0-1.093-.787Z"
|
|
18
|
+
/>
|
|
19
|
+
<path
|
|
20
|
+
fill="#242E65"
|
|
21
|
+
d="m38.049 13.425-.483-.125-.534-.1A13.012 13.012 0 0 0 35 13.063h-6.202a.952.952 0 0 0-.966.813l-1.27 8.211v.238c.087-.54.561-.938 1.118-.938h2.313c4.55 0 8.12-1.825 9.162-7.075l.077-.462a5.762 5.762 0 0 0-.852-.35l-.33-.075Z"
|
|
22
|
+
/>
|
|
23
|
+
<path
|
|
24
|
+
fill="#253D80"
|
|
25
|
+
d="M27.831 13.875a.952.952 0 0 1 .966-.813H35c.68-.007 1.36.039 2.033.138l.534.1.483.125.241.075c.293.094.578.21.852.35a4.938 4.938 0 0 0-1.017-4.463C36.855 8.063 34.77 7.5 32.05 7.5h-7.904c-.557 0-1.03.397-1.118.938L19.736 28.95c-.03.193.028.39.157.539.13.148.318.235.517.236h4.88l1.27-7.638 1.271-8.212Z"
|
|
26
|
+
/>
|
|
27
|
+
</svg>
|
|
28
|
+
)
|
|
29
|
+
}
|
|
@@ -1 +1,31 @@
|
|
|
1
|
-
|
|
1
|
+
export function Phone(props) {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width={16}
|
|
6
|
+
height={16}
|
|
7
|
+
fill="none"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<mask
|
|
11
|
+
id="a"
|
|
12
|
+
width={16}
|
|
13
|
+
height={16}
|
|
14
|
+
x={0}
|
|
15
|
+
y={0}
|
|
16
|
+
maskUnits="userSpaceOnUse"
|
|
17
|
+
style={{
|
|
18
|
+
masktype: '"',
|
|
19
|
+
}}
|
|
20
|
+
>
|
|
21
|
+
<path
|
|
22
|
+
stroke="#000"
|
|
23
|
+
d="M11.333 1.333H4.667c-.737 0-1.334.597-1.334 1.334v10.666c0 .737.597 1.334 1.334 1.334h6.666c.737 0 1.334-.597 1.334-1.334V2.667c0-.737-.597-1.334-1.334-1.334ZM8 12h.008"
|
|
24
|
+
/>
|
|
25
|
+
</mask>
|
|
26
|
+
<g mask="url(#a)">
|
|
27
|
+
<path fill="#1F7499" d="M0 0h16v16H0z" />
|
|
28
|
+
</g>
|
|
29
|
+
</svg>
|
|
30
|
+
)
|
|
31
|
+
}
|
|
@@ -1 +1,26 @@
|
|
|
1
|
-
|
|
1
|
+
export function Play(props) {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width={16}
|
|
6
|
+
height={16}
|
|
7
|
+
fill="none"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<mask
|
|
11
|
+
id="a"
|
|
12
|
+
width={16}
|
|
13
|
+
height={16}
|
|
14
|
+
x={0}
|
|
15
|
+
y={0}
|
|
16
|
+
mask-type="alpha"
|
|
17
|
+
maskUnits="userSpaceOnUse"
|
|
18
|
+
>
|
|
19
|
+
<path stroke="#000" d="M3.444 1.857 13 8l-9.556 6.143V1.857Z" />
|
|
20
|
+
</mask>
|
|
21
|
+
<g mask="url(#a)">
|
|
22
|
+
<path fill="#00B031" d="M0 0h16v16H0z" />
|
|
23
|
+
</g>
|
|
24
|
+
</svg>
|
|
25
|
+
)
|
|
26
|
+
}
|
|
@@ -1 +1,26 @@
|
|
|
1
|
-
|
|
1
|
+
export function Plus(props) {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width={16}
|
|
6
|
+
height={16}
|
|
7
|
+
fill="none"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<mask
|
|
11
|
+
id="a"
|
|
12
|
+
width={16}
|
|
13
|
+
height={16}
|
|
14
|
+
x={0}
|
|
15
|
+
y={0}
|
|
16
|
+
mask-type="alpha"
|
|
17
|
+
maskUnits="userSpaceOnUse"
|
|
18
|
+
>
|
|
19
|
+
<path stroke="#1E1E2D" d="M8 3.333v9.334M3.333 8h9.334" />
|
|
20
|
+
</mask>
|
|
21
|
+
<g mask="url(#a)">
|
|
22
|
+
<path fill="#1E1E2D" d="M0 0h16v16H0z" />
|
|
23
|
+
</g>
|
|
24
|
+
</svg>
|
|
25
|
+
)
|
|
26
|
+
}
|
|
@@ -1 +1,17 @@
|
|
|
1
|
-
|
|
1
|
+
export function Profile(props) {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width={24}
|
|
6
|
+
height={24}
|
|
7
|
+
fill="none"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<circle cx={12} cy={12} r={12} fill="#F4F6FF" />
|
|
11
|
+
<path
|
|
12
|
+
stroke="#9AA0B9"
|
|
13
|
+
d="M17.333 18v-1.333A2.667 2.667 0 0 0 14.667 14H9.333a2.667 2.667 0 0 0-2.666 2.667V18M12 11.333A2.667 2.667 0 1 0 12 6a2.667 2.667 0 0 0 0 5.333Z"
|
|
14
|
+
/>
|
|
15
|
+
</svg>
|
|
16
|
+
)
|
|
17
|
+
}
|
|
@@ -1 +1,30 @@
|
|
|
1
|
-
|
|
1
|
+
export function QRCode(props) {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
6
|
+
width={168}
|
|
7
|
+
height={168}
|
|
8
|
+
fill="none"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path fill="url(#a)" stroke="#E2E5EC" d="M.5.5h167v167H.5z" />
|
|
12
|
+
<defs>
|
|
13
|
+
<pattern
|
|
14
|
+
id="a"
|
|
15
|
+
width={1}
|
|
16
|
+
height={1}
|
|
17
|
+
patternContentUnits="objectBoundingBox"
|
|
18
|
+
>
|
|
19
|
+
<use xlinkHref="#b" transform="scale(.0039)" />
|
|
20
|
+
</pattern>
|
|
21
|
+
<image
|
|
22
|
+
xlinkHref="data:image/png;base64,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"
|
|
23
|
+
id="b"
|
|
24
|
+
width={256}
|
|
25
|
+
height={256}
|
|
26
|
+
/>
|
|
27
|
+
</defs>
|
|
28
|
+
</svg>
|
|
29
|
+
)
|
|
30
|
+
}
|
|
@@ -1 +1,13 @@
|
|
|
1
|
-
|
|
1
|
+
export function Rectangle(props) {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width={215}
|
|
6
|
+
height={440}
|
|
7
|
+
fill="none"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path fill="#C4C4C4" d="M0 0h215v440H0z" />
|
|
11
|
+
</svg>
|
|
12
|
+
)
|
|
13
|
+
}
|
|
@@ -1 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
export function Revert(props) {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width={16}
|
|
6
|
+
height={16}
|
|
7
|
+
fill="none"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path stroke="#000" d="M1 3v4h4" />
|
|
11
|
+
<path stroke="#F06D8D" d="M2.34 10a6 6 0 1 0 1.42-6.24S2.5 5 2 6.5" />
|
|
12
|
+
</svg>
|
|
13
|
+
)
|
|
14
|
+
}
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
|
|
1
|
+
export function Star(props) {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlSpace="preserve"
|
|
6
|
+
viewBox="0 0 16 16"
|
|
7
|
+
{...props}
|
|
8
|
+
>
|
|
9
|
+
<path
|
|
10
|
+
fill="#F59A2F"
|
|
11
|
+
d="m8 .1 2.5 5 5.5.8-3.9 3.8 1 5.5-5-2.6-4.9 2.6 1-5.5L0 5.9l5.5-.8L8 .1z"
|
|
12
|
+
/>
|
|
13
|
+
</svg>
|
|
14
|
+
)
|
|
15
|
+
}
|
|
@@ -1 +1,17 @@
|
|
|
1
|
-
|
|
1
|
+
export function Star2(props) {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlSpace="preserve"
|
|
6
|
+
viewBox="0 0 16 16"
|
|
7
|
+
{...props}
|
|
8
|
+
>
|
|
9
|
+
<path
|
|
10
|
+
fill="none"
|
|
11
|
+
stroke="#9AA0B9"
|
|
12
|
+
strokeMiterlimit={10}
|
|
13
|
+
d="m8 1.2 2.1 4.2 4.6.7-3.3 3.2.8 4.6L8 11.7l-4.1 2.2.8-4.6-3.4-3.2 4.6-.7L8 1.2z"
|
|
14
|
+
/>
|
|
15
|
+
</svg>
|
|
16
|
+
)
|
|
17
|
+
}
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
|
|
1
|
+
export function TrafficSources(props) {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlSpace="preserve"
|
|
6
|
+
viewBox="0 0 16 16"
|
|
7
|
+
{...props}
|
|
8
|
+
>
|
|
9
|
+
<g fill="none" stroke="#9AA0B9">
|
|
10
|
+
<path d="M4.7 10.7 8 14l3.3-3.3" />
|
|
11
|
+
<path d="M.7 2.7h4.7c.7 0 1.4.3 1.9.8.4.4.7 1.1.7 1.8v8M15.3 2.7h-4.7c-.7 0-1.4.3-1.9.8S8 4.6 8 5.3v8" />
|
|
12
|
+
</g>
|
|
13
|
+
</svg>
|
|
14
|
+
)
|
|
15
|
+
}
|
|
@@ -1 +1,16 @@
|
|
|
1
|
-
|
|
1
|
+
export function Trash(props) {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlSpace="preserve"
|
|
6
|
+
viewBox="0 0 16 16"
|
|
7
|
+
{...props}
|
|
8
|
+
>
|
|
9
|
+
<path
|
|
10
|
+
fill="none"
|
|
11
|
+
stroke="currentColor"
|
|
12
|
+
d="M2 4h12M5.3 4V2.7c0-.4.1-.7.4-.9.3-.3.6-.5 1-.5h2.7c.4 0 .7.1.9.4.3.3.4.6.4.9V4m2 0v9.3c0 .4-.1.7-.4.9-.3.3-.6.4-.9.4H4.7c-.4 0-.7-.1-.9-.4-.3-.3-.4-.6-.4-.9V4h9.3zM6.7 7.3v4M9.3 7.3v4"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
)
|
|
16
|
+
}
|
|
@@ -1 +1,16 @@
|
|
|
1
|
-
|
|
1
|
+
export function TrashRed(props) {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlSpace="preserve"
|
|
6
|
+
viewBox="0 0 16 16"
|
|
7
|
+
{...props}
|
|
8
|
+
>
|
|
9
|
+
<path
|
|
10
|
+
fill="none"
|
|
11
|
+
stroke="#F06D8D"
|
|
12
|
+
d="M2 4h12M5.3 4V2.7c0-.4.1-.7.4-.9.3-.3.6-.5 1-.5h2.7c.4 0 .7.1.9.4.3.3.4.6.4.9V4m2 0v9.3c0 .4-.1.7-.4.9-.3.3-.6.4-.9.4H4.7c-.4 0-.7-.1-.9-.4-.3-.3-.4-.6-.4-.9V4h9.3zM6.7 7.3v4M9.3 7.3v4"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
)
|
|
16
|
+
}
|
|
@@ -1 +1,16 @@
|
|
|
1
|
-
|
|
1
|
+
export function Triggers(props) {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlSpace="preserve"
|
|
6
|
+
viewBox="0 0 24 24"
|
|
7
|
+
{...props}
|
|
8
|
+
>
|
|
9
|
+
<path
|
|
10
|
+
fill="none"
|
|
11
|
+
stroke="#9AA0B9"
|
|
12
|
+
d="M4 21v-7M4 10V3M12 21v-9M12 8V3M20 21v-5M20 12V3M1 14h6M9 8h6M17 16h6"
|
|
13
|
+
/>
|
|
14
|
+
</svg>
|
|
15
|
+
)
|
|
16
|
+
}
|
|
@@ -1 +1,26 @@
|
|
|
1
|
-
|
|
1
|
+
export function User(props) {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlSpace="preserve"
|
|
6
|
+
id="Layer_1"
|
|
7
|
+
x={0}
|
|
8
|
+
y={0}
|
|
9
|
+
style={{
|
|
10
|
+
enableBackground: 'new 0 0 16 16',
|
|
11
|
+
}}
|
|
12
|
+
viewBox="0 0 16 16"
|
|
13
|
+
{...props}
|
|
14
|
+
>
|
|
15
|
+
<style>
|
|
16
|
+
{
|
|
17
|
+
'.st0{fill:none;stroke:#9aa0b9;strokeWidth:1.07;strokeLinecap:round;strokeLinejoin:round}'
|
|
18
|
+
}
|
|
19
|
+
</style>
|
|
20
|
+
<path
|
|
21
|
+
d="M13.3 14v-1.3a2.732 2.732 0 0 0-2.7-2.7H5.3a2.732 2.732 0 0 0-2.7 2.7V14M8 7.3c1.5 0 2.7-1.2 2.7-2.7S9.5 2 8 2 5.3 3.2 5.3 4.7 6.5 7.3 8 7.3z"
|
|
22
|
+
className="st0"
|
|
23
|
+
/>
|
|
24
|
+
</svg>
|
|
25
|
+
)
|
|
26
|
+
}
|
|
@@ -1 +1,32 @@
|
|
|
1
|
-
|
|
1
|
+
export function Visa(props) {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width={38}
|
|
6
|
+
height={24}
|
|
7
|
+
fill="none"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<g fillRule="evenodd" clipPath="url(#a)" clipRule="evenodd">
|
|
11
|
+
<path
|
|
12
|
+
fill="#fff"
|
|
13
|
+
d="M0 1.784C0 .799.799 0 1.784 0H36.27c.985 0 1.784.799 1.784 1.784v21.405c0 .985-.799 1.784-1.784 1.784H1.784A1.784 1.784 0 0 1 0 23.189V1.784Z"
|
|
14
|
+
/>
|
|
15
|
+
<path
|
|
16
|
+
fill="#0071CE"
|
|
17
|
+
d="M23.325 9.21a4.132 4.132 0 0 0-1.543-.291c-1.702 0-2.9.938-2.91 2.281-.01.994.855 1.548 1.508 1.878.67.339.896.555.893.858-.004.463-.535.675-1.03.675-.69 0-1.055-.104-1.622-.363l-.221-.11-.24 1.548c.4.192 1.145.36 1.917.368 1.81 0 2.984-.927 2.998-2.36.006-.789-.452-1.386-1.446-1.88-.601-.32-.97-.532-.966-.856 0-.288.311-.595.986-.595.563-.01.97.125 1.288.265l.155.08.233-1.499Zm-7.966 6.742 1.077-6.913h1.721l-1.077 6.913H15.36Zm10.944-4.383s-.543 1.535-.685 1.932h1.429c-.068-.346-.399-1.995-.399-1.995l-.116-.597c-.046.137-.11.318-.158.456v.001a4.467 4.467 0 0 0-.07.203Zm1.438-2.523h-1.33c-.413 0-.722.123-.902.573l-2.557 6.335h1.808s.295-.852.362-1.04l.994.002 1.211.002c.052.242.21 1.036.21 1.036h1.598L27.74 9.046Zm-13.826 0-1.685 4.712-.18-.958-.001-.003-.603-3.173c-.104-.438-.407-.568-.78-.583H7.888l-.023.143c.676.179 1.28.437 1.81.758l1.53 6.004 1.822-.002 2.711-6.899h-1.824Z"
|
|
18
|
+
/>
|
|
19
|
+
<path
|
|
20
|
+
fill="#E5E5E5"
|
|
21
|
+
fillOpacity={0.01}
|
|
22
|
+
d="M0 1.784C0 .799.799 0 1.784 0H36.27c.985 0 1.784.799 1.784 1.784v21.405c0 .985-.799 1.784-1.784 1.784H1.784A1.784 1.784 0 0 1 0 23.189V1.784Z"
|
|
23
|
+
/>
|
|
24
|
+
</g>
|
|
25
|
+
<defs>
|
|
26
|
+
<clipPath id="a">
|
|
27
|
+
<path fill="#fff" d="M0 0h38v24H0z" />
|
|
28
|
+
</clipPath>
|
|
29
|
+
</defs>
|
|
30
|
+
</svg>
|
|
31
|
+
)
|
|
32
|
+
}
|
|
@@ -1 +1,13 @@
|
|
|
1
|
-
|
|
1
|
+
export function X(props) {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width={16}
|
|
6
|
+
height={16}
|
|
7
|
+
fill="none"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path stroke="#000" d="m12 4-8 8M4 4l8 8" />
|
|
11
|
+
</svg>
|
|
12
|
+
)
|
|
13
|
+
}
|
|
@@ -1 +1,52 @@
|
|
|
1
|
-
|
|
1
|
+
import cn from 'classnames';
|
|
2
|
+
|
|
3
|
+
import Label from '../../Atomic/FormElements/Label/Label';
|
|
4
|
+
|
|
5
|
+
import Alert from './../../Atomic/UI/Alert/Alert';
|
|
6
|
+
|
|
7
|
+
import './FormElement.scss';
|
|
8
|
+
|
|
9
|
+
const RC = 'form-element';
|
|
10
|
+
|
|
11
|
+
function FormElement({
|
|
12
|
+
label,
|
|
13
|
+
required,
|
|
14
|
+
children,
|
|
15
|
+
error,
|
|
16
|
+
className,
|
|
17
|
+
hint,
|
|
18
|
+
isLabelBolt,
|
|
19
|
+
isNoLabel,
|
|
20
|
+
alert,
|
|
21
|
+
onClickHintCallback,
|
|
22
|
+
note,
|
|
23
|
+
}) {
|
|
24
|
+
return (
|
|
25
|
+
<div className={cn(className, RC)}>
|
|
26
|
+
{label && !isNoLabel && (
|
|
27
|
+
<Label
|
|
28
|
+
className={`${RC}__label`}
|
|
29
|
+
label={label}
|
|
30
|
+
hint={hint}
|
|
31
|
+
note={note}
|
|
32
|
+
isRequired={required}
|
|
33
|
+
isLabelBolt={isLabelBolt}
|
|
34
|
+
onClickHintCallback={onClickHintCallback}
|
|
35
|
+
/>
|
|
36
|
+
)}
|
|
37
|
+
{children}
|
|
38
|
+
{error && (
|
|
39
|
+
<span
|
|
40
|
+
className={cn(`${RC}__error`, {
|
|
41
|
+
[`${RC}__error--with-alert`]: alert,
|
|
42
|
+
})}
|
|
43
|
+
>
|
|
44
|
+
{error}
|
|
45
|
+
</span>
|
|
46
|
+
)}
|
|
47
|
+
{alert && <Alert className={`${RC}__alert`} {...alert} />}
|
|
48
|
+
</div>
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export default FormElement;
|