primitive-app 2.1.6 → 2.2.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.
- package/dist/chunk-rCbxF51U.cjs +1 -0
- package/dist/components/ui/checkbox/Checkbox.vue.d.ts +1 -1
- package/dist/components/ui/native-select/NativeSelectOptGroup.vue.d.ts +50 -50
- package/dist/components/ui/native-select/NativeSelectOption.vue.d.ts +52 -52
- package/dist/components/ui/separator/Separator.vue.d.ts +1 -1
- package/dist/components/ui/switch/Switch.vue.d.ts +1 -0
- package/dist/components/ui/switch/Switch.vue.d.ts.map +1 -1
- package/dist/components/ui/tabs/Tabs.vue.d.ts +2 -2
- package/dist/composables/useJsBaoDataLoader.d.ts.map +1 -1
- package/dist/dev-tools/document-explorer/DocumentExplorerIndex.vue.d.ts.map +1 -1
- package/dist/dev-tools/document-explorer/components/DocumentListPanel.vue.d.ts +3 -15
- package/dist/dev-tools/document-explorer/components/DocumentListPanel.vue.d.ts.map +1 -1
- package/dist/dev-tools/document-explorer/components/DocumentListSection.vue.d.ts +6 -9
- package/dist/dev-tools/document-explorer/components/DocumentListSection.vue.d.ts.map +1 -1
- package/dist/dev-tools/document-explorer/components/DocumentPropertiesPanel.vue.d.ts.map +1 -1
- package/dist/dev-tools/document-explorer/components/DocumentSharingSection.vue.d.ts.map +1 -1
- package/dist/dev-tools/document-explorer/index.d.ts +1 -1
- package/dist/dev-tools/document-explorer/index.d.ts.map +1 -1
- package/dist/dev-tools/document-explorer/types.d.ts +29 -25
- package/dist/dev-tools/document-explorer/types.d.ts.map +1 -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/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 +10 -13
- package/dist/dev-tools/vite-plugin/index.js +53 -119
- 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 +48 -6
- package/dist/index.js +14190 -17188
- package/dist/primitive-app.css +2 -1
- package/package.json +30 -30
- package/dist/dev-tools/document-explorer/components/InvitationPropertiesPanel.vue.d.ts +0 -14
- package/dist/dev-tools/document-explorer/components/InvitationPropertiesPanel.vue.d.ts.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var e=Object.create,t=Object.defineProperty,n=Object.getOwnPropertyDescriptor,r=Object.getOwnPropertyNames,i=Object.getPrototypeOf,a=Object.prototype.hasOwnProperty,o=(e,t)=>()=>(t||(e((t={exports:{}}).exports,t),e=null),t.exports),s=(e,n)=>{let r={};for(var i in e)t(r,i,{get:e[i],enumerable:!0});return n||t(r,Symbol.toStringTag,{value:`Module`}),r},c=(e,i,o,s)=>{if(i&&typeof i==`object`||typeof i==`function`)for(var c=r(i),l=0,u=c.length,d;l<u;l++)d=c[l],!a.call(e,d)&&d!==o&&t(e,d,{get:(e=>i[e]).bind(null,d),enumerable:!(s=n(i,d))||s.enumerable});return e},l=(e,t,n)=>(c(e,t,`default`),n&&c(n,t,`default`)),u=(n,r,a)=>(a=n==null?{}:e(i(n)),c(r||!n||!n.__esModule?t(a,`default`,{value:n,enumerable:!0}):a,n));Object.defineProperty(exports,`i`,{enumerable:!0,get:function(){return u}}),Object.defineProperty(exports,`n`,{enumerable:!0,get:function(){return s}}),Object.defineProperty(exports,`r`,{enumerable:!0,get:function(){return l}}),Object.defineProperty(exports,`t`,{enumerable:!0,get:function(){return o}});
|
|
@@ -4,7 +4,7 @@ type __VLS_Props = CheckboxRootProps & {
|
|
|
4
4
|
class?: HTMLAttributes["class"];
|
|
5
5
|
};
|
|
6
6
|
declare var __VLS_14: {
|
|
7
|
-
modelValue:
|
|
7
|
+
modelValue: boolean | "indeterminate";
|
|
8
8
|
state: import("reka-ui").CheckboxCheckedState;
|
|
9
9
|
};
|
|
10
10
|
type __VLS_Slots = {} & {
|
|
@@ -3,25 +3,25 @@ type __VLS_Slots = {} & {
|
|
|
3
3
|
default?: (props: typeof __VLS_1) => any;
|
|
4
4
|
};
|
|
5
5
|
declare const __VLS_base: import("vue").DefineComponent<{
|
|
6
|
-
class?:
|
|
7
|
-
disabled?: (boolean | "
|
|
6
|
+
class?: import("vue").ClassValue | undefined;
|
|
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?: "" |
|
|
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" | (boolean | "
|
|
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;
|
|
@@ -198,25 +198,25 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
198
198
|
ref_for?: boolean | undefined | undefined;
|
|
199
199
|
ref_key?: string | undefined | undefined;
|
|
200
200
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
201
|
-
class?:
|
|
202
|
-
disabled?: (boolean | "
|
|
201
|
+
class?: import("vue").ClassValue | undefined;
|
|
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?: "" |
|
|
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" | (boolean | "
|
|
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;
|
|
@@ -3,27 +3,27 @@ type __VLS_Slots = {} & {
|
|
|
3
3
|
default?: (props: typeof __VLS_1) => any;
|
|
4
4
|
};
|
|
5
5
|
declare const __VLS_base: import("vue").DefineComponent<{
|
|
6
|
-
class?:
|
|
7
|
-
disabled?: (boolean | "
|
|
6
|
+
class?: import("vue").ClassValue | undefined;
|
|
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?: "" |
|
|
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" | (boolean | "
|
|
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;
|
|
@@ -200,27 +200,27 @@ declare const __VLS_base: import("vue").DefineComponent<{
|
|
|
200
200
|
ref_for?: boolean | undefined | undefined;
|
|
201
201
|
ref_key?: string | undefined | undefined;
|
|
202
202
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
203
|
-
class?:
|
|
204
|
-
disabled?: (boolean | "
|
|
203
|
+
class?: import("vue").ClassValue | undefined;
|
|
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?: "" |
|
|
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" | (boolean | "
|
|
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;
|
|
@@ -4,7 +4,7 @@ type __VLS_Props = SeparatorProps & {
|
|
|
4
4
|
class?: HTMLAttributes["class"];
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
7
|
-
orientation: "
|
|
7
|
+
orientation: import("node_modules/reka-ui/dist/index3").DataOrientation;
|
|
8
8
|
decorative: boolean;
|
|
9
9
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
10
|
declare const _default: typeof __VLS_export;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Switch.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/switch/Switch.vue"],"names":[],"mappings":"AA+CA,OAAO,KAAK,EAAmB,eAAe,EAAE,MAAM,SAAS,CAAC;AAEhE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,KAAK,CAAC;AAE1C,KAAK,WAAW,GAAG,eAAe,GAAG;IAAE,KAAK,CAAC,EAAE,cAAc,CAAC,OAAO,CAAC,CAAA;CAAE,CAAC;AA+FzE,QAAA,IAAI,QAAQ
|
|
1
|
+
{"version":3,"file":"Switch.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/switch/Switch.vue"],"names":[],"mappings":"AA+CA,OAAO,KAAK,EAAmB,eAAe,EAAE,MAAM,SAAS,CAAC;AAEhE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,KAAK,CAAC;AAE1C,KAAK,WAAW,GAAG,eAAe,GAAG;IAAE,KAAK,CAAC,EAAE,cAAc,CAAC,OAAO,CAAC,CAAA;CAAE,CAAC;AA+FzE,QAAA,IAAI,QAAQ;;;CAAY,CAAE;AAC1B,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAK9C,QAAA,MAAM,UAAU;;;;kFAGd,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,9 +10,9 @@ type __VLS_Slots = {} & {
|
|
|
10
10
|
default?: (props: typeof __VLS_8) => any;
|
|
11
11
|
};
|
|
12
12
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
|
-
"update:modelValue": (payload:
|
|
13
|
+
"update:modelValue": (payload: import("node_modules/reka-ui/dist/index3").StringOrNumber) => any;
|
|
14
14
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
15
|
-
"onUpdate:modelValue"?: ((payload:
|
|
15
|
+
"onUpdate:modelValue"?: ((payload: import("node_modules/reka-ui/dist/index3").StringOrNumber) => any) | undefined;
|
|
16
16
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
17
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
18
18
|
declare const _default: typeof __VLS_export;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useJsBaoDataLoader.d.ts","sourceRoot":"","sources":["../../src/composables/useJsBaoDataLoader.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAe5C,KAAK,UAAU,GAAG;IAChB,SAAS,EAAE,CAAC,EAAE,EAAE,MAAM,IAAI,KAAK,MAAM,IAAI,CAAC;CAC3C,CAAC;AAEF,KAAK,eAAe,GAAG,OAAO,GAAG,GAAG,CAAC,OAAO,CAAC,GAAG,WAAW,CAAC,OAAO,CAAC,CAAC;AACrE,KAAK,aAAa,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,GAAG,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,WAAW,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;AAEzE,MAAM,WAAW,yBAAyB,CACxC,IAAI,EACJ,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;IAE3D;;;OAGG;IACH,WAAW,EAAE,UAAU,EAAE,CAAC;IAE1B;;;;OAIG;IACH,WAAW,EAAE,aAAa,CAAC,CAAC,CAAC,CAAC;IAE9B;;;OAGG;IACH,aAAa,EAAE,eAAe,CAAC;IAE/B;;OAEG;IACH,QAAQ,EAAE,CAAC,WAAW,EAAE,CAAC,GAAG,IAAI,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IAEnD;;;OAGG;IACH,YAAY,CAAC,EAAE,eAAe,CAAC;IAE/B;;;;;OAKG;IACH,sBAAsB,CAAC,EAAE,eAAe,CAAC;IAEzC;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;CACpC;AAED,MAAM,WAAW,wBAAwB,CAAC,IAAI;IAC5C;;OAEG;IACH,IAAI,EAAE,GAAG,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC;IAEvB;;;OAGG;IACH,iBAAiB,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;IAEhC;;OAEG;IACH,MAAM,EAAE,MAAM,IAAI,CAAC;CACpB;AAgCD;;;;;;;;;;GAUG;AACH,wBAAgB,kBAAkB,CAChC,IAAI,EACJ,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC3D,OAAO,EAAE,yBAAyB,CAAC,IAAI,EAAE,CAAC,CAAC,GAAG,wBAAwB,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"useJsBaoDataLoader.d.ts","sourceRoot":"","sources":["../../src/composables/useJsBaoDataLoader.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAe5C,KAAK,UAAU,GAAG;IAChB,SAAS,EAAE,CAAC,EAAE,EAAE,MAAM,IAAI,KAAK,MAAM,IAAI,CAAC;CAC3C,CAAC;AAEF,KAAK,eAAe,GAAG,OAAO,GAAG,GAAG,CAAC,OAAO,CAAC,GAAG,WAAW,CAAC,OAAO,CAAC,CAAC;AACrE,KAAK,aAAa,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,GAAG,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,WAAW,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;AAEzE,MAAM,WAAW,yBAAyB,CACxC,IAAI,EACJ,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;IAE3D;;;OAGG;IACH,WAAW,EAAE,UAAU,EAAE,CAAC;IAE1B;;;;OAIG;IACH,WAAW,EAAE,aAAa,CAAC,CAAC,CAAC,CAAC;IAE9B;;;OAGG;IACH,aAAa,EAAE,eAAe,CAAC;IAE/B;;OAEG;IACH,QAAQ,EAAE,CAAC,WAAW,EAAE,CAAC,GAAG,IAAI,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IAEnD;;;OAGG;IACH,YAAY,CAAC,EAAE,eAAe,CAAC;IAE/B;;;;;OAKG;IACH,sBAAsB,CAAC,EAAE,eAAe,CAAC;IAEzC;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;CACpC;AAED,MAAM,WAAW,wBAAwB,CAAC,IAAI;IAC5C;;OAEG;IACH,IAAI,EAAE,GAAG,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC;IAEvB;;;OAGG;IACH,iBAAiB,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;IAEhC;;OAEG;IACH,MAAM,EAAE,MAAM,IAAI,CAAC;CACpB;AAgCD;;;;;;;;;;GAUG;AACH,wBAAgB,kBAAkB,CAChC,IAAI,EACJ,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC3D,OAAO,EAAE,yBAAyB,CAAC,IAAI,EAAE,CAAC,CAAC,GAAG,wBAAwB,CAAC,IAAI,CAAC,CAoN7E"}
|
|
@@ -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":"AAk7DA,QAAA,MAAM,YAAY,+QAChB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -1,17 +1,11 @@
|
|
|
1
|
-
import type { DocumentInfoWithRoot
|
|
1
|
+
import type { DocumentInfoWithRoot } from "../types";
|
|
2
2
|
interface Props {
|
|
3
|
-
|
|
3
|
+
ownedDocuments: DocumentInfoWithRoot[];
|
|
4
|
+
sharedDocuments: DocumentInfoWithRoot[];
|
|
4
5
|
selectedDocId: string | null;
|
|
5
|
-
/** ID of the currently selected invitation (used for highlight) */
|
|
6
|
-
selectedInvitationId: string | null;
|
|
7
6
|
documentListLoaded: boolean;
|
|
8
|
-
pendingInvitations: PendingInvitation[];
|
|
9
|
-
/** Whether a bulk accept operation is in progress (disables interaction, shows loading) */
|
|
10
|
-
isAcceptingInvitations?: boolean;
|
|
11
7
|
}
|
|
12
|
-
declare function showDocsSection(): void;
|
|
13
8
|
declare const __VLS_export: import("vue").DefineComponent<Props, {
|
|
14
|
-
showDocsSection: typeof showDocsSection;
|
|
15
9
|
isCollapsed: import("vue").Ref<boolean, boolean>;
|
|
16
10
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
11
|
"select-document": (docId: string) => any;
|
|
@@ -19,18 +13,12 @@ declare const __VLS_export: import("vue").DefineComponent<Props, {
|
|
|
19
13
|
"bulk-delete": (docIds: string[]) => any;
|
|
20
14
|
"bulk-leave": (docIds: string[]) => any;
|
|
21
15
|
"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
16
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
26
17
|
"onSelect-document"?: ((docId: string) => any) | undefined;
|
|
27
18
|
"onCreate-document"?: (() => any) | undefined;
|
|
28
19
|
"onBulk-delete"?: ((docIds: string[]) => any) | undefined;
|
|
29
20
|
"onBulk-leave"?: ((docIds: string[]) => any) | undefined;
|
|
30
21
|
"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
22
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
35
23
|
declare const _default: typeof __VLS_export;
|
|
36
24
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DocumentListPanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/dev-tools/document-explorer/components/DocumentListPanel.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DocumentListPanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/dev-tools/document-explorer/components/DocumentListPanel.vue"],"names":[],"mappings":"AA4LA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;AAIrD,UAAU,KAAK;IACb,cAAc,EAAE,oBAAoB,EAAE,CAAC;IACvC,eAAe,EAAE,oBAAoB,EAAE,CAAC;IACxC,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,kBAAkB,EAAE,OAAO,CAAC;CAC7B;AAyXD,QAAA,MAAM,YAAY;;;;;;;;;;;;;;kFAIhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -1,17 +1,13 @@
|
|
|
1
1
|
import type { DocumentInfoWithRoot } from "../types";
|
|
2
2
|
interface Props {
|
|
3
|
-
/** Full list of documents (used for permission checks on selected items) */
|
|
4
3
|
documents: DocumentInfoWithRoot[];
|
|
5
|
-
/** Filtered subset of documents to display */
|
|
6
4
|
filteredDocuments: DocumentInfoWithRoot[];
|
|
7
|
-
/** Currently selected document ID (for highlight) */
|
|
8
5
|
selectedDocId: string | null;
|
|
9
|
-
/** Whether the documents accordion section is expanded */
|
|
10
6
|
isExpanded: boolean;
|
|
11
|
-
/** Whether the document list has finished loading */
|
|
12
7
|
documentListLoaded: boolean;
|
|
13
|
-
/** Current search query (used for empty-state messaging) */
|
|
14
8
|
searchQuery: string;
|
|
9
|
+
sectionLabel?: string;
|
|
10
|
+
showCreateButton?: boolean;
|
|
15
11
|
}
|
|
16
12
|
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
13
|
"select-document": (docId: string) => any;
|
|
@@ -19,15 +15,16 @@ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {},
|
|
|
19
15
|
"bulk-delete": (docIds: string[]) => any;
|
|
20
16
|
"bulk-leave": (docIds: string[]) => any;
|
|
21
17
|
"bulk-delete-mixed": (docIds: string[]) => any;
|
|
22
|
-
"toggle-section": () => any;
|
|
23
18
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
24
19
|
"onSelect-document"?: ((docId: string) => any) | undefined;
|
|
25
20
|
"onCreate-document"?: (() => any) | undefined;
|
|
26
21
|
"onBulk-delete"?: ((docIds: string[]) => any) | undefined;
|
|
27
22
|
"onBulk-leave"?: ((docIds: string[]) => any) | undefined;
|
|
28
23
|
"onBulk-delete-mixed"?: ((docIds: string[]) => any) | undefined;
|
|
29
|
-
|
|
30
|
-
|
|
24
|
+
}>, {
|
|
25
|
+
sectionLabel: string;
|
|
26
|
+
showCreateButton: boolean;
|
|
27
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
31
28
|
declare const _default: typeof __VLS_export;
|
|
32
29
|
export default _default;
|
|
33
30
|
//# sourceMappingURL=DocumentListSection.vue.d.ts.map
|