@pingux/astro 2.181.9 → 2.182.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/libs/astro/src/styles/themeOverrides/nextGenDarkMode/variants/forms.d.ts +5 -0
- package/lib/cjs/libs/astro/tsconfig.lib.tsbuildinfo +1 -1
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/forms.js +6 -0
- package/lib/cjs/styles/themes/next-gen/customProperties/index.js +1 -1
- package/lib/cjs/styles/themes/next-gen/variants/input.js +3 -1
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/forms.js +6 -0
- package/lib/styles/themes/next-gen/customProperties/index.js +1 -1
- package/lib/styles/themes/next-gen/variants/input.js +3 -1
- package/package.json +1 -1
|
@@ -74,11 +74,17 @@ var switchable = {
|
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
76
|
};
|
|
77
|
+
var search = {
|
|
78
|
+
icon: {
|
|
79
|
+
fill: "".concat(_onyxTokens.astroTokensDark.color.font.base, " !important")
|
|
80
|
+
}
|
|
81
|
+
};
|
|
77
82
|
var _default = exports["default"] = {
|
|
78
83
|
input: _input.input,
|
|
79
84
|
checkbox: checkbox,
|
|
80
85
|
radio: radio,
|
|
81
86
|
label: label,
|
|
87
|
+
search: search,
|
|
82
88
|
select: _objectSpread(_objectSpread({}, select), {}, {
|
|
83
89
|
option: _objectSpread({}, selectOption)
|
|
84
90
|
}),
|
|
@@ -29,7 +29,7 @@ var activeColor = '#1a73e8';
|
|
|
29
29
|
var backgroundBaseColor = 'white';
|
|
30
30
|
var iFrameContentDivBackgroundColor = backgroundBaseColor;
|
|
31
31
|
var defaultIconColor = 'gray-800';
|
|
32
|
-
var defaultIconSize = '
|
|
32
|
+
var defaultIconSize = 'sm';
|
|
33
33
|
var buttonLoaderSize = 'sm';
|
|
34
34
|
var badgeStyles = {
|
|
35
35
|
blueBg: '#EAF2FD',
|
|
@@ -63,7 +63,9 @@ input.promptInput = _objectSpread(_objectSpread({}, input), {}, {
|
|
|
63
63
|
});
|
|
64
64
|
input.search = _objectSpread(_objectSpread({}, input), {}, {
|
|
65
65
|
pl: '4em !important',
|
|
66
|
-
pr: '
|
|
66
|
+
pr: "".concat(_onyxTokens.astroTokens.spacing['md-l'], "px !important"),
|
|
67
|
+
py: '13px !important',
|
|
68
|
+
lineHeight: 'body',
|
|
67
69
|
color: 'font.base',
|
|
68
70
|
'&.is-disabled': _objectSpread(_objectSpread({}, readOnlyandDisabledStyles), {}, {
|
|
69
71
|
'> input': _objectSpread({}, readOnlyandDisabledStyles)
|
|
@@ -67,11 +67,17 @@ var switchable = {
|
|
|
67
67
|
}
|
|
68
68
|
}
|
|
69
69
|
};
|
|
70
|
+
var search = {
|
|
71
|
+
icon: {
|
|
72
|
+
fill: "".concat(astroTokensDark.color.font.base, " !important")
|
|
73
|
+
}
|
|
74
|
+
};
|
|
70
75
|
export default {
|
|
71
76
|
input: input,
|
|
72
77
|
checkbox: checkbox,
|
|
73
78
|
radio: radio,
|
|
74
79
|
label: label,
|
|
80
|
+
search: search,
|
|
75
81
|
select: _objectSpread(_objectSpread({}, select), {}, {
|
|
76
82
|
option: _objectSpread({}, selectOption)
|
|
77
83
|
}),
|
|
@@ -19,7 +19,7 @@ var activeColor = '#1a73e8';
|
|
|
19
19
|
var backgroundBaseColor = 'white';
|
|
20
20
|
var iFrameContentDivBackgroundColor = backgroundBaseColor;
|
|
21
21
|
var defaultIconColor = 'gray-800';
|
|
22
|
-
var defaultIconSize = '
|
|
22
|
+
var defaultIconSize = 'sm';
|
|
23
23
|
var buttonLoaderSize = 'sm';
|
|
24
24
|
var badgeStyles = {
|
|
25
25
|
blueBg: '#EAF2FD',
|
|
@@ -56,7 +56,9 @@ input.promptInput = _objectSpread(_objectSpread({}, input), {}, {
|
|
|
56
56
|
});
|
|
57
57
|
input.search = _objectSpread(_objectSpread({}, input), {}, {
|
|
58
58
|
pl: '4em !important',
|
|
59
|
-
pr: '
|
|
59
|
+
pr: "".concat(astroTokens.spacing['md-l'], "px !important"),
|
|
60
|
+
py: '13px !important',
|
|
61
|
+
lineHeight: 'body',
|
|
60
62
|
color: 'font.base',
|
|
61
63
|
'&.is-disabled': _objectSpread(_objectSpread({}, readOnlyandDisabledStyles), {}, {
|
|
62
64
|
'> input': _objectSpread({}, readOnlyandDisabledStyles)
|