@pingux/astro 2.192.0-alpha.0 → 2.193.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/components/Input/Input.styles.js +4 -1
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/input.js +7 -0
- package/lib/cjs/styles/themes/next-gen/variants/input.js +7 -0
- package/lib/components/Input/Input.styles.js +4 -1
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/input.js +7 -0
- package/lib/styles/themes/next-gen/variants/input.js +7 -0
- package/package.json +1 -1
|
@@ -221,7 +221,10 @@ input.multivaluesWrapper = _objectSpread(_objectSpread({}, input.fieldControlWra
|
|
|
221
221
|
bg: 'warning.bright'
|
|
222
222
|
}), '&.is-read-only', {
|
|
223
223
|
boxShadow: 'inset 0 0 0 100px #e5e9f8',
|
|
224
|
-
border: 'none'
|
|
224
|
+
border: 'none',
|
|
225
|
+
'> input': {
|
|
226
|
+
backgroundColor: '#e5e9f8'
|
|
227
|
+
}
|
|
225
228
|
}));
|
|
226
229
|
input.numberField = _objectSpread(_objectSpread({}, input), {}, {
|
|
227
230
|
pr: '28px'
|
|
@@ -182,6 +182,13 @@ input.multivaluesWrapper = _objectSpread(_objectSpread({}, fieldControlWrapper),
|
|
|
182
182
|
'&:after': {
|
|
183
183
|
display: 'none'
|
|
184
184
|
}
|
|
185
|
+
},
|
|
186
|
+
'&.is-disabled': {
|
|
187
|
+
backgroundColor: 'disabled',
|
|
188
|
+
'> input': {
|
|
189
|
+
backgroundColor: 'disabled',
|
|
190
|
+
border: 'none'
|
|
191
|
+
}
|
|
185
192
|
}
|
|
186
193
|
});
|
|
187
194
|
input.numberField = _objectSpread(_objectSpread({}, input), {}, {
|
|
@@ -215,7 +215,10 @@ input.multivaluesWrapper = _objectSpread(_objectSpread({}, input.fieldControlWra
|
|
|
215
215
|
bg: 'warning.bright'
|
|
216
216
|
}), '&.is-read-only', {
|
|
217
217
|
boxShadow: 'inset 0 0 0 100px #e5e9f8',
|
|
218
|
-
border: 'none'
|
|
218
|
+
border: 'none',
|
|
219
|
+
'> input': {
|
|
220
|
+
backgroundColor: '#e5e9f8'
|
|
221
|
+
}
|
|
219
222
|
}));
|
|
220
223
|
input.numberField = _objectSpread(_objectSpread({}, input), {}, {
|
|
221
224
|
pr: '28px'
|
|
@@ -175,6 +175,13 @@ input.multivaluesWrapper = _objectSpread(_objectSpread({}, fieldControlWrapper),
|
|
|
175
175
|
'&:after': {
|
|
176
176
|
display: 'none'
|
|
177
177
|
}
|
|
178
|
+
},
|
|
179
|
+
'&.is-disabled': {
|
|
180
|
+
backgroundColor: 'disabled',
|
|
181
|
+
'> input': {
|
|
182
|
+
backgroundColor: 'disabled',
|
|
183
|
+
border: 'none'
|
|
184
|
+
}
|
|
178
185
|
}
|
|
179
186
|
});
|
|
180
187
|
input.numberField = _objectSpread(_objectSpread({}, input), {}, {
|