@bagelink/vue 0.0.93 → 0.0.98

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 (100) hide show
  1. package/dist/components/Btn.vue.d.ts +31 -31
  2. package/dist/components/DataPreview.vue.d.ts +4 -4
  3. package/dist/components/DropDown.vue.d.ts +1 -1
  4. package/dist/components/FormSchema.vue.d.ts +4 -4
  5. package/dist/components/ListItem.vue.d.ts +2 -2
  6. package/dist/components/ListView.vue.d.ts +3 -3
  7. package/dist/components/MaterialIcon.vue.d.ts +3 -3
  8. package/dist/components/Modal.vue.d.ts +9 -10
  9. package/dist/components/ModalForm.vue.d.ts +17 -18
  10. package/dist/components/NavBar.vue.d.ts +11 -11
  11. package/dist/components/PersonPreviewFormkit.vue.d.ts +2 -2
  12. package/dist/components/RTXEditor.vue.d.ts +5 -5
  13. package/dist/components/TabbedLayout.vue.d.ts +5 -5
  14. package/dist/components/TableSchema.vue.d.ts +3 -3
  15. package/dist/components/charts/BarChart.vue.d.ts +6 -6
  16. package/dist/components/form/MaterialIcon.vue.d.ts +3 -3
  17. package/dist/components/form/inputs/CheckInput.vue.d.ts +6 -6
  18. package/dist/components/form/inputs/Checkbox.vue.d.ts +1 -1
  19. package/dist/components/form/inputs/CurrencyInput.vue.d.ts +8 -8
  20. package/dist/components/form/inputs/DateInput.vue.d.ts +6 -6
  21. package/dist/components/form/inputs/DatetimeInput.vue.d.ts +11 -11
  22. package/dist/components/form/inputs/DurationInput.vue.d.ts +11 -11
  23. package/dist/components/form/inputs/EmailInput.vue.d.ts +11 -11
  24. package/dist/components/form/inputs/FloatInput.vue.d.ts +11 -11
  25. package/dist/components/form/inputs/IntInput.vue.d.ts +11 -11
  26. package/dist/components/form/inputs/JSONInput.vue.d.ts +11 -11
  27. package/dist/components/form/inputs/LinkField.vue.d.ts +13 -13
  28. package/dist/components/form/inputs/Password.vue.d.ts +12 -12
  29. package/dist/components/form/inputs/PasswordInput.vue.d.ts +11 -11
  30. package/dist/components/form/inputs/ReadOnlyInput.vue.d.ts +3 -3
  31. package/dist/components/form/inputs/RichTextEditor.vue.d.ts +11 -11
  32. package/dist/components/form/inputs/SelectField.vue.d.ts +7 -7
  33. package/dist/components/form/inputs/TableField.vue.d.ts +5 -5
  34. package/dist/components/form/inputs/TextInput.vue.d.ts +22 -22
  35. package/dist/components/formkit/index.d.ts +2 -2
  36. package/dist/components/index.d.ts +1 -0
  37. package/dist/index.cjs +318 -304
  38. package/dist/index.d.ts +1 -0
  39. package/dist/index.mjs +318 -304
  40. package/dist/plugins/modal.d.ts +3 -1
  41. package/dist/style.css +246 -244
  42. package/dist/types/BtnOptions.d.ts +1 -1
  43. package/dist/types/index.d.ts +2 -1
  44. package/dist/types/materialIcons.d.ts +1 -0
  45. package/dist/utils/index.d.ts +3 -2
  46. package/dist/utils/objects.d.ts +1 -1
  47. package/package.json +45 -18
  48. package/src/components/Btn.vue +4 -3
  49. package/src/components/Comments.vue +2 -2
  50. package/src/components/ContactArray.vue +2 -2
  51. package/src/components/ContactSubmissions.vue +2 -2
  52. package/src/components/DataPreview.vue +1 -1
  53. package/src/components/DropDown.vue +3 -2
  54. package/src/components/FileUploader.vue +1 -1
  55. package/src/components/FormKitTable.vue +1 -2
  56. package/src/components/FormSchema.vue +2 -2
  57. package/src/components/ListView.vue +1 -2
  58. package/src/components/MaterialIcon.vue +1 -1
  59. package/src/components/Modal.vue +2 -2
  60. package/src/components/ModalForm.vue +2 -3
  61. package/src/components/NavBar.vue +2 -2
  62. package/src/components/PersonPreview.vue +3 -4
  63. package/src/components/PersonPreviewFormkit.vue +3 -4
  64. package/src/components/RouterWrapper.vue +0 -2
  65. package/src/components/TableSchema.vue +1 -2
  66. package/src/components/form/ItemRef.vue +5 -6
  67. package/src/components/form/MaterialIcon.vue +1 -1
  68. package/src/components/form/PlainInputField.vue +2 -2
  69. package/src/components/form/inputs/CheckInput.vue +1 -1
  70. package/src/components/form/inputs/Checkbox.vue +1 -1
  71. package/src/components/form/inputs/ColorPicker.vue +1 -1
  72. package/src/components/form/inputs/CurrencyInput.vue +1 -1
  73. package/src/components/form/inputs/DateInput.vue +1 -1
  74. package/src/components/form/inputs/DynamicLinkField.vue +2 -1
  75. package/src/components/form/inputs/LinkField.vue +1 -1
  76. package/src/components/form/inputs/Password.vue +2 -3
  77. package/src/components/form/inputs/PlainText.vue +1 -1
  78. package/src/components/form/inputs/ReadOnlyInput.vue +1 -1
  79. package/src/components/form/inputs/SelectField.vue +2 -2
  80. package/src/components/form/inputs/TableField.vue +3 -5
  81. package/src/components/form/inputs/TextArea.vue +1 -1
  82. package/src/components/form/inputs/TextInput.vue +1 -1
  83. package/src/components/formkit/AddressArray.vue +3 -3
  84. package/src/components/formkit/BankDetailsArray.vue +2 -3
  85. package/src/components/formkit/ContactArrayFormKit.vue +3 -3
  86. package/src/components/formkit/FileUploader.vue +2 -2
  87. package/src/components/formkit/MiscFields.vue +1 -1
  88. package/src/components/formkit/index.ts +3 -3
  89. package/src/components/index.ts +1 -0
  90. package/src/components/whatsapp/form/MsgTemplate.vue +1 -2
  91. package/src/components/whatsapp/form/TextVariableExamples.vue +1 -1
  92. package/src/index.ts +1 -0
  93. package/src/plugins/modal.ts +3 -3
  94. package/src/types/BtnOptions.ts +1 -1
  95. package/src/types/index.ts +2 -1
  96. package/src/utils/index.ts +3 -1
  97. package/src/utils/objects.ts +1 -1
  98. package/tsconfig.json +43 -28
  99. package/vite.config.ts +1 -1
  100. /package/src/types/{materialIcons.d.ts → materialIcons.ts} +0 -0
