@ovotech/element-native 5.5.0 → 5.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Accordion/styles.d.ts +9 -0
- package/dist/components/ActionList/Action.d.ts +23 -0
- package/dist/components/ActionList/Action.js +29 -0
- package/dist/components/ActionList/ActionList.d.ts +11 -27
- package/dist/components/ActionList/ActionList.js +9 -25
- package/dist/components/ActionList/ActionListItems/DataListItem.d.ts +23 -0
- package/dist/components/ActionList/ActionListItems/DataListItem.js +21 -0
- package/dist/components/ActionList/ActionListItems/EditableListItem.d.ts +43 -0
- package/dist/components/ActionList/ActionListItems/EditableListItem.js +134 -0
- package/dist/components/ActionList/ActionListItems/NavigationListItem.d.ts +16 -0
- package/dist/components/ActionList/ActionListItems/NavigationListItem.js +30 -0
- package/dist/components/ActionList/ActionListItems/ProgressRing.d.ts +7 -0
- package/dist/components/ActionList/ActionListItems/ProgressRing.js +66 -0
- package/dist/components/ActionList/ActionListItems/ToggleListItem.d.ts +9 -0
- package/dist/components/ActionList/ActionListItems/ToggleListItem.js +13 -0
- package/dist/components/ActionList/ActionListItems/styles.d.ts +10433 -0
- package/dist/components/ActionList/ActionListItems/styles.js +171 -0
- package/dist/components/ActionList/components/ActionListHeading.d.ts +9 -0
- package/dist/components/ActionList/components/ActionListHeading.js +11 -0
- package/dist/components/ActionList/index.d.ts +6 -1
- package/dist/components/ActionList/index.js +11 -2
- package/dist/components/ActionList/styled.d.ts +1187 -7
- package/dist/components/ActionList/styled.js +24 -9
- package/dist/components/Badge/Badge.d.ts +3 -0
- package/dist/components/Button/Button.js +1 -1
- package/dist/components/Button/Button.styles.d.ts +12 -0
- package/dist/components/Card/Card.d.ts +7 -4
- package/dist/components/Card/Card.js +44 -22
- package/dist/components/Card/Card.styles.d.ts +11 -1
- package/dist/components/Card/Card.styles.js +7 -11
- package/dist/components/Cards/AccountCard/AccountCard.styles.d.ts +24 -0
- package/dist/components/Cards/BalanceCard/BalanceCard.styles.d.ts +46 -1
- package/dist/components/Cards/BalanceCard/BalanceCard.styles.js +2 -2
- package/dist/components/Cards/DisruptiveCard/DisruptiveCard.d.ts +13 -0
- package/dist/components/Cards/DisruptiveCard/DisruptiveCard.js +45 -0
- package/dist/components/Cards/DisruptiveCard/DisruptiveCard.styles.d.ts +580 -0
- package/dist/components/Cards/DisruptiveCard/DisruptiveCard.styles.js +11 -0
- package/dist/components/Cards/DisruptiveCard/index.d.ts +1 -0
- package/dist/components/Cards/DisruptiveCard/index.js +17 -0
- package/dist/components/Cards/HeroImageCard/HeroImageCard.d.ts +12 -0
- package/dist/components/Cards/HeroImageCard/HeroImageCard.js +65 -0
- package/dist/components/Cards/HeroImageCard/HeroImageCard.styles.d.ts +1741 -0
- package/dist/components/Cards/HeroImageCard/HeroImageCard.styles.js +27 -0
- package/dist/components/Cards/HeroImageCard/index.d.ts +1 -0
- package/dist/components/Cards/HeroImageCard/index.js +17 -0
- package/dist/components/Cards/IconDataCard/IconDataCard.styles.d.ts +12 -0
- package/dist/components/Cards/IconTextCard/IconTextCard.js +3 -16
- package/dist/components/Cards/IconTextCard/IconTextCard.styles.d.ts +10 -576
- package/dist/components/Cards/IconTextCard/IconTextCard.styles.js +1 -6
- package/dist/components/Cards/IllustrationTextCard/IllustrationTextCard.d.ts +14 -0
- package/dist/components/Cards/IllustrationTextCard/IllustrationTextCard.js +26 -0
- package/dist/components/Cards/IllustrationTextCard/IllustrationTextCard.styles.d.ts +2903 -0
- package/dist/components/Cards/IllustrationTextCard/IllustrationTextCard.styles.js +34 -0
- package/dist/components/Cards/IllustrationTextCard/index.d.ts +1 -0
- package/dist/components/Cards/IllustrationTextCard/index.js +17 -0
- package/dist/components/Cards/LinkTextCard/LinkTextCard.d.ts +2 -2
- package/dist/components/Cards/LinkTextCard/LinkTextCard.js +7 -6
- package/dist/components/Cards/LinkTextCard/LinkTextCard.styles.d.ts +20 -2
- package/dist/components/Cards/LinkTextCard/LinkTextCard.styles.js +9 -6
- package/dist/components/Cards/ProgressBarCard/ProgressBarCard.styles.d.ts +28 -1
- package/dist/components/Cards/QuickLinkCard/QuickLinkCard.d.ts +12 -0
- package/dist/components/Cards/QuickLinkCard/QuickLinkCard.js +27 -0
- package/dist/components/Cards/QuickLinkCard/QuickLinkCard.styles.d.ts +2897 -0
- package/dist/components/Cards/QuickLinkCard/QuickLinkCard.styles.js +31 -0
- package/dist/components/Cards/QuickLinkCard/index.d.ts +1 -0
- package/dist/components/Cards/QuickLinkCard/index.js +17 -0
- package/dist/components/Cards/ServicesImageCard/ServicesImageCard.d.ts +12 -0
- package/dist/components/Cards/ServicesImageCard/ServicesImageCard.js +24 -0
- package/dist/components/Cards/ServicesImageCard/ServicesImageCard.styles.d.ts +2902 -0
- package/dist/components/Cards/ServicesImageCard/ServicesImageCard.styles.js +38 -0
- package/dist/components/Cards/ServicesImageCard/index.d.ts +1 -0
- package/dist/components/Cards/ServicesImageCard/index.js +17 -0
- package/dist/components/Cards/components.d.ts +15 -0
- package/dist/components/Cards/components.js +24 -0
- package/dist/components/Cards/index.d.ts +5 -0
- package/dist/components/Cards/index.js +11 -1
- package/dist/components/Cards/shared.styles.d.ts +2835 -505
- package/dist/components/Cards/shared.styles.js +18 -2
- package/dist/components/Cards/utils.d.ts +1 -0
- package/dist/components/Cards/utils.js +13 -1
- package/dist/components/Checkbox/Checkbox.d.ts +2 -13
- package/dist/components/Checkbox/Checkbox.js +3 -49
- package/dist/components/Checkbox/styled.d.ts +3483 -0
- package/dist/components/Checkbox/styled.js +52 -0
- package/dist/components/Checkbox/types.d.ts +16 -0
- package/dist/components/Checkbox/types.js +2 -0
- package/dist/components/CurrencyInput/CurrencyInput.d.ts +2 -1
- package/dist/components/CurrencyInput/CurrencyInput.js +11 -4
- package/dist/components/CurrencyInput/styled.d.ts +2318 -0
- package/dist/components/CurrencyInput/styled.js +39 -0
- package/dist/components/DataTable/styles.d.ts +39 -0
- package/dist/components/Disclosure/Disclosure.d.ts +3 -0
- package/dist/components/Divider/Divider.d.ts +1 -1
- package/dist/components/Divider/Divider.js +3 -1
- package/dist/components/Em/Em.d.ts +3 -0
- package/dist/components/EmailInput/EmailInput.d.ts +4 -1
- package/dist/components/EmailInput/EmailInput.js +18 -2
- package/dist/components/EmptyState/EmptyState.d.ts +2 -0
- package/dist/components/EmptyState/EmptyState.js +17 -0
- package/dist/components/EmptyState/EmptyState.test.d.ts +1 -0
- package/dist/components/EmptyState/EmptyState.test.js +92 -0
- package/dist/components/EmptyState/index.d.ts +1 -0
- package/dist/components/EmptyState/index.js +17 -0
- package/dist/components/EmptyState/styles.d.ts +1156 -0
- package/dist/components/EmptyState/styles.js +23 -0
- package/dist/components/EmptyState/types.d.ts +18 -0
- package/dist/components/EmptyState/types.js +2 -0
- package/dist/components/ErrorText/ErrorText.d.ts +3 -0
- package/dist/components/Field/Field.d.ts +3 -2
- package/dist/components/Field/Field.js +3 -2
- package/dist/components/Grid/Col.d.ts +3 -0
- package/dist/components/HintText/HintText.d.ts +3 -0
- package/dist/components/Input/Input.d.ts +2 -1
- package/dist/components/Input/Input.js +6 -97
- package/dist/components/Input/styled.d.ts +1747 -0
- package/dist/components/Input/styled.js +96 -0
- package/dist/components/LabelText/LabelText.d.ts +3 -0
- package/dist/components/LargeValueReference/LargeValueReference.d.ts +11 -0
- package/dist/components/LargeValueReference/LargeValueReference.js +49 -0
- package/dist/components/LargeValueReference/index.d.ts +1 -0
- package/dist/components/LargeValueReference/index.js +17 -0
- package/dist/components/LargeValueReference/styles.d.ts +1741 -0
- package/dist/components/LargeValueReference/styles.js +29 -0
- package/dist/components/LineThrough/LineThrough.d.ts +3 -0
- package/dist/components/List/styled.d.ts +12 -0
- package/dist/components/Margin/Margin.d.ts +3 -0
- package/dist/components/NavHeader/NavHeader.styles.d.ts +33 -0
- package/dist/components/Notification/Notification.styles.d.ts +27 -0
- package/dist/components/PasswordInput/PasswordInput.styled.d.ts +4 -3
- package/dist/components/PasswordInput/PasswordInput.styled.js +5 -3
- package/dist/components/PasswordInput/PasswordVisibilityToggle.js +2 -8
- package/dist/components/RadioCard/RadioCard.d.ts +2 -1
- package/dist/components/RadioCard/RadioCard.js +7 -57
- package/dist/components/RadioCard/RadioCard.styles.d.ts +2901 -0
- package/dist/components/RadioCard/RadioCard.styles.js +97 -0
- package/dist/components/SelectField/Select.d.ts +5 -579
- package/dist/components/SelectField/Select.js +7 -107
- package/dist/components/SelectField/SelectField.d.ts +2 -2
- package/dist/components/SelectField/SelectField.js +2 -2
- package/dist/components/SelectField/styled.d.ts +4642 -0
- package/dist/components/SelectField/styled.js +118 -0
- package/dist/components/SkeletonText/SkeletonText.js +4 -4
- package/dist/components/Strong/Strong.d.ts +3 -0
- package/dist/components/SubLabelText/SubLabelText.d.ts +3 -0
- package/dist/components/Tabs/Tab.d.ts +3 -0
- package/dist/components/TextareaInput/TextareaInput.js +12 -6
- package/dist/components/Toggle/Toggle.d.ts +3 -1
- package/dist/components/Toggle/Toggle.js +4 -6
- package/dist/components/Toggle/styles.d.ts +13 -0
- package/dist/components/Toggle/styles.js +3 -3
- package/dist/components/index.d.ts +3 -0
- package/dist/components/index.js +3 -0
- package/dist/esm/components/ActionList/Action.js +26 -0
- package/dist/esm/components/ActionList/ActionList.js +12 -28
- package/dist/esm/components/ActionList/ActionListItems/DataListItem.js +17 -0
- package/dist/esm/components/ActionList/ActionListItems/EditableListItem.js +131 -0
- package/dist/esm/components/ActionList/ActionListItems/NavigationListItem.js +26 -0
- package/dist/esm/components/ActionList/ActionListItems/ProgressRing.js +29 -0
- package/dist/esm/components/ActionList/ActionListItems/ToggleListItem.js +9 -0
- package/dist/esm/components/ActionList/ActionListItems/styles.js +135 -0
- package/dist/esm/components/ActionList/components/ActionListHeading.js +7 -0
- package/dist/esm/components/ActionList/index.js +6 -1
- package/dist/esm/components/ActionList/styled.js +23 -8
- package/dist/esm/components/Button/Button.js +1 -1
- package/dist/esm/components/Card/Card.js +45 -23
- package/dist/esm/components/Card/Card.styles.js +8 -12
- package/dist/esm/components/Cards/BalanceCard/BalanceCard.styles.js +2 -2
- package/dist/esm/components/Cards/DisruptiveCard/DisruptiveCard.js +41 -0
- package/dist/esm/components/Cards/DisruptiveCard/DisruptiveCard.styles.js +5 -0
- package/dist/esm/components/Cards/DisruptiveCard/index.js +1 -0
- package/dist/esm/components/Cards/HeroImageCard/HeroImageCard.js +28 -0
- package/dist/esm/components/Cards/HeroImageCard/HeroImageCard.styles.js +21 -0
- package/dist/esm/components/Cards/HeroImageCard/index.js +1 -0
- package/dist/esm/components/Cards/IconTextCard/IconTextCard.js +5 -18
- package/dist/esm/components/Cards/IconTextCard/IconTextCard.styles.js +0 -5
- package/dist/esm/components/Cards/IllustrationTextCard/IllustrationTextCard.js +22 -0
- package/dist/esm/components/Cards/IllustrationTextCard/IllustrationTextCard.styles.js +28 -0
- package/dist/esm/components/Cards/IllustrationTextCard/index.js +1 -0
- package/dist/esm/components/Cards/LinkTextCard/LinkTextCard.js +7 -6
- package/dist/esm/components/Cards/LinkTextCard/LinkTextCard.styles.js +9 -6
- package/dist/esm/components/Cards/QuickLinkCard/QuickLinkCard.js +23 -0
- package/dist/esm/components/Cards/QuickLinkCard/QuickLinkCard.styles.js +25 -0
- package/dist/esm/components/Cards/QuickLinkCard/index.js +1 -0
- package/dist/esm/components/Cards/ServicesImageCard/ServicesImageCard.js +20 -0
- package/dist/esm/components/Cards/ServicesImageCard/ServicesImageCard.styles.js +32 -0
- package/dist/esm/components/Cards/ServicesImageCard/index.js +1 -0
- package/dist/esm/components/Cards/components.js +19 -0
- package/dist/esm/components/Cards/index.js +5 -0
- package/dist/esm/components/Cards/shared.styles.js +17 -1
- package/dist/esm/components/Cards/utils.js +11 -0
- package/dist/esm/components/Checkbox/Checkbox.js +2 -45
- package/dist/esm/components/Checkbox/styled.js +46 -0
- package/dist/esm/components/Checkbox/types.js +1 -0
- package/dist/esm/components/CurrencyInput/CurrencyInput.js +12 -5
- package/dist/esm/components/CurrencyInput/styled.js +33 -0
- package/dist/esm/components/Divider/Divider.js +3 -1
- package/dist/esm/components/EmailInput/EmailInput.js +18 -2
- package/dist/esm/components/EmptyState/EmptyState.js +13 -0
- package/dist/esm/components/EmptyState/EmptyState.test.js +90 -0
- package/dist/esm/components/EmptyState/index.js +1 -0
- package/dist/esm/components/EmptyState/styles.js +17 -0
- package/dist/esm/components/EmptyState/types.js +1 -0
- package/dist/esm/components/Field/Field.js +3 -2
- package/dist/esm/components/Input/Input.js +6 -64
- package/dist/esm/components/Input/styled.js +60 -0
- package/dist/esm/components/LargeValueReference/LargeValueReference.js +45 -0
- package/dist/esm/components/LargeValueReference/index.js +1 -0
- package/dist/esm/components/LargeValueReference/styles.js +23 -0
- package/dist/esm/components/PasswordInput/PasswordInput.styled.js +5 -3
- package/dist/esm/components/PasswordInput/PasswordVisibilityToggle.js +2 -8
- package/dist/esm/components/RadioCard/RadioCard.js +5 -52
- package/dist/esm/components/RadioCard/RadioCard.styles.js +61 -0
- package/dist/esm/components/SelectField/Select.js +7 -74
- package/dist/esm/components/SelectField/SelectField.js +3 -3
- package/dist/esm/components/SelectField/styled.js +82 -0
- package/dist/esm/components/SkeletonText/SkeletonText.js +4 -4
- package/dist/esm/components/TextareaInput/TextareaInput.js +12 -6
- package/dist/esm/components/Toggle/Toggle.js +4 -6
- package/dist/esm/components/Toggle/styles.js +3 -3
- package/dist/esm/components/index.js +3 -0
- package/dist/esm/hooks/use-font-scaling.js +32 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/test/utils.js +12 -0
- package/dist/esm/utils/utils.js +12 -1
- package/dist/hooks/use-font-scaling.d.ts +26 -0
- package/dist/hooks/use-font-scaling.js +35 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/styled.native.d.ts +18 -0
- package/dist/test/utils.d.ts +4 -0
- package/dist/test/utils.js +28 -0
- package/dist/utils/utils.d.ts +11 -1
- package/dist/utils/utils.js +12 -0
- package/package.json +4 -4
- package/dist/components/ErrorWrapper/styles.d.ts +0 -0
- package/dist/components/ErrorWrapper/styles.js +0 -1
- package/dist/esm/components/ErrorWrapper/styles.js +0 -1
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.LargeValue = exports.LargeValueContainer = exports.StyledLargeValueReferenceWrapper = void 0;
|
|
7
|
+
const element_core_1 = require("@ovotech/element-core");
|
|
8
|
+
const styled_native_1 = __importDefault(require("../../styled.native"));
|
|
9
|
+
const P_1 = require("../P");
|
|
10
|
+
exports.StyledLargeValueReferenceWrapper = styled_native_1.default.View(({ theme, backgroundTheme }) => `
|
|
11
|
+
align-items: center;
|
|
12
|
+
max-width: ${'100%'};
|
|
13
|
+
gap: ${(0, element_core_1.numToPx)(theme.space[200])};
|
|
14
|
+
padding: ${(0, element_core_1.numToPx)(theme.space[400])};
|
|
15
|
+
background-color: ${theme.color.surface[backgroundTheme]};
|
|
16
|
+
border-radius: ${(0, element_core_1.numToPx)(theme.border.radius.lg)};
|
|
17
|
+
border: ${(0, element_core_1.numToPx)(theme.border.width.sm)} solid ${theme.color.surface.borderDim};
|
|
18
|
+
`);
|
|
19
|
+
exports.LargeValueContainer = styled_native_1.default.View(({ theme }) => `
|
|
20
|
+
flex-direction: row;
|
|
21
|
+
flex-wrap: wrap;
|
|
22
|
+
align-items: center;
|
|
23
|
+
justify-content: center;
|
|
24
|
+
gap: ${(0, element_core_1.numToPx)(theme.space[200])};
|
|
25
|
+
`);
|
|
26
|
+
exports.LargeValue = (0, styled_native_1.default)(P_1.P)(() => `
|
|
27
|
+
font-family: monospace;
|
|
28
|
+
letter-spacing: 2px;
|
|
29
|
+
`);
|
|
@@ -37,6 +37,7 @@ export declare const LineThrough: import("styled-components").StyledComponent<ty
|
|
|
37
37
|
"30": string;
|
|
38
38
|
"40": string;
|
|
39
39
|
"50": string;
|
|
40
|
+
"55": string;
|
|
40
41
|
"56": string;
|
|
41
42
|
"60": string;
|
|
42
43
|
"70": string;
|
|
@@ -79,6 +80,7 @@ export declare const LineThrough: import("styled-components").StyledComponent<ty
|
|
|
79
80
|
onBrandVariant: string;
|
|
80
81
|
aiGradientFrom: string;
|
|
81
82
|
aiGradientTo: string;
|
|
83
|
+
accessible: string;
|
|
82
84
|
fixed: {
|
|
83
85
|
brand: string;
|
|
84
86
|
dark: string;
|
|
@@ -87,6 +89,7 @@ export declare const LineThrough: import("styled-components").StyledComponent<ty
|
|
|
87
89
|
bright: string;
|
|
88
90
|
onBrand: string;
|
|
89
91
|
onBrandVariant: string;
|
|
92
|
+
accessible: string;
|
|
90
93
|
};
|
|
91
94
|
};
|
|
92
95
|
outline: {
|
|
@@ -39,6 +39,7 @@ export declare const SquareBullet: import("styled-components").StyledComponent<t
|
|
|
39
39
|
"30": string;
|
|
40
40
|
"40": string;
|
|
41
41
|
"50": string;
|
|
42
|
+
"55": string;
|
|
42
43
|
"56": string;
|
|
43
44
|
"60": string;
|
|
44
45
|
"70": string;
|
|
@@ -81,6 +82,7 @@ export declare const SquareBullet: import("styled-components").StyledComponent<t
|
|
|
81
82
|
onBrandVariant: string;
|
|
82
83
|
aiGradientFrom: string;
|
|
83
84
|
aiGradientTo: string;
|
|
85
|
+
accessible: string;
|
|
84
86
|
fixed: {
|
|
85
87
|
brand: string;
|
|
86
88
|
dark: string;
|
|
@@ -89,6 +91,7 @@ export declare const SquareBullet: import("styled-components").StyledComponent<t
|
|
|
89
91
|
bright: string;
|
|
90
92
|
onBrand: string;
|
|
91
93
|
onBrandVariant: string;
|
|
94
|
+
accessible: string;
|
|
92
95
|
};
|
|
93
96
|
};
|
|
94
97
|
outline: {
|
|
@@ -616,6 +619,7 @@ export declare const TextBullet: import("styled-components").StyledComponent<typ
|
|
|
616
619
|
"30": string;
|
|
617
620
|
"40": string;
|
|
618
621
|
"50": string;
|
|
622
|
+
"55": string;
|
|
619
623
|
"56": string;
|
|
620
624
|
"60": string;
|
|
621
625
|
"70": string;
|
|
@@ -658,6 +662,7 @@ export declare const TextBullet: import("styled-components").StyledComponent<typ
|
|
|
658
662
|
onBrandVariant: string;
|
|
659
663
|
aiGradientFrom: string;
|
|
660
664
|
aiGradientTo: string;
|
|
665
|
+
accessible: string;
|
|
661
666
|
fixed: {
|
|
662
667
|
brand: string;
|
|
663
668
|
dark: string;
|
|
@@ -666,6 +671,7 @@ export declare const TextBullet: import("styled-components").StyledComponent<typ
|
|
|
666
671
|
bright: string;
|
|
667
672
|
onBrand: string;
|
|
668
673
|
onBrandVariant: string;
|
|
674
|
+
accessible: string;
|
|
669
675
|
};
|
|
670
676
|
};
|
|
671
677
|
outline: {
|
|
@@ -1191,6 +1197,7 @@ export declare const FlexRow: import("styled-components").StyledComponent<typeof
|
|
|
1191
1197
|
"30": string;
|
|
1192
1198
|
"40": string;
|
|
1193
1199
|
"50": string;
|
|
1200
|
+
"55": string;
|
|
1194
1201
|
"56": string;
|
|
1195
1202
|
"60": string;
|
|
1196
1203
|
"70": string;
|
|
@@ -1233,6 +1240,7 @@ export declare const FlexRow: import("styled-components").StyledComponent<typeof
|
|
|
1233
1240
|
onBrandVariant: string;
|
|
1234
1241
|
aiGradientFrom: string;
|
|
1235
1242
|
aiGradientTo: string;
|
|
1243
|
+
accessible: string;
|
|
1236
1244
|
fixed: {
|
|
1237
1245
|
brand: string;
|
|
1238
1246
|
dark: string;
|
|
@@ -1241,6 +1249,7 @@ export declare const FlexRow: import("styled-components").StyledComponent<typeof
|
|
|
1241
1249
|
bright: string;
|
|
1242
1250
|
onBrand: string;
|
|
1243
1251
|
onBrandVariant: string;
|
|
1252
|
+
accessible: string;
|
|
1244
1253
|
};
|
|
1245
1254
|
};
|
|
1246
1255
|
outline: {
|
|
@@ -1766,6 +1775,7 @@ export declare const LiContent: import("styled-components").StyledComponent<type
|
|
|
1766
1775
|
"30": string;
|
|
1767
1776
|
"40": string;
|
|
1768
1777
|
"50": string;
|
|
1778
|
+
"55": string;
|
|
1769
1779
|
"56": string;
|
|
1770
1780
|
"60": string;
|
|
1771
1781
|
"70": string;
|
|
@@ -1808,6 +1818,7 @@ export declare const LiContent: import("styled-components").StyledComponent<type
|
|
|
1808
1818
|
onBrandVariant: string;
|
|
1809
1819
|
aiGradientFrom: string;
|
|
1810
1820
|
aiGradientTo: string;
|
|
1821
|
+
accessible: string;
|
|
1811
1822
|
fixed: {
|
|
1812
1823
|
brand: string;
|
|
1813
1824
|
dark: string;
|
|
@@ -1816,6 +1827,7 @@ export declare const LiContent: import("styled-components").StyledComponent<type
|
|
|
1816
1827
|
bright: string;
|
|
1817
1828
|
onBrand: string;
|
|
1818
1829
|
onBrandVariant: string;
|
|
1830
|
+
accessible: string;
|
|
1819
1831
|
};
|
|
1820
1832
|
};
|
|
1821
1833
|
outline: {
|
|
@@ -50,6 +50,7 @@ declare const StyledMargin: import("styled-components").StyledComponent<typeof i
|
|
|
50
50
|
"30": string;
|
|
51
51
|
"40": string;
|
|
52
52
|
"50": string;
|
|
53
|
+
"55": string;
|
|
53
54
|
"56": string;
|
|
54
55
|
"60": string;
|
|
55
56
|
"70": string;
|
|
@@ -92,6 +93,7 @@ declare const StyledMargin: import("styled-components").StyledComponent<typeof i
|
|
|
92
93
|
onBrandVariant: string;
|
|
93
94
|
aiGradientFrom: string;
|
|
94
95
|
aiGradientTo: string;
|
|
96
|
+
accessible: string;
|
|
95
97
|
fixed: {
|
|
96
98
|
brand: string;
|
|
97
99
|
dark: string;
|
|
@@ -100,6 +102,7 @@ declare const StyledMargin: import("styled-components").StyledComponent<typeof i
|
|
|
100
102
|
bright: string;
|
|
101
103
|
onBrand: string;
|
|
102
104
|
onBrandVariant: string;
|
|
105
|
+
accessible: string;
|
|
103
106
|
};
|
|
104
107
|
};
|
|
105
108
|
outline: {
|
|
@@ -39,6 +39,7 @@ export declare const ShadowContainer: import("styled-components").StyledComponen
|
|
|
39
39
|
"30": string;
|
|
40
40
|
"40": string;
|
|
41
41
|
"50": string;
|
|
42
|
+
"55": string;
|
|
42
43
|
"56": string;
|
|
43
44
|
"60": string;
|
|
44
45
|
"70": string;
|
|
@@ -81,6 +82,7 @@ export declare const ShadowContainer: import("styled-components").StyledComponen
|
|
|
81
82
|
onBrandVariant: string;
|
|
82
83
|
aiGradientFrom: string;
|
|
83
84
|
aiGradientTo: string;
|
|
85
|
+
accessible: string;
|
|
84
86
|
fixed: {
|
|
85
87
|
brand: string;
|
|
86
88
|
dark: string;
|
|
@@ -89,6 +91,7 @@ export declare const ShadowContainer: import("styled-components").StyledComponen
|
|
|
89
91
|
bright: string;
|
|
90
92
|
onBrand: string;
|
|
91
93
|
onBrandVariant: string;
|
|
94
|
+
accessible: string;
|
|
92
95
|
};
|
|
93
96
|
};
|
|
94
97
|
outline: {
|
|
@@ -614,6 +617,7 @@ export declare const NavContainer: import("styled-components").StyledComponent<i
|
|
|
614
617
|
"30": string;
|
|
615
618
|
"40": string;
|
|
616
619
|
"50": string;
|
|
620
|
+
"55": string;
|
|
617
621
|
"56": string;
|
|
618
622
|
"60": string;
|
|
619
623
|
"70": string;
|
|
@@ -656,6 +660,7 @@ export declare const NavContainer: import("styled-components").StyledComponent<i
|
|
|
656
660
|
onBrandVariant: string;
|
|
657
661
|
aiGradientFrom: string;
|
|
658
662
|
aiGradientTo: string;
|
|
663
|
+
accessible: string;
|
|
659
664
|
fixed: {
|
|
660
665
|
brand: string;
|
|
661
666
|
dark: string;
|
|
@@ -664,6 +669,7 @@ export declare const NavContainer: import("styled-components").StyledComponent<i
|
|
|
664
669
|
bright: string;
|
|
665
670
|
onBrand: string;
|
|
666
671
|
onBrandVariant: string;
|
|
672
|
+
accessible: string;
|
|
667
673
|
};
|
|
668
674
|
};
|
|
669
675
|
outline: {
|
|
@@ -1193,6 +1199,7 @@ export declare const HeaderContainer: import("styled-components").StyledComponen
|
|
|
1193
1199
|
"30": string;
|
|
1194
1200
|
"40": string;
|
|
1195
1201
|
"50": string;
|
|
1202
|
+
"55": string;
|
|
1196
1203
|
"56": string;
|
|
1197
1204
|
"60": string;
|
|
1198
1205
|
"70": string;
|
|
@@ -1235,6 +1242,7 @@ export declare const HeaderContainer: import("styled-components").StyledComponen
|
|
|
1235
1242
|
onBrandVariant: string;
|
|
1236
1243
|
aiGradientFrom: string;
|
|
1237
1244
|
aiGradientTo: string;
|
|
1245
|
+
accessible: string;
|
|
1238
1246
|
fixed: {
|
|
1239
1247
|
brand: string;
|
|
1240
1248
|
dark: string;
|
|
@@ -1243,6 +1251,7 @@ export declare const HeaderContainer: import("styled-components").StyledComponen
|
|
|
1243
1251
|
bright: string;
|
|
1244
1252
|
onBrand: string;
|
|
1245
1253
|
onBrandVariant: string;
|
|
1254
|
+
accessible: string;
|
|
1246
1255
|
};
|
|
1247
1256
|
};
|
|
1248
1257
|
outline: {
|
|
@@ -1771,6 +1780,7 @@ export declare const SkeletonNavHeading: import("styled-components").StyledCompo
|
|
|
1771
1780
|
"30": string;
|
|
1772
1781
|
"40": string;
|
|
1773
1782
|
"50": string;
|
|
1783
|
+
"55": string;
|
|
1774
1784
|
"56": string;
|
|
1775
1785
|
"60": string;
|
|
1776
1786
|
"70": string;
|
|
@@ -1813,6 +1823,7 @@ export declare const SkeletonNavHeading: import("styled-components").StyledCompo
|
|
|
1813
1823
|
onBrandVariant: string;
|
|
1814
1824
|
aiGradientFrom: string;
|
|
1815
1825
|
aiGradientTo: string;
|
|
1826
|
+
accessible: string;
|
|
1816
1827
|
fixed: {
|
|
1817
1828
|
brand: string;
|
|
1818
1829
|
dark: string;
|
|
@@ -1821,6 +1832,7 @@ export declare const SkeletonNavHeading: import("styled-components").StyledCompo
|
|
|
1821
1832
|
bright: string;
|
|
1822
1833
|
onBrand: string;
|
|
1823
1834
|
onBrandVariant: string;
|
|
1835
|
+
accessible: string;
|
|
1824
1836
|
};
|
|
1825
1837
|
};
|
|
1826
1838
|
outline: {
|
|
@@ -2348,6 +2360,7 @@ export declare const SkeletonNavButton: import("styled-components").StyledCompon
|
|
|
2348
2360
|
"30": string;
|
|
2349
2361
|
"40": string;
|
|
2350
2362
|
"50": string;
|
|
2363
|
+
"55": string;
|
|
2351
2364
|
"56": string;
|
|
2352
2365
|
"60": string;
|
|
2353
2366
|
"70": string;
|
|
@@ -2390,6 +2403,7 @@ export declare const SkeletonNavButton: import("styled-components").StyledCompon
|
|
|
2390
2403
|
onBrandVariant: string;
|
|
2391
2404
|
aiGradientFrom: string;
|
|
2392
2405
|
aiGradientTo: string;
|
|
2406
|
+
accessible: string;
|
|
2393
2407
|
fixed: {
|
|
2394
2408
|
brand: string;
|
|
2395
2409
|
dark: string;
|
|
@@ -2398,6 +2412,7 @@ export declare const SkeletonNavButton: import("styled-components").StyledCompon
|
|
|
2398
2412
|
bright: string;
|
|
2399
2413
|
onBrand: string;
|
|
2400
2414
|
onBrandVariant: string;
|
|
2415
|
+
accessible: string;
|
|
2401
2416
|
};
|
|
2402
2417
|
};
|
|
2403
2418
|
outline: {
|
|
@@ -2923,6 +2938,7 @@ export declare const SideContainer: import("styled-components").StyledComponent<
|
|
|
2923
2938
|
"30": string;
|
|
2924
2939
|
"40": string;
|
|
2925
2940
|
"50": string;
|
|
2941
|
+
"55": string;
|
|
2926
2942
|
"56": string;
|
|
2927
2943
|
"60": string;
|
|
2928
2944
|
"70": string;
|
|
@@ -2965,6 +2981,7 @@ export declare const SideContainer: import("styled-components").StyledComponent<
|
|
|
2965
2981
|
onBrandVariant: string;
|
|
2966
2982
|
aiGradientFrom: string;
|
|
2967
2983
|
aiGradientTo: string;
|
|
2984
|
+
accessible: string;
|
|
2968
2985
|
fixed: {
|
|
2969
2986
|
brand: string;
|
|
2970
2987
|
dark: string;
|
|
@@ -2973,6 +2990,7 @@ export declare const SideContainer: import("styled-components").StyledComponent<
|
|
|
2973
2990
|
bright: string;
|
|
2974
2991
|
onBrand: string;
|
|
2975
2992
|
onBrandVariant: string;
|
|
2993
|
+
accessible: string;
|
|
2976
2994
|
};
|
|
2977
2995
|
};
|
|
2978
2996
|
outline: {
|
|
@@ -3501,6 +3519,7 @@ export declare const TitleContainer: import("styled-components").StyledComponent
|
|
|
3501
3519
|
"30": string;
|
|
3502
3520
|
"40": string;
|
|
3503
3521
|
"50": string;
|
|
3522
|
+
"55": string;
|
|
3504
3523
|
"56": string;
|
|
3505
3524
|
"60": string;
|
|
3506
3525
|
"70": string;
|
|
@@ -3543,6 +3562,7 @@ export declare const TitleContainer: import("styled-components").StyledComponent
|
|
|
3543
3562
|
onBrandVariant: string;
|
|
3544
3563
|
aiGradientFrom: string;
|
|
3545
3564
|
aiGradientTo: string;
|
|
3565
|
+
accessible: string;
|
|
3546
3566
|
fixed: {
|
|
3547
3567
|
brand: string;
|
|
3548
3568
|
dark: string;
|
|
@@ -3551,6 +3571,7 @@ export declare const TitleContainer: import("styled-components").StyledComponent
|
|
|
3551
3571
|
bright: string;
|
|
3552
3572
|
onBrand: string;
|
|
3553
3573
|
onBrandVariant: string;
|
|
3574
|
+
accessible: string;
|
|
3554
3575
|
};
|
|
3555
3576
|
};
|
|
3556
3577
|
outline: {
|
|
@@ -4079,6 +4100,7 @@ export declare const StepCounterBar: import("styled-components").StyledComponent
|
|
|
4079
4100
|
"30": string;
|
|
4080
4101
|
"40": string;
|
|
4081
4102
|
"50": string;
|
|
4103
|
+
"55": string;
|
|
4082
4104
|
"56": string;
|
|
4083
4105
|
"60": string;
|
|
4084
4106
|
"70": string;
|
|
@@ -4121,6 +4143,7 @@ export declare const StepCounterBar: import("styled-components").StyledComponent
|
|
|
4121
4143
|
onBrandVariant: string;
|
|
4122
4144
|
aiGradientFrom: string;
|
|
4123
4145
|
aiGradientTo: string;
|
|
4146
|
+
accessible: string;
|
|
4124
4147
|
fixed: {
|
|
4125
4148
|
brand: string;
|
|
4126
4149
|
dark: string;
|
|
@@ -4129,6 +4152,7 @@ export declare const StepCounterBar: import("styled-components").StyledComponent
|
|
|
4129
4152
|
bright: string;
|
|
4130
4153
|
onBrand: string;
|
|
4131
4154
|
onBrandVariant: string;
|
|
4155
|
+
accessible: string;
|
|
4132
4156
|
};
|
|
4133
4157
|
};
|
|
4134
4158
|
outline: {
|
|
@@ -4659,6 +4683,7 @@ export declare const SkeletonStepCounterBar: import("styled-components").StyledC
|
|
|
4659
4683
|
"30": string;
|
|
4660
4684
|
"40": string;
|
|
4661
4685
|
"50": string;
|
|
4686
|
+
"55": string;
|
|
4662
4687
|
"56": string;
|
|
4663
4688
|
"60": string;
|
|
4664
4689
|
"70": string;
|
|
@@ -4701,6 +4726,7 @@ export declare const SkeletonStepCounterBar: import("styled-components").StyledC
|
|
|
4701
4726
|
onBrandVariant: string;
|
|
4702
4727
|
aiGradientFrom: string;
|
|
4703
4728
|
aiGradientTo: string;
|
|
4729
|
+
accessible: string;
|
|
4704
4730
|
fixed: {
|
|
4705
4731
|
brand: string;
|
|
4706
4732
|
dark: string;
|
|
@@ -4709,6 +4735,7 @@ export declare const SkeletonStepCounterBar: import("styled-components").StyledC
|
|
|
4709
4735
|
bright: string;
|
|
4710
4736
|
onBrand: string;
|
|
4711
4737
|
onBrandVariant: string;
|
|
4738
|
+
accessible: string;
|
|
4712
4739
|
};
|
|
4713
4740
|
};
|
|
4714
4741
|
outline: {
|
|
@@ -5234,6 +5261,7 @@ export declare const StepCounterContainer: import("styled-components").StyledCom
|
|
|
5234
5261
|
"30": string;
|
|
5235
5262
|
"40": string;
|
|
5236
5263
|
"50": string;
|
|
5264
|
+
"55": string;
|
|
5237
5265
|
"56": string;
|
|
5238
5266
|
"60": string;
|
|
5239
5267
|
"70": string;
|
|
@@ -5276,6 +5304,7 @@ export declare const StepCounterContainer: import("styled-components").StyledCom
|
|
|
5276
5304
|
onBrandVariant: string;
|
|
5277
5305
|
aiGradientFrom: string;
|
|
5278
5306
|
aiGradientTo: string;
|
|
5307
|
+
accessible: string;
|
|
5279
5308
|
fixed: {
|
|
5280
5309
|
brand: string;
|
|
5281
5310
|
dark: string;
|
|
@@ -5284,6 +5313,7 @@ export declare const StepCounterContainer: import("styled-components").StyledCom
|
|
|
5284
5313
|
bright: string;
|
|
5285
5314
|
onBrand: string;
|
|
5286
5315
|
onBrandVariant: string;
|
|
5316
|
+
accessible: string;
|
|
5287
5317
|
};
|
|
5288
5318
|
};
|
|
5289
5319
|
outline: {
|
|
@@ -5809,6 +5839,7 @@ export declare const NavBackButton: import("styled-components").StyledComponent<
|
|
|
5809
5839
|
"30": string;
|
|
5810
5840
|
"40": string;
|
|
5811
5841
|
"50": string;
|
|
5842
|
+
"55": string;
|
|
5812
5843
|
"56": string;
|
|
5813
5844
|
"60": string;
|
|
5814
5845
|
"70": string;
|
|
@@ -5851,6 +5882,7 @@ export declare const NavBackButton: import("styled-components").StyledComponent<
|
|
|
5851
5882
|
onBrandVariant: string;
|
|
5852
5883
|
aiGradientFrom: string;
|
|
5853
5884
|
aiGradientTo: string;
|
|
5885
|
+
accessible: string;
|
|
5854
5886
|
fixed: {
|
|
5855
5887
|
brand: string;
|
|
5856
5888
|
dark: string;
|
|
@@ -5859,6 +5891,7 @@ export declare const NavBackButton: import("styled-components").StyledComponent<
|
|
|
5859
5891
|
bright: string;
|
|
5860
5892
|
onBrand: string;
|
|
5861
5893
|
onBrandVariant: string;
|
|
5894
|
+
accessible: string;
|
|
5862
5895
|
};
|
|
5863
5896
|
};
|
|
5864
5897
|
outline: {
|
|
@@ -39,6 +39,7 @@ export declare const NotificationShadow: import("styled-components").StyledCompo
|
|
|
39
39
|
"30": string;
|
|
40
40
|
"40": string;
|
|
41
41
|
"50": string;
|
|
42
|
+
"55": string;
|
|
42
43
|
"56": string;
|
|
43
44
|
"60": string;
|
|
44
45
|
"70": string;
|
|
@@ -81,6 +82,7 @@ export declare const NotificationShadow: import("styled-components").StyledCompo
|
|
|
81
82
|
onBrandVariant: string;
|
|
82
83
|
aiGradientFrom: string;
|
|
83
84
|
aiGradientTo: string;
|
|
85
|
+
accessible: string;
|
|
84
86
|
fixed: {
|
|
85
87
|
brand: string;
|
|
86
88
|
dark: string;
|
|
@@ -89,6 +91,7 @@ export declare const NotificationShadow: import("styled-components").StyledCompo
|
|
|
89
91
|
bright: string;
|
|
90
92
|
onBrand: string;
|
|
91
93
|
onBrandVariant: string;
|
|
94
|
+
accessible: string;
|
|
92
95
|
};
|
|
93
96
|
};
|
|
94
97
|
outline: {
|
|
@@ -614,6 +617,7 @@ export declare const NotificationBox: import("styled-components").StyledComponen
|
|
|
614
617
|
"30": string;
|
|
615
618
|
"40": string;
|
|
616
619
|
"50": string;
|
|
620
|
+
"55": string;
|
|
617
621
|
"56": string;
|
|
618
622
|
"60": string;
|
|
619
623
|
"70": string;
|
|
@@ -656,6 +660,7 @@ export declare const NotificationBox: import("styled-components").StyledComponen
|
|
|
656
660
|
onBrandVariant: string;
|
|
657
661
|
aiGradientFrom: string;
|
|
658
662
|
aiGradientTo: string;
|
|
663
|
+
accessible: string;
|
|
659
664
|
fixed: {
|
|
660
665
|
brand: string;
|
|
661
666
|
dark: string;
|
|
@@ -664,6 +669,7 @@ export declare const NotificationBox: import("styled-components").StyledComponen
|
|
|
664
669
|
bright: string;
|
|
665
670
|
onBrand: string;
|
|
666
671
|
onBrandVariant: string;
|
|
672
|
+
accessible: string;
|
|
667
673
|
};
|
|
668
674
|
};
|
|
669
675
|
outline: {
|
|
@@ -1191,6 +1197,7 @@ export declare const NotificationContentBox: import("styled-components").StyledC
|
|
|
1191
1197
|
"30": string;
|
|
1192
1198
|
"40": string;
|
|
1193
1199
|
"50": string;
|
|
1200
|
+
"55": string;
|
|
1194
1201
|
"56": string;
|
|
1195
1202
|
"60": string;
|
|
1196
1203
|
"70": string;
|
|
@@ -1233,6 +1240,7 @@ export declare const NotificationContentBox: import("styled-components").StyledC
|
|
|
1233
1240
|
onBrandVariant: string;
|
|
1234
1241
|
aiGradientFrom: string;
|
|
1235
1242
|
aiGradientTo: string;
|
|
1243
|
+
accessible: string;
|
|
1236
1244
|
fixed: {
|
|
1237
1245
|
brand: string;
|
|
1238
1246
|
dark: string;
|
|
@@ -1241,6 +1249,7 @@ export declare const NotificationContentBox: import("styled-components").StyledC
|
|
|
1241
1249
|
bright: string;
|
|
1242
1250
|
onBrand: string;
|
|
1243
1251
|
onBrandVariant: string;
|
|
1252
|
+
accessible: string;
|
|
1244
1253
|
};
|
|
1245
1254
|
};
|
|
1246
1255
|
outline: {
|
|
@@ -1766,6 +1775,7 @@ export declare const DismissButton: import("styled-components").StyledComponent<
|
|
|
1766
1775
|
"30": string;
|
|
1767
1776
|
"40": string;
|
|
1768
1777
|
"50": string;
|
|
1778
|
+
"55": string;
|
|
1769
1779
|
"56": string;
|
|
1770
1780
|
"60": string;
|
|
1771
1781
|
"70": string;
|
|
@@ -1808,6 +1818,7 @@ export declare const DismissButton: import("styled-components").StyledComponent<
|
|
|
1808
1818
|
onBrandVariant: string;
|
|
1809
1819
|
aiGradientFrom: string;
|
|
1810
1820
|
aiGradientTo: string;
|
|
1821
|
+
accessible: string;
|
|
1811
1822
|
fixed: {
|
|
1812
1823
|
brand: string;
|
|
1813
1824
|
dark: string;
|
|
@@ -1816,6 +1827,7 @@ export declare const DismissButton: import("styled-components").StyledComponent<
|
|
|
1816
1827
|
bright: string;
|
|
1817
1828
|
onBrand: string;
|
|
1818
1829
|
onBrandVariant: string;
|
|
1830
|
+
accessible: string;
|
|
1819
1831
|
};
|
|
1820
1832
|
};
|
|
1821
1833
|
outline: {
|
|
@@ -2341,6 +2353,7 @@ export declare const StyledIcon: import("styled-components").StyledComponent<({
|
|
|
2341
2353
|
"30": string;
|
|
2342
2354
|
"40": string;
|
|
2343
2355
|
"50": string;
|
|
2356
|
+
"55": string;
|
|
2344
2357
|
"56": string;
|
|
2345
2358
|
"60": string;
|
|
2346
2359
|
"70": string;
|
|
@@ -2383,6 +2396,7 @@ export declare const StyledIcon: import("styled-components").StyledComponent<({
|
|
|
2383
2396
|
onBrandVariant: string;
|
|
2384
2397
|
aiGradientFrom: string;
|
|
2385
2398
|
aiGradientTo: string;
|
|
2399
|
+
accessible: string;
|
|
2386
2400
|
fixed: {
|
|
2387
2401
|
brand: string;
|
|
2388
2402
|
dark: string;
|
|
@@ -2391,6 +2405,7 @@ export declare const StyledIcon: import("styled-components").StyledComponent<({
|
|
|
2391
2405
|
bright: string;
|
|
2392
2406
|
onBrand: string;
|
|
2393
2407
|
onBrandVariant: string;
|
|
2408
|
+
accessible: string;
|
|
2394
2409
|
};
|
|
2395
2410
|
};
|
|
2396
2411
|
outline: {
|
|
@@ -2918,6 +2933,7 @@ export declare const VariantIconBackground: import("styled-components").StyledCo
|
|
|
2918
2933
|
"30": string;
|
|
2919
2934
|
"40": string;
|
|
2920
2935
|
"50": string;
|
|
2936
|
+
"55": string;
|
|
2921
2937
|
"56": string;
|
|
2922
2938
|
"60": string;
|
|
2923
2939
|
"70": string;
|
|
@@ -2960,6 +2976,7 @@ export declare const VariantIconBackground: import("styled-components").StyledCo
|
|
|
2960
2976
|
onBrandVariant: string;
|
|
2961
2977
|
aiGradientFrom: string;
|
|
2962
2978
|
aiGradientTo: string;
|
|
2979
|
+
accessible: string;
|
|
2963
2980
|
fixed: {
|
|
2964
2981
|
brand: string;
|
|
2965
2982
|
dark: string;
|
|
@@ -2968,6 +2985,7 @@ export declare const VariantIconBackground: import("styled-components").StyledCo
|
|
|
2968
2985
|
bright: string;
|
|
2969
2986
|
onBrand: string;
|
|
2970
2987
|
onBrandVariant: string;
|
|
2988
|
+
accessible: string;
|
|
2971
2989
|
};
|
|
2972
2990
|
};
|
|
2973
2991
|
outline: {
|
|
@@ -3495,6 +3513,7 @@ export declare const VariantIconContainer: import("styled-components").StyledCom
|
|
|
3495
3513
|
"30": string;
|
|
3496
3514
|
"40": string;
|
|
3497
3515
|
"50": string;
|
|
3516
|
+
"55": string;
|
|
3498
3517
|
"56": string;
|
|
3499
3518
|
"60": string;
|
|
3500
3519
|
"70": string;
|
|
@@ -3537,6 +3556,7 @@ export declare const VariantIconContainer: import("styled-components").StyledCom
|
|
|
3537
3556
|
onBrandVariant: string;
|
|
3538
3557
|
aiGradientFrom: string;
|
|
3539
3558
|
aiGradientTo: string;
|
|
3559
|
+
accessible: string;
|
|
3540
3560
|
fixed: {
|
|
3541
3561
|
brand: string;
|
|
3542
3562
|
dark: string;
|
|
@@ -3545,6 +3565,7 @@ export declare const VariantIconContainer: import("styled-components").StyledCom
|
|
|
3545
3565
|
bright: string;
|
|
3546
3566
|
onBrand: string;
|
|
3547
3567
|
onBrandVariant: string;
|
|
3568
|
+
accessible: string;
|
|
3548
3569
|
};
|
|
3549
3570
|
};
|
|
3550
3571
|
outline: {
|
|
@@ -4070,6 +4091,7 @@ export declare const ContentContainer: import("styled-components").StyledCompone
|
|
|
4070
4091
|
"30": string;
|
|
4071
4092
|
"40": string;
|
|
4072
4093
|
"50": string;
|
|
4094
|
+
"55": string;
|
|
4073
4095
|
"56": string;
|
|
4074
4096
|
"60": string;
|
|
4075
4097
|
"70": string;
|
|
@@ -4112,6 +4134,7 @@ export declare const ContentContainer: import("styled-components").StyledCompone
|
|
|
4112
4134
|
onBrandVariant: string;
|
|
4113
4135
|
aiGradientFrom: string;
|
|
4114
4136
|
aiGradientTo: string;
|
|
4137
|
+
accessible: string;
|
|
4115
4138
|
fixed: {
|
|
4116
4139
|
brand: string;
|
|
4117
4140
|
dark: string;
|
|
@@ -4120,6 +4143,7 @@ export declare const ContentContainer: import("styled-components").StyledCompone
|
|
|
4120
4143
|
bright: string;
|
|
4121
4144
|
onBrand: string;
|
|
4122
4145
|
onBrandVariant: string;
|
|
4146
|
+
accessible: string;
|
|
4123
4147
|
};
|
|
4124
4148
|
};
|
|
4125
4149
|
outline: {
|
|
@@ -4645,6 +4669,7 @@ export declare const TitleContainer: import("styled-components").StyledComponent
|
|
|
4645
4669
|
"30": string;
|
|
4646
4670
|
"40": string;
|
|
4647
4671
|
"50": string;
|
|
4672
|
+
"55": string;
|
|
4648
4673
|
"56": string;
|
|
4649
4674
|
"60": string;
|
|
4650
4675
|
"70": string;
|
|
@@ -4687,6 +4712,7 @@ export declare const TitleContainer: import("styled-components").StyledComponent
|
|
|
4687
4712
|
onBrandVariant: string;
|
|
4688
4713
|
aiGradientFrom: string;
|
|
4689
4714
|
aiGradientTo: string;
|
|
4715
|
+
accessible: string;
|
|
4690
4716
|
fixed: {
|
|
4691
4717
|
brand: string;
|
|
4692
4718
|
dark: string;
|
|
@@ -4695,6 +4721,7 @@ export declare const TitleContainer: import("styled-components").StyledComponent
|
|
|
4695
4721
|
bright: string;
|
|
4696
4722
|
onBrand: string;
|
|
4697
4723
|
onBrandVariant: string;
|
|
4724
|
+
accessible: string;
|
|
4698
4725
|
};
|
|
4699
4726
|
};
|
|
4700
4727
|
outline: {
|
|
@@ -37,6 +37,7 @@ export declare const StyledPressable: import("styled-components").StyledComponen
|
|
|
37
37
|
"30": string;
|
|
38
38
|
"40": string;
|
|
39
39
|
"50": string;
|
|
40
|
+
"55": string;
|
|
40
41
|
"56": string;
|
|
41
42
|
"60": string;
|
|
42
43
|
"70": string;
|
|
@@ -79,6 +80,7 @@ export declare const StyledPressable: import("styled-components").StyledComponen
|
|
|
79
80
|
onBrandVariant: string;
|
|
80
81
|
aiGradientFrom: string;
|
|
81
82
|
aiGradientTo: string;
|
|
83
|
+
accessible: string;
|
|
82
84
|
fixed: {
|
|
83
85
|
brand: string;
|
|
84
86
|
dark: string;
|
|
@@ -87,6 +89,7 @@ export declare const StyledPressable: import("styled-components").StyledComponen
|
|
|
87
89
|
bright: string;
|
|
88
90
|
onBrand: string;
|
|
89
91
|
onBrandVariant: string;
|
|
92
|
+
accessible: string;
|
|
90
93
|
};
|
|
91
94
|
};
|
|
92
95
|
outline: {
|
|
@@ -572,6 +575,4 @@ export declare const StyledPressable: import("styled-components").StyledComponen
|
|
|
572
575
|
selectedTint: string;
|
|
573
576
|
};
|
|
574
577
|
};
|
|
575
|
-
}, {
|
|
576
|
-
focused: boolean;
|
|
577
|
-
}, never>;
|
|
578
|
+
}, {}, never>;
|
|
@@ -37,14 +37,16 @@ exports.StyledPressable = void 0;
|
|
|
37
37
|
const element_core_1 = require("@ovotech/element-core");
|
|
38
38
|
const react_native_1 = require("react-native");
|
|
39
39
|
const styled_native_1 = __importStar(require("../../styled.native"));
|
|
40
|
-
|
|
40
|
+
const styled_1 = require("../Input/styled");
|
|
41
|
+
exports.StyledPressable = (0, styled_native_1.default)(react_native_1.Pressable)(({ theme }) => {
|
|
41
42
|
return (0, styled_native_1.css) `
|
|
42
43
|
display: flex;
|
|
43
44
|
align-items: center;
|
|
44
45
|
position: absolute;
|
|
45
46
|
width: ${(0, element_core_1.numToPx)(theme.space[400])};
|
|
46
47
|
z-index: 1;
|
|
47
|
-
top:
|
|
48
|
-
|
|
48
|
+
top: 50%;
|
|
49
|
+
margin-top: -${(0, element_core_1.numToPx)(styled_1.ICON_SIZE / 2)};
|
|
50
|
+
right: ${(0, element_core_1.numToPx)(theme.space[400])};
|
|
49
51
|
`;
|
|
50
52
|
});
|