@omnia/fx-models 8.0.56-vnext → 8.0.58-vnext
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 +1 -0
- package/ManifestIds.js +3 -0
- package/internal-do-not-import-from-here/shared/models/OmniaSharedBootstrapData.d.ts +2 -0
- package/internal-do-not-import-from-here/shared/models/Tokens.d.ts +2 -1
- package/internal-do-not-import-from-here/velcron/core/models/VelcronDefinitions.d.ts +8 -7
- package/oxide/OxideTypeDefinitions.d.ts +1 -1
- package/oxide/OxideTypeDefinitions.js +1 -1
- package/package.json +1 -1
- package/velcron/VelcronDefinitionRegistration.d.ts +2 -0
package/ManifestIds.d.ts
CHANGED
|
@@ -278,6 +278,7 @@ export declare class OmniaWebComponentManifests {
|
|
|
278
278
|
static get FxUxPermissionInput(): Guid;
|
|
279
279
|
static get FxUxSecurityTrimer(): Guid;
|
|
280
280
|
static get FxUxSpacingPicker(): Guid;
|
|
281
|
+
static get FxUxFilterPicker(): Guid;
|
|
281
282
|
static get FxUxFilterEngineSettings(): Guid;
|
|
282
283
|
static get FxUxFilterEngineDialogContent(): Guid;
|
|
283
284
|
static get FxUxFilterEnginePersonPropertySettings(): Guid;
|
package/ManifestIds.js
CHANGED
|
@@ -857,6 +857,9 @@ class OmniaWebComponentManifests {
|
|
|
857
857
|
static get FxUxSpacingPicker() {
|
|
858
858
|
return new models_1.Guid("564bced7-081c-4964-83e8-df717f600ff3");
|
|
859
859
|
}
|
|
860
|
+
static get FxUxFilterPicker() {
|
|
861
|
+
return new models_1.Guid("46a6c15c-2a0e-446f-bef9-770274409366");
|
|
862
|
+
}
|
|
860
863
|
static get FxUxFilterEngineSettings() {
|
|
861
864
|
return new models_1.Guid("a91d4cd2-b574-4de3-a672-110cb1cdf7ba");
|
|
862
865
|
}
|
|
@@ -13,12 +13,14 @@ export interface OmniaSharedBootstrapData {
|
|
|
13
13
|
*/
|
|
14
14
|
tokenKey?: OmniaToken;
|
|
15
15
|
tokenRef: GuidValue;
|
|
16
|
+
identity: string;
|
|
16
17
|
licenses: Array<Guid>;
|
|
17
18
|
hubDev?: boolean;
|
|
18
19
|
realtimeDevPort?: string;
|
|
19
20
|
tenant: TenantIdentifier;
|
|
20
21
|
servingMode?: boolean;
|
|
21
22
|
serviceDnsMapping: OmniaServiceToDnsMapping;
|
|
23
|
+
authDisabled?: boolean;
|
|
22
24
|
}
|
|
23
25
|
export interface OmniaServiceToDnsMapping {
|
|
24
26
|
[serviceId: string]: string;
|
|
@@ -129,6 +129,11 @@ export interface VelcronColorStyling {
|
|
|
129
129
|
toned?: boolean;
|
|
130
130
|
color?: string;
|
|
131
131
|
}
|
|
132
|
+
export interface VelcronTextStyling {
|
|
133
|
+
text: string;
|
|
134
|
+
typography?: string;
|
|
135
|
+
size?: string;
|
|
136
|
+
}
|
|
132
137
|
export interface VelcronStyling {
|
|
133
138
|
margin?: number;
|
|
134
139
|
marginTop?: number;
|
|
@@ -181,7 +186,7 @@ export interface VelcronComponentDefinition extends VelcronDefinition {
|
|
|
181
186
|
export interface VelcronViewDefinition extends VelcronDefinition, VelcronColorStyling {
|
|
182
187
|
type: "View";
|
|
183
188
|
events?: VelcronOnPressEvent;
|
|
184
|
-
direction?: "row" | "column";
|
|
189
|
+
direction?: "row" | "column" | "row-reverse" | "column-reverse" | string;
|
|
185
190
|
columnStyle?: object;
|
|
186
191
|
horizontalAlignment?: VelcronHorizontalAlignments;
|
|
187
192
|
verticalAlignment?: VelcronVerticalAlignments;
|
|
@@ -196,14 +201,11 @@ export interface VelcronCardDefinition extends VelcronDefinition, VelcronColorSt
|
|
|
196
201
|
footer?: Array<VelcronDefinition>;
|
|
197
202
|
events?: VelcronOnPressEvent;
|
|
198
203
|
}
|
|
199
|
-
export interface VelcronTextDefinition extends VelcronDefinitionWithEditMode, VelcronColorStyling {
|
|
204
|
+
export interface VelcronTextDefinition extends VelcronDefinitionWithEditMode, VelcronColorStyling, VelcronTextStyling {
|
|
200
205
|
type: "Text";
|
|
201
|
-
text: string;
|
|
202
206
|
editLabel?: VelcronBindableProp;
|
|
203
207
|
lineClamp?: number;
|
|
204
208
|
noWrap?: boolean;
|
|
205
|
-
typography?: string;
|
|
206
|
-
size?: string;
|
|
207
209
|
events?: VelcronOnPressEvent & VelcronOnUpdatedEvent;
|
|
208
210
|
}
|
|
209
211
|
export declare enum VelcronImageRatios {
|
|
@@ -252,9 +254,8 @@ export interface VelcronIconDefinition extends VelcronDefinition, VelcronColorSt
|
|
|
252
254
|
size?: VelcronBindableProp<number>;
|
|
253
255
|
events?: VelcronOnPressEvent;
|
|
254
256
|
}
|
|
255
|
-
export interface VelcronMarkdownDefinition extends VelcronDefinitionWithEditMode {
|
|
257
|
+
export interface VelcronMarkdownDefinition extends VelcronDefinitionWithEditMode, VelcronColorStyling, VelcronTextStyling {
|
|
256
258
|
type: "Markdown";
|
|
257
|
-
text: string;
|
|
258
259
|
events: VelcronOnUpdatedEvent;
|
|
259
260
|
}
|
|
260
261
|
export interface VelcronDimensions {
|
|
@@ -110,7 +110,7 @@ export declare const TabVariantsName = "TabVariants";
|
|
|
110
110
|
export declare const TextBoxVariantTypeDefinitions: readonly ["default", "filter-menu", "search", "find-slim", "link", "media"];
|
|
111
111
|
export type TextBoxVariantTypes = typeof TextBoxVariantTypeDefinitions[number];
|
|
112
112
|
export declare const TextBoxVariantTypesName = "TextBoxVariantTypes";
|
|
113
|
-
export declare const TextBoxTypeDefinitions: readonly ["number"];
|
|
113
|
+
export declare const TextBoxTypeDefinitions: readonly ["text", "password", "number"];
|
|
114
114
|
export type TextBoxTypes = typeof TextBoxTypeDefinitions[number];
|
|
115
115
|
export declare const TextBoxTypesName = "TextBoxTypes";
|
|
116
116
|
/** Toolbar */
|
|
@@ -84,7 +84,7 @@ exports.TabVariantsName = "TabVariants";
|
|
|
84
84
|
//export const TextBoxVariantTypeDefinitions = ["default", "filter-menu", "search", "find-slim", "numberselector", "numberselector-prepend", "link", "media"] as const;
|
|
85
85
|
exports.TextBoxVariantTypeDefinitions = ["default", "filter-menu", "search", "find-slim", "link", "media"];
|
|
86
86
|
exports.TextBoxVariantTypesName = "TextBoxVariantTypes";
|
|
87
|
-
exports.TextBoxTypeDefinitions = ["number"];
|
|
87
|
+
exports.TextBoxTypeDefinitions = ["text", "password", "number"];
|
|
88
88
|
exports.TextBoxTypesName = "TextBoxTypes";
|
|
89
89
|
/** Toolbar */
|
|
90
90
|
exports.ToolbarVariationDefinitions = ["default", "blade"];
|
package/package.json
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { DynamicState, Guid, ThemeDefinitionV2, VelcronAppDefinition } from "..";
|
|
2
|
+
export type VelcronDefitinionRegistrationsTypes = "content" | "card" | "header" | "general";
|
|
2
3
|
export interface VelcronDefinitionRegistration<TDefinitionState extends DynamicState = DynamicState> {
|
|
3
4
|
id: Guid;
|
|
4
5
|
definition: VelcronAppDefinition<TDefinitionState>;
|
|
5
6
|
title: string;
|
|
6
7
|
previewTheme?: ThemeDefinitionV2;
|
|
8
|
+
category: VelcronDefitinionRegistrationsTypes;
|
|
7
9
|
}
|