primitive-app 2.1.5 → 2.1.7
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 +2 -2
- package/dist/components/ui/button/index.d.ts +1 -1
- package/dist/components/ui/native-select/NativeSelectOptGroup.vue.d.ts +48 -48
- package/dist/components/ui/native-select/NativeSelectOption.vue.d.ts +50 -50
- 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/components/DocumentSharingSection.vue.d.ts.map +1 -1
- package/dist/dev-tools/document-explorer/components/RecordTable.vue.d.ts.map +1 -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/lib.d.ts +3 -1
- package/dist/dev-tools/test-harness/lib.d.ts.map +1 -1
- package/dist/dev-tools/vite-plugin/DevToolsFloatingButton.vue.d.ts +0 -1
- 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 +0 -1
- package/dist/dev-tools/vite-plugin/DevToolsRoot.vue.d.ts.map +1 -1
- package/dist/dev-tools/vite-plugin/index.cjs +9 -10
- package/dist/dev-tools/vite-plugin/index.js +18 -20
- package/dist/dev-tools/vite-plugin/plugin.d.ts +0 -6
- package/dist/dev-tools/vite-plugin/plugin.d.ts.map +1 -1
- package/dist/index.cjs +47 -5
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +11603 -11782
- package/dist/primitive-app.css +1 -1
- package/dist/services/JsBaoClientService.d.ts +77 -0
- package/dist/services/JsBaoClientService.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -40,12 +40,12 @@ interface Props {
|
|
|
40
40
|
isDeleting?: boolean;
|
|
41
41
|
}
|
|
42
42
|
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
43
|
-
confirm: () => any;
|
|
44
43
|
cancel: () => any;
|
|
44
|
+
confirm: () => any;
|
|
45
45
|
"update:isOpen": (value: boolean) => any;
|
|
46
46
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
47
|
-
onConfirm?: (() => any) | undefined;
|
|
48
47
|
onCancel?: (() => any) | undefined;
|
|
48
|
+
onConfirm?: (() => any) | undefined;
|
|
49
49
|
"onUpdate:isOpen"?: ((value: boolean) => any) | undefined;
|
|
50
50
|
}>, {
|
|
51
51
|
title: string;
|
|
@@ -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
|
|
@@ -4,24 +4,24 @@ type __VLS_Slots = {} & {
|
|
|
4
4
|
};
|
|
5
5
|
declare const __VLS_base: import("vue").DefineComponent<{
|
|
6
6
|
class?: any;
|
|
7
|
-
disabled?: (boolean | "
|
|
7
|
+
disabled?: (boolean | "false" | "true") | undefined;
|
|
8
8
|
label?: string | undefined | undefined;
|
|
9
9
|
"data-slot"?: string | undefined;
|
|
10
10
|
innerHTML?: string | undefined | undefined;
|
|
11
11
|
style?: import("vue").StyleValue;
|
|
12
12
|
accesskey?: string | undefined | undefined;
|
|
13
|
-
contenteditable?: "inherit" | (boolean | "
|
|
13
|
+
contenteditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
14
14
|
contextmenu?: string | undefined | undefined;
|
|
15
15
|
dir?: string | undefined | undefined;
|
|
16
|
-
draggable?: (boolean | "
|
|
16
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
|
17
17
|
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
18
18
|
enterKeyHint?: "search" | "done" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
19
|
-
hidden?: "" | "hidden" | (boolean | "
|
|
19
|
+
hidden?: "" | "hidden" | (boolean | "false" | "true") | "until-found" | undefined;
|
|
20
20
|
id?: string | undefined | undefined;
|
|
21
|
-
inert?: (boolean | "
|
|
21
|
+
inert?: (boolean | "false" | "true") | undefined;
|
|
22
22
|
lang?: string | undefined | undefined;
|
|
23
23
|
placeholder?: string | undefined | undefined;
|
|
24
|
-
spellcheck?: (boolean | "
|
|
24
|
+
spellcheck?: (boolean | "false" | "true") | undefined;
|
|
25
25
|
tabindex?: (string | number) | undefined;
|
|
26
26
|
title?: string | undefined | undefined;
|
|
27
27
|
translate?: "yes" | "no" | undefined | undefined;
|
|
@@ -40,7 +40,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
40
40
|
autosave?: string | undefined | undefined;
|
|
41
41
|
color?: string | undefined | undefined;
|
|
42
42
|
itemprop?: string | undefined | undefined;
|
|
43
|
-
itemscope?: (boolean | "
|
|
43
|
+
itemscope?: (boolean | "false" | "true") | undefined;
|
|
44
44
|
itemtype?: string | undefined | undefined;
|
|
45
45
|
itemid?: string | undefined | undefined;
|
|
46
46
|
itemref?: string | undefined | undefined;
|
|
@@ -52,47 +52,47 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
52
52
|
exportparts?: string | undefined;
|
|
53
53
|
part?: string | undefined;
|
|
54
54
|
'aria-activedescendant'?: string | undefined | undefined;
|
|
55
|
-
'aria-atomic'?: (boolean | "
|
|
55
|
+
'aria-atomic'?: (boolean | "false" | "true") | undefined;
|
|
56
56
|
'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
57
|
-
'aria-busy'?: (boolean | "
|
|
58
|
-
'aria-checked'?: (boolean | "
|
|
57
|
+
'aria-busy'?: (boolean | "false" | "true") | undefined;
|
|
58
|
+
'aria-checked'?: (boolean | "false" | "true") | "mixed" | undefined;
|
|
59
59
|
'aria-colcount'?: (string | number) | undefined;
|
|
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" |
|
|
63
|
+
'aria-current'?: "time" | (boolean | "false" | "true") | "date" | "page" | "step" | "location" | undefined;
|
|
64
64
|
'aria-describedby'?: string | undefined | undefined;
|
|
65
65
|
'aria-details'?: string | undefined | undefined;
|
|
66
|
-
'aria-disabled'?: (boolean | "
|
|
66
|
+
'aria-disabled'?: (boolean | "false" | "true") | undefined;
|
|
67
67
|
'aria-dropeffect'?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
68
68
|
'aria-errormessage'?: string | undefined | undefined;
|
|
69
|
-
'aria-expanded'?: (boolean | "
|
|
69
|
+
'aria-expanded'?: (boolean | "false" | "true") | undefined;
|
|
70
70
|
'aria-flowto'?: string | undefined | undefined;
|
|
71
|
-
'aria-grabbed'?: (boolean | "
|
|
72
|
-
'aria-haspopup'?: "dialog" | "menu" | (boolean | "
|
|
73
|
-
'aria-hidden'?: (boolean | "
|
|
74
|
-
'aria-invalid'?: (boolean | "
|
|
71
|
+
'aria-grabbed'?: (boolean | "false" | "true") | undefined;
|
|
72
|
+
'aria-haspopup'?: "dialog" | "menu" | (boolean | "false" | "true") | "listbox" | "tree" | "grid" | undefined;
|
|
73
|
+
'aria-hidden'?: (boolean | "false" | "true") | undefined;
|
|
74
|
+
'aria-invalid'?: (boolean | "false" | "true") | "grammar" | "spelling" | undefined;
|
|
75
75
|
'aria-keyshortcuts'?: string | undefined | undefined;
|
|
76
76
|
'aria-label'?: string | undefined | undefined;
|
|
77
77
|
'aria-labelledby'?: string | undefined | undefined;
|
|
78
78
|
'aria-level'?: (string | number) | undefined;
|
|
79
79
|
'aria-live'?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
80
|
-
'aria-modal'?: (boolean | "
|
|
81
|
-
'aria-multiline'?: (boolean | "
|
|
82
|
-
'aria-multiselectable'?: (boolean | "
|
|
80
|
+
'aria-modal'?: (boolean | "false" | "true") | undefined;
|
|
81
|
+
'aria-multiline'?: (boolean | "false" | "true") | undefined;
|
|
82
|
+
'aria-multiselectable'?: (boolean | "false" | "true") | undefined;
|
|
83
83
|
'aria-orientation'?: "horizontal" | "vertical" | undefined | undefined;
|
|
84
84
|
'aria-owns'?: string | undefined | undefined;
|
|
85
85
|
'aria-placeholder'?: string | undefined | undefined;
|
|
86
86
|
'aria-posinset'?: (string | number) | undefined;
|
|
87
|
-
'aria-pressed'?: (boolean | "
|
|
88
|
-
'aria-readonly'?: (boolean | "
|
|
87
|
+
'aria-pressed'?: (boolean | "false" | "true") | "mixed" | undefined;
|
|
88
|
+
'aria-readonly'?: (boolean | "false" | "true") | undefined;
|
|
89
89
|
'aria-relevant'?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
90
|
-
'aria-required'?: (boolean | "
|
|
90
|
+
'aria-required'?: (boolean | "false" | "true") | undefined;
|
|
91
91
|
'aria-roledescription'?: string | undefined | undefined;
|
|
92
92
|
'aria-rowcount'?: (string | number) | undefined;
|
|
93
93
|
'aria-rowindex'?: (string | number) | undefined;
|
|
94
94
|
'aria-rowspan'?: (string | number) | undefined;
|
|
95
|
-
'aria-selected'?: (boolean | "
|
|
95
|
+
'aria-selected'?: (boolean | "false" | "true") | undefined;
|
|
96
96
|
'aria-setsize'?: (string | number) | undefined;
|
|
97
97
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
98
98
|
'aria-valuemax'?: (string | number) | undefined;
|
|
@@ -199,24 +199,24 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
199
199
|
ref_key?: string | undefined | undefined;
|
|
200
200
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
201
201
|
class?: any;
|
|
202
|
-
disabled?: (boolean | "
|
|
202
|
+
disabled?: (boolean | "false" | "true") | undefined;
|
|
203
203
|
label?: string | undefined | undefined;
|
|
204
204
|
"data-slot"?: string | undefined;
|
|
205
205
|
innerHTML?: string | undefined | undefined;
|
|
206
206
|
style?: import("vue").StyleValue;
|
|
207
207
|
accesskey?: string | undefined | undefined;
|
|
208
|
-
contenteditable?: "inherit" | (boolean | "
|
|
208
|
+
contenteditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
209
209
|
contextmenu?: string | undefined | undefined;
|
|
210
210
|
dir?: string | undefined | undefined;
|
|
211
|
-
draggable?: (boolean | "
|
|
211
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
|
212
212
|
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
213
213
|
enterKeyHint?: "search" | "done" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
214
|
-
hidden?: "" | "hidden" | (boolean | "
|
|
214
|
+
hidden?: "" | "hidden" | (boolean | "false" | "true") | "until-found" | undefined;
|
|
215
215
|
id?: string | undefined | undefined;
|
|
216
|
-
inert?: (boolean | "
|
|
216
|
+
inert?: (boolean | "false" | "true") | undefined;
|
|
217
217
|
lang?: string | undefined | undefined;
|
|
218
218
|
placeholder?: string | undefined | undefined;
|
|
219
|
-
spellcheck?: (boolean | "
|
|
219
|
+
spellcheck?: (boolean | "false" | "true") | undefined;
|
|
220
220
|
tabindex?: (string | number) | undefined;
|
|
221
221
|
title?: string | undefined | undefined;
|
|
222
222
|
translate?: "yes" | "no" | undefined | undefined;
|
|
@@ -235,7 +235,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
235
235
|
autosave?: string | undefined | undefined;
|
|
236
236
|
color?: string | undefined | undefined;
|
|
237
237
|
itemprop?: string | undefined | undefined;
|
|
238
|
-
itemscope?: (boolean | "
|
|
238
|
+
itemscope?: (boolean | "false" | "true") | undefined;
|
|
239
239
|
itemtype?: string | undefined | undefined;
|
|
240
240
|
itemid?: string | undefined | undefined;
|
|
241
241
|
itemref?: string | undefined | undefined;
|
|
@@ -247,47 +247,47 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
247
247
|
exportparts?: string | undefined;
|
|
248
248
|
part?: string | undefined;
|
|
249
249
|
'aria-activedescendant'?: string | undefined | undefined;
|
|
250
|
-
'aria-atomic'?: (boolean | "
|
|
250
|
+
'aria-atomic'?: (boolean | "false" | "true") | undefined;
|
|
251
251
|
'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
252
|
-
'aria-busy'?: (boolean | "
|
|
253
|
-
'aria-checked'?: (boolean | "
|
|
252
|
+
'aria-busy'?: (boolean | "false" | "true") | undefined;
|
|
253
|
+
'aria-checked'?: (boolean | "false" | "true") | "mixed" | undefined;
|
|
254
254
|
'aria-colcount'?: (string | number) | undefined;
|
|
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" |
|
|
258
|
+
'aria-current'?: "time" | (boolean | "false" | "true") | "date" | "page" | "step" | "location" | undefined;
|
|
259
259
|
'aria-describedby'?: string | undefined | undefined;
|
|
260
260
|
'aria-details'?: string | undefined | undefined;
|
|
261
|
-
'aria-disabled'?: (boolean | "
|
|
261
|
+
'aria-disabled'?: (boolean | "false" | "true") | undefined;
|
|
262
262
|
'aria-dropeffect'?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
263
263
|
'aria-errormessage'?: string | undefined | undefined;
|
|
264
|
-
'aria-expanded'?: (boolean | "
|
|
264
|
+
'aria-expanded'?: (boolean | "false" | "true") | undefined;
|
|
265
265
|
'aria-flowto'?: string | undefined | undefined;
|
|
266
|
-
'aria-grabbed'?: (boolean | "
|
|
267
|
-
'aria-haspopup'?: "dialog" | "menu" | (boolean | "
|
|
268
|
-
'aria-hidden'?: (boolean | "
|
|
269
|
-
'aria-invalid'?: (boolean | "
|
|
266
|
+
'aria-grabbed'?: (boolean | "false" | "true") | undefined;
|
|
267
|
+
'aria-haspopup'?: "dialog" | "menu" | (boolean | "false" | "true") | "listbox" | "tree" | "grid" | undefined;
|
|
268
|
+
'aria-hidden'?: (boolean | "false" | "true") | undefined;
|
|
269
|
+
'aria-invalid'?: (boolean | "false" | "true") | "grammar" | "spelling" | undefined;
|
|
270
270
|
'aria-keyshortcuts'?: string | undefined | undefined;
|
|
271
271
|
'aria-label'?: string | undefined | undefined;
|
|
272
272
|
'aria-labelledby'?: string | undefined | undefined;
|
|
273
273
|
'aria-level'?: (string | number) | undefined;
|
|
274
274
|
'aria-live'?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
275
|
-
'aria-modal'?: (boolean | "
|
|
276
|
-
'aria-multiline'?: (boolean | "
|
|
277
|
-
'aria-multiselectable'?: (boolean | "
|
|
275
|
+
'aria-modal'?: (boolean | "false" | "true") | undefined;
|
|
276
|
+
'aria-multiline'?: (boolean | "false" | "true") | undefined;
|
|
277
|
+
'aria-multiselectable'?: (boolean | "false" | "true") | undefined;
|
|
278
278
|
'aria-orientation'?: "horizontal" | "vertical" | undefined | undefined;
|
|
279
279
|
'aria-owns'?: string | undefined | undefined;
|
|
280
280
|
'aria-placeholder'?: string | undefined | undefined;
|
|
281
281
|
'aria-posinset'?: (string | number) | undefined;
|
|
282
|
-
'aria-pressed'?: (boolean | "
|
|
283
|
-
'aria-readonly'?: (boolean | "
|
|
282
|
+
'aria-pressed'?: (boolean | "false" | "true") | "mixed" | undefined;
|
|
283
|
+
'aria-readonly'?: (boolean | "false" | "true") | undefined;
|
|
284
284
|
'aria-relevant'?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
285
|
-
'aria-required'?: (boolean | "
|
|
285
|
+
'aria-required'?: (boolean | "false" | "true") | undefined;
|
|
286
286
|
'aria-roledescription'?: string | undefined | undefined;
|
|
287
287
|
'aria-rowcount'?: (string | number) | undefined;
|
|
288
288
|
'aria-rowindex'?: (string | number) | undefined;
|
|
289
289
|
'aria-rowspan'?: (string | number) | undefined;
|
|
290
|
-
'aria-selected'?: (boolean | "
|
|
290
|
+
'aria-selected'?: (boolean | "false" | "true") | undefined;
|
|
291
291
|
'aria-setsize'?: (string | number) | undefined;
|
|
292
292
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
293
293
|
'aria-valuemax'?: (string | number) | undefined;
|
|
@@ -4,26 +4,26 @@ type __VLS_Slots = {} & {
|
|
|
4
4
|
};
|
|
5
5
|
declare const __VLS_base: import("vue").DefineComponent<{
|
|
6
6
|
class?: any;
|
|
7
|
-
disabled?: (boolean | "
|
|
7
|
+
disabled?: (boolean | "false" | "true") | undefined;
|
|
8
8
|
label?: string | undefined | undefined;
|
|
9
|
-
selected?: (boolean | "
|
|
9
|
+
selected?: (boolean | "false" | "true") | undefined;
|
|
10
10
|
value?: any;
|
|
11
11
|
"data-slot"?: string | undefined;
|
|
12
12
|
innerHTML?: string | undefined | undefined;
|
|
13
13
|
style?: import("vue").StyleValue;
|
|
14
14
|
accesskey?: string | undefined | undefined;
|
|
15
|
-
contenteditable?: "inherit" | (boolean | "
|
|
15
|
+
contenteditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
16
16
|
contextmenu?: string | undefined | undefined;
|
|
17
17
|
dir?: string | undefined | undefined;
|
|
18
|
-
draggable?: (boolean | "
|
|
18
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
|
19
19
|
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
20
20
|
enterKeyHint?: "search" | "done" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
21
|
-
hidden?: "" | "hidden" | (boolean | "
|
|
21
|
+
hidden?: "" | "hidden" | (boolean | "false" | "true") | "until-found" | undefined;
|
|
22
22
|
id?: string | undefined | undefined;
|
|
23
|
-
inert?: (boolean | "
|
|
23
|
+
inert?: (boolean | "false" | "true") | undefined;
|
|
24
24
|
lang?: string | undefined | undefined;
|
|
25
25
|
placeholder?: string | undefined | undefined;
|
|
26
|
-
spellcheck?: (boolean | "
|
|
26
|
+
spellcheck?: (boolean | "false" | "true") | undefined;
|
|
27
27
|
tabindex?: (string | number) | undefined;
|
|
28
28
|
title?: string | undefined | undefined;
|
|
29
29
|
translate?: "yes" | "no" | undefined | undefined;
|
|
@@ -42,7 +42,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
42
42
|
autosave?: string | undefined | undefined;
|
|
43
43
|
color?: string | undefined | undefined;
|
|
44
44
|
itemprop?: string | undefined | undefined;
|
|
45
|
-
itemscope?: (boolean | "
|
|
45
|
+
itemscope?: (boolean | "false" | "true") | undefined;
|
|
46
46
|
itemtype?: string | undefined | undefined;
|
|
47
47
|
itemid?: string | undefined | undefined;
|
|
48
48
|
itemref?: string | undefined | undefined;
|
|
@@ -54,47 +54,47 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
54
54
|
exportparts?: string | undefined;
|
|
55
55
|
part?: string | undefined;
|
|
56
56
|
'aria-activedescendant'?: string | undefined | undefined;
|
|
57
|
-
'aria-atomic'?: (boolean | "
|
|
57
|
+
'aria-atomic'?: (boolean | "false" | "true") | undefined;
|
|
58
58
|
'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
59
|
-
'aria-busy'?: (boolean | "
|
|
60
|
-
'aria-checked'?: (boolean | "
|
|
59
|
+
'aria-busy'?: (boolean | "false" | "true") | undefined;
|
|
60
|
+
'aria-checked'?: (boolean | "false" | "true") | "mixed" | undefined;
|
|
61
61
|
'aria-colcount'?: (string | number) | undefined;
|
|
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" |
|
|
65
|
+
'aria-current'?: "time" | (boolean | "false" | "true") | "date" | "page" | "step" | "location" | undefined;
|
|
66
66
|
'aria-describedby'?: string | undefined | undefined;
|
|
67
67
|
'aria-details'?: string | undefined | undefined;
|
|
68
|
-
'aria-disabled'?: (boolean | "
|
|
68
|
+
'aria-disabled'?: (boolean | "false" | "true") | undefined;
|
|
69
69
|
'aria-dropeffect'?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
70
70
|
'aria-errormessage'?: string | undefined | undefined;
|
|
71
|
-
'aria-expanded'?: (boolean | "
|
|
71
|
+
'aria-expanded'?: (boolean | "false" | "true") | undefined;
|
|
72
72
|
'aria-flowto'?: string | undefined | undefined;
|
|
73
|
-
'aria-grabbed'?: (boolean | "
|
|
74
|
-
'aria-haspopup'?: "dialog" | "menu" | (boolean | "
|
|
75
|
-
'aria-hidden'?: (boolean | "
|
|
76
|
-
'aria-invalid'?: (boolean | "
|
|
73
|
+
'aria-grabbed'?: (boolean | "false" | "true") | undefined;
|
|
74
|
+
'aria-haspopup'?: "dialog" | "menu" | (boolean | "false" | "true") | "listbox" | "tree" | "grid" | undefined;
|
|
75
|
+
'aria-hidden'?: (boolean | "false" | "true") | undefined;
|
|
76
|
+
'aria-invalid'?: (boolean | "false" | "true") | "grammar" | "spelling" | undefined;
|
|
77
77
|
'aria-keyshortcuts'?: string | undefined | undefined;
|
|
78
78
|
'aria-label'?: string | undefined | undefined;
|
|
79
79
|
'aria-labelledby'?: string | undefined | undefined;
|
|
80
80
|
'aria-level'?: (string | number) | undefined;
|
|
81
81
|
'aria-live'?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
82
|
-
'aria-modal'?: (boolean | "
|
|
83
|
-
'aria-multiline'?: (boolean | "
|
|
84
|
-
'aria-multiselectable'?: (boolean | "
|
|
82
|
+
'aria-modal'?: (boolean | "false" | "true") | undefined;
|
|
83
|
+
'aria-multiline'?: (boolean | "false" | "true") | undefined;
|
|
84
|
+
'aria-multiselectable'?: (boolean | "false" | "true") | undefined;
|
|
85
85
|
'aria-orientation'?: "horizontal" | "vertical" | undefined | undefined;
|
|
86
86
|
'aria-owns'?: string | undefined | undefined;
|
|
87
87
|
'aria-placeholder'?: string | undefined | undefined;
|
|
88
88
|
'aria-posinset'?: (string | number) | undefined;
|
|
89
|
-
'aria-pressed'?: (boolean | "
|
|
90
|
-
'aria-readonly'?: (boolean | "
|
|
89
|
+
'aria-pressed'?: (boolean | "false" | "true") | "mixed" | undefined;
|
|
90
|
+
'aria-readonly'?: (boolean | "false" | "true") | undefined;
|
|
91
91
|
'aria-relevant'?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
92
|
-
'aria-required'?: (boolean | "
|
|
92
|
+
'aria-required'?: (boolean | "false" | "true") | undefined;
|
|
93
93
|
'aria-roledescription'?: string | undefined | undefined;
|
|
94
94
|
'aria-rowcount'?: (string | number) | undefined;
|
|
95
95
|
'aria-rowindex'?: (string | number) | undefined;
|
|
96
96
|
'aria-rowspan'?: (string | number) | undefined;
|
|
97
|
-
'aria-selected'?: (boolean | "
|
|
97
|
+
'aria-selected'?: (boolean | "false" | "true") | undefined;
|
|
98
98
|
'aria-setsize'?: (string | number) | undefined;
|
|
99
99
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
100
100
|
'aria-valuemax'?: (string | number) | undefined;
|
|
@@ -201,26 +201,26 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
201
201
|
ref_key?: string | undefined | undefined;
|
|
202
202
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
203
203
|
class?: any;
|
|
204
|
-
disabled?: (boolean | "
|
|
204
|
+
disabled?: (boolean | "false" | "true") | undefined;
|
|
205
205
|
label?: string | undefined | undefined;
|
|
206
|
-
selected?: (boolean | "
|
|
206
|
+
selected?: (boolean | "false" | "true") | undefined;
|
|
207
207
|
value?: any;
|
|
208
208
|
"data-slot"?: string | undefined;
|
|
209
209
|
innerHTML?: string | undefined | undefined;
|
|
210
210
|
style?: import("vue").StyleValue;
|
|
211
211
|
accesskey?: string | undefined | undefined;
|
|
212
|
-
contenteditable?: "inherit" | (boolean | "
|
|
212
|
+
contenteditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
213
213
|
contextmenu?: string | undefined | undefined;
|
|
214
214
|
dir?: string | undefined | undefined;
|
|
215
|
-
draggable?: (boolean | "
|
|
215
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
|
216
216
|
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
217
217
|
enterKeyHint?: "search" | "done" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
218
|
-
hidden?: "" | "hidden" | (boolean | "
|
|
218
|
+
hidden?: "" | "hidden" | (boolean | "false" | "true") | "until-found" | undefined;
|
|
219
219
|
id?: string | undefined | undefined;
|
|
220
|
-
inert?: (boolean | "
|
|
220
|
+
inert?: (boolean | "false" | "true") | undefined;
|
|
221
221
|
lang?: string | undefined | undefined;
|
|
222
222
|
placeholder?: string | undefined | undefined;
|
|
223
|
-
spellcheck?: (boolean | "
|
|
223
|
+
spellcheck?: (boolean | "false" | "true") | undefined;
|
|
224
224
|
tabindex?: (string | number) | undefined;
|
|
225
225
|
title?: string | undefined | undefined;
|
|
226
226
|
translate?: "yes" | "no" | undefined | undefined;
|
|
@@ -239,7 +239,7 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
239
239
|
autosave?: string | undefined | undefined;
|
|
240
240
|
color?: string | undefined | undefined;
|
|
241
241
|
itemprop?: string | undefined | undefined;
|
|
242
|
-
itemscope?: (boolean | "
|
|
242
|
+
itemscope?: (boolean | "false" | "true") | undefined;
|
|
243
243
|
itemtype?: string | undefined | undefined;
|
|
244
244
|
itemid?: string | undefined | undefined;
|
|
245
245
|
itemref?: string | undefined | undefined;
|
|
@@ -251,47 +251,47 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
251
251
|
exportparts?: string | undefined;
|
|
252
252
|
part?: string | undefined;
|
|
253
253
|
'aria-activedescendant'?: string | undefined | undefined;
|
|
254
|
-
'aria-atomic'?: (boolean | "
|
|
254
|
+
'aria-atomic'?: (boolean | "false" | "true") | undefined;
|
|
255
255
|
'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
256
|
-
'aria-busy'?: (boolean | "
|
|
257
|
-
'aria-checked'?: (boolean | "
|
|
256
|
+
'aria-busy'?: (boolean | "false" | "true") | undefined;
|
|
257
|
+
'aria-checked'?: (boolean | "false" | "true") | "mixed" | undefined;
|
|
258
258
|
'aria-colcount'?: (string | number) | undefined;
|
|
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" |
|
|
262
|
+
'aria-current'?: "time" | (boolean | "false" | "true") | "date" | "page" | "step" | "location" | undefined;
|
|
263
263
|
'aria-describedby'?: string | undefined | undefined;
|
|
264
264
|
'aria-details'?: string | undefined | undefined;
|
|
265
|
-
'aria-disabled'?: (boolean | "
|
|
265
|
+
'aria-disabled'?: (boolean | "false" | "true") | undefined;
|
|
266
266
|
'aria-dropeffect'?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
267
267
|
'aria-errormessage'?: string | undefined | undefined;
|
|
268
|
-
'aria-expanded'?: (boolean | "
|
|
268
|
+
'aria-expanded'?: (boolean | "false" | "true") | undefined;
|
|
269
269
|
'aria-flowto'?: string | undefined | undefined;
|
|
270
|
-
'aria-grabbed'?: (boolean | "
|
|
271
|
-
'aria-haspopup'?: "dialog" | "menu" | (boolean | "
|
|
272
|
-
'aria-hidden'?: (boolean | "
|
|
273
|
-
'aria-invalid'?: (boolean | "
|
|
270
|
+
'aria-grabbed'?: (boolean | "false" | "true") | undefined;
|
|
271
|
+
'aria-haspopup'?: "dialog" | "menu" | (boolean | "false" | "true") | "listbox" | "tree" | "grid" | undefined;
|
|
272
|
+
'aria-hidden'?: (boolean | "false" | "true") | undefined;
|
|
273
|
+
'aria-invalid'?: (boolean | "false" | "true") | "grammar" | "spelling" | undefined;
|
|
274
274
|
'aria-keyshortcuts'?: string | undefined | undefined;
|
|
275
275
|
'aria-label'?: string | undefined | undefined;
|
|
276
276
|
'aria-labelledby'?: string | undefined | undefined;
|
|
277
277
|
'aria-level'?: (string | number) | undefined;
|
|
278
278
|
'aria-live'?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
279
|
-
'aria-modal'?: (boolean | "
|
|
280
|
-
'aria-multiline'?: (boolean | "
|
|
281
|
-
'aria-multiselectable'?: (boolean | "
|
|
279
|
+
'aria-modal'?: (boolean | "false" | "true") | undefined;
|
|
280
|
+
'aria-multiline'?: (boolean | "false" | "true") | undefined;
|
|
281
|
+
'aria-multiselectable'?: (boolean | "false" | "true") | undefined;
|
|
282
282
|
'aria-orientation'?: "horizontal" | "vertical" | undefined | undefined;
|
|
283
283
|
'aria-owns'?: string | undefined | undefined;
|
|
284
284
|
'aria-placeholder'?: string | undefined | undefined;
|
|
285
285
|
'aria-posinset'?: (string | number) | undefined;
|
|
286
|
-
'aria-pressed'?: (boolean | "
|
|
287
|
-
'aria-readonly'?: (boolean | "
|
|
286
|
+
'aria-pressed'?: (boolean | "false" | "true") | "mixed" | undefined;
|
|
287
|
+
'aria-readonly'?: (boolean | "false" | "true") | undefined;
|
|
288
288
|
'aria-relevant'?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
289
|
-
'aria-required'?: (boolean | "
|
|
289
|
+
'aria-required'?: (boolean | "false" | "true") | undefined;
|
|
290
290
|
'aria-roledescription'?: string | undefined | undefined;
|
|
291
291
|
'aria-rowcount'?: (string | number) | undefined;
|
|
292
292
|
'aria-rowindex'?: (string | number) | undefined;
|
|
293
293
|
'aria-rowspan'?: (string | number) | undefined;
|
|
294
|
-
'aria-selected'?: (boolean | "
|
|
294
|
+
'aria-selected'?: (boolean | "false" | "true") | undefined;
|
|
295
295
|
'aria-setsize'?: (string | number) | undefined;
|
|
296
296
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
297
297
|
'aria-valuemax'?: (string | number) | 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"}
|