@@ -1,18 +1,18 @@
1
- import { MaterialIcons } from '../types/materialIcons';
1
+ import type { MaterialIcons } from '..';
2
2
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
- disabled?: boolean;
4
- icon?: MaterialIcons;
5
- 'icon.end'?: MaterialIcons;
6
- color?: "light" | "black" | "blue" | "gray" | "green" | "red" | "gray-light";
7
- flat?: boolean;
8
- thin?: boolean;
9
- type?: "button" | "reset" | "submit";
10
- loading?: boolean;
11
- role?: string;
12
- value?: string;
13
- to?: string;
14
- round?: boolean;
15
- is?: string;
3
+ disabled?: boolean | undefined;
4
+ icon?: MaterialIcons | undefined;
5
+ 'icon.end'?: MaterialIcons | undefined;
6
+ color?: "light" | "gray" | "blue" | "red" | "gray-light" | "black" | "green" | undefined;
7
+ flat?: boolean | undefined;
8
+ thin?: boolean | undefined;
9
+ type?: "button" | "submit" | "reset" | undefined;
10
+ loading?: boolean | undefined;
11
+ role?: string | undefined;
12
+ value?: string | undefined;
13
+ to?: string | undefined;
14
+ round?: boolean | undefined;
15
+ is?: string | undefined;
16
16
  }>, {
17
17
  loading: boolean;
18
18
  round: boolean;
@@ -22,19 +22,19 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
22
22
  role: string;
23
23
  is: string;
24
24
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
25
- disabled?: boolean;
26
- icon?: MaterialIcons;
27
- 'icon.end'?: MaterialIcons;
28
- color?: "light" | "black" | "blue" | "gray" | "green" | "red" | "gray-light";
29
- flat?: boolean;
30
- thin?: boolean;
31
- type?: "button" | "reset" | "submit";
32
- loading?: boolean;
33
- role?: string;
34
- value?: string;
35
- to?: string;
36
- round?: boolean;
37
- is?: string;
25
+ disabled?: boolean | undefined;
26
+ icon?: MaterialIcons | undefined;
27
+ 'icon.end'?: MaterialIcons | undefined;
28
+ color?: "light" | "gray" | "blue" | "red" | "gray-light" | "black" | "green" | undefined;
29
+ flat?: boolean | undefined;
30
+ thin?: boolean | undefined;
31
+ type?: "button" | "submit" | "reset" | undefined;
32
+ loading?: boolean | undefined;
33
+ role?: string | undefined;
34
+ value?: string | undefined;
35
+ to?: string | undefined;
36
+ round?: boolean | undefined;
37
+ is?: string | undefined;
38
38
  }>, {
39
39
  loading: boolean;
40
40
  round: boolean;
@@ -44,13 +44,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
44
44
  role: string;
45
45
  is: string;
46
46
  }>>>, {
47
- type: "button" | "reset" | "submit";
48
- color: "light" | "black" | "blue" | "gray" | "green" | "red" | "gray-light";
49
- round: boolean;
50
- disabled: boolean;
47
+ type: "button" | "submit" | "reset";
51
48
  role: string;
49
+ color: "light" | "gray" | "blue" | "red" | "gray-light" | "black" | "green";
50
+ disabled: boolean;
52
51
  loading: boolean;
53
52
  is: string;
53
+ round: boolean;
54
54
  }, {}>, {
55
55
  default?(_: {}): any;
56
56
  }>;
