@instructure/shared-types 8.9.0 → 8.9.2-snapshot.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [8.9.1](https://github.com/instructure/instructure-ui/compare/v8.9.0...v8.9.1) (2021-09-16)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **shared-types:** fix types not getting published ([000c779](https://github.com/instructure/instructure-ui/commit/000c779bb16c575bcfeb4a6c71d8cef1d768db01))
11
+
6
12
  # [8.9.0](https://github.com/instructure/instructure-ui/compare/v8.8.0...v8.9.0) (2021-09-15)
7
13
 
8
14
  **Note:** Version bump only for package @instructure/shared-types
package/LICENSE.md ADDED
@@ -0,0 +1,27 @@
1
+ ---
2
+ title: The MIT License (MIT)
3
+ category: Getting Started
4
+ order: 9
5
+ ---
6
+
7
+ # The MIT License (MIT)
8
+
9
+ Copyright (c) 2015 Instructure, Inc.
10
+
11
+ **Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ of this software and associated documentation files (the "Software"), to deal
13
+ in the Software without restriction, including without limitation the rights
14
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ copies of the Software, and to permit persons to whom the Software is
16
+ furnished to do so, subject to the following conditions.**
17
+
18
+ The above copyright notice and this permission notice shall be included in all
19
+ copies or substantial portions of the Software.
20
+
21
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
+ SOFTWARE.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/shared-types",
3
- "version": "8.9.0",
3
+ "version": "8.9.2-snapshot.1+11d97b23e",
4
4
  "description": "Shared TypeScript typings for Instructure UI packages.",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "homepage": "https://instructure.design/#shared-types",
@@ -25,5 +25,6 @@
25
25
  "dependencies": {
26
26
  "prop-types": "^15",
27
27
  "react": "^17.0.0"
28
- }
28
+ },
29
+ "gitHead": "11d97b23ea6f8360db54acd61c9caf51d787354b"
29
30
  }
