@olenbetong/appframe-ds 1.0.3 → 1.2.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.
Files changed (173) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/package.json +8 -7
  3. package/scripts/copyAssets.mjs +27 -55
  4. package/src/AfLookup/Lookup.css +129 -125
  5. package/src/AfLookup/Lookup.tsx +184 -162
  6. package/src/AfLookup/LookupCombobox.css +78 -78
  7. package/src/AfLookup/LookupCombobox.tsx +237 -237
  8. package/src/AfLookup/LookupEdit.tsx +130 -130
  9. package/src/AfLookup/LookupGrid.tsx +124 -124
  10. package/src/AfLookup/index.ts +5 -5
  11. package/src/autocomplete/Autocomplete.css +256 -256
  12. package/src/autocomplete/Autocomplete.tsx +320 -320
  13. package/src/autocomplete/AutocompleteFrame.tsx +168 -168
  14. package/src/autocomplete/Combobox.tsx +286 -286
  15. package/src/autocomplete/index.ts +4 -4
  16. package/src/autocomplete/types.ts +204 -204
  17. package/src/autocomplete/utils.ts +183 -183
  18. package/src/binding/BoundNumericTextField.tsx +102 -102
  19. package/src/binding/BoundTextField.tsx +49 -49
  20. package/src/binding/CancelButton.tsx +30 -30
  21. package/src/binding/CancelIconButton.tsx +30 -30
  22. package/src/binding/DataEditToolbar.tsx +92 -92
  23. package/src/binding/DeleteButton.tsx +35 -35
  24. package/src/binding/DeleteIconButton.tsx +35 -35
  25. package/src/binding/RefreshButton.tsx +31 -31
  26. package/src/binding/RefreshIconButton.tsx +33 -33
  27. package/src/binding/RefreshRowIconButton.tsx +33 -33
  28. package/src/binding/SaveButton.tsx +37 -37
  29. package/src/binding/SaveIconButton.tsx +38 -38
  30. package/src/container/Container.tsx +49 -49
  31. package/src/container/index.ts +1 -1
  32. package/src/cutoff/CutOffPicker.css +12 -0
  33. package/src/cutoff/CutOffPicker.tsx +165 -0
  34. package/src/cutoff/context.tsx +194 -0
  35. package/src/cutoff/dsCutOffDates.ts +21 -0
  36. package/src/cutoff/index.ts +4 -0
  37. package/src/cutoff/utils.test.ts +59 -0
  38. package/src/cutoff/utils.ts +276 -0
  39. package/src/filter/ChipListInput.tsx +79 -79
  40. package/src/filter/FieldFilterPanel.css +150 -150
  41. package/src/filter/FieldFilterPanel.tsx +309 -309
  42. package/src/filter/FilterBuilder.css +152 -152
  43. package/src/filter/FilterBuilder.test.tsx +153 -153
  44. package/src/filter/FilterBuilder.tsx +435 -435
  45. package/src/filter/FilterEditor.css +231 -231
  46. package/src/filter/FilterEditor.test.tsx +259 -259
  47. package/src/filter/FilterEditor.tsx +75 -74
  48. package/src/filter/FilterGroupEditor.tsx +160 -160
  49. package/src/filter/FilterNameDialog.css +22 -22
  50. package/src/filter/FilterNameDialog.tsx +81 -81
  51. package/src/filter/FilterRow.tsx +117 -117
  52. package/src/filter/FilterShareDialog.css +28 -28
  53. package/src/filter/FilterShareDialog.tsx +201 -201
  54. package/src/filter/FilterStringField.tsx +78 -77
  55. package/src/filter/FilterValueEditor.tsx +220 -220
  56. package/src/filter/SavedFilterTree.css +107 -107
  57. package/src/filter/SavedFilterTree.test.tsx +94 -94
  58. package/src/filter/SavedFilterTree.tsx +218 -222
  59. package/src/filter/fieldFilter.test.ts +158 -158
  60. package/src/filter/fieldFilter.ts +139 -139
  61. package/src/filter/index.ts +27 -27
  62. package/src/filter/types.ts +38 -38
  63. package/src/filter/useDistinctValues.test.ts +102 -102
  64. package/src/filter/useDistinctValues.ts +230 -230
  65. package/src/global.d.ts +11 -11
  66. package/src/grid/AfGridColumnsPanel.tsx +118 -118
  67. package/src/grid/AfGridContext.tsx +51 -51
  68. package/src/grid/AfGridError.tsx +46 -46
  69. package/src/grid/AfHeaderFilterCell.tsx +147 -151
  70. package/src/grid/AfHeaderFilterPanel.tsx +111 -111
  71. package/src/grid/GridEditLookup.css +12 -0
  72. package/src/grid/GridEditLookup.tsx +121 -0
  73. package/src/grid/Toolbar.tsx +233 -233
  74. package/src/grid/editing.ts +100 -100
  75. package/src/grid/filter.ts +78 -78
  76. package/src/grid/formatters.ts +48 -48
  77. package/src/grid/index.css +245 -245
  78. package/src/grid/index.tsx +489 -484
  79. package/src/grid/license.ts +48 -48
  80. package/src/grid/localization.ts +369 -369
  81. package/src/grid/slots/index.tsx +307 -307
  82. package/src/grid/slots/slots.css +64 -64
  83. package/src/grid/theme.tsx +138 -138
  84. package/src/grid/useAfColumns.tsx +371 -371
  85. package/src/grid/useAfCurrentIndex.ts +63 -63
  86. package/src/grid/useAfData.ts +20 -20
  87. package/src/grid/useAfFilter.ts +160 -160
  88. package/src/grid/useAfFilterFields.ts +55 -55
  89. package/src/grid/useAfGridApi.ts +71 -71
  90. package/src/grid/useAfKeyBindings.ts +36 -36
  91. package/src/grid/useAfNewItemRow.ts +258 -258
  92. package/src/grid/useAfPagination.ts +53 -53
  93. package/src/grid/useAfPersistedState.ts +230 -230
  94. package/src/grid/useAfRowEditModel.ts +145 -145
  95. package/src/grid/useAfRowGrouping.ts +47 -47
  96. package/src/grid/useAfServerAggregation.ts +145 -145
  97. package/src/grid/useAfSortModel.ts +84 -84
  98. package/src/i18n.ts +13 -0
  99. package/src/index.ts +14 -12
  100. package/src/input/InputAdornments.css +75 -75
  101. package/src/input/InputAdornments.tsx +102 -102
  102. package/src/input/index.ts +1 -1
  103. package/src/layout/AppMenu.tsx +74 -75
  104. package/src/layout/AppMenuDrawer.css +70 -70
  105. package/src/layout/AppMenuDrawer.tsx +122 -122
  106. package/src/layout/ErrorBoundary.tsx +162 -162
  107. package/src/layout/ResponsiveDialog.css +86 -0
  108. package/src/layout/ResponsiveDialog.tsx +55 -0
  109. package/src/layout/index.tsx +69 -68
  110. package/src/link/Link.tsx +23 -0
  111. package/src/link/index.ts +1 -0
  112. package/src/mdi/Mdi.css +138 -138
  113. package/src/mdi/Mdi.test.tsx +91 -87
  114. package/src/mdi/Mdi.tsx +141 -141
  115. package/src/mdi/MdiConfirmCloseDialog.tsx +47 -47
  116. package/src/mdi/MdiContext.tsx +59 -59
  117. package/src/mdi/MdiDocumentContext.tsx +60 -60
  118. package/src/mdi/MdiPanel.tsx +61 -61
  119. package/src/mdi/MdiRestore.test.tsx +86 -82
  120. package/src/mdi/MdiTab.tsx +30 -30
  121. package/src/mdi/controller.test.ts +382 -382
  122. package/src/mdi/controller.ts +656 -656
  123. package/src/mdi/dockviewHost.ts +132 -132
  124. package/src/mdi/fakeHost.ts +200 -200
  125. package/src/mdi/host.ts +44 -44
  126. package/src/mdi/ids.test.ts +20 -20
  127. package/src/mdi/ids.ts +18 -18
  128. package/src/mdi/index.ts +31 -31
  129. package/src/mdi/layoutRestore.test.ts +156 -156
  130. package/src/mdi/layoutRestore.ts +311 -311
  131. package/src/mdi/layoutSpec.test.ts +143 -143
  132. package/src/mdi/layoutSpec.ts +214 -214
  133. package/src/mdi/layoutStore.test.ts +93 -93
  134. package/src/mdi/layoutStore.ts +99 -99
  135. package/src/mdi/memorySettingsStore.ts +21 -21
  136. package/src/mdi/registry.ts +34 -34
  137. package/src/mdi/testTypes.ts +37 -37
  138. package/src/mdi/theme.ts +22 -22
  139. package/src/mdi/types.ts +214 -214
  140. package/src/page/Page.css +53 -53
  141. package/src/page/PageBlock.css +64 -64
  142. package/src/page/PageBlock.tsx +92 -92
  143. package/src/page/PageHeader.css +88 -88
  144. package/src/page/PageHeader.tsx +115 -116
  145. package/src/page/PageTitle.css +5 -0
  146. package/src/page/PageTitle.tsx +21 -0
  147. package/src/page/index.ts +4 -3
  148. package/src/paper/Paper.tsx +52 -52
  149. package/src/progress/LinearProgress.css +93 -93
  150. package/src/progress/LinearProgress.tsx +104 -104
  151. package/src/progress/index.ts +1 -1
  152. package/src/report-downloader/ReportDownloader.css +67 -67
  153. package/src/report-downloader/components/StatusItem.tsx +87 -86
  154. package/src/report-downloader/components/StatusList.tsx +28 -28
  155. package/src/report-downloader/index.ts +41 -41
  156. package/src/report-downloader/status.tsx +92 -92
  157. package/src/sortable/DropIndicator.css +51 -51
  158. package/src/sortable/DropIndicator.tsx +27 -27
  159. package/src/sortable/SortableItemList.css +21 -21
  160. package/src/sortable/SortableItemList.tsx +264 -264
  161. package/src/sortable/index.ts +8 -8
  162. package/src/sortable/reorderSortOrder.ts +126 -126
  163. package/src/sortable/sortOrder.ts +101 -101
  164. package/src/sortable/types.ts +9 -9
  165. package/src/sortable/useSortableContainer.ts +53 -53
  166. package/src/sortable/useSortableItem.ts +95 -95
  167. package/src/sortable/useSortableList.ts +117 -117
  168. package/src/test/happy-dom-document-class.ts +24 -24
  169. package/src/test/setup.ts +12 -12
  170. package/src/theme/useDsColorScheme.ts +53 -53
  171. package/tsconfig.build.json +9 -9
  172. package/tsconfig.json +8 -8
  173. package/vitest.config.ts +10 -10