@@ -1,14 +1,14 @@
1
1
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
2
  data: Record<string, any>;
3
- schema?: Record<string, any>[];
4
- title?: string;
3
+ schema?: Record<string, any>[] | undefined;
4
+ title?: string | undefined;
5
5
  $t: (str: string) => string;
6
6
  }>, {
7
7
  $t: (str: string) => string;
8
8
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
9
9
  data: Record<string, any>;
10
- schema?: Record<string, any>[];
11
- title?: string;
10
+ schema?: Record<string, any>[] | undefined;
11
+ title?: string | undefined;
12
12
  $t: (str: string) => string;
13
13
  }>, {
14
14
  $t: (str: string) => string;
@@ -9,6 +9,6 @@ declare const _default: import("vue").DefineComponent<{
9
9
  options: ArrayConstructor;
10
10
  placeholder: StringConstructor;
11
11
  }>> & {
12
- "onUpdate:modelValue"?: (...args: any[]) => any;
12
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
13
13
  }, {}, {}>;
14
14
  export default _default;
@@ -2,7 +2,7 @@ import { type FormKitSchemaDefinition } from '@formkit/core';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
3
  modelValue?: any;
4
4
  schema: FormKitSchemaDefinition;
5
- onDelete?: (id: string) => void;
5
+ onDelete?: ((id: string) => void) | undefined;
6
6
  $t: (key: string) => string;
7
7
  }>, {
8
8
  $t: (key: string) => string;
@@ -12,13 +12,13 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
12
12
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
13
13
  modelValue?: any;
14
14
  schema: FormKitSchemaDefinition;
15
- onDelete?: (id: string) => void;
15
+ onDelete?: ((id: string) => void) | undefined;
16
16
  $t: (key: string) => string;
17
17
  }>, {
18
18
  $t: (key: string) => string;
19
19
  }>>> & {
20
- "onUpdate:modelValue"?: (...args: any[]) => any;
21
- onSubmit?: (...args: any[]) => any;
20
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
21
+ onSubmit?: ((...args: any[]) => any) | undefined;
22
22
  }, {
23
23
  $t: (key: string) => string;
24
24
  }, {}>;
