@omnia/fx-models 8.0.38-dev → 8.0.39-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/ManifestIds.d.ts +2 -0
- package/ManifestIds.js +6 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/ActivityFeed.d.ts +4 -1
- package/internal-do-not-import-from-here/shared/models/hub/activities/IdentityActivity.d.ts +4 -0
- package/internal-do-not-import-from-here/velcron/core/models/VelcronDefinitions.d.ts +9 -0
- package/oxide/OxideTypeDefinitions.d.ts +10 -1
- package/oxide/OxideTypeDefinitions.js +9 -3
- package/package.json +1 -1
package/ManifestIds.d.ts
CHANGED
|
@@ -344,6 +344,8 @@ export declare class OmniaWebComponentManifests {
|
|
|
344
344
|
static get FxUxContentDialog(): Guid;
|
|
345
345
|
static get FxUxLikeComponent(): Guid;
|
|
346
346
|
static get FxUxReactionStyle(): Guid;
|
|
347
|
+
static get FxUxReactionsComponent(): Guid;
|
|
348
|
+
static get FxUxReactionsStyle(): Guid;
|
|
347
349
|
static get FxUxLikeListingTemplate(): Guid;
|
|
348
350
|
static get FxUxPostLikeListingTemplate(): Guid;
|
|
349
351
|
static get FxUxPermissionInput(): Guid;
|
package/ManifestIds.js
CHANGED
|
@@ -1052,6 +1052,12 @@ class OmniaWebComponentManifests {
|
|
|
1052
1052
|
static get FxUxReactionStyle() {
|
|
1053
1053
|
return new models_1.Guid("fedec5cb-43c8-4704-bd1b-8d28b4f3ea7d");
|
|
1054
1054
|
}
|
|
1055
|
+
static get FxUxReactionsComponent() {
|
|
1056
|
+
return new models_1.Guid("dc26034a-ad99-4c5c-8ec6-992d317df993");
|
|
1057
|
+
}
|
|
1058
|
+
static get FxUxReactionsStyle() {
|
|
1059
|
+
return new models_1.Guid("21de9a37-3c95-4753-aaf9-be02c3f3aba9");
|
|
1060
|
+
}
|
|
1055
1061
|
static get FxUxLikeListingTemplate() {
|
|
1056
1062
|
return new models_1.Guid("0e7c1787-22cb-4110-8b47-40dbc788b4ee");
|
|
1057
1063
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Activity, ActivityId, ActivityWithJson } from "./Activity";
|
|
2
2
|
import { ActivityRenderer, ActivityRendererId, ActivityRendererWithJson } from "./ActivityRenderer";
|
|
3
3
|
import { ActivitySenderId } from "./ActivitySender";
|
|
4
|
-
import { IdentityActivity, IdentityActivityWithJson, NewActivitiesBySenderBase } from "./IdentityActivity";
|
|
4
|
+
import { ActivityCategoryCount, IdentityActivity, IdentityActivityCategory, IdentityActivityWithJson, NewActivitiesBySenderBase } from "./IdentityActivity";
|
|
5
5
|
export interface ActivityFeed extends ActivityFeedBase {
|
|
6
6
|
renderers: {
|
|
7
7
|
[key: ActivityRendererId]: ActivityRenderer;
|
|
@@ -20,10 +20,13 @@ export interface ActivityFeedBase {
|
|
|
20
20
|
newActivities: Array<NewActivitiesBySenderBase>;
|
|
21
21
|
nextStartingFromId: ActivityId;
|
|
22
22
|
recentSenders: Array<ActivitySenderId>;
|
|
23
|
+
categories: Array<ActivityCategoryCount>;
|
|
23
24
|
}
|
|
24
25
|
export interface FeedQuery {
|
|
25
26
|
newerThenId?: ActivityId;
|
|
26
27
|
olderThenId?: ActivityId;
|
|
27
28
|
filterBySenderId?: ActivitySenderId;
|
|
29
|
+
filterByCategory?: IdentityActivityCategory;
|
|
28
30
|
includeRecentSenders?: number;
|
|
31
|
+
includeCategories?: boolean;
|
|
29
32
|
}
|
|
@@ -16,6 +16,7 @@ export interface BuiltInComponentRenderers {
|
|
|
16
16
|
"card": unknown;
|
|
17
17
|
"text": unknown;
|
|
18
18
|
"image": unknown;
|
|
19
|
+
"video": unknown;
|
|
19
20
|
"button": unknown;
|
|
20
21
|
"text-input": unknown;
|
|
21
22
|
"progress-circle": unknown;
|
|
@@ -241,6 +242,14 @@ export interface VelcronImageDefinition extends VelcronDefinition {
|
|
|
241
242
|
borderRadius?: VelcronDimensions;
|
|
242
243
|
events?: VelcronOnPressEvent;
|
|
243
244
|
}
|
|
245
|
+
export interface VelcronVideoDefinition extends VelcronDefinition {
|
|
246
|
+
type: "video";
|
|
247
|
+
url?: VelcronBindableProp<string>;
|
|
248
|
+
bind?: VelcronBindableProp<string>;
|
|
249
|
+
aspectRatio?: VelcronBindableProp<"16:9" | "4:3" | "1:1">;
|
|
250
|
+
autoplay?: VelcronBindableProp<boolean>;
|
|
251
|
+
muted?: VelcronBindableProp<boolean>;
|
|
252
|
+
}
|
|
244
253
|
export interface VelcronButtonDefinition extends VelcronDefinition {
|
|
245
254
|
type: "button";
|
|
246
255
|
text: string;
|
|
@@ -52,6 +52,9 @@ export declare const OColValuesName = "OColValues";
|
|
|
52
52
|
export declare const OAlignmentTypeDefinitions: readonly ["end", "center", "start", "baseline", "stretch", "auto"];
|
|
53
53
|
export type OAlignmentTypes = typeof OAlignmentTypeDefinitions[number];
|
|
54
54
|
export declare const OAlignmentTypesName = "OAlignmentTypes";
|
|
55
|
+
export declare const OColumnVariantDefinitions: readonly ["default", "grid"];
|
|
56
|
+
export type OColumnVariants = typeof OColumnVariantDefinitions[number];
|
|
57
|
+
export declare const OColumnVariantsName = "OColumnVariants";
|
|
55
58
|
/** Dialog */
|
|
56
59
|
export declare const ODialogTypeDefinitions: readonly ["save-cancel", "confirm", "ok-cancel", "default", "app", "retry"];
|
|
57
60
|
export type ODialogTypes = typeof ODialogTypeDefinitions[number];
|
|
@@ -104,7 +107,7 @@ export declare const ONavigationDrawerLocationsName = "ONavigationDrawerLocation
|
|
|
104
107
|
export declare const ONavigationDrawerVariantDefinitions: readonly ["default", "app", "editor", "dialog"];
|
|
105
108
|
export type ONavigationDrawerVariants = typeof ONavigationDrawerVariantDefinitions[number];
|
|
106
109
|
export declare const ONavigationDrawerVariantsName = "ONavigationDrawerVariants";
|
|
107
|
-
/** Panel */
|
|
110
|
+
/** Panel/Flex */
|
|
108
111
|
export declare const ODividerTypeDefinitions: readonly ["top", "bottom", "left", "right"];
|
|
109
112
|
export type ODividerTypes = typeof ODividerTypeDefinitions[number];
|
|
110
113
|
export declare const ODividerTypesName = "ODividerTypes";
|
|
@@ -122,9 +125,15 @@ export declare const OPanelDirectionsName = "OPanelDirections";
|
|
|
122
125
|
export declare const OHorizontalAlignmentDefinitions: readonly ["left", "center", "right"];
|
|
123
126
|
export type OHorizontalAlignments = typeof OHorizontalAlignmentDefinitions[number];
|
|
124
127
|
export declare const OHorizontalAlignmentsName = "OHorizontalAlignments";
|
|
128
|
+
export declare const OTabAlignmentDefinitions: readonly ["start", "center", "end"];
|
|
129
|
+
export type OTabAlignments = typeof OTabAlignmentDefinitions[number];
|
|
130
|
+
export declare const OTabAlignmentsName = "OTabAlignments";
|
|
125
131
|
export declare const OVerticalAlignmentDefinitions: readonly ["top", "center", "bottom"];
|
|
126
132
|
export type OVerticalAlignments = typeof OVerticalAlignmentDefinitions[number];
|
|
127
133
|
export declare const OVerticalAlignmentsName = "OVerticalAlignments";
|
|
134
|
+
export declare const OFlexVariantDefinitions: readonly ["default", "grid"];
|
|
135
|
+
export type OFlexVariants = typeof OFlexVariantDefinitions[number];
|
|
136
|
+
export declare const OFlexVariantsName = "OFlexVariants";
|
|
128
137
|
/** Select */
|
|
129
138
|
export declare const OSelectTypeDefinitions: readonly ["default", "add", "picker", "combobox"];
|
|
130
139
|
export type OSelectTypes = typeof OSelectTypeDefinitions[number];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.OLazyVariationDefinitions = exports.OInfiniteScrollStatusDefinitions = exports.ODatePickerVariantsName = exports.ODatePickerVariationDefinitions = exports.ODraggableVariantsName = exports.ODraggableVariationDefinitions = exports.OToolbarVariantsName = exports.OToolbarVariationDefinitions = exports.OTextBoxTypesName = exports.OTextBoxTypeDefinitions = exports.OTextBoxVariantTypesName = exports.OTextBoxVariantTypeDefinitions = exports.OTabVariantsName = exports.OTabVariantDefinitions = exports.OScrollOffsetTypesName = exports.OScrollOffsetTypeDefinitions = exports.OSkeletonLoaderName = exports.OSkeletonLoaderTypeDefinitions = exports.OSelectTypesName = exports.OSelectTypeDefinitions = exports.OVerticalAlignmentsName = exports.OVerticalAlignmentDefinitions = exports.OHorizontalAlignmentsName = exports.OHorizontalAlignmentDefinitions = exports.OPanelDirectionsName = exports.OPanelDirectionDefinitions = exports.OPanelVariantsName = exports.OPanelVariantDefinitions = exports.OPaddingTypesName = exports.OPaddingTypeDefinitions = exports.ODividerTypesName = exports.ODividerTypeDefinitions = exports.ONavigationDrawerVariantsName = exports.ONavigationDrawerVariantDefinitions = exports.ONavigationDrawerLocationsName = exports.ONavigationDrawerLocationDefinitions = exports.OMenuLocationsName = exports.OMenuLocationDefinitions = void 0;
|
|
3
|
+
exports.OListTypesName = exports.OListTypeDefinitions = exports.OListItemVariantsName = exports.OListItemVariantDefinitions = exports.ORatioTypesName = exports.ORatioTypeDefinitions = exports.OIconVariantsName = exports.OIconVariantDefinitions = exports.OIconAnimationsName = exports.OIconAnimationsDefinition = exports.OIconSizesName = exports.OIconSizeDefinitions = exports.OIconPresetsName = exports.OIconPresetDefinitions = exports.OPanelTypesName = exports.OPanelTypeDefinitions = exports.OPageDividerTypesName = exports.OPageDividerTypeDefinitions = exports.ODialogSizeDefinitions = exports.ODialogTypesName = exports.ODialogTypeDefinitions = exports.OColumnVariantsName = exports.OColumnVariantDefinitions = exports.OAlignmentTypesName = exports.OAlignmentTypeDefinitions = exports.OColValuesName = exports.OColValueDefinitions = exports.OButtonGroupTypesName = exports.OButtonGroupTypeDefinitions = exports.OButtonVariantsName = exports.OButtonVariantDefinitions = exports.OButtonPresetsName = exports.OButtonPresetDefinitions = exports.OAlertTypesName = exports.OAlertTypeDefinitions = exports.OAppBarTypesName = exports.OAppBarTypeDefinitions = exports.OProgressSizeTypesName = exports.OProgressSizeTypeDefinitions = exports.OProgressVariantsName = exports.OProgressVariantDefinitions = exports.OProgressTypesName = exports.OProgressTypeDefinitions = exports.OSliderVariantsName = exports.OSliderVariantDefinitions = exports.ODirectionTypesName = exports.ODirectionDefinitions = exports.OContentHeightDefinitions = exports.OSizeTypesName = exports.OSizeTypeDefinitions = void 0;
|
|
4
|
+
exports.OLazyVariationDefinitions = exports.OInfiniteScrollStatusDefinitions = exports.ODatePickerVariantsName = exports.ODatePickerVariationDefinitions = exports.ODraggableVariantsName = exports.ODraggableVariationDefinitions = exports.OToolbarVariantsName = exports.OToolbarVariationDefinitions = exports.OTextBoxTypesName = exports.OTextBoxTypeDefinitions = exports.OTextBoxVariantTypesName = exports.OTextBoxVariantTypeDefinitions = exports.OTabVariantsName = exports.OTabVariantDefinitions = exports.OScrollOffsetTypesName = exports.OScrollOffsetTypeDefinitions = exports.OSkeletonLoaderName = exports.OSkeletonLoaderTypeDefinitions = exports.OSelectTypesName = exports.OSelectTypeDefinitions = exports.OFlexVariantsName = exports.OFlexVariantDefinitions = exports.OVerticalAlignmentsName = exports.OVerticalAlignmentDefinitions = exports.OTabAlignmentsName = exports.OTabAlignmentDefinitions = exports.OHorizontalAlignmentsName = exports.OHorizontalAlignmentDefinitions = exports.OPanelDirectionsName = exports.OPanelDirectionDefinitions = exports.OPanelVariantsName = exports.OPanelVariantDefinitions = exports.OPaddingTypesName = exports.OPaddingTypeDefinitions = exports.ODividerTypesName = exports.ODividerTypeDefinitions = exports.ONavigationDrawerVariantsName = exports.ONavigationDrawerVariantDefinitions = exports.ONavigationDrawerLocationsName = exports.ONavigationDrawerLocationDefinitions = exports.OMenuLocationsName = exports.OMenuLocationDefinitions = exports.OListLineTypesName = exports.OListLineTypeDefinitions = void 0;
|
|
5
5
|
/**Shared */
|
|
6
6
|
const block = ["top", "bottom"];
|
|
7
7
|
const inline = ["start", "end", "left", "right"];
|
|
@@ -39,6 +39,8 @@ exports.OColValueDefinitions = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10
|
|
|
39
39
|
exports.OColValuesName = "OColValues";
|
|
40
40
|
exports.OAlignmentTypeDefinitions = ["end", "center", "start", "baseline", "stretch", "auto"];
|
|
41
41
|
exports.OAlignmentTypesName = "OAlignmentTypes";
|
|
42
|
+
exports.OColumnVariantDefinitions = ["default", "grid"];
|
|
43
|
+
exports.OColumnVariantsName = "OColumnVariants";
|
|
42
44
|
/** Dialog */
|
|
43
45
|
exports.ODialogTypeDefinitions = ["save-cancel", "confirm", "ok-cancel", "default", "app", "retry"];
|
|
44
46
|
exports.ODialogTypesName = "ODialogTypes";
|
|
@@ -81,7 +83,7 @@ exports.ONavigationDrawerLocationDefinitions = ["top", "left", "right", "bottom"
|
|
|
81
83
|
exports.ONavigationDrawerLocationsName = "ONavigationDrawerLocations";
|
|
82
84
|
exports.ONavigationDrawerVariantDefinitions = ["default", "app", "editor", "dialog"];
|
|
83
85
|
exports.ONavigationDrawerVariantsName = "ONavigationDrawerVariants";
|
|
84
|
-
/** Panel */
|
|
86
|
+
/** Panel/Flex */
|
|
85
87
|
//export const DividerTypeDefinitions = ["top", "bottom", "top bottom","left","right", "left right","top bottom left right","top bottom left","top bottom right"] as const;
|
|
86
88
|
exports.ODividerTypeDefinitions = ["top", "bottom", "left", "right"];
|
|
87
89
|
exports.ODividerTypesName = "ODividerTypes";
|
|
@@ -93,8 +95,12 @@ exports.OPanelDirectionDefinitions = ["row", "column"];
|
|
|
93
95
|
exports.OPanelDirectionsName = "OPanelDirections";
|
|
94
96
|
exports.OHorizontalAlignmentDefinitions = ["left", "center", "right"];
|
|
95
97
|
exports.OHorizontalAlignmentsName = "OHorizontalAlignments";
|
|
98
|
+
exports.OTabAlignmentDefinitions = ["start", "center", "end"];
|
|
99
|
+
exports.OTabAlignmentsName = "OTabAlignments";
|
|
96
100
|
exports.OVerticalAlignmentDefinitions = ["top", "center", "bottom"];
|
|
97
101
|
exports.OVerticalAlignmentsName = "OVerticalAlignments";
|
|
102
|
+
exports.OFlexVariantDefinitions = ["default", "grid"];
|
|
103
|
+
exports.OFlexVariantsName = "OFlexVariants";
|
|
98
104
|
/** Select */
|
|
99
105
|
exports.OSelectTypeDefinitions = ["default", "add", "picker", "combobox"];
|
|
100
106
|
exports.OSelectTypesName = "OSelectTypes";
|