@skyux/ag-grid 14.0.1 → 14.1.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/css/sky-ag-grid.css
CHANGED
|
@@ -312,11 +312,17 @@
|
|
|
312
312
|
--ag-focus-shadow: none;
|
|
313
313
|
}
|
|
314
314
|
.ag-theme-sky-data-grid-default .ag-checkbox .ag-checked,
|
|
315
|
+
.ag-theme-sky-data-grid-default .ag-checkbox .ag-indeterminate,
|
|
315
316
|
.ag-theme-sky-data-entry-grid-default .ag-checkbox .ag-checked,
|
|
317
|
+
.ag-theme-sky-data-entry-grid-default .ag-checkbox .ag-indeterminate,
|
|
316
318
|
.ag-theme-sky-data-grid-modern-light .ag-checkbox .ag-checked,
|
|
319
|
+
.ag-theme-sky-data-grid-modern-light .ag-checkbox .ag-indeterminate,
|
|
317
320
|
.ag-theme-sky-data-entry-grid-modern-light .ag-checkbox .ag-checked,
|
|
321
|
+
.ag-theme-sky-data-entry-grid-modern-light .ag-checkbox .ag-indeterminate,
|
|
318
322
|
.ag-theme-sky-data-grid-modern-light-compact .ag-checkbox .ag-checked,
|
|
319
|
-
.ag-theme-sky-data-
|
|
323
|
+
.ag-theme-sky-data-grid-modern-light-compact .ag-checkbox .ag-indeterminate,
|
|
324
|
+
.ag-theme-sky-data-entry-grid-modern-light-compact .ag-checkbox .ag-checked,
|
|
325
|
+
.ag-theme-sky-data-entry-grid-modern-light-compact .ag-checkbox .ag-indeterminate {
|
|
320
326
|
background: var(--sky-override-ag-grid-checkbox-checked-background-color, var(--sky-color-background-selected-switch-base));
|
|
321
327
|
background-origin: border-box;
|
|
322
328
|
}
|
|
@@ -169,7 +169,12 @@ const defaultsForAllThemes = {
|
|
|
169
169
|
cellEditingBorder: 'var(--sky-override-ag-grid-cell-focus-border-width, var(--sky-border-width-input-focus)) solid var(--sky-override-ag-grid-cell-focus-border-color, var(--sky-color-border-input-focus))',
|
|
170
170
|
checkboxCheckedBorderColor: { ref: 'checkboxCheckedShapeColor' },
|
|
171
171
|
checkboxCheckedShapeColor: 'var(--sky-override-switch-checked-color, var(--sky-color-icon-inverse, var(--sky-text-color-default)))',
|
|
172
|
-
checkboxIndeterminateBackgroundColor: 'var(--sky-override-switch-checked-color, var(--sky-color-
|
|
172
|
+
checkboxIndeterminateBackgroundColor: 'var(--sky-override-switch-checked-color, var(--sky-color-background-selected-switch-base))',
|
|
173
|
+
checkboxIndeterminateBorderColor: { ref: 'checkboxCheckedBorderColor' },
|
|
174
|
+
checkboxIndeterminateShapeColor: 'var(--sky-override-switch-checked-color, var(--sky-color-icon-inverse, var(--sky-text-color-default)))',
|
|
175
|
+
checkboxIndeterminateShapeImage: {
|
|
176
|
+
svg: `<svg width="16" height="16" fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M2 4.5A2.5 2.5 0 0 1 4.5 2h7A2.5 2.5 0 0 1 14 4.5v7a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 11.5v-7Z" fill="#212121"/></svg>`,
|
|
177
|
+
},
|
|
173
178
|
checkboxUncheckedBackgroundColor: 'var(--sky-override-ag-grid-checkbox-unchecked-background-color, var(--sky-color-background-input-base))',
|
|
174
179
|
checkboxUncheckedBorderColor: `var(
|
|
175
180
|
--sky-override-ag-grid-checkbox-unchecked-border-color,
|