@@ -1,7 +1,7 @@
1
1
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
2
- to?: string;
2
+ to?: string | undefined;
3
3
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
4
- to?: string;
4
+ to?: string | undefined;
5
5
  }>>>, {}, {}>, {
6
6
  default?(_: {}): any;
7
7
  subtitle?(_: {}): any;
@@ -13,9 +13,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
13
13
  open: boolean;
14
14
  searchPlaceholder: string;
15
15
  }>>> & {
16
- onSearch?: (...args: any[]) => any;
17
- onAdd?: (...args: any[]) => any;
18
- onDebounce?: (...args: any[]) => any;
16
+ onSearch?: ((...args: any[]) => any) | undefined;
17
+ onAdd?: ((...args: any[]) => any) | undefined;
18
+ onDebounce?: ((...args: any[]) => any) | undefined;
19
19
  }, {}, {}>, {
20
20
  default?(_: {}): any;
21
21
  }>;
@@ -1,10 +1,10 @@
1
- import type { MaterialIcons } from '../types/materialIcons';
1
+ import type { MaterialIcons } from '..';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
3
  icon: MaterialIcons;
4
- size?: number;
4
+ size?: number | undefined;
5
5
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
6
6
  icon: MaterialIcons;
7
- size?: number;
7
+ size?: number | undefined;
8
8
  }>>>, {}, {}>;
9
9
  export default _default;
10
10
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -1,18 +1,17 @@
1
- import { BtnOptions } from '../types/BtnOptions';
2
1
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
- side?: boolean;
4
- title?: string;
5
- dismissable?: boolean;
6
- actions?: BtnOptions[];
2
+ side?: boolean | undefined;
3
+ title?: string | undefined;
4
+ dismissable?: boolean | undefined;
5
+ actions?: BtnOptions[] | undefined;
7
6
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
7
  "update:isModalVisible": (...args: any[]) => void;
9
8
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
10
- side?: boolean;
11
- title?: string;
12
- dismissable?: boolean;
13
- actions?: BtnOptions[];
9
+ side?: boolean | undefined;
10
+ title?: string | undefined;
11
+ dismissable?: boolean | undefined;
12
+ actions?: BtnOptions[] | undefined;
14
13
  }>>> & {
15
- "onUpdate:isModalVisible"?: (...args: any[]) => any;
14
+ "onUpdate:isModalVisible"?: ((...args: any[]) => any) | undefined;
16
15
  }, {}, {}>, {
17
16
  toolbar?(_: {}): any;
18
17
  default?(_: {}): any;
@@ -1,29 +1,28 @@
1
1
  import { type FormKitSchemaDefinition } from '@formkit/core';
2
- import { BtnOptions } from '../types/BtnOptions';
3
2
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
4
- side?: boolean;
5
- title?: string;
6
- dismissable?: boolean;
7
- actions?: BtnOptions[];
3
+ side?: boolean | undefined;
4
+ title?: string | undefined;
5
+ dismissable?: boolean | undefined;
6
+ actions?: BtnOptions[] | undefined;
8
7
  schema: FormKitSchemaDefinition | (() => FormKitSchemaDefinition);
9
- modelValue?: Record<string, any>;
10
- onSubmit?: (formData: any) => Promise<void>;
11
- onDelete?: (id: string) => void;
8
+ modelValue?: Record<string, any> | undefined;
9
+ onSubmit?: ((formData: any) => Promise<void>) | undefined;
10
+ onDelete?: ((id: string) => void) | undefined;
12
11
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
- "update:modelValue": (...args: any[]) => void;
14
12
  "update:isModalVisible": (...args: any[]) => void;
13
+ "update:modelValue": (...args: any[]) => void;
15
14
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
16
- side?: boolean;
17
- title?: string;
18
- dismissable?: boolean;
19
- actions?: BtnOptions[];
15
+ side?: boolean | undefined;
16
+ title?: string | undefined;
17
+ dismissable?: boolean | undefined;
18
+ actions?: BtnOptions[] | undefined;
20
19
  schema: FormKitSchemaDefinition | (() => FormKitSchemaDefinition);
21
- modelValue?: Record<string, any>;
22
- onSubmit?: (formData: any) => Promise<void>;
23
- onDelete?: (id: string) => void;
20
+ modelValue?: Record<string, any> | undefined;
21
+ onSubmit?: ((formData: any) => Promise<void>) | undefined;
22
+ onDelete?: ((id: string) => void) | undefined;
24
23
  }>>> & {
25
- "onUpdate:modelValue"?: (...args: any[]) => any;
26
- "onUpdate:isModalVisible"?: (...args: any[]) => any;
24
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
25
+ "onUpdate:isModalVisible"?: ((...args: any[]) => any) | undefined;
27
26
  }, {}, {}>, {
28
27
  toolbar?(_: {}): any;
29
28
  }>;
