@dile/crud 2.1.11 → 2.1.12
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/action/crud-actions.js +3 -1
- package/components/action/crud-delete-action.js +3 -1
- package/components/action/crud-single-actions.js +3 -1
- package/components/ajax/ajax.js +3 -1
- package/components/ajax-change/ajax-change.js +3 -1
- package/components/ajax-form/ajax-form.js +3 -1
- package/components/ajax-form/confirmed-ajax-form.js +3 -1
- package/components/ajax-select-change/ajax-select-change.js +3 -1
- package/components/ajax-select-crud/ajax-select-crud.js +3 -1
- package/components/ajax-switch/ajax-switch.js +3 -1
- package/components/crud/crud-single.js +3 -1
- package/components/crud/crud.js +3 -1
- package/components/crud/delete-action.js +3 -1
- package/components/detail/crud-detail.js +3 -1
- package/components/file-uploader/file-uploader-form.js +3 -1
- package/components/file-uploader/file-uploader.js +3 -1
- package/components/image-uploader/image-uploader-form.js +3 -1
- package/components/image-uploader/image-uploader.js +3 -1
- package/components/insert/crud-insert.js +3 -1
- package/components/insert/modal-crud-insert.js +3 -1
- package/components/item-delete/crud-item-delete.js +3 -1
- package/components/item-restore/crud-item-restore.js +3 -1
- package/components/list/crud-list-item.js +3 -1
- package/components/list/crud-list-pagination-links.js +3 -1
- package/components/list/crud-list-service.js +3 -1
- package/components/list/crud-list.js +3 -1
- package/components/list/crud-select-all.js +3 -1
- package/components/many-relation/many-relation.js +3 -1
- package/components/relation-checker/relation-checker-item.js +3 -1
- package/components/relation-checker/relation-checker.js +3 -1
- package/components/single/crud-single.js +3 -1
- package/components/ui/crud-filters-form.js +3 -1
- package/components/ui/crud-filters-list-item.js +3 -1
- package/components/ui/crud-filters-list.js +3 -1
- package/components/ui/crud-filters.js +3 -1
- package/components/ui/crud-list-options.js +3 -1
- package/components/ui/crud-page-size-select.js +3 -1
- package/components/ui/crud-page-size.js +3 -1
- package/components/ui/crud-pagination-nav-button.js +3 -1
- package/components/ui/crud-sort-form.js +3 -1
- package/components/update/crud-update.js +3 -1
- package/components/update/modal-crud-update.js +3 -1
- package/package.json +3 -3
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
import { DileCrudDeleteAction } from "./src/DileCrudDeleteAction.js";
|
|
2
|
-
customElements.
|
|
2
|
+
if (!customElements.get('dile-crud-delete-action')) {
|
|
3
|
+
customElements.define('dile-crud-delete-action', DileCrudDeleteAction);
|
|
4
|
+
}
|
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
import { DileCrudSingleActions } from './src/DileCrudSingleActions.js';
|
|
2
|
-
customElements.
|
|
2
|
+
if (!customElements.get('dile-crud-single-actions')) {
|
|
3
|
+
customElements.define('dile-crud-single-actions', DileCrudSingleActions);
|
|
4
|
+
}
|
package/components/ajax/ajax.js
CHANGED
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
import { DileConfirmedAjaxForm } from './src/DileConfirmedAjaxForm.js';
|
|
2
|
-
customElements.
|
|
2
|
+
if (!customElements.get('dile-confirmed-ajax-form')) {
|
|
3
|
+
customElements.define('dile-confirmed-ajax-form', DileConfirmedAjaxForm);
|
|
4
|
+
}
|
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
import { DileSelectAjaxChange } from "./src/DileSelectAjaxChange.js";
|
|
2
|
-
customElements.
|
|
2
|
+
if (!customElements.get('dile-ajax-select-change')) {
|
|
3
|
+
customElements.define('dile-ajax-select-change', DileSelectAjaxChange);
|
|
4
|
+
}
|
package/components/crud/crud.js
CHANGED
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
import { DileCrudDeleteAction } from "../action/src/DileCrudDeleteAction.js";
|
|
2
|
-
customElements.
|
|
2
|
+
if (!customElements.get('dile-crud-delete-action')) {
|
|
3
|
+
customElements.define('dile-crud-delete-action', DileCrudDeleteAction);
|
|
4
|
+
}
|
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
import { DileFileUploaderForm } from './src/DileFileUploaderForm.js';
|
|
2
|
-
customElements.
|
|
2
|
+
if (!customElements.get('dile-file-uploader-form')) {
|
|
3
|
+
customElements.define('dile-file-uploader-form', DileFileUploaderForm);
|
|
4
|
+
}
|
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
import { DileImageUploaderForm } from './src/DileImageUploaderForm.js';
|
|
2
|
-
customElements.
|
|
2
|
+
if (!customElements.get('dile-image-uploader-form')) {
|
|
3
|
+
customElements.define('dile-image-uploader-form', DileImageUploaderForm);
|
|
4
|
+
}
|
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
import { DileCrudListPaginationLinks } from "./src/DileCrudListPaginationLinks.js";
|
|
2
|
-
customElements.
|
|
2
|
+
if (!customElements.get('dile-crud-list-pagination-links')) {
|
|
3
|
+
customElements.define('dile-crud-list-pagination-links', DileCrudListPaginationLinks);
|
|
4
|
+
}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
import { DileRelationCheckerItem } from './src/DileRelationCheckerItem.js';
|
|
2
2
|
|
|
3
|
-
customElements.
|
|
3
|
+
if (!customElements.get('dile-relation-checker-item')) {
|
|
4
|
+
customElements.define('dile-relation-checker-item', DileRelationCheckerItem);
|
|
5
|
+
}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
|
|
2
2
|
import { DileCrudFiltersForm } from "./src/DileCrudFiltersForm.js";
|
|
3
|
-
customElements.
|
|
3
|
+
if (!customElements.get('dile-crud-filters-form')) {
|
|
4
|
+
customElements.define('dile-crud-filters-form', DileCrudFiltersForm);
|
|
5
|
+
}
|
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
import { DileCrudFiltersListItem } from "./src/DileCrudFiltersListItem.js";
|
|
2
|
-
customElements.
|
|
2
|
+
if (!customElements.get('dile-crud-filters-list-item')) {
|
|
3
|
+
customElements.define('dile-crud-filters-list-item', DileCrudFiltersListItem);
|
|
4
|
+
}
|
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
import { DileCrudPageSizeSelect } from "./src/DileCrudPageSizeSelect.js";
|
|
2
|
-
customElements.
|
|
2
|
+
if (!customElements.get('dile-crud-page-size-select')) {
|
|
3
|
+
customElements.define('dile-crud-page-size-select', DileCrudPageSizeSelect);
|
|
4
|
+
}
|
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
import { DileCrudPaginationNavButton } from './src/DileCrudPaginationNavButton.js';
|
|
2
|
-
customElements.
|
|
2
|
+
if (!customElements.get('dile-crud-pagination-nav-button')) {
|
|
3
|
+
customElements.define('dile-crud-pagination-nav-button', DileCrudPaginationNavButton);
|
|
4
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dile/crud",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.12",
|
|
4
4
|
"description": "Components to create a generic crud system based on Web Components and Lit",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
},
|
|
26
26
|
"homepage": "https://dile-components.com/",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@dile/ui": "^3.4.
|
|
28
|
+
"@dile/ui": "^3.4.6",
|
|
29
29
|
"axios": "^1.19.0",
|
|
30
30
|
"lit": "^2.7.0 || ^3.0.0"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "57a54e50de1a24d64dcf478fa6d39624e1f775eb"
|
|
36
36
|
}
|