@modufolio/panel 0.1.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 (194) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +165 -0
  3. package/dist/Builder/ImageNodeView.d.ts +33 -0
  4. package/dist/Builder/document.d.ts +17 -0
  5. package/dist/Builder/dragHandle.d.ts +13 -0
  6. package/dist/Builder/editing.d.ts +53 -0
  7. package/dist/Builder/plugins.d.ts +27 -0
  8. package/dist/Builder/schema.d.ts +20 -0
  9. package/dist/Components/Actions/Action.vue.d.ts +116 -0
  10. package/dist/Components/Actions/ActionGroup.vue.d.ts +25 -0
  11. package/dist/Components/Actions/ActionGroupItem.vue.d.ts +48 -0
  12. package/dist/Components/Auth/ForgotPassword.vue.d.ts +17 -0
  13. package/dist/Components/Auth/Login.vue.d.ts +33 -0
  14. package/dist/Components/Auth/ResetPassword.vue.d.ts +27 -0
  15. package/dist/Components/Auth/TwoFactor.vue.d.ts +32 -0
  16. package/dist/Components/Auth/TwoFactorVerify.vue.d.ts +31 -0
  17. package/dist/Components/Columns/BadgeColumn.vue.d.ts +34 -0
  18. package/dist/Components/Columns/BooleanColumn.vue.d.ts +78 -0
  19. package/dist/Components/Columns/CellActions.vue.d.ts +34 -0
  20. package/dist/Components/Columns/ColorColumn.vue.d.ts +84 -0
  21. package/dist/Components/Columns/CopyButton.vue.d.ts +15 -0
  22. package/dist/Components/Columns/DateColumn.vue.d.ts +60 -0
  23. package/dist/Components/Columns/IconColumn.vue.d.ts +56 -0
  24. package/dist/Components/Columns/ImageColumn.vue.d.ts +46 -0
  25. package/dist/Components/Columns/SelectColumn.vue.d.ts +71 -0
  26. package/dist/Components/Columns/TextColumn.vue.d.ts +69 -0
  27. package/dist/Components/Columns/TextInputColumn.vue.d.ts +75 -0
  28. package/dist/Components/Columns/ToggleColumn.vue.d.ts +91 -0
  29. package/dist/Components/Columns/TreeColumn.vue.d.ts +60 -0
  30. package/dist/Components/Columns/columnRegistry.d.ts +6 -0
  31. package/dist/Components/Composables/useInlineEdit.d.ts +27 -0
  32. package/dist/Components/Composables/useRelationship.d.ts +38 -0
  33. package/dist/Components/Core/Badge.vue.d.ts +47 -0
  34. package/dist/Components/Core/Button.vue.d.ts +131 -0
  35. package/dist/Components/Core/Dropdown.vue.d.ts +24 -0
  36. package/dist/Components/Core/Empty.vue.d.ts +54 -0
  37. package/dist/Components/Core/ErrorBoundary.vue.d.ts +24 -0
  38. package/dist/Components/Core/FlashMessages.vue.d.ts +7 -0
  39. package/dist/Components/Core/Icon.vue.d.ts +23 -0
  40. package/dist/Components/Core/Icons/DocumentLinesIcon.vue.d.ts +3 -0
  41. package/dist/Components/Core/Icons/SitemapIcon.vue.d.ts +3 -0
  42. package/dist/Components/Core/Label.vue.d.ts +52 -0
  43. package/dist/Components/Core/LoadingButton.vue.d.ts +18 -0
  44. package/dist/Components/Core/Modal.vue.d.ts +26 -0
  45. package/dist/Components/Core/Pagination.vue.d.ts +10 -0
  46. package/dist/Components/Core/SelectInput.vue.d.ts +26 -0
  47. package/dist/Components/Core/Tag.vue.d.ts +65 -0
  48. package/dist/Components/Core/TextInput.vue.d.ts +25 -0
  49. package/dist/Components/Core/iconRegistry.d.ts +3 -0
  50. package/dist/Components/Dialogs/ConfirmDialog.vue.d.ts +16 -0
  51. package/dist/Components/Dialogs/DeleteConfirmDialog.vue.d.ts +30 -0
  52. package/dist/Components/Dialogs/Dialog.vue.d.ts +81 -0
  53. package/dist/Components/Drawer/Drawer.vue.d.ts +130 -0
  54. package/dist/Components/Drawer/DrawerFieldGrid.vue.d.ts +39 -0
  55. package/dist/Components/Drawer/DrawerLink.vue.d.ts +96 -0
  56. package/dist/Components/Drawer/DrawerRelationList.vue.d.ts +81 -0
  57. package/dist/Components/Drawer/DrawerStack.vue.d.ts +93 -0
  58. package/dist/Components/Drawer/DrawerTabs.vue.d.ts +42 -0
  59. package/dist/Components/Drawer/NestedDrawerForm.vue.d.ts +55 -0
  60. package/dist/Components/Drawer/drawerFieldGrid.d.ts +25 -0
  61. package/dist/Components/Drawer/drawerTabs.d.ts +16 -0
  62. package/dist/Components/Drawer/useDrawerPage.d.ts +34 -0
  63. package/dist/Components/Drawer/useDrawerStack.d.ts +93 -0
  64. package/dist/Components/Drawer/useFocusedStackRow.d.ts +22 -0
  65. package/dist/Components/Drawer/useIsDrawer.d.ts +66 -0
  66. package/dist/Components/Drawer/visitDrawer.d.ts +48 -0
  67. package/dist/Components/Fields/BelongsToSelect.vue.d.ts +247 -0
  68. package/dist/Components/Fields/BlueprintForm.vue.d.ts +96 -0
  69. package/dist/Components/Fields/Calendar/CalendarPanel.vue.d.ts +63 -0
  70. package/dist/Components/Fields/Calendar/MonthGrid.vue.d.ts +82 -0
  71. package/dist/Components/Fields/CheckboxField.vue.d.ts +92 -0
  72. package/dist/Components/Fields/ColorPickerField.vue.d.ts +105 -0
  73. package/dist/Components/Fields/DatePickerField.vue.d.ts +102 -0
  74. package/dist/Components/Fields/DateRangePickerField.vue.d.ts +138 -0
  75. package/dist/Components/Fields/DateTimePickerField.vue.d.ts +134 -0
  76. package/dist/Components/Fields/FieldGrid.vue.d.ts +13 -0
  77. package/dist/Components/Fields/FileUploadField.vue.d.ts +117 -0
  78. package/dist/Components/Fields/MultiSelectField.vue.d.ts +129 -0
  79. package/dist/Components/Fields/ProseMirrorBuilderField.vue.d.ts +71 -0
  80. package/dist/Components/Fields/RangeField.vue.d.ts +122 -0
  81. package/dist/Components/Fields/RepeaterField.vue.d.ts +174 -0
  82. package/dist/Components/Fields/RichTextEditorField.vue.d.ts +118 -0
  83. package/dist/Components/Fields/SelectField.vue.d.ts +102 -0
  84. package/dist/Components/Fields/TagsField.vue.d.ts +102 -0
  85. package/dist/Components/Fields/TextField.vue.d.ts +138 -0
  86. package/dist/Components/Fields/TextareaField.vue.d.ts +111 -0
  87. package/dist/Components/Fields/TimePickerField.vue.d.ts +115 -0
  88. package/dist/Components/Fields/ToggleButtonsField.vue.d.ts +93 -0
  89. package/dist/Components/Fields/ToggleField.vue.d.ts +95 -0
  90. package/dist/Components/Fields/fieldRegistry.d.ts +25 -0
  91. package/dist/Components/Fields/fieldsFromSpec.d.ts +10 -0
  92. package/dist/Components/Fields/useBlueprint.d.ts +94 -0
  93. package/dist/Components/Fields/useFieldWidth.d.ts +10 -0
  94. package/dist/Components/Fields/validation.d.ts +43 -0
  95. package/dist/Components/Filters/DateRangeFilter.vue.d.ts +92 -0
  96. package/dist/Components/Filters/FacetedFilter.vue.d.ts +41 -0
  97. package/dist/Components/Filters/FilterIndicators.vue.d.ts +40 -0
  98. package/dist/Components/Filters/FilterPopover.vue.d.ts +38 -0
  99. package/dist/Components/Filters/MultiSelectFilter.vue.d.ts +51 -0
  100. package/dist/Components/Filters/NumberFilter.vue.d.ts +61 -0
  101. package/dist/Components/Filters/QueryBuilder.vue.d.ts +32 -0
  102. package/dist/Components/Filters/SelectFilter.vue.d.ts +61 -0
  103. package/dist/Components/Filters/TernaryFilter.vue.d.ts +73 -0
  104. package/dist/Components/Layout/AppLayout.vue.d.ts +137 -0
  105. package/dist/Components/Layout/Breadcrumbs.vue.d.ts +44 -0
  106. package/dist/Components/Layout/Cluster.vue.d.ts +88 -0
  107. package/dist/Components/Layout/Container.vue.d.ts +69 -0
  108. package/dist/Components/Layout/Grid.vue.d.ts +110 -0
  109. package/dist/Components/Layout/PageHeader.vue.d.ts +62 -0
  110. package/dist/Components/Layout/Sidebar.vue.d.ts +59 -0
  111. package/dist/Components/Layout/Stack.vue.d.ts +69 -0
  112. package/dist/Components/Layout/TopNavigation.vue.d.ts +124 -0
  113. package/dist/Components/Media/MediaPickerDialog.vue.d.ts +20 -0
  114. package/dist/Components/Media/mediaEndpoints.d.ts +18 -0
  115. package/dist/Components/Notifications/Toast.vue.d.ts +17 -0
  116. package/dist/Components/Notifications/useToast.d.ts +43 -0
  117. package/dist/Components/Relations/RelationManager.vue.d.ts +232 -0
  118. package/dist/Components/Sections/FieldsSection.vue.d.ts +56 -0
  119. package/dist/Components/Sections/FilesSection.vue.d.ts +120 -0
  120. package/dist/Components/Sections/FormSection.vue.d.ts +111 -0
  121. package/dist/Components/Sections/InfoSection.vue.d.ts +77 -0
  122. package/dist/Components/Sections/Section.vue.d.ts +67 -0
  123. package/dist/Components/Table/ColumnToggle.vue.d.ts +42 -0
  124. package/dist/Components/Table/ExportButton.vue.d.ts +93 -0
  125. package/dist/Components/Table/SchemaCell.d.ts +50 -0
  126. package/dist/Components/Table/SchemaFilterPanel.vue.d.ts +64 -0
  127. package/dist/Components/Table/SchemaTable.vue.d.ts +255 -0
  128. package/dist/Components/Table/Table.vue.d.ts +232 -0
  129. package/dist/Components/Table/TableEmptyState.vue.d.ts +24 -0
  130. package/dist/Components/Table/TablePagination.vue.d.ts +71 -0
  131. package/dist/Components/Table/TableSkeletonRows.vue.d.ts +52 -0
  132. package/dist/Components/Table/TableSortButton.vue.d.ts +38 -0
  133. package/dist/Components/Table/TableToolbar.vue.d.ts +62 -0
  134. package/dist/Components/Table/schemaLinks.d.ts +16 -0
  135. package/dist/Components/Table/tableSchema.d.ts +243 -0
  136. package/dist/Components/Table/tableTypes.d.ts +13 -0
  137. package/dist/Components/Table/useSchemaActions.d.ts +82 -0
  138. package/dist/Components/Table/useSchemaFilters.d.ts +28 -0
  139. package/dist/Components/Table/useTableExport.d.ts +16 -0
  140. package/dist/Components/Table/useTableGrouping.d.ts +9 -0
  141. package/dist/Components/Table/useTableRowFocus.d.ts +27 -0
  142. package/dist/Components/Table/useTableSelection.d.ts +15 -0
  143. package/dist/Components/Table/useTableTree.d.ts +23 -0
  144. package/dist/Components/Widgets/StatCard.vue.d.ts +81 -0
  145. package/dist/Components/Widgets/StatsWidget.vue.d.ts +27 -0
  146. package/dist/Components/Wizard/Wizard.vue.d.ts +99 -0
  147. package/dist/Composables/useAsyncData.d.ts +48 -0
  148. package/dist/Composables/useDeleteConfirmation.d.ts +86 -0
  149. package/dist/Composables/useDragReorder.d.ts +12 -0
  150. package/dist/Composables/useFieldSaver.d.ts +15 -0
  151. package/dist/Composables/useFocusTrap.d.ts +5 -0
  152. package/dist/Composables/useLocalStoragePersistence.d.ts +18 -0
  153. package/dist/Composables/useNestedDrawerForm.d.ts +58 -0
  154. package/dist/Composables/usePagination.d.ts +23 -0
  155. package/dist/Composables/usePendingKeys.d.ts +30 -0
  156. package/dist/Composables/useQuery.d.ts +61 -0
  157. package/dist/Composables/useReconciled.d.ts +22 -0
  158. package/dist/Composables/useUnsavedChangesWarning.d.ts +16 -0
  159. package/dist/Primitives/hideOthers.d.ts +12 -0
  160. package/dist/Primitives/teleportTarget.d.ts +2 -0
  161. package/dist/Primitives/useAnchoredPosition.d.ts +32 -0
  162. package/dist/Primitives/useArrowNavigation.d.ts +30 -0
  163. package/dist/Primitives/useBodyScrollLock.d.ts +9 -0
  164. package/dist/Primitives/useDismissableLayer.d.ts +46 -0
  165. package/dist/Primitives/useId.d.ts +13 -0
  166. package/dist/Primitives/useTypeahead.d.ts +11 -0
  167. package/dist/Utils/apiFetch.d.ts +28 -0
  168. package/dist/Utils/csrf.d.ts +2 -0
  169. package/dist/Utils/dates.d.ts +50 -0
  170. package/dist/Utils/moduleSingleton.d.ts +21 -0
  171. package/dist/Utils/optimistic.d.ts +33 -0
  172. package/dist/Utils/reconcile.d.ts +17 -0
  173. package/dist/Utils/tagsChanged.d.ts +16 -0
  174. package/dist/Utils/url.d.ts +40 -0
  175. package/dist/Utils/writeGate.d.ts +82 -0
  176. package/dist/index.css +1 -0
  177. package/dist/index.d.ts +157 -0
  178. package/dist/index.js +27193 -0
  179. package/dist/index.js.map +1 -0
  180. package/dist/injectionKeys.d.ts +10 -0
  181. package/dist/plugin.d.ts +36 -0
  182. package/dist/types/menu.d.ts +11 -0
  183. package/docs/async-writes.md +159 -0
  184. package/docs/custom-fields.md +71 -0
  185. package/docs/drawer-protocol.md +130 -0
  186. package/docs/overlays.md +106 -0
  187. package/docs/relation-fields.md +112 -0
  188. package/docs/roadmap.md +38 -0
  189. package/docs/table-schema.md +371 -0
  190. package/package.json +150 -0
  191. package/styles/buttons.css +31 -0
  192. package/styles/form.css +74 -0
  193. package/styles/index.css +15 -0
  194. package/styles/tokens.css +79 -0
