@omnia/fx 8.0.174-dev → 8.0.175-dev
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/internal-do-not-import-from-here/core/services/ServiceLocator.d.ts +1 -0
- package/internal-do-not-import-from-here/manifests/omnia.fx.ux.libs.manifest.json +1 -1
- package/internal-do-not-import-from-here/services/FileStorageService.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/ColorPicker.d.ts +45 -24
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +341 -0
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +341 -0
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/inputfield/InputField.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/SlidePanel.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/blocks/velcron/useVelcronStateManager.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/velcron/core/models/Effects.d.ts +324 -0
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +1 -3
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronState.d.ts +15 -23
- package/internal-do-not-import-from-here/ux/velcron/core/models/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/VelcronEditorBuilder.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/old/state/VelcronColorSchemaBuilder.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/BlueprintEditor.d.ts +1 -22
- package/internal-do-not-import-from-here/ux/velcron/stores/useVelcronStateManager.d.ts +4 -1
- package/package.json +2 -2
@@ -14,6 +14,7 @@ export declare class ServiceLocator {
|
|
14
14
|
*/
|
15
15
|
static overrideServiceProvider: (provider: IServiceLocationProvider) => void;
|
16
16
|
static getUrl: (serviceId: GuidValue, useHttpsSchema?: boolean, type?: ServiceLocatorUrlType, allowExternalServiceProvider?: boolean) => string;
|
17
|
+
static hasValidServiceUrl: (url: string) => boolean;
|
17
18
|
static replaceTokenWithDns: (content: string) => string;
|
18
19
|
static replaceDnsWithToken: (content: string) => string;
|
19
20
|
static generateToken: (serviceId: GuidValue) => string;
|
@@ -1 +1 @@
|
|
1
|
-
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['0fe5c5f2-8d89-485b-afd4-36fe3ff5943a']","content":{"./node_modules/@formkit/auto-animate/vue/index.mjs":{"id":"./node_modules/@formkit/auto-animate/vue/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@material-design-icons/font/index.css":{"id":"./node_modules/@material-design-icons/font/index.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@material/material-color-utilities/dist/index.js":{"id":"./node_modules/@material/material-color-utilities/dist/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}}
|
1
|
+
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['0fe5c5f2-8d89-485b-afd4-36fe3ff5943a']","content":{"./node_modules/@formkit/auto-animate/vue/index.mjs":{"id":"./node_modules/@formkit/auto-animate/vue/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@material-design-icons/font/index.css":{"id":"./node_modules/@material-design-icons/font/index.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@material/material-color-utilities/dist/index.js":{"id":"./node_modules/@material/material-color-utilities/dist/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}}}}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { FileMetadata,
|
1
|
+
import { FileMetadata, IFileReference, IPersistedFile } from "../models";
|
2
2
|
export declare class FileStorageService<T extends FileMetadata> {
|
3
3
|
private serviceContainerContext;
|
4
4
|
private extensionHttpClients;
|
@@ -9,6 +9,10 @@ export declare class FileStorageService<T extends FileMetadata> {
|
|
9
9
|
uploadFile(metadata: T, content: Blob): Promise<IPersistedFile<T>>;
|
10
10
|
updateFile(fileToUpdate: IPersistedFile<T>, content: Blob): Promise<IPersistedFile<T>>;
|
11
11
|
getFileUrl(fileRef: IFileReference, fileDownloadName?: string): string;
|
12
|
+
getFileOpenUrl(fileRef: IFileReference, fileDownloadName?: string): string;
|
13
|
+
getOpenUrl(url: string): string;
|
14
|
+
private internalGetOpenUrl;
|
15
|
+
private isValidFileStorageUrl;
|
12
16
|
private getHttpClientForServiceId;
|
13
17
|
private getBaseUrl;
|
14
18
|
private getQueryString;
|
package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/ColorPicker.d.ts
CHANGED
@@ -26,6 +26,11 @@ declare const _default: {
|
|
26
26
|
switchableColorSchema: {
|
27
27
|
type: import("vue").PropType<boolean>;
|
28
28
|
};
|
29
|
+
opacity: {
|
30
|
+
type: import("vue").PropType<boolean>;
|
31
|
+
} & {
|
32
|
+
type: import("vue").PropType<boolean>;
|
33
|
+
};
|
29
34
|
"custom-color": {
|
30
35
|
type: import("vue").PropType<boolean>;
|
31
36
|
};
|
@@ -59,7 +64,7 @@ declare const _default: {
|
|
59
64
|
};
|
60
65
|
"v-model": {
|
61
66
|
type: import("vue").PropType<ColorValue>;
|
62
|
-
required: false;
|
67
|
+
required: false;
|
63
68
|
};
|
64
69
|
modelValue: {
|
65
70
|
type: import("vue").PropType<ColorValue>;
|
@@ -69,7 +74,7 @@ declare const _default: {
|
|
69
74
|
type: import("vue").PropType<(value: ColorValue) => any>;
|
70
75
|
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
71
76
|
type: import("vue").PropType<ColorValue>;
|
72
|
-
required: false;
|
77
|
+
required: false;
|
73
78
|
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
74
79
|
type: import("vue").PropType<ColorValue>;
|
75
80
|
required: false;
|
@@ -81,7 +86,7 @@ declare const _default: {
|
|
81
86
|
} & {
|
82
87
|
"v-model": {
|
83
88
|
type: import("vue").PropType<ColorValue>;
|
84
|
-
required: false;
|
89
|
+
required: false;
|
85
90
|
};
|
86
91
|
} & {
|
87
92
|
modelValue: {
|
@@ -96,7 +101,7 @@ declare const _default: {
|
|
96
101
|
} & {
|
97
102
|
"v-model": {
|
98
103
|
type: import("vue").PropType<ColorValue>;
|
99
|
-
required: false;
|
104
|
+
required: false;
|
100
105
|
};
|
101
106
|
} & {
|
102
107
|
modelValue: {
|
@@ -111,7 +116,7 @@ declare const _default: {
|
|
111
116
|
} & {
|
112
117
|
"v-model": {
|
113
118
|
type: import("vue").PropType<ColorValue>;
|
114
|
-
required: false;
|
119
|
+
required: false;
|
115
120
|
};
|
116
121
|
} & {
|
117
122
|
modelValue: {
|
@@ -161,6 +166,11 @@ declare const _default: {
|
|
161
166
|
switchableColorSchema: {
|
162
167
|
type: import("vue").PropType<boolean>;
|
163
168
|
};
|
169
|
+
opacity: {
|
170
|
+
type: import("vue").PropType<boolean>;
|
171
|
+
} & {
|
172
|
+
type: import("vue").PropType<boolean>;
|
173
|
+
};
|
164
174
|
"custom-color": {
|
165
175
|
type: import("vue").PropType<boolean>;
|
166
176
|
};
|
@@ -194,7 +204,7 @@ declare const _default: {
|
|
194
204
|
};
|
195
205
|
"v-model": {
|
196
206
|
type: import("vue").PropType<ColorValue>;
|
197
|
-
required: false;
|
207
|
+
required: false;
|
198
208
|
};
|
199
209
|
modelValue: {
|
200
210
|
type: import("vue").PropType<ColorValue>;
|
@@ -204,7 +214,7 @@ declare const _default: {
|
|
204
214
|
type: import("vue").PropType<(value: ColorValue) => any>;
|
205
215
|
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
206
216
|
type: import("vue").PropType<ColorValue>;
|
207
|
-
required: false;
|
217
|
+
required: false;
|
208
218
|
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
209
219
|
type: import("vue").PropType<ColorValue>;
|
210
220
|
required: false;
|
@@ -216,7 +226,7 @@ declare const _default: {
|
|
216
226
|
} & {
|
217
227
|
"v-model": {
|
218
228
|
type: import("vue").PropType<ColorValue>;
|
219
|
-
required: false;
|
229
|
+
required: false;
|
220
230
|
};
|
221
231
|
} & {
|
222
232
|
modelValue: {
|
@@ -231,7 +241,7 @@ declare const _default: {
|
|
231
241
|
} & {
|
232
242
|
"v-model": {
|
233
243
|
type: import("vue").PropType<ColorValue>;
|
234
|
-
required: false;
|
244
|
+
required: false;
|
235
245
|
};
|
236
246
|
} & {
|
237
247
|
modelValue: {
|
@@ -246,7 +256,7 @@ declare const _default: {
|
|
246
256
|
} & {
|
247
257
|
"v-model": {
|
248
258
|
type: import("vue").PropType<ColorValue>;
|
249
|
-
required: false;
|
259
|
+
required: false;
|
250
260
|
};
|
251
261
|
} & {
|
252
262
|
modelValue: {
|
@@ -303,6 +313,11 @@ declare const _default: {
|
|
303
313
|
switchableColorSchema: {
|
304
314
|
type: import("vue").PropType<boolean>;
|
305
315
|
};
|
316
|
+
opacity: {
|
317
|
+
type: import("vue").PropType<boolean>;
|
318
|
+
} & {
|
319
|
+
type: import("vue").PropType<boolean>;
|
320
|
+
};
|
306
321
|
"custom-color": {
|
307
322
|
type: import("vue").PropType<boolean>;
|
308
323
|
};
|
@@ -336,7 +351,7 @@ declare const _default: {
|
|
336
351
|
};
|
337
352
|
"v-model": {
|
338
353
|
type: import("vue").PropType<ColorValue>;
|
339
|
-
required: false;
|
354
|
+
required: false;
|
340
355
|
};
|
341
356
|
modelValue: {
|
342
357
|
type: import("vue").PropType<ColorValue>;
|
@@ -346,7 +361,7 @@ declare const _default: {
|
|
346
361
|
type: import("vue").PropType<(value: ColorValue) => any>;
|
347
362
|
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
348
363
|
type: import("vue").PropType<ColorValue>;
|
349
|
-
required: false;
|
364
|
+
required: false;
|
350
365
|
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
351
366
|
type: import("vue").PropType<ColorValue>;
|
352
367
|
required: false;
|
@@ -358,7 +373,7 @@ declare const _default: {
|
|
358
373
|
} & {
|
359
374
|
"v-model": {
|
360
375
|
type: import("vue").PropType<ColorValue>;
|
361
|
-
required: false;
|
376
|
+
required: false;
|
362
377
|
};
|
363
378
|
} & {
|
364
379
|
modelValue: {
|
@@ -373,7 +388,7 @@ declare const _default: {
|
|
373
388
|
} & {
|
374
389
|
"v-model": {
|
375
390
|
type: import("vue").PropType<ColorValue>;
|
376
|
-
required: false;
|
391
|
+
required: false;
|
377
392
|
};
|
378
393
|
} & {
|
379
394
|
modelValue: {
|
@@ -388,7 +403,7 @@ declare const _default: {
|
|
388
403
|
} & {
|
389
404
|
"v-model": {
|
390
405
|
type: import("vue").PropType<ColorValue>;
|
391
|
-
required: false;
|
406
|
+
required: false;
|
392
407
|
};
|
393
408
|
} & {
|
394
409
|
modelValue: {
|
@@ -442,6 +457,11 @@ declare const _default: {
|
|
442
457
|
switchableColorSchema: {
|
443
458
|
type: import("vue").PropType<boolean>;
|
444
459
|
};
|
460
|
+
opacity: {
|
461
|
+
type: import("vue").PropType<boolean>;
|
462
|
+
} & {
|
463
|
+
type: import("vue").PropType<boolean>;
|
464
|
+
};
|
445
465
|
"custom-color": {
|
446
466
|
type: import("vue").PropType<boolean>;
|
447
467
|
};
|
@@ -475,7 +495,7 @@ declare const _default: {
|
|
475
495
|
};
|
476
496
|
"v-model": {
|
477
497
|
type: import("vue").PropType<ColorValue>;
|
478
|
-
required: false;
|
498
|
+
required: false;
|
479
499
|
};
|
480
500
|
modelValue: {
|
481
501
|
type: import("vue").PropType<ColorValue>;
|
@@ -485,7 +505,7 @@ declare const _default: {
|
|
485
505
|
type: import("vue").PropType<(value: ColorValue) => any>;
|
486
506
|
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
487
507
|
type: import("vue").PropType<ColorValue>;
|
488
|
-
required: false;
|
508
|
+
required: false;
|
489
509
|
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
490
510
|
type: import("vue").PropType<ColorValue>;
|
491
511
|
required: false;
|
@@ -497,7 +517,7 @@ declare const _default: {
|
|
497
517
|
} & {
|
498
518
|
"v-model": {
|
499
519
|
type: import("vue").PropType<ColorValue>;
|
500
|
-
required: false;
|
520
|
+
required: false;
|
501
521
|
};
|
502
522
|
} & {
|
503
523
|
modelValue: {
|
@@ -512,7 +532,7 @@ declare const _default: {
|
|
512
532
|
} & {
|
513
533
|
"v-model": {
|
514
534
|
type: import("vue").PropType<ColorValue>;
|
515
|
-
required: false;
|
535
|
+
required: false;
|
516
536
|
};
|
517
537
|
} & {
|
518
538
|
modelValue: {
|
@@ -527,7 +547,7 @@ declare const _default: {
|
|
527
547
|
} & {
|
528
548
|
"v-model": {
|
529
549
|
type: import("vue").PropType<ColorValue>;
|
530
|
-
required: false;
|
550
|
+
required: false;
|
531
551
|
};
|
532
552
|
} & {
|
533
553
|
modelValue: {
|
@@ -564,7 +584,7 @@ declare const _default: {
|
|
564
584
|
} & {
|
565
585
|
[x: `v-model:${string}`]: {
|
566
586
|
type: import("vue").PropType<ColorValue>;
|
567
|
-
required: false;
|
587
|
+
required: false;
|
568
588
|
};
|
569
589
|
} & {
|
570
590
|
[x: string]: {
|
@@ -579,7 +599,7 @@ declare const _default: {
|
|
579
599
|
} & {
|
580
600
|
"v-model": {
|
581
601
|
type: import("vue").PropType<ColorValue>;
|
582
|
-
required: false;
|
602
|
+
required: false;
|
583
603
|
};
|
584
604
|
} & {
|
585
605
|
modelValue: {
|
@@ -594,7 +614,7 @@ declare const _default: {
|
|
594
614
|
} & {
|
595
615
|
"v-model": {
|
596
616
|
type: import("vue").PropType<ColorValue>;
|
597
|
-
required: false;
|
617
|
+
required: false;
|
598
618
|
};
|
599
619
|
} & {
|
600
620
|
modelValue: {
|
@@ -609,7 +629,7 @@ declare const _default: {
|
|
609
629
|
} & {
|
610
630
|
"v-model": {
|
611
631
|
type: import("vue").PropType<ColorValue>;
|
612
|
-
required: false;
|
632
|
+
required: false;
|
613
633
|
};
|
614
634
|
} & {
|
615
635
|
modelValue: {
|
@@ -620,6 +640,7 @@ declare const _default: {
|
|
620
640
|
};
|
621
641
|
container?: boolean;
|
622
642
|
label?: string;
|
643
|
+
opacity?: boolean;
|
623
644
|
disabled?: boolean;
|
624
645
|
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
625
646
|
toned?: boolean;
|