@ovotech/element-native 3.7.0 → 3.8.0-canary-9bfdab2-202
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 +33 -6
- package/dist/components/ActionCard/ActionCard.js +1 -1
- package/dist/components/ActionList/ActionList.d.ts +1 -1
- package/dist/components/ActionList/ActionList.js +2 -1
- package/dist/components/ActionList/styled.d.ts +66 -12
- package/dist/components/Badge/Badge.d.ts +12 -3
- package/dist/components/Card/Card.d.ts +14 -3
- package/dist/components/Card/Card.js +2 -4
- package/dist/components/DataTable/styles.d.ts +143 -26
- package/dist/components/DescriptionList/styled.d.ts +11 -2
- package/dist/components/Em/Em.d.ts +11 -2
- package/dist/components/ErrorText/ErrorText.d.ts +11 -2
- package/dist/components/Grid/Col.d.ts +11 -2
- package/dist/components/Grid/Row.d.ts +11 -2
- package/dist/components/Heading1/Heading1.d.ts +3 -1
- package/dist/components/Heading1/Heading1.js +4 -2
- package/dist/components/Heading2/Heading2.d.ts +3 -1
- package/dist/components/Heading2/Heading2.js +4 -2
- package/dist/components/Heading3/Heading3.d.ts +3 -1
- package/dist/components/Heading3/Heading3.js +4 -2
- package/dist/components/Heading4/Heading4.d.ts +3 -1
- package/dist/components/Heading4/Heading4.js +4 -2
- package/dist/components/HintText/HintText.d.ts +11 -2
- package/dist/components/HorizontalCarousel/HorizontalCarousel.d.ts +13 -0
- package/dist/components/HorizontalCarousel/HorizontalCarousel.js +92 -0
- package/dist/components/HorizontalCarousel/NavigationDots.d.ts +5 -0
- package/dist/components/HorizontalCarousel/NavigationDots.js +88 -0
- package/dist/components/HorizontalCarousel/index.d.ts +1 -0
- package/dist/components/HorizontalCarousel/index.js +17 -0
- package/dist/components/Label/Label.d.ts +5 -241
- package/dist/components/Label/Label.js +16 -4
- package/dist/components/LabelText/LabelText.d.ts +11 -2
- package/dist/components/Lead/Lead.d.ts +5 -241
- package/dist/components/Lead/Lead.js +18 -4
- package/dist/components/LineThrough/LineThrough.d.ts +11 -2
- package/dist/components/List/styled.d.ts +44 -8
- package/dist/components/Margin/Margin.d.ts +11 -2
- package/dist/components/NavHeader/NavHeader.styles.d.ts +88 -16
- package/dist/components/Notification/Notification.d.ts +23 -5
- package/dist/components/Notification/Notification.js +14 -14
- package/dist/components/P/P.d.ts +2 -0
- package/dist/components/P/P.js +2 -2
- package/dist/components/PasswordInput/PasswordInput.styled.d.ts +11 -2
- package/dist/components/SelectField/Select.d.ts +11 -2
- package/dist/components/Small/Small.d.ts +11 -2
- package/dist/components/Strong/Strong.d.ts +11 -2
- package/dist/components/SubLabelText/SubLabelText.d.ts +11 -2
- package/dist/components/Tabs/Tab.js +6 -6
- package/dist/components/Toggle/styles.d.ts +44 -8
- package/dist/esm/components/ActionCard/ActionCard.js +1 -1
- package/dist/esm/components/ActionList/ActionList.js +2 -1
- package/dist/esm/components/Card/Card.js +2 -4
- package/dist/esm/components/Heading1/Heading1.js +4 -2
- package/dist/esm/components/Heading2/Heading2.js +4 -2
- package/dist/esm/components/Heading3/Heading3.js +4 -2
- package/dist/esm/components/Heading4/Heading4.js +4 -2
- package/dist/esm/components/HorizontalCarousel/HorizontalCarousel.js +62 -0
- package/dist/esm/components/HorizontalCarousel/NavigationDots.js +61 -0
- package/dist/esm/components/HorizontalCarousel/index.js +1 -0
- package/dist/esm/components/Label/Label.js +16 -4
- package/dist/esm/components/Lead/Lead.js +18 -4
- package/dist/esm/components/Notification/Notification.js +14 -14
- package/dist/esm/components/P/P.js +2 -2
- package/dist/esm/components/Tabs/Tab.js +7 -7
- package/dist/esm/index.js +1 -0
- package/dist/esm/theme/index.js +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/styled.native.d.ts +66 -12
- package/dist/theme/index.d.ts +1 -0
- package/dist/theme/index.js +17 -0
- package/package.json +4 -3
|
@@ -1,243 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import {
|
|
3
|
-
export declare const Lead: import("react").ForwardRefExoticComponent<
|
|
4
|
-
|
|
5
|
-
[x: number]: any;
|
|
6
|
-
[x: symbol]: any;
|
|
2
|
+
import { TextProps } from 'react-native';
|
|
3
|
+
export declare const Lead: import("react").ForwardRefExoticComponent<TextProps & {
|
|
4
|
+
inverted?: boolean | undefined;
|
|
7
5
|
} & {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
radius: Record<"small" | "medium" | "large" | "max", string>;
|
|
11
|
-
borderWidth: Record<"small" | "medium" | "large", string>;
|
|
12
|
-
breakpoint: Record<"small" | "medium" | "large", string | number>;
|
|
13
|
-
mediaQuery: Record<"small" | "medium" | "large", string>;
|
|
14
|
-
space: Record<0 | 2 | 1 | 3 | 4 | 5 | 10 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | 14 | 15, string>;
|
|
15
|
-
transition: Record<"medium" | "slow" | "fast", string>;
|
|
16
|
-
opacity: Record<"solid" | "transparent" | "translucent", string | number>;
|
|
17
|
-
color: Record<"neutral" | "red" | "orange" | "yellow" | "green" | "blue", {
|
|
18
|
-
lightest: string;
|
|
19
|
-
lighter: string;
|
|
20
|
-
light: string;
|
|
21
|
-
base: string;
|
|
22
|
-
dark: string;
|
|
23
|
-
darker: string;
|
|
24
|
-
darkest: string;
|
|
25
|
-
}> & {
|
|
26
|
-
brand: Record<string, string>;
|
|
27
|
-
};
|
|
28
|
-
fontFamily: Record<"body" | "mono" | "heading" | "bodyBold", {
|
|
29
|
-
native: string;
|
|
30
|
-
web: string;
|
|
31
|
-
}>;
|
|
32
|
-
fontWeight: Record<"bold" | "book" | "black", string | number>;
|
|
33
|
-
fontSize: Record<"small" | "body" | "label" | "heading1" | "heading2" | "heading3" | "heading4" | "lead", {
|
|
34
|
-
small: string | number;
|
|
35
|
-
large: string | number;
|
|
36
|
-
}>;
|
|
37
|
-
lineHeight: Record<"small" | "body" | "label" | "heading1" | "heading2" | "heading3" | "heading4" | "lead", {
|
|
38
|
-
small: string | number;
|
|
39
|
-
large: string | number;
|
|
40
|
-
}>;
|
|
41
|
-
letterSpacing: Record<"base" | "compressed" | "extraCompressed", number>;
|
|
42
|
-
};
|
|
43
|
-
semantic: {
|
|
44
|
-
surface: Record<"base" | "cutout" | "elevated", string>;
|
|
45
|
-
message: Record<"base" | "link" | "secondary" | "error" | "branded", string>;
|
|
46
|
-
border: Record<"graphic" | "differentiated" | "functional", string>;
|
|
47
|
-
focus: Record<"surface" | "outline" | "hover", string>;
|
|
48
|
-
inverted: Record<"surface" | "border", string> & {
|
|
49
|
-
message: Record<"base" | "link" | "secondary" | "branded", string>;
|
|
50
|
-
};
|
|
51
|
-
success: {
|
|
52
|
-
border: string;
|
|
53
|
-
surface: string;
|
|
54
|
-
surfaceEmphasis: string;
|
|
55
|
-
message: string;
|
|
56
|
-
messageOnEmphasis: string;
|
|
57
|
-
};
|
|
58
|
-
warning: {
|
|
59
|
-
border: string;
|
|
60
|
-
surface: string;
|
|
61
|
-
surfaceEmphasis: string;
|
|
62
|
-
message: string;
|
|
63
|
-
messageOnEmphasis: string;
|
|
64
|
-
};
|
|
65
|
-
error: {
|
|
66
|
-
border: string;
|
|
67
|
-
surface: string;
|
|
68
|
-
surfaceEmphasis: string;
|
|
69
|
-
message: string;
|
|
70
|
-
messageOnEmphasis: string;
|
|
71
|
-
};
|
|
72
|
-
info: {
|
|
73
|
-
border: string;
|
|
74
|
-
surface: string;
|
|
75
|
-
surfaceEmphasis: string;
|
|
76
|
-
message: string;
|
|
77
|
-
messageOnEmphasis: string;
|
|
78
|
-
};
|
|
79
|
-
data: Record<"branded" | "gas" | "electric", Record<2 | 1 | 3 | 4, string>>;
|
|
80
|
-
};
|
|
81
|
-
component: {
|
|
82
|
-
heading1: {
|
|
83
|
-
fontFamily: string;
|
|
84
|
-
fontWeight: string | number;
|
|
85
|
-
fontSize: {
|
|
86
|
-
small: string | number;
|
|
87
|
-
large: string | number;
|
|
88
|
-
};
|
|
89
|
-
lineHeight: {
|
|
90
|
-
small: string | number;
|
|
91
|
-
large: string | number;
|
|
92
|
-
};
|
|
93
|
-
};
|
|
94
|
-
heading2: {
|
|
95
|
-
fontFamily: string;
|
|
96
|
-
fontWeight: string | number;
|
|
97
|
-
fontSize: {
|
|
98
|
-
small: string | number;
|
|
99
|
-
large: string | number;
|
|
100
|
-
};
|
|
101
|
-
lineHeight: {
|
|
102
|
-
small: string | number;
|
|
103
|
-
large: string | number;
|
|
104
|
-
};
|
|
105
|
-
};
|
|
106
|
-
heading3: {
|
|
107
|
-
fontFamily: string;
|
|
108
|
-
fontWeight: string | number;
|
|
109
|
-
fontSize: {
|
|
110
|
-
small: string | number;
|
|
111
|
-
large: string | number;
|
|
112
|
-
};
|
|
113
|
-
lineHeight: {
|
|
114
|
-
small: string | number;
|
|
115
|
-
large: string | number;
|
|
116
|
-
};
|
|
117
|
-
};
|
|
118
|
-
heading4: {
|
|
119
|
-
fontFamily: string;
|
|
120
|
-
fontWeight: string | number;
|
|
121
|
-
fontSize: {
|
|
122
|
-
small: string | number;
|
|
123
|
-
large: string | number;
|
|
124
|
-
};
|
|
125
|
-
lineHeight: {
|
|
126
|
-
small: string | number;
|
|
127
|
-
large: string | number;
|
|
128
|
-
};
|
|
129
|
-
};
|
|
130
|
-
lead: {
|
|
131
|
-
fontFamily: string;
|
|
132
|
-
fontWeight: string | number;
|
|
133
|
-
fontSize: {
|
|
134
|
-
small: string | number;
|
|
135
|
-
large: string | number;
|
|
136
|
-
};
|
|
137
|
-
lineHeight: {
|
|
138
|
-
small: string | number;
|
|
139
|
-
large: string | number;
|
|
140
|
-
};
|
|
141
|
-
};
|
|
142
|
-
body: {
|
|
143
|
-
fontFamily: string;
|
|
144
|
-
fontWeight: string | number;
|
|
145
|
-
fontSize: {
|
|
146
|
-
small: string | number;
|
|
147
|
-
large: string | number;
|
|
148
|
-
};
|
|
149
|
-
lineHeight: {
|
|
150
|
-
small: string | number;
|
|
151
|
-
large: string | number;
|
|
152
|
-
};
|
|
153
|
-
};
|
|
154
|
-
small: {
|
|
155
|
-
fontFamily: string;
|
|
156
|
-
fontWeight: string | number;
|
|
157
|
-
fontSize: {
|
|
158
|
-
small: string | number;
|
|
159
|
-
large: string | number;
|
|
160
|
-
};
|
|
161
|
-
lineHeight: {
|
|
162
|
-
small: string | number;
|
|
163
|
-
large: string | number;
|
|
164
|
-
};
|
|
165
|
-
};
|
|
166
|
-
label: {
|
|
167
|
-
fontFamily: string;
|
|
168
|
-
fontWeight: string | number;
|
|
169
|
-
fontSize: {
|
|
170
|
-
small: string | number;
|
|
171
|
-
large: string | number;
|
|
172
|
-
};
|
|
173
|
-
lineHeight: {
|
|
174
|
-
small: string | number;
|
|
175
|
-
large: string | number;
|
|
176
|
-
};
|
|
177
|
-
};
|
|
178
|
-
cta: {
|
|
179
|
-
primary: {
|
|
180
|
-
message: string;
|
|
181
|
-
surface: string;
|
|
182
|
-
messageHover: string;
|
|
183
|
-
surfaceHover: string;
|
|
184
|
-
messageFocused: string;
|
|
185
|
-
surfaceFocused: string;
|
|
186
|
-
outlineFocused: string;
|
|
187
|
-
backgroundFocused: string;
|
|
188
|
-
};
|
|
189
|
-
secondary: {
|
|
190
|
-
message: string;
|
|
191
|
-
surface: string;
|
|
192
|
-
messageHover: string;
|
|
193
|
-
surfaceHover: string;
|
|
194
|
-
messageFocused: string;
|
|
195
|
-
surfaceFocused: string;
|
|
196
|
-
outlineFocused: string;
|
|
197
|
-
backgroundFocused: string;
|
|
198
|
-
};
|
|
199
|
-
destructive: {
|
|
200
|
-
message: string;
|
|
201
|
-
surface: string;
|
|
202
|
-
messageHover: string;
|
|
203
|
-
surfaceHover: string;
|
|
204
|
-
messageFocused: string;
|
|
205
|
-
surfaceFocused: string;
|
|
206
|
-
outlineFocused: string;
|
|
207
|
-
backgroundFocused: string;
|
|
208
|
-
};
|
|
209
|
-
};
|
|
210
|
-
badge: {
|
|
211
|
-
variants: {
|
|
212
|
-
neutral: {
|
|
213
|
-
foreground: string;
|
|
214
|
-
background: string;
|
|
215
|
-
};
|
|
216
|
-
red: {
|
|
217
|
-
foreground: string;
|
|
218
|
-
background: string;
|
|
219
|
-
};
|
|
220
|
-
orange: {
|
|
221
|
-
foreground: string;
|
|
222
|
-
background: string;
|
|
223
|
-
};
|
|
224
|
-
yellow: {
|
|
225
|
-
foreground: string;
|
|
226
|
-
background: string;
|
|
227
|
-
};
|
|
228
|
-
green: {
|
|
229
|
-
foreground: string;
|
|
230
|
-
background: string;
|
|
231
|
-
};
|
|
232
|
-
blue: {
|
|
233
|
-
foreground: string;
|
|
234
|
-
background: string;
|
|
235
|
-
};
|
|
236
|
-
};
|
|
237
|
-
};
|
|
238
|
-
};
|
|
239
|
-
} | undefined;
|
|
240
|
-
} & {
|
|
241
|
-
as?: string | import("react").ComponentType<any> | undefined;
|
|
242
|
-
forwardedAs?: string | import("react").ComponentType<any> | undefined;
|
|
243
|
-
}, import("../../hooks").BreakpointNames>, string | number | symbol> & import("react").RefAttributes<Text>>;
|
|
6
|
+
children?: import("react").ReactNode;
|
|
7
|
+
} & import("react").RefAttributes<unknown>>;
|
|
@@ -3,6 +3,17 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
|
|
|
3
3
|
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
4
4
|
return cooked;
|
|
5
5
|
};
|
|
6
|
+
var __assign = (this && this.__assign) || function () {
|
|
7
|
+
__assign = Object.assign || function(t) {
|
|
8
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
9
|
+
s = arguments[i];
|
|
10
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
11
|
+
t[p] = s[p];
|
|
12
|
+
}
|
|
13
|
+
return t;
|
|
14
|
+
};
|
|
15
|
+
return __assign.apply(this, arguments);
|
|
16
|
+
};
|
|
6
17
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7
18
|
if (k2 === undefined) k2 = k;
|
|
8
19
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -28,11 +39,14 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
28
39
|
};
|
|
29
40
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30
41
|
exports.Lead = void 0;
|
|
42
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
43
|
+
var react_1 = require("react");
|
|
31
44
|
var styled_native_1 = __importStar(require("../../styled.native"));
|
|
32
|
-
var utils_1 = require("../../utils");
|
|
33
45
|
var StyledLead = styled_native_1.default.Text(function (_a) {
|
|
34
|
-
var _b = _a.theme, core = _b.core, semantic = _b.semantic, smallAndUp = _a.smallAndUp;
|
|
35
|
-
return (0, styled_native_1.css)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n font-family: ", ";\n font-size: ", ";\n line-height: ", ";\n color: ", ";\n "], ["\n font-family: ", ";\n font-size: ", ";\n line-height: ", ";\n color: ", ";\n "])), core.fontFamily.body.native, core.fontSize.lead[smallAndUp ? 'large' : 'small'], core.lineHeight.lead[smallAndUp ? 'large' : 'small'],
|
|
46
|
+
var _b = _a.theme, core = _b.core, semantic = _b.semantic, smallAndUp = _a.smallAndUp, inverted = _a.inverted;
|
|
47
|
+
return (0, styled_native_1.css)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n font-family: ", ";\n font-size: ", ";\n line-height: ", ";\n color: ", ";\n "], ["\n font-family: ", ";\n font-size: ", ";\n line-height: ", ";\n color: ", ";\n "])), core.fontFamily.body.native, core.fontSize.lead[smallAndUp ? 'large' : 'small'], core.lineHeight.lead[smallAndUp ? 'large' : 'small'], inverted
|
|
48
|
+
? semantic.inverted.message.link
|
|
49
|
+
: semantic.message.branded);
|
|
36
50
|
});
|
|
37
|
-
exports.Lead = (0,
|
|
51
|
+
exports.Lead = (0, react_1.forwardRef)(function (props, ref) { return ((0, jsx_runtime_1.jsx)(StyledLead, __assign({}, props, { ref: ref }))); });
|
|
38
52
|
var templateObject_1;
|
|
@@ -4,6 +4,7 @@ export declare const LineThrough: import("styled-components").StyledComponent<ty
|
|
|
4
4
|
borderWidth: Record<"small" | "medium" | "large", string>;
|
|
5
5
|
breakpoint: Record<"small" | "medium" | "large", string | number>;
|
|
6
6
|
mediaQuery: Record<"small" | "medium" | "large", string>;
|
|
7
|
+
customMediaQuery: Record<"small-and-up" | "medium-and-up" | "large-and-up", string>;
|
|
7
8
|
space: Record<0 | 2 | 1 | 3 | 4 | 5 | 10 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | 14 | 15, string>;
|
|
8
9
|
transition: Record<"medium" | "slow" | "fast", string>;
|
|
9
10
|
opacity: Record<"solid" | "transparent" | "translucent", string | number>;
|
|
@@ -35,12 +36,20 @@ export declare const LineThrough: import("styled-components").StyledComponent<ty
|
|
|
35
36
|
};
|
|
36
37
|
semantic: {
|
|
37
38
|
surface: Record<"base" | "cutout" | "elevated", string>;
|
|
38
|
-
message: Record<"base" | "link" | "secondary" | "
|
|
39
|
+
message: Record<"base" | "link" | "secondary" | "branded" | "error", string>;
|
|
40
|
+
branded: Record<"message" | "heading" | "surface", string>;
|
|
39
41
|
border: Record<"graphic" | "differentiated" | "functional", string>;
|
|
40
42
|
focus: Record<"surface" | "outline" | "hover", string>;
|
|
41
|
-
inverted: Record<"surface" | "border", string> & {
|
|
43
|
+
inverted: Record<"surface" | "surfaceAlt" | "border" | "borderAlt", string> & {
|
|
42
44
|
message: Record<"base" | "link" | "secondary" | "branded", string>;
|
|
43
45
|
};
|
|
46
|
+
neutral: {
|
|
47
|
+
border: string;
|
|
48
|
+
surface: string;
|
|
49
|
+
surfaceEmphasis: string;
|
|
50
|
+
message: string;
|
|
51
|
+
messageOnEmphasis: string;
|
|
52
|
+
};
|
|
44
53
|
success: {
|
|
45
54
|
border: string;
|
|
46
55
|
surface: string;
|
|
@@ -7,6 +7,7 @@ export declare const SquareBullet: import("styled-components").StyledComponent<t
|
|
|
7
7
|
borderWidth: Record<"small" | "medium" | "large", string>;
|
|
8
8
|
breakpoint: Record<"small" | "medium" | "large", string | number>;
|
|
9
9
|
mediaQuery: Record<"small" | "medium" | "large", string>;
|
|
10
|
+
customMediaQuery: Record<"small-and-up" | "medium-and-up" | "large-and-up", string>;
|
|
10
11
|
space: Record<0 | 2 | 1 | 3 | 4 | 5 | 10 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | 14 | 15, string>;
|
|
11
12
|
transition: Record<"medium" | "slow" | "fast", string>;
|
|
12
13
|
opacity: Record<"solid" | "transparent" | "translucent", string | number>;
|
|
@@ -38,12 +39,20 @@ export declare const SquareBullet: import("styled-components").StyledComponent<t
|
|
|
38
39
|
};
|
|
39
40
|
semantic: {
|
|
40
41
|
surface: Record<"base" | "cutout" | "elevated", string>;
|
|
41
|
-
message: Record<"base" | "link" | "secondary" | "
|
|
42
|
+
message: Record<"base" | "link" | "secondary" | "branded" | "error", string>;
|
|
43
|
+
branded: Record<"message" | "heading" | "surface", string>;
|
|
42
44
|
border: Record<"graphic" | "differentiated" | "functional", string>;
|
|
43
45
|
focus: Record<"surface" | "outline" | "hover", string>;
|
|
44
|
-
inverted: Record<"surface" | "border", string> & {
|
|
46
|
+
inverted: Record<"surface" | "surfaceAlt" | "border" | "borderAlt", string> & {
|
|
45
47
|
message: Record<"base" | "link" | "secondary" | "branded", string>;
|
|
46
48
|
};
|
|
49
|
+
neutral: {
|
|
50
|
+
border: string;
|
|
51
|
+
surface: string;
|
|
52
|
+
surfaceEmphasis: string;
|
|
53
|
+
message: string;
|
|
54
|
+
messageOnEmphasis: string;
|
|
55
|
+
};
|
|
47
56
|
success: {
|
|
48
57
|
border: string;
|
|
49
58
|
surface: string;
|
|
@@ -241,6 +250,7 @@ export declare const TextBullet: import("styled-components").StyledComponent<typ
|
|
|
241
250
|
borderWidth: Record<"small" | "medium" | "large", string>;
|
|
242
251
|
breakpoint: Record<"small" | "medium" | "large", string | number>;
|
|
243
252
|
mediaQuery: Record<"small" | "medium" | "large", string>;
|
|
253
|
+
customMediaQuery: Record<"small-and-up" | "medium-and-up" | "large-and-up", string>;
|
|
244
254
|
space: Record<0 | 2 | 1 | 3 | 4 | 5 | 10 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | 14 | 15, string>;
|
|
245
255
|
transition: Record<"medium" | "slow" | "fast", string>;
|
|
246
256
|
opacity: Record<"solid" | "transparent" | "translucent", string | number>;
|
|
@@ -272,12 +282,20 @@ export declare const TextBullet: import("styled-components").StyledComponent<typ
|
|
|
272
282
|
};
|
|
273
283
|
semantic: {
|
|
274
284
|
surface: Record<"base" | "cutout" | "elevated", string>;
|
|
275
|
-
message: Record<"base" | "link" | "secondary" | "
|
|
285
|
+
message: Record<"base" | "link" | "secondary" | "branded" | "error", string>;
|
|
286
|
+
branded: Record<"message" | "heading" | "surface", string>;
|
|
276
287
|
border: Record<"graphic" | "differentiated" | "functional", string>;
|
|
277
288
|
focus: Record<"surface" | "outline" | "hover", string>;
|
|
278
|
-
inverted: Record<"surface" | "border", string> & {
|
|
289
|
+
inverted: Record<"surface" | "surfaceAlt" | "border" | "borderAlt", string> & {
|
|
279
290
|
message: Record<"base" | "link" | "secondary" | "branded", string>;
|
|
280
291
|
};
|
|
292
|
+
neutral: {
|
|
293
|
+
border: string;
|
|
294
|
+
surface: string;
|
|
295
|
+
surfaceEmphasis: string;
|
|
296
|
+
message: string;
|
|
297
|
+
messageOnEmphasis: string;
|
|
298
|
+
};
|
|
281
299
|
success: {
|
|
282
300
|
border: string;
|
|
283
301
|
surface: string;
|
|
@@ -473,6 +491,7 @@ export declare const FlexRow: import("styled-components").StyledComponent<typeof
|
|
|
473
491
|
borderWidth: Record<"small" | "medium" | "large", string>;
|
|
474
492
|
breakpoint: Record<"small" | "medium" | "large", string | number>;
|
|
475
493
|
mediaQuery: Record<"small" | "medium" | "large", string>;
|
|
494
|
+
customMediaQuery: Record<"small-and-up" | "medium-and-up" | "large-and-up", string>;
|
|
476
495
|
space: Record<0 | 2 | 1 | 3 | 4 | 5 | 10 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | 14 | 15, string>;
|
|
477
496
|
transition: Record<"medium" | "slow" | "fast", string>;
|
|
478
497
|
opacity: Record<"solid" | "transparent" | "translucent", string | number>;
|
|
@@ -504,12 +523,20 @@ export declare const FlexRow: import("styled-components").StyledComponent<typeof
|
|
|
504
523
|
};
|
|
505
524
|
semantic: {
|
|
506
525
|
surface: Record<"base" | "cutout" | "elevated", string>;
|
|
507
|
-
message: Record<"base" | "link" | "secondary" | "
|
|
526
|
+
message: Record<"base" | "link" | "secondary" | "branded" | "error", string>;
|
|
527
|
+
branded: Record<"message" | "heading" | "surface", string>;
|
|
508
528
|
border: Record<"graphic" | "differentiated" | "functional", string>;
|
|
509
529
|
focus: Record<"surface" | "outline" | "hover", string>;
|
|
510
|
-
inverted: Record<"surface" | "border", string> & {
|
|
530
|
+
inverted: Record<"surface" | "surfaceAlt" | "border" | "borderAlt", string> & {
|
|
511
531
|
message: Record<"base" | "link" | "secondary" | "branded", string>;
|
|
512
532
|
};
|
|
533
|
+
neutral: {
|
|
534
|
+
border: string;
|
|
535
|
+
surface: string;
|
|
536
|
+
surfaceEmphasis: string;
|
|
537
|
+
message: string;
|
|
538
|
+
messageOnEmphasis: string;
|
|
539
|
+
};
|
|
513
540
|
success: {
|
|
514
541
|
border: string;
|
|
515
542
|
surface: string;
|
|
@@ -705,6 +732,7 @@ export declare const LiContent: import("styled-components").StyledComponent<type
|
|
|
705
732
|
borderWidth: Record<"small" | "medium" | "large", string>;
|
|
706
733
|
breakpoint: Record<"small" | "medium" | "large", string | number>;
|
|
707
734
|
mediaQuery: Record<"small" | "medium" | "large", string>;
|
|
735
|
+
customMediaQuery: Record<"small-and-up" | "medium-and-up" | "large-and-up", string>;
|
|
708
736
|
space: Record<0 | 2 | 1 | 3 | 4 | 5 | 10 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | 14 | 15, string>;
|
|
709
737
|
transition: Record<"medium" | "slow" | "fast", string>;
|
|
710
738
|
opacity: Record<"solid" | "transparent" | "translucent", string | number>;
|
|
@@ -736,12 +764,20 @@ export declare const LiContent: import("styled-components").StyledComponent<type
|
|
|
736
764
|
};
|
|
737
765
|
semantic: {
|
|
738
766
|
surface: Record<"base" | "cutout" | "elevated", string>;
|
|
739
|
-
message: Record<"base" | "link" | "secondary" | "
|
|
767
|
+
message: Record<"base" | "link" | "secondary" | "branded" | "error", string>;
|
|
768
|
+
branded: Record<"message" | "heading" | "surface", string>;
|
|
740
769
|
border: Record<"graphic" | "differentiated" | "functional", string>;
|
|
741
770
|
focus: Record<"surface" | "outline" | "hover", string>;
|
|
742
|
-
inverted: Record<"surface" | "border", string> & {
|
|
771
|
+
inverted: Record<"surface" | "surfaceAlt" | "border" | "borderAlt", string> & {
|
|
743
772
|
message: Record<"base" | "link" | "secondary" | "branded", string>;
|
|
744
773
|
};
|
|
774
|
+
neutral: {
|
|
775
|
+
border: string;
|
|
776
|
+
surface: string;
|
|
777
|
+
surfaceEmphasis: string;
|
|
778
|
+
message: string;
|
|
779
|
+
messageOnEmphasis: string;
|
|
780
|
+
};
|
|
745
781
|
success: {
|
|
746
782
|
border: string;
|
|
747
783
|
surface: string;
|
|
@@ -18,6 +18,7 @@ declare const StyledMargin: import("styled-components").StyledComponent<typeof i
|
|
|
18
18
|
borderWidth: Record<"small" | "medium" | "large", string>;
|
|
19
19
|
breakpoint: Record<"small" | "medium" | "large", string | number>;
|
|
20
20
|
mediaQuery: Record<"small" | "medium" | "large", string>;
|
|
21
|
+
customMediaQuery: Record<"small-and-up" | "medium-and-up" | "large-and-up", string>;
|
|
21
22
|
space: Record<0 | 2 | 1 | 3 | 4 | 5 | 10 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | 14 | 15, string>;
|
|
22
23
|
transition: Record<"medium" | "slow" | "fast", string>;
|
|
23
24
|
opacity: Record<"solid" | "transparent" | "translucent", string | number>;
|
|
@@ -49,12 +50,20 @@ declare const StyledMargin: import("styled-components").StyledComponent<typeof i
|
|
|
49
50
|
};
|
|
50
51
|
semantic: {
|
|
51
52
|
surface: Record<"base" | "cutout" | "elevated", string>;
|
|
52
|
-
message: Record<"base" | "link" | "secondary" | "
|
|
53
|
+
message: Record<"base" | "link" | "secondary" | "branded" | "error", string>;
|
|
54
|
+
branded: Record<"message" | "heading" | "surface", string>;
|
|
53
55
|
border: Record<"graphic" | "differentiated" | "functional", string>;
|
|
54
56
|
focus: Record<"surface" | "outline" | "hover", string>;
|
|
55
|
-
inverted: Record<"surface" | "border", string> & {
|
|
57
|
+
inverted: Record<"surface" | "surfaceAlt" | "border" | "borderAlt", string> & {
|
|
56
58
|
message: Record<"base" | "link" | "secondary" | "branded", string>;
|
|
57
59
|
};
|
|
60
|
+
neutral: {
|
|
61
|
+
border: string;
|
|
62
|
+
surface: string;
|
|
63
|
+
surfaceEmphasis: string;
|
|
64
|
+
message: string;
|
|
65
|
+
messageOnEmphasis: string;
|
|
66
|
+
};
|
|
58
67
|
success: {
|
|
59
68
|
border: string;
|
|
60
69
|
surface: string;
|