@hostlink/nuxt-light 1.22.2 → 1.23.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/dist/module.json +1 -1
- package/dist/module.mjs +15 -0
- package/dist/runtime/components/L/CustomField/Add.vue +94 -0
- package/dist/runtime/components/L/CustomField/List.vue +35 -0
- package/dist/runtime/components/L/System/Setting/developer.vue +20 -3
- package/dist/runtime/components/L/ValidationInput.vue +105 -0
- package/dist/runtime/components/l-date-picker.vue +4 -0
- package/dist/runtime/components/l-file-manager-labels.vue +6 -1
- package/dist/runtime/components/l-file-manager.vue +0 -4
- package/dist/runtime/components/l-group-select.vue +115 -0
- package/dist/runtime/components/l-input.vue +1 -1
- package/dist/runtime/components/l-table.vue +1 -1
- package/dist/runtime/components/l-time-picker.vue +4 -0
- package/dist/runtime/formkit/DatePicker.vue +4 -0
- package/dist/runtime/formkit/GroupSelect.vue +34 -0
- package/dist/runtime/formkit/Input.vue +4 -0
- package/dist/runtime/formkit/Repeater.vue +35 -38
- package/dist/runtime/formkit/TimePicker.vue +4 -0
- package/dist/runtime/formkit/index.js +6 -0
- package/dist/runtime/index.d.ts +1 -1
- package/dist/runtime/light.d.ts +6 -1123
- package/dist/runtime/model/CustomField.d.ts +26 -0
- package/dist/runtime/model/CustomField.js +25 -0
- package/dist/runtime/pages/CustomField/[custom_field_id]/edit.vue +64 -0
- package/dist/runtime/pages/CustomField/index.vue +43 -0
- package/dist/runtime/pages/Role/add2.vue +68 -0
- package/dist/runtime/pages/System/database/table.vue +2 -2
- package/dist/runtime/pages/System/setting.vue +3 -0
- package/dist/runtime/plugin.js +2 -0
- package/package.json +2 -2
|
@@ -14,6 +14,7 @@ import InputXlsxVue from "./InputXlsx.vue";
|
|
|
14
14
|
import FileUploadVue from "./FileUpload.vue";
|
|
15
15
|
import EditorVue from "./Editor.vue";
|
|
16
16
|
import ToggleVue from "./Toggle.vue";
|
|
17
|
+
import GroupSelect from "./GroupSelect.vue";
|
|
17
18
|
export const createLightPlugin = () => {
|
|
18
19
|
return (node) => {
|
|
19
20
|
let type = node.props.type + "";
|
|
@@ -79,6 +80,11 @@ export const createLightPlugin = () => {
|
|
|
79
80
|
type: "input",
|
|
80
81
|
component: SelectVue
|
|
81
82
|
});
|
|
83
|
+
case "l-group-select":
|
|
84
|
+
return node.define({
|
|
85
|
+
type: "input",
|
|
86
|
+
component: GroupSelect
|
|
87
|
+
});
|
|
82
88
|
case "l-repeater":
|
|
83
89
|
return node.define({
|
|
84
90
|
type: "input",
|
package/dist/runtime/index.d.ts
CHANGED