@dile/crud 1.7.3 → 1.7.6

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.
@@ -133,7 +133,6 @@ export class DileCrudSelectAll extends DileI18nMixin(LitElement) {
133
133
  }
134
134
 
135
135
  shouldShowElementSelection(maxBatchActionItems, disablePagination, pageSize, numItems) {
136
- console.log(maxBatchActionItems, disablePagination, pageSize, numItems, disablePagination ? maxBatchActionItems >= numItems : maxBatchActionItems >= pageSize);
137
136
  return disablePagination ? maxBatchActionItems >= numItems : maxBatchActionItems >= pageSize;
138
137
  }
139
138
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dile/crud",
3
- "version": "1.7.3",
3
+ "version": "1.7.6",
4
4
  "description": "Components to create a generic crud system based on Web Components and Lit",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -24,12 +24,12 @@
24
24
  },
25
25
  "homepage": "https://dile-components.com/",
26
26
  "dependencies": {
27
- "@dile/ui": "^2.20.1",
28
- "axios": "^1.13.0",
27
+ "@dile/ui": "^2.21.1",
28
+ "axios": "^1.16.0",
29
29
  "lit": "^2.7.0 || ^3.0.0"
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "7194ae653716358e673eb70383662cfb86247260"
34
+ "gitHead": "e9639442e17f7bd3e467a1177dc233bb9913dc1e"
35
35
  }