@@ -0,0 +1,31 @@
1
+ declare var __VLS_6: {};
2
+ type __VLS_Slots = {} & {
3
+ logo?: (props: typeof __VLS_6) => any;
4
+ };
5
+ declare const __VLS_base: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
6
+ email: {
7
+ type: StringConstructor;
8
+ required: true;
9
+ };
10
+ csrf_token: {
11
+ type: StringConstructor;
12
+ required: true;
13
+ };
14
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
15
+ email: {
16
+ type: StringConstructor;
17
+ required: true;
18
+ };
19
+ csrf_token: {
20
+ type: StringConstructor;
21
+ required: true;
22
+ };
23
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
24
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
25
+ declare const _default: typeof __VLS_export;
26
+ export default _default;
27
+ type __VLS_WithSlots<T, S> = T & {
28
+ new (): {
29
+ $slots: S;
30
+ };
31
+ };
@@ -0,0 +1,34 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ label: {
3
+ type: StringConstructor;
4
+ required: true;
5
+ };
6
+ color: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ validator: (value: unknown) => boolean;
10
+ };
11
+ icon: {
12
+ type: (StringConstructor | ObjectConstructor)[];
13
+ default: null;
14
+ };
15
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
16
+ label: {
17
+ type: StringConstructor;
18
+ required: true;
19
+ };
20
+ color: {
21
+ type: StringConstructor;
22
+ default: string;
23
+ validator: (value: unknown) => boolean;
24
+ };
25
+ icon: {
26
+ type: (StringConstructor | ObjectConstructor)[];
27
+ default: null;
28
+ };
29
+ }>> & Readonly<{}>, {
30
+ color: string;
31
+ icon: string | Record<string, any>;
32
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
33
+ declare const _default: typeof __VLS_export;
34
+ export default _default;
@@ -0,0 +1,78 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ value: {
3
+ type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
4
+ default: boolean;
5
+ };
6
+ trueLabel: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ falseLabel: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ };
14
+ trueColor: {
15
+ type: StringConstructor;
16
+ default: string;
17
+ };
18
+ falseColor: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ };
22
+ trueIcon: {
23
+ type: ObjectConstructor;
24
+ default: null;
25
+ };
26
+ falseIcon: {
27
+ type: ObjectConstructor;
28
+ default: null;
29
+ };
30
+ showLabel: {
31
+ type: BooleanConstructor;
32
+ default: boolean;
33
+ };
34
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
35
+ value: {
36
+ type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
37
+ default: boolean;
38
+ };
39
+ trueLabel: {
40
+ type: StringConstructor;
41
+ default: string;
42
+ };
43
+ falseLabel: {
44
+ type: StringConstructor;
45
+ default: string;
46
+ };
47
+ trueColor: {
48
+ type: StringConstructor;
49
+ default: string;
50
+ };
51
+ falseColor: {
52
+ type: StringConstructor;
53
+ default: string;
54
+ };
55
+ trueIcon: {
56
+ type: ObjectConstructor;
57
+ default: null;
58
+ };
59
+ falseIcon: {
60
+ type: ObjectConstructor;
61
+ default: null;
62
+ };
63
+ showLabel: {
64
+ type: BooleanConstructor;
65
+ default: boolean;
66
+ };
67
+ }>> & Readonly<{}>, {
68
+ value: string | number | boolean;
69
+ trueLabel: string;
70
+ falseLabel: string;
71
+ trueColor: string;
72
+ falseColor: string;
73
+ trueIcon: Record<string, any>;
74
+ falseIcon: Record<string, any>;
75
+ showLabel: boolean;
76
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
77
+ declare const _default: typeof __VLS_export;
78
+ export default _default;
@@ -0,0 +1,34 @@
1
+ import { PropType } from 'vue';
2
+ import { SchemaColumn, SchemaColumnAction } from '../Table/tableSchema';
3
+ type ActionHandler = (record: Record<string, any>, action: SchemaColumnAction) => unknown;
4
+ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
5
+ column: {
6
+ type: PropType<SchemaColumn>;
7
+ required: true;
8
+ };
9
+ record: {
10
+ type: PropType<Record<string, any>>;
11
+ required: true;
12
+ };
13
+ handlers: {
14
+ type: PropType<Record<string, ActionHandler>>;
15
+ default: () => {};
16
+ };
17
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
18
+ column: {
19
+ type: PropType<SchemaColumn>;
20
+ required: true;
21
+ };
22
+ record: {
23
+ type: PropType<Record<string, any>>;
24
+ required: true;
25
+ };
26
+ handlers: {
27
+ type: PropType<Record<string, ActionHandler>>;
28
+ default: () => {};
29
+ };
30
+ }>> & Readonly<{}>, {
31
+ handlers: Record<string, ActionHandler>;
32
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
33
+ declare const _default: typeof __VLS_export;
34
+ export default _default;
@@ -0,0 +1,84 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ /**
3
+ * The color value (hex, rgb, rgba, hsl, etc.)
4
+ */
5
+ color: {
6
+ type: StringConstructor;
7
+ required: true;
8
+ };
9
+ /**
10
+ * Optional label to display next to the swatch
11
+ */
12
+ label: {
13
+ type: StringConstructor;
14
+ default: null;
15
+ };
16
+ /**
17
+ * Show the color value as a label
18
+ */
19
+ showLabel: {
20
+ type: BooleanConstructor;
21
+ default: boolean;
22
+ };
23
+ /**
24
+ * Size of the color swatch
25
+ * @values sm, md, lg
26
+ */
27
+ size: {
28
+ type: StringConstructor;
29
+ default: string;
30
+ validator: (value: unknown) => boolean;
31
+ };
32
+ /**
33
+ * Enable copy to clipboard functionality
34
+ */
35
+ copyable: {
36
+ type: BooleanConstructor;
37
+ default: boolean;
38
+ };
39
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
40
+ /**
41
+ * The color value (hex, rgb, rgba, hsl, etc.)
42
+ */
43
+ color: {
44
+ type: StringConstructor;
45
+ required: true;
46
+ };
47
+ /**
48
+ * Optional label to display next to the swatch
49
+ */
50
+ label: {
51
+ type: StringConstructor;
52
+ default: null;
53
+ };
54
+ /**
55
+ * Show the color value as a label
56
+ */
57
+ showLabel: {
58
+ type: BooleanConstructor;
59
+ default: boolean;
60
+ };
61
+ /**
62
+ * Size of the color swatch
63
+ * @values sm, md, lg
64
+ */
65
+ size: {
66
+ type: StringConstructor;
67
+ default: string;
68
+ validator: (value: unknown) => boolean;
69
+ };
70
+ /**
71
+ * Enable copy to clipboard functionality
72
+ */
73
+ copyable: {
74
+ type: BooleanConstructor;
75
+ default: boolean;
76
+ };
77
+ }>> & Readonly<{}>, {
78
+ size: string;
79
+ label: string;
80
+ showLabel: boolean;
81
+ copyable: boolean;
82
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
83
+ declare const _default: typeof __VLS_export;
84
+ export default _default;
@@ -0,0 +1,15 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ value: {
3
+ type: (StringConstructor | NumberConstructor)[];
4
+ default: string;
5
+ };
6
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
7
+ value: {
8
+ type: (StringConstructor | NumberConstructor)[];
9
+ default: string;
10
+ };
11
+ }>> & Readonly<{}>, {
12
+ value: string | number;
13
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
14
+ declare const _default: typeof __VLS_export;
15
+ export default _default;
@@ -0,0 +1,60 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ value: {
3
+ type: (StringConstructor | NumberConstructor | DateConstructor)[];
4
+ default: null;
5
+ };
6
+ format: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ description: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ };
14
+ labelClass: {
15
+ type: StringConstructor;
16
+ default: string;
17
+ };
18
+ timezone: {
19
+ type: StringConstructor;
20
+ default: null;
21
+ };
22
+ relative: {
23
+ type: BooleanConstructor;
24
+ default: boolean;
25
+ };
26
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
27
+ value: {
28
+ type: (StringConstructor | NumberConstructor | DateConstructor)[];
29
+ default: null;
30
+ };
31
+ format: {
32
+ type: StringConstructor;
33
+ default: string;
34
+ };
35
+ description: {
36
+ type: StringConstructor;
37
+ default: string;
38
+ };
39
+ labelClass: {
40
+ type: StringConstructor;
41
+ default: string;
42
+ };
43
+ timezone: {
44
+ type: StringConstructor;
45
+ default: null;
46
+ };
47
+ relative: {
48
+ type: BooleanConstructor;
49
+ default: boolean;
50
+ };
51
+ }>> & Readonly<{}>, {
52
+ value: string | number | Date;
53
+ relative: boolean;
54
+ description: string;
55
+ format: string;
56
+ labelClass: string;
57
+ timezone: string;
58
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
59
+ declare const _default: typeof __VLS_export;
60
+ export default _default;
@@ -0,0 +1,56 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ icon: {
3
+ type: (StringConstructor | ObjectConstructor)[];
4
+ required: true;
5
+ };
6
+ label: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ color: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ validator: (value: unknown) => boolean;
14
+ };
15
+ size: {
16
+ type: StringConstructor;
17
+ default: string;
18
+ validator: (value: unknown) => boolean;
19
+ };
20
+ variant: {
21
+ type: StringConstructor;
22
+ default: string;
23
+ validator: (value: unknown) => boolean;
24
+ };
25
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
26
+ icon: {
27
+ type: (StringConstructor | ObjectConstructor)[];
28
+ required: true;
29
+ };
30
+ label: {
31
+ type: StringConstructor;
32
+ default: string;
33
+ };
34
+ color: {
35
+ type: StringConstructor;
36
+ default: string;
37
+ validator: (value: unknown) => boolean;
38
+ };
39
+ size: {
40
+ type: StringConstructor;
41
+ default: string;
42
+ validator: (value: unknown) => boolean;
43
+ };
44
+ variant: {
45
+ type: StringConstructor;
46
+ default: string;
47
+ validator: (value: unknown) => boolean;
48
+ };
49
+ }>> & Readonly<{}>, {
50
+ size: string;
51
+ label: string;
52
+ color: string;
53
+ variant: string;
54
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
55
+ declare const _default: typeof __VLS_export;
56
+ export default _default;
@@ -0,0 +1,46 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ src: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ alt: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ size: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ validator: (value: unknown) => boolean;
14
+ };
15
+ rounded: {
16
+ type: StringConstructor;
17
+ default: string;
18
+ validator: (value: unknown) => boolean;
19
+ };
20
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
21
+ src: {
22
+ type: StringConstructor;
23
+ default: string;
24
+ };
25
+ alt: {
26
+ type: StringConstructor;
27
+ default: string;
28
+ };
29
+ size: {
30
+ type: StringConstructor;
31
+ default: string;
32
+ validator: (value: unknown) => boolean;
33
+ };
34
+ rounded: {
35
+ type: StringConstructor;
36
+ default: string;
37
+ validator: (value: unknown) => boolean;
38
+ };
39
+ }>> & Readonly<{}>, {
40
+ size: string;
41
+ src: string;
42
+ alt: string;
43
+ rounded: string;
44
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
45
+ declare const _default: typeof __VLS_export;
46
+ export default _default;
@@ -0,0 +1,71 @@
1
+ import { PropType } from 'vue';
2
+ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3
+ value: {
4
+ type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
5
+ default: string;
6
+ };
7
+ record: {
8
+ type: ObjectConstructor;
9
+ required: true;
10
+ };
11
+ column: {
12
+ type: StringConstructor;
13
+ required: true;
14
+ };
15
+ options: {
16
+ type: PropType<any[]>;
17
+ required: true;
18
+ };
19
+ placeholder: {
20
+ type: StringConstructor;
21
+ default: string;
22
+ };
23
+ disabled: {
24
+ type: BooleanConstructor;
25
+ default: boolean;
26
+ };
27
+ onUpdate: {
28
+ type: FunctionConstructor;
29
+ default: null;
30
+ };
31
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
32
+ update: (...args: any[]) => void;
33
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
34
+ value: {
35
+ type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
36
+ default: string;
37
+ };
38
+ record: {
39
+ type: ObjectConstructor;
40
+ required: true;
41
+ };
42
+ column: {
43
+ type: StringConstructor;
44
+ required: true;
45
+ };
46
+ options: {
47
+ type: PropType<any[]>;
48
+ required: true;
49
+ };
50
+ placeholder: {
51
+ type: StringConstructor;
52
+ default: string;
53
+ };
54
+ disabled: {
55
+ type: BooleanConstructor;
56
+ default: boolean;
57
+ };
58
+ onUpdate: {
59
+ type: FunctionConstructor;
60
+ default: null;
61
+ };
62
+ }>> & Readonly<{
63
+ onUpdate?: ((...args: any[]) => any) | undefined;
64
+ }>, {
65
+ value: string | number | boolean;
66
+ placeholder: string;
67
+ disabled: boolean;
68
+ onUpdate: Function;
69
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
70
+ declare const _default: typeof __VLS_export;
71
+ export default _default;
@@ -0,0 +1,69 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ label: {
3
+ type: (StringConstructor | NumberConstructor)[];
4
+ default: string;
5
+ };
6
+ description: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ icon: {
11
+ type: (StringConstructor | ObjectConstructor)[];
12
+ default: null;
13
+ };
14
+ iconClass: {
15
+ type: StringConstructor;
16
+ default: string;
17
+ };
18
+ suffix: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ };
22
+ contentClass: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ labelClass: {
27
+ type: StringConstructor;
28
+ default: string;
29
+ };
30
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
31
+ label: {
32
+ type: (StringConstructor | NumberConstructor)[];
33
+ default: string;
34
+ };
35
+ description: {
36
+ type: StringConstructor;
37
+ default: string;
38
+ };
39
+ icon: {
40
+ type: (StringConstructor | ObjectConstructor)[];
41
+ default: null;
42
+ };
43
+ iconClass: {
44
+ type: StringConstructor;
45
+ default: string;
46
+ };
47
+ suffix: {
48
+ type: StringConstructor;
49
+ default: string;
50
+ };
51
+ contentClass: {
52
+ type: StringConstructor;
53
+ default: string;
54
+ };
55
+ labelClass: {
56
+ type: StringConstructor;
57
+ default: string;
58
+ };
59
+ }>> & Readonly<{}>, {
60
+ label: string | number;
61
+ suffix: string;
62
+ description: string;
63
+ icon: string | Record<string, any>;
64
+ labelClass: string;
65
+ iconClass: string;
66
+ contentClass: string;
67
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
68
+ declare const _default: typeof __VLS_export;
69
+ export default _default;
@@ -0,0 +1,75 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ value: {
3
+ type: (StringConstructor | NumberConstructor)[];
4
+ default: string;
5
+ };
6
+ record: {
7
+ type: ObjectConstructor;
8
+ required: true;
9
+ };
10
+ /** The record key this cell edits. */
11
+ column: {
12
+ type: StringConstructor;
13
+ required: true;
14
+ };
15
+ placeholder: {
16
+ type: StringConstructor;
17
+ default: string;
18
+ };
19
+ label: {
20
+ type: StringConstructor;
21
+ default: string;
22
+ };
23
+ disabled: {
24
+ type: BooleanConstructor;
25
+ default: boolean;
26
+ };
27
+ /** Callback run with (record, column, newValue); may reject. */
28
+ onUpdate: {
29
+ type: FunctionConstructor;
30
+ default: null;
31
+ };
32
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
33
+ update: (...args: any[]) => void;
34
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
35
+ value: {
36
+ type: (StringConstructor | NumberConstructor)[];
37
+ default: string;
38
+ };
39
+ record: {
40
+ type: ObjectConstructor;
41
+ required: true;
42
+ };
43
+ /** The record key this cell edits. */
44
+ column: {
45
+ type: StringConstructor;
46
+ required: true;
47
+ };
48
+ placeholder: {
49
+ type: StringConstructor;
50
+ default: string;
51
+ };
52
+ label: {
53
+ type: StringConstructor;
54
+ default: string;
55
+ };
56
+ disabled: {
57
+ type: BooleanConstructor;
58
+ default: boolean;
59
+ };
60
+ /** Callback run with (record, column, newValue); may reject. */
61
+ onUpdate: {
62
+ type: FunctionConstructor;
63
+ default: null;
64
+ };
65
+ }>> & Readonly<{
66
+ onUpdate?: ((...args: any[]) => any) | undefined;
67
+ }>, {
68
+ value: string | number;
69
+ label: string;
70
+ placeholder: string;
71
+ disabled: boolean;
72
+ onUpdate: Function;
73
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
74
+ declare const _default: typeof __VLS_export;
75
+ export default _default;