@dile/crud 1.9.13 → 1.10.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.
- package/components/list/src/DileCrudList.js +5 -5
- package/components/list/src/DileCrudListPaginationLinks.js +1 -1
- package/components/list/src/DileCrudSelectAll.js +4 -4
- package/components/ui/src/DileCrudFiltersList.js +2 -2
- package/components/ui/src/DileCrudPaginationNavButton.js +2 -2
- package/package.json +2 -2
|
@@ -22,12 +22,12 @@ export class DileCrudList extends DileI18nMixin(DileLoading(LitElement)) {
|
|
|
22
22
|
.prev-summary {
|
|
23
23
|
display: flex;
|
|
24
24
|
flex-direction: column;
|
|
25
|
-
background-color: #999;
|
|
26
|
-
color:
|
|
27
|
-
font-size: 0.
|
|
25
|
+
background-color: var(--dile-primary-light-color, #999);
|
|
26
|
+
color: var(--dile-on-primary-light-color, #fff);;
|
|
27
|
+
font-size: var(--dile-crud-list-summary-font-size, 0.8rem);
|
|
28
28
|
margin-bottom: 0.5rem;
|
|
29
|
-
border-bottom: 1px solid #ccc;
|
|
30
|
-
padding: 0.4rem 1rem;
|
|
29
|
+
border-bottom: var(--dile-crud-list-summary-border-bottom, 1px solid #ccc);
|
|
30
|
+
padding: var(--dile-crud-list-summary-padding, 0.4rem 1rem);
|
|
31
31
|
line-height: 1.2rem;
|
|
32
32
|
}
|
|
33
33
|
dile-crud-select-all {
|
|
@@ -9,7 +9,7 @@ export class DileCrudListPaginationLinks extends DileI18nMixin(LitElement) {
|
|
|
9
9
|
display: block;
|
|
10
10
|
}
|
|
11
11
|
.pagination {
|
|
12
|
-
margin-top: 1rem;
|
|
12
|
+
margin-top: var(--dile-crud-list-pagination-margin-top, 1rem);
|
|
13
13
|
display: grid;
|
|
14
14
|
align-items: center;
|
|
15
15
|
grid-template-columns: auto 1fr auto;
|
|
@@ -11,10 +11,10 @@ export class DileCrudSelectAll extends DileI18nMixin(LitElement) {
|
|
|
11
11
|
return css`
|
|
12
12
|
:host {
|
|
13
13
|
display: block;
|
|
14
|
-
--dile-
|
|
14
|
+
--dile-crud-select-all-checkbox-color: #303030;
|
|
15
15
|
}
|
|
16
16
|
.drop {
|
|
17
|
-
--dile-icon-size: 1.5rem;
|
|
17
|
+
--dile-icon-size: var(--dile-crud-select-all-checkbox-size, 1.5rem);
|
|
18
18
|
}
|
|
19
19
|
dile-button-icon {
|
|
20
20
|
display: flex;
|
|
@@ -44,8 +44,8 @@ export class DileCrudSelectAll extends DileI18nMixin(LitElement) {
|
|
|
44
44
|
cursor: pointer;
|
|
45
45
|
}
|
|
46
46
|
.option dile-icon {
|
|
47
|
-
--dile-icon-size: 1.5rem;
|
|
48
|
-
--dile-icon-color: var(--
|
|
47
|
+
--dile-icon-size: var(--dile-crud-select-all-checkbox-size, 1.5rem);
|
|
48
|
+
--dile-icon-color: var(--dile-crud-select-all-overlay-checkbox-color, #303030);
|
|
49
49
|
margin-right: 0.5rem;
|
|
50
50
|
}
|
|
51
51
|
|
|
@@ -8,10 +8,10 @@ export class DileCrudFiltersList extends LitElement {
|
|
|
8
8
|
display: block;
|
|
9
9
|
}
|
|
10
10
|
div {
|
|
11
|
-
margin: var(--
|
|
11
|
+
margin: var(--dile-crud-filters-list-margin, 0 0.5rem);
|
|
12
12
|
display: flex;
|
|
13
13
|
flex-wrap: wrap;
|
|
14
|
-
gap: var(--
|
|
14
|
+
gap: var(--dile-crud-filters-list-gap, 0.5rem);
|
|
15
15
|
}
|
|
16
16
|
`
|
|
17
17
|
];
|
|
@@ -18,8 +18,8 @@ export class DileCrudPaginationNavButton extends LitElement {
|
|
|
18
18
|
--dile-icon-rounded-background-color: var(--dile-secondary-dark-color, #fff);
|
|
19
19
|
}
|
|
20
20
|
dile-icon.disabled {
|
|
21
|
-
--dile-icon-color: #f5f5f5;
|
|
22
|
-
--dile-icon-rounded-background-color: #ddd;
|
|
21
|
+
--dile-icon-color: var(--dile-crud-pagination-nav-button-disabled-icon-color, #f5f5f5);
|
|
22
|
+
--dile-icon-rounded-background-color: var(--dile-crud-pagination-nav-button-disabled-background-color, #ddd);
|
|
23
23
|
cursor: default;
|
|
24
24
|
}
|
|
25
25
|
`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dile/crud",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.0",
|
|
4
4
|
"description": "Components to create a generic crud system based on Web Components and Lit",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "b8bd03379573741978b56f616512045f816c1e0f"
|
|
35
35
|
}
|