primitive-app 2.1.3 → 2.1.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/components/shared/DeleteConfirmationDialog.vue.d.ts +8 -2
- package/dist/components/shared/DeleteConfirmationDialog.vue.d.ts.map +1 -1
- package/dist/components/ui/button/index.d.ts +1 -1
- package/dist/components/ui/calendar/Calendar.vue.d.ts.map +1 -1
- package/dist/components/ui/dialog/DialogOverlay.vue.d.ts.map +1 -1
- package/dist/components/ui/native-select/NativeSelectOptGroup.vue.d.ts +4 -4
- package/dist/components/ui/native-select/NativeSelectOption.vue.d.ts +4 -4
- package/dist/dev-tools/blob-explorer/BlobDetailPanel.vue.d.ts +17 -0
- package/dist/dev-tools/blob-explorer/BlobDetailPanel.vue.d.ts.map +1 -0
- package/dist/dev-tools/blob-explorer/BlobExplorerDocumentSidebar.vue.d.ts +14 -0
- package/dist/dev-tools/blob-explorer/BlobExplorerDocumentSidebar.vue.d.ts.map +1 -0
- package/dist/dev-tools/blob-explorer/BlobExplorerIndex.vue.d.ts +4 -0
- package/dist/dev-tools/blob-explorer/BlobExplorerIndex.vue.d.ts.map +1 -0
- package/dist/dev-tools/blob-explorer/BlobTablePanel.vue.d.ts +30 -0
- package/dist/dev-tools/blob-explorer/BlobTablePanel.vue.d.ts.map +1 -0
- package/dist/dev-tools/blob-explorer/BlobUploadDialog.vue.d.ts +13 -0
- package/dist/dev-tools/blob-explorer/BlobUploadDialog.vue.d.ts.map +1 -0
- package/dist/dev-tools/blob-explorer/blobExplorerTypes.d.ts +17 -0
- package/dist/dev-tools/blob-explorer/blobExplorerTypes.d.ts.map +1 -0
- package/dist/dev-tools/blob-explorer/blobExplorerUtils.d.ts +11 -0
- package/dist/dev-tools/blob-explorer/blobExplorerUtils.d.ts.map +1 -0
- package/dist/dev-tools/blob-explorer/useBlobExplorer.d.ts +35 -0
- package/dist/dev-tools/blob-explorer/useBlobExplorer.d.ts.map +1 -0
- package/dist/dev-tools/document-explorer/DocumentExplorerIndex.vue.d.ts.map +1 -1
- package/dist/dev-tools/document-explorer/DocumentExplorerModel.vue.d.ts +4 -0
- package/dist/dev-tools/document-explorer/DocumentExplorerModel.vue.d.ts.map +1 -1
- package/dist/dev-tools/document-explorer/buildModelRegistry.d.ts +7 -0
- package/dist/dev-tools/document-explorer/buildModelRegistry.d.ts.map +1 -0
- package/dist/dev-tools/document-explorer/components/DocumentAliasesSection.vue.d.ts +8 -0
- package/dist/dev-tools/document-explorer/components/DocumentAliasesSection.vue.d.ts.map +1 -0
- package/dist/dev-tools/document-explorer/components/DocumentListPanel.vue.d.ts +37 -0
- package/dist/dev-tools/document-explorer/components/DocumentListPanel.vue.d.ts.map +1 -0
- package/dist/dev-tools/document-explorer/components/DocumentListSection.vue.d.ts +33 -0
- package/dist/dev-tools/document-explorer/components/DocumentListSection.vue.d.ts.map +1 -0
- package/dist/dev-tools/document-explorer/components/DocumentPropertiesPanel.vue.d.ts +20 -0
- package/dist/dev-tools/document-explorer/components/DocumentPropertiesPanel.vue.d.ts.map +1 -0
- package/dist/dev-tools/document-explorer/components/DocumentSharingSection.vue.d.ts +8 -0
- package/dist/dev-tools/document-explorer/components/DocumentSharingSection.vue.d.ts.map +1 -0
- package/dist/dev-tools/document-explorer/{DocumentSidebar.vue.d.ts → components/DocumentSidebar.vue.d.ts} +2 -2
- package/dist/dev-tools/document-explorer/components/DocumentSidebar.vue.d.ts.map +1 -0
- package/dist/dev-tools/document-explorer/components/DocumentTagsSection.vue.d.ts +16 -0
- package/dist/dev-tools/document-explorer/components/DocumentTagsSection.vue.d.ts.map +1 -0
- package/dist/dev-tools/document-explorer/components/FilterBar.vue.d.ts +29 -0
- package/dist/dev-tools/document-explorer/components/FilterBar.vue.d.ts.map +1 -0
- package/dist/dev-tools/document-explorer/components/InvitationPropertiesPanel.vue.d.ts +14 -0
- package/dist/dev-tools/document-explorer/components/InvitationPropertiesPanel.vue.d.ts.map +1 -0
- package/dist/dev-tools/document-explorer/components/ModelHeader.vue.d.ts +29 -0
- package/dist/dev-tools/document-explorer/components/ModelHeader.vue.d.ts.map +1 -0
- package/dist/dev-tools/document-explorer/components/ModelPaginationBar.vue.d.ts +16 -0
- package/dist/dev-tools/document-explorer/components/ModelPaginationBar.vue.d.ts.map +1 -0
- package/dist/dev-tools/document-explorer/components/RecordFormFields.vue.d.ts +35 -0
- package/dist/dev-tools/document-explorer/components/RecordFormFields.vue.d.ts.map +1 -0
- package/dist/dev-tools/document-explorer/components/RecordTable.vue.d.ts +35 -0
- package/dist/dev-tools/document-explorer/components/RecordTable.vue.d.ts.map +1 -0
- package/dist/dev-tools/document-explorer/composables/useDevToolsToast.d.ts +12 -0
- package/dist/dev-tools/document-explorer/composables/useDevToolsToast.d.ts.map +1 -0
- package/dist/dev-tools/document-explorer/composables/useModelPagination.d.ts +35 -0
- package/dist/dev-tools/document-explorer/composables/useModelPagination.d.ts.map +1 -0
- package/dist/dev-tools/document-explorer/composables/useOptimisticList.d.ts +42 -0
- package/dist/dev-tools/document-explorer/composables/useOptimisticList.d.ts.map +1 -0
- package/dist/dev-tools/document-explorer/composables/useRecordCrud.d.ts +32 -0
- package/dist/dev-tools/document-explorer/composables/useRecordCrud.d.ts.map +1 -0
- package/dist/dev-tools/document-explorer/constants.d.ts +19 -0
- package/dist/dev-tools/document-explorer/constants.d.ts.map +1 -0
- package/dist/dev-tools/document-explorer/dialogs/CreateDocumentDialog.vue.d.ts +14 -0
- package/dist/dev-tools/document-explorer/dialogs/CreateDocumentDialog.vue.d.ts.map +1 -0
- package/dist/dev-tools/document-explorer/documentExplorerStore.d.ts +14 -2
- package/dist/dev-tools/document-explorer/documentExplorerStore.d.ts.map +1 -1
- package/dist/dev-tools/document-explorer/index.d.ts +5 -4
- package/dist/dev-tools/document-explorer/index.d.ts.map +1 -1
- package/dist/dev-tools/document-explorer/types.d.ts +86 -3
- package/dist/dev-tools/document-explorer/types.d.ts.map +1 -1
- package/dist/dev-tools/document-explorer/utils.d.ts +48 -1
- package/dist/dev-tools/document-explorer/utils.d.ts.map +1 -1
- package/dist/dev-tools/index.d.ts +7 -14
- package/dist/dev-tools/index.d.ts.map +1 -1
- package/dist/dev-tools/test-harness/TestRunner.vue.d.ts +0 -6
- package/dist/dev-tools/test-harness/TestRunner.vue.d.ts.map +1 -1
- package/dist/dev-tools/test-harness/lib.d.ts +4 -2
- package/dist/dev-tools/test-harness/lib.d.ts.map +1 -1
- package/dist/dev-tools/vite-plugin/DevToolsFloatingButton.vue.d.ts +2 -0
- package/dist/dev-tools/vite-plugin/DevToolsFloatingButton.vue.d.ts.map +1 -1
- package/dist/dev-tools/vite-plugin/DevToolsOverlay.vue.d.ts.map +1 -1
- package/dist/dev-tools/vite-plugin/DevToolsRoot.vue.d.ts +2 -0
- package/dist/dev-tools/vite-plugin/DevToolsRoot.vue.d.ts.map +1 -1
- package/dist/dev-tools/vite-plugin/index.cjs +12 -9
- package/dist/dev-tools/vite-plugin/index.js +36 -26
- package/dist/dev-tools/vite-plugin/plugin.d.ts +14 -0
- package/dist/dev-tools/vite-plugin/plugin.d.ts.map +1 -1
- package/dist/index.cjs +5 -4
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +15869 -19701
- package/dist/primitive-app.css +1 -0
- package/dist/services/JsBaoClientService.d.ts +77 -0
- package/dist/services/JsBaoClientService.d.ts.map +1 -1
- package/package.json +3 -2
- package/dist/dev-tools/document-explorer/DocumentSidebar.vue.d.ts.map +0 -1
- package/dist/dev-tools/document-explorer/dialogs/MassDeleteDocsDialog.vue.d.ts +0 -29
- package/dist/dev-tools/document-explorer/dialogs/MassDeleteDocsDialog.vue.d.ts.map +0 -1
- package/dist/dev-tools/document-explorer/dialogs/MassDeleteRecordsDialog.vue.d.ts +0 -32
- package/dist/dev-tools/document-explorer/dialogs/MassDeleteRecordsDialog.vue.d.ts.map +0 -1
|
@@ -23,6 +23,11 @@ interface Props {
|
|
|
23
23
|
* @default "Delete"
|
|
24
24
|
*/
|
|
25
25
|
confirmLabel?: string;
|
|
26
|
+
/**
|
|
27
|
+
* Label shown on the confirm button while the action is in progress.
|
|
28
|
+
* @default "Deleting..."
|
|
29
|
+
*/
|
|
30
|
+
confirmingLabel?: string;
|
|
26
31
|
/**
|
|
27
32
|
* Label for the cancel button.
|
|
28
33
|
* @default "Cancel"
|
|
@@ -35,18 +40,19 @@ interface Props {
|
|
|
35
40
|
isDeleting?: boolean;
|
|
36
41
|
}
|
|
37
42
|
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
38
|
-
confirm: () => any;
|
|
39
43
|
cancel: () => any;
|
|
44
|
+
confirm: () => any;
|
|
40
45
|
"update:isOpen": (value: boolean) => any;
|
|
41
46
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
42
|
-
onConfirm?: (() => any) | undefined;
|
|
43
47
|
onCancel?: (() => any) | undefined;
|
|
48
|
+
onConfirm?: (() => any) | undefined;
|
|
44
49
|
"onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
|
|
45
50
|
}>, {
|
|
46
51
|
title: string;
|
|
47
52
|
question: string;
|
|
48
53
|
warning: string;
|
|
49
54
|
confirmLabel: string;
|
|
55
|
+
confirmingLabel: string;
|
|
50
56
|
cancelLabel: string;
|
|
51
57
|
isDeleting: boolean;
|
|
52
58
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DeleteConfirmationDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/shared/DeleteConfirmationDialog.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DeleteConfirmationDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/shared/DeleteConfirmationDialog.vue"],"names":[],"mappings":"AA6KA,UAAU,KAAK;IACb;;OAEG;IACH,MAAM,EAAE,OAAO,CAAC;IAChB;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;OAGG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;OAGG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB;AAwPD,QAAA,MAAM,YAAY;;;;;;;;;WAvRR,MAAM;cAKH,MAAM;aAKP,MAAM;kBAKD,MAAM;qBAKH,MAAM;iBAKV,MAAM;gBAKP,OAAO;6EA6PpB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -2,7 +2,7 @@ import type { VariantProps } from "class-variance-authority";
|
|
|
2
2
|
export { default as Button } from "./Button.vue";
|
|
3
3
|
export declare const buttonVariants: (props?: ({
|
|
4
4
|
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
5
|
-
size?: "default" | "
|
|
5
|
+
size?: "default" | "icon" | "sm" | "lg" | "icon-sm" | "icon-lg" | null | undefined;
|
|
6
6
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
7
7
|
export type ButtonVariants = VariantProps<typeof buttonVariants>;
|
|
8
8
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Calendar.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/calendar/Calendar.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Calendar.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/calendar/Calendar.vue"],"names":[],"mappings":"AA6OA,OAAO,KAAK,EAAqB,iBAAiB,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAG/E,OAAO,KAAK,EAAE,cAAc,EAAO,MAAM,KAAK,CAAC;AAE/C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,GAAG,CAAC;AAerC,KAAK,WAAW,GAAG,iBAAiB,GAAG;IACjC,KAAK,CAAC,EAAE,cAAc,CAAC,OAAO,CAAC,CAAC;IAChC,MAAM,CAAC,EAAE,WAAW,CAAC;IACrB,SAAS,CAAC,EAAE,SAAS,EAAE,CAAC;CACzB,CAAC;AA+kBN,QAAA,IAAI,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ;;;cAjiB9C,SAAS;;;cAGT,SAAS;;CA8hBiD,CAAE;AACpE,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,oBAAoB,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC1D;IAAE,oBAAoB,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC1D;IAAE,kBAAkB,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAG3D,QAAA,MAAM,UAAU;;;;;;;;;6EAId,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DialogOverlay.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/dialog/DialogOverlay.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DialogOverlay.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/dialog/DialogOverlay.vue"],"names":[],"mappings":"AA0BA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAClD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,KAAK,CAAC;AAK1C,KAAK,WAAW,GAAG,kBAAkB,GAAG;IAAE,KAAK,CAAC,EAAE,cAAc,CAAC,OAAO,CAAC,CAAA;CAAE,CAAC;AAgD5E,QAAA,IAAI,OAAO,IAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAK/C,QAAA,MAAM,UAAU,kSAEd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AACzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -10,7 +10,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
10
10
|
innerHTML?: string | undefined | undefined;
|
|
11
11
|
style?: import("vue").StyleValue;
|
|
12
12
|
accesskey?: string | undefined | undefined;
|
|
13
|
-
contenteditable?: (boolean | "true" | "false") | "
|
|
13
|
+
contenteditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
14
14
|
contextmenu?: string | undefined | undefined;
|
|
15
15
|
dir?: string | undefined | undefined;
|
|
16
16
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -60,7 +60,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
60
60
|
'aria-colindex'?: (string | number) | undefined;
|
|
61
61
|
'aria-colspan'?: (string | number) | undefined;
|
|
62
62
|
'aria-controls'?: string | undefined | undefined;
|
|
63
|
-
'aria-current'?: "time" | (boolean | "true" | "false") | "
|
|
63
|
+
'aria-current'?: "time" | (boolean | "true" | "false") | "date" | "page" | "step" | "location" | undefined;
|
|
64
64
|
'aria-describedby'?: string | undefined | undefined;
|
|
65
65
|
'aria-details'?: string | undefined | undefined;
|
|
66
66
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
@@ -205,7 +205,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
205
205
|
innerHTML?: string | undefined | undefined;
|
|
206
206
|
style?: import("vue").StyleValue;
|
|
207
207
|
accesskey?: string | undefined | undefined;
|
|
208
|
-
contenteditable?: (boolean | "true" | "false") | "
|
|
208
|
+
contenteditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
209
209
|
contextmenu?: string | undefined | undefined;
|
|
210
210
|
dir?: string | undefined | undefined;
|
|
211
211
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -255,7 +255,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
255
255
|
'aria-colindex'?: (string | number) | undefined;
|
|
256
256
|
'aria-colspan'?: (string | number) | undefined;
|
|
257
257
|
'aria-controls'?: string | undefined | undefined;
|
|
258
|
-
'aria-current'?: "time" | (boolean | "true" | "false") | "
|
|
258
|
+
'aria-current'?: "time" | (boolean | "true" | "false") | "date" | "page" | "step" | "location" | undefined;
|
|
259
259
|
'aria-describedby'?: string | undefined | undefined;
|
|
260
260
|
'aria-details'?: string | undefined | undefined;
|
|
261
261
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
@@ -12,7 +12,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
12
12
|
innerHTML?: string | undefined | undefined;
|
|
13
13
|
style?: import("vue").StyleValue;
|
|
14
14
|
accesskey?: string | undefined | undefined;
|
|
15
|
-
contenteditable?: (boolean | "true" | "false") | "
|
|
15
|
+
contenteditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
16
16
|
contextmenu?: string | undefined | undefined;
|
|
17
17
|
dir?: string | undefined | undefined;
|
|
18
18
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -62,7 +62,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
62
62
|
'aria-colindex'?: (string | number) | undefined;
|
|
63
63
|
'aria-colspan'?: (string | number) | undefined;
|
|
64
64
|
'aria-controls'?: string | undefined | undefined;
|
|
65
|
-
'aria-current'?: "time" | (boolean | "true" | "false") | "
|
|
65
|
+
'aria-current'?: "time" | (boolean | "true" | "false") | "date" | "page" | "step" | "location" | undefined;
|
|
66
66
|
'aria-describedby'?: string | undefined | undefined;
|
|
67
67
|
'aria-details'?: string | undefined | undefined;
|
|
68
68
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
@@ -209,7 +209,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
209
209
|
innerHTML?: string | undefined | undefined;
|
|
210
210
|
style?: import("vue").StyleValue;
|
|
211
211
|
accesskey?: string | undefined | undefined;
|
|
212
|
-
contenteditable?: (boolean | "true" | "false") | "
|
|
212
|
+
contenteditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
213
213
|
contextmenu?: string | undefined | undefined;
|
|
214
214
|
dir?: string | undefined | undefined;
|
|
215
215
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -259,7 +259,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
259
259
|
'aria-colindex'?: (string | number) | undefined;
|
|
260
260
|
'aria-colspan'?: (string | number) | undefined;
|
|
261
261
|
'aria-controls'?: string | undefined | undefined;
|
|
262
|
-
'aria-current'?: "time" | (boolean | "true" | "false") | "
|
|
262
|
+
'aria-current'?: "time" | (boolean | "true" | "false") | "date" | "page" | "step" | "location" | undefined;
|
|
263
263
|
'aria-describedby'?: string | undefined | undefined;
|
|
264
264
|
'aria-details'?: string | undefined | undefined;
|
|
265
265
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { BlobItem } from "./blobExplorerTypes";
|
|
2
|
+
interface Props {
|
|
3
|
+
documentId: string;
|
|
4
|
+
selectedBlob: BlobItem | null;
|
|
5
|
+
/** Whether the current user has write access; hides destructive actions when false. */
|
|
6
|
+
canWrite: boolean;
|
|
7
|
+
}
|
|
8
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
+
"delete-blob": (blobId: string) => any;
|
|
10
|
+
"reload-blobs": () => any;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
12
|
+
"onDelete-blob"?: ((blobId: string) => any) | undefined;
|
|
13
|
+
"onReload-blobs"?: (() => any) | undefined;
|
|
14
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const _default: typeof __VLS_export;
|
|
16
|
+
export default _default;
|
|
17
|
+
//# sourceMappingURL=BlobDetailPanel.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BlobDetailPanel.vue.d.ts","sourceRoot":"","sources":["../../../src/dev-tools/blob-explorer/BlobDetailPanel.vue"],"names":[],"mappings":"AA0nBA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AASpD,UAAU,KAAK;IACb,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,QAAQ,GAAG,IAAI,CAAC;IAC9B,uFAAuF;IACvF,QAAQ,EAAE,OAAO,CAAC;CACnB;AA47BD,QAAA,MAAM,YAAY;;;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { DocumentInfoWithRoot } from "../document-explorer/types";
|
|
2
|
+
interface Props {
|
|
3
|
+
documents: DocumentInfoWithRoot[];
|
|
4
|
+
selectedDocId: string | null;
|
|
5
|
+
documentListLoaded: boolean;
|
|
6
|
+
}
|
|
7
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
|
+
"select-document": (docId: string) => any;
|
|
9
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
10
|
+
"onSelect-document"?: ((docId: string) => any) | undefined;
|
|
11
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
declare const _default: typeof __VLS_export;
|
|
13
|
+
export default _default;
|
|
14
|
+
//# sourceMappingURL=BlobExplorerDocumentSidebar.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BlobExplorerDocumentSidebar.vue.d.ts","sourceRoot":"","sources":["../../../src/dev-tools/blob-explorer/BlobExplorerDocumentSidebar.vue"],"names":[],"mappings":"AAgJA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAEvE,UAAU,KAAK;IACb,SAAS,EAAE,oBAAoB,EAAE,CAAC;IAClC,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,kBAAkB,EAAE,OAAO,CAAC;CAC7B;AAiPD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
declare const _default: typeof __VLS_export;
|
|
3
|
+
export default _default;
|
|
4
|
+
//# sourceMappingURL=BlobExplorerIndex.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BlobExplorerIndex.vue.d.ts","sourceRoot":"","sources":["../../../src/dev-tools/blob-explorer/BlobExplorerIndex.vue"],"names":[],"mappings":"AAu8BA,QAAA,MAAM,YAAY,+QAChB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { BlobItem } from "./blobExplorerTypes";
|
|
2
|
+
interface Props {
|
|
3
|
+
documentId: string;
|
|
4
|
+
searchQuery: string;
|
|
5
|
+
/** Whether current user can write to this document */
|
|
6
|
+
canWrite: boolean;
|
|
7
|
+
uploadDialogOpen: boolean;
|
|
8
|
+
}
|
|
9
|
+
declare function clearSelection(): void;
|
|
10
|
+
declare function executeBulkDelete(): void;
|
|
11
|
+
declare function handleExternalDelete(blobId: string): void;
|
|
12
|
+
declare function refresh(): Promise<void>;
|
|
13
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {
|
|
14
|
+
executeBulkDelete: typeof executeBulkDelete;
|
|
15
|
+
refresh: typeof refresh;
|
|
16
|
+
clearSelection: typeof clearSelection;
|
|
17
|
+
handleExternalDelete: typeof handleExternalDelete;
|
|
18
|
+
selectedCount: import("vue").ComputedRef<number>;
|
|
19
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
20
|
+
"select-blob": (blob: BlobItem | null) => any;
|
|
21
|
+
"update:upload-dialog-open": (value: boolean) => any;
|
|
22
|
+
"selection-change": (count: number) => any;
|
|
23
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
24
|
+
"onSelect-blob"?: ((blob: BlobItem | null) => any) | undefined;
|
|
25
|
+
"onUpdate:upload-dialog-open"?: ((value: boolean) => any) | undefined;
|
|
26
|
+
"onSelection-change"?: ((count: number) => any) | undefined;
|
|
27
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
|
+
declare const _default: typeof __VLS_export;
|
|
29
|
+
export default _default;
|
|
30
|
+
//# sourceMappingURL=BlobTablePanel.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BlobTablePanel.vue.d.ts","sourceRoot":"","sources":["../../../src/dev-tools/blob-explorer/BlobTablePanel.vue"],"names":[],"mappings":"AAq0BA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAIpD,UAAU,KAAK;IACb,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,sDAAsD;IACtD,QAAQ,EAAE,OAAO,CAAC;IAClB,gBAAgB,EAAE,OAAO,CAAC;CAC3B;AA2LD,iBAAS,cAAc,SAGtB;AAsDD,iBAAS,iBAAiB,SAEzB;AAkBD,iBAAS,oBAAoB,CAAC,MAAM,EAAE,MAAM,QAQ3C;AAgBD,iBAAe,OAAO,kBAOrB;AAg/BD,QAAA,MAAM,YAAY;;;;;;;;;;;;;;kFAIhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
open: boolean;
|
|
3
|
+
}
|
|
4
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
|
+
"update:open": (value: boolean) => any;
|
|
6
|
+
upload: (file: File) => any;
|
|
7
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
8
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
9
|
+
onUpload?: ((file: File) => any) | undefined;
|
|
10
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
declare const _default: typeof __VLS_export;
|
|
12
|
+
export default _default;
|
|
13
|
+
//# sourceMappingURL=BlobUploadDialog.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BlobUploadDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/dev-tools/blob-explorer/BlobUploadDialog.vue"],"names":[],"mappings":"AA+SA,UAAU,KAAK;IACb,IAAI,EAAE,OAAO,CAAC;CACf;AA4bD,QAAA,MAAM,YAAY;;;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/** Metadata for a single blob stored under a document. */
|
|
2
|
+
export interface BlobItem {
|
|
3
|
+
blobId: string;
|
|
4
|
+
filename: string;
|
|
5
|
+
contentType: string;
|
|
6
|
+
/** Size in bytes — may be absent if the server does not return it */
|
|
7
|
+
size?: number | null;
|
|
8
|
+
/** ISO date string — may be absent if the server does not return it */
|
|
9
|
+
uploadedAt?: string | null;
|
|
10
|
+
sha256?: string;
|
|
11
|
+
}
|
|
12
|
+
/** Result from a paginated blob list call */
|
|
13
|
+
export interface BlobListResult {
|
|
14
|
+
items: BlobItem[];
|
|
15
|
+
cursor?: string;
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=blobExplorerTypes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"blobExplorerTypes.d.ts","sourceRoot":"","sources":["../../../src/dev-tools/blob-explorer/blobExplorerTypes.ts"],"names":[],"mappings":"AAAA,0DAA0D;AAC1D,MAAM,WAAW,QAAQ;IACvB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,qEAAqE;IACrE,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,uEAAuE;IACvE,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,6CAA6C;AAC7C,MAAM,WAAW,cAAc;IAC7B,KAAK,EAAE,QAAQ,EAAE,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Shared formatting and clipboard utilities for the blob explorer panels.
|
|
3
|
+
* Centralised here to avoid drift between BlobTablePanel and BlobDetailPanel.
|
|
4
|
+
*/
|
|
5
|
+
/** Returns true if the browser can display this MIME type inline in a new tab. */
|
|
6
|
+
export declare function canOpenInBrowser(contentType: string): boolean;
|
|
7
|
+
export declare function formatBytes(bytes: number | null | undefined): string;
|
|
8
|
+
export declare function formatDate(iso: string | null | undefined, style?: "short" | "long"): string;
|
|
9
|
+
/** Writes text to the clipboard, falling back to execCommand for older browsers. */
|
|
10
|
+
export declare function writeToClipboard(text: string): void;
|
|
11
|
+
//# sourceMappingURL=blobExplorerUtils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"blobExplorerUtils.d.ts","sourceRoot":"","sources":["../../../src/dev-tools/blob-explorer/blobExplorerUtils.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAiCH,kFAAkF;AAClF,wBAAgB,gBAAgB,CAAC,WAAW,EAAE,MAAM,GAAG,OAAO,CAI7D;AAED,wBAAgB,WAAW,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,GAAG,MAAM,CAKpE;AAED,wBAAgB,UAAU,CACxB,GAAG,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EAC9B,KAAK,GAAE,OAAO,GAAG,MAAgB,GAChC,MAAM,CASR;AAED,oFAAoF;AACpF,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CASnD"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import type { BlobItem } from "./blobExplorerTypes";
|
|
2
|
+
export declare function useBlobExplorer(documentId: () => string | null): {
|
|
3
|
+
blobs: import("vue").Ref<{
|
|
4
|
+
blobId: string;
|
|
5
|
+
filename: string;
|
|
6
|
+
contentType: string;
|
|
7
|
+
size?: number | null | undefined;
|
|
8
|
+
uploadedAt?: string | null | undefined;
|
|
9
|
+
sha256?: string | undefined;
|
|
10
|
+
}[], BlobItem[] | {
|
|
11
|
+
blobId: string;
|
|
12
|
+
filename: string;
|
|
13
|
+
contentType: string;
|
|
14
|
+
size?: number | null | undefined;
|
|
15
|
+
uploadedAt?: string | null | undefined;
|
|
16
|
+
sha256?: string | undefined;
|
|
17
|
+
}[]>;
|
|
18
|
+
isLoading: import("vue").Ref<boolean, boolean>;
|
|
19
|
+
isUploading: import("vue").Ref<boolean, boolean>;
|
|
20
|
+
uploadProgress: import("vue").Ref<number, number>;
|
|
21
|
+
loadPage: (options: {
|
|
22
|
+
cursor?: string;
|
|
23
|
+
limit: number;
|
|
24
|
+
}) => Promise<{
|
|
25
|
+
nextCursor?: string;
|
|
26
|
+
}>;
|
|
27
|
+
getBlob: (blobId: string) => Promise<BlobItem | null>;
|
|
28
|
+
uploadFile: (file: File, onProgress?: (pct: number) => void) => Promise<string | null>;
|
|
29
|
+
removeBlob: (blobId: string) => void;
|
|
30
|
+
deleteBlob: (blobId: string) => Promise<boolean>;
|
|
31
|
+
deleteBlobsBulk: (blobIds: string[]) => Promise<string[]>;
|
|
32
|
+
getDownloadUrl: (blobId: string, disposition?: "attachment" | "inline") => Promise<string | null>;
|
|
33
|
+
readBlobContent: (blobId: string, as?: "blob" | "text") => Promise<Blob | string | null>;
|
|
34
|
+
};
|
|
35
|
+
//# sourceMappingURL=useBlobExplorer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useBlobExplorer.d.ts","sourceRoot":"","sources":["../../../src/dev-tools/blob-explorer/useBlobExplorer.ts"],"names":[],"mappings":"AAeA,OAAO,KAAK,EAAE,QAAQ,EAAkB,MAAM,qBAAqB,CAAC;AAIpE,wBAAgB,eAAe,CAAC,UAAU,EAAE,MAAM,MAAM,GAAG,IAAI;;;;;;;;;;;;;;;;;;;wBAO5B;QAC/B,MAAM,CAAC,EAAE,MAAM,CAAC;QAChB,KAAK,EAAE,MAAM,CAAC;KACf,KAAG,OAAO,CAAC;QAAE,UAAU,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;sBAgCL,MAAM,KAAG,OAAO,CAAC,QAAQ,GAAG,IAAI,CAAC;uBA0BxD,IAAI,eACG,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,KACjC,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;yBAuCG,MAAM,KAAG,IAAI;yBAKP,MAAM,KAAG,OAAO,CAAC,OAAO,CAAC;+BAiBnB,MAAM,EAAE,KAAG,OAAO,CAAC,MAAM,EAAE,CAAC;6BAiC1D,MAAM,gBACD,YAAY,GAAG,QAAQ,KACnC,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;8BAkBf,MAAM,OACV,MAAM,GAAG,MAAM,KAClB,OAAO,CAAC,IAAI,GAAG,MAAM,GAAG,IAAI,CAAC;EA2BjC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DocumentExplorerIndex.vue.d.ts","sourceRoot":"","sources":["../../../src/dev-tools/document-explorer/DocumentExplorerIndex.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DocumentExplorerIndex.vue.d.ts","sourceRoot":"","sources":["../../../src/dev-tools/document-explorer/DocumentExplorerIndex.vue"],"names":[],"mappings":"AAg0EA,QAAA,MAAM,YAAY,+QAChB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
interface Props {
|
|
2
2
|
modelName: string;
|
|
3
|
+
/** Document permission level — "reader" means view-only */
|
|
4
|
+
documentPermission?: string;
|
|
3
5
|
}
|
|
4
6
|
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
7
|
back: () => any;
|
|
8
|
+
switchModel: (modelName: string) => any;
|
|
6
9
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
7
10
|
onBack?: (() => any) | undefined;
|
|
11
|
+
onSwitchModel?: ((modelName: string) => any) | undefined;
|
|
8
12
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
13
|
declare const _default: typeof __VLS_export;
|
|
10
14
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DocumentExplorerModel.vue.d.ts","sourceRoot":"","sources":["../../../src/dev-tools/document-explorer/DocumentExplorerModel.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DocumentExplorerModel.vue.d.ts","sourceRoot":"","sources":["../../../src/dev-tools/document-explorer/DocumentExplorerModel.vue"],"names":[],"mappings":"AAguBA,UAAU,KAAK;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,2DAA2D;IAC3D,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;AAy3CD,QAAA,MAAM,YAAY;;;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { ModelInfo } from "./types";
|
|
2
|
+
/**
|
|
3
|
+
* Build an array of ModelInfo from the js-bao model registry.
|
|
4
|
+
* This is a pure function suitable for use inside a Vue `computed`.
|
|
5
|
+
*/
|
|
6
|
+
export declare function buildRegisteredModels(): ModelInfo[];
|
|
7
|
+
//# sourceMappingURL=buildModelRegistry.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"buildModelRegistry.d.ts","sourceRoot":"","sources":["../../../src/dev-tools/document-explorer/buildModelRegistry.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAkB,SAAS,EAAE,MAAM,SAAS,CAAC;AAgBzD;;;GAGG;AACH,wBAAgB,qBAAqB,IAAI,SAAS,EAAE,CA+EnD"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
documentId: string;
|
|
3
|
+
canWrite: boolean;
|
|
4
|
+
}
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
|
8
|
+
//# sourceMappingURL=DocumentAliasesSection.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DocumentAliasesSection.vue.d.ts","sourceRoot":"","sources":["../../../../src/dev-tools/document-explorer/components/DocumentAliasesSection.vue"],"names":[],"mappings":"AA+WA,UAAU,KAAK;IACb,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,OAAO,CAAC;CACnB;AAydD,QAAA,MAAM,YAAY,sRAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import type { DocumentInfoWithRoot, PendingInvitation } from "../types";
|
|
2
|
+
interface Props {
|
|
3
|
+
documents: DocumentInfoWithRoot[];
|
|
4
|
+
selectedDocId: string | null;
|
|
5
|
+
/** ID of the currently selected invitation (used for highlight) */
|
|
6
|
+
selectedInvitationId: string | null;
|
|
7
|
+
documentListLoaded: boolean;
|
|
8
|
+
pendingInvitations: PendingInvitation[];
|
|
9
|
+
/** Whether a bulk accept operation is in progress (disables interaction, shows loading) */
|
|
10
|
+
isAcceptingInvitations?: boolean;
|
|
11
|
+
}
|
|
12
|
+
declare function showDocsSection(): void;
|
|
13
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {
|
|
14
|
+
showDocsSection: typeof showDocsSection;
|
|
15
|
+
isCollapsed: import("vue").Ref<boolean, boolean>;
|
|
16
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
|
+
"select-document": (docId: string) => any;
|
|
18
|
+
"create-document": () => any;
|
|
19
|
+
"bulk-delete": (docIds: string[]) => any;
|
|
20
|
+
"bulk-leave": (docIds: string[]) => any;
|
|
21
|
+
"bulk-delete-mixed": (docIds: string[]) => any;
|
|
22
|
+
"select-invitation": (invitation: PendingInvitation) => any;
|
|
23
|
+
"accept-invitations": (documentIds: string[]) => any;
|
|
24
|
+
"decline-invitations": (documentIds: string[]) => any;
|
|
25
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
26
|
+
"onSelect-document"?: ((docId: string) => any) | undefined;
|
|
27
|
+
"onCreate-document"?: (() => any) | undefined;
|
|
28
|
+
"onBulk-delete"?: ((docIds: string[]) => any) | undefined;
|
|
29
|
+
"onBulk-leave"?: ((docIds: string[]) => any) | undefined;
|
|
30
|
+
"onBulk-delete-mixed"?: ((docIds: string[]) => any) | undefined;
|
|
31
|
+
"onSelect-invitation"?: ((invitation: PendingInvitation) => any) | undefined;
|
|
32
|
+
"onAccept-invitations"?: ((documentIds: string[]) => any) | undefined;
|
|
33
|
+
"onDecline-invitations"?: ((documentIds: string[]) => any) | undefined;
|
|
34
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
35
|
+
declare const _default: typeof __VLS_export;
|
|
36
|
+
export default _default;
|
|
37
|
+
//# sourceMappingURL=DocumentListPanel.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DocumentListPanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/dev-tools/document-explorer/components/DocumentListPanel.vue"],"names":[],"mappings":"AAkeA,OAAO,KAAK,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAIxE,UAAU,KAAK;IACb,SAAS,EAAE,oBAAoB,EAAE,CAAC;IAClC,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,mEAAmE;IACnE,oBAAoB,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC,kBAAkB,EAAE,OAAO,CAAC;IAC5B,kBAAkB,EAAE,iBAAiB,EAAE,CAAC;IACxC,2FAA2F;IAC3F,sBAAsB,CAAC,EAAE,OAAO,CAAC;CAClC;AAyHD,iBAAS,eAAe,SAEvB;AA2oBD,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;kFAIhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import type { DocumentInfoWithRoot } from "../types";
|
|
2
|
+
interface Props {
|
|
3
|
+
/** Full list of documents (used for permission checks on selected items) */
|
|
4
|
+
documents: DocumentInfoWithRoot[];
|
|
5
|
+
/** Filtered subset of documents to display */
|
|
6
|
+
filteredDocuments: DocumentInfoWithRoot[];
|
|
7
|
+
/** Currently selected document ID (for highlight) */
|
|
8
|
+
selectedDocId: string | null;
|
|
9
|
+
/** Whether the documents accordion section is expanded */
|
|
10
|
+
isExpanded: boolean;
|
|
11
|
+
/** Whether the document list has finished loading */
|
|
12
|
+
documentListLoaded: boolean;
|
|
13
|
+
/** Current search query (used for empty-state messaging) */
|
|
14
|
+
searchQuery: string;
|
|
15
|
+
}
|
|
16
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
|
+
"select-document": (docId: string) => any;
|
|
18
|
+
"create-document": () => any;
|
|
19
|
+
"bulk-delete": (docIds: string[]) => any;
|
|
20
|
+
"bulk-leave": (docIds: string[]) => any;
|
|
21
|
+
"bulk-delete-mixed": (docIds: string[]) => any;
|
|
22
|
+
"toggle-section": () => any;
|
|
23
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
24
|
+
"onSelect-document"?: ((docId: string) => any) | undefined;
|
|
25
|
+
"onCreate-document"?: (() => any) | undefined;
|
|
26
|
+
"onBulk-delete"?: ((docIds: string[]) => any) | undefined;
|
|
27
|
+
"onBulk-leave"?: ((docIds: string[]) => any) | undefined;
|
|
28
|
+
"onBulk-delete-mixed"?: ((docIds: string[]) => any) | undefined;
|
|
29
|
+
"onToggle-section"?: (() => any) | undefined;
|
|
30
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
31
|
+
declare const _default: typeof __VLS_export;
|
|
32
|
+
export default _default;
|
|
33
|
+
//# sourceMappingURL=DocumentListSection.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DocumentListSection.vue.d.ts","sourceRoot":"","sources":["../../../../src/dev-tools/document-explorer/components/DocumentListSection.vue"],"names":[],"mappings":"AAuYA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;AAOrD,UAAU,KAAK;IACb,4EAA4E;IAC5E,SAAS,EAAE,oBAAoB,EAAE,CAAC;IAClC,8CAA8C;IAC9C,iBAAiB,EAAE,oBAAoB,EAAE,CAAC;IAC1C,qDAAqD;IACrD,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,0DAA0D;IAC1D,UAAU,EAAE,OAAO,CAAC;IACpB,qDAAqD;IACrD,kBAAkB,EAAE,OAAO,CAAC;IAC5B,4DAA4D;IAC5D,WAAW,EAAE,MAAM,CAAC;CACrB;AAwgBD,QAAA,MAAM,YAAY;;;;;;;;;;;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { DocumentInfoWithRoot, ModelInfo } from "../types";
|
|
2
|
+
interface Props {
|
|
3
|
+
document: DocumentInfoWithRoot;
|
|
4
|
+
models: ModelInfo[];
|
|
5
|
+
recordCounts: Record<string, number>;
|
|
6
|
+
}
|
|
7
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
|
+
"documents-changed": () => any;
|
|
9
|
+
"navigate-to-model": (modelName: string) => any;
|
|
10
|
+
"rename-document": (docId: string, title: string) => any;
|
|
11
|
+
"delete-document": (docId: string) => any;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
13
|
+
"onDocuments-changed"?: (() => any) | undefined;
|
|
14
|
+
"onNavigate-to-model"?: ((modelName: string) => any) | undefined;
|
|
15
|
+
"onRename-document"?: ((docId: string, title: string) => any) | undefined;
|
|
16
|
+
"onDelete-document"?: ((docId: string) => any) | undefined;
|
|
17
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
declare const _default: typeof __VLS_export;
|
|
19
|
+
export default _default;
|
|
20
|
+
//# sourceMappingURL=DocumentPropertiesPanel.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DocumentPropertiesPanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/dev-tools/document-explorer/components/DocumentPropertiesPanel.vue"],"names":[],"mappings":"AA4ZA,OAAO,KAAK,EAAE,oBAAoB,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAMhE,UAAU,KAAK;IACb,QAAQ,EAAE,oBAAoB,CAAC;IAC/B,MAAM,EAAE,SAAS,EAAE,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CACtC;AAgsBD,QAAA,MAAM,YAAY;;;;;;;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
documentId: string;
|
|
3
|
+
canWrite: boolean;
|
|
4
|
+
}
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
|
8
|
+
//# sourceMappingURL=DocumentSharingSection.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DocumentSharingSection.vue.d.ts","sourceRoot":"","sources":["../../../../src/dev-tools/document-explorer/components/DocumentSharingSection.vue"],"names":[],"mappings":"AA4uBA,UAAU,KAAK;IACb,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,OAAO,CAAC;CACnB;AAojCD,QAAA,MAAM,YAAY,sRAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -34,15 +34,15 @@ interface Props {
|
|
|
34
34
|
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
35
35
|
select: (docId: string) => any;
|
|
36
36
|
delete: (docId: string) => any;
|
|
37
|
+
"rename-document": (docId: string, title: string) => any;
|
|
37
38
|
"mass-delete": () => any;
|
|
38
39
|
"add-document": (title: string) => any;
|
|
39
|
-
"rename-document": (docId: string, title: string) => any;
|
|
40
40
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
41
41
|
onSelect?: ((docId: string) => any) | undefined;
|
|
42
42
|
onDelete?: ((docId: string) => any) | undefined;
|
|
43
|
+
"onRename-document"?: ((docId: string, title: string) => any) | undefined;
|
|
43
44
|
"onMass-delete"?: (() => any) | undefined;
|
|
44
45
|
"onAdd-document"?: ((title: string) => any) | undefined;
|
|
45
|
-
"onRename-document"?: ((docId: string, title: string) => any) | undefined;
|
|
46
46
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
47
47
|
declare const _default: typeof __VLS_export;
|
|
48
48
|
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DocumentSidebar.vue.d.ts","sourceRoot":"","sources":["../../../../src/dev-tools/document-explorer/components/DocumentSidebar.vue"],"names":[],"mappings":"AA2iBA,KAAK,kBAAkB,GAAG,OAAO,GAAG,YAAY,GAAG,QAAQ,GAAG,OAAO,CAAC;AAEtE,UAAU,YAAY;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,kBAAkB,CAAC;IAChC,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,UAAU,KAAK;IACb;;OAEG;IACH,SAAS,EAAE,YAAY,EAAE,CAAC;IAC1B;;OAEG;IACH,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;OAEG;IACH,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;OAEG;IACH,kBAAkB,EAAE,OAAO,CAAC;IAC5B;;OAEG;IACH,uBAAuB,EAAE,MAAM,CAAC;IAChC;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAo0CD,QAAA,MAAM,YAAY;;;;;;;;;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
documentId: string;
|
|
3
|
+
/** Tags from the parent document prop (server source of truth) */
|
|
4
|
+
baseTags: string[];
|
|
5
|
+
canWrite: boolean;
|
|
6
|
+
/** Whether this document is the root document */
|
|
7
|
+
isRoot?: boolean;
|
|
8
|
+
}
|
|
9
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
+
"documents-changed": () => any;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
12
|
+
"onDocuments-changed"?: (() => any) | undefined;
|
|
13
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
15
|
+
export default _default;
|
|
16
|
+
//# sourceMappingURL=DocumentTagsSection.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DocumentTagsSection.vue.d.ts","sourceRoot":"","sources":["../../../../src/dev-tools/document-explorer/components/DocumentTagsSection.vue"],"names":[],"mappings":"AAmRA,UAAU,KAAK;IACb,UAAU,EAAE,MAAM,CAAC;IACnB,kEAAkE;IAClE,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB,QAAQ,EAAE,OAAO,CAAC;IAClB,iDAAiD;IACjD,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAiUD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { FilterMode, ModelFilter, ModelInfo, PageData } from "../types";
|
|
2
|
+
interface Props {
|
|
3
|
+
modelInfo: ModelInfo | null;
|
|
4
|
+
filters: ModelFilter[];
|
|
5
|
+
loadedData: PageData;
|
|
6
|
+
showHiddenFields: boolean;
|
|
7
|
+
}
|
|
8
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
+
"add-filter": (filter: {
|
|
10
|
+
field: string;
|
|
11
|
+
mode: FilterMode;
|
|
12
|
+
value: string;
|
|
13
|
+
}) => any;
|
|
14
|
+
"remove-filter": (filterId: string) => any;
|
|
15
|
+
"update-filter": (filter: ModelFilter) => any;
|
|
16
|
+
"clear-all": () => any;
|
|
17
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
18
|
+
"onAdd-filter"?: ((filter: {
|
|
19
|
+
field: string;
|
|
20
|
+
mode: FilterMode;
|
|
21
|
+
value: string;
|
|
22
|
+
}) => any) | undefined;
|
|
23
|
+
"onRemove-filter"?: ((filterId: string) => any) | undefined;
|
|
24
|
+
"onUpdate-filter"?: ((filter: ModelFilter) => any) | undefined;
|
|
25
|
+
"onClear-all"?: (() => any) | undefined;
|
|
26
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
27
|
+
declare const _default: typeof __VLS_export;
|
|
28
|
+
export default _default;
|
|
29
|
+
//# sourceMappingURL=FilterBar.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FilterBar.vue.d.ts","sourceRoot":"","sources":["../../../../src/dev-tools/document-explorer/components/FilterBar.vue"],"names":[],"mappings":"AAkWA,OAAO,KAAK,EAAE,UAAU,EAAE,WAAW,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AAU7E,UAAU,KAAK;IACb,SAAS,EAAE,SAAS,GAAG,IAAI,CAAC;IAC5B,OAAO,EAAE,WAAW,EAAE,CAAC;IACvB,UAAU,EAAE,QAAQ,CAAC;IACrB,gBAAgB,EAAE,OAAO,CAAC;CAC3B;AAgkBD,QAAA,MAAM,YAAY;;eA1jBgB,MAAM;cAAQ,UAAU;eAAS,MAAM;;;;;;;eAAvC,MAAM;cAAQ,UAAU;eAAS,MAAM;;;;;kFA6jBvE,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { PendingInvitation } from "../types";
|
|
2
|
+
interface Props {
|
|
3
|
+
invitation: PendingInvitation;
|
|
4
|
+
}
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
|
+
"accept-invitation": (documentId: string) => any;
|
|
7
|
+
"decline-invitation": (documentId: string) => any;
|
|
8
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
9
|
+
"onAccept-invitation"?: ((documentId: string) => any) | undefined;
|
|
10
|
+
"onDecline-invitation"?: ((documentId: string) => any) | undefined;
|
|
11
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
declare const _default: typeof __VLS_export;
|
|
13
|
+
export default _default;
|
|
14
|
+
//# sourceMappingURL=InvitationPropertiesPanel.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InvitationPropertiesPanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/dev-tools/document-explorer/components/InvitationPropertiesPanel.vue"],"names":[],"mappings":"AA6RA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAGlD,UAAU,KAAK;IACb,UAAU,EAAE,iBAAiB,CAAC;CAC/B;AAgdD,QAAA,MAAM,YAAY;;;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|