@pingux/astro 2.154.1 → 2.155.0-alpha.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/lib/cjs/components/Button/Buttons.styles.d.ts +859 -0
- package/lib/cjs/components/Button/Buttons.styles.js +17 -1
- package/lib/cjs/components/Card/Card.mdx +5 -1
- package/lib/cjs/components/Card/Card.stories.d.ts +1 -0
- package/lib/cjs/components/Card/Card.stories.js +11 -2
- package/lib/cjs/components/SearchNav/MoreItemsPopover.d.ts +4 -0
- package/lib/cjs/components/SearchNav/MoreItemsPopover.js +74 -0
- package/lib/cjs/components/SearchNav/SearchNav.chromatic.stories.d.ts +6 -0
- package/lib/cjs/components/SearchNav/SearchNav.chromatic.stories.js +101 -0
- package/lib/cjs/components/SearchNav/SearchNav.d.ts +13 -0
- package/lib/cjs/components/SearchNav/SearchNav.js +218 -0
- package/lib/cjs/components/SearchNav/SearchNav.stories.d.ts +6 -0
- package/lib/cjs/components/SearchNav/SearchNav.stories.js +76 -0
- package/lib/cjs/components/SearchNav/SearchNav.styles.d.ts +33 -0
- package/lib/cjs/components/SearchNav/SearchNav.styles.js +51 -0
- package/lib/cjs/components/SearchNav/SearchNav.test.d.ts +1 -0
- package/lib/cjs/components/SearchNav/SearchNav.test.js +610 -0
- package/lib/cjs/components/SearchNav/SearchNavTab.d.ts +4 -0
- package/lib/cjs/components/SearchNav/SearchNavTab.js +69 -0
- package/lib/cjs/components/SearchNav/index.d.ts +1 -0
- package/lib/cjs/components/SearchNav/index.js +14 -0
- package/lib/cjs/components/Text/Text.styles.d.ts +2548 -0
- package/lib/cjs/components/Text/Text.styles.js +23 -1
- package/lib/cjs/index.d.ts +2 -0
- package/lib/cjs/index.js +45 -26
- package/lib/cjs/styles/colors.d.ts +6 -0
- package/lib/cjs/styles/colors.js +4 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/colors.d.ts +1 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/colors.js +2 -1
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/buttons.d.ts +9 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/buttons.js +10 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/cards.d.ts +14 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/cards.js +18 -4
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/text.d.ts +12 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/text.js +12 -0
- package/lib/cjs/styles/themes/next-gen/convertedComponentList.d.ts +1 -0
- package/lib/cjs/styles/themes/next-gen/convertedComponentList.js +3 -2
- package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +37 -2
- package/lib/cjs/styles/themes/next-gen/next-gen.js +3 -0
- package/lib/cjs/styles/themes/next-gen/variants/button.d.ts +9 -0
- package/lib/cjs/styles/themes/next-gen/variants/button.js +10 -0
- package/lib/cjs/styles/themes/next-gen/variants/cards.d.ts +19 -2
- package/lib/cjs/styles/themes/next-gen/variants/cards.js +14 -5
- package/lib/cjs/styles/themes/next-gen/variants/searchNav.d.ts +6 -0
- package/lib/cjs/styles/themes/next-gen/variants/searchNav.js +14 -0
- package/lib/cjs/styles/themes/next-gen/variants/text.d.ts +1 -0
- package/lib/cjs/styles/themes/next-gen/variants/text.js +2 -1
- package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +5 -0
- package/lib/cjs/styles/themes/next-gen/variants/variants.js +2 -0
- package/lib/cjs/styles/variants/variants.js +2 -0
- package/lib/cjs/types/searchNav.d.ts +49 -0
- package/lib/cjs/types/searchNav.js +6 -0
- package/lib/components/Button/Buttons.styles.js +18 -2
- package/lib/components/Card/Card.mdx +5 -1
- package/lib/components/Card/Card.stories.js +8 -0
- package/lib/components/SearchNav/MoreItemsPopover.js +60 -0
- package/lib/components/SearchNav/SearchNav.chromatic.stories.js +86 -0
- package/lib/components/SearchNav/SearchNav.js +203 -0
- package/lib/components/SearchNav/SearchNav.stories.js +61 -0
- package/lib/components/SearchNav/SearchNav.styles.js +43 -0
- package/lib/components/SearchNav/SearchNav.test.js +601 -0
- package/lib/components/SearchNav/SearchNavTab.js +55 -0
- package/lib/components/SearchNav/index.js +1 -0
- package/lib/components/Text/Text.styles.js +21 -1
- package/lib/index.js +2 -0
- package/lib/styles/colors.js +4 -0
- package/lib/styles/themeOverrides/nextGenDarkMode/colors.js +2 -1
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/buttons.js +10 -0
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/cards.js +18 -4
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/text.js +12 -0
- package/lib/styles/themes/next-gen/convertedComponentList.js +3 -2
- package/lib/styles/themes/next-gen/next-gen.js +3 -0
- package/lib/styles/themes/next-gen/variants/button.js +10 -0
- package/lib/styles/themes/next-gen/variants/cards.js +14 -5
- package/lib/styles/themes/next-gen/variants/searchNav.js +6 -0
- package/lib/styles/themes/next-gen/variants/text.js +2 -1
- package/lib/styles/themes/next-gen/variants/variants.js +2 -0
- package/lib/styles/variants/variants.js +2 -0
- package/lib/types/searchNav.js +1 -0
- package/package.json +1 -1
|
@@ -12,7 +12,7 @@ var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequ
|
|
|
12
12
|
_Object$defineProperty(exports, "__esModule", {
|
|
13
13
|
value: true
|
|
14
14
|
});
|
|
15
|
-
exports.wordWrap = exports.text = exports.base = void 0;
|
|
15
|
+
exports.wordWrap = exports.text = exports.tabLabel = exports.searchNavTabLabel = exports.base = void 0;
|
|
16
16
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/defineProperty"));
|
|
17
17
|
function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
18
18
|
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys(Object(source), !0)).call(_context, function (key) { (0, _defineProperty2["default"])(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
@@ -50,6 +50,27 @@ var tabLabel = _objectSpread(_objectSpread(_objectSpread({}, base), wordWrap), {
|
|
|
50
50
|
color: 'neutral.80'
|
|
51
51
|
}
|
|
52
52
|
});
|
|
53
|
+
exports.tabLabel = tabLabel;
|
|
54
|
+
var searchNavTabLabel = _objectSpread(_objectSpread({}, base), {}, {
|
|
55
|
+
whiteSpace: 'nowrap',
|
|
56
|
+
fontSize: 'sm',
|
|
57
|
+
fontWeight: 1,
|
|
58
|
+
mb: 'sm',
|
|
59
|
+
px: 'sm',
|
|
60
|
+
lineHeight: '16px',
|
|
61
|
+
color: 'neutral.40',
|
|
62
|
+
height: '100%',
|
|
63
|
+
'.is-selected &, .is-hovered &': {
|
|
64
|
+
color: 'active'
|
|
65
|
+
},
|
|
66
|
+
'.is-selected &': {
|
|
67
|
+
color: 'active'
|
|
68
|
+
},
|
|
69
|
+
'.is-disabled &': {
|
|
70
|
+
color: 'neutral.80'
|
|
71
|
+
}
|
|
72
|
+
});
|
|
73
|
+
exports.searchNavTabLabel = searchNavTabLabel;
|
|
53
74
|
var stepperLabel = _objectSpread(_objectSpread({}, base), {}, {
|
|
54
75
|
fontSize: '14px',
|
|
55
76
|
fontWeight: '500',
|
|
@@ -250,6 +271,7 @@ var text = _objectSpread(_objectSpread(_objectSpread({
|
|
|
250
271
|
}),
|
|
251
272
|
panelHeaderSubtext: _objectSpread(_objectSpread({}, listViewItemSubtext), textEllipsis),
|
|
252
273
|
panelHeaderText: _objectSpread(_objectSpread({}, listViewItemText), textEllipsis),
|
|
274
|
+
searchNavTabLabel: searchNavTabLabel,
|
|
253
275
|
sectionTitle: sectionTitle,
|
|
254
276
|
subtitle: subtitle,
|
|
255
277
|
tabLabel: tabLabel,
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -169,6 +169,8 @@ export { default as ScrollBox } from './components/ScrollBox';
|
|
|
169
169
|
export * from './components/ScrollBox';
|
|
170
170
|
export { default as SearchField } from './components/SearchField';
|
|
171
171
|
export * from './components/SearchField';
|
|
172
|
+
export { default as SearchNav } from './components/SearchNav';
|
|
173
|
+
export * from './components/SearchNav';
|
|
172
174
|
export { default as SelectField } from './components/SelectField';
|
|
173
175
|
export * from './components/SelectField';
|
|
174
176
|
export { default as Separator } from './components/Separator';
|
package/lib/cjs/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _context, _context2, _context3, _context4, _context5, _context6, _context7, _context8, _context9, _context10, _context11, _context12, _context13, _context14, _context15, _context16, _context17, _context18, _context19, _context20, _context21, _context22, _context23, _context24, _context25, _context26, _context27, _context28, _context29, _context30, _context31, _context32, _context33, _context34, _context35, _context36, _context37, _context38, _context39, _context40, _context41, _context42, _context43, _context44, _context45, _context46, _context47, _context48, _context49, _context50, _context51, _context52, _context53, _context54, _context55, _context56, _context57, _context58, _context59, _context60, _context61, _context62, _context63, _context64, _context65, _context66, _context67, _context68, _context69, _context70, _context71, _context72, _context73, _context74, _context75, _context76, _context77, _context78, _context79, _context80, _context81, _context82, _context83, _context84;
|
|
3
|
+
var _context, _context2, _context3, _context4, _context5, _context6, _context7, _context8, _context9, _context10, _context11, _context12, _context13, _context14, _context15, _context16, _context17, _context18, _context19, _context20, _context21, _context22, _context23, _context24, _context25, _context26, _context27, _context28, _context29, _context30, _context31, _context32, _context33, _context34, _context35, _context36, _context37, _context38, _context39, _context40, _context41, _context42, _context43, _context44, _context45, _context46, _context47, _context48, _context49, _context50, _context51, _context52, _context53, _context54, _context55, _context56, _context57, _context58, _context59, _context60, _context61, _context62, _context63, _context64, _context65, _context66, _context67, _context68, _context69, _context70, _context71, _context72, _context73, _context74, _context75, _context76, _context77, _context78, _context79, _context80, _context81, _context82, _context83, _context84, _context85;
|
|
4
4
|
var _typeof = require("@babel/runtime-corejs3/helpers/typeof");
|
|
5
5
|
var _WeakMap = require("@babel/runtime-corejs3/core-js-stable/weak-map");
|
|
6
6
|
var _Object$defineProperty = require("@babel/runtime-corejs3/core-js-stable/object/define-property");
|
|
@@ -125,6 +125,7 @@ var _exportNames = {
|
|
|
125
125
|
RockerButtonGroup: true,
|
|
126
126
|
ScrollBox: true,
|
|
127
127
|
SearchField: true,
|
|
128
|
+
SearchNav: true,
|
|
128
129
|
SelectField: true,
|
|
129
130
|
Separator: true,
|
|
130
131
|
ServerErrorBoundary: true,
|
|
@@ -919,6 +920,12 @@ _Object$defineProperty(exports, "SearchField", {
|
|
|
919
920
|
return _SearchField["default"];
|
|
920
921
|
}
|
|
921
922
|
});
|
|
923
|
+
_Object$defineProperty(exports, "SearchNav", {
|
|
924
|
+
enumerable: true,
|
|
925
|
+
get: function get() {
|
|
926
|
+
return _SearchNav["default"];
|
|
927
|
+
}
|
|
928
|
+
});
|
|
922
929
|
_Object$defineProperty(exports, "Section", {
|
|
923
930
|
enumerable: true,
|
|
924
931
|
get: function get() {
|
|
@@ -1906,8 +1913,20 @@ _forEachInstanceProperty(_context59 = _Object$keys(_SearchField)).call(_context5
|
|
|
1906
1913
|
}
|
|
1907
1914
|
});
|
|
1908
1915
|
});
|
|
1916
|
+
var _SearchNav = _interopRequireWildcard(require("./components/SearchNav"));
|
|
1917
|
+
_forEachInstanceProperty(_context60 = _Object$keys(_SearchNav)).call(_context60, function (key) {
|
|
1918
|
+
if (key === "default" || key === "__esModule") return;
|
|
1919
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
1920
|
+
if (key in exports && exports[key] === _SearchNav[key]) return;
|
|
1921
|
+
_Object$defineProperty(exports, key, {
|
|
1922
|
+
enumerable: true,
|
|
1923
|
+
get: function get() {
|
|
1924
|
+
return _SearchNav[key];
|
|
1925
|
+
}
|
|
1926
|
+
});
|
|
1927
|
+
});
|
|
1909
1928
|
var _SelectField = _interopRequireWildcard(require("./components/SelectField"));
|
|
1910
|
-
_forEachInstanceProperty(
|
|
1929
|
+
_forEachInstanceProperty(_context61 = _Object$keys(_SelectField)).call(_context61, function (key) {
|
|
1911
1930
|
if (key === "default" || key === "__esModule") return;
|
|
1912
1931
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
1913
1932
|
if (key in exports && exports[key] === _SelectField[key]) return;
|
|
@@ -1919,7 +1938,7 @@ _forEachInstanceProperty(_context60 = _Object$keys(_SelectField)).call(_context6
|
|
|
1919
1938
|
});
|
|
1920
1939
|
});
|
|
1921
1940
|
var _Separator = _interopRequireWildcard(require("./components/Separator"));
|
|
1922
|
-
_forEachInstanceProperty(
|
|
1941
|
+
_forEachInstanceProperty(_context62 = _Object$keys(_Separator)).call(_context62, function (key) {
|
|
1923
1942
|
if (key === "default" || key === "__esModule") return;
|
|
1924
1943
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
1925
1944
|
if (key in exports && exports[key] === _Separator[key]) return;
|
|
@@ -1931,7 +1950,7 @@ _forEachInstanceProperty(_context61 = _Object$keys(_Separator)).call(_context61,
|
|
|
1931
1950
|
});
|
|
1932
1951
|
});
|
|
1933
1952
|
var _ServerErrorBoundary = _interopRequireWildcard(require("./components/ServerErrorBoundary"));
|
|
1934
|
-
_forEachInstanceProperty(
|
|
1953
|
+
_forEachInstanceProperty(_context63 = _Object$keys(_ServerErrorBoundary)).call(_context63, function (key) {
|
|
1935
1954
|
if (key === "default" || key === "__esModule") return;
|
|
1936
1955
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
1937
1956
|
if (key in exports && exports[key] === _ServerErrorBoundary[key]) return;
|
|
@@ -1943,7 +1962,7 @@ _forEachInstanceProperty(_context62 = _Object$keys(_ServerErrorBoundary)).call(_
|
|
|
1943
1962
|
});
|
|
1944
1963
|
});
|
|
1945
1964
|
var _Skeleton = _interopRequireWildcard(require("./components/Skeleton"));
|
|
1946
|
-
_forEachInstanceProperty(
|
|
1965
|
+
_forEachInstanceProperty(_context64 = _Object$keys(_Skeleton)).call(_context64, function (key) {
|
|
1947
1966
|
if (key === "default" || key === "__esModule") return;
|
|
1948
1967
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
1949
1968
|
if (key in exports && exports[key] === _Skeleton[key]) return;
|
|
@@ -1956,7 +1975,7 @@ _forEachInstanceProperty(_context63 = _Object$keys(_Skeleton)).call(_context63,
|
|
|
1956
1975
|
});
|
|
1957
1976
|
var _SliderField = _interopRequireDefault(require("./components/SliderField/SliderField"));
|
|
1958
1977
|
var _StatusIcon = _interopRequireWildcard(require("./components/StatusIcon"));
|
|
1959
|
-
_forEachInstanceProperty(
|
|
1978
|
+
_forEachInstanceProperty(_context65 = _Object$keys(_StatusIcon)).call(_context65, function (key) {
|
|
1960
1979
|
if (key === "default" || key === "__esModule") return;
|
|
1961
1980
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
1962
1981
|
if (key in exports && exports[key] === _StatusIcon[key]) return;
|
|
@@ -1968,7 +1987,7 @@ _forEachInstanceProperty(_context64 = _Object$keys(_StatusIcon)).call(_context64
|
|
|
1968
1987
|
});
|
|
1969
1988
|
});
|
|
1970
1989
|
var _Stepper = _interopRequireWildcard(require("./components/Stepper"));
|
|
1971
|
-
_forEachInstanceProperty(
|
|
1990
|
+
_forEachInstanceProperty(_context66 = _Object$keys(_Stepper)).call(_context66, function (key) {
|
|
1972
1991
|
if (key === "default" || key === "__esModule") return;
|
|
1973
1992
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
1974
1993
|
if (key in exports && exports[key] === _Stepper[key]) return;
|
|
@@ -1980,7 +1999,7 @@ _forEachInstanceProperty(_context65 = _Object$keys(_Stepper)).call(_context65, f
|
|
|
1980
1999
|
});
|
|
1981
2000
|
});
|
|
1982
2001
|
var _Switch = _interopRequireWildcard(require("./components/Switch"));
|
|
1983
|
-
_forEachInstanceProperty(
|
|
2002
|
+
_forEachInstanceProperty(_context67 = _Object$keys(_Switch)).call(_context67, function (key) {
|
|
1984
2003
|
if (key === "default" || key === "__esModule") return;
|
|
1985
2004
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
1986
2005
|
if (key in exports && exports[key] === _Switch[key]) return;
|
|
@@ -1992,7 +2011,7 @@ _forEachInstanceProperty(_context66 = _Object$keys(_Switch)).call(_context66, fu
|
|
|
1992
2011
|
});
|
|
1993
2012
|
});
|
|
1994
2013
|
var _SwitchField = _interopRequireWildcard(require("./components/SwitchField"));
|
|
1995
|
-
_forEachInstanceProperty(
|
|
2014
|
+
_forEachInstanceProperty(_context68 = _Object$keys(_SwitchField)).call(_context68, function (key) {
|
|
1996
2015
|
if (key === "default" || key === "__esModule") return;
|
|
1997
2016
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
1998
2017
|
if (key in exports && exports[key] === _SwitchField[key]) return;
|
|
@@ -2004,7 +2023,7 @@ _forEachInstanceProperty(_context67 = _Object$keys(_SwitchField)).call(_context6
|
|
|
2004
2023
|
});
|
|
2005
2024
|
});
|
|
2006
2025
|
var _Tab = _interopRequireWildcard(require("./components/Tab"));
|
|
2007
|
-
_forEachInstanceProperty(
|
|
2026
|
+
_forEachInstanceProperty(_context69 = _Object$keys(_Tab)).call(_context69, function (key) {
|
|
2008
2027
|
if (key === "default" || key === "__esModule") return;
|
|
2009
2028
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
2010
2029
|
if (key in exports && exports[key] === _Tab[key]) return;
|
|
@@ -2016,7 +2035,7 @@ _forEachInstanceProperty(_context68 = _Object$keys(_Tab)).call(_context68, funct
|
|
|
2016
2035
|
});
|
|
2017
2036
|
});
|
|
2018
2037
|
var _Table = _interopRequireWildcard(require("./components/Table"));
|
|
2019
|
-
_forEachInstanceProperty(
|
|
2038
|
+
_forEachInstanceProperty(_context70 = _Object$keys(_Table)).call(_context70, function (key) {
|
|
2020
2039
|
if (key === "default" || key === "__esModule") return;
|
|
2021
2040
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
2022
2041
|
if (key in exports && exports[key] === _Table[key]) return;
|
|
@@ -2028,7 +2047,7 @@ _forEachInstanceProperty(_context69 = _Object$keys(_Table)).call(_context69, fun
|
|
|
2028
2047
|
});
|
|
2029
2048
|
});
|
|
2030
2049
|
var _TableBase = _interopRequireWildcard(require("./components/TableBase"));
|
|
2031
|
-
_forEachInstanceProperty(
|
|
2050
|
+
_forEachInstanceProperty(_context71 = _Object$keys(_TableBase)).call(_context71, function (key) {
|
|
2032
2051
|
if (key === "default" || key === "__esModule") return;
|
|
2033
2052
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
2034
2053
|
if (key in exports && exports[key] === _TableBase[key]) return;
|
|
@@ -2040,7 +2059,7 @@ _forEachInstanceProperty(_context70 = _Object$keys(_TableBase)).call(_context70,
|
|
|
2040
2059
|
});
|
|
2041
2060
|
});
|
|
2042
2061
|
var _TableBody = _interopRequireWildcard(require("./components/TableBody"));
|
|
2043
|
-
_forEachInstanceProperty(
|
|
2062
|
+
_forEachInstanceProperty(_context72 = _Object$keys(_TableBody)).call(_context72, function (key) {
|
|
2044
2063
|
if (key === "default" || key === "__esModule") return;
|
|
2045
2064
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
2046
2065
|
if (key in exports && exports[key] === _TableBody[key]) return;
|
|
@@ -2052,7 +2071,7 @@ _forEachInstanceProperty(_context71 = _Object$keys(_TableBody)).call(_context71,
|
|
|
2052
2071
|
});
|
|
2053
2072
|
});
|
|
2054
2073
|
var _TableCaption = _interopRequireWildcard(require("./components/TableCaption"));
|
|
2055
|
-
_forEachInstanceProperty(
|
|
2074
|
+
_forEachInstanceProperty(_context73 = _Object$keys(_TableCaption)).call(_context73, function (key) {
|
|
2056
2075
|
if (key === "default" || key === "__esModule") return;
|
|
2057
2076
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
2058
2077
|
if (key in exports && exports[key] === _TableCaption[key]) return;
|
|
@@ -2064,7 +2083,7 @@ _forEachInstanceProperty(_context72 = _Object$keys(_TableCaption)).call(_context
|
|
|
2064
2083
|
});
|
|
2065
2084
|
});
|
|
2066
2085
|
var _TableCell = _interopRequireWildcard(require("./components/TableCell"));
|
|
2067
|
-
_forEachInstanceProperty(
|
|
2086
|
+
_forEachInstanceProperty(_context74 = _Object$keys(_TableCell)).call(_context74, function (key) {
|
|
2068
2087
|
if (key === "default" || key === "__esModule") return;
|
|
2069
2088
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
2070
2089
|
if (key in exports && exports[key] === _TableCell[key]) return;
|
|
@@ -2076,7 +2095,7 @@ _forEachInstanceProperty(_context73 = _Object$keys(_TableCell)).call(_context73,
|
|
|
2076
2095
|
});
|
|
2077
2096
|
});
|
|
2078
2097
|
var _TableHead = _interopRequireWildcard(require("./components/TableHead"));
|
|
2079
|
-
_forEachInstanceProperty(
|
|
2098
|
+
_forEachInstanceProperty(_context75 = _Object$keys(_TableHead)).call(_context75, function (key) {
|
|
2080
2099
|
if (key === "default" || key === "__esModule") return;
|
|
2081
2100
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
2082
2101
|
if (key in exports && exports[key] === _TableHead[key]) return;
|
|
@@ -2088,7 +2107,7 @@ _forEachInstanceProperty(_context74 = _Object$keys(_TableHead)).call(_context74,
|
|
|
2088
2107
|
});
|
|
2089
2108
|
});
|
|
2090
2109
|
var _TableRow = _interopRequireWildcard(require("./components/TableRow"));
|
|
2091
|
-
_forEachInstanceProperty(
|
|
2110
|
+
_forEachInstanceProperty(_context76 = _Object$keys(_TableRow)).call(_context76, function (key) {
|
|
2092
2111
|
if (key === "default" || key === "__esModule") return;
|
|
2093
2112
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
2094
2113
|
if (key in exports && exports[key] === _TableRow[key]) return;
|
|
@@ -2100,7 +2119,7 @@ _forEachInstanceProperty(_context75 = _Object$keys(_TableRow)).call(_context75,
|
|
|
2100
2119
|
});
|
|
2101
2120
|
});
|
|
2102
2121
|
var _Tabs = _interopRequireWildcard(require("./components/Tabs"));
|
|
2103
|
-
_forEachInstanceProperty(
|
|
2122
|
+
_forEachInstanceProperty(_context77 = _Object$keys(_Tabs)).call(_context77, function (key) {
|
|
2104
2123
|
if (key === "default" || key === "__esModule") return;
|
|
2105
2124
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
2106
2125
|
if (key in exports && exports[key] === _Tabs[key]) return;
|
|
@@ -2112,7 +2131,7 @@ _forEachInstanceProperty(_context76 = _Object$keys(_Tabs)).call(_context76, func
|
|
|
2112
2131
|
});
|
|
2113
2132
|
});
|
|
2114
2133
|
var _Text = _interopRequireWildcard(require("./components/Text"));
|
|
2115
|
-
_forEachInstanceProperty(
|
|
2134
|
+
_forEachInstanceProperty(_context78 = _Object$keys(_Text)).call(_context78, function (key) {
|
|
2116
2135
|
if (key === "default" || key === "__esModule") return;
|
|
2117
2136
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
2118
2137
|
if (key in exports && exports[key] === _Text[key]) return;
|
|
@@ -2124,7 +2143,7 @@ _forEachInstanceProperty(_context77 = _Object$keys(_Text)).call(_context77, func
|
|
|
2124
2143
|
});
|
|
2125
2144
|
});
|
|
2126
2145
|
var _TextArea = _interopRequireWildcard(require("./components/TextArea"));
|
|
2127
|
-
_forEachInstanceProperty(
|
|
2146
|
+
_forEachInstanceProperty(_context79 = _Object$keys(_TextArea)).call(_context79, function (key) {
|
|
2128
2147
|
if (key === "default" || key === "__esModule") return;
|
|
2129
2148
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
2130
2149
|
if (key in exports && exports[key] === _TextArea[key]) return;
|
|
@@ -2136,7 +2155,7 @@ _forEachInstanceProperty(_context78 = _Object$keys(_TextArea)).call(_context78,
|
|
|
2136
2155
|
});
|
|
2137
2156
|
});
|
|
2138
2157
|
var _TextAreaField = _interopRequireWildcard(require("./components/TextAreaField"));
|
|
2139
|
-
_forEachInstanceProperty(
|
|
2158
|
+
_forEachInstanceProperty(_context80 = _Object$keys(_TextAreaField)).call(_context80, function (key) {
|
|
2140
2159
|
if (key === "default" || key === "__esModule") return;
|
|
2141
2160
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
2142
2161
|
if (key in exports && exports[key] === _TextAreaField[key]) return;
|
|
@@ -2148,7 +2167,7 @@ _forEachInstanceProperty(_context79 = _Object$keys(_TextAreaField)).call(_contex
|
|
|
2148
2167
|
});
|
|
2149
2168
|
});
|
|
2150
2169
|
var _TextField = _interopRequireWildcard(require("./components/TextField"));
|
|
2151
|
-
_forEachInstanceProperty(
|
|
2170
|
+
_forEachInstanceProperty(_context81 = _Object$keys(_TextField)).call(_context81, function (key) {
|
|
2152
2171
|
if (key === "default" || key === "__esModule") return;
|
|
2153
2172
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
2154
2173
|
if (key in exports && exports[key] === _TextField[key]) return;
|
|
@@ -2160,7 +2179,7 @@ _forEachInstanceProperty(_context80 = _Object$keys(_TextField)).call(_context80,
|
|
|
2160
2179
|
});
|
|
2161
2180
|
});
|
|
2162
2181
|
var _TimeField = _interopRequireWildcard(require("./components/TimeField"));
|
|
2163
|
-
_forEachInstanceProperty(
|
|
2182
|
+
_forEachInstanceProperty(_context82 = _Object$keys(_TimeField)).call(_context82, function (key) {
|
|
2164
2183
|
if (key === "default" || key === "__esModule") return;
|
|
2165
2184
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
2166
2185
|
if (key in exports && exports[key] === _TimeField[key]) return;
|
|
@@ -2173,7 +2192,7 @@ _forEachInstanceProperty(_context81 = _Object$keys(_TimeField)).call(_context81,
|
|
|
2173
2192
|
});
|
|
2174
2193
|
var _TimeZonePicker = _interopRequireDefault(require("./components/TimeZonePicker"));
|
|
2175
2194
|
var _TooltipTrigger = _interopRequireWildcard(require("./components/TooltipTrigger"));
|
|
2176
|
-
_forEachInstanceProperty(
|
|
2195
|
+
_forEachInstanceProperty(_context83 = _Object$keys(_TooltipTrigger)).call(_context83, function (key) {
|
|
2177
2196
|
if (key === "default" || key === "__esModule") return;
|
|
2178
2197
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
2179
2198
|
if (key in exports && exports[key] === _TooltipTrigger[key]) return;
|
|
@@ -2185,7 +2204,7 @@ _forEachInstanceProperty(_context82 = _Object$keys(_TooltipTrigger)).call(_conte
|
|
|
2185
2204
|
});
|
|
2186
2205
|
});
|
|
2187
2206
|
var _TreeView = _interopRequireWildcard(require("./components/TreeView"));
|
|
2188
|
-
_forEachInstanceProperty(
|
|
2207
|
+
_forEachInstanceProperty(_context84 = _Object$keys(_TreeView)).call(_context84, function (key) {
|
|
2189
2208
|
if (key === "default" || key === "__esModule") return;
|
|
2190
2209
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
2191
2210
|
if (key in exports && exports[key] === _TreeView[key]) return;
|
|
@@ -2200,7 +2219,7 @@ var _PaginationContext = require("./context/PaginationContext");
|
|
|
2200
2219
|
var _nextGenDarkMode = _interopRequireDefault(require("./styles/themeOverrides/nextGenDarkMode"));
|
|
2201
2220
|
var _nextGen = _interopRequireDefault(require("./styles/themes/next-gen"));
|
|
2202
2221
|
var _types = require("./types");
|
|
2203
|
-
_forEachInstanceProperty(
|
|
2222
|
+
_forEachInstanceProperty(_context85 = _Object$keys(_types)).call(_context85, function (key) {
|
|
2204
2223
|
if (key === "default" || key === "__esModule") return;
|
|
2205
2224
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
2206
2225
|
if (key in exports && exports[key] === _types[key]) return;
|
|
@@ -110,6 +110,9 @@ declare const allColors: {
|
|
|
110
110
|
iconBadge: string;
|
|
111
111
|
iconBadgeFill: string;
|
|
112
112
|
};
|
|
113
|
+
border: {
|
|
114
|
+
hairline: string;
|
|
115
|
+
};
|
|
113
116
|
white: string;
|
|
114
117
|
neutral: {
|
|
115
118
|
10: string;
|
|
@@ -226,6 +229,9 @@ export declare const getBaseHexColor: (colorName: string) => string | {
|
|
|
226
229
|
iconBadge: string;
|
|
227
230
|
iconBadgeFill: string;
|
|
228
231
|
};
|
|
232
|
+
border: {
|
|
233
|
+
hairline: string;
|
|
234
|
+
};
|
|
229
235
|
white: string;
|
|
230
236
|
neutral: {
|
|
231
237
|
10: string;
|
package/lib/cjs/styles/colors.js
CHANGED
|
@@ -153,12 +153,16 @@ var badge = {
|
|
|
153
153
|
iconBadgeFill: accent[40]
|
|
154
154
|
};
|
|
155
155
|
var tooltip = accent[20];
|
|
156
|
+
var border = {
|
|
157
|
+
hairline: '#E7EEF4'
|
|
158
|
+
};
|
|
156
159
|
var allColors = {
|
|
157
160
|
black: black,
|
|
158
161
|
background: background,
|
|
159
162
|
backgroundBase: backgroundBase,
|
|
160
163
|
backgroundSecondary: backgroundSecondary,
|
|
161
164
|
badge: badge,
|
|
165
|
+
border: border,
|
|
162
166
|
white: white,
|
|
163
167
|
neutral: neutral,
|
|
164
168
|
accent: accent,
|
|
@@ -37,7 +37,8 @@ var border = {
|
|
|
37
37
|
dark: _chromaJs["default"].mix('#23282e', 'white', 0.25, 'rgb').hex(),
|
|
38
38
|
input: _colorTokens.nextGenColors['gray-500'],
|
|
39
39
|
separator: _chromaJs["default"].mix('#23282e', 'white', 0.15, 'rgb').hex(),
|
|
40
|
-
attachment: '#39414b'
|
|
40
|
+
attachment: '#39414b',
|
|
41
|
+
hairline: '#737577'
|
|
41
42
|
};
|
|
42
43
|
var badge = {
|
|
43
44
|
background: _colorTokens.nextGenColors['gray-800'],
|
|
@@ -319,6 +319,15 @@ declare const buttons: {
|
|
|
319
319
|
};
|
|
320
320
|
};
|
|
321
321
|
};
|
|
322
|
+
searchNavTabLabel: {
|
|
323
|
+
color: string;
|
|
324
|
+
'&.is-hovered': {
|
|
325
|
+
color: string;
|
|
326
|
+
'& > svg': {
|
|
327
|
+
fill: string;
|
|
328
|
+
};
|
|
329
|
+
};
|
|
330
|
+
};
|
|
322
331
|
modalCloseButton: {
|
|
323
332
|
path: {
|
|
324
333
|
fill: string;
|
|
@@ -80,6 +80,15 @@ var iconButtons = {
|
|
|
80
80
|
}
|
|
81
81
|
})
|
|
82
82
|
};
|
|
83
|
+
var searchNavTabLabel = {
|
|
84
|
+
color: 'gray-400',
|
|
85
|
+
'&.is-hovered': {
|
|
86
|
+
color: 'white',
|
|
87
|
+
'& > svg': {
|
|
88
|
+
fill: 'white'
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
};
|
|
83
92
|
var buttons = {
|
|
84
93
|
primary: {
|
|
85
94
|
color: 'black',
|
|
@@ -272,6 +281,7 @@ var buttons = {
|
|
|
272
281
|
}
|
|
273
282
|
},
|
|
274
283
|
iconButtons: iconButtons,
|
|
284
|
+
searchNavTabLabel: searchNavTabLabel,
|
|
275
285
|
modalCloseButton: modalCloseButton,
|
|
276
286
|
listBoxLink: {
|
|
277
287
|
color: 'blue-400',
|
|
@@ -11,5 +11,19 @@ declare const cards: {
|
|
|
11
11
|
boxShadow: string;
|
|
12
12
|
bg: string;
|
|
13
13
|
};
|
|
14
|
+
withShadow: {
|
|
15
|
+
boxShadow: string;
|
|
16
|
+
borderColor: string;
|
|
17
|
+
backgroundColor: string;
|
|
18
|
+
};
|
|
19
|
+
interactive: {
|
|
20
|
+
borderColor: string;
|
|
21
|
+
};
|
|
22
|
+
container: {
|
|
23
|
+
borderColor: string;
|
|
24
|
+
};
|
|
25
|
+
activeCard: {
|
|
26
|
+
borderColor: string;
|
|
27
|
+
};
|
|
14
28
|
};
|
|
15
29
|
export default cards;
|
|
@@ -8,15 +8,29 @@ exports["default"] = void 0;
|
|
|
8
8
|
var cards = {
|
|
9
9
|
dark: {
|
|
10
10
|
border: '1px solid',
|
|
11
|
-
borderColor: 'border.
|
|
12
|
-
boxShadow: '
|
|
11
|
+
borderColor: 'border.attachment',
|
|
12
|
+
boxShadow: 'standard',
|
|
13
13
|
bg: 'transparent'
|
|
14
14
|
},
|
|
15
15
|
light: {
|
|
16
16
|
border: '1px solid',
|
|
17
|
-
borderColor: 'border.
|
|
18
|
-
boxShadow: '
|
|
17
|
+
borderColor: 'border.attachment',
|
|
18
|
+
boxShadow: 'standard',
|
|
19
19
|
bg: 'transparent'
|
|
20
|
+
},
|
|
21
|
+
withShadow: {
|
|
22
|
+
boxShadow: 'none',
|
|
23
|
+
borderColor: 'border.attachment',
|
|
24
|
+
backgroundColor: 'transparent'
|
|
25
|
+
},
|
|
26
|
+
interactive: {
|
|
27
|
+
borderColor: 'border.attachment'
|
|
28
|
+
},
|
|
29
|
+
container: {
|
|
30
|
+
borderColor: 'border.attachment'
|
|
31
|
+
},
|
|
32
|
+
activeCard: {
|
|
33
|
+
borderColor: 'border.attachment'
|
|
20
34
|
}
|
|
21
35
|
};
|
|
22
36
|
var _default = cards;
|
|
@@ -5,6 +5,18 @@ export declare const text: {
|
|
|
5
5
|
listViewItemText: {
|
|
6
6
|
color: string;
|
|
7
7
|
};
|
|
8
|
+
searchNavTabLabel: {
|
|
9
|
+
color: string;
|
|
10
|
+
'.is-selected &, .is-hovered &': {
|
|
11
|
+
color: string;
|
|
12
|
+
};
|
|
13
|
+
'.is-selected &': {
|
|
14
|
+
color: string;
|
|
15
|
+
};
|
|
16
|
+
'.is-disabled &': {
|
|
17
|
+
color: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
8
20
|
listViewItemTextSelected: {
|
|
9
21
|
color: string;
|
|
10
22
|
};
|
|
@@ -12,6 +12,18 @@ var text = {
|
|
|
12
12
|
listViewItemText: {
|
|
13
13
|
color: 'text.secondary'
|
|
14
14
|
},
|
|
15
|
+
searchNavTabLabel: {
|
|
16
|
+
color: 'gray-400',
|
|
17
|
+
'.is-selected &, .is-hovered &': {
|
|
18
|
+
color: 'white'
|
|
19
|
+
},
|
|
20
|
+
'.is-selected &': {
|
|
21
|
+
color: 'white'
|
|
22
|
+
},
|
|
23
|
+
'.is-disabled &': {
|
|
24
|
+
color: 'neutral.80'
|
|
25
|
+
}
|
|
26
|
+
},
|
|
15
27
|
listViewItemTextSelected: {
|
|
16
28
|
color: 'gray-100'
|
|
17
29
|
},
|
|
@@ -5,7 +5,7 @@ _Object$defineProperty(exports, "__esModule", {
|
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
7
|
exports.nextGenOnlyComponents = exports["default"] = exports.componentSpecificNextGenBlacklist = exports.astroBlacklistStory = void 0;
|
|
8
|
-
var nextGenConvertedComponents = ['AccordionGridGroup', 'AccordionGroup', 'ArrayField', 'AstroProvider', 'Avatar', 'Badge', 'Base Components', 'Breadcrumbs', 'Button', 'ButtonBar', 'Callout', 'Card', 'CheckboxField', 'CodeView', 'ColorField', 'ComboBoxField', 'CopyText', 'DataTable', 'EnvironmentBreadcrumb', 'GridList', 'HelpHint', 'Icon', 'IconBadge', 'IconButton', 'IconWrapper', 'ImageUploadField', 'Loader', 'Link', 'LinkSelectField', 'ListView', 'ListViewItem', 'Message', 'Messages', 'Modal', 'MultiValuesField', 'MultivaluesField', 'NavBar', 'NavigationHeader', 'NextGen ListViewItem', 'NumberField', 'OverlayPanel', 'PageHeader', 'Pagination', 'PanelHeader', 'PasswordField', 'PopoverMenu', 'ProgressBar', 'RadioField', 'RadioGroupField', 'RequirementsList', 'RockerButtonGroup', 'SearchField', 'SelectField', 'Skeleton', 'SliderField', 'Stepper', 'Sticker Sheet', 'SwitchField', 'StatusIcon', 'Table', 'TableBase', 'Tabs', 'Text', 'TextAreaField', 'TextField', 'TooltipTrigger', 'ArrayField', 'ColorField', 'LinkSelectField', 'NumberField', 'SwitchField', 'Base Components', 'SliderField', 'ServerErrorBoundary', 'Avatar', 'Box'];
|
|
8
|
+
var nextGenConvertedComponents = ['AccordionGridGroup', 'AccordionGroup', 'ArrayField', 'AstroProvider', 'Avatar', 'Badge', 'Base Components', 'Breadcrumbs', 'Button', 'ButtonBar', 'Callout', 'Card', 'CheckboxField', 'CodeView', 'ColorField', 'ComboBoxField', 'CopyText', 'DataTable', 'EnvironmentBreadcrumb', 'GridList', 'HelpHint', 'Icon', 'IconBadge', 'IconButton', 'IconWrapper', 'ImageUploadField', 'Loader', 'Link', 'LinkSelectField', 'ListView', 'ListViewItem', 'Message', 'Messages', 'Modal', 'MultiValuesField', 'MultivaluesField', 'NavBar', 'NavigationHeader', 'NextGen ListViewItem', 'NumberField', 'OverlayPanel', 'PageHeader', 'Pagination', 'PanelHeader', 'PasswordField', 'PopoverMenu', 'ProgressBar', 'RadioField', 'RadioGroupField', 'RequirementsList', 'RockerButtonGroup', 'SearchField', 'SearchNav', 'SelectField', 'Skeleton', 'SliderField', 'Stepper', 'Sticker Sheet', 'SwitchField', 'StatusIcon', 'Table', 'TableBase', 'Tabs', 'Text', 'TextAreaField', 'TextField', 'TooltipTrigger', 'ArrayField', 'ColorField', 'LinkSelectField', 'NumberField', 'SwitchField', 'Base Components', 'SliderField', 'ServerErrorBoundary', 'Avatar', 'Box'];
|
|
9
9
|
var componentSpecificNextGenBlacklist = {
|
|
10
10
|
AstroProvider: ['Default', 'With Custom Theme Override'],
|
|
11
11
|
Messages: ['Customization'],
|
|
@@ -26,7 +26,8 @@ var astroBlacklistStory = {
|
|
|
26
26
|
StatusIcon: ['Default', 'In Rocker Button'],
|
|
27
27
|
Avatar: ['Size Variation', 'Color Variation', 'Icon Variation', 'Square Variation', 'Logo Variation'],
|
|
28
28
|
Text: ['Onyx'],
|
|
29
|
-
Loader: ['Circular', 'Custom Circular']
|
|
29
|
+
Loader: ['Circular', 'Custom Circular'],
|
|
30
|
+
Card: ['With Shadow']
|
|
30
31
|
};
|
|
31
32
|
exports.astroBlacklistStory = astroBlacklistStory;
|
|
32
33
|
var nextGenOnlyComponents = ['NavigationHeader', 'Prompt', 'AI Panel', 'Response', 'Suggestions', 'Prompt Input', 'Footer', 'Onyx Input Patterns'];
|
|
@@ -722,6 +722,15 @@ declare const _default: {
|
|
|
722
722
|
};
|
|
723
723
|
transition: string;
|
|
724
724
|
};
|
|
725
|
+
searchNavTabLabel: {
|
|
726
|
+
marginBottom: string;
|
|
727
|
+
color: string;
|
|
728
|
+
'&.is-hovered': {
|
|
729
|
+
'& > svg': {
|
|
730
|
+
fill: string;
|
|
731
|
+
};
|
|
732
|
+
};
|
|
733
|
+
};
|
|
725
734
|
outlineCritical: {
|
|
726
735
|
backgroundColor: string;
|
|
727
736
|
borderColor: string;
|
|
@@ -2072,6 +2081,7 @@ declare const _default: {
|
|
|
2072
2081
|
};
|
|
2073
2082
|
tabLabel: {
|
|
2074
2083
|
color: string;
|
|
2084
|
+
wordBreak: string;
|
|
2075
2085
|
};
|
|
2076
2086
|
placeholder: {
|
|
2077
2087
|
color: string;
|
|
@@ -2128,6 +2138,9 @@ declare const _default: {
|
|
|
2128
2138
|
heading: string;
|
|
2129
2139
|
codeView: string;
|
|
2130
2140
|
};
|
|
2141
|
+
shadows: {
|
|
2142
|
+
standard: string;
|
|
2143
|
+
};
|
|
2131
2144
|
sizes: {
|
|
2132
2145
|
avatar: {
|
|
2133
2146
|
sm: string;
|
|
@@ -3544,7 +3557,7 @@ declare const _default: {
|
|
|
3544
3557
|
container: {
|
|
3545
3558
|
p: string;
|
|
3546
3559
|
borderColor: string;
|
|
3547
|
-
lineHeight:
|
|
3560
|
+
lineHeight: string;
|
|
3548
3561
|
boxShadow: string;
|
|
3549
3562
|
border: string;
|
|
3550
3563
|
borderRadius: string;
|
|
@@ -3595,7 +3608,7 @@ declare const _default: {
|
|
|
3595
3608
|
tableWrapper: {
|
|
3596
3609
|
p: string;
|
|
3597
3610
|
borderColor: string;
|
|
3598
|
-
lineHeight:
|
|
3611
|
+
lineHeight: string;
|
|
3599
3612
|
boxShadow: string;
|
|
3600
3613
|
border: string;
|
|
3601
3614
|
borderRadius: string;
|
|
@@ -3605,6 +3618,23 @@ declare const _default: {
|
|
|
3605
3618
|
fontWeight: number;
|
|
3606
3619
|
flex: string;
|
|
3607
3620
|
};
|
|
3621
|
+
withShadow: {
|
|
3622
|
+
boxShadow: string;
|
|
3623
|
+
backgroundColor: string;
|
|
3624
|
+
p: string;
|
|
3625
|
+
borderColor: string;
|
|
3626
|
+
lineHeight: string;
|
|
3627
|
+
border: string;
|
|
3628
|
+
borderRadius: string;
|
|
3629
|
+
display: string;
|
|
3630
|
+
color: string;
|
|
3631
|
+
fontSize: string;
|
|
3632
|
+
fontWeight: number;
|
|
3633
|
+
flex: string;
|
|
3634
|
+
};
|
|
3635
|
+
flat: {
|
|
3636
|
+
boxShadow: string;
|
|
3637
|
+
};
|
|
3608
3638
|
};
|
|
3609
3639
|
variants: {
|
|
3610
3640
|
accordion: {
|
|
@@ -5034,6 +5064,11 @@ declare const _default: {
|
|
|
5034
5064
|
};
|
|
5035
5065
|
};
|
|
5036
5066
|
};
|
|
5067
|
+
searchNav: {
|
|
5068
|
+
tab: {
|
|
5069
|
+
marginBottom: string;
|
|
5070
|
+
};
|
|
5071
|
+
};
|
|
5037
5072
|
separator: {
|
|
5038
5073
|
base: {
|
|
5039
5074
|
bg: string;
|
|
@@ -55,6 +55,9 @@ var nextGenTheme = {
|
|
|
55
55
|
heading: '"Open Sans", sans-serif',
|
|
56
56
|
codeView: 'Consolas, Monaco, Andale Mono, Ubuntu Mono, monospace'
|
|
57
57
|
},
|
|
58
|
+
shadows: {
|
|
59
|
+
standard: '0 1px 3px 0 rgba(0, 0, 0, 0.13)'
|
|
60
|
+
},
|
|
58
61
|
sizes: _sizes["default"],
|
|
59
62
|
badges: _badges.badges,
|
|
60
63
|
navigationHeader: _navigationHeader["default"],
|