@dile/crud 1.10.8 → 1.10.11

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.
@@ -237,7 +237,7 @@ export class DileCrud extends DileI18nMixin(DileCrudMixin(LitElement)) {
237
237
  ></dile-crud-filters>
238
238
  `
239
239
  }
240
- ${this.config.customization.disablePagination
240
+ ${this.config.customization.disablePagination || this.config.pageSize.available.length <= 1
241
241
  ? ''
242
242
  : html`
243
243
  <dile-crud-page-size
@@ -33,8 +33,8 @@ export class DileCrudList extends DileI18nMixin(DileLoading(LitElement)) {
33
33
  dile-crud-select-all {
34
34
  margin: 0.3rem 0.2rem 0.4rem 0;
35
35
  }
36
- dile-crud-filters-list-item {
37
- margin-top: 0.25rem;
36
+ dile-crud-filters-list {
37
+ margin: var(--dile-crud-list-filters-list-margin, 0);
38
38
  }
39
39
 
40
40
  .empty {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dile/crud",
3
- "version": "1.10.8",
3
+ "version": "1.10.11",
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": "3227f65f0a4c157b9ba9c965353566b46ee45fd1"
34
+ "gitHead": "4089c5d080c2f7c12ca0f06245ab11a352d347c1"
35
35
  }