@omnia/fx 8.0.40-dev → 8.0.41-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/ux/appprovisioning/appinstanceprogressblade/AppInstanceProgressBlade.d.ts +196 -20
- package/internal-do-not-import-from-here/ux/appprovisioning/appinstanceprogressblade/IAppInstanceProgressBlade.d.ts +0 -12
- package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstanceCompletedStepVueComponent.d.ts +245 -42
- package/internal-do-not-import-from-here/ux/appprovisioning/components/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/icon/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/magiclink/MagicLinkSuccess.d.ts +47 -0
- package/internal-do-not-import-from-here/ux/magiclink/loc/localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.css.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +18 -0
- package/internal-do-not-import-from-here/ux/oxide/progress/Progress.d.ts +14 -0
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +14 -0
- package/internal-do-not-import-from-here/ux/urlinput/UrlInputLegacy.d.ts +342 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/VelcronContentEditor.d.ts +14 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/SocialText.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/models/VelcronDefinitionIds.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/store/ContentEditorStore.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/DefinitionPicker.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +21 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +18 -4
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/icon/IconPresets.d.ts +0 -6
- /package/internal-do-not-import-from-here/ux/magiclink/{MagicLink.d.ts → MagicLinkFailure.d.ts} +0 -0
@@ -17,6 +17,7 @@ export declare const useVelcronContentEditorStore: () => {
|
|
17
17
|
toggleColorSchemaPreview: VelcronColorSchemaState;
|
18
18
|
toggleDefinitionPreview: VelcronDefinition;
|
19
19
|
onGoingDragging: boolean;
|
20
|
+
socialMode: boolean;
|
20
21
|
};
|
21
22
|
events: {
|
22
23
|
onMutatedDefinitions: import("@omnia/fx").MessageBusExposeOnlySubscription<ContentDefinitionRegistration[]>;
|
@@ -27,6 +28,7 @@ export declare const useVelcronContentEditorStore: () => {
|
|
27
28
|
onMutatedToggleColorSchemaPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronColorSchemaState>;
|
28
29
|
onMutatedToggleDefinitionPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronDefinition>;
|
29
30
|
onMutatedOnGoingDragging: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
31
|
+
onMutatedSocialMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
30
32
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
31
33
|
actions: {
|
32
34
|
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { TypographySize, TypographyType, VelcronImageRatios } from "@omnia/fx-models";
|
1
|
+
import { TypographySize, TypographyType, VelcronImageRatios, VelcronSpacing } from "@omnia/fx-models";
|
2
2
|
export interface ResolvedPropertyEditor {
|
3
3
|
editor: VelcronPropertyEditor;
|
4
4
|
}
|
@@ -85,6 +85,10 @@ export interface VelcronState {
|
|
85
85
|
content?: VelcronContentState;
|
86
86
|
header?: VelcronHeaderState;
|
87
87
|
properties?: VelcronPropertiesState;
|
88
|
+
spacing?: VelcronSpacingState;
|
89
|
+
}
|
90
|
+
export interface VelcronSpacingState {
|
91
|
+
chrome?: VelcronSpacing;
|
88
92
|
}
|
89
93
|
export interface VelcronHeaderState {
|
90
94
|
title?: VelcronTextState;
|
@@ -196,6 +200,14 @@ export declare const VelcronColorSchemasStateBinding: {
|
|
196
200
|
filled: string;
|
197
201
|
};
|
198
202
|
};
|
203
|
+
export declare const VelcronSpacingStateBinding: {
|
204
|
+
chrome: {
|
205
|
+
top: string;
|
206
|
+
right: string;
|
207
|
+
bottom: string;
|
208
|
+
left: string;
|
209
|
+
};
|
210
|
+
};
|
199
211
|
export declare const VelcronStateBinding: {
|
200
212
|
colorSchemas: {
|
201
213
|
main: {
|
@@ -266,4 +278,12 @@ export declare const VelcronStateBinding: {
|
|
266
278
|
};
|
267
279
|
icon: string;
|
268
280
|
};
|
281
|
+
spacing: {
|
282
|
+
chrome: {
|
283
|
+
top: string;
|
284
|
+
right: string;
|
285
|
+
bottom: string;
|
286
|
+
left: string;
|
287
|
+
};
|
288
|
+
};
|
269
289
|
};
|
@@ -55,7 +55,8 @@ import wcdfefc1520763443190e92700bad98412 from './ux/imagegrid/ImageGrid';
|
|
55
55
|
import wc91919b3f54de42dab709575b8a9ca233 from './ux/inputlanguagepicker/InputLanguagePicker';
|
56
56
|
import wc20b4e8166fb44f2b8b240724eb5f2db2 from './ux/languagepicker/LanguagePicker';
|
57
57
|
import wc6c2ac8bf4da44a2b8e544eaf5b42099f from './ux/limited-label/LimitedLabel';
|
58
|
-
import
|
58
|
+
import wc168b37eb8cbc4e46944cbf9a6a5e9063 from './ux/magiclink/MagicLinkSuccess';
|
59
|
+
import wcd836de74ad894f4999e21046b1ba2cab from './ux/magiclink/MagicLinkFailure';
|
59
60
|
import wc744b3f31e00c4815b63ecaf638ad7a7a from './ux/markdown/MarkdownEditor';
|
60
61
|
import wcc8b990d01ddc45ab930b4409fc406435 from './ux/markdown/MarkdownRenderer';
|
61
62
|
import wce9bb3179713943d787e139cedf749838 from './ux/mediapickerimage/MediaPickerImage';
|
@@ -120,6 +121,7 @@ import wc6c400e11caad44bf8d174b145b6f122d from './ux/app/management/tabs/layouts
|
|
120
121
|
import wc211ad37d3c1747c2a3fce889a433ebaa from './ux/app/management/tabs/namingpolicies/NamingPolicyTab';
|
121
122
|
import wc20bd8ac81b314379a3676ca3b31c720e from './ux/app/management/components/TabsManagement';
|
122
123
|
import wc0edb482876244660a11456d63e31b847 from './ux/appprovisioning/appimageinput/AppImageInput';
|
124
|
+
import wc24eddd6df7294957a8f31c89115945de from './ux/appprovisioning/appinstanceprogressblade/AppInstanceProgressBlade';
|
123
125
|
import wcf4841dc16bb3406985428b109cb3e048 from './ux/appprovisioning/apppropertiesinput/AppPropertiesInput';
|
124
126
|
import wc22d04b93a87c44d290da28f58d163eeb from './ux/appprovisioning/approuteinput/AppRouteInput';
|
125
127
|
import wc8e21d658d6f84d70870d29805b27df86 from './ux/appprovisioning/appshowinpubliclistingsinput/AppShowInPublicListingsInput';
|
@@ -397,7 +399,8 @@ declare global {
|
|
397
399
|
"omfx-input-language-picker": typeof wc91919b3f54de42dab709575b8a9ca233.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc91919b3f54de42dab709575b8a9ca233.propsDefinition>;
|
398
400
|
"omfx-language-picker": typeof wc20b4e8166fb44f2b8b240724eb5f2db2.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc20b4e8166fb44f2b8b240724eb5f2db2.propsDefinition>;
|
399
401
|
"omfx-limited-label": typeof wc6c2ac8bf4da44a2b8e544eaf5b42099f.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc6c2ac8bf4da44a2b8e544eaf5b42099f.propsDefinition>;
|
400
|
-
"omfx-magiclink": typeof
|
402
|
+
"omfx-magiclink-success": typeof wc168b37eb8cbc4e46944cbf9a6a5e9063.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc168b37eb8cbc4e46944cbf9a6a5e9063.propsDefinition>;
|
403
|
+
"omfx-magiclink-failure": typeof wcd836de74ad894f4999e21046b1ba2cab.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcd836de74ad894f4999e21046b1ba2cab.propsDefinition>;
|
401
404
|
"omfx-markdown-editor": typeof wc744b3f31e00c4815b63ecaf638ad7a7a.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc744b3f31e00c4815b63ecaf638ad7a7a.propsDefinition>;
|
402
405
|
"omfx-markdown-renderer": typeof wcc8b990d01ddc45ab930b4409fc406435.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcc8b990d01ddc45ab930b4409fc406435.propsDefinition>;
|
403
406
|
"omfx-media-picker-image": typeof wce9bb3179713943d787e139cedf749838.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wce9bb3179713943d787e139cedf749838.propsDefinition>;
|
@@ -462,6 +465,7 @@ declare global {
|
|
462
465
|
"omfx-app-management-namingpolicy-tab": typeof wc211ad37d3c1747c2a3fce889a433ebaa.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc211ad37d3c1747c2a3fce889a433ebaa.propsDefinition>;
|
463
466
|
"omfx-tab-management": typeof wc20bd8ac81b314379a3676ca3b31c720e.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc20bd8ac81b314379a3676ca3b31c720e.propsDefinition>;
|
464
467
|
"omfx-app-image-input": typeof wc0edb482876244660a11456d63e31b847.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc0edb482876244660a11456d63e31b847.propsDefinition>;
|
468
|
+
"omfx-appinstance-progress-blade": typeof wc24eddd6df7294957a8f31c89115945de.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc24eddd6df7294957a8f31c89115945de.propsDefinition>;
|
465
469
|
"omfx-app-properties-input": typeof wcf4841dc16bb3406985428b109cb3e048.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcf4841dc16bb3406985428b109cb3e048.propsDefinition>;
|
466
470
|
"omfx-app-route-input": typeof wc22d04b93a87c44d290da28f58d163eeb.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc22d04b93a87c44d290da28f58d163eeb.propsDefinition>;
|
467
471
|
"omfx-app-show-in-public-listings-input": typeof wc8e21d658d6f84d70870d29805b27df86.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc8e21d658d6f84d70870d29805b27df86.propsDefinition>;
|
@@ -961,9 +965,14 @@ declare global {
|
|
961
965
|
$props: typeof wc6c2ac8bf4da44a2b8e544eaf5b42099f.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc6c2ac8bf4da44a2b8e544eaf5b42099f.propsDefinition>;
|
962
966
|
};
|
963
967
|
};
|
964
|
-
"
|
968
|
+
"MagiclinkSuccess": {
|
965
969
|
new (...args: any[]): {
|
966
|
-
$props: typeof
|
970
|
+
$props: typeof wc168b37eb8cbc4e46944cbf9a6a5e9063.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc168b37eb8cbc4e46944cbf9a6a5e9063.propsDefinition>;
|
971
|
+
};
|
972
|
+
};
|
973
|
+
"MagiclinkFailure": {
|
974
|
+
new (...args: any[]): {
|
975
|
+
$props: typeof wcd836de74ad894f4999e21046b1ba2cab.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcd836de74ad894f4999e21046b1ba2cab.propsDefinition>;
|
967
976
|
};
|
968
977
|
};
|
969
978
|
"MarkdownEditor": {
|
@@ -1286,6 +1295,11 @@ declare global {
|
|
1286
1295
|
$props: typeof wc0edb482876244660a11456d63e31b847.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc0edb482876244660a11456d63e31b847.propsDefinition>;
|
1287
1296
|
};
|
1288
1297
|
};
|
1298
|
+
"AppinstanceProgressBlade": {
|
1299
|
+
new (...args: any[]): {
|
1300
|
+
$props: typeof wc24eddd6df7294957a8f31c89115945de.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc24eddd6df7294957a8f31c89115945de.propsDefinition>;
|
1301
|
+
};
|
1302
|
+
};
|
1289
1303
|
"AppPropertiesInput": {
|
1290
1304
|
new (...args: any[]): {
|
1291
1305
|
$props: typeof wcf4841dc16bb3406985428b109cb3e048.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcf4841dc16bb3406985428b109cb3e048.propsDefinition>;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.41-dev",
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
],
|
21
21
|
"author": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.41-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|
/package/internal-do-not-import-from-here/ux/magiclink/{MagicLink.d.ts → MagicLinkFailure.d.ts}
RENAMED
File without changes
|