@@ -1,245 +1,245 @@
1
- .AfGrid-root {
2
- height: 100%;
3
- }
4
-
5
- .AfGrid-loading {
6
- display: flex;
7
- align-items: center;
8
- justify-content: center;
9
- height: 100%;
10
- }
11
-
12
- .AfGrid-toolbar {
13
- display: flex;
14
- flex-wrap: wrap;
15
- gap: var(--ds-size-1, 0.25rem);
16
- align-items: center;
17
- padding: var(--ds-size-1, 0.25rem);
18
- }
19
-
20
- .MuiDataGrid-headerFilterRow .MuiDataGrid-columnHeader.AfGrid-headerCell {
21
- align-items: center;
22
- padding-block: 0;
23
- background-color: var(--ds-color-neutral-surface-tinted, rgb(0 0 0 / 2%));
24
-
25
- &:focus-within {
26
- background-color: var(--ds-color-neutral-surface-hover, rgb(0 0 0 / 4%));
27
- }
28
- }
29
-
30
- .AfGrid-errorOverlay {
31
- position: absolute;
32
- inset-inline: 0;
33
- top: var(--DataGrid-topContainerHeight);
34
- z-index: 10;
35
- padding: var(--ds-size-1, 0.25rem) var(--ds-size-2, 0.5rem);
36
- pointer-events: none;
37
- }
38
-
39
- .AfGrid-errorAlert {
40
- display: flex;
41
- gap: var(--ds-size-2, 0.5rem);
42
- align-items: center;
43
- justify-content: space-between;
44
- pointer-events: auto;
45
- }
46
-
47
- .AfGrid-snackbar {
48
- position: fixed;
49
- top: var(--ds-size-4, 1rem);
50
- left: 50%;
51
- z-index: 1400;
52
- transform: translateX(-50%);
53
- }
54
-
55
- .AfGrid-columnsPanelSearch {
56
- display: flex;
57
- flex-direction: column;
58
- gap: var(--ds-size-3, 0.75rem);
59
- }
60
-
61
- .AfGrid-columnsPanelList {
62
- display: flex;
63
- flex-direction: column;
64
- gap: var(--ds-size-1, 0.25rem);
65
- max-height: 50vh;
66
- margin: 0;
67
- padding: 0;
68
- overflow-y: auto;
69
- list-style: none;
70
- }
71
-
72
- .AfGrid-columnsPanelItem {
73
- padding: var(--ds-size-1, 0.25rem);
74
- border-radius: var(--ds-border-radius-md, 4px);
75
- cursor: grab;
76
- }
77
-
78
- .AfGrid-columnsPanelItem:hover {
79
- background-color: var(--ds-color-neutral-surface-hover, rgb(0 0 0 / 4%));
80
- }
81
-
82
- .AfGrid-columnsPanelActions {
83
- display: flex;
84
- gap: var(--ds-size-2, 0.5rem);
85
- justify-content: flex-end;
86
- }
87
-
88
- /* Header filters */
89
-
90
- /*
91
- * The header filter row is short, so the input drops the border radius and any
92
- * vertical padding and fills the cell instead.
93
- *
94
- * The height has to be clamped to the cell. Designsystemet gives the input a
95
- * min-height taller than the row MUI reserves, and a cell that grows past that
96
- * stretches the row without MUI knowing — leaving the cells that hold no input
97
- * (unfilterable columns such as `actions`) short of the row they sit in.
98
- */
99
- .AfGrid-headerFilterInput.ObInputAdornments-root {
100
- --obInputAdornments-padding: 0;
101
- --obInputAdornments-gap: 0;
102
-
103
- block-size: 100%;
104
- min-block-size: 0;
105
- background-color: transparent;
106
- border-color: transparent;
107
- border-radius: 0;
108
- }
109
-
110
- .AfGrid-headerFilterInput .ObInputAdornments-field {
111
- min-block-size: 0;
112
- }
113
-
114
- .AfGrid-headerFilterInput.ObInputAdornments-root:hover:not(:focus-within) {
115
- border-color: transparent;
116
- }
117
-
118
- .AfGrid-headerFilterInput .ObInputAdornments-field {
119
- padding-inline: var(--ds-size-1, 0.25rem);
120
- text-overflow: ellipsis;
121
- }
122
-
123
- /* Read-only cells show a summary, so the text cursor would be misleading */
124
- .AfGrid-headerFilterInput .ObInputAdornments-field:read-only {
125
- cursor: pointer;
126
- color: var(--ds-color-neutral-text-subtle, #68707c);
127
- }
128
-
129
- /*
130
- * The header filter row is denser than a normal form row, so the buttons and
131
- * their icons are stepped down from the default `sm` size.
132
- */
133
- .AfGrid-headerFilterInput .ds-button {
134
- --dsc-button-size: var(--ds-size-7, 1.5rem);
135
- --ds-icon-size: var(--ds-size-4, 1rem);
136
-
137
- min-height: 0;
138
- padding: 0;
139
- }
140
-
141
- /* The funnel is highlighted while the column has criteria, as in the toolbar */
142
- .AfGrid-headerFilterButton[data-active] {
143
- --dsc-button-color: var(--ds-color-accent-base-default);
144
- --dsc-button-color--hover: var(--ds-color-accent-base-hover);
145
- }
146
-
147
- .AfGrid-headerFilterEmpty {
148
- display: block;
149
- inline-size: 100%;
150
- block-size: 100%;
151
- }
152
-
153
- /*
154
- * The panel is a native popover, so it renders in the top layer and is not
155
- * clipped by the grid's own overflow. `display` must stay scoped to
156
- * `:popover-open`, or it overrides the user agent rule that hides a closed
157
- * popover and the panel is always visible.
158
- */
159
- .AfGrid-headerFilterPanel.ds-popover {
160
- --dsc-popover-max-width: none;
161
- --dsc-popover-padding: var(--ds-size-3, 0.75rem);
162
-
163
- inline-size: 22rem;
164
- max-inline-size: 90vw;
165
- max-block-size: 80vh;
166
-
167
- /*
168
- * Tall enough for the criteria, the distinct list at its minimum and the
169
- * truncation hint, without the panel having to scroll. At 26rem the hint and
170
- * the buttons below it did not fit.
171
- */
172
- block-size: 30rem;
173
- }
174
-
175
- /*
176
- * A column with many distinct values needs a taller list than one with a
177
- * handful, so the panel is resizable and the panel body follows its height.
178
- * `resize` needs a non-visible overflow to take effect.
179
- */
180
- .AfGrid-headerFilterPanel.ds-popover:popover-open {
181
- display: flex;
182
- flex-direction: column;
183
- gap: var(--ds-size-3, 0.75rem);
184
- min-inline-size: 18rem;
185
- min-block-size: 16rem;
186
- overflow: auto;
187
- resize: both;
188
- }
189
-
190
- .AfGrid-headerFilterPanel .ObFieldFilterPanel-root {
191
- flex: 1 1 auto;
192
- min-block-size: 0;
193
- }
194
-
195
- /* New item row */
196
-
197
- /*
198
- * The new item row is a pinned row that shows an overlay text until it is
199
- * edited. The text comes from the `--AfGrid-newItemRowText` custom property the
200
- * grid root sets, so it is localized without an extra DOM node. In view mode the
201
- * cell contents are hidden rather than removed, so keyboard focus still lands
202
- * on a cell and a double-click or keypress starts editing as on any row.
203
- */
204
- .MuiDataGrid-row.AfGrid-newItemRow {
205
- position: relative;
206
- }
207
-
208
- .MuiDataGrid-row.AfGrid-newItemRow:not(.MuiDataGrid-row--editing) .MuiDataGrid-cell > * {
209
- visibility: hidden;
210
- }
211
-
212
- .MuiDataGrid-row.AfGrid-newItemRow:not(.MuiDataGrid-row--editing)::after {
213
- content: var(--AfGrid-newItemRowText, "");
214
- position: absolute;
215
- inset: 0;
216
- display: flex;
217
- align-items: center;
218
- padding-inline: var(--ds-size-2, 0.5rem);
219
- color: var(--ds-color-neutral-text-subtle, #68707c);
220
- font-style: italic;
221
- pointer-events: none;
222
- }
223
-
224
- /*
225
- * Links in a cell.
226
- *
227
- * The grid sets its own text colour on the cell, and an anchor inherits it, so a link to another
228
- * record renders as ordinary text and is only discoverable by hovering it. These give it the
229
- * brand colour and an underline the way a link anywhere else on the site has, without the app
230
- * having to style every cell that holds one.
231
- */
232
- .AfGrid-root .MuiDataGrid-cell a {
233
- color: var(--ds-color-brand-text-default, #0062ba);
234
- text-decoration: underline;
235
- text-underline-offset: 0.15em;
236
- }
237
-
238
- .AfGrid-root .MuiDataGrid-cell a:hover {
239
- color: var(--ds-color-brand-text-subtle, #00417d);
240
- }
241
-
242
- /* Action buttons render as anchors when a column links a row somewhere; they style themselves. */
243
- .AfGrid-root .MuiDataGrid-cell a.ds-button {
244
- text-decoration: none;
245
- }
1
+ .AfGrid-root {
2
+ height: 100%;
3
+ }
4
+
5
+ .AfGrid-loading {
6
+ display: flex;
7
+ align-items: center;
8
+ justify-content: center;
9
+ height: 100%;
10
+ }
11
+
12
+ .AfGrid-toolbar {
13
+ display: flex;
14
+ flex-wrap: wrap;
15
+ gap: var(--ds-size-1, 0.25rem);
16
+ align-items: center;
17
+ padding: var(--ds-size-1, 0.25rem);
18
+ }
19
+
20
+ .MuiDataGrid-headerFilterRow .MuiDataGrid-columnHeader.AfGrid-headerCell {
21
+ align-items: center;
22
+ padding-block: 0;
23
+ background-color: var(--ds-color-neutral-surface-tinted, rgb(0 0 0 / 2%));
24
+
25
+ &:focus-within {
26
+ background-color: var(--ds-color-neutral-surface-hover, rgb(0 0 0 / 4%));
27
+ }
28
+ }
29
+
30
+ .AfGrid-errorOverlay {
31
+ position: absolute;
32
+ inset-inline: 0;
33
+ top: var(--DataGrid-topContainerHeight);
34
+ z-index: 10;
35
+ padding: var(--ds-size-1, 0.25rem) var(--ds-size-2, 0.5rem);
36
+ pointer-events: none;
37
+ }
38
+
39
+ .AfGrid-errorAlert {
40
+ display: flex;
41
+ gap: var(--ds-size-2, 0.5rem);
42
+ align-items: center;
43
+ justify-content: space-between;
44
+ pointer-events: auto;
45
+ }
46
+
47
+ .AfGrid-snackbar {
48
+ position: fixed;
49
+ top: var(--ds-size-4, 1rem);
50
+ left: 50%;
51
+ z-index: 1400;
52
+ transform: translateX(-50%);
53
+ }
54
+
55
+ .AfGrid-columnsPanelSearch {
56
+ display: flex;
57
+ flex-direction: column;
58
+ gap: var(--ds-size-3, 0.75rem);
59
+ }
60
+
61
+ .AfGrid-columnsPanelList {
62
+ display: flex;
63
+ flex-direction: column;
64
+ gap: var(--ds-size-1, 0.25rem);
65
+ max-height: 50vh;
66
+ margin: 0;
67
+ padding: 0;
68
+ overflow-y: auto;
69
+ list-style: none;
70
+ }
71
+
72
+ .AfGrid-columnsPanelItem {
73
+ padding: var(--ds-size-1, 0.25rem);
74
+ border-radius: var(--ds-border-radius-md, 4px);
75
+ cursor: grab;
76
+ }
77
+
78
+ .AfGrid-columnsPanelItem:hover {
79
+ background-color: var(--ds-color-neutral-surface-hover, rgb(0 0 0 / 4%));
80
+ }
81
+
82
+ .AfGrid-columnsPanelActions {
83
+ display: flex;
84
+ gap: var(--ds-size-2, 0.5rem);
85
+ justify-content: flex-end;
86
+ }
87
+
88
+ /* Header filters */
89
+
90
+ /*
91
+ * The header filter row is short, so the input drops the border radius and any
92
+ * vertical padding and fills the cell instead.
93
+ *
94
+ * The height has to be clamped to the cell. Designsystemet gives the input a
95
+ * min-height taller than the row MUI reserves, and a cell that grows past that
96
+ * stretches the row without MUI knowing — leaving the cells that hold no input
97
+ * (unfilterable columns such as `actions`) short of the row they sit in.
98
+ */
99
+ .AfGrid-headerFilterInput.ObInputAdornments-root {
100
+ --obInputAdornments-padding: 0;
101
+ --obInputAdornments-gap: 0;
102
+
103
+ block-size: 100%;
104
+ min-block-size: 0;
105
+ background-color: transparent;
106
+ border-color: transparent;
107
+ border-radius: 0;
108
+ }
109
+
110
+ .AfGrid-headerFilterInput .ObInputAdornments-field {
111
+ min-block-size: 0;
112
+ }
113
+
114
+ .AfGrid-headerFilterInput.ObInputAdornments-root:hover:not(:focus-within) {
115
+ border-color: transparent;
116
+ }
117
+
118
+ .AfGrid-headerFilterInput .ObInputAdornments-field {
119
+ padding-inline: var(--ds-size-1, 0.25rem);
120
+ text-overflow: ellipsis;
121
+ }
122
+
123
+ /* Read-only cells show a summary, so the text cursor would be misleading */
124
+ .AfGrid-headerFilterInput .ObInputAdornments-field:read-only {
125
+ cursor: pointer;
126
+ color: var(--ds-color-neutral-text-subtle, #68707c);
127
+ }
128
+
129
+ /*
130
+ * The header filter row is denser than a normal form row, so the buttons and
131
+ * their icons are stepped down from the default `sm` size.
132
+ */
133
+ .AfGrid-headerFilterInput .ds-button {
134
+ --dsc-button-size: var(--ds-size-7, 1.5rem);
135
+ --ds-icon-size: var(--ds-size-4, 1rem);
136
+
137
+ min-height: 0;
138
+ padding: 0;
139
+ }
140
+
141
+ /* The funnel is highlighted while the column has criteria, as in the toolbar */
142
+ .AfGrid-headerFilterButton[data-active] {
143
+ --dsc-button-color: var(--ds-color-accent-base-default);
144
+ --dsc-button-color--hover: var(--ds-color-accent-base-hover);
145
+ }
146
+
147
+ .AfGrid-headerFilterEmpty {
148
+ display: block;
149
+ inline-size: 100%;
150
+ block-size: 100%;
151
+ }
152
+
153
+ /*
154
+ * The panel is a native popover, so it renders in the top layer and is not
155
+ * clipped by the grid's own overflow. `display` must stay scoped to
156
+ * `:popover-open`, or it overrides the user agent rule that hides a closed
157
+ * popover and the panel is always visible.
158
+ */
159
+ .AfGrid-headerFilterPanel.ds-popover {
160
+ --dsc-popover-max-width: none;
161
+ --dsc-popover-padding: var(--ds-size-3, 0.75rem);
162
+
163
+ inline-size: 22rem;
164
+ max-inline-size: 90vw;
165
+ max-block-size: 80vh;
166
+
167
+ /*
168
+ * Tall enough for the criteria, the distinct list at its minimum and the
169
+ * truncation hint, without the panel having to scroll. At 26rem the hint and
170
+ * the buttons below it did not fit.
171
+ */
172
+ block-size: 30rem;
173
+ }
174
+
175
+ /*
176
+ * A column with many distinct values needs a taller list than one with a
177
+ * handful, so the panel is resizable and the panel body follows its height.
178
+ * `resize` needs a non-visible overflow to take effect.
179
+ */
180
+ .AfGrid-headerFilterPanel.ds-popover:popover-open {
181
+ display: flex;
182
+ flex-direction: column;
183
+ gap: var(--ds-size-3, 0.75rem);
184
+ min-inline-size: 18rem;
185
+ min-block-size: 16rem;
186
+ overflow: auto;
187
+ resize: both;
188
+ }
189
+
190
+ .AfGrid-headerFilterPanel .ObFieldFilterPanel-root {
191
+ flex: 1 1 auto;
192
+ min-block-size: 0;
193
+ }
194
+
195
+ /* New item row */
196
+
197
+ /*
198
+ * The new item row is a pinned row that shows an overlay text until it is
199
+ * edited. The text comes from the `--AfGrid-newItemRowText` custom property the
200
+ * grid root sets, so it is localized without an extra DOM node. In view mode the
201
+ * cell contents are hidden rather than removed, so keyboard focus still lands
202
+ * on a cell and a double-click or keypress starts editing as on any row.
203
+ */
204
+ .MuiDataGrid-row.AfGrid-newItemRow {
205
+ position: relative;
206
+ }
207
+
208
+ .MuiDataGrid-row.AfGrid-newItemRow:not(.MuiDataGrid-row--editing) .MuiDataGrid-cell > * {
209
+ visibility: hidden;
210
+ }
211
+
212
+ .MuiDataGrid-row.AfGrid-newItemRow:not(.MuiDataGrid-row--editing)::after {
213
+ content: var(--AfGrid-newItemRowText, "");
214
+ position: absolute;
215
+ inset: 0;
216
+ display: flex;
217
+ align-items: center;
218
+ padding-inline: var(--ds-size-2, 0.5rem);
219
+ color: var(--ds-color-neutral-text-subtle, #68707c);
220
+ font-style: italic;
221
+ pointer-events: none;
222
+ }
223
+
224
+ /*
225
+ * Links in a cell.
226
+ *
227
+ * The grid sets its own text colour on the cell, and an anchor inherits it, so a link to another
228
+ * record renders as ordinary text and is only discoverable by hovering it. These give it the
229
+ * brand colour and an underline the way a link anywhere else on the site has, without the app
230
+ * having to style every cell that holds one.
231
+ */
232
+ .AfGrid-root .MuiDataGrid-cell a {
233
+ color: var(--ds-color-brand-text-default, #0062ba);
234
+ text-decoration: underline;
235
+ text-underline-offset: 0.15em;
236
+ }
237
+
238
+ .AfGrid-root .MuiDataGrid-cell a:hover {
239
+ color: var(--ds-color-brand-text-subtle, #00417d);
240
+ }
241
+
242
+ /* Action buttons render as anchors when a column links a row somewhere; they style themselves. */
243
+ .AfGrid-root .MuiDataGrid-cell a.ds-button {
244
+ text-decoration: none;
245
+ }