@@ -1,14 +1,14 @@
1
- import type { MaterialIcons } from '../types/materialIcons';
1
+ import type { MaterialIcons } from '..';
2
2
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
3
  links?: {
4
4
  label: string;
5
5
  to: string;
6
6
  materialIcon: MaterialIcons;
7
- localized?: string;
8
- }[];
9
- homeIcon?: MaterialIcons;
10
- homeLabel?: string;
11
- homeTo?: string;
7
+ localized?: string | undefined;
8
+ }[] | undefined;
9
+ homeIcon?: MaterialIcons | undefined;
10
+ homeLabel?: string | undefined;
11
+ homeTo?: string | undefined;
12
12
  }>, {
13
13
  homeIcon: string;
14
14
  homeLabel: string;
@@ -18,11 +18,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
18
18
  label: string;
19
19
  to: string;
20
20
  materialIcon: MaterialIcons;
21
- localized?: string;
22
- }[];
23
- homeIcon?: MaterialIcons;
24
- homeLabel?: string;
25
- homeTo?: string;
21
+ localized?: string | undefined;
22
+ }[] | undefined;
23
+ homeIcon?: MaterialIcons | undefined;
24
+ homeLabel?: string | undefined;
25
+ homeTo?: string | undefined;
26
26
  }>, {
27
27
  homeIcon: string;
28
28
  homeLabel: string;
@@ -1,11 +1,11 @@
1
1
  import type { FormKitSchemaDefinition } from '@formkit/core';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
3
  context: Record<string, any>;
4
- onClick?: (event: MouseEvent) => void;
4
+ onClick?: ((event: MouseEvent) => void) | undefined;
5
5
  personSchema: () => FormKitSchemaDefinition;
6
6
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
7
7
  context: Record<string, any>;
8
- onClick?: (event: MouseEvent) => void;
8
+ onClick?: ((event: MouseEvent) => void) | undefined;
9
9
  personSchema: () => FormKitSchemaDefinition;
10
10
  }>>>, {}, {}>;
11
11
  export default _default;
@@ -1,5 +1,5 @@
1
1
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
- elementId?: string;
2
+ elementId?: string | undefined;
3
3
  modelValue: string;
4
4
  }>, {
5
5
  elementId: string;
@@ -8,17 +8,17 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
8
8
  "update:modelValue": (...args: any[]) => void;
9
9
  "keydown.meta.enter": (...args: any[]) => void;
10
10
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
11
- elementId?: string;
11
+ elementId?: string | undefined;
12
12
  modelValue: string;
13
13
  }>, {
14
14
  elementId: string;
15
15
  modelValue: string;
16
16
  }>>> & {
17
- "onUpdate:modelValue"?: (...args: any[]) => any;
18
- "onKeydown.meta.enter"?: (...args: any[]) => any;
17
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
18
+ "onKeydown.meta.enter"?: ((...args: any[]) => any) | undefined;
19
19
  }, {
20
- elementId: string;
21
20
  modelValue: string;
21
+ elementId: string;
22
22
  }, {}>;
23
23
  export default _default;
24
24
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -1,18 +1,18 @@
1
1
  import type { Router } from 'vue-router';
2
2
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
- title?: string;
3
+ title?: string | undefined;
4
4
  tabs: string[];
5
- modelValue?: string;
5
+ modelValue?: string | undefined;
6
6
  router: Router;
