@pingux/astro 2.163.1-alpha.3 → 2.163.1-alpha.5
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/lib/cjs/components/LinkSelectField/LinkSelectField.js +7 -3
- package/lib/cjs/components/LinkSelectField/LinkSelectField.stories.js +20 -1
- package/lib/cjs/hooks/useGetTheme/useGetTheme.d.ts +2 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/index.d.ts +1 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/badges.d.ts +16 -11
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/badges.js +25 -21
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.d.ts +7 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.js +12 -5
- package/lib/cjs/styles/themes/astro/customProperties/index.d.ts +1 -0
- package/lib/cjs/styles/themes/astro/customProperties/index.js +3 -1
- package/lib/cjs/styles/themes/next-gen/colors/colors.d.ts +1 -0
- package/lib/cjs/styles/themes/next-gen/customProperties/index.d.ts +1 -0
- package/lib/cjs/styles/themes/next-gen/customProperties/index.js +3 -1
- package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +46 -25
- package/lib/cjs/styles/themes/next-gen/tokens/colorTokens.d.ts +1 -0
- package/lib/cjs/styles/themes/next-gen/tokens/colorTokens.js +2 -1
- package/lib/cjs/styles/themes/next-gen/variants/badges.d.ts +31 -25
- package/lib/cjs/styles/themes/next-gen/variants/badges.js +13 -12
- package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +14 -0
- package/lib/cjs/styles/themes/next-gen/variants/variants.js +16 -2
- package/lib/components/LinkSelectField/LinkSelectField.js +7 -3
- package/lib/components/LinkSelectField/LinkSelectField.stories.js +19 -0
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/badges.js +25 -21
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/variants.js +12 -5
- package/lib/styles/themes/astro/customProperties/index.js +3 -1
- package/lib/styles/themes/next-gen/customProperties/index.js +3 -1
- package/lib/styles/themes/next-gen/tokens/colorTokens.js +2 -1
- package/lib/styles/themes/next-gen/variants/badges.js +13 -12
- package/lib/styles/themes/next-gen/variants/variants.js +16 -2
- package/lib/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -41,17 +41,19 @@ var LinkSelectField = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref)
|
|
|
41
41
|
isDisabled = props.isDisabled,
|
|
42
42
|
status = props.status,
|
|
43
43
|
helperText = props.helperText,
|
|
44
|
-
hasInlineLoader = props.hasInlineLoader
|
|
44
|
+
hasInlineLoader = props.hasInlineLoader,
|
|
45
|
+
popoverWidth = props.popoverWidth;
|
|
45
46
|
var _getAriaAttributeProp = (0, _ariaAttributes.getAriaAttributeProps)(props),
|
|
46
47
|
ariaProps = _getAriaAttributeProp.ariaProps;
|
|
47
48
|
var _useGetTheme = (0, _hooks.useGetTheme)(),
|
|
49
|
+
linkSelectFieldWidth = _useGetTheme.linkSelectFieldWidth,
|
|
48
50
|
themeState = _useGetTheme.themeState;
|
|
49
51
|
var isOnyx = themeState.isOnyx;
|
|
50
52
|
var helperTextId = (0, _uuid.v4)();
|
|
51
53
|
(0, _hooks.usePropWarning)(props, 'disabled', 'isDisabled');
|
|
52
54
|
var _useSelectField = (0, _hooks.useSelectField)(_objectSpread(_objectSpread({
|
|
53
55
|
listboxStyle: {
|
|
54
|
-
width:
|
|
56
|
+
width: popoverWidth || linkSelectFieldWidth
|
|
55
57
|
}
|
|
56
58
|
}, props), {}, {
|
|
57
59
|
// Need this for not applying is-default class
|
|
@@ -162,7 +164,9 @@ LinkSelectField.propTypes = _objectSpread(_objectSpread(_objectSpread({
|
|
|
162
164
|
*/
|
|
163
165
|
onSelectionChange: _propTypes["default"].func,
|
|
164
166
|
/** Display an inline loader inside the select trigger while loading. */
|
|
165
|
-
hasInlineLoader: _propTypes["default"].bool
|
|
167
|
+
hasInlineLoader: _propTypes["default"].bool,
|
|
168
|
+
/** Width of the popover menu. Accepts any valid CSS unit. */
|
|
169
|
+
popoverWidth: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
|
|
166
170
|
}, _statusProp.statusPropTypes), _fieldAttributes.inputFieldAttributesBasePropTypes), _ariaAttributes.ariaAttributesBasePropTypes);
|
|
167
171
|
LinkSelectField.defaultProps = _objectSpread({
|
|
168
172
|
placeholder: 'Select',
|
|
@@ -20,7 +20,7 @@ var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequ
|
|
|
20
20
|
_Object$defineProperty(exports, "__esModule", {
|
|
21
21
|
value: true
|
|
22
22
|
});
|
|
23
|
-
exports["default"] = exports.WithNoneOption = exports.NoOptionsAvailable = exports.LeftLabel = exports.HelperText = exports.DynamicItems = exports.DisabledOptions = exports.DisabledField = exports.Default = exports.Controlled = exports.AsyncLoading = void 0;
|
|
23
|
+
exports["default"] = exports.WithPopoverWidth = exports.WithNoneOption = exports.NoOptionsAvailable = exports.LeftLabel = exports.HelperText = exports.DynamicItems = exports.DisabledOptions = exports.DisabledField = exports.Default = exports.Controlled = exports.AsyncLoading = void 0;
|
|
24
24
|
var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/asyncToGenerator"));
|
|
25
25
|
var _map = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/map"));
|
|
26
26
|
var _fill = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/fill"));
|
|
@@ -324,4 +324,23 @@ var AsyncLoading = exports.AsyncLoading = function AsyncLoading() {
|
|
|
324
324
|
key: item.id
|
|
325
325
|
}, item.name.given);
|
|
326
326
|
}));
|
|
327
|
+
};
|
|
328
|
+
var WithPopoverWidth = exports.WithPopoverWidth = function WithPopoverWidth(args) {
|
|
329
|
+
return (0, _react2.jsx)(_reactAria.OverlayProvider, null, (0, _react2.jsx)(_index.LinkSelectField, (0, _extends2["default"])({}, args, {
|
|
330
|
+
width: "100%",
|
|
331
|
+
popoverWidth: "20rem"
|
|
332
|
+
}), (0, _react2.jsx)(_index.Item, {
|
|
333
|
+
key: "red"
|
|
334
|
+
}, "Red"), (0, _react2.jsx)(_index.Item, {
|
|
335
|
+
key: "blue"
|
|
336
|
+
}, "Blue"), (0, _react2.jsx)(_index.Item, {
|
|
337
|
+
key: "yellow"
|
|
338
|
+
}, "Extra long goes here")));
|
|
339
|
+
};
|
|
340
|
+
WithPopoverWidth.parameters = {
|
|
341
|
+
docs: {
|
|
342
|
+
description: {
|
|
343
|
+
story: 'The `popoverWidth` prop can be used to set a custom width for the dropdown/popover.'
|
|
344
|
+
}
|
|
345
|
+
}
|
|
327
346
|
};
|
|
@@ -80,6 +80,7 @@ declare const useGetTheme: () => {
|
|
|
80
80
|
defaultIconSize: import("../..").IconSize;
|
|
81
81
|
calendarIconSize: import("../..").IconSize;
|
|
82
82
|
buttonLoaderSize: import("../..").LoaderSize;
|
|
83
|
+
linkSelectFieldWidth: string;
|
|
83
84
|
themeState: {
|
|
84
85
|
isAstro: boolean;
|
|
85
86
|
isOnyx: boolean;
|
|
@@ -170,6 +171,7 @@ declare const useGetTheme: () => {
|
|
|
170
171
|
defaultIconSize: import("../..").IconSize;
|
|
171
172
|
calendarIconSize: import("../..").IconSize;
|
|
172
173
|
buttonLoaderSize: import("../..").LoaderSize;
|
|
174
|
+
linkSelectFieldWidth: string;
|
|
173
175
|
themeState: {
|
|
174
176
|
isOnyx: boolean;
|
|
175
177
|
isOnyxDark: boolean;
|
|
@@ -50,45 +50,50 @@ declare const badges: {
|
|
|
50
50
|
backgroundColor: string;
|
|
51
51
|
color: string;
|
|
52
52
|
};
|
|
53
|
-
|
|
53
|
+
countBadge: {
|
|
54
54
|
backgroundColor: string;
|
|
55
55
|
'& span': {
|
|
56
56
|
color: string;
|
|
57
57
|
};
|
|
58
58
|
};
|
|
59
|
-
|
|
59
|
+
countNeutral: {
|
|
60
60
|
backgroundColor: string;
|
|
61
|
-
paddingRight: string;
|
|
62
|
-
pl: string;
|
|
63
61
|
'& span': {
|
|
64
|
-
fontSize: string;
|
|
65
62
|
color: string;
|
|
66
|
-
fontWeight: number;
|
|
67
63
|
};
|
|
68
64
|
};
|
|
69
|
-
|
|
65
|
+
selectedItemBadge: {
|
|
70
66
|
backgroundColor: string;
|
|
71
67
|
'& span': {
|
|
72
68
|
color: string;
|
|
73
69
|
};
|
|
74
70
|
};
|
|
75
|
-
|
|
71
|
+
readOnlyBadge: {
|
|
72
|
+
color: string;
|
|
76
73
|
backgroundColor: string;
|
|
74
|
+
borderColor: string;
|
|
77
75
|
'& span': {
|
|
78
76
|
color: string;
|
|
79
77
|
};
|
|
80
78
|
};
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
79
|
+
readOnlyFieldBadge: {
|
|
80
|
+
color: string;
|
|
81
|
+
backgroundColor: string;
|
|
82
|
+
borderColor: string;
|
|
84
83
|
'& span': {
|
|
85
84
|
color: string;
|
|
86
85
|
};
|
|
86
|
+
};
|
|
87
|
+
itemBadgeWithSlot: {
|
|
87
88
|
'& svg': {
|
|
88
89
|
path: {
|
|
89
90
|
fill: string;
|
|
90
91
|
};
|
|
91
92
|
};
|
|
93
|
+
backgroundColor: string;
|
|
94
|
+
'& span': {
|
|
95
|
+
color: string;
|
|
96
|
+
};
|
|
92
97
|
};
|
|
93
98
|
errorCalloutBadge: {
|
|
94
99
|
backgroundColor: string;
|
|
@@ -64,18 +64,35 @@ var countNeutral = {
|
|
|
64
64
|
color: 'white'
|
|
65
65
|
}
|
|
66
66
|
};
|
|
67
|
-
var
|
|
68
|
-
|
|
69
|
-
|
|
67
|
+
var readOnlyBadge = {
|
|
68
|
+
color: 'gray-100',
|
|
69
|
+
backgroundColor: '#23282E !important',
|
|
70
|
+
borderColor: 'border.attachment',
|
|
70
71
|
'& span': {
|
|
71
72
|
color: 'gray-100'
|
|
72
|
-
}
|
|
73
|
+
}
|
|
74
|
+
};
|
|
75
|
+
var readOnlyFieldBadge = {
|
|
76
|
+
color: 'gray-100',
|
|
77
|
+
backgroundColor: '#23282E !important',
|
|
78
|
+
borderColor: 'border.attachment',
|
|
79
|
+
'& span': {
|
|
80
|
+
color: 'gray-100'
|
|
81
|
+
}
|
|
82
|
+
};
|
|
83
|
+
var selectedItemBadge = {
|
|
84
|
+
backgroundColor: '#155CBA !important',
|
|
85
|
+
'& span': {
|
|
86
|
+
color: 'gray-100'
|
|
87
|
+
}
|
|
88
|
+
};
|
|
89
|
+
var itemBadgeWithSlot = _objectSpread(_objectSpread({}, selectedItemBadge), {}, {
|
|
73
90
|
'& svg': {
|
|
74
91
|
path: {
|
|
75
92
|
fill: 'gray-100'
|
|
76
93
|
}
|
|
77
94
|
}
|
|
78
|
-
};
|
|
95
|
+
});
|
|
79
96
|
var badges = {
|
|
80
97
|
baseBadge: baseBadge,
|
|
81
98
|
primary: primary,
|
|
@@ -90,24 +107,11 @@ var badges = {
|
|
|
90
107
|
criticalStatusBadge: criticalStatusBadge,
|
|
91
108
|
healthyStatusBadge: healthyStatusBadge,
|
|
92
109
|
secondaryStatusBadge: secondaryStatusBadge,
|
|
93
|
-
readOnlyFieldBadge: {
|
|
94
|
-
backgroundColor: '#F6F8FA !important',
|
|
95
|
-
'& span': {
|
|
96
|
-
color: 'black'
|
|
97
|
-
}
|
|
98
|
-
},
|
|
99
|
-
selectedItemBadge: {
|
|
100
|
-
backgroundColor: '#1a73e8 !important',
|
|
101
|
-
paddingRight: '0px !important',
|
|
102
|
-
pl: '10px',
|
|
103
|
-
'& span': {
|
|
104
|
-
fontSize: '14px',
|
|
105
|
-
color: 'gray-400',
|
|
106
|
-
fontWeight: 400
|
|
107
|
-
}
|
|
108
|
-
},
|
|
109
110
|
countBadge: countBadge,
|
|
110
111
|
countNeutral: countNeutral,
|
|
112
|
+
selectedItemBadge: selectedItemBadge,
|
|
113
|
+
readOnlyBadge: readOnlyBadge,
|
|
114
|
+
readOnlyFieldBadge: readOnlyFieldBadge,
|
|
111
115
|
itemBadgeWithSlot: itemBadgeWithSlot,
|
|
112
116
|
errorCalloutBadge: {
|
|
113
117
|
backgroundColor: '#23282e !important',
|
|
@@ -423,6 +423,7 @@ declare const _default: {
|
|
|
423
423
|
borderRadius: string;
|
|
424
424
|
};
|
|
425
425
|
option: {
|
|
426
|
+
color: string;
|
|
426
427
|
'&.is-focused': {
|
|
427
428
|
color: string;
|
|
428
429
|
bg: string;
|
|
@@ -434,6 +435,12 @@ declare const _default: {
|
|
|
434
435
|
color: string;
|
|
435
436
|
};
|
|
436
437
|
};
|
|
438
|
+
'&.is-condensed': {
|
|
439
|
+
color: string;
|
|
440
|
+
'&.is-focused': {
|
|
441
|
+
color: string;
|
|
442
|
+
};
|
|
443
|
+
};
|
|
437
444
|
'&.is-focus-visible': {
|
|
438
445
|
zIndex: number;
|
|
439
446
|
};
|
|
@@ -26,15 +26,22 @@ var listBox = {
|
|
|
26
26
|
borderRadius: '4px'
|
|
27
27
|
},
|
|
28
28
|
option: {
|
|
29
|
+
color: 'gray-400',
|
|
29
30
|
'&.is-focused': {
|
|
30
|
-
color: '
|
|
31
|
-
bg: '
|
|
31
|
+
color: 'gray-200',
|
|
32
|
+
bg: '#2C323A'
|
|
32
33
|
},
|
|
33
34
|
'&.is-selected': {
|
|
34
|
-
color: '
|
|
35
|
-
bg: '
|
|
35
|
+
color: 'gray-200',
|
|
36
|
+
bg: '#2C323A',
|
|
36
37
|
'&.is-focused': {
|
|
37
|
-
color: '
|
|
38
|
+
color: 'gray-200'
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
'&.is-condensed': {
|
|
42
|
+
color: 'gray-400',
|
|
43
|
+
'&.is-focused': {
|
|
44
|
+
color: 'gray-200'
|
|
38
45
|
}
|
|
39
46
|
},
|
|
40
47
|
'&.is-focus-visible': {
|
|
@@ -28,6 +28,7 @@ var buttonLoaderSize = '0.5em';
|
|
|
28
28
|
var iFrameContentDivBackgroundColor = '#F7F8FD';
|
|
29
29
|
var defaultIconColor = 'currentColor';
|
|
30
30
|
var defaultIconSize = 'sm';
|
|
31
|
+
var linkSelectFieldWidth = '10em';
|
|
31
32
|
var calendarIconSize = 25;
|
|
32
33
|
var astroThemeValues = exports.astroThemeValues = {
|
|
33
34
|
accordionItemDefaultLabelTag: accordionItemDefaultLabelTag,
|
|
@@ -49,5 +50,6 @@ var astroThemeValues = exports.astroThemeValues = {
|
|
|
49
50
|
defaultIconColor: defaultIconColor,
|
|
50
51
|
defaultIconSize: defaultIconSize,
|
|
51
52
|
calendarIconSize: calendarIconSize,
|
|
52
|
-
buttonLoaderSize: buttonLoaderSize
|
|
53
|
+
buttonLoaderSize: buttonLoaderSize,
|
|
54
|
+
linkSelectFieldWidth: linkSelectFieldWidth
|
|
53
55
|
};
|
|
@@ -31,6 +31,7 @@ var iFrameContentDivBackgroundColor = backgroundBaseColor;
|
|
|
31
31
|
var defaultIconColor = 'gray-800';
|
|
32
32
|
var defaultIconSize = 'md';
|
|
33
33
|
var buttonLoaderSize = 'sm';
|
|
34
|
+
var linkSelectFieldWidth = '12em';
|
|
34
35
|
var calendarIconSize = 'sm';
|
|
35
36
|
var nextGenThemeValues = exports.nextGenThemeValues = _objectSpread({
|
|
36
37
|
activeColor: activeColor,
|
|
@@ -46,5 +47,6 @@ var nextGenThemeValues = exports.nextGenThemeValues = _objectSpread({
|
|
|
46
47
|
rockerButtonGap: '0px',
|
|
47
48
|
defaultIconSize: defaultIconSize,
|
|
48
49
|
calendarIconSize: calendarIconSize,
|
|
49
|
-
buttonLoaderSize: buttonLoaderSize
|
|
50
|
+
buttonLoaderSize: buttonLoaderSize,
|
|
51
|
+
linkSelectFieldWidth: linkSelectFieldWidth
|
|
50
52
|
}, _customSizes["default"]);
|
|
@@ -257,6 +257,7 @@ declare const _default: {
|
|
|
257
257
|
link: string;
|
|
258
258
|
label: string;
|
|
259
259
|
reverse: string;
|
|
260
|
+
hover: string;
|
|
260
261
|
};
|
|
261
262
|
active_hover: string;
|
|
262
263
|
active_pressed: string;
|
|
@@ -2246,7 +2247,7 @@ declare const _default: {
|
|
|
2246
2247
|
baseBadge: {
|
|
2247
2248
|
'& span': {
|
|
2248
2249
|
fontSize: string;
|
|
2249
|
-
fontWeight:
|
|
2250
|
+
fontWeight: string;
|
|
2250
2251
|
};
|
|
2251
2252
|
'& button': {
|
|
2252
2253
|
alignSelf: string;
|
|
@@ -2282,7 +2283,7 @@ declare const _default: {
|
|
|
2282
2283
|
default: {
|
|
2283
2284
|
'& span': {
|
|
2284
2285
|
fontSize: string;
|
|
2285
|
-
fontWeight:
|
|
2286
|
+
fontWeight: string;
|
|
2286
2287
|
};
|
|
2287
2288
|
'& button': {
|
|
2288
2289
|
alignSelf: string;
|
|
@@ -2320,7 +2321,7 @@ declare const _default: {
|
|
|
2320
2321
|
color: string;
|
|
2321
2322
|
'& span': {
|
|
2322
2323
|
fontSize: string;
|
|
2323
|
-
fontWeight:
|
|
2324
|
+
fontWeight: string;
|
|
2324
2325
|
};
|
|
2325
2326
|
'& button': {
|
|
2326
2327
|
alignSelf: string;
|
|
@@ -2357,7 +2358,7 @@ declare const _default: {
|
|
|
2357
2358
|
'& span': {
|
|
2358
2359
|
color: string;
|
|
2359
2360
|
fontSize: string;
|
|
2360
|
-
fontWeight:
|
|
2361
|
+
fontWeight: string;
|
|
2361
2362
|
};
|
|
2362
2363
|
'& button': {
|
|
2363
2364
|
alignSelf: string;
|
|
@@ -2395,7 +2396,7 @@ declare const _default: {
|
|
|
2395
2396
|
color: string;
|
|
2396
2397
|
'& span': {
|
|
2397
2398
|
fontSize: string;
|
|
2398
|
-
fontWeight:
|
|
2399
|
+
fontWeight: string;
|
|
2399
2400
|
};
|
|
2400
2401
|
'& button': {
|
|
2401
2402
|
alignSelf: string;
|
|
@@ -2432,7 +2433,7 @@ declare const _default: {
|
|
|
2432
2433
|
color: string;
|
|
2433
2434
|
'& span': {
|
|
2434
2435
|
fontSize: string;
|
|
2435
|
-
fontWeight:
|
|
2436
|
+
fontWeight: string;
|
|
2436
2437
|
};
|
|
2437
2438
|
'& button': {
|
|
2438
2439
|
alignSelf: string;
|
|
@@ -2469,7 +2470,7 @@ declare const _default: {
|
|
|
2469
2470
|
color: string;
|
|
2470
2471
|
'& span': {
|
|
2471
2472
|
fontSize: string;
|
|
2472
|
-
fontWeight:
|
|
2473
|
+
fontWeight: string;
|
|
2473
2474
|
};
|
|
2474
2475
|
'& button': {
|
|
2475
2476
|
alignSelf: string;
|
|
@@ -2506,7 +2507,7 @@ declare const _default: {
|
|
|
2506
2507
|
color: string;
|
|
2507
2508
|
'& span': {
|
|
2508
2509
|
fontSize: string;
|
|
2509
|
-
fontWeight:
|
|
2510
|
+
fontWeight: string;
|
|
2510
2511
|
};
|
|
2511
2512
|
'& button': {
|
|
2512
2513
|
alignSelf: string;
|
|
@@ -2543,7 +2544,7 @@ declare const _default: {
|
|
|
2543
2544
|
color: string;
|
|
2544
2545
|
'& span': {
|
|
2545
2546
|
fontSize: string;
|
|
2546
|
-
fontWeight:
|
|
2547
|
+
fontWeight: string;
|
|
2547
2548
|
};
|
|
2548
2549
|
'& button': {
|
|
2549
2550
|
alignSelf: string;
|
|
@@ -2580,7 +2581,7 @@ declare const _default: {
|
|
|
2580
2581
|
color: string;
|
|
2581
2582
|
'& span': {
|
|
2582
2583
|
fontSize: string;
|
|
2583
|
-
fontWeight:
|
|
2584
|
+
fontWeight: string;
|
|
2584
2585
|
};
|
|
2585
2586
|
'& button': {
|
|
2586
2587
|
alignSelf: string;
|
|
@@ -2617,7 +2618,7 @@ declare const _default: {
|
|
|
2617
2618
|
color: string;
|
|
2618
2619
|
'& span': {
|
|
2619
2620
|
fontSize: string;
|
|
2620
|
-
fontWeight:
|
|
2621
|
+
fontWeight: string;
|
|
2621
2622
|
};
|
|
2622
2623
|
'& button': {
|
|
2623
2624
|
alignSelf: string;
|
|
@@ -2654,8 +2655,8 @@ declare const _default: {
|
|
|
2654
2655
|
paddingRight: string;
|
|
2655
2656
|
'& span': {
|
|
2656
2657
|
color: string;
|
|
2657
|
-
fontWeight: number;
|
|
2658
2658
|
fontSize: string;
|
|
2659
|
+
fontWeight: string;
|
|
2659
2660
|
};
|
|
2660
2661
|
'& button': {
|
|
2661
2662
|
alignSelf: string;
|
|
@@ -2690,10 +2691,13 @@ declare const _default: {
|
|
|
2690
2691
|
};
|
|
2691
2692
|
readOnlyBadge: {
|
|
2692
2693
|
border: string;
|
|
2694
|
+
borderColor: string;
|
|
2695
|
+
backgroundColor: string;
|
|
2693
2696
|
'& span': {
|
|
2694
2697
|
color: string;
|
|
2695
|
-
|
|
2698
|
+
lineHeight: string;
|
|
2696
2699
|
fontSize: string;
|
|
2700
|
+
fontWeight: string;
|
|
2697
2701
|
};
|
|
2698
2702
|
'& button': {
|
|
2699
2703
|
alignSelf: string;
|
|
@@ -2729,10 +2733,13 @@ declare const _default: {
|
|
|
2729
2733
|
readOnlyFieldBadge: {
|
|
2730
2734
|
'& span': {
|
|
2731
2735
|
color: string;
|
|
2736
|
+
lineHeight: string;
|
|
2732
2737
|
fontSize: string;
|
|
2733
|
-
fontWeight:
|
|
2738
|
+
fontWeight: string;
|
|
2734
2739
|
};
|
|
2735
2740
|
border: string;
|
|
2741
|
+
borderColor: string;
|
|
2742
|
+
backgroundColor: string;
|
|
2736
2743
|
'& button': {
|
|
2737
2744
|
alignSelf: string;
|
|
2738
2745
|
p: string;
|
|
@@ -2771,7 +2778,7 @@ declare const _default: {
|
|
|
2771
2778
|
color: string;
|
|
2772
2779
|
'& span': {
|
|
2773
2780
|
fontSize: string;
|
|
2774
|
-
fontWeight:
|
|
2781
|
+
fontWeight: string;
|
|
2775
2782
|
};
|
|
2776
2783
|
'& button': {
|
|
2777
2784
|
alignSelf: string;
|
|
@@ -2810,7 +2817,7 @@ declare const _default: {
|
|
|
2810
2817
|
color: string;
|
|
2811
2818
|
'& span': {
|
|
2812
2819
|
fontSize: string;
|
|
2813
|
-
fontWeight:
|
|
2820
|
+
fontWeight: string;
|
|
2814
2821
|
};
|
|
2815
2822
|
'& button': {
|
|
2816
2823
|
alignSelf: string;
|
|
@@ -2849,7 +2856,7 @@ declare const _default: {
|
|
|
2849
2856
|
color: string;
|
|
2850
2857
|
'& span': {
|
|
2851
2858
|
fontSize: string;
|
|
2852
|
-
fontWeight:
|
|
2859
|
+
fontWeight: string;
|
|
2853
2860
|
};
|
|
2854
2861
|
'& button': {
|
|
2855
2862
|
alignSelf: string;
|
|
@@ -2888,7 +2895,7 @@ declare const _default: {
|
|
|
2888
2895
|
color: string;
|
|
2889
2896
|
'& span': {
|
|
2890
2897
|
fontSize: string;
|
|
2891
|
-
fontWeight:
|
|
2898
|
+
fontWeight: string;
|
|
2892
2899
|
};
|
|
2893
2900
|
'& button': {
|
|
2894
2901
|
alignSelf: string;
|
|
@@ -2927,7 +2934,7 @@ declare const _default: {
|
|
|
2927
2934
|
color: string;
|
|
2928
2935
|
'& span': {
|
|
2929
2936
|
fontSize: string;
|
|
2930
|
-
fontWeight:
|
|
2937
|
+
fontWeight: string;
|
|
2931
2938
|
};
|
|
2932
2939
|
'& button': {
|
|
2933
2940
|
alignSelf: string;
|
|
@@ -2991,17 +2998,17 @@ declare const _default: {
|
|
|
2991
2998
|
boxShadow: string;
|
|
2992
2999
|
};
|
|
2993
3000
|
itemBadgeWithSlot: {
|
|
2994
|
-
|
|
2995
|
-
fontWeight: number;
|
|
3001
|
+
border: string;
|
|
2996
3002
|
'& span': {
|
|
2997
3003
|
color: string;
|
|
2998
3004
|
fontSize: string;
|
|
2999
|
-
fontWeight:
|
|
3005
|
+
fontWeight: string;
|
|
3000
3006
|
};
|
|
3001
3007
|
'& svg': {
|
|
3002
3008
|
fill: string;
|
|
3003
3009
|
};
|
|
3004
|
-
|
|
3010
|
+
backgroundColor: string;
|
|
3011
|
+
paddingRight: string;
|
|
3005
3012
|
'& button': {
|
|
3006
3013
|
alignSelf: string;
|
|
3007
3014
|
p: string;
|
|
@@ -3034,7 +3041,7 @@ declare const _default: {
|
|
|
3034
3041
|
color: string;
|
|
3035
3042
|
'& span': {
|
|
3036
3043
|
fontSize: string;
|
|
3037
|
-
fontWeight:
|
|
3044
|
+
fontWeight: string;
|
|
3038
3045
|
};
|
|
3039
3046
|
'& button': {
|
|
3040
3047
|
alignSelf: string;
|
|
@@ -3071,7 +3078,7 @@ declare const _default: {
|
|
|
3071
3078
|
color: string;
|
|
3072
3079
|
'& span': {
|
|
3073
3080
|
fontSize: string;
|
|
3074
|
-
fontWeight:
|
|
3081
|
+
fontWeight: string;
|
|
3075
3082
|
};
|
|
3076
3083
|
'& button': {
|
|
3077
3084
|
alignSelf: string;
|
|
@@ -4435,6 +4442,9 @@ declare const _default: {
|
|
|
4435
4442
|
pl: string;
|
|
4436
4443
|
pr: string;
|
|
4437
4444
|
justifyContent: string;
|
|
4445
|
+
borderRadius: string;
|
|
4446
|
+
lineHeight: string;
|
|
4447
|
+
color: string;
|
|
4438
4448
|
'&.is-focused': {
|
|
4439
4449
|
color: string;
|
|
4440
4450
|
bg: string;
|
|
@@ -4464,14 +4474,25 @@ declare const _default: {
|
|
|
4464
4474
|
'&.is-condensed': {
|
|
4465
4475
|
pl: string;
|
|
4466
4476
|
bg: string;
|
|
4477
|
+
color: string;
|
|
4467
4478
|
'&.is-selected': {
|
|
4468
4479
|
bg: string;
|
|
4469
4480
|
};
|
|
4470
4481
|
'&.is-focused': {
|
|
4471
4482
|
bg: string;
|
|
4483
|
+
color: string;
|
|
4472
4484
|
};
|
|
4473
4485
|
};
|
|
4474
4486
|
};
|
|
4487
|
+
sectionTitle: {
|
|
4488
|
+
color: string;
|
|
4489
|
+
fontWeight: string;
|
|
4490
|
+
fontSize: string;
|
|
4491
|
+
lineHeight: string;
|
|
4492
|
+
textTransform: string;
|
|
4493
|
+
letterSpacing: string;
|
|
4494
|
+
ml: string;
|
|
4495
|
+
};
|
|
4475
4496
|
};
|
|
4476
4497
|
listView: {
|
|
4477
4498
|
container: {
|
|
@@ -130,7 +130,8 @@ var nextGenColors = exports.nextGenColors = {
|
|
|
130
130
|
'light': '#5e6d82',
|
|
131
131
|
'link': '#1a73e8',
|
|
132
132
|
'label': '#5e6d82',
|
|
133
|
-
'reverse': '#ffffff'
|
|
133
|
+
'reverse': '#ffffff',
|
|
134
|
+
'hover': '#121518'
|
|
134
135
|
},
|
|
135
136
|
'active': '#1a73e8',
|
|
136
137
|
'active_hover': '#1462C8',
|