@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 CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.15.4",
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.4",
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": "0b89613db2dbc79aa29130532427d08324722875"
67
+ "gitHead": "7a0fdbbb24b1d66f06786eeb6725a80fd28dac92"
68
68
  }
@@ -13,7 +13,7 @@ const {entity} = defineProps({
13
13
 
14
14
  const {
15
15
  onView, onCreate, onEdit, onDelete, resetCrudStore,
16
- operation, dialog, notify, error, message, doExport,
16
+ operation, dialog, notify, message, doExport,
17
17
  prepareFilters
18
18
  } = useCrud(entity);
19
19
 
@@ -99,7 +99,7 @@ function cancel() {
99
99
  }
100
100
 
101
101
  const {
102
- variant, submitColor, readonly
102
+ variant, submitColor
103
103
  } = useFormUtils(operation.value)
104
104
 
105
105
 
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,