7
7
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
8
  "update:modelValue": (...args: any[]) => void;
9
9
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
10
- title?: string;
10
+ title?: string | undefined;
11
11
  tabs: string[];
12
- modelValue?: string;
12
+ modelValue?: string | undefined;
13
13
  router: Router;
14
14
  }>>> & {
15
- "onUpdate:modelValue"?: (...args: any[]) => any;
15
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
16
16
  }, {}, {}>, Partial<Record<string, (_: {
17
17
  key: string;
18
18
  }) => any>> & {
@@ -1,13 +1,13 @@
1
1
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
2
2
  data: any[];
3
- schema?: any[];
3
+ schema?: any[] | undefined;
4
4
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5
5
  select: (...args: any[]) => void;
6
6
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
7
7
  data: any[];
8
- schema?: any[];
8
+ schema?: any[] | undefined;
9
9
  }>>> & {
10
- onSelect?: (...args: any[]) => any;
10
+ onSelect?: ((...args: any[]) => any) | undefined;
11
11
  }, {}, {}>, Partial<Record<any, (_: {
12
12
  row: any;
13
13
  field: any;
@@ -1,7 +1,7 @@
1
1
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
2
- title?: string;
3
- showMarks?: boolean;
4
- flood?: number;
2
+ title?: string | undefined;
3
+ showMarks?: boolean | undefined;
4
+ flood?: number | undefined;
5
5
  modelValue: {
6
6
  value: number;
7
7
  title?: string;
@@ -10,9 +10,9 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
10
10
  data?: Record<string, any>[];
11
11
  }[];
12
12
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
13
- title?: string;
14
- showMarks?: boolean;
15
- flood?: number;
13
+ title?: string | undefined;
14
+ showMarks?: boolean | undefined;
15
+ flood?: number | undefined;
16
16
  modelValue: {
17
17
  value: number;
18
18
  title?: string;
@@ -1,10 +1,10 @@
1
- import { MaterialIcons } from '../../types/materialIcons';
1
+ import type { MaterialIcons } from '../..';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
3
  icon: MaterialIcons;
4
- size?: number;
4
+ size?: number | undefined;
5
5
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
6
6
  icon: MaterialIcons;
7
- size?: number;
7
+ size?: number | undefined;
8
8
  }>>>, {}, {}>;
9
9
  export default _default;
10
10
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -1,9 +1,9 @@
1
- import { BagelField } from '../../../types';
1
+ import { BagelField } from '../../..';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
3
  field: BagelField;
4
4
  modelValue: any;
5
- editMode?: boolean;
6
- small?: boolean;
5
+ editMode?: boolean | undefined;
6
+ small?: boolean | undefined;
7
7
  }>, {
8
8
  editMode: boolean;
9
9
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -11,12 +11,12 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
11
11
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
12
12
  field: BagelField;
13
13
  modelValue: any;
14
- editMode?: boolean;
15
- small?: boolean;
14
+ editMode?: boolean | undefined;
15
+ small?: boolean | undefined;
16
16
  }>, {
17
17
  editMode: boolean;
18
18
  }>>> & {
19
- "onUpdate:modelValue"?: (...args: any[]) => any;
19
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
20
20
  }, {
21
21
  editMode: boolean;
22
22
  }, {}>;
@@ -5,7 +5,7 @@ declare const _default: import("vue").DefineComponent<{
5
5
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
6
6
  modelValue: BooleanConstructor;
7
7
  }>> & {
8
- "onUpdate:modelValue"?: (...args: any[]) => any;
8
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
9
9
  }, {
10
10
  modelValue: boolean;
11
11
  }, {}>;
@@ -1,10 +1,10 @@
1
- import { BagelField } from '../../../types';
1
+ import { BagelField } from '../../..';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
3
  field: BagelField;
4
4
  modelValue: any;
5
- placeholder?: string;
6
- editMode?: boolean;
7
- small?: boolean;
5
+ placeholder?: string | undefined;
6
+ editMode?: boolean | undefined;
7
+ small?: boolean | undefined;
8
8
  }>, {
9
9
  editMode: boolean;
10
10
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -12,13 +12,13 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
12
12
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
13
13
  field: BagelField;
14
14
  modelValue: any;
15
- placeholder?: string;
16
- editMode?: boolean;
17
- small?: boolean;
15
+ placeholder?: string | undefined;
16
+ editMode?: boolean | undefined;
17
+ small?: boolean | undefined;
18
18
  }>, {
19
19
  editMode: boolean;
20
20
  }>>> & {
21
- "onUpdate:modelValue"?: (...args: any[]) => any;
21
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
22
22
  }, {
23
23
  editMode: boolean;
24
24
  }, {}>;
