@omnia/fx 8.0.33-dev → 8.0.34-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/shared/models/hub/activities/ActivityFeed.d.ts +8 -2
- package/internal-do-not-import-from-here/shared/models/hub/activities/IdentityActivity.d.ts +5 -2
- package/internal-do-not-import-from-here/shared/models/theming/TypographyDefinition.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/services/ActivityService.d.ts +1 -5
- package/internal-do-not-import-from-here/ux/admin/store/AdminStore.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/app/AppInstanceToken.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/app/AppInstanceTokenProvider.d.ts +1 -4
- package/internal-do-not-import-from-here/ux/app/index.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/hub/feed/HubFeed.d.ts +9 -12
- package/internal-do-not-import-from-here/ux/hub/feed/components/SenderItem.d.ts +17 -28
- package/internal-do-not-import-from-here/ux/hub/feed/stores/ActivityFeedStore.d.ts +23 -25
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutColumnRenderer.d.ts +17 -16
- package/internal-do-not-import-from-here/ux/letteravatar/LetterAvatar.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/oxide/datepicker/DatePicker.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/theming-v2/TypographyDefinitionStore.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/definitions/typography/blades/TypographyDefinitionBlade.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/definitions/typography/blades/TypographyDefinitionBlade.d.ts +17 -17
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/definitions/typography/blades/TypographySettingsBlade.d.ts +1829 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/definitions/typography/blades/TypographysBlade.d.ts +17 -17
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/TypographyTypes.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/TypographyTypes.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/TypographyTypes.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +4 -0
- package/package.json +2 -2
- /package/internal-do-not-import-from-here/ux/layoutcanvas/apis/{PlaceHolderRegistrationApis.d.ts → PlaceHolderApis.d.ts} +0 -0
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { Guid, TypographyDefinition } from "@omnia/fx-models";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): {
|
4
4
|
$: import("vue").ComponentInternalInstance;
|
@@ -50,8 +50,8 @@ declare const _default: {
|
|
50
50
|
}>) => void)[];
|
51
51
|
readonly bladeId?: Guid;
|
52
52
|
readonly "blade-id"?: Guid;
|
53
|
-
"onAdd:
|
54
|
-
"onEdit:
|
53
|
+
"onAdd:typography"?: () => any;
|
54
|
+
"onEdit:typography"?: (value: TypographyDefinition) => any;
|
55
55
|
};
|
56
56
|
$attrs: {
|
57
57
|
[x: string]: unknown;
|
@@ -64,7 +64,7 @@ declare const _default: {
|
|
64
64
|
}>;
|
65
65
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
66
66
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
67
|
-
$emit: ((event: "add:
|
67
|
+
$emit: ((event: "add:typography") => void) & ((event: "edit:typography", value: TypographyDefinition) => void);
|
68
68
|
$el: any;
|
69
69
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
70
70
|
"blade-id": {
|
@@ -74,11 +74,11 @@ declare const _default: {
|
|
74
74
|
type: import("vue").PropType<Guid>;
|
75
75
|
};
|
76
76
|
}>> & {
|
77
|
-
"onAdd:
|
78
|
-
"onEdit:
|
77
|
+
"onAdd:typography"?: () => any;
|
78
|
+
"onEdit:typography"?: (value: TypographyDefinition) => any;
|
79
79
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
80
|
-
"add:
|
81
|
-
"edit:
|
80
|
+
"add:typography": () => boolean;
|
81
|
+
"edit:typography": (value: TypographyDefinition) => boolean;
|
82
82
|
}, string, {}, {}, string, {}> & {
|
83
83
|
beforeCreate?: (() => void) | (() => void)[];
|
84
84
|
created?: (() => void) | (() => void)[];
|
@@ -107,8 +107,8 @@ declare const _default: {
|
|
107
107
|
type: import("vue").PropType<Guid>;
|
108
108
|
};
|
109
109
|
}>> & {
|
110
|
-
"onAdd:
|
111
|
-
"onEdit:
|
110
|
+
"onAdd:typography"?: () => any;
|
111
|
+
"onEdit:typography"?: (value: TypographyDefinition) => any;
|
112
112
|
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
113
113
|
__isFragment?: never;
|
114
114
|
__isTeleport?: never;
|
@@ -121,18 +121,18 @@ declare const _default: {
|
|
121
121
|
type: import("vue").PropType<Guid>;
|
122
122
|
};
|
123
123
|
}>> & {
|
124
|
-
"onAdd:
|
125
|
-
"onEdit:
|
124
|
+
"onAdd:typography"?: () => any;
|
125
|
+
"onEdit:typography"?: (value: TypographyDefinition) => any;
|
126
126
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
127
|
-
"add:
|
128
|
-
"edit:
|
127
|
+
"add:typography": () => boolean;
|
128
|
+
"edit:typography": (value: TypographyDefinition) => boolean;
|
129
129
|
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
130
130
|
propsDefinition: Omit<Readonly<{} & {
|
131
131
|
bladeId?: Guid;
|
132
132
|
"blade-id"?: Guid;
|
133
|
-
}>, "onAdd:
|
134
|
-
"onAdd:
|
135
|
-
"onEdit:
|
133
|
+
}>, "onAdd:typography" | "onEdit:typography"> & {
|
134
|
+
"onAdd:typography"?: () => any;
|
135
|
+
"onEdit:typography"?: (value: TypographyDefinition) => any;
|
136
136
|
};
|
137
137
|
};
|
138
138
|
export default _default;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { Guid, TypographyDefinition } from "@omnia/fx-models";
|
2
2
|
export declare class DefaultTypography implements TypographyDefinition {
|
3
3
|
id: Guid;
|
4
|
+
name: string;
|
4
5
|
title: {
|
5
6
|
xl: {
|
6
7
|
large: {
|
@@ -97,6 +98,7 @@ export declare class DefaultTypography implements TypographyDefinition {
|
|
97
98
|
}
|
98
99
|
export declare class PreviewTypography implements TypographyDefinition {
|
99
100
|
id: Guid;
|
101
|
+
name: string;
|
100
102
|
title: {
|
101
103
|
xl: {
|
102
104
|
large: {
|
@@ -194,6 +196,7 @@ export declare class PreviewTypography implements TypographyDefinition {
|
|
194
196
|
};
|
195
197
|
}
|
196
198
|
export declare class PreviewMiniTypography implements TypographyDefinition {
|
199
|
+
name: string;
|
197
200
|
id: Guid;
|
198
201
|
title: {
|
199
202
|
xl: {
|
@@ -14,6 +14,7 @@ export declare function useIcons(): {
|
|
14
14
|
adjust: FontAwesomeIcon;
|
15
15
|
archive: FontAwesomeIcon;
|
16
16
|
back: FontAwesomeIcon;
|
17
|
+
blueprint: FontAwesomeIcon;
|
17
18
|
businessProfile: FontAwesomeIcon;
|
18
19
|
clone: FontAwesomeIcon;
|
19
20
|
clipboard: FontAwesomeIcon;
|
@@ -26,6 +27,7 @@ export declare function useIcons(): {
|
|
26
27
|
crop: FontAwesomeIcon;
|
27
28
|
code: FontAwesomeIcon;
|
28
29
|
color: FontAwesomeIcon;
|
30
|
+
colorSchema: FontAwesomeIcon;
|
29
31
|
copy: FontAwesomeIcon;
|
30
32
|
delete: FontAwesomeIcon;
|
31
33
|
discard: FontAwesomeIcon;
|
@@ -59,6 +61,7 @@ export declare function useIcons(): {
|
|
59
61
|
targeting: FontAwesomeIcon;
|
60
62
|
tenant: FontAwesomeIcon;
|
61
63
|
trend: FontAwesomeIcon;
|
64
|
+
theme: FontAwesomeIcon;
|
62
65
|
redo: FontAwesomeIcon;
|
63
66
|
remove: FontAwesomeIcon;
|
64
67
|
reject: FontAwesomeIcon;
|
@@ -69,6 +72,7 @@ export declare function useIcons(): {
|
|
69
72
|
styles: FontAwesomeIcon;
|
70
73
|
spacing: FontAwesomeIcon;
|
71
74
|
template: FontAwesomeIcon;
|
75
|
+
typography: FontAwesomeIcon;
|
72
76
|
theming: FontAwesomeIcon;
|
73
77
|
velcron: FontAwesomeIcon;
|
74
78
|
versionHistory: FontAwesomeIcon;
|
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.34-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.34-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|