@omnia/fx-models 8.0.36-vnext → 8.0.38-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/Enums.d.ts +2 -1
- package/Enums.js +1 -0
- package/Layout.d.ts +1 -1
- package/ManifestIds.d.ts +1 -1
- package/ManifestIds.js +1 -1
- package/Messaging.d.ts +1 -0
- package/identities/Identity.d.ts +1 -1
- package/identities/Identity.js +1 -1
- package/internal-do-not-import-from-here/shared/models/Guid.d.ts +1 -1
- package/internal-do-not-import-from-here/shared/models/Guid.js +1 -1
- package/oxide/TypeDefinitions.d.ts +103 -0
- package/oxide/TypeDefinitions.js +80 -0
- package/oxide/index.d.ts +1 -0
- package/oxide/index.js +1 -0
- package/package.json +1 -1
package/Enums.d.ts
CHANGED
|
@@ -1379,7 +1379,8 @@ export declare enum LocalServingMessageType {
|
|
|
1379
1379
|
FullReload = "full-reload",
|
|
1380
1380
|
Update = "update",
|
|
1381
1381
|
Custom = "custom",
|
|
1382
|
-
Error = "error"
|
|
1382
|
+
Error = "error",
|
|
1383
|
+
LocalizeChanged = "localize-changed"
|
|
1383
1384
|
}
|
|
1384
1385
|
export declare enum CookieKeys {
|
|
1385
1386
|
LoginType = "LoginType",
|
package/Enums.js
CHANGED
|
@@ -1358,6 +1358,7 @@ var LocalServingMessageType;
|
|
|
1358
1358
|
LocalServingMessageType["Update"] = "update";
|
|
1359
1359
|
LocalServingMessageType["Custom"] = "custom";
|
|
1360
1360
|
LocalServingMessageType["Error"] = "error";
|
|
1361
|
+
LocalServingMessageType["LocalizeChanged"] = "localize-changed";
|
|
1361
1362
|
})(LocalServingMessageType = exports.LocalServingMessageType || (exports.LocalServingMessageType = {}));
|
|
1362
1363
|
var CookieKeys;
|
|
1363
1364
|
(function (CookieKeys) {
|
package/Layout.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { MultilingualString, ThemeDefinition, IIcon, SpacingSettings, IconPickerModel, WebComponentDefinition, OmniaBlock, GuidValue, RadialGradientShapes,
|
|
1
|
+
import { MultilingualString, ThemeDefinition, IIcon, SpacingSettings, IconPickerModel, WebComponentDefinition, OmniaBlock, GuidValue, RadialGradientShapes, BlockTitleSettings, LayoutItemActions, LayoutEditorModes, BlockRenderingModes, TabbedDisplayModes, TabbedIconPositions, LayoutDrawerTabs, ILayoutCanvasDefinitionBuilder, MediaPickerImage, IMessageBusTopicSubscription, MediaPickerStorageProviderContext, OmniaBackendRuntimes, OmniaClientRuntimes, LayoutCanvasModes, ColorSchemaTypes, BlueprintTypes, HorizontalAlignments } from ".";
|
|
2
2
|
import { MessageBusTopicMediator } from "../";
|
|
3
3
|
import { TargetingFilterProperty } from "../sp";
|
|
4
4
|
import { ShapeDividerSettings } from "./ShapeDividerSettingsModel";
|
package/ManifestIds.d.ts
CHANGED
|
@@ -145,7 +145,7 @@ export declare class OmniaWebComponentManifests {
|
|
|
145
145
|
static get FxUxIframe(): Guid;
|
|
146
146
|
static get FxUxDateTimePicker(): Guid;
|
|
147
147
|
static get Console(): Guid;
|
|
148
|
-
static get
|
|
148
|
+
static get DevSocketMessage(): Guid;
|
|
149
149
|
static get FxUxDialog(): Guid;
|
|
150
150
|
static get FxUxConfirmDialog(): Guid;
|
|
151
151
|
static get FxUxDocumenticon(): Guid;
|
package/ManifestIds.js
CHANGED
|
@@ -451,7 +451,7 @@ class OmniaWebComponentManifests {
|
|
|
451
451
|
static get Console() {
|
|
452
452
|
return new models_1.Guid("f3d75940-db51-447d-bf67-19251f5465b0");
|
|
453
453
|
}
|
|
454
|
-
static get
|
|
454
|
+
static get DevSocketMessage() {
|
|
455
455
|
return new models_1.Guid("e6b88bd8-d419-49c8-af6f-ed268ae64430");
|
|
456
456
|
}
|
|
457
457
|
static get FxUxDialog() {
|
package/Messaging.d.ts
CHANGED
package/identities/Identity.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export declare abstract class Identity implements IEquals<{
|
|
|
15
15
|
abstract readonly type: IdentityTypes;
|
|
16
16
|
constructor(id: GuidValue);
|
|
17
17
|
equals: {
|
|
18
|
-
identity(value: Identity)
|
|
18
|
+
identity: (value: Identity) => boolean;
|
|
19
19
|
};
|
|
20
20
|
toIdString(): string;
|
|
21
21
|
static parse(identity: Identity | IResolvedIdentity | string): Identity;
|
package/identities/Identity.js
CHANGED
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
/**AppBar */
|
|
2
|
+
export declare const AppBarTypeDefinitions: string[];
|
|
3
|
+
export type AppBarTypes = typeof AppBarTypeDefinitions[number];
|
|
4
|
+
export declare const AppBarTypesName = "AppBarTypes";
|
|
5
|
+
/**Button */
|
|
6
|
+
export declare const SizeTypeDefinitions: string[];
|
|
7
|
+
export type SizeTypes = typeof SizeTypeDefinitions[number];
|
|
8
|
+
export declare const SizeTypesName = "SizeTypes";
|
|
9
|
+
export declare const ButtonPresetDefinitions: string[];
|
|
10
|
+
export type OxideButtonPresets = typeof ButtonPresetDefinitions[number];
|
|
11
|
+
export declare const ButtonPresetsName = "OxideButtonPresets";
|
|
12
|
+
export declare const ButtonVariantDefinitions: string[];
|
|
13
|
+
export type ButtonVariants = typeof ButtonVariantDefinitions[number];
|
|
14
|
+
export declare const ButtonVariantsName = "ButtonVariants";
|
|
15
|
+
/**Button Group */
|
|
16
|
+
export declare const ButtonGroupTypeDefinitions: string[];
|
|
17
|
+
export type ButtonGroupTypes = typeof ButtonGroupTypeDefinitions[number];
|
|
18
|
+
export declare const ButtonGroupTypesName = "ButtonGroupTypes";
|
|
19
|
+
/** Column */
|
|
20
|
+
export declare const ColValueDefinitions: string[];
|
|
21
|
+
export type ColValues = typeof ColValueDefinitions[number];
|
|
22
|
+
export declare const ColValuesName = "ColValues";
|
|
23
|
+
export declare const AlignmentTypeDefinitions: string[];
|
|
24
|
+
export type AlignmentTypes = typeof AlignmentTypeDefinitions[number];
|
|
25
|
+
export declare const AlignmentTypesName = "AlignmentTypes";
|
|
26
|
+
/** Dialog */
|
|
27
|
+
export declare const DialogTypeDefinitions: string[];
|
|
28
|
+
export type DialogTypes = typeof DialogTypeDefinitions[number];
|
|
29
|
+
export declare const DialogTypesName = "DialogTypes";
|
|
30
|
+
/** Expansion Panel */
|
|
31
|
+
export declare const PanelTypeDefinitions: string[];
|
|
32
|
+
export type PanelTypes = typeof PanelTypeDefinitions[number];
|
|
33
|
+
export declare const PanelTypesName = "PanelTypes";
|
|
34
|
+
/**Icon */
|
|
35
|
+
export declare const IconPresetDefinitions: string[];
|
|
36
|
+
export type IconPresets = typeof IconPresetDefinitions[number];
|
|
37
|
+
export declare const IconPresetsName = "IconPresets";
|
|
38
|
+
export declare const IconSizeDefinitions: string[];
|
|
39
|
+
export type OIconSizes = typeof IconSizeDefinitions[number];
|
|
40
|
+
export declare const IconSizesName = "OIconSizes";
|
|
41
|
+
/** Image */
|
|
42
|
+
export declare const RatioTypeDefinitions: string[];
|
|
43
|
+
export type RatioTypes = typeof RatioTypeDefinitions[number];
|
|
44
|
+
export declare const RatioTypesName = "RatioTypes";
|
|
45
|
+
/** List */
|
|
46
|
+
export declare const ListItemVariantDefinitions: string[];
|
|
47
|
+
export type ListItemVariants = typeof ListItemVariantDefinitions[number];
|
|
48
|
+
export declare const ListItemVariantsName = "ListItemVariants";
|
|
49
|
+
export declare const ListTypeDefinitions: string[];
|
|
50
|
+
export type ListTypes = typeof ListTypeDefinitions[number];
|
|
51
|
+
export declare const ListTypesName = "ListTypes";
|
|
52
|
+
export declare const ListLineTypeDefinitions: (string | boolean)[];
|
|
53
|
+
export type ListLineTypes = typeof ListLineTypeDefinitions[number];
|
|
54
|
+
export declare const ListLineTypesName = "ListLineTypes";
|
|
55
|
+
/** Menu */
|
|
56
|
+
export declare const MenuLocationDefinitions: string[];
|
|
57
|
+
export type MenuLocations = typeof MenuLocationDefinitions[number];
|
|
58
|
+
export declare const MenuLocationsName = "MenuLocations";
|
|
59
|
+
/**Navigation Drawer */
|
|
60
|
+
export declare const NavigationDrawerLocationDefinitions: string[];
|
|
61
|
+
export type NavigationDrawerLocations = typeof NavigationDrawerLocationDefinitions[number];
|
|
62
|
+
export declare const NavigationDrawerLocationsName = "NavigationDrawerLocations";
|
|
63
|
+
export declare const NavigationDrawerVariantDefinitions: string[];
|
|
64
|
+
export type NavigationDrawerVariants = typeof NavigationDrawerVariantDefinitions[number];
|
|
65
|
+
export declare const NavigationDrawerVariantsName = "NavigationDrawerVariants";
|
|
66
|
+
/** Panel */
|
|
67
|
+
export declare const DividerTypeDefinitions: string[];
|
|
68
|
+
export type DividerTypes = typeof DividerTypeDefinitions[number];
|
|
69
|
+
export declare const DividerTypesName = "DividerTypes";
|
|
70
|
+
export declare const PanelVariantDefinitions: string[];
|
|
71
|
+
export type PanelVariants = typeof PanelVariantDefinitions[number];
|
|
72
|
+
export declare const PanelVariantsName = "PanelVariants";
|
|
73
|
+
export declare const PanelDirectionDefinitions: string[];
|
|
74
|
+
export type PanelDirections = typeof PanelDirectionDefinitions[number];
|
|
75
|
+
export declare const PanelDirectionsName = "PanelDirections";
|
|
76
|
+
export declare const HorizontalAlignmentDefinitions: string[];
|
|
77
|
+
export type OHorizontalAlignments = typeof HorizontalAlignmentDefinitions[number];
|
|
78
|
+
export declare const HorizontalAlignmentsName = "OHorizontalAlignments";
|
|
79
|
+
export declare const VerticalAlignmentDefinitions: string[];
|
|
80
|
+
export type OVerticalAlignments = typeof VerticalAlignmentDefinitions[number];
|
|
81
|
+
export declare const VerticalAlignmentsName = "OVerticalAlignments";
|
|
82
|
+
/** Select */
|
|
83
|
+
export declare const SelectTypeDefinitions: string[];
|
|
84
|
+
export type SelectTypes = typeof SelectTypeDefinitions[number];
|
|
85
|
+
export declare const SelectTypesName = "SelectTypes";
|
|
86
|
+
/** Tabs */
|
|
87
|
+
export declare const ScrollOffsetTypeDefinitions: string[];
|
|
88
|
+
export type ScrollOffsetTypes = "dialog" | "drawer" | string;
|
|
89
|
+
export declare const ScrollOffsetTypesName = "ScrollOffsetTypes";
|
|
90
|
+
export declare const TabVariantDefinitions: string[];
|
|
91
|
+
export type TabVariants = typeof TabVariantDefinitions[number];
|
|
92
|
+
export declare const TabVariantsName = "TabVariants";
|
|
93
|
+
/** Text Box */
|
|
94
|
+
export declare const TextBoxVariantTypeDefinitions: string[];
|
|
95
|
+
export type TextBoxVariantTypes = typeof TextBoxVariantTypeDefinitions[number];
|
|
96
|
+
export declare const TextBoxVariantTypesName = "TextBoxVariantTypes";
|
|
97
|
+
export declare const TextBoxTypeDefinitions: string[];
|
|
98
|
+
export type TextBoxTypes = typeof TextBoxTypeDefinitions[number];
|
|
99
|
+
export declare const TextBoxTypesName = "TextBoxTypes";
|
|
100
|
+
/** Toolbar */
|
|
101
|
+
export declare const ToolbarVariationDefinitions: string[];
|
|
102
|
+
export type ToolbarVariants = typeof ToolbarVariationDefinitions[number];
|
|
103
|
+
export declare const ToolbarVariantsName = "ToolbarVariants";
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ScrollOffsetTypesName = exports.ScrollOffsetTypeDefinitions = exports.SelectTypesName = exports.SelectTypeDefinitions = exports.VerticalAlignmentsName = exports.VerticalAlignmentDefinitions = exports.HorizontalAlignmentsName = exports.HorizontalAlignmentDefinitions = exports.PanelDirectionsName = exports.PanelDirectionDefinitions = exports.PanelVariantsName = exports.PanelVariantDefinitions = exports.DividerTypesName = exports.DividerTypeDefinitions = exports.NavigationDrawerVariantsName = exports.NavigationDrawerVariantDefinitions = exports.NavigationDrawerLocationsName = exports.NavigationDrawerLocationDefinitions = exports.MenuLocationsName = exports.MenuLocationDefinitions = exports.ListLineTypesName = exports.ListLineTypeDefinitions = exports.ListTypesName = exports.ListTypeDefinitions = exports.ListItemVariantsName = exports.ListItemVariantDefinitions = exports.RatioTypesName = exports.RatioTypeDefinitions = exports.IconSizesName = exports.IconSizeDefinitions = exports.IconPresetsName = exports.IconPresetDefinitions = exports.PanelTypesName = exports.PanelTypeDefinitions = exports.DialogTypesName = exports.DialogTypeDefinitions = exports.AlignmentTypesName = exports.AlignmentTypeDefinitions = exports.ColValuesName = exports.ColValueDefinitions = exports.ButtonGroupTypesName = exports.ButtonGroupTypeDefinitions = exports.ButtonVariantsName = exports.ButtonVariantDefinitions = exports.ButtonPresetsName = exports.ButtonPresetDefinitions = exports.SizeTypesName = exports.SizeTypeDefinitions = exports.AppBarTypesName = exports.AppBarTypeDefinitions = void 0;
|
|
4
|
+
exports.ToolbarVariantsName = exports.ToolbarVariationDefinitions = exports.TextBoxTypesName = exports.TextBoxTypeDefinitions = exports.TextBoxVariantTypesName = exports.TextBoxVariantTypeDefinitions = exports.TabVariantsName = exports.TabVariantDefinitions = void 0;
|
|
5
|
+
/**AppBar */
|
|
6
|
+
exports.AppBarTypeDefinitions = ["default", "admin"];
|
|
7
|
+
exports.AppBarTypesName = "AppBarTypes";
|
|
8
|
+
/**Button */
|
|
9
|
+
exports.SizeTypeDefinitions = ["default", "x-small", "small"];
|
|
10
|
+
exports.SizeTypesName = "SizeTypes";
|
|
11
|
+
exports.ButtonPresetDefinitions = ["create", "delete", "ok", "cancel", "save", "close", "settings", "icon-add", "icon-delete", "icon-edit", "icon-drag-handle", "icon-copy", "icon-code", "icon-close", "icon-back", "icon-navigate", "icon-settings"];
|
|
12
|
+
exports.ButtonPresetsName = "OxideButtonPresets";
|
|
13
|
+
exports.ButtonVariantDefinitions = ["default", "prominent", "toolbar", "opacity", "dial"];
|
|
14
|
+
exports.ButtonVariantsName = "ButtonVariants";
|
|
15
|
+
/**Button Group */
|
|
16
|
+
exports.ButtonGroupTypeDefinitions = ["default", "dial", "drawer"];
|
|
17
|
+
exports.ButtonGroupTypesName = "ButtonGroupTypes";
|
|
18
|
+
/** Column */
|
|
19
|
+
exports.ColValueDefinitions = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"];
|
|
20
|
+
exports.ColValuesName = "ColValues";
|
|
21
|
+
exports.AlignmentTypeDefinitions = ["end", "center", "start", "baseline", "stretch", "auto"];
|
|
22
|
+
exports.AlignmentTypesName = "AlignmentTypes";
|
|
23
|
+
/** Dialog */
|
|
24
|
+
exports.DialogTypeDefinitions = ["save-cancel", "confirm", "ok-cancel", "default", "admin"];
|
|
25
|
+
exports.DialogTypesName = "DialogTypes";
|
|
26
|
+
/** Expansion Panel */
|
|
27
|
+
exports.PanelTypeDefinitions = ["default", "navigation"];
|
|
28
|
+
exports.PanelTypesName = "PanelTypes";
|
|
29
|
+
/**Icon */
|
|
30
|
+
exports.IconPresetDefinitions = ["add", "delete", "edit", "drag-handle", "copy", "code", "expand", "remove"];
|
|
31
|
+
exports.IconPresetsName = "IconPresets";
|
|
32
|
+
exports.IconSizeDefinitions = ["default", "x-small", "small"];
|
|
33
|
+
exports.IconSizesName = "OIconSizes";
|
|
34
|
+
/** Image */
|
|
35
|
+
exports.RatioTypeDefinitions = ["default", "landscape"];
|
|
36
|
+
exports.RatioTypesName = "RatioTypes";
|
|
37
|
+
/** List */
|
|
38
|
+
exports.ListItemVariantDefinitions = ["default", "delete"];
|
|
39
|
+
exports.ListItemVariantsName = "ListItemVariants";
|
|
40
|
+
exports.ListTypeDefinitions = ["default", "navigation"];
|
|
41
|
+
exports.ListTypesName = "ListTypes";
|
|
42
|
+
exports.ListLineTypeDefinitions = [false, "one", "two", "three"];
|
|
43
|
+
exports.ListLineTypesName = "ListLineTypes";
|
|
44
|
+
/** Menu */
|
|
45
|
+
// type Tblock = "top" | "bottom";
|
|
46
|
+
// type Tinline = "start" | "end" | "left" | "right";
|
|
47
|
+
exports.MenuLocationDefinitions = ["top", "bottom", "start", "end", "left", "right", "center", "center center", "top start", "top end", "bottom start", "bottom end", "start top", "start bottom", "end top", "end bottom"];
|
|
48
|
+
exports.MenuLocationsName = "MenuLocations";
|
|
49
|
+
/**Navigation Drawer */
|
|
50
|
+
exports.NavigationDrawerLocationDefinitions = ["top", "left", "right", "bottom", "end", "start"];
|
|
51
|
+
exports.NavigationDrawerLocationsName = "NavigationDrawerLocations";
|
|
52
|
+
exports.NavigationDrawerVariantDefinitions = ["default", "editor", "dialog"];
|
|
53
|
+
exports.NavigationDrawerVariantsName = "NavigationDrawerVariants";
|
|
54
|
+
/** Panel */
|
|
55
|
+
exports.DividerTypeDefinitions = ["top", "bottom", "top bottom"];
|
|
56
|
+
exports.DividerTypesName = "DividerTypes";
|
|
57
|
+
exports.PanelVariantDefinitions = ["default", "dialog", "tab", "section", "toolbar", "settings", "text-area", "navigation"];
|
|
58
|
+
exports.PanelVariantsName = "PanelVariants";
|
|
59
|
+
exports.PanelDirectionDefinitions = ["row", "column"];
|
|
60
|
+
exports.PanelDirectionsName = "PanelDirections";
|
|
61
|
+
exports.HorizontalAlignmentDefinitions = ["left", "center", "right"];
|
|
62
|
+
exports.HorizontalAlignmentsName = "OHorizontalAlignments";
|
|
63
|
+
exports.VerticalAlignmentDefinitions = ["top", "center", "bottom"];
|
|
64
|
+
exports.VerticalAlignmentsName = "OVerticalAlignments";
|
|
65
|
+
/** Select */
|
|
66
|
+
exports.SelectTypeDefinitions = ["default", "add", "picker"];
|
|
67
|
+
exports.SelectTypesName = "SelectTypes";
|
|
68
|
+
/** Tabs */
|
|
69
|
+
exports.ScrollOffsetTypeDefinitions = ["dialog", "drawer"];
|
|
70
|
+
exports.ScrollOffsetTypesName = "ScrollOffsetTypes";
|
|
71
|
+
exports.TabVariantDefinitions = ["default", "dialog", "settings"];
|
|
72
|
+
exports.TabVariantsName = "TabVariants";
|
|
73
|
+
/** Text Box */
|
|
74
|
+
exports.TextBoxVariantTypeDefinitions = ["default", "search", "find-slim", "numberselector", "numberselector-prepend", "link", "media"];
|
|
75
|
+
exports.TextBoxVariantTypesName = "TextBoxVariantTypes";
|
|
76
|
+
exports.TextBoxTypeDefinitions = ["number"];
|
|
77
|
+
exports.TextBoxTypesName = "TextBoxTypes";
|
|
78
|
+
/** Toolbar */
|
|
79
|
+
exports.ToolbarVariationDefinitions = ["default", "blade"];
|
|
80
|
+
exports.ToolbarVariantsName = "ToolbarVariants";
|
package/oxide/index.d.ts
CHANGED
package/oxide/index.js
CHANGED