@operato/app 2.0.0-alpha.7 → 2.0.0-alpha.71

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 (47) hide show
  1. package/CHANGELOG.md +375 -0
  2. package/demo/data-grist-test.html +25 -14
  3. package/demo/index.html +13 -2
  4. package/dist/src/filters-form/filter-resource-select.js +13 -16
  5. package/dist/src/filters-form/filter-resource-select.js.map +1 -1
  6. package/dist/src/grist-editor/ox-grist-editor-code.d.ts +1 -1
  7. package/dist/src/grist-editor/ox-grist-editor-json.d.ts +1 -1
  8. package/dist/src/grist-editor/ox-grist-editor-privilege.d.ts +1 -1
  9. package/dist/src/grist-editor/ox-grist-editor-resource-code.d.ts +2 -2
  10. package/dist/src/grist-editor/ox-grist-editor-resource-code.js +2 -2
  11. package/dist/src/grist-editor/ox-grist-editor-resource-code.js.map +1 -1
  12. package/dist/src/grist-editor/ox-grist-editor-resource-id.d.ts +2 -2
  13. package/dist/src/grist-editor/ox-grist-editor-resource-id.js +2 -2
  14. package/dist/src/grist-editor/ox-grist-editor-resource-id.js.map +1 -1
  15. package/dist/src/grist-editor/ox-grist-renderer-resource-code.d.ts +1 -1
  16. package/dist/src/grist-editor/ox-popup-code-input.d.ts +2 -1
  17. package/dist/src/grist-editor/ox-popup-code-input.js +3 -2
  18. package/dist/src/grist-editor/ox-popup-code-input.js.map +1 -1
  19. package/dist/src/grist-editor/ox-popup-privilege-input.d.ts +2 -1
  20. package/dist/src/grist-editor/ox-popup-privilege-input.js +8 -5
  21. package/dist/src/grist-editor/ox-popup-privilege-input.js.map +1 -1
  22. package/dist/src/input/ox-input-background-pattern.d.ts +1 -1
  23. package/dist/src/input/ox-input-fill-style.d.ts +1 -1
  24. package/dist/src/selector/ox-selector-resource-id.d.ts +2 -1
  25. package/dist/src/selector/ox-selector-resource-id.js +4 -3
  26. package/dist/src/selector/ox-selector-resource-id.js.map +1 -1
  27. package/dist/src/selector/ox-selector-resource-object-legacy.d.ts +2 -1
  28. package/dist/src/selector/ox-selector-resource-object-legacy.js +4 -3
  29. package/dist/src/selector/ox-selector-resource-object-legacy.js.map +1 -1
  30. package/dist/src/selector/ox-selector-resource-object.d.ts +3 -2
  31. package/dist/src/selector/ox-selector-resource-object.js +5 -4
  32. package/dist/src/selector/ox-selector-resource-object.js.map +1 -1
  33. package/dist/stories/ox-input-graphql.stories.js +13 -1
  34. package/dist/stories/ox-input-graphql.stories.js.map +1 -1
  35. package/dist/tsconfig.tsbuildinfo +1 -1
  36. package/package.json +27 -29
  37. package/src/filters-form/filter-resource-select.ts +27 -26
  38. package/src/grist-editor/ox-grist-editor-resource-code.ts +2 -2
  39. package/src/grist-editor/ox-grist-editor-resource-id.ts +2 -2
  40. package/src/grist-editor/ox-popup-code-input.ts +3 -2
  41. package/src/grist-editor/ox-popup-privilege-input.ts +8 -5
  42. package/src/selector/ox-selector-resource-id.ts +4 -3
  43. package/src/selector/ox-selector-resource-object-legacy.ts +10 -9
  44. package/src/selector/ox-selector-resource-object.ts +6 -5
  45. package/stories/ox-input-graphql.stories.ts +13 -1
  46. package/themes/app-theme.css +11 -0
  47. package/themes/grist-theme.css +1 -1
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@operato/app",
3
3
  "description": "WebApplication production supporting components following open-wc recommendations",
4
4
  "author": "heartyoh",
5
- "version": "2.0.0-alpha.7",
5
+ "version": "2.0.0-alpha.71",
6
6
  "main": "dist/src/index.js",
7
7
  "module": "dist/src/index.js",
