@exmg/exm-grid 1.1.2 → 1.1.3

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 (43) hide show
  1. package/dist/search/exm-toolbar-search.d.ts +25 -0
  2. package/dist/search/exm-toolbar-search.js +197 -0
  3. package/dist/styles/exm-grid-base-toolbar-styles-css.d.ts +1 -0
  4. package/dist/styles/exm-grid-base-toolbar-styles-css.js +103 -0
  5. package/dist/styles/exm-grid-common-styles-css.d.ts +1 -0
  6. package/dist/styles/exm-grid-common-styles-css.js +104 -0
  7. package/dist/styles/exm-grid-pagination-styles-css.d.ts +1 -0
  8. package/dist/styles/exm-grid-pagination-styles-css.js +104 -0
  9. package/dist/styles/exm-grid-setting-selection-list-styles-css.d.ts +1 -0
  10. package/dist/styles/exm-grid-setting-selection-list-styles-css.js +12 -0
  11. package/dist/styles/exm-grid-styles-css.d.ts +1 -0
  12. package/dist/styles/exm-grid-styles-css.js +416 -0
  13. package/dist/table/exm-grid-base-toolbar.d.ts +23 -0
  14. package/dist/table/exm-grid-base-toolbar.js +91 -0
  15. package/dist/table/exm-grid-pagination.d.ts +37 -0
  16. package/dist/table/exm-grid-pagination.js +190 -0
  17. package/dist/table/exm-grid-setting-selection-list.d.ts +24 -0
  18. package/dist/table/exm-grid-setting-selection-list.js +124 -0
  19. package/dist/table/exm-grid-smart-toolbar.d.ts +31 -0
  20. package/dist/table/exm-grid-smart-toolbar.js +138 -0
  21. package/dist/table/exm-grid-toolbar-filters.d.ts +36 -0
  22. package/dist/table/exm-grid-toolbar-filters.js +77 -0
  23. package/dist/table/exm-grid-toolbar.d.ts +42 -0
  24. package/dist/table/exm-grid-toolbar.js +283 -0
  25. package/dist/table/exm-grid.d.ts +130 -0
  26. package/dist/table/exm-grid.js +333 -0
  27. package/dist/table/featrues/exm-column-sortable.d.ts +12 -0
  28. package/dist/table/featrues/exm-column-sortable.js +50 -0
  29. package/dist/table/featrues/exm-row-expandable.d.ts +9 -0
  30. package/dist/table/featrues/exm-row-expandable.js +42 -0
  31. package/dist/table/featrues/exm-row-selectable.d.ts +20 -0
  32. package/dist/table/featrues/exm-row-selectable.js +204 -0
  33. package/dist/table/featrues/exm-row-sortable.d.ts +9 -0
  34. package/dist/table/featrues/exm-row-sortable.js +50 -0
  35. package/dist/table/types/exm-grid-smart-toolbar-types.d.ts +17 -0
  36. package/dist/table/types/exm-grid-smart-toolbar-types.js +6 -0
  37. package/dist/table/types/exm-grid-toolbar-types.d.ts +55 -0
  38. package/dist/table/types/exm-grid-toolbar-types.js +16 -0
  39. package/dist/table/types/exm-grid-types.d.ts +15 -0
  40. package/dist/table/types/exm-grid-types.js +2 -0
  41. package/dist/table/utils/exm-query-selectors.d.ts +12 -0
  42. package/dist/table/utils/exm-query-selectors.js +37 -0
  43. package/package.json +6 -10
