@drax/crud-vue 3.14.0 → 3.15.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/package.json +3 -3
- package/src/index.ts +2 -0
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "3.
|
|
6
|
+
"version": "3.15.0",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "./src/index.ts",
|
|
9
9
|
"module": "./src/index.ts",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@drax/common-front": "^3.11.0",
|
|
28
28
|
"@drax/crud-front": "^3.11.0",
|
|
29
29
|
"@drax/crud-share": "^3.14.0",
|
|
30
|
-
"@drax/media-vue": "^3.
|
|
30
|
+
"@drax/media-vue": "^3.15.0"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"pinia": "^3.0.4",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"vue-tsc": "^3.2.4",
|
|
51
51
|
"vuetify": "^3.11.8"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "a3bd3419f580b111b26da9e6be2e1cc4c75a056e"
|
|
54
54
|
}
|
package/src/index.ts
CHANGED
|
@@ -7,6 +7,7 @@ import CrudList from "./components/CrudList.vue";
|
|
|
7
7
|
import CrudListTable from "./components/CrudListTable.vue";
|
|
8
8
|
import CrudListGallery from "./components/CrudListGallery.vue";
|
|
9
9
|
import CrudFilters from "./components/CrudFilters.vue";
|
|
10
|
+
import CrudFiltersAction from "./components/CrudFiltersAction.vue";
|
|
10
11
|
import CrudNotify from "./components/CrudNotify.vue";
|
|
11
12
|
import CrudSearch from "./components/CrudSearch.vue";
|
|
12
13
|
import CrudAutocomplete from "./components/CrudAutocomplete.vue";
|
|
@@ -33,6 +34,7 @@ export {
|
|
|
33
34
|
CrudSearch,
|
|
34
35
|
CrudAutocomplete,
|
|
35
36
|
CrudFilters,
|
|
37
|
+
CrudFiltersAction,
|
|
36
38
|
useCrud,
|
|
37
39
|
useFormUtils,
|
|
38
40
|
useCrudStore,
|