8
8
  "exports": {
@@ -133,46 +133,44 @@
133
133
  "@codemirror/view": "^6.22.1",
134
134
  "@graphql-tools/delegate": "^10.0.1",
135
135
  "@graphql-tools/wrap": "^8.5.0",
136
- "@material/mwc-button": "^0.27.0",
137
- "@material/mwc-icon": "^0.27.0",
138
- "@material/mwc-icon-button": "^0.27.0",
139
- "@operato/attachment": "^2.0.0-alpha.7",
140
- "@operato/data-grist": "^2.0.0-alpha.7",
141
- "@operato/font": "^2.0.0-alpha.7",
142
- "@operato/form": "^2.0.0-alpha.0",
143
- "@operato/graphql": "^2.0.0-alpha.0",
144
- "@operato/i18n": "^2.0.0-alpha.0",
145
- "@operato/input": "^2.0.0-alpha.4",
146
- "@operato/layout": "^2.0.0-alpha.4",
147
- "@operato/property-editor": "^2.0.0-alpha.7",
148
- "@operato/shell": "^2.0.0-alpha.0",
149
- "@operato/styles": "^2.0.0-alpha.0",
150
- "@operato/utils": "^2.0.0-alpha.0",
151
- "cm6-graphql": "^0.0.12",
136
+ "@material/web": "^1.4.0",
137
+ "@operato/attachment": "^2.0.0-alpha.71",
138
+ "@operato/data-grist": "^2.0.0-alpha.68",
139
+ "@operato/font": "^2.0.0-alpha.71",
140
+ "@operato/form": "^2.0.0-alpha.68",
141
+ "@operato/graphql": "^2.0.0-alpha.57",
142
+ "@operato/i18n": "^2.0.0-alpha.59",
143
+ "@operato/input": "^2.0.0-alpha.68",
144
+ "@operato/layout": "^2.0.0-alpha.69",
145
+ "@operato/property-editor": "^2.0.0-alpha.71",
146
+ "@operato/shell": "^2.0.0-alpha.68",
147
+ "@operato/styles": "^2.0.0-alpha.68",
148
+ "@operato/utils": "^2.0.0-alpha.68",
149
+ "cm6-graphql": "^0.0.14",
152
150
  "codemirror": "^6.0.1",
153
151
  "cronstrue": "^2.2.0",
154
152
  "cross-fetch": "^3.1.5",
155
153
  "graphql": "^16.5.0",
156
154
  "graphql-config": "^5.0.2",
157
155
  "graphql-tag": "^2.12.6",
158
- "lit": "^2.5.0"
156
+ "lit": "^3.1.2"
159
157
  },
160
158
  "devDependencies": {
161
- "@custom-elements-manifest/analyzer": "^0.8.1",
159
+ "@custom-elements-manifest/analyzer": "^0.9.2",
162
160
  "@hatiolab/prettier-config": "^1.0.0",
163
- "@open-wc/eslint-config": "^10.0.0",
161
+ "@open-wc/eslint-config": "^12.0.3",
164
162
  "@open-wc/testing": "^3.1.6",
165
- "@typescript-eslint/eslint-plugin": "^5.59.1",
166
- "@typescript-eslint/parser": "^5.59.1",
163
+ "@typescript-eslint/eslint-plugin": "^7.0.1",
164
+ "@typescript-eslint/parser": "^7.0.1",
167
165
  "@web/dev-server": "^0.3.0",
168
- "@web/dev-server-storybook": "^0.7.4",
169
- "@web/test-runner": "^0.17.0",
166
+ "@web/dev-server-storybook": "^2.0.1",
167
+ "@web/test-runner": "^0.18.0",
170
168
  "concurrently": "^8.0.1",
171
169
  "eslint": "^8.39.0",
172
- "eslint-config-prettier": "^8.3.0",
173
- "husky": "^8.0.1",
174
- "lint-staged": "^13.2.2",
175
- "prettier": "^2.4.1",
170
+ "eslint-config-prettier": "^9.1.0",
171
+ "husky": "^9.0.11",
172
+ "lint-staged": "^15.2.2",
173
+ "prettier": "^3.2.5",
176
174
  "tslib": "^2.3.1",
177
175
  "typescript": "^5.0.4"
178
176
  },