@@ -0,0 +1,25 @@
1
+ import { ExmgElement } from '@exmg/lit-base/index.js';
2
+ import '@material/web/icon/icon.js';
3
+ import '@material/web/iconbutton/icon-button.js';
4
+ import '@material/web/focus/md-focus-ring.js';
5
+ export declare class ToolbarSearch extends ExmgElement {
6
+ _isSearch: boolean;
7
+ filterValue?: string | null;
8
+ placeHolder: string;
9
+ search?: HTMLInputElement;
10
+ static styles: import("lit").CSSResult[];
11
+ private _debouncer;
12
+ render(): import("lit-html").TemplateResult<1>;
13
+ _getValue(): string;
14
+ _handleClear(e: CustomEvent): void;
15
+ _handleKeyUp(e: KeyboardEvent): void;
16
+ _notifyChange(): void;
17
+ _handleInputBlur(): void;
18
+ _hideSearch(): void;
19
+ _showSearch(): void;
20
+ }
21
+ declare global {
22
+ interface HTMLElementTagNameMap {
23
+ 'exm-toolbar-search': ToolbarSearch;
24
+ }
25
+ }
@@ -0,0 +1,197 @@
1
+ import { __decorate } from "tslib";
2
+ import { html, css } from 'lit';
3
+ import { property, customElement, query, state } from 'lit/decorators.js';
4
+ import { ExmgElement } from '@exmg/lit-base/index.js';
5
+ import { classMap } from 'lit/directives/class-map.js';
6
+ import { async, debounce } from '@exmg/lit-base/index.js';
7
+ import '@material/web/icon/icon.js';
8
+ import '@material/web/iconbutton/icon-button.js';
9
+ import '@material/web/focus/md-focus-ring.js';
10
+ let ToolbarSearch = class ToolbarSearch extends ExmgElement {
11
+ constructor() {
12
+ super(...arguments);
13
+ this._isSearch = false;
14
+ this.placeHolder = 'Search';
15
+ }
16
+ render() {
17
+ const classMapValues = {
18
+ search: this._isSearch,
19
+ };
20
+ return html `
21
+ <div class=${classMap(classMapValues)} @click=${this._showSearch}>
22
+ ${this._isSearch
23
+ ? html `
24
+ <div style="position: relative">
25
+ <md-focus-ring style="--md-focus-ring-shape: 8px" for="searchInput"></md-focus-ring>
26
+ <md-icon>search</md-icon>
27
+ <input
28
+ id="searchInput"
29
+ placeholder=${this.placeHolder}
30
+ value=${this.filterValue ? this.filterValue : ''}
31
+ onfocus="let value = this.value; this.value = null; this.value = value"
32
+ @keyup=${this._handleKeyUp}
33
+ @blur=${this._handleInputBlur}
34
+ />
35
+ ${this.filterValue
36
+ ? html `
37
+ <md-icon-button class="clear-button" @click=${this._handleClear}
38
+ ><md-icon>close</md-icon></md-icon-button
39
+ >
40
+ `
41
+ : html ``}
42
+ </div>
43
+ `
44
+ : html `
45
+ <md-icon>search</md-icon>
46
+ <span class="interactive-content">${this._getValue()}</span>
47
+ <slot></slot>
48
+ `}
49
+ </div>
50
+ `;
51
+ }
52
+ _getValue() {
53
+ return this.filterValue || this.placeHolder;
54
+ }
55
+ _handleClear(e) {
56
+ e.preventDefault();
57
+ this.filterValue = null;
58
+ this.search.value = '';
59
+ this._notifyChange();
60
+ }
61
+ _handleKeyUp(e) {
62
+ const input = e.target;
63
+ if (this.filterValue !== input.value) {
64
+ this.filterValue = input.value;
65
+ this._notifyChange();
66
+ }
67
+ if (e.keyCode === 27) {
68
+ this._hideSearch();
69
+ }
70
+ }
71
+ _notifyChange() {
72
+ this._debouncer = debounce.Debouncer.debounce(this._debouncer, async.timeOut.after(200), () => {
73
+ this.dispatchEvent(new CustomEvent('exm-grid-toolbar-search-changed', {
74
+ bubbles: false,
75
+ composed: true,
76
+ detail: { value: this.filterValue },
77
+ }));
78
+ });
79
+ }
80
+ _handleInputBlur() {
81
+ this._hideSearch();
82
+ }
83
+ _hideSearch() {
84
+ this._isSearch = false;
85
+ }
86
+ _showSearch() {
87
+ if (this._isSearch)
88
+ return;
89
+ this._isSearch = true;
90
+ setTimeout(() => this.shadowRoot.querySelector('#searchInput').focus(), 200);
91
+ }
92
+ };
93
+ ToolbarSearch.styles = [
94
+ css `
95
+ :host {
96
+ display: block;
97
+ color: var(--md-sys-color-on-surface-variant);
98
+ background-color: var(--md-sys-color-surface-container-low);
99
+ border-radius: var(--exm-toolbar-search-border-radius, var(--exm-surface-border-radius, 16px));
100
+ }
101
+ :host > div {
102
+ display: flex;
103
+ flex-direction: row;
104
+ justify-content: center;
105
+ align-items: center;
106
+ height: 48px;
107
+ }
108
+ h2 {
109
+ max-width: 936px;
110
+ width: 100%;
111
+ margin: 20px auto;
112
+ }
113
+ input {
114
+ width: 100%;
115
+ caret-color: var(--md-sys-color-on-surface);
116
+ color: var(--md-sys-color-on-surface);
117
+ }
118
+ md-icon {
119
+ margin: 0 8px 0 16px;
120
+ fill: var(--md-sys-color-on-surface);
121
+ cursor: pointer;
122
+ }
123
+ :host > div > svg {
124
+ margin-right: 10px;
125
+ }
126
+ ::slotted(*) {
127
+ margin: 14px 12px;
128
+ }
129
+ span.interactive-content {
130
+ white-space: nowrap;
131
+ overflow: hidden;
132
+ font-size: 14px;
133
+ opacity: 0.6;
134
+ text-overflow: ellipsis;
135
+ letter-spacing: 0.005em;
136
+ box-sizing: border-box;
137
+
138
+ font-weight: 400;
139
+ cursor: pointer;
140
+ flex: 1;
141
+ }
142
+ .search {
143
+ display: absolute;
144
+ background: none;
145
+ /* outline-color: rgb(77, 144, 254);
146
+ outline-offset: 1px;
147
+ outline-style: auto;
148
+ outline-width: 1px; */
149
+ }
150
+ .search > div {
151
+ width: 100%;
152
+ position: relative;
153
+ display: flex;
154
+ align-items: center;
155
+ }
156
+ .search input {
157
+ font-size: 14px;
158
+ margin: 15px 0px;
159
+ padding: 2px;
160
+ border: 0px;
161
+ width: 100%;
162
+ outline: none;
163
+ background: none;
164
+ box-sizing: border-box;
165
+ }
166
+ .clear-button {
167
+ position: absolute;
168
+ right: 0;
169
+ background: transparent;
170
+ border: none !important;
171
+ font-size: 0;
172
+ margin-right: 1rem;
173
+ color: var(--exm-table-color, black);
174
+ }
175
+
176
+ md-focus-ring {
177
+ --md-focus-ring-shape: 16px;
178
+ }
179
+ `,
180
+ ];
181
+ __decorate([
182
+ state()
183
+ ], ToolbarSearch.prototype, "_isSearch", void 0);
184
+ __decorate([
185
+ property({ type: String })
186
+ ], ToolbarSearch.prototype, "filterValue", void 0);
187
+ __decorate([
188
+ property({ type: String })
189
+ ], ToolbarSearch.prototype, "placeHolder", void 0);
190
+ __decorate([
191
+ query('#searchInput')
192
+ ], ToolbarSearch.prototype, "search", void 0);
193
+ ToolbarSearch = __decorate([
194
+ customElement('exm-toolbar-search')
195
+ ], ToolbarSearch);
196
+ export { ToolbarSearch };
197
+ //# sourceMappingURL=exm-toolbar-search.js.map
@@ -0,0 +1 @@
1
+ export declare const style: import("lit").CSSResult;
@@ -0,0 +1,103 @@
1
+ import { css } from 'lit';
2
+ export const style = css `
3
+ :host {
4
+ display: block;
5
+ -moz-osx-font-smoothing: grayscale;
6
+ -webkit-font-smoothing: antialiased;
7
+ font-family: Roboto, sans-serif;
8
+ font-family: var(--mdc-typography-font-family, Roboto, sans-serif);
9
+ border-top-left-radius: var(--exm-theme-table-radius, var(--exm-surface-border-radius, 16px));
10
+ border-top-right-radius: var(--exm-theme-table-radius, var(--exm-surface-border-radius, 16px));
11
+ --toolbar-bg-color: var(--exm-theme-table-toolbar-background-color, var(--md-sys-color-surface-container));
12
+ --toolbar-color: var(--exm-theme-table-toolbar-color, var(--md-sys-color-on-surface-container));
13
+ background-color: var(--toolbar-bg-color);
14
+ color: var(--toolbar-color);
15
+ }
16
+
17
+ .wrapper {
18
+ display: flex;
19
+ flex: 1;
20
+ flex-direction: row;
21
+ align-items: center;
22
+ padding: 10px 16px 10px 16px;
23
+ overflow-x: var(--exm-theme-table-toolbar-overflow-x, initial);
24
+ white-space: nowrap;
25
+ }
26
+
27
+ .wrapper.active {
28
+ --active-toolbar-bg-color: var(--exm-theme-table-toolbar-active-bg-color, var(--md-sys-color-secondary-container));
29
+ --active-toolbar-color: var(--exm-theme-table-toolbar-active-color, var(--md-sys-color-on-secondary-container));
30
+ background-color: var(--active-toolbar-bg-color);
31
+ color: var(--active-toolbar-color);
32
+ border-top-left-radius: var(--exm-theme-table-radius, var(--exm-surface-border-radius, 16px));
33
+ border-top-right-radius: var(--exm-theme-table-radius, var(--exm-surface-border-radius, 16px));
34
+ }
35
+
36
+ .wrapper.active .seperator.with-action-separator {
37
+ border-left: 1px solid var(--active-toolbar-color);
38
+ }
39
+
40
+ .wrapper.active .description {
41
+ color: var(--active-toolbar-color);
42
+ flex: 1;
43
+ margin-left: 8px;
44
+ }
45
+
46
+ .wrapper .seperator {
47
+ min-height: 32px;
48
+ }
49
+
50
+ .wrapper .seperator.with-action-separator {
51
+ border-left: 1px solid var(--active-toolbar-color);
52
+ }
53
+
54
+ .wrapper .description {
55
+ -moz-osx-font-smoothing: grayscale;
56
+ -webkit-font-smoothing: antialiased;
57
+ font-family: Roboto, sans-serif;
58
+ font-family: var(--mdc-typography-headline5-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
59
+ font-size: 1.5rem;
60
+ font-size: var(--mdc-typography-headline5-font-size, 1.5rem);
61
+ line-height: 2rem;
62
+ line-height: var(--mdc-typography-headline5-line-height, 2rem);
63
+ font-weight: 400;
64
+ font-weight: var(--mdc-typography-headline5-font-weight, 400);
65
+ letter-spacing: normal;
66
+ letter-spacing: var(--mdc-typography-headline5-letter-spacing, normal);
67
+ text-decoration: inherit;
68
+ text-decoration: var(--mdc-typography-headline5-text-decoration, inherit);
69
+ text-transform: inherit;
70
+ text-transform: var(--mdc-typography-headline5-text-transform, inherit);
71
+ color: var(--toolbar-color);
72
+ font-size: 1.25rem;
73
+ padding: 0;
74
+ height: 48px;
75
+ flex: 1;
76
+ display: flex;
77
+ align-items: center;
78
+ }
79
+
80
+ .actions {
81
+ padding: 0 8px 0 0;
82
+ color: var(--mdc-theme-primary);
83
+ }
84
+
85
+ .filters {
86
+ display: flex;
87
+ flex-direction: row;
88
+ justify-content: flex-end;
89
+ }
90
+
91
+ .settings {
92
+ display: flex;
93
+ flex-direction: row;
94
+ justify-content: flex-end;
95
+ }
96
+
97
+ @media (max-width: 500px) {
98
+ .wrapper .description {
99
+ display: none;
100
+ }
101
+ }
102
+ `;
103
+ //# sourceMappingURL=exm-grid-base-toolbar-styles-css.js.map
@@ -0,0 +1 @@
1
+ export declare const style: import("lit").CSSResult;
@@ -0,0 +1,104 @@
1
+ import { css } from 'lit';
2
+ export const style = css `
3
+ :host {
4
+ display: block;
5
+ -moz-osx-font-smoothing: grayscale;
6
+ -webkit-font-smoothing: antialiased;
7
+ font-family: Roboto, sans-serif;
8
+ font-family: var(--mdc-typography-font-family, Roboto, sans-serif);
9
+ color: var(--exm-theme-table-pagination-color, var(--md-sys-color-on-surface-container));
10
+ border-bottom-left-radius: var(--exm-theme-table-radius, var(--exm-surface-border-radius, 16px));
11
+ border-bottom-right-radius: var(--exm-theme-table-radius, var(--exm-surface-border-radius, 16px));
12
+ }
13
+
14
+ .wrapper {
15
+ display: flex;
16
+ flex: 1;
17
+ flex-direction: row;
18
+ align-items: center;
19
+ justify-content: flex-end;
20
+ padding: 8px 10px;
21
+ white-space: nowrap;
22
+ }
23
+
24
+ .wrapper .page-size {
25
+ display: flex;
26
+ flex-direction: row;
27
+ margin-right: 26px;
28
+ align-items: center;
29
+ }
30
+
31
+ .wrapper .page-size .page-size-label {
32
+ margin-right: 10px;
33
+ -moz-osx-font-smoothing: grayscale;
34
+ -webkit-font-smoothing: antialiased;
35
+ font-family: Roboto, sans-serif;
36
+ font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
37
+ font-size: 0.875rem;
38
+ font-size: var(--mdc-typography-body2-font-size, 0.875rem);
39
+ line-height: 1.25rem;
40
+ line-height: var(--mdc-typography-body2-line-height, 1.25rem);
41
+ font-weight: 400;
42
+ font-weight: var(--mdc-typography-body2-font-weight, 400);
43
+ letter-spacing: 0.0178571429em;
44
+ letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
45
+ text-decoration: inherit;
46
+ text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
47
+ text-transform: inherit;
48
+ text-transform: var(--mdc-typography-body2-text-transform, inherit);
49
+ }
50
+
51
+ .wrapper .page-range {
52
+ display: flex;
53
+ flex-direction: row;
54
+ align-items: center;
55
+ }
56
+
57
+ .wrapper .page-range .page-range-label {
58
+ margin-right: 44px;
59
+ -moz-osx-font-smoothing: grayscale;
60
+ -webkit-font-smoothing: antialiased;
61
+ font-family: Roboto, sans-serif;
62
+ font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
63
+ font-size: 0.875rem;
64
+ font-size: var(--mdc-typography-body2-font-size, 0.875rem);
65
+ line-height: 1.25rem;
66
+ line-height: var(--mdc-typography-body2-line-height, 1.25rem);
67
+ font-weight: 400;
68
+ font-weight: var(--mdc-typography-body2-font-weight, 400);
69
+ letter-spacing: 0.0178571429em;
70
+ letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
71
+ text-decoration: inherit;
72
+ text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
73
+ text-transform: inherit;
74
+ text-transform: var(--mdc-typography-body2-text-transform, inherit);
75
+ }
76
+
77
+ .wrapper .page-range .page-range-actions {
78
+ user-select: none;
79
+ }
80
+
81
+ @media (max-width: 600px) {
82
+ .page-size-label {
83
+ display: none;
84
+ }
85
+ }
86
+
87
+ @media (max-width: 500px) {
88
+ .wrapper .page-size {
89
+ display: none;
90
+ }
91
+ }
92
+
93
+ @media (max-width: 450px) {
94
+ .wrapper {
95
+ overflow-x: auto;
96
+ white-space: nowrap;
97
+ }
98
+
99
+ .wrapper .page-range {
100
+ min-width: 1px;
101
+ }
102
+ }
103
+ `;
104
+ //# sourceMappingURL=exm-grid-common-styles-css.js.map
@@ -0,0 +1 @@
1
+ export declare const style: import("lit").CSSResult;
@@ -0,0 +1,104 @@
1
+ import { css } from 'lit';
2
+ export const style = css `
3
+ :host {
4
+ display: block;
5
+ -moz-osx-font-smoothing: grayscale;
6
+ -webkit-font-smoothing: antialiased;
7
+ font-family: Roboto, sans-serif;
8
+ font-family: var(--mdc-typography-font-family, Roboto, sans-serif);
9
+ color: var(--exm-theme-table-pagination-color, var(--md-sys-color-on-surface-container));
10
+ border-bottom-left-radius: var(--exm-theme-table-radius, var(--exm-surface-border-radius, 16px));
11
+ border-bottom-right-radius: var(--exm-theme-table-radius, var(--exm-surface-border-radius, 16px));
12
+ }
13
+
14
+ .wrapper {
15
+ display: flex;
16
+ flex: 1;
17
+ flex-direction: row;
18
+ align-items: center;
19
+ justify-content: flex-end;
20
+ padding: 8px 10px;
21
+ white-space: nowrap;
22
+ }
23
+
24
+ .wrapper .page-size {
25
+ display: flex;
26
+ flex-direction: row;
27
+ margin-right: 26px;
28
+ align-items: center;
29
+ }
30
+
31
+ .wrapper .page-size .page-size-label {
32
+ margin-right: 10px;
33
+ -moz-osx-font-smoothing: grayscale;
34
+ -webkit-font-smoothing: antialiased;
35
+ font-family: Roboto, sans-serif;
36
+ font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
37
+ font-size: 0.875rem;
38
+ font-size: var(--mdc-typography-body2-font-size, 0.875rem);
39
+ line-height: 1.25rem;
40
+ line-height: var(--mdc-typography-body2-line-height, 1.25rem);
41
+ font-weight: 400;
42
+ font-weight: var(--mdc-typography-body2-font-weight, 400);
43
+ letter-spacing: 0.0178571429em;
44
+ letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
45
+ text-decoration: inherit;
46
+ text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
47
+ text-transform: inherit;
48
+ text-transform: var(--mdc-typography-body2-text-transform, inherit);
49
+ }
50
+
51
+ .wrapper .page-range {
52
+ display: flex;
53
+ flex-direction: row;
54
+ align-items: center;
55
+ }
56
+
57
+ .wrapper .page-range .page-range-label {
58
+ margin-right: 44px;
59
+ -moz-osx-font-smoothing: grayscale;
60
+ -webkit-font-smoothing: antialiased;
61
+ font-family: Roboto, sans-serif;
62
+ font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
63
+ font-size: 0.875rem;
64
+ font-size: var(--mdc-typography-body2-font-size, 0.875rem);
65
+ line-height: 1.25rem;
66
+ line-height: var(--mdc-typography-body2-line-height, 1.25rem);
67
+ font-weight: 400;
68
+ font-weight: var(--mdc-typography-body2-font-weight, 400);
69
+ letter-spacing: 0.0178571429em;
70
+ letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
71
+ text-decoration: inherit;
72
+ text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
73
+ text-transform: inherit;
74
+ text-transform: var(--mdc-typography-body2-text-transform, inherit);
75
+ }
76
+
77
+ .wrapper .page-range .page-range-actions {
78
+ user-select: none;
79
+ }
80
+
81
+ @media (max-width: 600px) {
82
+ .page-size-label {
83
+ display: none;
84
+ }
85
+ }
86
+
87
+ @media (max-width: 500px) {
88
+ .wrapper .page-size {
89
+ display: none;
90
+ }
91
+ }
92
+
93
+ @media (max-width: 450px) {
94
+ .wrapper {
95
+ overflow-x: auto;
96
+ white-space: nowrap;
97
+ }
98
+
99
+ .wrapper .page-range {
100
+ min-width: 1px;
101
+ }
102
+ }
103
+ `;
104
+ //# sourceMappingURL=exm-grid-pagination-styles-css.js.map
@@ -0,0 +1 @@
1
+ export declare const style: import("lit").CSSResult;
@@ -0,0 +1,12 @@
1
+ import { css } from 'lit';
2
+ export const style = css `
3
+ :host {
4
+ display: block;
5
+ position: relative;
6
+ }
7
+
8
+ .action {
9
+ color: var(--mdc-theme-primary);
10
+ }
11
+ `;
12
+ //# sourceMappingURL=exm-grid-setting-selection-list-styles-css.js.map
@@ -0,0 +1 @@
1
+ export declare const style: import("lit").CSSResult;