@drax/crud-vue 0.15.4 → 0.15.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.
- package/package.json +3 -3
- package/src/components/Crud.vue +1 -1
- package/src/components/CrudForm.vue +1 -1
- 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": "0.15.
|
|
6
|
+
"version": "0.15.6",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "./src/index.ts",
|
|
9
9
|
"module": "./src/index.ts",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@drax/common-front": "^0.15.0",
|
|
28
28
|
"@drax/crud-front": "^0.15.0",
|
|
29
|
-
"@drax/crud-share": "^0.15.
|
|
29
|
+
"@drax/crud-share": "^0.15.6",
|
|
30
30
|
"@drax/media-vue": "^0.15.0"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"vue-tsc": "^2.1.10",
|
|
65
65
|
"vuetify": "^3.8.2"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "7a0fdbbb24b1d66f06786eeb6725a80fd28dac92"
|
|
68
68
|
}
|
package/src/components/Crud.vue
CHANGED
package/src/index.ts
CHANGED
|
@@ -4,6 +4,7 @@ import CrudForm from "./components/CrudForm.vue";
|
|
|
4
4
|
import CrudFormField from "./components/CrudFormField.vue";
|
|
5
5
|
import CrudFormList from "./components/CrudFormList.vue";
|
|
6
6
|
import CrudList from "./components/CrudList.vue";
|
|
7
|
+
import CrudFilters from "./components/CrudFilters.vue";
|
|
7
8
|
import CrudNotify from "./components/CrudNotify.vue";
|
|
8
9
|
import CrudSearch from "./components/CrudSearch.vue";
|
|
9
10
|
import CrudAutocomplete from "./components/CrudAutocomplete.vue";
|
|
@@ -24,6 +25,7 @@ export {
|
|
|
24
25
|
CrudNotify,
|
|
25
26
|
CrudSearch,
|
|
26
27
|
CrudAutocomplete,
|
|
28
|
+
CrudFilters,
|
|
27
29
|
useCrud,
|
|
28
30
|
useFormUtils,
|
|
29
31
|
useCrudStore,
|