@@ -189,5 +187,5 @@
189
187
  "prettier --write"
190
188
  ]
191
189
  },
192
- "gitHead": "2507b451915b745adb249bf59eef586d7683531a"
190
+ "gitHead": "d3111bf8a6d3b17cc22c104e8aee5fb195683f1e"
193
191
  }
@@ -6,22 +6,16 @@ import { html } from 'lit-html'
6
6
  import { FilterConfig, FilterSelectRenderer } from '@operato/form'
7
7
  import { i18next } from '@operato/i18n'
8
8
  import { openPopup } from '@operato/layout'
9
+ import { GristRecord } from '@operato/data-grist'
9
10
 
10
- type SelectedCallback = (value: { id: string; name: string; description: string }) => void
11
+ type SelectedCallback = (value?: Partial<GristRecord>) => void
11
12
 
12
13
  function openResourceSelector(filter: FilterConfig, value: any, confirmCallback: SelectedCallback) {
13
14
  const { queryName, select, list, basicArgs, valueField = 'id', title } = filter.options || {}
14
15
 
15
- var actualValue
16
- if (typeof valueField === 'function') {
17
- actualValue = valueField(value)
18
- } else {
19
- actualValue = value?.[valueField]
20
- }
21
-
22
16
  var template = html`
23
17
  <ox-selector-resource-object
24
- .value=${actualValue}
18
+ .value=${value}
25
19
  .confirmCallback=${confirmCallback}
26
20
  .queryName=${queryName}
27
21
  .columns=${select}
@@ -53,9 +47,9 @@ function openResourceSelector(filter: FilterConfig, value: any, confirmCallback:
53
47
 
54
48
  export const FilterResourceSelect: FilterSelectRenderer = (filter, value, owner: any) => {
55
49
  const { name, operator = 'like' } = filter
56
- var { idField = 'id', nameField = 'name', descriptionField = 'description' } = filter.options || {};
57
- const hideValue = value ? value[idField] : '';
58
- const text = value ? value[nameField] : '';
50
+ var { idField = 'id', nameField = 'name', descriptionField = 'description' } = filter.options || {}
51
+ const hideValue = value ? value[idField] : ''
52
+ const text = value ? value[nameField] : ''
59
53
 
60
54
  return operator === 'like'
61
55
  ? html` <input
@@ -87,26 +81,33 @@ export const FilterResourceSelect: FilterSelectRenderer = (filter, value, owner:
87
81
  name='${name}_disp'
88
82
  .value=${text}
89
83
  readonly
84
+ @change=${() => false}
90
85
  @click=${(e: Event) => {
91
86
  e.stopPropagation()
92
- const input = e.target as HTMLInputElement;
87
+
88
+ const input = e.target as HTMLInputElement
89
+ const codeInput =
90
+ owner.tagName.toLowerCase() == 'ox-grid-header'
91
+ ? owner.renderRoot.querySelector(`[name="${name}"]`)
92
+ : owner.renderRoot.querySelector(`form [name="${name}"]`)
93
93
 
94
94
  const confirmCallback = (selected?: { [field: string]: any }) => {
95
- let disp = selected ? selected[idField] : '';
95
+ let disp = selected ? selected[idField] : ''
96
96
 
97
- if(selected && nameField){
98
- disp = selected[nameField];
97
+ if (selected && nameField) {
98
+ disp = selected[nameField]
99
99
  }
100
- input.value = disp;
101
-
102
- let codeInput = owner.tagName.toLowerCase() == 'ox-grid-header'
103
- ? owner.renderRoot.querySelector(`[name="${name}"]`)
104
- : owner.renderRoot.querySelector(`form [name="${name}"]`);
100
+ input.value = disp
105
101
 
106
- const objectValue = selected ? selected[idField] : '';
107
- codeInput.value = objectValue;
102
+ const value = selected ? selected[idField] : ''
103
+ codeInput.value = value
108
104
 
109
- input.dispatchEvent(new Event('change', { bubbles: true }))
105
+ codeInput.dispatchEvent(
106
+ new Event('change', {
107
+ bubbles: true,
108
+ composed: true
109
+ })
110
+ )
110
111
 
111
112
  owner.dispatchEvent(
112
113
  new CustomEvent('filter-change', {
@@ -115,13 +116,13 @@ export const FilterResourceSelect: FilterSelectRenderer = (filter, value, owner:
115
116
  detail: {
116
117
  name: name,
117
118
  operator,
118
- value: objectValue
119
+ value
119
120
  }
120
121
  })
121
122
  )
122
123
  }
123
124
 
124
- openResourceSelector(filter, value, confirmCallback)
125
+ openResourceSelector(filter, codeInput.value, confirmCallback)
125
126
  }}
126
127
  />
127
128
  `
@@ -1,4 +1,4 @@
1
- import '@material/mwc-icon'
1
+ import '@material/web/icon/icon.js'
2
2
  import { OxGristEditor, RecordConfig } from '@operato/data-grist'
3
3
 
4
4
  import { customElement } from 'lit/decorators.js'
@@ -20,7 +20,7 @@ export class OxGristEditorResourceCode extends OxGristEditor {
20
20
  ${(codes || []).map(
21
21
  (code: CommonCodeDetail) => html`
22
22
  <option ?selected=${code.name == this.value} value=${code.name}>
23
- ${code.name == '' ? '' : selectDispOpt.replace('name',code.description).replace('code',code.name)}
23
+ ${code.name == '' ? '' : selectDispOpt.replace('name', code.description).replace('code', code.name)}
24
24
  </option>
25
25
  `
26
26
  )}
@@ -1,4 +1,4 @@
1
- import '@material/mwc-icon'
1
+ import '@material/web/icon/icon.js'
2
2
  import '../selector/ox-selector-resource-id.js'
3
3
 
4
4
  import { html } from 'lit'
@@ -19,7 +19,7 @@ export class OxGristEditorResourceId extends OxGristEditor {
19
19
  ${!value
20
20
  ? html`<span tabindex="0"></span>`
21
21
  : html` <span tabindex="0">${value[nameField]} (${value[descriptionField]})</span> `}
22
- <mwc-icon>arrow_drop_down</mwc-icon>
22
+ <md-icon>arrow_drop_down</md-icon>
23
23
  `
24
24
  }
25
25
 
@@ -1,3 +1,4 @@
1
+ import '@material/web/button/elevated-button.js'
1
2
  import '@operato/input/ox-input-code.js'
2
3
 
3
4
  import { css, html, LitElement } from 'lit'
@@ -45,8 +46,8 @@ export class OxPopupCodeInput extends LitElement {
45
46
  </ox-input-code>
46
47
 
47
48
  <div class="button-container">
48
- <mwc-button @click=${this.onCancel.bind(this)}>${i18next.t('button.cancel')}</mwc-button>
49
- <mwc-button @click=${this.onConfirm.bind(this)}>${i18next.t('button.confirm')}</mwc-button>
49
+ <md-elevated-button @click=${this.onCancel.bind(this)}>${i18next.t('button.cancel')}</md-elevated-button>
50
+ <md-elevated-button @click=${this.onConfirm.bind(this)}>${i18next.t('button.confirm')}</md-elevated-button>
50
51
  </div>
51
52
  `
52
53
  }
@@ -1,3 +1,4 @@
1
+ import '@material/web/button/elevated-button.js'
1
2
  import '@operato/input/ox-input-privilege.js'
2
3
 
3
4
  import gql from 'graphql-tag'
@@ -32,9 +33,11 @@ export class OxPopupPrivilegeInput extends LitElement {
32
33
  .button-container {
33
34
  display: flex;
34
35
  flex-direction: row;
36
+ gap: 10px;
37
+ padding: var(--padding-default);
35
38
  }
36
39
 
37
- div[padding] {
40
+ div[filler] {
38
41
  flex: 1;
39
42
  }
40
43
  `
@@ -52,10 +55,10 @@ export class OxPopupPrivilegeInput extends LitElement {
52
55
  </ox-input-privilege>
53
56
 
54
57
  <div class="button-container">
55
- <mwc-button @click=${this.onReset.bind(this)}>${i18next.t('button.reset')}</mwc-button>
56
- <div padding></div>
57
- <mwc-button @click=${this.onCancel.bind(this)}>${i18next.t('button.cancel')}</mwc-button>
58
- <mwc-button @click=${this.onConfirm.bind(this)}>${i18next.t('button.confirm')}</mwc-button>
58
+ <md-elevated-button @click=${this.onReset.bind(this)}>${i18next.t('button.reset')}</md-elevated-button>
59
+ <div filler></div>
60
+ <md-elevated-button @click=${this.onCancel.bind(this)}>${i18next.t('button.cancel')}</md-elevated-button>
61
+ <md-elevated-button @click=${this.onConfirm.bind(this)}>${i18next.t('button.confirm')}</md-elevated-button>
59
62
  </div>
60
63
  `
61
64
  }
@@ -1,3 +1,4 @@
1
+ import '@material/web/button/elevated-button.js'
1
2
  import '@operato/data-grist'
2
3
 
3
4
  import gql from 'graphql-tag'
@@ -72,9 +73,9 @@ export class OxSelectorResourceId extends LitElement {
72
73
  </ox-grist>
73
74
 
74
75
  <div class="button-container">
75
- <mwc-button @click=${this.onEmpty.bind(this)}>${i18next.t('button.empty')}</mwc-button>
76
- <mwc-button @click=${this.onCancel.bind(this)}>${i18next.t('button.cancel')}</mwc-button>
77
- <mwc-button @click=${this.onConfirm.bind(this)}>${i18next.t('button.confirm')}</mwc-button>
76
+ <md-elevated-button @click=${this.onEmpty.bind(this)}>${i18next.t('button.empty')}</md-elevated-button>
77
+ <md-elevated-button @click=${this.onCancel.bind(this)}>${i18next.t('button.cancel')}</md-elevated-button>
78
+ <md-elevated-button @click=${this.onConfirm.bind(this)}>${i18next.t('button.confirm')}</md-elevated-button>
78
79
  </div>
79
80
  `
80
81
  }
@@ -1,3 +1,4 @@
1
+ import '@material/web/button/elevated-button.js'
1
2
  import '@operato/data-grist'
2
3
  import '@operato/form/ox-search-form.js'
3
4
 
@@ -111,9 +112,9 @@ export class OxSelectorResourceObjectLegacy extends LitElement {
111
112
  </ox-grist>
112
113
 
113
114
  <div class="button-container">
114
- <mwc-button @click=${this.onEmpty.bind(this)}>${i18next.t('button.empty')}</mwc-button>
115
- <mwc-button @click=${this.onCancel.bind(this)}>${i18next.t('button.cancel')}</mwc-button>
116
- <mwc-button @click=${this.onConfirm.bind(this)}>${i18next.t('button.confirm')}</mwc-button>
115
+ <md-elevated-button @click=${this.onEmpty.bind(this)}>${i18next.t('button.empty')}</md-elevated-button>
116
+ <md-elevated-button @click=${this.onCancel.bind(this)}>${i18next.t('button.cancel')}</md-elevated-button>
117
+ <md-elevated-button @click=${this.onConfirm.bind(this)}>${i18next.t('button.confirm')}</md-elevated-button>
117
118
  </div>
118
119
  `
119
120
  }
@@ -223,17 +224,17 @@ export class OxSelectorResourceObjectLegacy extends LitElement {
223
224
  fieldType === 'string'
224
225
  ? 'text'
225
226
  : numberTypes.indexOf(fieldType) >= 0
226
- ? 'number'
227
- : fieldType === 'boolean'
228
- ? 'checkbox'
229
- : fieldType,
227
+ ? 'number'
228
+ : fieldType === 'boolean'
229
+ ? 'checkbox'
230
+ : fieldType,
230
231
  queryName: selectField.queryName,
231
232
  props:
232
233
  fieldType === 'string'
233
234
  ? { searchOper: 'i_like' }
234
235
  : fieldType === 'object'
235
- ? { searchOper: 'in' }
236
- : { searchOper: 'eq' },
236
+ ? { searchOper: 'in' }
237
+ : { searchOper: 'eq' },
237
238
  attrs: fieldType === 'boolean' ? ['indeterminated'] : []
238
239
  }
239
240
  })
@@ -1,3 +1,4 @@
1
+ import '@material/web/button/elevated-button.js'
1
2
  import '@operato/data-grist'
2
3
 
3
4
  import gql from 'graphql-tag'
@@ -61,7 +62,7 @@ export class OxSelectorResourceObject extends LitElement {
61
62
  @property({ type: String }) queryName!: string
62
63
  @property({ type: Object }) basicArgs: any
63
64
  @property({ type: String }) inherited?: InheritedValueType = InheritedValueType.Include
64
- @property({ type: Object }) confirmCallback?: (record?: GristRecord | null) => void
65
+ @property({ type: Object }) confirmCallback?: (record?: Partial<GristRecord>) => void
65
66
  @property({ type: Array }) selectedRecords: GristRecord[] = []
66
67
 
67
68
  @property({ type: Array }) searchFields: any
@@ -98,9 +99,9 @@ export class OxSelectorResourceObject extends LitElement {
98
99
  </ox-grist>
99
100
 
100
101
  <div class="button-container">
101
- <mwc-button @click=${this.onEmpty.bind(this)}>${i18next.t('button.empty')}</mwc-button>
102
- <mwc-button @click=${this.onCancel.bind(this)}>${i18next.t('button.cancel')}</mwc-button>
103
- <mwc-button @click=${this.onConfirm.bind(this)}>${i18next.t('button.confirm')}</mwc-button>
102
+ <md-elevated-button @click=${this.onEmpty.bind(this)}>${i18next.t('button.empty')}</md-elevated-button>
103
+ <md-elevated-button @click=${this.onCancel.bind(this)}>${i18next.t('button.cancel')}</md-elevated-button>
104
+ <md-elevated-button @click=${this.onConfirm.bind(this)}>${i18next.t('button.confirm')}</md-elevated-button>
104
105
  </div>
105
106
  `
106
107
  }
@@ -114,7 +115,7 @@ export class OxSelectorResourceObject extends LitElement {
114
115
  }
115
116
 
116
117
  onEmpty() {
117
- this.confirmCallback && this.confirmCallback(null)
118
+ this.confirmCallback && this.confirmCallback()
118
119
  closePopup(this)
119
120
  }
120
121
 
@@ -24,7 +24,19 @@ interface ArgTypes {
24
24
 
25
25
  const Template: Story<ArgTypes> = ({ name = 'code', value = '' }: ArgTypes) => html`
26
26
  <link href="/themes/app-theme.css" rel="stylesheet" />
27
- <link href="https://fonts.googleapis.com/css?family=Material+Icons&display=block" rel="stylesheet" />
27
+ <link
28
+ href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL@20..48,100..700,0..1"
29
+ rel="stylesheet"
30
+ />
31
+ <link
32
+ href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL@20..48,100..700,0..1"
33
+ rel="stylesheet"
34
+ />
35
+ <link
36
+ href="https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL@20..48,100..700,0..1"
37
+ rel="stylesheet"
38
+ />
39
+
28
40
  <style>
29
41
  body {
30
42
  }
@@ -82,6 +82,17 @@ body {
82
82
  --mdc-button-outline-width: 1px;
83
83
  --mdc-button-horizontal-padding: 16px;
84
84
 
85
+ /* material style component themes */
86
+ --md-theme-on-primary: var(--theme-white-color);
87
+ --md-theme-primary: var(--secondary-text-color);
88
+ --md-theme-on-secondary: var(--theme-white-color);
89
+ --md-theme-secondary: var(--primary-color);
90
+ --md-button-outline-color: var(--primary-color);
91
+ --md-danger-button-primary-color: var(--status-danger-color);
92
+ --md-danger-button-outline-color: var(--status-danger-color);
93
+ --md-button-outline-width: 1px;
94
+ --md-button-horizontal-padding: 16px;
95
+
85
96
  /* button style */
86
97
  --button-background-color: #fafbfc;
87
98
  --button-background-focus-color: var(--primary-color);
@@ -37,7 +37,7 @@ body {
37
37
 
38
38
  --grid-record-background-color: var(--theme-white-color);
39
39
  --grid-record-odd-background-color: #f9f7f5;
40
- --grid-record-padding: var(--padding-default) 0 var(--padding-default) var(--padding-default);
40
+ --grid-record-padding: 0 5px 0 5px;
41
41
  --grid-record-color: var(--secondary-color);
42
42
  --grid-record-color-hover: var(--primary-color);
43
43
  --grid-record-wide-fontsize: var(--fontsize-small);