@opencloud-eu/web-pkg 0.1.1 → 2.0.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/{TextEditor-dPv5RFiT.js → TextEditor-CBpP9DFX.js} +68 -51
- package/dist/assets/{worker-DzSy5ndr.js → worker-BCEWb3C6.js} +27 -27
- package/dist/assets/{worker-BTxctNFM.js → worker-BpDXOTOV.js} +18 -18
- package/dist/assets/{worker-oQBkmUkg.js → worker-Ds2rbROB.js} +26 -26
- package/dist/{index-B8n8dCfU.js → index-CPsauqxc.js} +12683 -12675
- package/dist/src/components/AppBar/AppBar.vue.d.ts +28 -31
- package/dist/src/components/AppTemplates/AppWrapper.vue.d.ts +71 -94
- package/dist/src/components/AppTopBar.vue.d.ts +13 -24
- package/dist/src/components/BatchActions.vue.d.ts +10 -11
- package/dist/src/components/ContextActions/ActionMenuItem.vue.d.ts +10 -11
- package/dist/src/components/ContextActions/ContextActionMenu.vue.d.ts +10 -20
- package/dist/src/components/CreateShortcutModal.vue.d.ts +3 -3
- package/dist/src/components/FilesList/ContextActions.vue.d.ts +10 -20
- package/dist/src/components/FilesList/ResourceLink.vue.d.ts +2 -2
- package/dist/src/components/FilesList/ResourceListItem.vue.d.ts +3 -3
- package/dist/src/components/FilesList/ResourceTable.vue.d.ts +15 -55
- package/dist/src/components/FilesList/ResourceTile.vue.d.ts +6 -6
- package/dist/src/components/FilesList/ResourceTiles.vue.d.ts +6 -6
- package/dist/src/components/Filters/DateFilter.vue.d.ts +196 -52
- package/dist/src/components/Search/ResourcePreview.vue.d.ts +3 -3
- package/dist/src/components/SideBar/FileSideBar.vue.d.ts +57 -69
- package/dist/src/components/SideBar/SideBar.vue.d.ts +39 -71
- package/dist/src/components/SideBar/Spaces/Details/SpaceDetails.vue.d.ts +1 -1
- package/dist/src/components/SpaceQuota.vue.d.ts +1 -1
- package/dist/src/components/Spaces/QuotaModal.vue.d.ts +1 -1
- package/dist/src/components/TextEditor/TextEditor.vue.d.ts +1 -0
- package/dist/src/components/TextEditor/index.d.ts +1 -0
- package/dist/src/components/ViewOptions.vue.d.ts +8 -0
- package/dist/src/composables/actions/files/useFileActions.d.ts +1 -1
- package/dist/src/composables/actions/types.d.ts +0 -1
- package/dist/src/composables/piniaStores/auth.d.ts +8 -7
- package/dist/src/composables/piniaStores/modals.d.ts +18 -20
- package/dist/src/composables/piniaStores/resources.d.ts +8 -2
- package/dist/src/composables/piniaStores/spaces.d.ts +8 -2
- package/dist/src/composables/piniaStores/theme.d.ts +56 -0
- package/dist/src/helpers/resource/icon.d.ts +2 -1
- package/dist/src/router/deprecated.d.ts +1 -1
- package/dist/src/router/utils.d.ts +2 -2
- package/dist/web-pkg.js +2 -2
- package/dist/web-pkg.umd.cjs +47 -43
- package/package.json +5 -5
|
@@ -27,12 +27,14 @@ declare const WebTheme: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
27
27
|
}, {
|
|
28
28
|
designTokens: z.ZodOptional<z.ZodObject<{
|
|
29
29
|
breakpoints: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
30
|
+
roles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
30
31
|
colorPalette: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
31
32
|
fontFamily: z.ZodOptional<z.ZodString>;
|
|
32
33
|
fontSizes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
33
34
|
sizes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
34
35
|
spacing: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
35
36
|
}, "strip", z.ZodTypeAny, {
|
|
37
|
+
roles?: Record<string, string>;
|
|
36
38
|
breakpoints?: Record<string, string>;
|
|
37
39
|
colorPalette?: Record<string, string>;
|
|
38
40
|
fontFamily?: string;
|
|
@@ -40,6 +42,7 @@ declare const WebTheme: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
40
42
|
sizes?: Record<string, string>;
|
|
41
43
|
spacing?: Record<string, string>;
|
|
42
44
|
}, {
|
|
45
|
+
roles?: Record<string, string>;
|
|
43
46
|
breakpoints?: Record<string, string>;
|
|
44
47
|
colorPalette?: Record<string, string>;
|
|
45
48
|
fontFamily?: string;
|
|
@@ -66,6 +69,7 @@ declare const WebTheme: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
66
69
|
privacy?: string;
|
|
67
70
|
};
|
|
68
71
|
designTokens?: {
|
|
72
|
+
roles?: Record<string, string>;
|
|
69
73
|
breakpoints?: Record<string, string>;
|
|
70
74
|
colorPalette?: Record<string, string>;
|
|
71
75
|
fontFamily?: string;
|
|
@@ -90,6 +94,7 @@ declare const WebTheme: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
90
94
|
privacy?: string;
|
|
91
95
|
};
|
|
92
96
|
designTokens?: {
|
|
97
|
+
roles?: Record<string, string>;
|
|
93
98
|
breakpoints?: Record<string, string>;
|
|
94
99
|
colorPalette?: Record<string, string>;
|
|
95
100
|
fontFamily?: string;
|
|
@@ -129,12 +134,14 @@ export declare const WebThemeConfig: z.ZodObject<{
|
|
|
129
134
|
}, {
|
|
130
135
|
designTokens: z.ZodOptional<z.ZodObject<{
|
|
131
136
|
breakpoints: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
137
|
+
roles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
132
138
|
colorPalette: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
133
139
|
fontFamily: z.ZodOptional<z.ZodString>;
|
|
134
140
|
fontSizes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
135
141
|
sizes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
136
142
|
spacing: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
137
143
|
}, "strip", z.ZodTypeAny, {
|
|
144
|
+
roles?: Record<string, string>;
|
|
138
145
|
breakpoints?: Record<string, string>;
|
|
139
146
|
colorPalette?: Record<string, string>;
|
|
140
147
|
fontFamily?: string;
|
|
@@ -142,6 +149,7 @@ export declare const WebThemeConfig: z.ZodObject<{
|
|
|
142
149
|
sizes?: Record<string, string>;
|
|
143
150
|
spacing?: Record<string, string>;
|
|
144
151
|
}, {
|
|
152
|
+
roles?: Record<string, string>;
|
|
145
153
|
breakpoints?: Record<string, string>;
|
|
146
154
|
colorPalette?: Record<string, string>;
|
|
147
155
|
fontFamily?: string;
|
|
@@ -164,6 +172,7 @@ export declare const WebThemeConfig: z.ZodObject<{
|
|
|
164
172
|
privacy?: string;
|
|
165
173
|
};
|
|
166
174
|
designTokens?: {
|
|
175
|
+
roles?: Record<string, string>;
|
|
167
176
|
breakpoints?: Record<string, string>;
|
|
168
177
|
colorPalette?: Record<string, string>;
|
|
169
178
|
fontFamily?: string;
|
|
@@ -186,6 +195,7 @@ export declare const WebThemeConfig: z.ZodObject<{
|
|
|
186
195
|
privacy?: string;
|
|
187
196
|
};
|
|
188
197
|
designTokens?: {
|
|
198
|
+
roles?: Record<string, string>;
|
|
189
199
|
breakpoints?: Record<string, string>;
|
|
190
200
|
colorPalette?: Record<string, string>;
|
|
191
201
|
fontFamily?: string;
|
|
@@ -223,12 +233,14 @@ export declare const WebThemeConfig: z.ZodObject<{
|
|
|
223
233
|
}, {
|
|
224
234
|
designTokens: z.ZodOptional<z.ZodObject<{
|
|
225
235
|
breakpoints: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
236
|
+
roles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
226
237
|
colorPalette: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
227
238
|
fontFamily: z.ZodOptional<z.ZodString>;
|
|
228
239
|
fontSizes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
229
240
|
sizes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
230
241
|
spacing: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
231
242
|
}, "strip", z.ZodTypeAny, {
|
|
243
|
+
roles?: Record<string, string>;
|
|
232
244
|
breakpoints?: Record<string, string>;
|
|
233
245
|
colorPalette?: Record<string, string>;
|
|
234
246
|
fontFamily?: string;
|
|
@@ -236,6 +248,7 @@ export declare const WebThemeConfig: z.ZodObject<{
|
|
|
236
248
|
sizes?: Record<string, string>;
|
|
237
249
|
spacing?: Record<string, string>;
|
|
238
250
|
}, {
|
|
251
|
+
roles?: Record<string, string>;
|
|
239
252
|
breakpoints?: Record<string, string>;
|
|
240
253
|
colorPalette?: Record<string, string>;
|
|
241
254
|
fontFamily?: string;
|
|
@@ -262,6 +275,7 @@ export declare const WebThemeConfig: z.ZodObject<{
|
|
|
262
275
|
privacy?: string;
|
|
263
276
|
};
|
|
264
277
|
designTokens?: {
|
|
278
|
+
roles?: Record<string, string>;
|
|
265
279
|
breakpoints?: Record<string, string>;
|
|
266
280
|
colorPalette?: Record<string, string>;
|
|
267
281
|
fontFamily?: string;
|
|
@@ -286,6 +300,7 @@ export declare const WebThemeConfig: z.ZodObject<{
|
|
|
286
300
|
privacy?: string;
|
|
287
301
|
};
|
|
288
302
|
designTokens?: {
|
|
303
|
+
roles?: Record<string, string>;
|
|
289
304
|
breakpoints?: Record<string, string>;
|
|
290
305
|
colorPalette?: Record<string, string>;
|
|
291
306
|
fontFamily?: string;
|
|
@@ -311,6 +326,7 @@ export declare const WebThemeConfig: z.ZodObject<{
|
|
|
311
326
|
privacy?: string;
|
|
312
327
|
};
|
|
313
328
|
designTokens?: {
|
|
329
|
+
roles?: Record<string, string>;
|
|
314
330
|
breakpoints?: Record<string, string>;
|
|
315
331
|
colorPalette?: Record<string, string>;
|
|
316
332
|
fontFamily?: string;
|
|
@@ -335,6 +351,7 @@ export declare const WebThemeConfig: z.ZodObject<{
|
|
|
335
351
|
privacy?: string;
|
|
336
352
|
};
|
|
337
353
|
designTokens?: {
|
|
354
|
+
roles?: Record<string, string>;
|
|
338
355
|
breakpoints?: Record<string, string>;
|
|
339
356
|
colorPalette?: Record<string, string>;
|
|
340
357
|
fontFamily?: string;
|
|
@@ -360,6 +377,7 @@ export declare const WebThemeConfig: z.ZodObject<{
|
|
|
360
377
|
privacy?: string;
|
|
361
378
|
};
|
|
362
379
|
designTokens?: {
|
|
380
|
+
roles?: Record<string, string>;
|
|
363
381
|
breakpoints?: Record<string, string>;
|
|
364
382
|
colorPalette?: Record<string, string>;
|
|
365
383
|
fontFamily?: string;
|
|
@@ -384,6 +402,7 @@ export declare const WebThemeConfig: z.ZodObject<{
|
|
|
384
402
|
privacy?: string;
|
|
385
403
|
};
|
|
386
404
|
designTokens?: {
|
|
405
|
+
roles?: Record<string, string>;
|
|
387
406
|
breakpoints?: Record<string, string>;
|
|
388
407
|
colorPalette?: Record<string, string>;
|
|
389
408
|
fontFamily?: string;
|
|
@@ -475,12 +494,14 @@ export declare const ThemeConfig: z.ZodObject<{
|
|
|
475
494
|
}, {
|
|
476
495
|
designTokens: z.ZodOptional<z.ZodObject<{
|
|
477
496
|
breakpoints: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
497
|
+
roles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
478
498
|
colorPalette: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
479
499
|
fontFamily: z.ZodOptional<z.ZodString>;
|
|
480
500
|
fontSizes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
481
501
|
sizes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
482
502
|
spacing: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
483
503
|
}, "strip", z.ZodTypeAny, {
|
|
504
|
+
roles?: Record<string, string>;
|
|
484
505
|
breakpoints?: Record<string, string>;
|
|
485
506
|
colorPalette?: Record<string, string>;
|
|
486
507
|
fontFamily?: string;
|
|
@@ -488,6 +509,7 @@ export declare const ThemeConfig: z.ZodObject<{
|
|
|
488
509
|
sizes?: Record<string, string>;
|
|
489
510
|
spacing?: Record<string, string>;
|
|
490
511
|
}, {
|
|
512
|
+
roles?: Record<string, string>;
|
|
491
513
|
breakpoints?: Record<string, string>;
|
|
492
514
|
colorPalette?: Record<string, string>;
|
|
493
515
|
fontFamily?: string;
|
|
@@ -510,6 +532,7 @@ export declare const ThemeConfig: z.ZodObject<{
|
|
|
510
532
|
privacy?: string;
|
|
511
533
|
};
|
|
512
534
|
designTokens?: {
|
|
535
|
+
roles?: Record<string, string>;
|
|
513
536
|
breakpoints?: Record<string, string>;
|
|
514
537
|
colorPalette?: Record<string, string>;
|
|
515
538
|
fontFamily?: string;
|
|
@@ -532,6 +555,7 @@ export declare const ThemeConfig: z.ZodObject<{
|
|
|
532
555
|
privacy?: string;
|
|
533
556
|
};
|
|
534
557
|
designTokens?: {
|
|
558
|
+
roles?: Record<string, string>;
|
|
535
559
|
breakpoints?: Record<string, string>;
|
|
536
560
|
colorPalette?: Record<string, string>;
|
|
537
561
|
fontFamily?: string;
|
|
@@ -569,12 +593,14 @@ export declare const ThemeConfig: z.ZodObject<{
|
|
|
569
593
|
}, {
|
|
570
594
|
designTokens: z.ZodOptional<z.ZodObject<{
|
|
571
595
|
breakpoints: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
596
|
+
roles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
572
597
|
colorPalette: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
573
598
|
fontFamily: z.ZodOptional<z.ZodString>;
|
|
574
599
|
fontSizes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
575
600
|
sizes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
576
601
|
spacing: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
577
602
|
}, "strip", z.ZodTypeAny, {
|
|
603
|
+
roles?: Record<string, string>;
|
|
578
604
|
breakpoints?: Record<string, string>;
|
|
579
605
|
colorPalette?: Record<string, string>;
|
|
580
606
|
fontFamily?: string;
|
|
@@ -582,6 +608,7 @@ export declare const ThemeConfig: z.ZodObject<{
|
|
|
582
608
|
sizes?: Record<string, string>;
|
|
583
609
|
spacing?: Record<string, string>;
|
|
584
610
|
}, {
|
|
611
|
+
roles?: Record<string, string>;
|
|
585
612
|
breakpoints?: Record<string, string>;
|
|
586
613
|
colorPalette?: Record<string, string>;
|
|
587
614
|
fontFamily?: string;
|
|
@@ -608,6 +635,7 @@ export declare const ThemeConfig: z.ZodObject<{
|
|
|
608
635
|
privacy?: string;
|
|
609
636
|
};
|
|
610
637
|
designTokens?: {
|
|
638
|
+
roles?: Record<string, string>;
|
|
611
639
|
breakpoints?: Record<string, string>;
|
|
612
640
|
colorPalette?: Record<string, string>;
|
|
613
641
|
fontFamily?: string;
|
|
@@ -632,6 +660,7 @@ export declare const ThemeConfig: z.ZodObject<{
|
|
|
632
660
|
privacy?: string;
|
|
633
661
|
};
|
|
634
662
|
designTokens?: {
|
|
663
|
+
roles?: Record<string, string>;
|
|
635
664
|
breakpoints?: Record<string, string>;
|
|
636
665
|
colorPalette?: Record<string, string>;
|
|
637
666
|
fontFamily?: string;
|
|
@@ -657,6 +686,7 @@ export declare const ThemeConfig: z.ZodObject<{
|
|
|
657
686
|
privacy?: string;
|
|
658
687
|
};
|
|
659
688
|
designTokens?: {
|
|
689
|
+
roles?: Record<string, string>;
|
|
660
690
|
breakpoints?: Record<string, string>;
|
|
661
691
|
colorPalette?: Record<string, string>;
|
|
662
692
|
fontFamily?: string;
|
|
@@ -681,6 +711,7 @@ export declare const ThemeConfig: z.ZodObject<{
|
|
|
681
711
|
privacy?: string;
|
|
682
712
|
};
|
|
683
713
|
designTokens?: {
|
|
714
|
+
roles?: Record<string, string>;
|
|
684
715
|
breakpoints?: Record<string, string>;
|
|
685
716
|
colorPalette?: Record<string, string>;
|
|
686
717
|
fontFamily?: string;
|
|
@@ -706,6 +737,7 @@ export declare const ThemeConfig: z.ZodObject<{
|
|
|
706
737
|
privacy?: string;
|
|
707
738
|
};
|
|
708
739
|
designTokens?: {
|
|
740
|
+
roles?: Record<string, string>;
|
|
709
741
|
breakpoints?: Record<string, string>;
|
|
710
742
|
colorPalette?: Record<string, string>;
|
|
711
743
|
fontFamily?: string;
|
|
@@ -730,6 +762,7 @@ export declare const ThemeConfig: z.ZodObject<{
|
|
|
730
762
|
privacy?: string;
|
|
731
763
|
};
|
|
732
764
|
designTokens?: {
|
|
765
|
+
roles?: Record<string, string>;
|
|
733
766
|
breakpoints?: Record<string, string>;
|
|
734
767
|
colorPalette?: Record<string, string>;
|
|
735
768
|
fontFamily?: string;
|
|
@@ -757,6 +790,7 @@ export declare const ThemeConfig: z.ZodObject<{
|
|
|
757
790
|
privacy?: string;
|
|
758
791
|
};
|
|
759
792
|
designTokens?: {
|
|
793
|
+
roles?: Record<string, string>;
|
|
760
794
|
breakpoints?: Record<string, string>;
|
|
761
795
|
colorPalette?: Record<string, string>;
|
|
762
796
|
fontFamily?: string;
|
|
@@ -781,6 +815,7 @@ export declare const ThemeConfig: z.ZodObject<{
|
|
|
781
815
|
privacy?: string;
|
|
782
816
|
};
|
|
783
817
|
designTokens?: {
|
|
818
|
+
roles?: Record<string, string>;
|
|
784
819
|
breakpoints?: Record<string, string>;
|
|
785
820
|
colorPalette?: Record<string, string>;
|
|
786
821
|
fontFamily?: string;
|
|
@@ -808,6 +843,7 @@ export declare const ThemeConfig: z.ZodObject<{
|
|
|
808
843
|
privacy?: string;
|
|
809
844
|
};
|
|
810
845
|
designTokens?: {
|
|
846
|
+
roles?: Record<string, string>;
|
|
811
847
|
breakpoints?: Record<string, string>;
|
|
812
848
|
colorPalette?: Record<string, string>;
|
|
813
849
|
fontFamily?: string;
|
|
@@ -832,6 +868,7 @@ export declare const ThemeConfig: z.ZodObject<{
|
|
|
832
868
|
privacy?: string;
|
|
833
869
|
};
|
|
834
870
|
designTokens?: {
|
|
871
|
+
roles?: Record<string, string>;
|
|
835
872
|
breakpoints?: Record<string, string>;
|
|
836
873
|
colorPalette?: Record<string, string>;
|
|
837
874
|
fontFamily?: string;
|
|
@@ -874,6 +911,7 @@ export declare const ThemeConfig: z.ZodObject<{
|
|
|
874
911
|
privacy?: string;
|
|
875
912
|
};
|
|
876
913
|
designTokens?: {
|
|
914
|
+
roles?: Record<string, string>;
|
|
877
915
|
breakpoints?: Record<string, string>;
|
|
878
916
|
colorPalette?: Record<string, string>;
|
|
879
917
|
fontFamily?: string;
|
|
@@ -898,6 +936,7 @@ export declare const ThemeConfig: z.ZodObject<{
|
|
|
898
936
|
privacy?: string;
|
|
899
937
|
};
|
|
900
938
|
designTokens?: {
|
|
939
|
+
roles?: Record<string, string>;
|
|
901
940
|
breakpoints?: Record<string, string>;
|
|
902
941
|
colorPalette?: Record<string, string>;
|
|
903
942
|
fontFamily?: string;
|
|
@@ -940,6 +979,7 @@ export declare const ThemeConfig: z.ZodObject<{
|
|
|
940
979
|
privacy?: string;
|
|
941
980
|
};
|
|
942
981
|
designTokens?: {
|
|
982
|
+
roles?: Record<string, string>;
|
|
943
983
|
breakpoints?: Record<string, string>;
|
|
944
984
|
colorPalette?: Record<string, string>;
|
|
945
985
|
fontFamily?: string;
|
|
@@ -964,6 +1004,7 @@ export declare const ThemeConfig: z.ZodObject<{
|
|
|
964
1004
|
privacy?: string;
|
|
965
1005
|
};
|
|
966
1006
|
designTokens?: {
|
|
1007
|
+
roles?: Record<string, string>;
|
|
967
1008
|
breakpoints?: Record<string, string>;
|
|
968
1009
|
colorPalette?: Record<string, string>;
|
|
969
1010
|
fontFamily?: string;
|
|
@@ -995,6 +1036,7 @@ export declare const useThemeStore: import('pinia').StoreDefinition<"theme", Pic
|
|
|
995
1036
|
privacy?: string;
|
|
996
1037
|
};
|
|
997
1038
|
designTokens?: {
|
|
1039
|
+
roles?: Record<string, string>;
|
|
998
1040
|
breakpoints?: Record<string, string>;
|
|
999
1041
|
colorPalette?: Record<string, string>;
|
|
1000
1042
|
fontFamily?: string;
|
|
@@ -1019,6 +1061,7 @@ export declare const useThemeStore: import('pinia').StoreDefinition<"theme", Pic
|
|
|
1019
1061
|
privacy?: string;
|
|
1020
1062
|
};
|
|
1021
1063
|
designTokens?: {
|
|
1064
|
+
roles?: Record<string, string>;
|
|
1022
1065
|
breakpoints?: Record<string, string>;
|
|
1023
1066
|
colorPalette?: Record<string, string>;
|
|
1024
1067
|
fontFamily?: string;
|
|
@@ -1043,6 +1086,7 @@ export declare const useThemeStore: import('pinia').StoreDefinition<"theme", Pic
|
|
|
1043
1086
|
privacy?: string;
|
|
1044
1087
|
};
|
|
1045
1088
|
designTokens?: {
|
|
1089
|
+
roles?: Record<string, string>;
|
|
1046
1090
|
breakpoints?: Record<string, string>;
|
|
1047
1091
|
colorPalette?: Record<string, string>;
|
|
1048
1092
|
fontFamily?: string;
|
|
@@ -1068,6 +1112,7 @@ export declare const useThemeStore: import('pinia').StoreDefinition<"theme", Pic
|
|
|
1068
1112
|
privacy?: string;
|
|
1069
1113
|
};
|
|
1070
1114
|
designTokens?: {
|
|
1115
|
+
roles?: Record<string, string>;
|
|
1071
1116
|
breakpoints?: Record<string, string>;
|
|
1072
1117
|
colorPalette?: Record<string, string>;
|
|
1073
1118
|
fontFamily?: string;
|
|
@@ -1092,6 +1137,7 @@ export declare const useThemeStore: import('pinia').StoreDefinition<"theme", Pic
|
|
|
1092
1137
|
privacy?: string;
|
|
1093
1138
|
};
|
|
1094
1139
|
designTokens?: {
|
|
1140
|
+
roles?: Record<string, string>;
|
|
1095
1141
|
breakpoints?: Record<string, string>;
|
|
1096
1142
|
colorPalette?: Record<string, string>;
|
|
1097
1143
|
fontFamily?: string;
|
|
@@ -1123,6 +1169,7 @@ export declare const useThemeStore: import('pinia').StoreDefinition<"theme", Pic
|
|
|
1123
1169
|
privacy?: string;
|
|
1124
1170
|
};
|
|
1125
1171
|
designTokens?: {
|
|
1172
|
+
roles?: Record<string, string>;
|
|
1126
1173
|
breakpoints?: Record<string, string>;
|
|
1127
1174
|
colorPalette?: Record<string, string>;
|
|
1128
1175
|
fontFamily?: string;
|
|
@@ -1147,6 +1194,7 @@ export declare const useThemeStore: import('pinia').StoreDefinition<"theme", Pic
|
|
|
1147
1194
|
privacy?: string;
|
|
1148
1195
|
};
|
|
1149
1196
|
designTokens?: {
|
|
1197
|
+
roles?: Record<string, string>;
|
|
1150
1198
|
breakpoints?: Record<string, string>;
|
|
1151
1199
|
colorPalette?: Record<string, string>;
|
|
1152
1200
|
fontFamily?: string;
|
|
@@ -1171,6 +1219,7 @@ export declare const useThemeStore: import('pinia').StoreDefinition<"theme", Pic
|
|
|
1171
1219
|
privacy?: string;
|
|
1172
1220
|
};
|
|
1173
1221
|
designTokens?: {
|
|
1222
|
+
roles?: Record<string, string>;
|
|
1174
1223
|
breakpoints?: Record<string, string>;
|
|
1175
1224
|
colorPalette?: Record<string, string>;
|
|
1176
1225
|
fontFamily?: string;
|
|
@@ -1196,6 +1245,7 @@ export declare const useThemeStore: import('pinia').StoreDefinition<"theme", Pic
|
|
|
1196
1245
|
privacy?: string;
|
|
1197
1246
|
};
|
|
1198
1247
|
designTokens?: {
|
|
1248
|
+
roles?: Record<string, string>;
|
|
1199
1249
|
breakpoints?: Record<string, string>;
|
|
1200
1250
|
colorPalette?: Record<string, string>;
|
|
1201
1251
|
fontFamily?: string;
|
|
@@ -1220,6 +1270,7 @@ export declare const useThemeStore: import('pinia').StoreDefinition<"theme", Pic
|
|
|
1220
1270
|
privacy?: string;
|
|
1221
1271
|
};
|
|
1222
1272
|
designTokens?: {
|
|
1273
|
+
roles?: Record<string, string>;
|
|
1223
1274
|
breakpoints?: Record<string, string>;
|
|
1224
1275
|
colorPalette?: Record<string, string>;
|
|
1225
1276
|
fontFamily?: string;
|
|
@@ -1251,6 +1302,7 @@ export declare const useThemeStore: import('pinia').StoreDefinition<"theme", Pic
|
|
|
1251
1302
|
privacy?: string;
|
|
1252
1303
|
};
|
|
1253
1304
|
designTokens?: {
|
|
1305
|
+
roles?: Record<string, string>;
|
|
1254
1306
|
breakpoints?: Record<string, string>;
|
|
1255
1307
|
colorPalette?: Record<string, string>;
|
|
1256
1308
|
fontFamily?: string;
|
|
@@ -1275,6 +1327,7 @@ export declare const useThemeStore: import('pinia').StoreDefinition<"theme", Pic
|
|
|
1275
1327
|
privacy?: string;
|
|
1276
1328
|
};
|
|
1277
1329
|
designTokens?: {
|
|
1330
|
+
roles?: Record<string, string>;
|
|
1278
1331
|
breakpoints?: Record<string, string>;
|
|
1279
1332
|
colorPalette?: Record<string, string>;
|
|
1280
1333
|
fontFamily?: string;
|
|
@@ -1299,6 +1352,7 @@ export declare const useThemeStore: import('pinia').StoreDefinition<"theme", Pic
|
|
|
1299
1352
|
privacy?: string;
|
|
1300
1353
|
};
|
|
1301
1354
|
designTokens?: {
|
|
1355
|
+
roles?: Record<string, string>;
|
|
1302
1356
|
breakpoints?: Record<string, string>;
|
|
1303
1357
|
colorPalette?: Record<string, string>;
|
|
1304
1358
|
fontFamily?: string;
|
|
@@ -1324,6 +1378,7 @@ export declare const useThemeStore: import('pinia').StoreDefinition<"theme", Pic
|
|
|
1324
1378
|
privacy?: string;
|
|
1325
1379
|
};
|
|
1326
1380
|
designTokens?: {
|
|
1381
|
+
roles?: Record<string, string>;
|
|
1327
1382
|
breakpoints?: Record<string, string>;
|
|
1328
1383
|
colorPalette?: Record<string, string>;
|
|
1329
1384
|
fontFamily?: string;
|
|
@@ -1348,6 +1403,7 @@ export declare const useThemeStore: import('pinia').StoreDefinition<"theme", Pic
|
|
|
1348
1403
|
privacy?: string;
|
|
1349
1404
|
};
|
|
1350
1405
|
designTokens?: {
|
|
1406
|
+
roles?: Record<string, string>;
|
|
1351
1407
|
breakpoints?: Record<string, string>;
|
|
1352
1408
|
colorPalette?: Record<string, string>;
|
|
1353
1409
|
fontFamily?: string;
|
|
@@ -9,4 +9,4 @@ export declare const buildRoutes: () => RouteRecordRaw[];
|
|
|
9
9
|
* @param router
|
|
10
10
|
* @param comparatives
|
|
11
11
|
*/
|
|
12
|
-
export declare const isLocationActive: (router: Router,
|
|
12
|
+
export declare const isLocationActive: (router: Router, ...comparatives: [RouteLocationNamedRaw, ...RouteLocationNamedRaw[]]) => boolean;
|
|
@@ -9,14 +9,14 @@ export interface ActiveRouteDirectorFunc<T extends string> {
|
|
|
9
9
|
* @param router
|
|
10
10
|
* @param comparatives
|
|
11
11
|
*/
|
|
12
|
-
export declare const isLocationActive: (router: Router,
|
|
12
|
+
export declare const isLocationActive: (router: Router, ...comparatives: [RouteLocationNamedRaw, ...RouteLocationNamedRaw[]]) => boolean;
|
|
13
13
|
/**
|
|
14
14
|
* wraps isLocationActive to be used as a closure,
|
|
15
15
|
* the resulting closure then can be used to check a location against the defined set of director locations
|
|
16
16
|
*
|
|
17
17
|
* @param defaultComparatives
|
|
18
18
|
*/
|
|
19
|
-
export declare const isLocationActiveDirector: <T extends string>(
|
|
19
|
+
export declare const isLocationActiveDirector: <T extends string>(...defaultComparatives: [RouteLocationNamedRaw, ...RouteLocationNamedRaw[]]) => ActiveRouteDirectorFunc<T>;
|
|
20
20
|
/**
|
|
21
21
|
* just a dummy function to trick gettext tools
|
|
22
22
|
*
|
package/dist/web-pkg.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { e2 as e } from "./index-
|
|
2
|
-
import { t as i, cG as r, n as c, A as n, dJ as u, g as l, q as d, s as p, dK as S, dM as b, B as A, cH as F, dN as m, d2 as v, $ as R, cJ as h, v as T, x as g, w as C, m as D, l as L, p as P, C as E, K as M, O as f, ag as y, af as I, cB as w, cC as O, cA as k, W, dO as B, a7 as x, X as N, a1 as V, dT as H, dU as Q, dV as _, dW as U, dS as K, dX as z, dQ as G, cr as j, dn as q, cD as J, cE as X, I as Y, M as Z, h as $, bp as ee, L as ae, dY as se, i as oe, dZ as te, dI as ie, bq as re, N as ce, P as ne, bw as ue, e0 as le, k as de, bR as pe, d_ as Se, d$ as be, a9 as Ae, Q as Fe, bD as me, cN as ve, T as Re, R as he, D as Te, G as ge, z as Ce, H as De, a8 as Le, J as Pe, y as Ee, E as Me, F as fe, cM as ye, cF as Ie, Y as we, j as Oe, cb as ke, a0 as We, ch as Be, cm as xe, cj as Ne, a5 as Ve, a6 as He, a3 as Qe, U as _e, a4 as Ue, S as Ke, aa as ze, bO as Ge, cO as je, Z as qe, e1 as Je, V as Xe, dp as Ye, a2 as Ze, bN as $e, b$ as ea, b_ as aa, dl as sa, d0 as oa, dH as ta, cU as ia, dL as ra, dm as ca, dk as na, d1 as ua, b5 as la, b1 as da, b2 as pa, b3 as Sa, cR as ba, cT as Aa, dq as Fa, dt as ma, dr as va, ds as Ra, dA as ha, dg as Ta, f as ga, cY as Ca, c_ as Da, d3 as La, e3 as Pa, dP as Ea, cP as Ma, cX as fa, dR as ya, d4 as Ia, d6 as wa, d7 as Oa, d5 as ka, d8 as Wa, df as Ba, d9 as xa, db as Na, dc as Va, da as Ha, dd as Qa, dj as _a, dh as Ua, di as Ka, cW as za, cV as Ga, bL as ja, dy as qa, du as Ja, dx as Xa, dv as Ya, dw as Za, dz as $a, cL as es, cI as as, dB as ss, dC as os, dE as ts, dF as is, dG as rs, dD as cs, e4 as ns, b6 as us, cS as ls, cK as ds, cQ as ps, b4 as Ss, cZ as bs, cl as As, bK as Fs, c$ as ms, de as vs, ab as Rs, aU as hs, c0 as Ts, c9 as gs, aY as Cs, aZ as Ds, a_ as Ls, a$ as Ps, b0 as Es, b7 as Ms, b9 as fs, by as ys, ba as Is, bb as ws, bz as Os, bd as ks, bV as Ws, cf as Bs, bW as xs, cg as Ns, bA as Vs, be as Hs, bf as Qs, bB as _s, bC as Us, cp as Ks, cw as zs, b8 as Gs, bg as js, bh as qs, bj as Js, bk as Xs, bE as Ys, bF as Zs, ah as $s, ak as eo, al as ao, aG as so, aD as oo, aC as to, aE as io, aB as ro, an as co, ad as no, am as uo, ao as lo, ap as po, aq as So, ai as bo, ar as Ao, as as Fo, at as mo, aF as vo, aH as Ro, au as ho, av as To, aw as go, aI as Co, ax as Do, ay as Lo, az as Po, aA as Eo, aj as Mo, bl as fo, c1 as yo, bn as Io, co as wo, bX as Oo, e5 as ko, ae as Wo, ac as Bo, bo as xo, br as No, bs as Vo, bY as Ho, bt as Qo, bu as _o, bG as Uo, bH as Ko, aV as zo, aW as Go, bv as jo, bx as qo, cx as Jo, bS as Xo, bT as Yo, bc as Zo, bU as $o, bZ as et, bm as at, bI as st, cy as ot, c2 as tt, c4 as it, c3 as rt, c5 as ct, c6 as nt, c7 as ut, c8 as lt, ca as dt, cc as pt, cd as St, ce as bt, bJ as At, ci as Ft, ck as mt, aJ as vt, aK as Rt, aL as ht, aM as Tt, aN as gt, aO as Ct, aS as Dt, aP as Lt, aQ as Pt, aT as Et, aR as Mt, cn as ft, bi as yt, bM as It, u as wt, cs as Ot, cz as kt, cq as Wt, bP as Bt, ct as xt, cu as Nt, cv as Vt, bQ as Ht, aX as Qt } from "./index-
|
|
1
|
+
import { e2 as e } from "./index-CPsauqxc.js";
|
|
2
|
+
import { t as i, cG as r, n as c, A as n, dJ as u, g as l, q as d, s as p, dK as S, dM as b, B as A, cH as F, dN as m, d2 as v, $ as R, cJ as h, v as T, x as g, w as C, m as D, l as L, p as P, C as E, K as M, O as f, ag as y, af as I, cB as w, cC as O, cA as k, W, dO as B, a7 as x, X as N, a1 as V, dT as H, dU as Q, dV as _, dW as U, dS as K, dX as z, dQ as G, cr as j, dn as q, cD as J, cE as X, I as Y, M as Z, h as $, bp as ee, L as ae, dY as se, i as oe, dZ as te, dI as ie, bq as re, N as ce, P as ne, bw as ue, e0 as le, k as de, bR as pe, d_ as Se, d$ as be, a9 as Ae, Q as Fe, bD as me, cN as ve, T as Re, R as he, D as Te, G as ge, z as Ce, H as De, a8 as Le, J as Pe, y as Ee, E as Me, F as fe, cM as ye, cF as Ie, Y as we, j as Oe, cb as ke, a0 as We, ch as Be, cm as xe, cj as Ne, a5 as Ve, a6 as He, a3 as Qe, U as _e, a4 as Ue, S as Ke, aa as ze, bO as Ge, cO as je, Z as qe, e1 as Je, V as Xe, dp as Ye, a2 as Ze, bN as $e, b$ as ea, b_ as aa, dl as sa, d0 as oa, dH as ta, cU as ia, dL as ra, dm as ca, dk as na, d1 as ua, b5 as la, b1 as da, b2 as pa, b3 as Sa, cR as ba, cT as Aa, dq as Fa, dt as ma, dr as va, ds as Ra, dA as ha, dg as Ta, f as ga, cY as Ca, c_ as Da, d3 as La, e3 as Pa, dP as Ea, cP as Ma, cX as fa, dR as ya, d4 as Ia, d6 as wa, d7 as Oa, d5 as ka, d8 as Wa, df as Ba, d9 as xa, db as Na, dc as Va, da as Ha, dd as Qa, dj as _a, dh as Ua, di as Ka, cW as za, cV as Ga, bL as ja, dy as qa, du as Ja, dx as Xa, dv as Ya, dw as Za, dz as $a, cL as es, cI as as, dB as ss, dC as os, dE as ts, dF as is, dG as rs, dD as cs, e4 as ns, b6 as us, cS as ls, cK as ds, cQ as ps, b4 as Ss, cZ as bs, cl as As, bK as Fs, c$ as ms, de as vs, ab as Rs, aU as hs, c0 as Ts, c9 as gs, aY as Cs, aZ as Ds, a_ as Ls, a$ as Ps, b0 as Es, b7 as Ms, b9 as fs, by as ys, ba as Is, bb as ws, bz as Os, bd as ks, bV as Ws, cf as Bs, bW as xs, cg as Ns, bA as Vs, be as Hs, bf as Qs, bB as _s, bC as Us, cp as Ks, cw as zs, b8 as Gs, bg as js, bh as qs, bj as Js, bk as Xs, bE as Ys, bF as Zs, ah as $s, ak as eo, al as ao, aG as so, aD as oo, aC as to, aE as io, aB as ro, an as co, ad as no, am as uo, ao as lo, ap as po, aq as So, ai as bo, ar as Ao, as as Fo, at as mo, aF as vo, aH as Ro, au as ho, av as To, aw as go, aI as Co, ax as Do, ay as Lo, az as Po, aA as Eo, aj as Mo, bl as fo, c1 as yo, bn as Io, co as wo, bX as Oo, e5 as ko, ae as Wo, ac as Bo, bo as xo, br as No, bs as Vo, bY as Ho, bt as Qo, bu as _o, bG as Uo, bH as Ko, aV as zo, aW as Go, bv as jo, bx as qo, cx as Jo, bS as Xo, bT as Yo, bc as Zo, bU as $o, bZ as et, bm as at, bI as st, cy as ot, c2 as tt, c4 as it, c3 as rt, c5 as ct, c6 as nt, c7 as ut, c8 as lt, ca as dt, cc as pt, cd as St, ce as bt, bJ as At, ci as Ft, ck as mt, aJ as vt, aK as Rt, aL as ht, aM as Tt, aN as gt, aO as Ct, aS as Dt, aP as Lt, aQ as Pt, aT as Et, aR as Mt, cn as ft, bi as yt, bM as It, u as wt, cs as Ot, cz as kt, cq as Wt, bP as Bt, ct as xt, cu as Nt, cv as Vt, bQ as Ht, aX as Qt } from "./index-CPsauqxc.js";
|
|
3
3
|
const s = e.dirname;
|
|
4
4
|
export {
|
|
5
5
|
i as ActionMenuItem,
|