@omnia/fx 8.0.343-dev → 8.0.344-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/admin/system/submenu/seo/loc/localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/seo/services/SeoService.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/admin/system/submenu/seo/store/SeoManagerStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonStylePicker.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/ColorSchemaPicker.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/ColorSchemaViewer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/demo/DemoBlock.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/aurora/components/textstylepicker/TextStylePicker.css.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/aurora/components/themepreview/ComponentPreview_bak.d.ts +15 -0
- package/internal-do-not-import-from-here/ux/aurora/components/typography/TypographyPicker.css.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/aurora/components/typography/TypographyPicker.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/docs/Docs.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/docs/designpatterns/PatternDesicriptions.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/docs/designpatterns/SelectionWithBlades.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/docs/designpatterns/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/models/SeoInfo.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/form/Form.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/picker/Picker.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/oxide/picker/PickerSelection.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/snackbar/Snackbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/user/UserTokenProvider.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/user/loc/localize.d.ts +3 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +10 -0
- package/package.json +2 -2
package/internal-do-not-import-from-here/ux/admin/system/submenu/seo/services/SeoService.d.ts
CHANGED
@@ -4,5 +4,5 @@ import { SeoBasicInfo, SeoDetail } from "@omnia/fx/ux";
|
|
4
4
|
export declare function useSeoService(): {
|
5
5
|
fetchAll: (itemQuery: ItemQuery) => Promise<ItemQueryResult<SeoBasicInfo>>;
|
6
6
|
getNewSnapShot: (path: string) => Promise<void>;
|
7
|
-
getDetail: (path: string) => Promise<ApiResponse<SeoDetail>>;
|
7
|
+
getDetail: (path: string) => Promise<ApiResponse<SeoDetail[]>>;
|
8
8
|
};
|
package/internal-do-not-import-from-here/ux/admin/system/submenu/seo/store/SeoManagerStore.d.ts
CHANGED
@@ -8,7 +8,7 @@ export declare const useSEOManager: () => {
|
|
8
8
|
get: {
|
9
9
|
readonly snapshotInfos: SeoBasicInfo[];
|
10
10
|
readonly snapshotInfo: SeoBasicInfo;
|
11
|
-
readonly snapshotDetail: SeoDetail;
|
11
|
+
readonly snapshotDetail: SeoDetail[];
|
12
12
|
readonly dateFormat: string;
|
13
13
|
readonly regionalSettings: TenantRegionalSettings;
|
14
14
|
readonly itemLimit: number;
|
@@ -25,7 +25,7 @@ export declare const useSEOManager: () => {
|
|
25
25
|
* Trigger omnia to try to get new snapshot of this page
|
26
26
|
*/
|
27
27
|
forceGetNewSnapshot(snapshotInfo: SeoBasicInfo): Promise<void>;
|
28
|
-
getSeoDetailAsync(path: string): Promise<SeoDetail>;
|
28
|
+
getSeoDetailAsync(path: string): Promise<SeoDetail[]>;
|
29
29
|
ensureLoadSnapshotDetail(): Promise<void>;
|
30
30
|
}>;
|
31
31
|
} & {
|
package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonStylePicker.d.ts
CHANGED
@@ -7,6 +7,10 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
7
7
|
modelValue?: ButtonBlueprint | ButtonBlueprintVariant;
|
8
8
|
} & {
|
9
9
|
label?: string;
|
10
|
+
} & {
|
11
|
+
placeholder?: string;
|
12
|
+
} & {
|
13
|
+
toned?: boolean;
|
10
14
|
} & {
|
11
15
|
customStyling?: boolean;
|
12
16
|
} & {
|
@@ -15,6 +15,9 @@ declare const _default: {
|
|
15
15
|
title: {
|
16
16
|
type: import("vue").PropType<string>;
|
17
17
|
};
|
18
|
+
placeholder: {
|
19
|
+
type: import("vue").PropType<string>;
|
20
|
+
};
|
18
21
|
label: {
|
19
22
|
type: import("vue").PropType<string>;
|
20
23
|
};
|
@@ -148,6 +151,9 @@ declare const _default: {
|
|
148
151
|
title: {
|
149
152
|
type: import("vue").PropType<string>;
|
150
153
|
};
|
154
|
+
placeholder: {
|
155
|
+
type: import("vue").PropType<string>;
|
156
|
+
};
|
151
157
|
label: {
|
152
158
|
type: import("vue").PropType<string>;
|
153
159
|
};
|
@@ -274,6 +280,9 @@ declare const _default: {
|
|
274
280
|
title: {
|
275
281
|
type: import("vue").PropType<string>;
|
276
282
|
};
|
283
|
+
placeholder: {
|
284
|
+
type: import("vue").PropType<string>;
|
285
|
+
};
|
277
286
|
label: {
|
278
287
|
type: import("vue").PropType<string>;
|
279
288
|
};
|
@@ -468,6 +477,7 @@ declare const _default: {
|
|
468
477
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
469
478
|
"v-model"?: "background" | "primary" | "secondary" | "accent1" | ColorSchema | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic" | ColorSchemaTypes;
|
470
479
|
toned?: boolean;
|
480
|
+
placeholder?: string;
|
471
481
|
defaultColorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
472
482
|
enableDynamicColor?: boolean;
|
473
483
|
customSchema?: boolean;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ColorSchema } from "@omnia/fx-models";
|
2
|
-
type Variant = "default" | "toolbar" | "palette" | "card-preview" | "button";
|
2
|
+
type Variant = "default" | "toolbar" | "palette" | "card-preview" | "button" | "swatch";
|
3
3
|
declare const _default: {
|
4
4
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
5
5
|
class: {
|
File without changes
|
package/internal-do-not-import-from-here/ux/aurora/components/themepreview/ComponentPreview_bak.d.ts
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
import { ThemeContextType, ResolvedThemeDefinition } from "@omnia/fx-models";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
3
|
+
"emit:update:modelValue": (value: ResolvedThemeDefinition) => void;
|
4
|
+
} & {
|
5
|
+
"v-model"?: ResolvedThemeDefinition;
|
6
|
+
} & {
|
7
|
+
modelValue?: ResolvedThemeDefinition;
|
8
|
+
} & {
|
9
|
+
themeType?: ThemeContextType;
|
10
|
+
} & {
|
11
|
+
hideColorSchemas?: boolean;
|
12
|
+
} & {
|
13
|
+
toned?: boolean;
|
14
|
+
}>) => any;
|
15
|
+
export default _default;
|
@@ -38,6 +38,7 @@ export declare const builtInDocumeantionAreas: {
|
|
38
38
|
velcron: DocumentationArea;
|
39
39
|
bestPractice: DocumentationArea;
|
40
40
|
theming: DocumentationArea;
|
41
|
+
patterns: DocumentationArea;
|
41
42
|
};
|
42
43
|
export declare const builtInDocumentationCategories: {
|
43
44
|
containment: DocumentationCategory;
|
@@ -70,6 +71,10 @@ export declare const bestPracticesCategories: {
|
|
70
71
|
export declare const themingCategories: {
|
71
72
|
preview: DocumentationCategory;
|
72
73
|
};
|
74
|
+
export declare const designPatternCategories: {
|
75
|
+
blades: DocumentationCategory;
|
76
|
+
selection: DocumentationCategory;
|
77
|
+
};
|
73
78
|
export interface ComponentSpecRegistration {
|
74
79
|
spec: DocumentationSpec;
|
75
80
|
category: DocumentationCategory;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const spec: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -9,6 +9,7 @@ export declare const identityRendererStyles: {
|
|
9
9
|
};
|
10
10
|
};
|
11
11
|
smallPresenceStatus: {
|
12
|
+
width: string;
|
12
13
|
$nest: {
|
13
14
|
".v-badge__badge": {
|
14
15
|
padding: string;
|
@@ -72,6 +73,7 @@ declare const _default: {
|
|
72
73
|
};
|
73
74
|
};
|
74
75
|
smallPresenceStatus: {
|
76
|
+
width: string;
|
75
77
|
$nest: {
|
76
78
|
".v-badge__badge": {
|
77
79
|
padding: string;
|
@@ -161,6 +163,7 @@ declare const _default: {
|
|
161
163
|
};
|
162
164
|
};
|
163
165
|
smallPresenceStatus: {
|
166
|
+
width: string;
|
164
167
|
$nest: {
|
165
168
|
".v-badge__badge": {
|
166
169
|
padding: string;
|
@@ -247,6 +250,7 @@ declare const _default: {
|
|
247
250
|
};
|
248
251
|
};
|
249
252
|
smallPresenceStatus: {
|
253
|
+
width: string;
|
250
254
|
$nest: {
|
251
255
|
".v-badge__badge": {
|
252
256
|
padding: string;
|
@@ -294,6 +298,7 @@ declare const _default: {
|
|
294
298
|
};
|
295
299
|
};
|
296
300
|
smallPresenceStatus: {
|
301
|
+
width: string;
|
297
302
|
$nest: {
|
298
303
|
".v-badge__badge": {
|
299
304
|
padding: string;
|
@@ -1,4 +1,4 @@
|
|
1
1
|
import { DefinePropTheming, DefineProp } from "@omnia/fx/ux";
|
2
|
-
type FormProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"label", string, false, null>;
|
2
|
+
type FormProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"label", string, false, null> & DefineProp<"toned", boolean, false, null>;
|
3
3
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<FormProps>) => any;
|
4
4
|
export default _default;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { DefineProp, DefinePropTheming, DefineSlot, DefineVModel } from "@omnia/fx/ux";
|
2
2
|
import { InputBlueprint } from "@omnia/fx/models";
|
3
3
|
import { VNodeChild } from "vue";
|
4
|
-
type
|
4
|
+
type PickerVariant = "dialog" | "picker";
|
5
|
+
type PickerProps = DefinePropTheming & DefineVModel<"", any, false, null, false, "The v-model of the component"> & DefineProp<"class", String | String[]> & DefineProp<"variant", PickerVariant> & DefineProp<"label", string, false, null, "Sets the text of the component."> & DefineProp<"placeholder", string, false, null, "Sets the placeholder of the component."> & DefineProp<"blueprint", InputBlueprint, false, null, "Sets a custom blueprint for the text."> & DefineProp<"disabled", boolean, false, null, "Sets the component to disabled"> & DefineProp<"toned", boolean, false, null, "Sets the component to disabled"> & DefineProp<"visibleOnContentClick", boolean, false, null, "Sets the component to disabled"> & DefineSlot<"selectionRenderer", () => VNodeChild> & DefineSlot<"activator", () => VNodeChild>;
|
5
6
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<PickerProps>) => any;
|
6
7
|
export default _default;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { DefineEmit, DefineProp, DefinePropTheming, DefineVModel } from "@omnia/fx/ux";
|
2
2
|
import { InputBlueprint } from "@omnia/fx/models";
|
3
|
-
type PickerSelectionProps = DefinePropTheming & DefineVModel<"", any, false, null, false, "The v-model of the component"> & DefineProp<"class", String | String[]> & DefineProp<"label", string, false, null, "Sets the text of the component."> & DefineProp<"blueprint", InputBlueprint, false, null, "Sets a custom blueprint for the text."> & DefineProp<"disabled", boolean, false, null, "Sets the component to disabled"> & DefineProp<"clearable", boolean, false, null, "If a clear icon can be shown"> & DefineProp<"toned", boolean, false, null, "Sets the component to disabled"> & DefineEmit<"click:clear", () => void>;
|
3
|
+
type PickerSelectionProps = DefinePropTheming & DefineVModel<"", any, false, null, false, "The v-model of the component"> & DefineProp<"class", String | String[]> & DefineProp<"label", string, false, null, "Sets the text of the component."> & DefineProp<"blueprint", InputBlueprint, false, null, "Sets a custom blueprint for the text."> & DefineProp<"grid", boolean, false, null, "Sets the component to disabled"> & DefineProp<"disabled", boolean, false, null, "Sets the component to disabled"> & DefineProp<"clearable", boolean, false, null, "If a clear icon can be shown"> & DefineProp<"toned", boolean, false, null, "Sets the component to disabled"> & DefineEmit<"click:clear", () => void>;
|
4
4
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<PickerSelectionProps>) => any;
|
5
5
|
export default _default;
|
@@ -1,4 +1,4 @@
|
|
1
1
|
import { DefineProp, DefinePropTheming, DefineVModel } from "@omnia/fx/ux";
|
2
|
-
type SnackbarProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineVModel<"", boolean, false, null, true, "The v-model of the component"> & DefineProp<"text", string, false, null, "The text to be displayed in the snack bar.">;
|
2
|
+
type SnackbarProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineVModel<"", boolean, false, null, true, "The v-model of the component"> & DefineProp<"text", string, false, null, "The text to be displayed in the snack bar."> & DefineProp<"timeout", string | number, false, 1500, "Time (in milliseconds) to wait until snackbar is automatically hidden. Use -1 to keep open indefinitely.">;
|
3
3
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<SnackbarProps>) => any;
|
4
4
|
export default _default;
|
@@ -144,6 +144,7 @@ import wcbd6cd82aabef42e7bf60679c7d5fb470 from './ux/wizard/WizardComponent';
|
|
144
144
|
import wcde36ccd3a3064b0ea8f5865e65521e41 from '../../fx-sp/internal-do-not-import-from-here/ux/appwithspaliasinput/AppWithSharePointAliasInput';
|
145
145
|
import wc28d15a1179a04eaa9f2e82abe15f7177 from '../../fx-sp/internal-do-not-import-from-here/ux/filterengine/TaxonomyPropertyRenderer';
|
146
146
|
import wcb1fca92af8524970b426823cf7ef65b5 from '../../fx-sp/internal-do-not-import-from-here/ux/filterengine/SelectionsAreaTaxonomyRenderer';
|
147
|
+
import wc4584d438a74748ab9ae5f9f4f431673f from '../../fx-sp/internal-do-not-import-from-here/ux/listtree/ListTree';
|
147
148
|
import wc8000658f96504040b6194f7e887665a7 from '../../fx-sp/internal-do-not-import-from-here/ux/queryfilterbuilder/QueryFilterBuilder';
|
148
149
|
import wccff151bfd6e24f2fbacd02bba0fffe1f from '../../fx-sp/internal-do-not-import-from-here/ux/targetingfilter/TargetingFilter';
|
149
150
|
import wcdae567bb2f1846abad5c0adaa64945cf from '../../fx-sp/internal-do-not-import-from-here/ux/termitem/SharePointTermItemComponent';
|
@@ -2132,6 +2133,15 @@ declare global {
|
|
2132
2133
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2133
2134
|
};
|
2134
2135
|
} : typeof wc07fdbc119d7742769eafe5f45ce14e18;
|
2136
|
+
"list": {
|
2137
|
+
"tree": typeof wc4584d438a74748ab9ae5f9f4f431673f extends {
|
2138
|
+
propsDefinition: infer TProp;
|
2139
|
+
} ? {
|
2140
|
+
new (...args: any[]): {
|
2141
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2142
|
+
};
|
2143
|
+
} : typeof wc4584d438a74748ab9ae5f9f4f431673f;
|
2144
|
+
};
|
2135
2145
|
"term": {
|
2136
2146
|
"item": typeof wcdae567bb2f1846abad5c0adaa64945cf extends {
|
2137
2147
|
propsDefinition: infer TProp;
|
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.344-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": "Omnia Digital Workplace AB",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.344-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|