@@ -1,9 +1,9 @@
1
- import type { BagelField } from '../../../types/BagelField';
1
+ import type { BagelField } from '../../..';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
3
  field: BagelField;
4
4
  modelValue: any;
5
- editMode?: boolean;
6
- small?: boolean;
5
+ editMode?: boolean | undefined;
6
+ small?: boolean | undefined;
7
7
  }>, {
8
8
  editMode: boolean;
9
9
  small: boolean;
@@ -12,13 +12,13 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
12
12
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
13
13
  field: BagelField;
14
14
  modelValue: any;
15
- editMode?: boolean;
16
- small?: boolean;
15
+ editMode?: boolean | undefined;
16
+ small?: boolean | undefined;
17
17
  }>, {
18
18
  editMode: boolean;
19
19
  small: boolean;
20
20
  }>>> & {
21
- "onUpdate:modelValue"?: (...args: any[]) => any;
21
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
22
22
  }, {
23
23
  small: boolean;
24
24
  editMode: boolean;
@@ -1,10 +1,10 @@
1
1
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
- description?: string;
3
- label?: string;
2
+ description?: string | undefined;
3
+ label?: string | undefined;
4
4
  modelValue: any;
5
- placeholder?: string;
6
- editMode?: boolean;
7
- small?: boolean;
5
+ placeholder?: string | undefined;
6
+ editMode?: boolean | undefined;
7
+ small?: boolean | undefined;
8
8
  }>, {
9
9
  description: string;
10
10
  editMode: boolean;
@@ -13,19 +13,19 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
13
13
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
14
  "update:modelValue": (...args: any[]) => void;
15
15
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
16
- description?: string;
17
- label?: string;
16
+ description?: string | undefined;
17
+ label?: string | undefined;
18
18
  modelValue: any;
19
- placeholder?: string;
20
- editMode?: boolean;
21
- small?: boolean;
19
+ placeholder?: string | undefined;
20
+ editMode?: boolean | undefined;
21
+ small?: boolean | undefined;
22
22
  }>, {
23
23
  description: string;
24
24
  editMode: boolean;
25
25
  placeholder: string;
26
26
  label: string;
27
27
  }>>> & {
28
- "onUpdate:modelValue"?: (...args: any[]) => any;
28
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
29
29
  }, {
30
30
  label: string;
31
31
  description: string;
@@ -1,10 +1,10 @@
1
1
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
- description?: string;
3
- label?: string;
2
+ description?: string | undefined;
3
+ label?: string | undefined;
4
4
  modelValue: any;
5
- placeholder?: string;
6
- editMode?: boolean;
7
- small?: boolean;
5
+ placeholder?: string | undefined;
6
+ editMode?: boolean | undefined;
7
+ small?: boolean | undefined;
8
8
  }>, {
9
9
  description: string;
10
10
  editMode: boolean;
@@ -13,19 +13,19 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
13
13
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
14
  "update:modelValue": (...args: any[]) => void;
15
15
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
16
- description?: string;
17
- label?: string;
16
+ description?: string | undefined;
17
+ label?: string | undefined;
18
18
  modelValue: any;
19
- placeholder?: string;
20
- editMode?: boolean;
21
- small?: boolean;
19
+ placeholder?: string | undefined;
20
+ editMode?: boolean | undefined;
21
+ small?: boolean | undefined;
22
22
  }>, {
23
23
  description: string;
24
24
  editMode: boolean;
25
25
  placeholder: string;
26
26
  label: string;
27
27
  }>>> & {
28
- "onUpdate:modelValue"?: (...args: any[]) => any;
28
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
29
29
  }, {
30
30
  label: string;
31
31
  description: string;