@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.
Files changed (30) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +15 -0
  3. package/dist/runtime/components/L/CustomField/Add.vue +94 -0
  4. package/dist/runtime/components/L/CustomField/List.vue +35 -0
  5. package/dist/runtime/components/L/System/Setting/developer.vue +20 -3
  6. package/dist/runtime/components/L/ValidationInput.vue +105 -0
  7. package/dist/runtime/components/l-date-picker.vue +4 -0
  8. package/dist/runtime/components/l-file-manager-labels.vue +6 -1
  9. package/dist/runtime/components/l-file-manager.vue +0 -4
  10. package/dist/runtime/components/l-group-select.vue +115 -0
  11. package/dist/runtime/components/l-input.vue +1 -1
  12. package/dist/runtime/components/l-table.vue +1 -1
  13. package/dist/runtime/components/l-time-picker.vue +4 -0
  14. package/dist/runtime/formkit/DatePicker.vue +4 -0
  15. package/dist/runtime/formkit/GroupSelect.vue +34 -0
  16. package/dist/runtime/formkit/Input.vue +4 -0
  17. package/dist/runtime/formkit/Repeater.vue +35 -38
  18. package/dist/runtime/formkit/TimePicker.vue +4 -0
  19. package/dist/runtime/formkit/index.js +6 -0
  20. package/dist/runtime/index.d.ts +1 -1
  21. package/dist/runtime/light.d.ts +6 -1123
  22. package/dist/runtime/model/CustomField.d.ts +26 -0
  23. package/dist/runtime/model/CustomField.js +25 -0
  24. package/dist/runtime/pages/CustomField/[custom_field_id]/edit.vue +64 -0
  25. package/dist/runtime/pages/CustomField/index.vue +43 -0
  26. package/dist/runtime/pages/Role/add2.vue +68 -0
  27. package/dist/runtime/pages/System/database/table.vue +2 -2
  28. package/dist/runtime/pages/System/setting.vue +3 -0
  29. package/dist/runtime/plugin.js +2 -0
  30. 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",
@@ -1,4 +1,4 @@
1
- import { type FormKitInputs } from '@formkit/inputs';
1
+ import type { FormKitInputs } from '@formkit/inputs';
2
2
 
3
3
  declare module '@formkit/inputs' {
4
4
  export interface FormKitInputProps<Props extends FormKitInputs<Props>> {