@@ -0,0 +1,102 @@
1
+ import { Colors } from './Colors';
2
+ declare type Border = {
3
+ radiusSmall: string | 0;
4
+ radiusMedium: string | 0;
5
+ radiusLarge: string | 0;
6
+ widthSmall: string | 0;
7
+ widthMedium: string | 0;
8
+ widthLarge: string | 0;
9
+ style: string;
10
+ };
11
+ declare type Breakpoints = {
12
+ xxSmall: string;
13
+ xSmall: string;
14
+ small: string;
15
+ medium: string;
16
+ large: string;
17
+ xLarge: string;
18
+ maxWidth: string;
19
+ };
20
+ declare type Forms = {
21
+ inputHeightSmall: string;
22
+ inputHeightMedium: string;
23
+ inputHeightLarge: string;
24
+ };
25
+ declare type Media = {
26
+ mediumMin: string;
27
+ largeMin: string;
28
+ xLargeMin: string;
29
+ };
30
+ declare type Shadows = {
31
+ depth1: string;
32
+ depth2: string;
33
+ depth3: string;
34
+ resting: string;
35
+ above: string;
36
+ topmost: string;
37
+ };
38
+ declare type Spacing = {
39
+ xxxSmall: string | 0;
40
+ xxSmall: string | 0;
41
+ xSmall: string | 0;
42
+ small: string | 0;
43
+ medium: string | 0;
44
+ large: string | 0;
45
+ xLarge: string | 0;
46
+ xxLarge: string | 0;
47
+ };
48
+ declare type Stacking = {
49
+ topmost: number;
50
+ above: number;
51
+ below: number;
52
+ deepest: number;
53
+ };
54
+ declare type Transitions = {
55
+ duration: string | 0;
56
+ timing: string;
57
+ };
58
+ declare type Typography = {
59
+ fontFamily: string;
60
+ fontFamilyMonospace: string;
61
+ fontFamilyHeading?: string;
62
+ fontSizeXSmall: string | 0;
63
+ fontSizeSmall: string | 0;
64
+ fontSizeMedium: string | 0;
65
+ fontSizeLarge: string | 0;
66
+ fontSizeXLarge: string | 0;
67
+ fontSizeXXLarge: string | 0;
68
+ fontWeightLight: number;
69
+ fontWeightNormal: number;
70
+ fontWeightBold: number;
71
+ lineHeight: number | string;
72
+ lineHeightFit: number | string;
73
+ lineHeightCondensed: number | string;
74
+ lineHeightDouble: number | string;
75
+ letterSpacingNormal: number | 0;
76
+ letterSpacingCondensed: string | 0;
77
+ letterSpacingExpanded: string | 0;
78
+ };
79
+ declare type Size = {
80
+ xSmall: number;
81
+ small: number;
82
+ medium: number;
83
+ large: number;
84
+ };
85
+ declare type Radius = Size;
86
+ declare type StrokeWidth = Size;
87
+ declare type BaseTheme = {
88
+ key: string;
89
+ description?: string;
90
+ borders: Border;
91
+ breakpoints: Breakpoints;
92
+ colors: Colors;
93
+ forms: Forms;
94
+ media: Media;
95
+ shadows: Shadows;
96
+ spacing: Spacing;
97
+ stacking: Stacking;
98
+ transitions: Transitions;
99
+ typography: Typography;
100
+ };
101
+ export type { BaseTheme, Shadows, Border, Breakpoints, Media, Forms, Spacing, Stacking, Transitions, Typography, Size, Radius, StrokeWidth };
102
+ //# sourceMappingURL=BaseTheme.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BaseTheme.d.ts","sourceRoot":"","sources":["../src/BaseTheme.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,114 @@
1
+ declare type BaseColors = {
2
+ brand: string;
3
+ link: string;
4
+ electric: string;
5
+ shamrock: string;
6
+ barney: string;
7
+ crimson: string;
8
+ fire: string;
9
+ licorice: string;
10
+ oxford: string;
11
+ ash: string;
12
+ slate: string;
13
+ tiara: string;
14
+ porcelain: string;
15
+ white: string;
16
+ };
17
+ declare type TextColors = {
18
+ textDarkest: BaseColors['licorice'];
19
+ textDark: BaseColors['ash'];
20
+ textLight: BaseColors['porcelain'];
21
+ textLightest: BaseColors['white'];
22
+ textBrand: BaseColors['brand'];
23
+ textLink: BaseColors['link'];
24
+ textAlert: BaseColors['barney'];
25
+ textInfo: BaseColors['brand'];
26
+ textSuccess: BaseColors['shamrock'];
27
+ textDanger: BaseColors['crimson'];
28
+ textWarning: BaseColors['fire'];
29
+ };
30
+ declare type BackgroundColors = {
31
+ backgroundDarkest: BaseColors['licorice'];
32
+ backgroundDark: BaseColors['ash'];
33
+ backgroundMedium: BaseColors['tiara'];
34
+ backgroundLight: BaseColors['porcelain'];
35
+ backgroundLightest: BaseColors['white'];
36
+ backgroundBrand: BaseColors['brand'];
37
+ backgroundBrandSecondary: BaseColors['oxford'];
38
+ backgroundAlert: BaseColors['barney'];
39
+ backgroundInfo: BaseColors['brand'];
40
+ backgroundSuccess: BaseColors['shamrock'];
41
+ backgroundDanger: BaseColors['crimson'];
42
+ backgroundWarning: BaseColors['fire'];
43
+ };
44
+ declare type BorderColors = {
45
+ borderLightest: BaseColors['white'];
46
+ borderLight: BaseColors['porcelain'];
47
+ borderMedium: BaseColors['tiara'];
48
+ borderDark: BaseColors['ash'];
49
+ borderDarkest: BaseColors['licorice'];
50
+ borderBrand: BaseColors['brand'];
51
+ borderAlert: BaseColors['barney'];
52
+ borderInfo: BaseColors['brand'];
53
+ borderSuccess: BaseColors['shamrock'];
54
+ borderDanger: BaseColors['crimson'];
55
+ borderWarning: BaseColors['fire'];
56
+ borderDebug: BaseColors['crimson'];
57
+ };
58
+ declare type Colors = {
59
+ values: BaseColors;
60
+ text: TextColors;
61
+ background: BackgroundColors;
62
+ border: BorderColors;
63
+ brand: string;
64
+ link: string;
65
+ electric: string;
66
+ shamrock: string;
67
+ barney: string;
68
+ crimson: string;
69
+ fire: string;
70
+ licorice: string;
71
+ oxford: string;
72
+ ash: string;
73
+ slate: string;
74
+ tiara: string;
75
+ porcelain: string;
76
+ white: string;
77
+ borderLightest: BaseColors['white'];
78
+ borderLight: BaseColors['porcelain'];
79
+ borderMedium: BaseColors['tiara'];
80
+ borderDark: BaseColors['ash'];
81
+ borderDarkest: BaseColors['licorice'];
82
+ borderBrand: BaseColors['brand'];
83
+ borderAlert: BaseColors['barney'];
84
+ borderInfo: BaseColors['brand'];
85
+ borderSuccess: BaseColors['shamrock'];
86
+ borderDanger: BaseColors['crimson'];
87
+ borderWarning: BaseColors['fire'];
88
+ borderDebug: BaseColors['crimson'];
89
+ backgroundDarkest: BaseColors['licorice'];
90
+ backgroundDark: BaseColors['ash'];
91
+ backgroundMedium: BaseColors['tiara'];
92
+ backgroundLight: BaseColors['porcelain'];
93
+ backgroundLightest: BaseColors['white'];
94
+ backgroundBrand: BaseColors['brand'];
95
+ backgroundBrandSecondary: BaseColors['oxford'];
96
+ backgroundAlert: BaseColors['barney'];
97
+ backgroundInfo: BaseColors['brand'];
98
+ backgroundSuccess: BaseColors['shamrock'];
99
+ backgroundDanger: BaseColors['crimson'];
100
+ backgroundWarning: BaseColors['fire'];
101
+ textDarkest: BaseColors['licorice'];
102
+ textDark: BaseColors['ash'];
103
+ textLight: BaseColors['porcelain'];
104
+ textLightest: BaseColors['white'];
105
+ textBrand: BaseColors['brand'];
106
+ textLink: BaseColors['link'];
107
+ textAlert: BaseColors['barney'];
108
+ textInfo: BaseColors['brand'];
109
+ textSuccess: BaseColors['shamrock'];
110
+ textDanger: BaseColors['crimson'];
111
+ textWarning: BaseColors['fire'];
112
+ };
113
+ export type { BaseColors, TextColors, BorderColors, BackgroundColors, Colors };
114
+ //# sourceMappingURL=Colors.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Colors.d.ts","sourceRoot":"","sources":["../src/Colors.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,4 @@
1
+ import { ComponentType } from 'react';
2
+ declare type AsElementType = keyof JSX.IntrinsicElements | ComponentType;
3
+ export type { AsElementType };
4
+ //# sourceMappingURL=CommonProps.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CommonProps.d.ts","sourceRoot":"","sources":["../src/CommonProps.ts"],"names":[],"mappings":"AAwBA,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAA;AAErC,aAAK,aAAa,GAAG,MAAM,GAAG,CAAC,iBAAiB,GAAG,aAAa,CAAA;AAEhE,YAAY,EAAE,aAAa,EAAE,CAAA"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ /** Element func parameter, mainly for the `findDOMNode` util */
3
+ export declare type UIElement = Node | Window | React.ReactElement | React.Component | (() => Node | Window | null | undefined) | null;
4
+ //# sourceMappingURL=CommonTypes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CommonTypes.d.ts","sourceRoot":"","sources":["../src/CommonTypes.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,gEAAgE;AAChE,oBAAY,SAAS,GACjB,IAAI,GACJ,MAAM,GACN,KAAK,CAAC,YAAY,GAClB,KAAK,CAAC,SAAS,GACf,CAAC,MAAM,IAAI,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC,GACxC,IAAI,CAAA"}
@@ -0,0 +1,7 @@
1
+ import { ThemeVariables } from './ComponentThemeVariables';
2
+ declare type ComponentTheme<Type> = {
3
+ [Key in keyof Type]: Type[Key];
4
+ };
5
+ declare type ComponentThemeMap = ComponentTheme<ThemeVariables>;
6
+ export type { ComponentThemeMap };
7
+ //# sourceMappingURL=ComponentThemeMap.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ComponentThemeMap.d.ts","sourceRoot":"","sources":["../src/ComponentThemeMap.ts"],"names":[],"mappings":"AAwBA,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAE1D,aAAK,cAAc,CAAC,IAAI,IAAI;KACzB,GAAG,IAAI,MAAM,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC;CAC/B,CAAA;AACD,aAAK,iBAAiB,GAAG,cAAc,CAAC,cAAc,CAAC,CAAA;AAEvD,YAAY,EAAE,iBAAiB,EAAE,CAAA"}
@@ -0,0 +1,1389 @@
1
+ import { Colors } from './Colors';
2
+ import { Border, Breakpoints, Forms, Media, Shadows, Spacing, Stacking, Transitions, Typography } from './BaseTheme';
3
+ export declare type AlertTheme = {
4
+ background: Colors['backgroundLightest'];
5
+ color: Colors['textDarkest'];
6
+ marginTop: Spacing['small'];
7
+ borderRadius: Border['radiusMedium'];
8
+ borderWidth: Border['widthMedium'];
9
+ borderStyle: Border['style'];
10
+ contentPadding: string | 0;
11
+ contentFontSize: Typography['fontSizeMedium'];
12
+ contentFontFamily: Typography['fontFamily'];
13
+ contentFontWeight: Typography['fontWeightNormal'];
14
+ contentLineHeight: Typography['lineHeightCondensed'];
15
+ closeButtonMarginTop: Spacing['xSmall'];
16
+ closeButtonMarginRight: Spacing['xxSmall'];
17
+ iconColor: Colors['textLightest'];
18
+ successBorderColor: Colors['borderSuccess'];
19
+ successIconBackground: Colors['backgroundSuccess'];
20
+ infoBorderColor: Colors['borderInfo'];
21
+ infoIconBackground: Colors['backgroundInfo'];
22
+ warningBorderColor: Colors['borderWarning'];
23
+ warningIconBackground: Colors['backgroundWarning'];
24
+ dangerBorderColor: Colors['borderDanger'];
25
+ dangerIconBackground: Colors['backgroundDanger'];
26
+ boxShadow: Shadows['depth2'];
27
+ };
28
+ export declare type AvatarTheme = {
29
+ background: Colors['backgroundLightest'];
30
+ borderWidthSmall: Border['widthSmall'];
31
+ borderWidthMedium: Border['widthMedium'];
32
+ borderColor: Colors['borderMedium'];
33
+ boxShadowColor: Colors['backgroundDarkest'];
34
+ boxShadowBlur: string;
35
+ fontFamily: Typography['fontFamily'];
36
+ fontWeight: Typography['fontWeightBold'];
37
+ color: Colors['brand'];
38
+ colorShamrock: Colors['shamrock'];
39
+ colorBarney: Colors['barney'];
40
+ colorCrimson: Colors['crimson'];
41
+ colorFire: Colors['fire'];
42
+ colorLicorice: Colors['licorice'];
43
+ colorAsh: Colors['ash'];
44
+ };
45
+ export declare type BadgeTheme = {
46
+ fontFamily: Typography['fontFamily'];
47
+ fontWeight: Typography['fontWeightNormal'];
48
+ color: Colors['textLightest'];
49
+ fontSize: Typography['fontSizeXSmall'];
50
+ colorDanger: Colors['textDanger'];
51
+ colorSuccess: Colors['textSuccess'];
52
+ colorPrimary: Colors['textBrand'];
53
+ size: string;
54
+ countOffset: string | 0;
55
+ notificationOffset: string | 0;
56
+ notificationZIndex: Stacking['above'];
57
+ sizeNotification: Spacing['small'];
58
+ borderRadius: string | 0;
59
+ padding: Spacing['xxSmall'];
60
+ pulseBorderThickness: Border['widthMedium'];
61
+ };
62
+ export declare type BillboardTheme = {
63
+ fontFamily: Typography['fontFamily'];
64
+ paddingSmall: Spacing['small'];
65
+ paddingMedium: Spacing['medium'];
66
+ paddingLarge: Spacing['medium'];
67
+ iconColor: Colors['textDark'];
68
+ mediumMargin: Spacing['small'];
69
+ largeMargin: Spacing['medium'];
70
+ iconHoverColor: Colors['textLink'];
71
+ backgroundColor: Colors['backgroundLightest'];
72
+ iconHoverColorInverse: Colors['textLightest'];
73
+ buttonBorderWidth: Border['widthMedium'];
74
+ buttonBorderRadius: Border['radiusLarge'];
75
+ messageColor: Colors['textDark'];
76
+ messageColorClickable: Colors['textLink'];
77
+ messageColorInverse: Colors['textLight'];
78
+ messageFontSizeSmall: Typography['fontSizeSmall'];
79
+ messageFontSizeMedium: Typography['fontSizeMedium'];
80
+ messageFontSizeLarge: Typography['fontSizeLarge'];
81
+ clickableActiveBg: Colors['backgroundBrand'];
82
+ clickableActiveText: Colors['textLightest'];
83
+ buttonBorderStyle: Border['style'];
84
+ buttonHoverBorderStyle: string;
85
+ };
86
+ export declare type BreadcrumbTheme = {
87
+ fontFamily: Typography['fontFamily'];
88
+ separatorColor: Colors['borderDark'];
89
+ smallSeparatorFontSize: string;
90
+ smallFontSize: Typography['fontSizeSmall'];
91
+ mediumSeparatorFontSize: string;
92
+ mediumFontSize: Typography['fontSizeMedium'];
93
+ largeSeparatorFontSize: string;
94
+ largeFontSize: Typography['fontSizeLarge'];
95
+ };
96
+ export declare type BaseButtonTheme = {
97
+ transform: string;
98
+ hoverTransform: string;
99
+ fontFamily: Typography['fontFamily'];
100
+ fontWeight: Typography['fontWeightNormal'];
101
+ textTransform: string;
102
+ letterSpacing: string;
103
+ borderRadius: Border['radiusMedium'];
104
+ borderStyle: Border['style'];
105
+ borderWidth: Border['widthSmall'];
106
+ smallHeight: Forms['inputHeightSmall'];
107
+ smallFontSize: Typography['fontSizeSmall'];
108
+ smallPaddingHorizontal: Spacing['xSmall'];
109
+ smallPaddingTop: string;
110
+ smallPaddingBottom: string;
111
+ mediumHeight: Forms['inputHeightMedium'];
112
+ mediumFontSize: Typography['fontSizeMedium'];
113
+ mediumPaddingHorizontal: Spacing['small'];
114
+ mediumPaddingTop: string;
115
+ mediumPaddingBottom: string;
116
+ largeHeight: Forms['inputHeightLarge'];
117
+ largeFontSize: Typography['fontSizeLarge'];
118
+ largePaddingHorizontal: Spacing['medium'];
119
+ largePaddingTop: string;
120
+ largePaddingBottom: string;
121
+ lineHeight: Typography['lineHeightFit'];
122
+ iconSizeSmall: string;
123
+ iconSizeMedium: string;
124
+ iconSizeLarge: string;
125
+ iconTextGap: Spacing['xSmall'];
126
+ iconTextGapCondensed: Spacing['xxSmall'];
127
+ primaryColor: string;
128
+ primaryBorderColor: string;
129
+ primaryBackground: string;
130
+ primaryHoverBackground: string;
131
+ primaryActiveBackground: string;
132
+ primaryActiveBoxShadow: string;
133
+ primaryGhostColor: string;
134
+ primaryGhostBorderColor: string;
135
+ primaryGhostBackground: string;
136
+ primaryGhostHoverBackground: string;
137
+ primaryGhostActiveBackground: string;
138
+ primaryGhostActiveBoxShadow: string;
139
+ secondaryColor: string;
140
+ secondaryBorderColor: string;
141
+ secondaryBackground: string;
142
+ secondaryHoverBackground: string;
143
+ secondaryActiveBackground: string;
144
+ secondaryActiveBoxShadow: string;
145
+ secondaryGhostColor: string;
146
+ secondaryGhostBorderColor: string;
147
+ secondaryGhostBackground: string;
148
+ secondaryGhostHoverBackground: string;
149
+ secondaryGhostActiveBackground: string;
150
+ secondaryGhostActiveBoxShadow: string;
151
+ successColor: string;
152
+ successBorderColor: string;
153
+ successBackground: string;
154
+ successHoverBackground: string;
155
+ successActiveBackground: string;
156
+ successActiveBoxShadow: string;
157
+ successGhostColor: string;
158
+ successGhostBorderColor: string;
159
+ successGhostBackground: string;
160
+ successGhostHoverBackground: string;
161
+ successGhostActiveBackground: string;
162
+ successGhostActiveBoxShadow: string;
163
+ dangerColor: string;
164
+ dangerBorderColor: string;
165
+ dangerBackground: string;
166
+ dangerHoverBackground: string;
167
+ dangerActiveBackground: string;
168
+ dangerActiveBoxShadow: string;
169
+ dangerGhostColor: string;
170
+ dangerGhostBorderColor: string;
171
+ dangerGhostBackground: string;
172
+ dangerGhostHoverBackground: string;
173
+ dangerGhostActiveBackground: string;
174
+ dangerGhostActiveBoxShadow: string;
175
+ primaryInverseColor: string;
176
+ primaryInverseBorderColor: string;
177
+ primaryInverseBackground: string;
178
+ primaryInverseHoverBackground: string;
179
+ primaryInverseActiveBackground: string;
180
+ primaryInverseActiveBoxShadow: string;
181
+ primaryInverseGhostColor: string;
182
+ primaryInverseGhostBorderColor: string;
183
+ primaryInverseGhostBackground: string;
184
+ primaryInverseGhostHoverBackground: string;
185
+ primaryInverseGhostActiveBackground: string;
186
+ primaryInverseGhostActiveBoxShadow: string;
187
+ };
188
+ export declare type CloseButtonTheme = {
189
+ offsetMedium: Spacing['medium'];
190
+ offsetSmall: Spacing['small'];
191
+ offsetXSmall: Spacing['xSmall'];
192
+ zIndex: Stacking['above'];
193
+ };
194
+ export declare type BylineTheme = {
195
+ fontFamily: Typography['fontFamily'];
196
+ background: Colors['backgroundLightest'];
197
+ color: Colors['textDarkest'];
198
+ figureMargin: Spacing['small'];
199
+ titleMargin: Spacing['xSmall'];
200
+ titleFontSize: Typography['fontSizeLarge'];
201
+ titleFontWeight: Typography['fontWeightNormal'];
202
+ titleLineHeight: Typography['lineHeightFit'];
203
+ descriptionFontSize: Typography['fontSizeMedium'];
204
+ descriptionFontWeight: Typography['fontWeightNormal'];
205
+ descriptionLineHeight: Typography['lineHeightCondensed'];
206
+ small: Breakpoints['small'];
207
+ medium: Breakpoints['medium'];
208
+ large: Breakpoints['large'];
209
+ };
210
+ export declare type CalendarDayTheme = {
211
+ color: Colors['textDarkest'];
212
+ background: Colors['backgroundLightest'];
213
+ fontSize: Typography['fontSizeMedium'];
214
+ padding: Spacing['xxSmall'];
215
+ height: Forms['inputHeightSmall'];
216
+ minWidth: Forms['inputHeightSmall'];
217
+ outsideMonthColor: Colors['textDark'];
218
+ selectedBackground: Colors['backgroundSuccess'];
219
+ selectedColor: Colors['textLightest'];
220
+ selectedBorderRadius: Border['radiusMedium'];
221
+ todayBackground: Colors['backgroundBrand'];
222
+ todayColor: Colors['textLightest'];
223
+ todayBorderRadius: Forms['inputHeightSmall'];
224
+ };
225
+ export declare type CalendarTheme = {
226
+ fontSize: Typography['fontSizeMedium'];
227
+ fontFamily: Typography['fontFamily'];
228
+ fontWeight: Typography['fontWeightNormal'];
229
+ color: Colors['textDarkest'];
230
+ background: Colors['backgroundLightest'];
231
+ navMargin: Spacing['small'];
232
+ maxHeaderWidth: Spacing['medium'];
233
+ };
234
+ export declare type CheckboxFacadeTheme = {
235
+ color: Colors['textLightest'];
236
+ borderWidth: Border['widthSmall'];
237
+ borderColor: Colors['borderDark'];
238
+ borderRadius: Border['radiusMedium'];
239
+ background: Colors['backgroundLightest'];
240
+ marginRight: Spacing['xSmall'];
241
+ padding: Spacing['xxxSmall'];
242
+ checkedBackground: Colors['backgroundDarkest'];
243
+ checkedBorderColor: Colors['borderDarkest'];
244
+ hoverBorderColor: Colors['borderDarkest'];
245
+ focusBorderColor: Colors['borderBrand'];
246
+ focusBorderWidth: Border['widthMedium'];
247
+ focusBorderStyle: Border['style'];
248
+ labelColor: Colors['textDarkest'];
249
+ checkedLabelColor: Colors['textDarkest'];
250
+ labelFontFamily: Typography['fontFamily'];
251
+ labelFontWeight: Typography['fontWeightNormal'];
252
+ labelLineHeight: Typography['lineHeightCondensed'];
253
+ facadeSizeSmall: string;
254
+ facadeSizeMedium: string;
255
+ facadeSizeLarge: string;
256
+ labelFontSizeSmall: Typography['fontSizeSmall'];
257
+ labelFontSizeMedium: Typography['fontSizeMedium'];
258
+ labelFontSizeLarge: Typography['fontSizeLarge'];
259
+ iconSizeSmall: string;
260
+ iconSizeMedium: string;
261
+ iconSizeLarge: string;
262
+ };
263
+ export declare type ToggleFacadeTheme = {
264
+ color: Colors['textLightest'];
265
+ background: Colors['backgroundLight'];
266
+ borderColor: Colors['borderMedium'];
267
+ borderWidth: Border['widthMedium'];
268
+ borderRadius: string;
269
+ marginEnd: Spacing['small'];
270
+ marginStart: Spacing['small'];
271
+ marginVertical: Spacing['xSmall'];
272
+ checkedBackground: Colors['backgroundSuccess'];
273
+ uncheckedIconColor: Colors['textDarkest'];
274
+ checkedIconColor: Colors['textSuccess'];
275
+ focusOutlineColor: Colors['borderBrand'];
276
+ focusBorderWidth: Border['widthMedium'];
277
+ focusBorderStyle: Border['style'];
278
+ toggleBackground: Colors['backgroundLightest'];
279
+ toggleShadow: Shadows['depth1'];
280
+ toggleSize: Forms['inputHeightSmall'];
281
+ labelColor: Colors['textDarkest'];
282
+ labelFontFamily: Typography['fontFamily'];
283
+ labelFontWeight: Typography['fontWeightNormal'];
284
+ labelLineHeight: Typography['lineHeightCondensed'];
285
+ labelFontSizeSmall: Typography['fontSizeSmall'];
286
+ labelFontSizeMedium: Typography['fontSizeMedium'];
287
+ labelFontSizeLarge: Typography['fontSizeLarge'];
288
+ };
289
+ export declare type CodeEditorTheme = {
290
+ fontFamily: Typography['fontFamilyMonospace'];
291
+ fontSize: Typography['fontSizeSmall'];
292
+ background: Colors['backgroundLight'];
293
+ border: string | 0;
294
+ borderRadius: Border['radiusMedium'];
295
+ focusBorderColor: Colors['borderBrand'];
296
+ focusBoxShadow: Colors['borderLightest'];
297
+ horizontalPadding: Spacing['xSmall'];
298
+ verticalPadding: Spacing['xxSmall'];
299
+ color: Colors['textDarkest'];
300
+ lineNumberColor: Colors['textDark'];
301
+ gutterBorder: Colors['borderLight'];
302
+ gutterBackground: Colors['backgroundLight'];
303
+ gutterMarkerColor: Colors['textBrand'];
304
+ gutterMarkerSubtleColor: Colors['textDark'];
305
+ cursorColor: Colors['textDarkest'];
306
+ secondaryCursorColor: Colors['textDark'];
307
+ rulerColor: Colors['borderDark'];
308
+ matchingBracketOutline: Colors['textDark'];
309
+ nonMatchingBracketColor: Colors['textDanger'];
310
+ matchingTagBackground: string;
311
+ activeLineBackground: Colors['backgroundLight'];
312
+ selectedBackground: Colors['backgroundLight'];
313
+ fatCursorBackground: Colors['backgroundSuccess'];
314
+ fatCursorMarkBackground: string;
315
+ searchingBackground: string;
316
+ zIndex: Stacking['above'];
317
+ quoteColor: Colors['textSuccess'];
318
+ headerColor: Colors['textWarning'];
319
+ negativeColor: Colors['textDanger'];
320
+ positiveColor: Colors['textSuccess'];
321
+ keywordColor: Colors['textBrand'];
322
+ atomColor: Colors['textWarning'];
323
+ numberColor: Colors['textWarning'];
324
+ defColor: Colors['textDarkest'];
325
+ variableColor: Colors['textBrand'];
326
+ secondaryVariableColor: Colors['textWarning'];
327
+ typeColor: Colors['textBrand'];
328
+ commentColor: Colors['textDark'];
329
+ stringColor: Colors['textBrand'];
330
+ secondaryStringColor: Colors['textDanger'];
331
+ metaColor: Colors['textDarkest'];
332
+ qualifierColor: Colors['textSuccess'];
333
+ builtInColor: Colors['textWarning'];
334
+ bracketColor: Colors['borderDark'];
335
+ tagColor: Colors['textSuccess'];
336
+ attributeColor: Colors['textBrand'];
337
+ hrColor: Colors['borderDark'];
338
+ linkColor: Colors['textBrand'];
339
+ errorColor: Colors['textDanger'];
340
+ propertyColor: Colors['textAlert'];
341
+ nodeColor: Colors['textWarning'];
342
+ operatorColor: Colors['textDarkest'];
343
+ };
344
+ export declare type DrawerLayoutContentTheme = {
345
+ duration: Transitions['duration'];
346
+ };
347
+ export declare type DrawerLayoutTrayTheme = {
348
+ background: Colors['backgroundLightest'];
349
+ borderColor: Colors['borderMedium'];
350
+ borderWidth: Border['widthSmall'];
351
+ borderStyle: Border['style'];
352
+ zIndex: Stacking['topmost'];
353
+ boxShadow: Shadows['depth3'];
354
+ };
355
+ export declare type FileDropTheme = {
356
+ backgroundColor: Colors['backgroundLightest'];
357
+ borderRadius: Border['radiusLarge'];
358
+ borderWidth: Border['widthMedium'];
359
+ borderStyle: string;
360
+ borderColor: Colors['borderMedium'];
361
+ hoverBorderColor: Colors['borderBrand'];
362
+ acceptedColor: Colors['textBrand'];
363
+ rejectedColor: Colors['textDanger'];
364
+ };
365
+ export declare type FlexTheme = {
366
+ fontFamily: Typography['fontFamily'];
367
+ };
368
+ export declare type FormFieldGroupTheme = {
369
+ borderWidth: Border['widthSmall'];
370
+ borderStyle: Border['style'];
371
+ borderColor: string;
372
+ borderRadius: Border['radiusMedium'];
373
+ errorBorderColor: Colors['borderDanger'];
374
+ errorFieldsPadding: Spacing['xSmall'];
375
+ };
376
+ export declare type FormFieldLabelTheme = {
377
+ color: Colors['textDarkest'];
378
+ fontFamily: Typography['fontFamily'];
379
+ fontWeight: Typography['fontWeightBold'];
380
+ fontSize: Typography['fontSizeMedium'];
381
+ lineHeight: Typography['lineHeightFit'];
382
+ };
383
+ export declare type FormFieldMessageTheme = {
384
+ colorHint: Colors['textDarkest'];
385
+ colorError: Colors['textDanger'];
386
+ colorSuccess: Colors['textSuccess'];
387
+ fontFamily: Typography['fontFamily'];
388
+ fontWeight: Typography['fontWeightNormal'];
389
+ fontSize: Typography['fontSizeSmall'];
390
+ lineHeight: Typography['lineHeight'];
391
+ };
392
+ export declare type FormFieldMessagesTheme = {
393
+ topMargin: Spacing['xxSmall'];
394
+ };
395
+ export declare type GridTheme = {
396
+ spacingSmall: Spacing['small'];
397
+ spacingMedium: Spacing['medium'];
398
+ spacingLarge: Spacing['large'];
399
+ } & Media;
400
+ export declare type HeadingTheme = {
401
+ lineHeight: Typography['lineHeightFit'];
402
+ h1FontSize: Typography['fontSizeXXLarge'];
403
+ h1FontWeight: Typography['fontWeightLight'];
404
+ h1FontFamily: Typography['fontFamily'];
405
+ h2FontSize: Typography['fontSizeXLarge'];
406
+ h2FontWeight: Typography['fontWeightNormal'];
407
+ h2FontFamily: Typography['fontFamily'];
408
+ h3FontSize: Typography['fontSizeLarge'];
409
+ h3FontWeight: Typography['fontWeightBold'];
410
+ h3FontFamily: Typography['fontFamily'];
411
+ h4FontSize: Typography['fontSizeMedium'];
412
+ h4FontWeight: Typography['fontWeightBold'];
413
+ h4FontFamily: Typography['fontFamily'];
414
+ h5FontSize: Typography['fontSizeSmall'];
415
+ h5FontWeight: Typography['fontWeightNormal'];
416
+ h5FontFamily: Typography['fontFamily'];
417
+ primaryInverseColor: Colors['textLightest'];
418
+ primaryColor: Colors['textDarkest'];
419
+ secondaryColor: Colors['textDark'];
420
+ secondaryInverseColor: Colors['textLight'];
421
+ borderPadding: Spacing['xxxSmall'];
422
+ borderColor: Colors['borderMedium'];
423
+ borderWidth: Border['widthSmall'];
424
+ borderStyle: Border['style'];
425
+ };
426
+ export declare type ImgTheme = {
427
+ effectTransitionDuration: string;
428
+ imageBlurAmount: string | 0;
429
+ };
430
+ export declare type LinkTheme = {
431
+ fontFamily: Typography['fontFamily'];
432
+ fontWeight: Typography['fontWeightNormal'];
433
+ color: Colors['textLink'];
434
+ textDecorationWithinText: string;
435
+ hoverTextDecorationWithinText: string;
436
+ textDecorationOutsideText: string;
437
+ hoverTextDecorationOutsideText: string;
438
+ focusOutlineWidth: Border['widthMedium'];
439
+ focusOutlineColor: Colors['borderBrand'];
440
+ focusOutlineStyle: Border['style'];
441
+ hoverColor: Colors['textLink'];
442
+ colorInverse: Colors['textLight'];
443
+ focusInverseOutlineColor: Colors['borderLightest'];
444
+ focusInverseIconOutlineColor: Colors['borderLightest'];
445
+ iconSize: string;
446
+ iconPlusTextMargin: Spacing['xxSmall'];
447
+ };
448
+ export declare type InlineListItemTheme = {
449
+ fontFamily: Typography['fontFamily'];
450
+ fontWeight: Typography['fontWeightNormal'];
451
+ fontSizeSmall: Typography['fontSizeSmall'];
452
+ fontSizeMedium: Typography['fontSizeMedium'];
453
+ fontSizeLarge: Typography['fontSizeLarge'];
454
+ color: Colors['textDark'];
455
+ lineHeight: Typography['lineHeightCondensed'];
456
+ noneSpacing: Spacing['xSmall'];
457
+ pipeSpacing: Spacing['xSmall'];
458
+ slashSpacing: Spacing['xSmall'];
459
+ arrowSpacing: Spacing['xSmall'];
460
+ marginBottomDefault: Spacing['xxxSmall'];
461
+ spacingXXXSmall: Spacing['xxxSmall'];
462
+ spacingXXSmall: Spacing['xxSmall'];
463
+ spacingXSmall: Spacing['xSmall'];
464
+ spacingSmall: Spacing['small'];
465
+ spacingMedium: Spacing['medium'];
466
+ spacingLarge: Spacing['large'];
467
+ spacingXLarge: Spacing['xLarge'];
468
+ spacingXXLarge: Spacing['xxLarge'];
469
+ };
470
+ export declare type ListItemTheme = {
471
+ fontFamily: Typography['fontFamily'];
472
+ fontWeight: Typography['fontWeightNormal'];
473
+ lineHeight: Typography['lineHeight'];
474
+ fontSizeSmall: Typography['fontSizeSmall'];
475
+ fontSizeMedium: Typography['fontSizeMedium'];
476
+ fontSizeLarge: Typography['fontSizeLarge'];
477
+ color: Colors['textDarkest'];
478
+ spacingXXXSmall: Spacing['xxxSmall'];
479
+ spacingXXSmall: Spacing['xxSmall'];
480
+ spacingXSmall: Spacing['xSmall'];
481
+ spacingSmall: Spacing['small'];
482
+ spacingMedium: Spacing['medium'];
483
+ spacingLarge: Spacing['large'];
484
+ spacingXLarge: Spacing['xLarge'];
485
+ spacingXXLarge: Spacing['xxLarge'];
486
+ delimiterDashedBorder: string;
487
+ delimiterSolidBorder: string;
488
+ };
489
+ export declare type ListTheme = {
490
+ listPadding: Spacing['large'];
491
+ orderedNumberFontWeight: Typography['fontWeightBold'];
492
+ orderedNumberMargin: Spacing['xSmall'];
493
+ };
494
+ export declare type MenuItemTheme = {
495
+ padding: string | 0;
496
+ fontFamily: Typography['fontFamily'];
497
+ fontWeight: Typography['fontWeightNormal'];
498
+ lineHeight: Typography['lineHeightCondensed'];
499
+ fontSize: Typography['fontSizeMedium'];
500
+ labelPadding: Spacing['large'];
501
+ labelColor: Colors['textDarkest'];
502
+ background: Colors['backgroundLightest'];
503
+ iconColor: Colors['textDarkest'];
504
+ iconPadding: Spacing['small'];
505
+ activeBackground: Colors['backgroundBrand'];
506
+ activeLabelColor: Colors['textLightest'];
507
+ activeIconColor: Colors['textLightest'];
508
+ };
509
+ export declare type MenuGroupTheme = {
510
+ fontSize: Typography['fontSizeMedium'];
511
+ fontFamily: Typography['fontFamily'];
512
+ fontWeight: Typography['fontWeightBold'];
513
+ padding: string | 0;
514
+ color: Colors['textDarkest'];
515
+ background: Colors['backgroundLightest'];
516
+ };
517
+ export declare type MenuSeparatorTheme = {
518
+ background: Colors['backgroundMedium'];
519
+ height: Border['widthSmall'];
520
+ margin: string | 0;
521
+ };
522
+ export declare type MenuTheme = {
523
+ minWidth: Breakpoints['xxSmall'];
524
+ maxWidth: Breakpoints['xSmall'];
525
+ background: Colors['backgroundLightest'];
526
+ focusBorderStyle: Border['style'];
527
+ focusBorderWidth: Border['widthMedium'];
528
+ focusBorderColor: Colors['borderBrand'];
529
+ focusBorderRadius: Border['radiusMedium'];
530
+ };
531
+ export declare type MetricTheme = {
532
+ padding: string | 0;
533
+ fontFamily: Typography['fontFamily'];
534
+ valueColor: Colors['textDarkest'];
535
+ valueFontSize: Typography['fontSizeXLarge'];
536
+ valueFontWeight: Typography['fontWeightBold'];
537
+ labelColor: Colors['textDarkest'];
538
+ labelFontSize: Typography['fontSizeXSmall'];
539
+ };
540
+ export declare type MetricGroupTheme = {
541
+ lineHeight: Typography['lineHeightCondensed'];
542
+ };
543
+ export declare type ModalBodyTheme = {
544
+ inverseBackground: Colors['backgroundBrandSecondary'];
545
+ };
546
+ export declare type ModalFooterTheme = {
547
+ background: Colors['backgroundLight'];
548
+ borderColor: Colors['borderMedium'];
549
+ borderWidth: Border['widthSmall'];
550
+ borderRadius: Border['radiusMedium'];
551
+ padding: Spacing['small'];
552
+ inverseBackground: Colors['backgroundDarkest'];
553
+ inverseBorderColor: Colors['borderDarkest'];
554
+ };
555
+ export declare type ModalHeaderTheme = {
556
+ background: Colors['backgroundLightest'];
557
+ borderColor: Colors['borderMedium'];
558
+ padding: Spacing['medium'];
559
+ inverseBackground: Colors['backgroundDarkest'];
560
+ inverseBorderColor: Colors['backgroundDarkest'];
561
+ };
562
+ export declare type ModalTheme = {
563
+ fontFamily: Typography['fontFamily'];
564
+ textColor: Colors['textDarkest'];
565
+ background: Colors['backgroundLightest'];
566
+ borderColor: Colors['borderMedium'];
567
+ borderRadius: Border['radiusMedium'];
568
+ inverseBackground: Colors['backgroundBrandSecondary'];
569
+ inverseTextColor: Colors['textLightest'];
570
+ autoMinWidth: Breakpoints['xSmall'];
571
+ smallMaxWidth: Breakpoints['small'];
572
+ mediumMaxWidth: Breakpoints['medium'];
573
+ largeMaxWidth: Breakpoints['large'];
574
+ boxShadow: Shadows['depth3'];
575
+ zIndex: Stacking['topmost'];
576
+ };
577
+ export declare type TransitionTheme = {
578
+ duration: Transitions['duration'];
579
+ timing: Transitions['timing'];
580
+ };
581
+ export declare type AppNavItemTheme = {
582
+ fontFamily: Typography['fontFamily'];
583
+ fontSize: string | 0;
584
+ fontWeight: Typography['fontWeightBold'];
585
+ textColor: Colors['textLink'];
586
+ textColorSelected: Colors['textDarkest'];
587
+ height: string | 0;
588
+ padding: Spacing['small'];
589
+ backgroundColor: Colors['backgroundLightest'];
590
+ };
591
+ export declare type AppNavTheme = {
592
+ fontFamily: Typography['fontFamily'];
593
+ height: string | 0;
594
+ borderColor: Colors['borderMedium'];
595
+ borderStyle: Border['style'];
596
+ borderWidth: Border['widthSmall'];
597
+ horizontalMargin: Spacing['xxSmall'];
598
+ menuTriggerWidth: string | 0;
599
+ };
600
+ export declare type NavigationItemTheme = {
601
+ fontSize: Typography['fontSizeSmall'];
602
+ fontFamily: Typography['fontFamily'];
603
+ fontWeight: Typography['fontWeightLight'];
604
+ fontColor: Colors['textLightest'];
605
+ iconSize: string | 0;
606
+ iconColor: Colors['textLightest'];
607
+ lineHeight: Typography['lineHeight'];
608
+ backgroundColor: string;
609
+ linkTextDecoration: string;
610
+ hoverBackgroundColor: Colors['backgroundDarkest'];
611
+ outerFocusOutline: string;
612
+ innerFocusOutline: string;
613
+ selectedFontColor: Colors['textBrand'];
614
+ selectedIconColor: Colors['textBrand'];
615
+ selectedBackgroundColor: Colors['backgroundLightest'];
616
+ selectedOuterFocusOutline: string;
617
+ selectedInnerFocusOutline: string;
618
+ contentPadding: Spacing['xxSmall'];
619
+ };
620
+ export declare type NavigationTheme = {
621
+ fontColor: Colors['textLightest'];
622
+ backgroundColor: Colors['backgroundBrandSecondary'];
623
+ width: string;
624
+ minimizedWidth: string;
625
+ fill: Colors['textLightest'];
626
+ focusOutlineInnerWidth: Border['widthMedium'];
627
+ focusOutlineOuterWidth: Border['widthSmall'];
628
+ focusOutlineInnerColor: Colors['borderBrand'];
629
+ focusOutlineOuterColor: Colors['borderLightest'];
630
+ marginBottom: Spacing['small'];
631
+ toggleTransition: Transitions['duration'];
632
+ };
633
+ export declare type NumberInputTheme = {
634
+ fontFamily: Typography['fontFamily'];
635
+ fontWeight: Typography['fontWeightNormal'];
636
+ borderWidth: Border['widthSmall'];
637
+ borderStyle: Border['style'];
638
+ borderColor: Colors['borderMedium'];
639
+ borderRadius: Border['radiusMedium'];
640
+ color: Colors['textDarkest'];
641
+ background: Colors['backgroundLightest'];
642
+ padding: string | 0;
643
+ arrowsContainerWidth: string | 0;
644
+ arrowsColor: Colors['textDarkest'];
645
+ arrowsBackgroundColor: Colors['backgroundLight'];
646
+ arrowsHoverBackgroundColor: Colors['backgroundMedium'];
647
+ arrowsBorderColor: Colors['borderMedium'];
648
+ arrowsActiveBoxShadow: string;
649
+ focusOutlineWidth: Border['widthMedium'];
650
+ focusOutlineStyle: Border['style'];
651
+ focusOutlineColor: Colors['borderBrand'];
652
+ errorBorderColor: Colors['borderDanger'];
653
+ errorOutlineColor: Colors['borderDanger'];
654
+ placeholderColor: Colors['textDark'];
655
+ mediumFontSize: Typography['fontSizeMedium'];
656
+ mediumHeight: Forms['inputHeightMedium'];
657
+ largeFontSize: Typography['fontSizeLarge'];
658
+ largeHeight: Forms['inputHeightLarge'];
659
+ };
660
+ export declare type OptionsItemTheme = {
661
+ fontSize: Typography['fontSizeMedium'];
662
+ fontFamily: Typography['fontFamily'];
663
+ fontWeight: Typography['fontWeightNormal'];
664
+ lineHeight: Typography['lineHeightCondensed'];
665
+ color: Colors['textDarkest'];
666
+ background: Colors['backgroundLightest'];
667
+ highlightedLabelColor: Colors['textLightest'];
668
+ highlightedBackground: Colors['backgroundBrand'];
669
+ selectedLabelColor: Colors['textLightest'];
670
+ selectedBackground: Colors['backgroundDark'];
671
+ padding: string | 0;
672
+ iconPadding: Spacing['small'];
673
+ nestedPadding: Spacing['medium'];
674
+ };
675
+ export declare type OptionsSeparatorTheme = {
676
+ background: Colors['backgroundMedium'];
677
+ height: Border['widthSmall'];
678
+ margin: string | 0;
679
+ };
680
+ export declare type OptionsTheme = {
681
+ labelFontWeight: Typography['fontWeightBold'];
682
+ background: Colors['backgroundLightest'];
683
+ labelColor: Colors['textDarkest'];
684
+ labelPadding: string | 0;
685
+ nestedLabelPadding: string | 0;
686
+ };
687
+ export declare type MaskTheme = {
688
+ zIndex: Stacking['topmost'];
689
+ background: string;
690
+ borderColor: string;
691
+ focusBorderColor: Colors['borderBrand'];
692
+ borderRadius: Border['radiusMedium'];
693
+ borderWidth: Border['widthSmall'];
694
+ };
695
+ export declare type PagesTheme = {
696
+ fontSize: Typography['fontSizeMedium'];
697
+ fontFamily: Typography['fontFamily'];
698
+ fontWeight: Typography['fontWeightNormal'];
699
+ color: Colors['textDarkest'];
700
+ background: Colors['backgroundLightest'];
701
+ };
702
+ export declare type PillTheme = {
703
+ fontFamily: Typography['fontFamily'];
704
+ padding: string | 0;
705
+ height: string | 0;
706
+ background: Colors['backgroundLightest'];
707
+ textTransformStyle: string;
708
+ textFontSize: Typography['fontSizeXSmall'];
709
+ textFontWeight: Typography['fontWeightBold'];
710
+ maxWidth: string | 0;
711
+ primaryColor: Colors['textDark'];
712
+ infoColor: Colors['textInfo'];
713
+ dangerColor: Colors['textDanger'];
714
+ successColor: Colors['textSuccess'];
715
+ warningColor: Colors['textWarning'];
716
+ alertColor: Colors['textAlert'];
717
+ borderWidth: Border['widthSmall'];
718
+ borderStyle: Border['style'];
719
+ borderRadius: string | 0;
720
+ };
721
+ export declare type PositionTheme = {
722
+ zIndex: Stacking['topmost'];
723
+ };
724
+ export declare type ProgressBarTheme = {
725
+ fontFamily: Typography['fontFamily'];
726
+ fontWeight: Typography['fontWeightNormal'];
727
+ lineHeight: Typography['lineHeightCondensed'];
728
+ fontSize: Typography['fontSizeMedium'];
729
+ xSmallHeight: Spacing['xSmall'];
730
+ xSmallValueFontSize: Typography['fontSizeXSmall'];
731
+ smallHeight: string;
732
+ smallValueFontSize: Typography['fontSizeXSmall'];
733
+ mediumHeight: Spacing['medium'];
734
+ mediumValueFontSize: Typography['fontSizeSmall'];
735
+ largeHeight: Spacing['large'];
736
+ largeValueFontSize: Typography['fontSizeMedium'];
737
+ valuePadding: string | 0;
738
+ meterColorBrand: Colors['backgroundBrand'];
739
+ meterColorBrandInverse: Colors['backgroundBrand'];
740
+ meterColorInfo: Colors['backgroundInfo'];
741
+ meterColorInfoInverse: Colors['backgroundInfo'];
742
+ meterColorSuccess: Colors['backgroundSuccess'];
743
+ meterColorSuccessInverse: Colors['backgroundSuccess'];
744
+ meterColorDanger: Colors['backgroundDanger'];
745
+ meterColorDangerInverse: Colors['backgroundDanger'];
746
+ meterColorAlert: Colors['backgroundAlert'];
747
+ meterColorAlertInverse: Colors['backgroundAlert'];
748
+ meterColorWarning: Colors['backgroundWarning'];
749
+ meterColorWarningInverse: Colors['backgroundWarning'];
750
+ meterBorderWidthInverse: Border['widthSmall'];
751
+ meterBorderColorInverse: 'transparent';
752
+ trackColor: Colors['backgroundLightest'];
753
+ trackColorInverse: string;
754
+ trackBottomBorderWidth: Border['widthSmall'];
755
+ trackBottomBorderColor: Colors['borderMedium'];
756
+ trackBottomBorderColorInverse: Colors['borderLightest'];
757
+ };
758
+ export declare type ProgressCircleTheme = {
759
+ fontFamily: Typography['fontFamily'];
760
+ fontWeight: Typography['fontWeightNormal'];
761
+ lineHeight: Typography['lineHeightCondensed'];
762
+ xSmallSize: string;
763
+ xSmallRadius: string;
764
+ xSmallCircumference: string;
765
+ xSmallTransform: string;
766
+ xSmallStrokeWidth: string;
767
+ xSmallBorderOffset: string;
768
+ smallSize: string;
769
+ smallRadius: string;
770
+ smallCircumference: string;
771
+ smallTransform: string;
772
+ smallStrokeWidth: string;
773
+ smallBorderOffset: string;
774
+ mediumSize: string;
775
+ mediumRadius: string;
776
+ mediumCircumference: string;
777
+ mediumTransform: string;
778
+ mediumStrokeWidth: string;
779
+ mediumBorderOffset: string;
780
+ largeSize: string;
781
+ largeRadius: string;
782
+ largeCircumference: string;
783
+ largeTransform: string;
784
+ largeStrokeWidth: string;
785
+ largeBorderOffset: string;
786
+ color: Colors['textDarkest'];
787
+ colorInverse: Colors['textLightest'];
788
+ trackColor: Colors['backgroundLightest'];
789
+ trackColorInverse: string;
790
+ trackBorderColor: Colors['borderMedium'];
791
+ trackBorderColorInverse: Colors['borderLightest'];
792
+ meterColorBrand: Colors['backgroundBrand'];
793
+ meterColorBrandInverse: Colors['backgroundBrand'];
794
+ meterColorInfo: Colors['backgroundInfo'];
795
+ meterColorInfoInverse: Colors['backgroundInfo'];
796
+ meterColorSuccess: Colors['backgroundSuccess'];
797
+ meterColorSuccessInverse: Colors['backgroundSuccess'];
798
+ meterColorDanger: Colors['backgroundDanger'];
799
+ meterColorDangerInverse: Colors['backgroundDanger'];
800
+ meterColorAlert: Colors['backgroundAlert'];
801
+ meterColorAlertInverse: Colors['backgroundAlert'];
802
+ meterColorWarning: Colors['backgroundWarning'];
803
+ meterColorWarningInverse: Colors['backgroundWarning'];
804
+ };
805
+ export declare type RadioInputTheme = {
806
+ labelColor: Colors['textDarkest'];
807
+ labelFontFamily: Typography['fontFamily'];
808
+ labelFontWeight: Typography['fontWeightNormal'];
809
+ labelLineHeight: Typography['lineHeightCondensed'];
810
+ background: Colors['backgroundLightest'];
811
+ borderColor: Colors['borderDarkest'];
812
+ hoverBorderColor: Colors['borderDarkest'];
813
+ controlSize: string | 0;
814
+ focusBorderColor: Colors['borderBrand'];
815
+ focusBorderWidth: Border['widthMedium'];
816
+ focusBorderStyle: Border['style'];
817
+ simpleFacadeSmallSize: string | 0;
818
+ simpleFacadeMediumSize: string | 0;
819
+ simpleFacadeLargeSize: string | 0;
820
+ simpleCheckedInsetSmall: string | 0;
821
+ simpleCheckedInsetMedium: string | 0;
822
+ simpleCheckedInsetLarge: string | 0;
823
+ simpleFontSizeSmall: Typography['fontSizeSmall'];
824
+ simpleFontSizeMedium: Typography['fontSizeMedium'];
825
+ simpleFontSizeLarge: Typography['fontSizeLarge'];
826
+ simpleFacadeMarginEnd: Spacing['xSmall'];
827
+ toggleBorderRadius: Border['radiusSmall'];
828
+ toggleBorderWidth: Border['widthLarge'];
829
+ toggleBackgroundSuccess: Colors['backgroundSuccess'];
830
+ toggleBackgroundOff: Colors['backgroundDark'];
831
+ toggleBackgroundDanger: Colors['backgroundDanger'];
832
+ toggleBackgroundWarning: Colors['backgroundWarning'];
833
+ toggleHandleText: Colors['textLightest'];
834
+ toggleSmallHeight: Forms['inputHeightSmall'];
835
+ toggleMediumHeight: Forms['inputHeightMedium'];
836
+ toggleLargeHeight: Forms['inputHeightLarge'];
837
+ toggleShadow: Shadows['depth1'];
838
+ toggleSmallFontSize: Typography['fontSizeXSmall'];
839
+ toggleMediumFontSize: Typography['fontSizeSmall'];
840
+ toggleLargeFontSize: Typography['fontSizeMedium'];
841
+ };
842
+ export declare type RangeInputTheme = {
843
+ minWidth: string | 0;
844
+ handleSize: string | 0;
845
+ handleBackground: Colors['backgroundBrand'];
846
+ handleShadowColor: Colors['borderBrand'];
847
+ handleHoverBackground: Colors['backgroundBrand'];
848
+ handleFocusBackground: Colors['backgroundBrand'];
849
+ handleFocusOutlineColor: Colors['borderBrand'];
850
+ handleFocusOutlineWidth: string | 0;
851
+ trackBackground: Colors['backgroundDark'];
852
+ valueColor: Colors['textLightest'];
853
+ valueFontFamily: Typography['fontFamily'];
854
+ valueFontWeight: Typography['fontWeightNormal'];
855
+ valueSmallFontSize: Typography['fontSizeSmall'];
856
+ valueSmallPadding: string | 0;
857
+ valueSmallLineHeight: Forms['inputHeightSmall'];
858
+ valueMediumFontSize: Typography['fontSizeMedium'];
859
+ valueMediumPadding: string | 0;
860
+ valueMediumLineHeight: Forms['inputHeightMedium'];
861
+ valueLargeFontSize: Typography['fontSizeLarge'];
862
+ valueLargePadding: string | 0;
863
+ valueLargeLineHeight: Forms['inputHeightLarge'];
864
+ };
865
+ export declare type RatingIconTheme = {
866
+ iconMargin: Spacing['xxxSmall'];
867
+ iconEmptyColor: Colors['textBrand'];
868
+ iconFilledColor: Colors['textBrand'];
869
+ smallIconFontSize: Typography['fontSizeMedium'];
870
+ mediumIconFontSize: Typography['fontSizeLarge'];
871
+ largeIconFontSize: Typography['fontSizeXXLarge'];
872
+ };
873
+ export declare type SelectTheme = {
874
+ fontSize: Typography['fontSizeMedium'];
875
+ fontFamily: Typography['fontFamily'];
876
+ fontWeight: Typography['fontWeightNormal'];
877
+ smallIconSize: Typography['fontSizeXSmall'];
878
+ mediumIconSize: Typography['fontSizeSmall'];
879
+ largeIconSize: Typography['fontSizeMedium'];
880
+ color: Colors['textDarkest'];
881
+ background: Colors['backgroundLightest'];
882
+ };
883
+ export declare type SpinnerTheme = {
884
+ trackColor: Colors['backgroundLight'];
885
+ color: Colors['backgroundBrand'];
886
+ xSmallSize: string | 0;
887
+ xSmallBorderWidth: string | 0;
888
+ smallSize: string | 0;
889
+ smallBorderWidth: string | 0;
890
+ mediumSize: string | 0;
891
+ mediumBorderWidth: string | 0;
892
+ largeSize: string | 0;
893
+ largeBorderWidth: string | 0;
894
+ inverseColor: Colors['backgroundBrand'];
895
+ };
896
+ export declare type InlineSVGTheme = {
897
+ primaryInverseColor: Colors['textLightest'];
898
+ primaryColor: Colors['textDarkest'];
899
+ secondaryColor: Colors['textDark'];
900
+ secondaryInverseColor: Colors['textLight'];
901
+ warningColor: Colors['textWarning'];
902
+ brandColor: Colors['textBrand'];
903
+ errorColor: Colors['textDanger'];
904
+ alertColor: Colors['textAlert'];
905
+ successColor: Colors['textSuccess'];
906
+ };
907
+ export declare type SVGIconTheme = {
908
+ sizeXSmall: string | 0;
909
+ sizeSmall: string | 0;
910
+ sizeMedium: string | 0;
911
+ sizeLarge: string | 0;
912
+ sizeXLarge: string | 0;
913
+ };
914
+ export declare type TableBodyTheme = {
915
+ fontSize: Typography['fontSizeMedium'];
916
+ fontFamily: Typography['fontFamily'];
917
+ fontWeight: Typography['fontWeightNormal'];
918
+ color: Colors['textDarkest'];
919
+ background: Colors['backgroundLightest'];
920
+ };
921
+ export declare type TableCellTheme = {
922
+ fontSize: Typography['fontSizeMedium'];
923
+ fontFamily: Typography['fontFamily'];
924
+ fontWeight: Typography['fontWeightNormal'];
925
+ color: Colors['textDarkest'];
926
+ background: Colors['backgroundLightest'];
927
+ borderColor: Colors['borderMedium'];
928
+ lineHeight: Typography['lineHeightCondensed'];
929
+ padding: string | 0;
930
+ };
931
+ export declare type TableColHeaderTheme = {
932
+ fontSize: Typography['fontSizeMedium'];
933
+ fontFamily: Typography['fontFamily'];
934
+ color: Colors['textDarkest'];
935
+ background: Colors['backgroundLightest'];
936
+ borderColor: Colors['borderMedium'];
937
+ lineHeight: Typography['lineHeightCondensed'];
938
+ padding: string | 0;
939
+ focusOutlineColor: Colors['borderBrand'];
940
+ focusOutlineWidth: Border['widthMedium'];
941
+ focusOutlineStyle: Border['style'];
942
+ };
943
+ export declare type TableHeadTheme = {
944
+ fontSize: Typography['fontSizeMedium'];
945
+ fontFamily: Typography['fontFamily'];
946
+ fontWeight: Typography['fontWeightNormal'];
947
+ color: Colors['textDarkest'];
948
+ background: Colors['backgroundLightest'];
949
+ };
950
+ export declare type TableRowTheme = {
951
+ fontSize: Typography['fontSizeMedium'];
952
+ fontFamily: Typography['fontFamily'];
953
+ fontWeight: Typography['fontWeightNormal'];
954
+ color: Colors['textDarkest'];
955
+ background: Colors['backgroundLightest'];
956
+ borderColor: Colors['borderMedium'];
957
+ hoverBorderColor: Colors['borderBrand'];
958
+ padding: string | 0;
959
+ };
960
+ export declare type TableRowHeaderTheme = {
961
+ fontSize: Typography['fontSizeMedium'];
962
+ fontFamily: Typography['fontFamily'];
963
+ fontWeight: Typography['fontWeightNormal'];
964
+ color: Colors['textDarkest'];
965
+ background: Colors['backgroundLightest'];
966
+ borderColor: Colors['borderMedium'];
967
+ lineHeight: Typography['lineHeightCondensed'];
968
+ padding: string | 0;
969
+ };
970
+ export declare type TableTheme = {
971
+ fontSize: Typography['fontSizeMedium'];
972
+ fontFamily: Typography['fontFamily'];
973
+ fontWeight: Typography['fontWeightNormal'];
974
+ color: Colors['textDarkest'];
975
+ background: Colors['backgroundLightest'];
976
+ };
977
+ export declare type TabsPanelTheme = {
978
+ fontSize: Typography['fontSizeMedium'];
979
+ fontFamily: Typography['fontFamily'];
980
+ fontWeight: Typography['fontWeightNormal'];
981
+ lineHeight: Typography['lineHeight'];
982
+ color: Colors['textDarkest'];
983
+ background: Colors['backgroundLightest'];
984
+ borderColor: Colors['borderMedium'];
985
+ borderWidth: Border['widthSmall'];
986
+ borderStyle: Border['style'];
987
+ };
988
+ export declare type TabsTabTheme = {
989
+ fontFamily: Typography['fontFamily'];
990
+ fontWeight: Typography['fontWeightNormal'];
991
+ lineHeight: Typography['lineHeightCondensed'];
992
+ fontSize: Typography['fontSizeMedium'];
993
+ defaultColor: Colors['textDarkest'];
994
+ defaultHoverBorderColor: Colors['borderMedium'];
995
+ defaultSelectedBorderColor: Colors['borderBrand'];
996
+ secondaryColor: Colors['textDarkest'];
997
+ secondarySelectedBackground: Colors['backgroundLightest'];
998
+ secondarySelectedBorderColor: Colors['borderMedium'];
999
+ zIndex: Stacking['above'];
1000
+ };
1001
+ export declare type TabsTheme = {
1002
+ defaultBackground: Colors['backgroundLightest'];
1003
+ scrollFadeColor: Colors['backgroundLightest'];
1004
+ tabVerticalOffset: Border['widthSmall'];
1005
+ zIndex: Stacking['above'];
1006
+ scrollOverlayWidthDefault: string;
1007
+ scrollOverlayWidthSecondary: string;
1008
+ };
1009
+ export declare type TagTheme = {
1010
+ fontFamily: Typography['fontFamily'];
1011
+ heightSmall: string | 0;
1012
+ heightMedium: Forms['inputHeightSmall'];
1013
+ heightLarge: Forms['inputHeightMedium'];
1014
+ fontSizeSmall: Typography['fontSizeXSmall'];
1015
+ fontSizeMedium: Typography['fontSizeSmall'];
1016
+ fontSizeLarge: Typography['fontSizeMedium'];
1017
+ padding: string | 0;
1018
+ paddingSmall: string | 0;
1019
+ focusOutlineColor: Colors['borderBrand'];
1020
+ focusOutlineWidth: Border['widthMedium'];
1021
+ focusOutlineStyle: Border['style'];
1022
+ maxWidth: string | 0;
1023
+ iconMargin: Spacing['small'];
1024
+ transitionTiming: string;
1025
+ defaultBackgroundHover: string;
1026
+ defaultBackground: string;
1027
+ defaultBorderColor: string;
1028
+ defaultBorderRadius: string;
1029
+ defaultBorderStyle: string;
1030
+ defaultBorderWidth: string;
1031
+ defaultColor: string;
1032
+ defaultIconColor: string;
1033
+ defaultIconHoverColor: string;
1034
+ inlineBackgroundHover: string;
1035
+ inlineBackground: string;
1036
+ inlineBorderColor: string;
1037
+ inlineBorderRadius: string;
1038
+ inlineBorderStyle: string;
1039
+ inlineBorderWidth: string;
1040
+ inlineColor: string;
1041
+ inlineIconColor: string;
1042
+ inlineIconHoverColor: string;
1043
+ };
1044
+ export declare type TextTheme = Typography & {
1045
+ primaryInverseColor: Colors['textLightest'];
1046
+ primaryColor: Colors['textDarkest'];
1047
+ secondaryColor: Colors['textDark'];
1048
+ secondaryInverseColor: Colors['textLight'];
1049
+ warningColor: Colors['textWarning'];
1050
+ brandColor: Colors['textBrand'];
1051
+ dangerColor: Colors['textDanger'];
1052
+ successColor: Colors['textSuccess'];
1053
+ alertColor: Colors['textAlert'];
1054
+ paragraphMargin: string | 0;
1055
+ };
1056
+ export declare type TextAreaTheme = {
1057
+ fontFamily: Typography['fontFamily'];
1058
+ fontWeight: Typography['fontWeightNormal'];
1059
+ color: Colors['textDarkest'];
1060
+ background: Colors['backgroundLightest'];
1061
+ borderWidth: Border['widthSmall'];
1062
+ borderStyle: Border['style'];
1063
+ borderTopColor: Colors['borderMedium'];
1064
+ borderRightColor: Colors['borderMedium'];
1065
+ borderBottomColor: Colors['borderMedium'];
1066
+ borderLeftColor: Colors['borderMedium'];
1067
+ borderRadius: Border['radiusMedium'];
1068
+ padding: Spacing['small'];
1069
+ focusOutlineColor: Colors['borderBrand'];
1070
+ focusOutlineWidth: Border['widthMedium'];
1071
+ focusOutlineStyle: Border['style'];
1072
+ errorBorderColor: Colors['borderDanger'];
1073
+ errorOutlineColor: Colors['borderDanger'];
1074
+ placeholderColor: Colors['textDark'];
1075
+ smallFontSize: Typography['fontSizeSmall'];
1076
+ smallHeight: Forms['inputHeightSmall'];
1077
+ mediumFontSize: Typography['fontSizeMedium'];
1078
+ mediumHeight: Forms['inputHeightMedium'];
1079
+ largeFontSize: Typography['fontSizeLarge'];
1080
+ largeHeight: Forms['inputHeightLarge'];
1081
+ };
1082
+ export declare type TextInputTheme = {
1083
+ fontFamily: Typography['fontFamily'];
1084
+ fontWeight: Typography['fontWeightNormal'];
1085
+ borderWidth: Border['widthSmall'];
1086
+ borderStyle: Border['style'];
1087
+ borderColor: Colors['borderMedium'];
1088
+ borderRadius: Border['radiusMedium'];
1089
+ color: Colors['textDarkest'];
1090
+ background: Colors['backgroundLightest'];
1091
+ padding: Spacing['small'];
1092
+ focusOutlineWidth: Border['widthMedium'];
1093
+ focusOutlineStyle: Border['style'];
1094
+ focusOutlineColor: Colors['borderBrand'];
1095
+ errorBorderColor: Colors['borderDanger'];
1096
+ errorOutlineColor: Colors['borderDanger'];
1097
+ placeholderColor: Colors['textDark'];
1098
+ smallFontSize: Typography['fontSizeSmall'];
1099
+ smallHeight: Forms['inputHeightSmall'];
1100
+ mediumFontSize: Typography['fontSizeMedium'];
1101
+ mediumHeight: Forms['inputHeightMedium'];
1102
+ largeFontSize: Typography['fontSizeLarge'];
1103
+ largeHeight: Forms['inputHeightLarge'];
1104
+ };
1105
+ export declare type ToggleDetailsTheme = {
1106
+ fontFamily: Typography['fontFamily'];
1107
+ fontWeight: Typography['fontWeightNormal'];
1108
+ lineHeight: Typography['lineHeight'];
1109
+ textColor: Colors['textDarkest'];
1110
+ fontSizeSmall: Typography['fontSizeSmall'];
1111
+ fontSizeMedium: Typography['fontSizeMedium'];
1112
+ fontSizeLarge: Typography['fontSizeLarge'];
1113
+ smallIconSize: string | 0;
1114
+ mediumIconSize: string | 0;
1115
+ largeIconSize: string | 0;
1116
+ iconMargin: Spacing['xxSmall'];
1117
+ iconColor: Colors['textDarkest'];
1118
+ togglePadding: Spacing['xxSmall'];
1119
+ toggleBorderRadius: Border['radiusMedium'];
1120
+ toggleBorderWidth: Border['widthMedium'];
1121
+ toggleBorderStyle: Border['style'];
1122
+ toggleFocusBorderColor: Colors['borderBrand'];
1123
+ filledBackgroundColor: Colors['backgroundLight'];
1124
+ filledBorderWidth: Border['widthSmall'];
1125
+ filledBorderStyle: Border['style'];
1126
+ filledBorderColor: Colors['borderMedium'];
1127
+ filledBorderRadius: Border['radiusMedium'];
1128
+ filledPadding: Spacing['small'];
1129
+ };
1130
+ export declare type TooltipTheme = {
1131
+ fontFamily: Typography['fontFamily'];
1132
+ fontWeight: Typography['fontWeightNormal'];
1133
+ fontSize: Typography['fontSizeSmall'];
1134
+ padding: Spacing['small'];
1135
+ };
1136
+ export declare type TrayTheme = {
1137
+ background: Colors['backgroundLightest'];
1138
+ borderColor: Colors['borderMedium'];
1139
+ borderWidth: Border['widthSmall'];
1140
+ borderStyle: Border['style'];
1141
+ boxShadow: Shadows['depth3'];
1142
+ xSmallWidth: Breakpoints['xSmall'];
1143
+ smallWidth: string | 0;
1144
+ regularWidth: Breakpoints['small'];
1145
+ mediumWidth: Breakpoints['medium'];
1146
+ largeWidth: Breakpoints['large'];
1147
+ zIndex: Stacking['topmost'];
1148
+ };
1149
+ export declare type TreeBrowserButtonTheme = {
1150
+ hoverBackgroundColor: Colors['backgroundBrand'];
1151
+ hoverTextColor: Colors['textLightest'];
1152
+ focusOutlineWidth: Border['widthMedium'];
1153
+ focusOutlineColor: Colors['borderBrand'];
1154
+ focusOutlineStyle: Border['style'];
1155
+ iconColor: Colors['textDarkest'];
1156
+ iconsMarginRight: Spacing['xSmall'];
1157
+ descriptorMarginTop: Spacing['xxxSmall'];
1158
+ descriptorTextColor: Colors['textDarkest'];
1159
+ descriptorFontSizeSmall: Typography['fontSizeXSmall'];
1160
+ descriptorFontSizeMedium: Typography['fontSizeXSmall'];
1161
+ descriptorFontSizeLarge: Typography['fontSizeSmall'];
1162
+ nameTextColor: Colors['textBrand'];
1163
+ nameFontSizeSmall: Typography['fontSizeXSmall'];
1164
+ nameFontSizeMedium: Typography['fontSizeSmall'];
1165
+ nameFontSizeLarge: Typography['fontSizeMedium'];
1166
+ baseSpacingSmall: Spacing['xSmall'];
1167
+ baseSpacingMedium: Spacing['small'];
1168
+ baseSpacingLarge: string | 0;
1169
+ borderWidth: Border['widthSmall'];
1170
+ borderRadius: Border['radiusMedium'];
1171
+ borderColor: Colors['borderDark'];
1172
+ textLineHeight: Typography['lineHeightCondensed'];
1173
+ selectedTextColor: Colors['textLightest'];
1174
+ selectedBackgroundColor: Colors['backgroundDark'];
1175
+ selectedOutlineWidth: Border['widthLarge'];
1176
+ };
1177
+ export declare type TreeBrowserCollectionTheme = {
1178
+ fontFamily: Typography['fontFamily'];
1179
+ baseSpacingSmall: Spacing['xSmall'];
1180
+ baseSpacingMedium: Spacing['small'];
1181
+ baseSpacingLarge: string | 0;
1182
+ borderWidth: Border['widthSmall'];
1183
+ borderColor: Colors['borderDark'];
1184
+ };
1185
+ export declare type TreeBrowserTheme = {
1186
+ borderRadius: Border['radiusMedium'];
1187
+ focusOutlineWidth: Border['widthMedium'];
1188
+ focusOutlineColor: Colors['borderBrand'];
1189
+ focusOutlineStyle: Border['style'];
1190
+ };
1191
+ export declare type TruncateTextTheme = {
1192
+ fontFamily: Typography['fontFamily'];
1193
+ lineHeight: Typography['lineHeight'];
1194
+ };
1195
+ export declare type ContextViewTheme = {
1196
+ arrowSize: string | 0;
1197
+ arrowBorderWidth: Border['widthSmall'];
1198
+ arrowBackgroundColor: Colors['white'];
1199
+ arrowBorderColor: Colors['tiara'];
1200
+ arrowBackgroundColorInverse: Colors['licorice'];
1201
+ arrowBorderColorInverse: string;
1202
+ };
1203
+ export declare type ViewTheme = {
1204
+ fontFamily: Typography['fontFamily'];
1205
+ color: Colors['textDarkest'];
1206
+ colorPrimaryInverse: Colors['textLightest'];
1207
+ borderColorPrimary: Colors['borderMedium'];
1208
+ borderColorSecondary: Colors['borderDark'];
1209
+ borderColorSuccess: Colors['borderSuccess'];
1210
+ borderColorBrand: Colors['borderBrand'];
1211
+ borderColorInfo: Colors['borderInfo'];
1212
+ borderColorAlert: Colors['borderAlert'];
1213
+ borderColorWarning: Colors['borderWarning'];
1214
+ borderColorDanger: Colors['borderDanger'];
1215
+ borderColorTransparent: string;
1216
+ debugOutlineColor: Colors['borderDebug'];
1217
+ backgroundPrimary: Colors['backgroundLightest'];
1218
+ backgroundSecondary: Colors['backgroundLight'];
1219
+ backgroundPrimaryInverse: Colors['backgroundDarkest'];
1220
+ backgroundBrand: Colors['backgroundBrand'];
1221
+ backgroundInfo: Colors['backgroundInfo'];
1222
+ backgroundAlert: Colors['backgroundAlert'];
1223
+ backgroundSuccess: Colors['backgroundSuccess'];
1224
+ backgroundDanger: Colors['backgroundDanger'];
1225
+ backgroundWarning: Colors['backgroundWarning'];
1226
+ arrowSize: string | 0;
1227
+ focusOutlineStyle: Border['style'];
1228
+ focusOutlineWidth: Border['widthMedium'];
1229
+ focusOutlineOffset: string | 0;
1230
+ focusOutlineInset: string | 0;
1231
+ focusColorInfo: Colors['borderInfo'];
1232
+ focusColorDanger: Colors['borderDanger'];
1233
+ focusColorSuccess: Colors['borderSuccess'];
1234
+ focusColorInverse: Colors['borderLightest'];
1235
+ xSmallMaxWidth: Breakpoints['xSmall'];
1236
+ smallMaxWidth: Breakpoints['small'];
1237
+ mediumMaxWidth: Breakpoints['medium'];
1238
+ largeMaxWidth: Breakpoints['large'];
1239
+ marginXxxSmall: string;
1240
+ marginXxSmall: string;
1241
+ marginXSmall: string;
1242
+ marginSmall: string;
1243
+ marginMedium: string;
1244
+ marginLarge: string;
1245
+ marginXLarge: string;
1246
+ marginXxLarge: string;
1247
+ paddingXxxSmall: string;
1248
+ paddingXxSmall: string;
1249
+ paddingXSmall: string;
1250
+ paddingSmall: string;
1251
+ paddingMedium: string;
1252
+ paddingLarge: string;
1253
+ paddingXLarge: string;
1254
+ paddingXxLarge: string;
1255
+ shadowDepth1: string;
1256
+ shadowDepth2: string;
1257
+ shadowDepth3: string;
1258
+ shadowResting: string;
1259
+ shadowAbove: string;
1260
+ shadowTopmost: string;
1261
+ stackingTopmost: number;
1262
+ stackingAbove: number;
1263
+ stackingBelow: number;
1264
+ stackingDeepest: number;
1265
+ borderRadiusSmall: string;
1266
+ borderRadiusMedium: string;
1267
+ borderRadiusLarge: string;
1268
+ borderWidthSmall: string;
1269
+ borderWidthMedium: string;
1270
+ borderWidthLarge: string;
1271
+ borderStyle: string;
1272
+ };
1273
+ export interface ThemeVariables {
1274
+ Avatar: AvatarTheme;
1275
+ Alert: AlertTheme;
1276
+ Badge: BadgeTheme;
1277
+ Billboard: BillboardTheme;
1278
+ Breadcrumb: BreadcrumbTheme;
1279
+ BaseButton: BaseButtonTheme;
1280
+ Button: BaseButtonTheme;
1281
+ CloseButton: CloseButtonTheme;
1282
+ CondensedButton: BaseButtonTheme;
1283
+ IconButton: BaseButtonTheme;
1284
+ Byline: BylineTheme;
1285
+ CalendarDay: CalendarDayTheme;
1286
+ 'Calendar.Day': CalendarDayTheme;
1287
+ Calendar: CalendarTheme;
1288
+ CheckboxFacade: CheckboxFacadeTheme;
1289
+ ToggleFacade: ToggleFacadeTheme;
1290
+ CodeEditor: CodeEditorTheme;
1291
+ DrawerLayoutContent: DrawerLayoutContentTheme;
1292
+ 'DrawerLayout.Content': DrawerLayoutContentTheme;
1293
+ DrawerLayoutTray: DrawerLayoutTrayTheme;
1294
+ 'DrawerLayout.Tray': DrawerLayoutTrayTheme;
1295
+ FileDrop: FileDropTheme;
1296
+ Flex: FlexTheme;
1297
+ FormFieldGroup: FormFieldGroupTheme;
1298
+ FormFieldLabel: FormFieldLabelTheme;
1299
+ FormFieldMessage: FormFieldMessageTheme;
1300
+ FormFieldMessages: FormFieldMessagesTheme;
1301
+ Grid: GridTheme;
1302
+ GridCol: GridTheme;
1303
+ GridRow: GridTheme;
1304
+ Heading: HeadingTheme;
1305
+ Img: ImgTheme;
1306
+ Link: LinkTheme;
1307
+ InlineListItem: InlineListItemTheme;
1308
+ 'InlineList.Item': InlineListItemTheme;
1309
+ ListItem: ListItemTheme;
1310
+ 'List.Item': ListItemTheme;
1311
+ List: ListTheme;
1312
+ MenuItem: MenuItemTheme;
1313
+ 'Menu.Item': MenuItemTheme;
1314
+ MenuGroup: MenuGroupTheme;
1315
+ 'Menu.Group': MenuGroupTheme;
1316
+ MenuSeparator: MenuSeparatorTheme;
1317
+ 'Menu.Separator': MenuSeparatorTheme;
1318
+ Menu: MenuTheme;
1319
+ Metric: MetricTheme;
1320
+ MetricGroup: MetricGroupTheme;
1321
+ ModalBody: ModalBodyTheme;
1322
+ 'Modal.Body': ModalBodyTheme;
1323
+ ModalFooter: ModalFooterTheme;
1324
+ 'Modal.Footer': ModalFooterTheme;
1325
+ ModalHeader: ModalHeaderTheme;
1326
+ 'Modal.Header': ModalHeaderTheme;
1327
+ Modal: ModalTheme;
1328
+ Transition: TransitionTheme;
1329
+ AppNavItem: AppNavItemTheme;
1330
+ 'AppNav.Item': AppNavItemTheme;
1331
+ AppNav: AppNavTheme;
1332
+ NavigationItem: NavigationItemTheme;
1333
+ 'Navigation.Item': NavigationItemTheme;
1334
+ Navigation: NavigationTheme;
1335
+ NumberInput: NumberInputTheme;
1336
+ OptionsItem: OptionsItemTheme;
1337
+ 'Options.Item': OptionsItemTheme;
1338
+ OptionsSeparator: OptionsSeparatorTheme;
1339
+ 'Options.Separator': OptionsSeparatorTheme;
1340
+ Options: OptionsTheme;
1341
+ Mask: MaskTheme;
1342
+ Pages: PagesTheme;
1343
+ Position: PositionTheme;
1344
+ Pill: PillTheme;
1345
+ ProgressBar: ProgressBarTheme;
1346
+ ProgressCircle: ProgressCircleTheme;
1347
+ RangeInput: RangeInputTheme;
1348
+ RadioInput: RadioInputTheme;
1349
+ RatingIcon: RatingIconTheme;
1350
+ 'Rating.Icon': RatingIconTheme;
1351
+ Select: SelectTheme;
1352
+ Spinner: SpinnerTheme;
1353
+ InlineSVG: InlineSVGTheme;
1354
+ SVGIcon: SVGIconTheme;
1355
+ TableBody: TableBodyTheme;
1356
+ 'Table.Body': TableBodyTheme;
1357
+ TableCell: TableCellTheme;
1358
+ 'Table.Cell': TableCellTheme;
1359
+ TableColHeader: TableColHeaderTheme;
1360
+ 'Table.ColHeader': TableColHeaderTheme;
1361
+ TableHead: TableHeadTheme;
1362
+ 'Table.Head': TableHeadTheme;
1363
+ TableRow: TableRowTheme;
1364
+ 'Table.Row': TableRowTheme;
1365
+ TableRowHeader: TableRowHeaderTheme;
1366
+ 'Table.RowHeader': TableRowHeaderTheme;
1367
+ TabsPanel: TabsPanelTheme;
1368
+ 'Tabs.Panel': TabsPanelTheme;
1369
+ TabsTab: TabsTabTheme;
1370
+ 'Tabs.Tab': TabsTabTheme;
1371
+ Table: TableTheme;
1372
+ Tabs: TabsTheme;
1373
+ Tag: TagTheme;
1374
+ Text: TextTheme;
1375
+ TextArea: TextAreaTheme;
1376
+ TextInput: TextInputTheme;
1377
+ ToggleDetails: ToggleDetailsTheme;
1378
+ Tooltip: TooltipTheme;
1379
+ Tray: TrayTheme;
1380
+ TreeBrowserButton: TreeBrowserButtonTheme;
1381
+ 'TreeBrowser.Button': TreeBrowserButtonTheme;
1382
+ TreeBrowserCollection: TreeBrowserCollectionTheme;
1383
+ 'TreeBrowser.Collection': TreeBrowserCollectionTheme;
1384
+ TreeBrowser: TreeBrowserTheme;
1385
+ TruncateText: TruncateTextTheme;
1386
+ ContextView: ContextViewTheme;
1387
+ View: ViewTheme;
1388
+ }
1389
+ //# sourceMappingURL=ComponentThemeVariables.d.ts.map