@omnia/fx 8.0.310-dev → 8.0.313-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/index.d.ts +0 -3
- package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
- package/internal-do-not-import-from-here/rules/DisplayRules.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/DefineStore.d.ts +6 -6
- package/internal-do-not-import-from-here/stores/TargetingPropertyStore.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/StyleFlow.d.ts +220 -0
- package/internal-do-not-import-from-here/ux/Styles.stylex.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/admin/chrome/AdminChrome.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderRenderer.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/aurora/designkits/shared/BlueprintsTemplates.d.ts +3 -45
- package/internal-do-not-import-from-here/ux/aurora/designkits/shared/ThemeDefinitionInstance.d.ts +7 -14
- package/internal-do-not-import-from-here/ux/aurora/store/ComponentBlueprintStore.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/aurora/store/ThemeContextStore.d.ts +36 -0
- package/internal-do-not-import-from-here/ux/aurora/store/ThemeStore.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/commandpalette/commands/api-explorer/models/ApiSpec.d.ts +5 -4
- package/internal-do-not-import-from-here/ux/commandpalette/commands/api-explorer/specs/HubApiSpec.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/commandpalette/commands/api-explorer/specs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/commandpalette/commands/api-explorer/stores/ApiExplorerStore.d.ts +22 -28
- package/internal-do-not-import-from-here/ux/confirmdialog/ConfirmDialog.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/dialog/Dialog.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/tagsproperty/TagsPropertyDisplay.d.ts +35 -27
- package/internal-do-not-import-from-here/ux/journey/stores/JourneyRouterStore.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider-V2/Handler.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider-V2/PexelProvider.d.ts +1 -15
- package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/timepicker/TimePicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview_v2.d.ts +58 -0
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview_v2.stylex.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Alignment/Alignment.d.ts +1 -15
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Alignment/AlignmentToolbar.d.ts +1 -15
- package/internal-do-not-import-from-here/ux/signin/loc/localize.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/texttranslator/TextTranslator.d.ts +3 -84
- package/internal-do-not-import-from-here/ux/velcron/core/models/Enums.d.ts +2 -1
- package/internal-do-not-import-from-here/vue/VueApp.d.ts +2 -6
- package/internal-do-not-import-from-here/wctypings.d.ts +27 -1
- package/package.json +2 -2
@@ -1,86 +1,5 @@
|
|
1
|
+
import { DefineProp, DefineEmit } from "@omnia/fx/ux";
|
1
2
|
import { LanguageTags, IIcon } from "../../models";
|
2
|
-
|
3
|
-
|
4
|
-
icon: {
|
5
|
-
type: import("vue").PropType<IIcon>;
|
6
|
-
};
|
7
|
-
forceTenantLanguages: {
|
8
|
-
type: import("vue").PropType<boolean>;
|
9
|
-
required: false;
|
10
|
-
};
|
11
|
-
srcLanguage: {
|
12
|
-
type: import("vue").PropType<LanguageTags>;
|
13
|
-
};
|
14
|
-
text: {
|
15
|
-
type: import("vue").PropType<string>;
|
16
|
-
};
|
17
|
-
}>> & {
|
18
|
-
onDoc$?: (description?: string) => any;
|
19
|
-
onTranslateCompleted?: (result: string) => any;
|
20
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
21
|
-
translateCompleted: (result: string) => void;
|
22
|
-
doc$(description?: string): {
|
23
|
-
translateCompleted: (result: string) => void;
|
24
|
-
};
|
25
|
-
}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
26
|
-
P: {};
|
27
|
-
B: {};
|
28
|
-
D: {};
|
29
|
-
C: {};
|
30
|
-
M: {};
|
31
|
-
Defaults: {};
|
32
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
33
|
-
icon: {
|
34
|
-
type: import("vue").PropType<IIcon>;
|
35
|
-
};
|
36
|
-
forceTenantLanguages: {
|
37
|
-
type: import("vue").PropType<boolean>;
|
38
|
-
required: false;
|
39
|
-
};
|
40
|
-
srcLanguage: {
|
41
|
-
type: import("vue").PropType<LanguageTags>;
|
42
|
-
};
|
43
|
-
text: {
|
44
|
-
type: import("vue").PropType<string>;
|
45
|
-
};
|
46
|
-
}>> & {
|
47
|
-
onDoc$?: (description?: string) => any;
|
48
|
-
onTranslateCompleted?: (result: string) => any;
|
49
|
-
}, () => JSX.Element, {}, {}, {}, {}>;
|
50
|
-
__isFragment?: never;
|
51
|
-
__isTeleport?: never;
|
52
|
-
__isSuspense?: never;
|
53
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
54
|
-
icon: {
|
55
|
-
type: import("vue").PropType<IIcon>;
|
56
|
-
};
|
57
|
-
forceTenantLanguages: {
|
58
|
-
type: import("vue").PropType<boolean>;
|
59
|
-
required: false;
|
60
|
-
};
|
61
|
-
srcLanguage: {
|
62
|
-
type: import("vue").PropType<LanguageTags>;
|
63
|
-
};
|
64
|
-
text: {
|
65
|
-
type: import("vue").PropType<string>;
|
66
|
-
};
|
67
|
-
}>> & {
|
68
|
-
onDoc$?: (description?: string) => any;
|
69
|
-
onTranslateCompleted?: (result: string) => any;
|
70
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
71
|
-
translateCompleted: (result: string) => void;
|
72
|
-
doc$(description?: string): {
|
73
|
-
translateCompleted: (result: string) => void;
|
74
|
-
};
|
75
|
-
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
76
|
-
propsDefinition: Omit<Readonly<{} & {
|
77
|
-
text?: string;
|
78
|
-
icon?: IIcon;
|
79
|
-
srcLanguage?: LanguageTags;
|
80
|
-
forceTenantLanguages?: boolean;
|
81
|
-
}>, "onDoc$" | "onTranslateCompleted"> & {
|
82
|
-
onDoc$?: (description?: string) => any;
|
83
|
-
onTranslateCompleted?: (result: string) => any;
|
84
|
-
};
|
85
|
-
};
|
3
|
+
type TextTranslatorProps = DefineProp<"text", string> & DefineProp<"srcLanguage", LanguageTags> & DefineProp<"forceTenantLanguages", boolean, false, false> & DefineProp<"icon", IIcon> & DefineEmit<"translateCompleted", (result: string) => void>;
|
4
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<TextTranslatorProps>) => any;
|
86
5
|
export default _default;
|
@@ -1,7 +1,3 @@
|
|
1
|
-
import {
|
2
|
-
|
3
|
-
export declare function getVueApps(): Set<App<Element>>;
|
4
|
-
export declare function destroyVueApp(app: App<Element>): void;
|
5
|
-
export declare function createVueApp(rootComponent: any, rootProps?: any): App<Element>;
|
6
|
-
export declare function registerAsyncVueComponent(app: App, component: ComponentBundleManifest): void;
|
1
|
+
import { DefineComponent } from "vue";
|
2
|
+
export declare function createVueApp(rootComponent: any, rootProps?: any): import("vue").App<Element>;
|
7
3
|
export declare function resolveAsyncVueComponent(elementName: string, definition: DefineComponent): void;
|
@@ -320,6 +320,7 @@ import wc7b2cf06ba1cf47f7adcc6d8a1a0117f0 from './ux/oxide/timepicker/TimePicker
|
|
320
320
|
import wc575bd9ad6c0d4fc9ab53fbd1b93786c4 from './ux/oxide/toolbar/Toolbar';
|
321
321
|
import wc19adb19938604f41b10f3a00eb3eb534 from './ux/oxide/tooltip/Tooltip';
|
322
322
|
import wcc617a9d7e25249929c41becb55905973 from './ux/oxide/treeview/Treeview';
|
323
|
+
import wcd9216ea897894e7bb6f3f1ff13015966 from './ux/oxide/treeview/Treeview_v2';
|
323
324
|
import wc1e7fa637f4914cbeb9ceb6d577fec150 from './ux/oxide/validation/Validation';
|
324
325
|
import wc87d2f5f7fa15440ba71dbb642b0dcf38 from './ux/post/templates/PostTemplate';
|
325
326
|
import wc8270a3e368484538870b0bc4a6654234 from './ux/properties/block/PropertyBlock';
|
@@ -396,6 +397,7 @@ import wcd9508940e4fc434687528eb890ae70e9 from './ux/commandpalette/commands/api
|
|
396
397
|
import wc4fc2b52f62484d5caced1c31f7ead58b from './ux/enterpriseproperties/display/datafield/DataFieldDisplay';
|
397
398
|
import wc8bb3a534205140f58cea8130e5b10715 from './ux/enterpriseproperties/display/datetimefield/DatetimeFieldDisplay';
|
398
399
|
import wc08f6ee02c5d94b648f630ec352fdd94c from './ux/enterpriseproperties/display/personfield/PersonFieldDisplay';
|
400
|
+
import wc1cb9cb57345b41c3bae66e9bab8cf454 from './ux/enterpriseproperties/display/tagsproperty/TagsPropertyDisplay';
|
399
401
|
import wcbb27e780de41442fa9cab8cef6c71100 from './ux/enterpriseproperties/edit/datafield/DataFieldEdit';
|
400
402
|
import wcf689d794d21e48389aa2504cc5798d65 from './ux/enterpriseproperties/edit/datetimefield/DateTimeFieldEdit';
|
401
403
|
import wc4a5ec32ee02846e7b89b47a710a0268a from './ux/enterpriseproperties/edit/personfield/PersonFieldEdit';
|
@@ -477,6 +479,7 @@ import wcb197c5e805cc4d6bb3d012e258560b31 from './ux/velcron/components/definiti
|
|
477
479
|
import wcdabd67ab338243858fe7d1ca24399995 from './ux/velcron/components/propertieseditor/VelcronPropertiesEditor';
|
478
480
|
import wc4683b11ac40a45aa8c2be12812ab1f1c from './ux/velcron/components/propertieseditor/VelcronStatePropertiesEditor';
|
479
481
|
import wc5688474abe554cabb34c696620eb6be1 from './ux/velcron/renderer/editors/PropertyEditorCreator';
|
482
|
+
import wc5f2b027f921049a4ac00fca5864d84ed from '../../fx-sp/internal-do-not-import-from-here/ux/enterpriseproperties/display/enterprisekeywordsfield/EnterpriseKeywordsFieldDisplay';
|
480
483
|
import wc9c02218206624a9dbc979d23148f5d83 from '../../fx-sp/internal-do-not-import-from-here/ux/enterpriseproperties/display/taxonomyfield/TaxonomyFieldDisplay';
|
481
484
|
import wceda3a2e37278443899fcdc1e9dd694f4 from '../../fx-sp/internal-do-not-import-from-here/ux/enterpriseproperties/settings/taxonomyfield/TaxonomyFieldSettings';
|
482
485
|
import wcdb625bea89b04f32a946efe7a887c7f2 from '../../fx-sp/internal-do-not-import-from-here/ux/filterengine/components/settings/TaxonomyPropertySettings';
|
@@ -3964,6 +3967,13 @@ declare global {
|
|
3964
3967
|
} : typeof wc4a5ec32ee02846e7b89b47a710a0268a;
|
3965
3968
|
};
|
3966
3969
|
"tags": {
|
3970
|
+
"display": typeof wc1cb9cb57345b41c3bae66e9bab8cf454 extends {
|
3971
|
+
propsDefinition: infer TProp;
|
3972
|
+
} ? {
|
3973
|
+
new (...args: any[]): {
|
3974
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
3975
|
+
};
|
3976
|
+
} : typeof wc1cb9cb57345b41c3bae66e9bab8cf454;
|
3967
3977
|
"edit": typeof wc65c3c7b9916e4243b56436166f2c94ae extends {
|
3968
3978
|
propsDefinition: infer TProp;
|
3969
3979
|
} ? {
|
@@ -3992,6 +4002,15 @@ declare global {
|
|
3992
4002
|
} : typeof wc4ecc566131194348b7ec8495a06d4fd6;
|
3993
4003
|
};
|
3994
4004
|
};
|
4005
|
+
"enterprisekeywords": {
|
4006
|
+
"display": typeof wc5f2b027f921049a4ac00fca5864d84ed extends {
|
4007
|
+
propsDefinition: infer TProp;
|
4008
|
+
} ? {
|
4009
|
+
new (...args: any[]): {
|
4010
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
4011
|
+
};
|
4012
|
+
} : typeof wc5f2b027f921049a4ac00fca5864d84ed;
|
4013
|
+
};
|
3995
4014
|
"taxonomy": {
|
3996
4015
|
"display": typeof wc9c02218206624a9dbc979d23148f5d83 extends {
|
3997
4016
|
propsDefinition: infer TProp;
|
@@ -5222,13 +5241,20 @@ declare global {
|
|
5222
5241
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5223
5242
|
};
|
5224
5243
|
} : typeof wc19adb19938604f41b10f3a00eb3eb534;
|
5225
|
-
"
|
5244
|
+
"treeviewold": typeof wcc617a9d7e25249929c41becb55905973 extends {
|
5226
5245
|
propsDefinition: infer TProp;
|
5227
5246
|
} ? {
|
5228
5247
|
new (...args: any[]): {
|
5229
5248
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5230
5249
|
};
|
5231
5250
|
} : typeof wcc617a9d7e25249929c41becb55905973;
|
5251
|
+
"treeview": typeof wcd9216ea897894e7bb6f3f1ff13015966 extends {
|
5252
|
+
propsDefinition: infer TProp;
|
5253
|
+
} ? {
|
5254
|
+
new (...args: any[]): {
|
5255
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5256
|
+
};
|
5257
|
+
} : typeof wcd9216ea897894e7bb6f3f1ff13015966;
|
5232
5258
|
"validation": typeof wc1e7fa637f4914cbeb9ceb6d577fec150 extends {
|
5233
5259
|
propsDefinition: infer TProp;
|
5234
5260
|
} ? {
|
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.313-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.313-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|