@anzusystems/common-admin 0.0.4 → 0.0.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/dist/common-admin.es.js +14210 -4784
- package/dist/common-admin.es.js.map +1 -0
- package/dist/common-admin.umd.js +22 -27
- package/dist/common-admin.umd.js.map +1 -0
- package/dist/components/ABooleanValue.vue.d.ts +3 -7
- package/dist/components/ACard.vue.d.ts +49 -0
- package/dist/components/ADatatable.vue.d.ts +110 -0
- package/dist/components/ADatatableColumn.vue.d.ts +66 -0
- package/dist/components/ADatatablePagination.vue.d.ts +60 -0
- package/dist/components/ADatetime.vue.d.ts +27 -0
- package/dist/components/ADatetimePicker.vue.d.ts +2520 -0
- package/dist/components/buttons/filter/AFilterAdvancedButton.vue.d.ts +34 -0
- package/dist/components/buttons/filter/AFilterResetButton.vue.d.ts +43 -0
- package/dist/components/buttons/filter/AFilterSubmitButton.vue.d.ts +44 -0
- package/dist/components/filter/AFilterBooleanGroup.vue.d.ts +24 -0
- package/dist/components/filter/AFilterRemoteAutocomplete.vue.d.ts +87 -0
- package/dist/components/filter/AFilterString.vue.d.ts +34 -0
- package/dist/components/filter/AFilterValueObjectOptionsSelect.vue.d.ts +34 -0
- package/dist/components/filter/AFilterWrapper.vue.d.ts +163 -0
- package/dist/components/form/ABooleanToggle.vue.d.ts +71 -0
- package/dist/components/form/ARemoteAutocomplete.vue.d.ts +233 -0
- package/dist/components/form/ASystemEntityScope.vue.d.ts +22 -0
- package/dist/components/form/ATextField.vue.d.ts +142 -0
- package/dist/components/form/ATextarea.vue.d.ts +131 -0
- package/dist/components/form/AValueObjectOptionsSelect.vue.d.ts +137 -0
- package/dist/components/injectionKeys.d.ts +3 -0
- package/dist/components/permission/{PermissionGrantEditor.vue.d.ts → APermissionGrantEditor.vue.d.ts} +1 -11
- package/dist/components/permission/{PermissionValueChip.vue.d.ts → APermissionValueChip.vue.d.ts} +4 -24
- package/dist/composables/filter/filterHelpers.d.ts +20 -0
- package/dist/composables/statusCodes.d.ts +7 -0
- package/dist/composables/system/alerts.d.ts +17 -0
- package/dist/composables/system/error.d.ts +25 -0
- package/dist/composables/system/pagination.d.ts +14 -0
- package/dist/composables/system/tableColumns.d.ts +14 -0
- package/dist/create.d.ts +11 -0
- package/dist/lib.d.ts +108 -14
- package/dist/model/error/AnzuApiResponseCodeError.d.ts +4 -0
- package/dist/model/error/AnzuApiValidationError.d.ts +4 -0
- package/dist/model/error/AnzuFatalError.d.ts +4 -0
- package/dist/model/factory/PermissionConfigFactory.d.ts +4 -0
- package/dist/model/factory/PermissionGroupFactory.d.ts +4 -0
- package/dist/model/valueObject/Grant.d.ts +2 -6
- package/dist/model/valueObject/GrantOrigin.d.ts +2 -6
- package/dist/services/api/apiAnyRequest.d.ts +7 -0
- package/dist/services/api/apiCreateOne.d.ts +7 -0
- package/dist/services/api/apiDeleteOne.d.ts +7 -0
- package/dist/services/api/apiFetchByIds.d.ts +3 -0
- package/dist/services/api/apiFetchList.d.ts +9 -0
- package/dist/services/api/apiFetchOne.d.ts +6 -0
- package/dist/services/api/apiHelper.d.ts +4 -0
- package/dist/services/api/apiUpdateOne.d.ts +7 -0
- package/dist/services/api/queryBuilder.d.ts +13 -0
- package/dist/style.css +1 -1
- package/dist/types/AnzuUser.d.ts +2 -10
- package/dist/types/AnzuUserAndTimeTrackingAware.d.ts +7 -0
- package/dist/types/CreatedByAware.d.ts +5 -0
- package/dist/types/Filter.d.ts +5 -5
- package/dist/types/Permission.d.ts +3 -2
- package/dist/types/PermissionConfig.d.ts +30 -0
- package/dist/types/PermissionGroup.d.ts +13 -0
- package/dist/types/Vuetify.d.ts +1 -0
- package/dist/types/common.d.ts +6 -6
- package/dist/utils/event.d.ts +1 -0
- package/dist/utils/file.d.ts +1 -0
- package/dist/utils/response.d.ts +1 -0
- package/dist/utils/string.d.ts +12 -0
- package/dist/validators/vuelidate/useRequiredIf.d.ts +1 -0
- package/package.json +68 -12
package/package.json
CHANGED
|
@@ -13,31 +13,87 @@
|
|
|
13
13
|
"require": "./dist/common-admin.umd.js"
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
|
-
"version": "0.0.
|
|
16
|
+
"version": "0.0.6",
|
|
17
17
|
"type": "module",
|
|
18
18
|
"license": "Apache-2.0",
|
|
19
19
|
"scripts": {
|
|
20
20
|
"dev": "vite",
|
|
21
21
|
"build": "vite build",
|
|
22
|
+
"lint": "yarn lint:tsc ; yarn lint:eslint",
|
|
23
|
+
"lint:tsc": "vue-tsc --noEmit -p tsconfig.json --composite false",
|
|
24
|
+
"lint:eslint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
|
|
25
|
+
"lint:eslint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
|
22
26
|
"test": "exit 0"
|
|
23
27
|
},
|
|
24
28
|
"devDependencies": {
|
|
25
|
-
"@intlify/unplugin-vue-i18n": "^0.8.
|
|
29
|
+
"@intlify/unplugin-vue-i18n": "^0.8.2",
|
|
30
|
+
"@kyvg/vue3-notification": "^2.8.0",
|
|
26
31
|
"@mdi/font": "^7.1.96",
|
|
27
|
-
"@
|
|
32
|
+
"@rushstack/eslint-patch": "^1.2.0",
|
|
33
|
+
"@types/node": "^18.13.0",
|
|
34
|
+
"@typescript-eslint/parser": "^5.51.0",
|
|
28
35
|
"@vitejs/plugin-vue": "^4.0.0",
|
|
29
|
-
"
|
|
36
|
+
"@vue/eslint-config-prettier": "^7.0.0",
|
|
37
|
+
"@vue/eslint-config-typescript": "^11.0.2",
|
|
38
|
+
"@vuelidate/core": "^2.0.0",
|
|
39
|
+
"@vuelidate/validators": "^2.0.0",
|
|
40
|
+
"@vueuse/core": "^9.12.0",
|
|
41
|
+
"@vueuse/integrations": "^9.12.0",
|
|
42
|
+
"axios": "^1.3.2",
|
|
30
43
|
"dayjs": "^1.11.7",
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
44
|
+
"eslint": "^8.33.0",
|
|
45
|
+
"eslint-plugin-vue": "^9.9.0",
|
|
46
|
+
"flatpickr": "^4.6.13",
|
|
47
|
+
"pinia": "^2.0.30",
|
|
48
|
+
"prettier": "^2.8.4",
|
|
49
|
+
"sass": "^1.58.0",
|
|
50
|
+
"shortcut-buttons-flatpickr": "^0.4.0",
|
|
51
|
+
"typescript": "^4.9.5",
|
|
52
|
+
"vite": "^4.1.1",
|
|
53
|
+
"vite-plugin-dts": "^1.7.2",
|
|
54
|
+
"vite-plugin-vuetify": "^1.0.2",
|
|
55
|
+
"vue": "^3.2.47",
|
|
56
|
+
"vue-flatpickr-component": "^11.0.1",
|
|
38
57
|
"vue-i18n": "^9.2.2",
|
|
39
58
|
"vue-router": "^4.1.6",
|
|
40
59
|
"vue-tsc": "^1.0.24",
|
|
41
|
-
"vuetify": "^3.1.
|
|
60
|
+
"vuetify": "^3.1.4"
|
|
61
|
+
},
|
|
62
|
+
"peerDependencies": {
|
|
63
|
+
"@vuelidate/core": "^2.0.0",
|
|
64
|
+
"@vuelidate/validators": "^2.0.0",
|
|
65
|
+
"@vueuse/core": "^9.12.0",
|
|
66
|
+
"@vueuse/integrations": "^9.12.0",
|
|
67
|
+
"axios": "^1.3.2",
|
|
68
|
+
"dayjs": "^1.11.7",
|
|
69
|
+
"flatpickr": "^4.6.13",
|
|
70
|
+
"pinia": "^2.0.30",
|
|
71
|
+
"vue": "^3.2.47",
|
|
72
|
+
"vue-i18n": "^9.2.2",
|
|
73
|
+
"vue-router": "^4.1.6",
|
|
74
|
+
"vuetify": "^3.1.4"
|
|
75
|
+
},
|
|
76
|
+
"peerDependenciesMeta": {
|
|
77
|
+
"@vueuse/core": {
|
|
78
|
+
"optional": true
|
|
79
|
+
},
|
|
80
|
+
"@vueuse/integrations": {
|
|
81
|
+
"optional": true
|
|
82
|
+
},
|
|
83
|
+
"axios": {
|
|
84
|
+
"optional": true
|
|
85
|
+
},
|
|
86
|
+
"dayjs": {
|
|
87
|
+
"optional": true
|
|
88
|
+
},
|
|
89
|
+
"flatpickr": {
|
|
90
|
+
"optional": true
|
|
91
|
+
},
|
|
92
|
+
"pinia": {
|
|
93
|
+
"optional": true
|
|
94
|
+
},
|
|
95
|
+
"vue-router": {
|
|
96
|
+
"optional": true
|
|
97
|
+
}
|
|
42
98
|
}
|
|
43
99
|
}
|