@exmg/exm-grid 1.0.4 → 1.0.7
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/README.md +1 -1
- package/index.d.ts +10 -10
- package/index.js +9 -10
- package/package.json +14 -2
- package/src/styles/exm-grid-base-toolbar-styles-css.d.ts +0 -1
- package/src/styles/exm-grid-base-toolbar-styles-css.js +101 -2
- package/src/styles/exm-grid-common-styles-css.d.ts +0 -1
- package/src/styles/exm-grid-common-styles-css.js +102 -2
- package/src/styles/exm-grid-pagination-styles-css.d.ts +0 -1
- package/src/styles/exm-grid-pagination-styles-css.js +102 -2
- package/src/styles/exm-grid-setting-selection-list-styles-css.d.ts +0 -1
- package/src/styles/exm-grid-setting-selection-list-styles-css.js +10 -2
- package/src/styles/exm-grid-styles-css.d.ts +0 -1
- package/src/styles/exm-grid-styles-css.js +410 -2
- package/src/styles/exm-grid-base-toolbar-styles.scss +0 -89
- package/src/styles/exm-grid-common-styles.scss +0 -1
- package/src/styles/exm-grid-pagination-styles.scss +0 -69
- package/src/styles/exm-grid-setting-selection-list-styles.scss +0 -8
- package/src/styles/exm-grid-styles.scss +0 -387
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
npm install @exmg/exm-grid
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
Before start ensure that you have installed `web-animation-js`. It is required by `@exmg/exm-paper-combobox
|
|
11
|
+
Before start ensure that you have installed `web-animation-js`. It is required by `@exmg/exm-paper-combobox`
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
14
|
npm install web-animation-js
|
package/index.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
1
|
+
export { EventDetailRowsOrderChanged, EventDetailRowsOrderUpdated, EventDetailSelectedRowsChange, EventDetailSortChange, SORT_DIRECTION, } from './src/table/types/exm-grid-types.js';
|
|
2
|
+
export { ExmGrid } from './src/table/exm-grid.js';
|
|
3
|
+
export { ExmGridPagination } from './src/table/exm-grid-pagination.js';
|
|
4
|
+
export { ExmGridBaseToolbar } from './src/table/exm-grid-base-toolbar.js';
|
|
5
|
+
export { ExmGridSmartToolbar } from './src/table/exm-grid-smart-toolbar.js';
|
|
6
|
+
export { ActionAmountSelectedItemsCondition, ActionConditionType, ActionWithCondition, BaseActionCondition, } from './src/table/types/exm-grid-smart-toolbar-types.js';
|
|
7
|
+
export { ExmGridToolbar } from './src/table/exm-grid-toolbar.js';
|
|
8
|
+
export { EventDetailGridToolbarSettingChanged, Action, Filter, FilterConfigType, FilterSingleSelectConfig, BaseFilterConfig, BaseSettingConfig, Setting, SettingConfigId, SettingConfigType, SettingSelectionListConfig, SettingSelectionListItem, } from './src/table/types/exm-grid-toolbar-types.js';
|
|
9
|
+
export { ToolbarSearch } from './src/search/exm-toolbar-search.js';
|
|
10
|
+
export { ExmGridToolbarFilters, EventSelectPayload } from './src/table/exm-grid-toolbar-filters.js';
|
|
11
11
|
export { style as gridStyles } from './src/styles/exm-grid-styles-css.js';
|
|
12
12
|
export { style as gridBaseToolbarStyles } from './src/styles/exm-grid-base-toolbar-styles-css.js';
|
|
13
13
|
export { style as gridCommonStyles } from './src/styles/exm-grid-common-styles-css.js';
|
package/index.js
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export * from './src/table/exm-grid-toolbar-filters.js';
|
|
1
|
+
export { ExmGrid } from './src/table/exm-grid.js';
|
|
2
|
+
export { ExmGridPagination } from './src/table/exm-grid-pagination.js';
|
|
3
|
+
export { ExmGridBaseToolbar } from './src/table/exm-grid-base-toolbar.js';
|
|
4
|
+
export { ExmGridSmartToolbar } from './src/table/exm-grid-smart-toolbar.js';
|
|
5
|
+
export { ActionConditionType, } from './src/table/types/exm-grid-smart-toolbar-types.js';
|
|
6
|
+
export { ExmGridToolbar } from './src/table/exm-grid-toolbar.js';
|
|
7
|
+
export { FilterConfigType, SettingConfigId, SettingConfigType, } from './src/table/types/exm-grid-toolbar-types.js';
|
|
8
|
+
export { ToolbarSearch } from './src/search/exm-toolbar-search.js';
|
|
9
|
+
export { ExmGridToolbarFilters } from './src/table/exm-grid-toolbar-filters.js';
|
|
11
10
|
export { style as gridStyles } from './src/styles/exm-grid-styles-css.js';
|
|
12
11
|
export { style as gridBaseToolbarStyles } from './src/styles/exm-grid-base-toolbar-styles-css.js';
|
|
13
12
|
export { style as gridCommonStyles } from './src/styles/exm-grid-common-styles-css.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exmg/exm-grid",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "exmg grid element",
|
|
6
6
|
"contributors": [
|
|
@@ -12,6 +12,18 @@
|
|
|
12
12
|
"grid"
|
|
13
13
|
],
|
|
14
14
|
"main": "index.js",
|
|
15
|
+
"module": "index.js",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": "./index.js",
|
|
18
|
+
"./exm-grid-base-toolbar.js": "./src/table/exm-grid-base-toolbar.js",
|
|
19
|
+
"./exm-grid-pagination.js": "./src/table/exm-grid-pagination.js",
|
|
20
|
+
"./exm-grid-setting-selection-list.js": "./src/table/exm-grid-setting-selection-list.js",
|
|
21
|
+
"./exm-grid-smart-toolbar.js": "./src/table/exm-grid-smart-toolbar.js",
|
|
22
|
+
"./exm-grid-toolbar-filters.js": "./src/table/exm-grid-toolbar-filters.js",
|
|
23
|
+
"./exm-grid-toolbar.js": "./src/table/exm-grid-toolbar.js",
|
|
24
|
+
"./exm-grid.js": "./src/table/exm-grid.js",
|
|
25
|
+
"./exm-toolbar-search.js": "./src/search/exm-toolbar-search.js"
|
|
26
|
+
},
|
|
15
27
|
"files": [
|
|
16
28
|
"assets/*",
|
|
17
29
|
"src/styles/**/*.scss",
|
|
@@ -54,5 +66,5 @@
|
|
|
54
66
|
"publishConfig": {
|
|
55
67
|
"access": "public"
|
|
56
68
|
},
|
|
57
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "e7086831faea0bdfe8628b0de9b7ddcc45174558"
|
|
58
70
|
}
|
|
@@ -1,4 +1,103 @@
|
|
|
1
1
|
import { css } from 'lit';
|
|
2
|
-
export const style = css
|
|
3
|
-
|
|
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
|
+
`;
|
|
4
103
|
//# sourceMappingURL=exm-grid-base-toolbar-styles-css.js.map
|
|
@@ -1,4 +1,104 @@
|
|
|
1
1
|
import { css } from 'lit';
|
|
2
|
-
export const style = css
|
|
3
|
-
|
|
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
|
+
`;
|
|
4
104
|
//# sourceMappingURL=exm-grid-common-styles-css.js.map
|
|
@@ -1,4 +1,104 @@
|
|
|
1
1
|
import { css } from 'lit';
|
|
2
|
-
export const style = css
|
|
3
|
-
|
|
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
|
+
`;
|
|
4
104
|
//# sourceMappingURL=exm-grid-pagination-styles-css.js.map
|
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
import { css } from 'lit';
|
|
2
|
-
export const style = css
|
|
3
|
-
|
|
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
|
+
`;
|
|
4
12
|
//# sourceMappingURL=exm-grid-setting-selection-list-styles-css.js.map
|