Aggrid custom

This commit is contained in:
2026-03-17 08:44:54 +01:00
commit 739374d83f
3234 changed files with 1533165 additions and 0 deletions

17
node_modules/ag-grid-community/styles/_shared.scss generated vendored Executable file
View File

@@ -0,0 +1,17 @@
// mixins shared between the our themes and the public API
// Apply styles to all text fields. Usage:
// @include ag.text-input {
// border: solid dashed red;
// }
@mixin text-input {
input[class^='ag-']:not([type]),
input[class^='ag-'][type='text'],
input[class^='ag-'][type='number'],
input[class^='ag-'][type='tel'],
input[class^='ag-'][type='date'],
input[class^='ag-'][type='datetime-local'],
textarea[class^='ag-'] {
@content;
}
}