@omnia/fx-models 8.0.29-dev → 8.0.30-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/BusinessProfile.d.ts +2 -2
- package/BusinessProfile.js +2 -1
- package/internal-do-not-import-from-here/shared/models/hub/activities/ActivityFeed.d.ts +1 -1
- package/internal-do-not-import-from-here/shared/models/hub/activities/ActivitySender.d.ts +3 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/IdentityActivity.d.ts +8 -2
- package/internal-do-not-import-from-here/shared/models/hub/activities/IdentityActivity.js +8 -2
- package/oxide/OxideTypeDefinitions.d.ts +39 -36
- package/oxide/OxideTypeDefinitions.js +40 -38
- package/package.json +1 -1
package/BusinessProfile.d.ts
CHANGED
|
@@ -74,8 +74,8 @@ export declare class BusinessProfileFaviconSettings extends BusinessProfilePrope
|
|
|
74
74
|
constructor();
|
|
75
75
|
}
|
|
76
76
|
export declare class BusinessProfileChromeLayout extends BusinessProfileProperty {
|
|
77
|
-
publishedVersionLayoutId
|
|
78
|
-
constructor();
|
|
77
|
+
publishedVersionLayoutId?: VersionedLayoutId;
|
|
78
|
+
constructor(publishedVersionLayoutId?: VersionedLayoutId);
|
|
79
79
|
}
|
|
80
80
|
export declare abstract class BusinessProfileRelativePathValue {
|
|
81
81
|
protected relativePath: string;
|
package/BusinessProfile.js
CHANGED
|
@@ -46,8 +46,9 @@ class BusinessProfileFaviconSettings extends BusinessProfileProperty {
|
|
|
46
46
|
}
|
|
47
47
|
exports.BusinessProfileFaviconSettings = BusinessProfileFaviconSettings;
|
|
48
48
|
class BusinessProfileChromeLayout extends BusinessProfileProperty {
|
|
49
|
-
constructor() {
|
|
49
|
+
constructor(publishedVersionLayoutId) {
|
|
50
50
|
super(ManifestIds_1.OmniaService.Id, "chromelayout");
|
|
51
|
+
this.publishedVersionLayoutId = publishedVersionLayoutId;
|
|
51
52
|
}
|
|
52
53
|
}
|
|
53
54
|
exports.BusinessProfileChromeLayout = BusinessProfileChromeLayout;
|
|
@@ -5,7 +5,7 @@ export interface ActivityFeed extends ActivityFeedBase {
|
|
|
5
5
|
renderers: {
|
|
6
6
|
[key: ActivityRendererId]: ActivityRenderer;
|
|
7
7
|
};
|
|
8
|
-
identityActivities: Array<IdentityActivity
|
|
8
|
+
identityActivities: Array<IdentityActivity<object, object>>;
|
|
9
9
|
activities: Array<Activity>;
|
|
10
10
|
}
|
|
11
11
|
export interface ActivityFeedResult extends ActivityFeedBase {
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { StronglyTypedId } from "../../StronglyTypedId";
|
|
2
2
|
export type ActivitySenderId = StronglyTypedId<number, "ActivitySenderId">;
|
|
3
3
|
export declare function ActivitySenderId(id: number): ActivitySenderId;
|
|
4
|
+
export interface ActivitySenderWithBag<TBag> extends ActivitySender {
|
|
5
|
+
bag: TBag;
|
|
6
|
+
}
|
|
4
7
|
export interface ActivitySender extends ActivitySenderBase {
|
|
5
8
|
id: ActivitySenderId;
|
|
6
9
|
imageUrl: string;
|
|
@@ -1,15 +1,21 @@
|
|
|
1
1
|
import { ActivitySenderId, DynamicState } from "../..";
|
|
2
2
|
import { Activity, ActivityId } from "./Activity";
|
|
3
3
|
export declare enum IdentityActivityStatus {
|
|
4
|
-
|
|
4
|
+
new = 0,
|
|
5
|
+
read = 1,
|
|
6
|
+
completed = 2
|
|
7
|
+
}
|
|
8
|
+
export declare enum IdentityActivityCategory {
|
|
9
|
+
new = 0,
|
|
5
10
|
read = 1,
|
|
6
11
|
completed = 2
|
|
7
12
|
}
|
|
8
13
|
export interface IdentityActivityBase {
|
|
9
14
|
activityId: ActivityId;
|
|
10
15
|
status: IdentityActivityStatus;
|
|
16
|
+
category: IdentityActivityCategory;
|
|
11
17
|
}
|
|
12
|
-
export interface IdentityActivity<TRenderState extends DynamicState
|
|
18
|
+
export interface IdentityActivity<TRenderState extends DynamicState, TState extends DynamicState> extends IdentityActivityBase {
|
|
13
19
|
activity: Activity<TRenderState>;
|
|
14
20
|
state?: TState;
|
|
15
21
|
}
|
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IdentityActivityStatus = void 0;
|
|
3
|
+
exports.IdentityActivityCategory = exports.IdentityActivityStatus = void 0;
|
|
4
4
|
var IdentityActivityStatus;
|
|
5
5
|
(function (IdentityActivityStatus) {
|
|
6
|
-
IdentityActivityStatus[IdentityActivityStatus["
|
|
6
|
+
IdentityActivityStatus[IdentityActivityStatus["new"] = 0] = "new";
|
|
7
7
|
IdentityActivityStatus[IdentityActivityStatus["read"] = 1] = "read";
|
|
8
8
|
IdentityActivityStatus[IdentityActivityStatus["completed"] = 2] = "completed";
|
|
9
9
|
})(IdentityActivityStatus = exports.IdentityActivityStatus || (exports.IdentityActivityStatus = {}));
|
|
10
|
+
var IdentityActivityCategory;
|
|
11
|
+
(function (IdentityActivityCategory) {
|
|
12
|
+
IdentityActivityCategory[IdentityActivityCategory["new"] = 0] = "new";
|
|
13
|
+
IdentityActivityCategory[IdentityActivityCategory["read"] = 1] = "read";
|
|
14
|
+
IdentityActivityCategory[IdentityActivityCategory["completed"] = 2] = "completed";
|
|
15
|
+
})(IdentityActivityCategory = exports.IdentityActivityCategory || (exports.IdentityActivityCategory = {}));
|
|
10
16
|
// Usage
|
|
11
17
|
// const activity1: IdentityActivity<SomeRenderState> = {
|
|
12
18
|
// activity: {
|
|
@@ -12,110 +12,113 @@ export type OContentHeight = typeof OContentHeightDefinitions[number];
|
|
|
12
12
|
/**Slider */
|
|
13
13
|
export declare const ODirectionDefinitions: readonly ["horizontal", "vertical"];
|
|
14
14
|
export type ODirectionTypes = typeof ODirectionDefinitions[number];
|
|
15
|
-
export declare const ODirectionTypesName = "
|
|
15
|
+
export declare const ODirectionTypesName = "ODirectionTypes";
|
|
16
16
|
export declare const OSliderVariantDefinitions: readonly ["default", "prominent"];
|
|
17
17
|
export type OSliderVariants = typeof OSliderVariantDefinitions[number];
|
|
18
|
-
export declare const OSliderVariantsName = "
|
|
18
|
+
export declare const OSliderVariantsName = "OSliderVariants";
|
|
19
19
|
/**Progress */
|
|
20
20
|
export declare const OProgressTypeDefinitions: readonly ["linear", "circular"];
|
|
21
21
|
export type OProgressTypes = typeof OProgressTypeDefinitions[number];
|
|
22
|
-
export declare const OProgressTypesName = "
|
|
22
|
+
export declare const OProgressTypesName = "OProgressTypes";
|
|
23
23
|
export declare const OProgressVariantDefinitions: readonly ["default", "loading"];
|
|
24
24
|
export type OProgressVariants = typeof OProgressVariantDefinitions[number];
|
|
25
|
-
export declare const OProgressVariantsName = "
|
|
25
|
+
export declare const OProgressVariantsName = "OProgressVariants";
|
|
26
26
|
export declare const OProgressSizeTypeDefinitions: readonly ["default", "large", "x-large"];
|
|
27
27
|
export type OProgressSizeTypes = typeof OProgressSizeTypeDefinitions[number];
|
|
28
|
-
export declare const OProgressSizeTypesName = "
|
|
28
|
+
export declare const OProgressSizeTypesName = "OProgressSizeTypes";
|
|
29
29
|
/**AppBar */
|
|
30
30
|
export declare const OAppBarTypeDefinitions: readonly ["default", "app", "chrome"];
|
|
31
31
|
export type OAppBarTypes = typeof OAppBarTypeDefinitions[number];
|
|
32
|
-
export declare const OAppBarTypesName = "
|
|
32
|
+
export declare const OAppBarTypesName = "OAppBarTypes";
|
|
33
33
|
/**Alert */
|
|
34
34
|
export declare const OAlertTypeDefinitions: readonly ["success", "info", "warning", "error"];
|
|
35
35
|
export type OAlertTypes = typeof OAlertTypeDefinitions[number];
|
|
36
|
-
export declare const OAlertTypesName = "
|
|
36
|
+
export declare const OAlertTypesName = "OAlertTypes";
|
|
37
37
|
/**Button */
|
|
38
38
|
export declare const OButtonPresetDefinitions: readonly ["create", "remove", "delete", "ok", "cancel", "save", "close", "settings", "icon-add", "icon-comment", "icon-delete", "icon-edit", "icon-drag-handle", "icon-copy", "icon-code", "icon-close", "icon-back", "icon-more", "icon-navigate", "icon-settings", "load-more", "retry", "remove", "approve", "copy-to-clipboard", "details", "next", "previous", "select", "view-more", "send-request"];
|
|
39
39
|
export type OOxideButtonPresets = typeof OButtonPresetDefinitions[number];
|
|
40
|
-
export declare const OButtonPresetsName = "
|
|
40
|
+
export declare const OButtonPresetsName = "OOxideButtonPresets";
|
|
41
41
|
export declare const OButtonVariantDefinitions: readonly ["default", "prominent", "toolbar", "opacity", "dial", "slim"];
|
|
42
42
|
export type OuttonVariants = typeof OButtonVariantDefinitions[number];
|
|
43
|
-
export declare const OButtonVariantsName = "
|
|
43
|
+
export declare const OButtonVariantsName = "OButtonVariants";
|
|
44
44
|
/**Button Group */
|
|
45
45
|
export declare const OButtonGroupTypeDefinitions: readonly ["default", "dial", "settings"];
|
|
46
46
|
export type OButtonGroupTypes = typeof OButtonGroupTypeDefinitions[number];
|
|
47
|
-
export declare const OButtonGroupTypesName = "
|
|
47
|
+
export declare const OButtonGroupTypesName = "OButtonGroupTypes";
|
|
48
48
|
/** Column */
|
|
49
49
|
export declare const OColValueDefinitions: readonly ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"];
|
|
50
50
|
export type OColValues = typeof OColValueDefinitions[number];
|
|
51
|
-
export declare const OColValuesName = "
|
|
51
|
+
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
|
-
export declare const OAlignmentTypesName = "
|
|
54
|
+
export declare const OAlignmentTypesName = "OAlignmentTypes";
|
|
55
55
|
/** Dialog */
|
|
56
56
|
export declare const ODialogTypeDefinitions: readonly ["save-cancel", "confirm", "ok-cancel", "default", "app", "retry"];
|
|
57
57
|
export type ODialogTypes = typeof ODialogTypeDefinitions[number];
|
|
58
|
-
export declare const ODialogTypesName = "
|
|
58
|
+
export declare const ODialogTypesName = "ODialogTypes";
|
|
59
59
|
export declare const ODialogSizeDefinitions: readonly ["small", "medium", "large", "full"];
|
|
60
60
|
export type ODialogSizes = typeof ODialogSizeDefinitions[number];
|
|
61
61
|
/** Divider */
|
|
62
62
|
export declare const OPageDividerTypeDefinitions: readonly ["default", "prominent"];
|
|
63
63
|
export type OPageDividerTypes = typeof ODividerTypeDefinitions[number];
|
|
64
|
-
export declare const OPageDividerTypesName = "
|
|
64
|
+
export declare const OPageDividerTypesName = "OPageDividerTypes";
|
|
65
65
|
/** Expansion Panel */
|
|
66
66
|
export declare const OPanelTypeDefinitions: readonly ["default", "navigation", "section"];
|
|
67
67
|
export type OPanelTypes = typeof OPanelTypeDefinitions[number];
|
|
68
|
-
export declare const OPanelTypesName = "
|
|
68
|
+
export declare const OPanelTypesName = "OPanelTypes";
|
|
69
69
|
/**Icon */
|
|
70
70
|
export declare const OIconPresetDefinitions: readonly ["add", "delete", "edit", "drag-handle", "copy", "code", "expand", "remove", "info"];
|
|
71
71
|
export type OIconPresets = typeof OIconPresetDefinitions[number];
|
|
72
|
-
export declare const OIconPresetsName = "
|
|
72
|
+
export declare const OIconPresetsName = "OIconPresets";
|
|
73
73
|
export declare const OIconSizeDefinitions: readonly ["x-large", "large", "default", "x-small", "small"];
|
|
74
74
|
export type OIconSizes = typeof OIconSizeDefinitions[number];
|
|
75
75
|
export declare const OIconSizesName = "OIconSizes";
|
|
76
|
+
export declare const OIconAnimationsDefinition: readonly ["spin", "beat", "bounce", "flip"];
|
|
77
|
+
export type OIconAnimations = typeof OIconAnimationsDefinition[number];
|
|
78
|
+
export declare const OIconAnimationsName = "OIconAnimations";
|
|
76
79
|
export declare const OIconVariantDefinitions: readonly ["default", "background"];
|
|
77
80
|
export type OIconVariants = typeof OIconVariantDefinitions[number];
|
|
78
|
-
export declare const OIconVariantsName = "
|
|
81
|
+
export declare const OIconVariantsName = "OIconVariants";
|
|
79
82
|
/** Image */
|
|
80
83
|
export declare const ORatioTypeDefinitions: readonly ["default", "landscape"];
|
|
81
84
|
export type ORatioTypes = typeof ORatioTypeDefinitions[number];
|
|
82
|
-
export declare const ORatioTypesName = "
|
|
85
|
+
export declare const ORatioTypesName = "ORatioTypes";
|
|
83
86
|
/** List */
|
|
84
87
|
export declare const OListItemVariantDefinitions: readonly ["default", "delete", "navigation"];
|
|
85
88
|
export type OListItemVariants = typeof OListItemVariantDefinitions[number];
|
|
86
|
-
export declare const OListItemVariantsName = "
|
|
89
|
+
export declare const OListItemVariantsName = "OListItemVariants";
|
|
87
90
|
export declare const OListTypeDefinitions: readonly ["default", "navigation", "options"];
|
|
88
91
|
export type OListTypes = typeof OListTypeDefinitions[number];
|
|
89
|
-
export declare const OListTypesName = "
|
|
92
|
+
export declare const OListTypesName = "OListTypes";
|
|
90
93
|
export declare const OListLineTypeDefinitions: readonly [false, "one", "two", "three"];
|
|
91
94
|
export type OListLineTypes = typeof OListLineTypeDefinitions[number];
|
|
92
|
-
export declare const OListLineTypesName = "
|
|
95
|
+
export declare const OListLineTypesName = "OListLineTypes";
|
|
93
96
|
/** Menu */
|
|
94
97
|
export declare const OMenuLocationDefinitions: readonly ["top", "bottom", "start", "end", "left", "right", "center", "center center", "top center", "top start", "top end", "bottom start", "bottom end", "start top", "start bottom", "end top", "end bottom"];
|
|
95
98
|
export type OMenuLocations = typeof OMenuLocationDefinitions[number];
|
|
96
|
-
export declare const OMenuLocationsName = "
|
|
99
|
+
export declare const OMenuLocationsName = "OMenuLocations";
|
|
97
100
|
/**Navigation Drawer */
|
|
98
101
|
export declare const ONavigationDrawerLocationDefinitions: readonly ["top", "left", "right", "bottom", "end", "start"];
|
|
99
102
|
export type ONavigationDrawerLocations = typeof ONavigationDrawerLocationDefinitions[number];
|
|
100
|
-
export declare const ONavigationDrawerLocationsName = "
|
|
103
|
+
export declare const ONavigationDrawerLocationsName = "ONavigationDrawerLocations";
|
|
101
104
|
export declare const ONavigationDrawerVariantDefinitions: readonly ["default", "app", "editor", "dialog"];
|
|
102
105
|
export type ONavigationDrawerVariants = typeof ONavigationDrawerVariantDefinitions[number];
|
|
103
|
-
export declare const ONavigationDrawerVariantsName = "
|
|
106
|
+
export declare const ONavigationDrawerVariantsName = "ONavigationDrawerVariants";
|
|
104
107
|
/** Panel */
|
|
105
108
|
export declare const ODividerTypeDefinitions: readonly ["top", "bottom", "left", "right"];
|
|
106
109
|
export type ODividerTypes = typeof ODividerTypeDefinitions[number];
|
|
107
|
-
export declare const ODividerTypesName = "
|
|
110
|
+
export declare const ODividerTypesName = "ODividerTypes";
|
|
108
111
|
export type OBorderCombination = `${ODividerTypes}` | `${ODividerTypes} ${ODividerTypes}` | `${ODividerTypes} ${ODividerTypes} ${ODividerTypes}` | `${ODividerTypes} ${ODividerTypes} ${ODividerTypes} ${ODividerTypes}`;
|
|
109
112
|
export declare const OPaddingTypeDefinitions: readonly ["top", "bottom", "left", "right", "none"];
|
|
110
113
|
export type OPaddingTypes = typeof OPaddingTypeDefinitions[number];
|
|
111
|
-
export declare const OPaddingTypesName = "
|
|
114
|
+
export declare const OPaddingTypesName = "ODividerTypes";
|
|
112
115
|
export type OPaddingCombination = `${OPaddingTypes}` | `${OPaddingTypes} ${OPaddingTypes}` | `${OPaddingTypes} ${OPaddingTypes} ${OPaddingTypes}` | `${OPaddingTypes} ${OPaddingTypes} ${OPaddingTypes} ${OPaddingTypes}`;
|
|
113
116
|
export declare const OPanelVariantDefinitions: readonly ["default", "dialog", "tab", "tab-vertical", "section", "toolbar", "settings", "navigation", "info-section", "content"];
|
|
114
117
|
export type OPanelVariants = typeof OPanelVariantDefinitions[number];
|
|
115
|
-
export declare const OPanelVariantsName = "
|
|
118
|
+
export declare const OPanelVariantsName = "OPanelVariants";
|
|
116
119
|
export declare const OPanelDirectionDefinitions: readonly ["row", "column"];
|
|
117
120
|
export type OPanelDirections = typeof OPanelDirectionDefinitions[number];
|
|
118
|
-
export declare const OPanelDirectionsName = "
|
|
121
|
+
export declare const OPanelDirectionsName = "OPanelDirections";
|
|
119
122
|
export declare const OHorizontalAlignmentDefinitions: readonly ["left", "center", "right"];
|
|
120
123
|
export type OHorizontalAlignments = typeof OHorizontalAlignmentDefinitions[number];
|
|
121
124
|
export declare const OHorizontalAlignmentsName = "OHorizontalAlignments";
|
|
@@ -125,34 +128,34 @@ export declare const OVerticalAlignmentsName = "OVerticalAlignments";
|
|
|
125
128
|
/** Select */
|
|
126
129
|
export declare const OSelectTypeDefinitions: readonly ["default", "add", "picker", "combobox"];
|
|
127
130
|
export type OSelectTypes = typeof OSelectTypeDefinitions[number];
|
|
128
|
-
export declare const OSelectTypesName = "
|
|
131
|
+
export declare const OSelectTypesName = "OSelectTypes";
|
|
129
132
|
/**Skeleton loader */
|
|
130
133
|
export declare const OSkeletonLoaderTypeDefinitions: readonly ["text", "image", "button", "chip", "actions", "avatar", "divider", "subtitle", "heading", "sentences", "paragraph", "article", "card", "card-avatar", "date-picker", "date-picker-options", "date-picker-days", "list-item", "list-item-avatar", "list-item-two-line", "list-item-avatar-two-line", "list-item-three-line", "list-item-avatar-three-line", "table", "table-heading", "table-thead", "table-tbody", "table-row-divider", "table-row", "table-tfoot"];
|
|
131
134
|
export type OSkeletonLoaderTypes = typeof OSkeletonLoaderTypeDefinitions[number];
|
|
132
|
-
export declare const OSkeletonLoaderName = "
|
|
135
|
+
export declare const OSkeletonLoaderName = "OSkeletonLoaderTypes";
|
|
133
136
|
export type OSkeletonLoaderTypesCombination = `${OSkeletonLoaderTypes}` | `${OSkeletonLoaderTypes}, ${OSkeletonLoaderTypes}` | `${OSkeletonLoaderTypes}, ${OSkeletonLoaderTypes}, ${OSkeletonLoaderTypes}`;
|
|
134
137
|
/** Tabs */
|
|
135
138
|
export declare const OScrollOffsetTypeDefinitions: readonly ["dialog", "drawer"];
|
|
136
139
|
export type OScrollOffsetTypes = "dialog" | "drawer" | string;
|
|
137
|
-
export declare const OScrollOffsetTypesName = "
|
|
140
|
+
export declare const OScrollOffsetTypesName = "OScrollOffsetTypes";
|
|
138
141
|
export declare const OTabVariantDefinitions: readonly ["default", "navigation", "settings", "header", "toolbar"];
|
|
139
142
|
export type OTabVariants = typeof OTabVariantDefinitions[number];
|
|
140
|
-
export declare const OTabVariantsName = "
|
|
143
|
+
export declare const OTabVariantsName = "OTabVariants";
|
|
141
144
|
/** Text Box */
|
|
142
145
|
export declare const OTextBoxVariantTypeDefinitions: readonly ["default", "search", "find-slim", "link", "media"];
|
|
143
146
|
export type OTextBoxVariantTypes = typeof OTextBoxVariantTypeDefinitions[number];
|
|
144
|
-
export declare const OTextBoxVariantTypesName = "
|
|
147
|
+
export declare const OTextBoxVariantTypesName = "OTextBoxVariantTypes";
|
|
145
148
|
export declare const OTextBoxTypeDefinitions: readonly ["text", "password", "number"];
|
|
146
149
|
export type OTextBoxTypes = typeof OTextBoxTypeDefinitions[number];
|
|
147
|
-
export declare const OTextBoxTypesName = "
|
|
150
|
+
export declare const OTextBoxTypesName = "OTextBoxTypes";
|
|
148
151
|
/** Toolbar */
|
|
149
152
|
export declare const OToolbarVariationDefinitions: readonly ["default", "blade", "menu", "drawer"];
|
|
150
153
|
export type OToolbarVariants = typeof OToolbarVariationDefinitions[number];
|
|
151
|
-
export declare const OToolbarVariantsName = "
|
|
154
|
+
export declare const OToolbarVariantsName = "OToolbarVariants";
|
|
152
155
|
/** Draggable */
|
|
153
156
|
export declare const ODraggableVariationDefinitions: readonly ["default", "list", "data-table", "element"];
|
|
154
157
|
export type ODraggableVariants = typeof ODraggableVariationDefinitions[number];
|
|
155
|
-
export declare const ODraggableVariantsName = "
|
|
158
|
+
export declare const ODraggableVariantsName = "ODraggableVariants";
|
|
156
159
|
/** Infinte Scroll */
|
|
157
160
|
export declare const OInfiniteScrollStatusDefinitions: readonly ["ok", "empty", "loading", "error"];
|
|
158
161
|
export type OInfiniteScrollStatusValues = typeof OInfiniteScrollStatusDefinitions[number];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.OInfiniteScrollStatusDefinitions = 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 = void 0;
|
|
3
|
+
exports.OListLineTypesName = exports.OListLineTypeDefinitions = 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.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.OInfiniteScrollStatusDefinitions = 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;
|
|
5
5
|
/**Shared */
|
|
6
6
|
const block = ["top", "bottom"];
|
|
7
7
|
const inline = ["start", "end", "left", "right"];
|
|
@@ -10,111 +10,113 @@ exports.OSizeTypesName = "SizeTypes";
|
|
|
10
10
|
exports.OContentHeightDefinitions = ["dynamic", "static"];
|
|
11
11
|
/**Slider */
|
|
12
12
|
exports.ODirectionDefinitions = ["horizontal", "vertical"];
|
|
13
|
-
exports.ODirectionTypesName = "
|
|
13
|
+
exports.ODirectionTypesName = "ODirectionTypes";
|
|
14
14
|
exports.OSliderVariantDefinitions = ["default", "prominent"];
|
|
15
|
-
exports.OSliderVariantsName = "
|
|
15
|
+
exports.OSliderVariantsName = "OSliderVariants";
|
|
16
16
|
/**Progress */
|
|
17
17
|
exports.OProgressTypeDefinitions = ["linear", "circular"];
|
|
18
|
-
exports.OProgressTypesName = "
|
|
18
|
+
exports.OProgressTypesName = "OProgressTypes";
|
|
19
19
|
exports.OProgressVariantDefinitions = ["default", "loading"];
|
|
20
|
-
exports.OProgressVariantsName = "
|
|
20
|
+
exports.OProgressVariantsName = "OProgressVariants";
|
|
21
21
|
exports.OProgressSizeTypeDefinitions = ["default", "large", "x-large"];
|
|
22
|
-
exports.OProgressSizeTypesName = "
|
|
22
|
+
exports.OProgressSizeTypesName = "OProgressSizeTypes";
|
|
23
23
|
/**AppBar */
|
|
24
24
|
exports.OAppBarTypeDefinitions = ["default", "app", "chrome"];
|
|
25
|
-
exports.OAppBarTypesName = "
|
|
25
|
+
exports.OAppBarTypesName = "OAppBarTypes";
|
|
26
26
|
/**Alert */
|
|
27
27
|
exports.OAlertTypeDefinitions = ["success", "info", "warning", "error"];
|
|
28
|
-
exports.OAlertTypesName = "
|
|
28
|
+
exports.OAlertTypesName = "OAlertTypes";
|
|
29
29
|
/**Button */
|
|
30
30
|
exports.OButtonPresetDefinitions = ["create", "remove", "delete", "ok", "cancel", "save", "close", "settings", "icon-add", "icon-comment", "icon-delete", "icon-edit", "icon-drag-handle", "icon-copy", "icon-code", "icon-close", "icon-back", "icon-more", "icon-navigate", "icon-settings", "load-more", "retry", "remove", "approve", "copy-to-clipboard", "details", "next", "previous", "select", "view-more", "send-request"];
|
|
31
|
-
exports.OButtonPresetsName = "
|
|
31
|
+
exports.OButtonPresetsName = "OOxideButtonPresets";
|
|
32
32
|
exports.OButtonVariantDefinitions = ["default", "prominent", "toolbar", "opacity", "dial", "slim"];
|
|
33
|
-
exports.OButtonVariantsName = "
|
|
33
|
+
exports.OButtonVariantsName = "OButtonVariants";
|
|
34
34
|
/**Button Group */
|
|
35
35
|
exports.OButtonGroupTypeDefinitions = ["default", "dial", "settings"];
|
|
36
|
-
exports.OButtonGroupTypesName = "
|
|
36
|
+
exports.OButtonGroupTypesName = "OButtonGroupTypes";
|
|
37
37
|
/** Column */
|
|
38
38
|
exports.OColValueDefinitions = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"];
|
|
39
|
-
exports.OColValuesName = "
|
|
39
|
+
exports.OColValuesName = "OColValues";
|
|
40
40
|
exports.OAlignmentTypeDefinitions = ["end", "center", "start", "baseline", "stretch", "auto"];
|
|
41
|
-
exports.OAlignmentTypesName = "
|
|
41
|
+
exports.OAlignmentTypesName = "OAlignmentTypes";
|
|
42
42
|
/** Dialog */
|
|
43
43
|
exports.ODialogTypeDefinitions = ["save-cancel", "confirm", "ok-cancel", "default", "app", "retry"];
|
|
44
|
-
exports.ODialogTypesName = "
|
|
44
|
+
exports.ODialogTypesName = "ODialogTypes";
|
|
45
45
|
exports.ODialogSizeDefinitions = ["small", "medium", "large", "full"];
|
|
46
46
|
/** Divider */
|
|
47
47
|
exports.OPageDividerTypeDefinitions = ["default", "prominent"];
|
|
48
|
-
exports.OPageDividerTypesName = "
|
|
48
|
+
exports.OPageDividerTypesName = "OPageDividerTypes";
|
|
49
49
|
/** Expansion Panel */
|
|
50
50
|
exports.OPanelTypeDefinitions = ["default", "navigation", "section"];
|
|
51
|
-
exports.OPanelTypesName = "
|
|
51
|
+
exports.OPanelTypesName = "OPanelTypes";
|
|
52
52
|
/**Icon */
|
|
53
53
|
exports.OIconPresetDefinitions = ["add", "delete", "edit", "drag-handle", "copy", "code", "expand", "remove", "info"];
|
|
54
|
-
exports.OIconPresetsName = "
|
|
54
|
+
exports.OIconPresetsName = "OIconPresets";
|
|
55
55
|
exports.OIconSizeDefinitions = ["x-large", "large", "default", "x-small", "small"];
|
|
56
56
|
exports.OIconSizesName = "OIconSizes";
|
|
57
|
+
exports.OIconAnimationsDefinition = ["spin", "beat", "bounce", "flip"];
|
|
58
|
+
exports.OIconAnimationsName = "OIconAnimations";
|
|
57
59
|
// export const IconWeightDefinitions = ["default", "fat"] as const;
|
|
58
60
|
// export type OIconWeights = typeof IconWeightDefinitions[number];
|
|
59
61
|
// export const OIconWeightsName = "OIconWeights";
|
|
60
62
|
exports.OIconVariantDefinitions = ["default", "background"];
|
|
61
|
-
exports.OIconVariantsName = "
|
|
63
|
+
exports.OIconVariantsName = "OIconVariants";
|
|
62
64
|
/** Image */
|
|
63
65
|
exports.ORatioTypeDefinitions = ["default", "landscape"];
|
|
64
|
-
exports.ORatioTypesName = "
|
|
66
|
+
exports.ORatioTypesName = "ORatioTypes";
|
|
65
67
|
/** List */
|
|
66
68
|
exports.OListItemVariantDefinitions = ["default", "delete", "navigation"];
|
|
67
|
-
exports.OListItemVariantsName = "
|
|
69
|
+
exports.OListItemVariantsName = "OListItemVariants";
|
|
68
70
|
exports.OListTypeDefinitions = ["default", "navigation", "options"];
|
|
69
|
-
exports.OListTypesName = "
|
|
71
|
+
exports.OListTypesName = "OListTypes";
|
|
70
72
|
exports.OListLineTypeDefinitions = [false, "one", "two", "three"];
|
|
71
|
-
exports.OListLineTypesName = "
|
|
73
|
+
exports.OListLineTypesName = "OListLineTypes";
|
|
72
74
|
/** Menu */
|
|
73
75
|
// type Tblock = "top" | "bottom";
|
|
74
76
|
// type Tinline = "start" | "end" | "left" | "right";
|
|
75
77
|
exports.OMenuLocationDefinitions = ["top", "bottom", "start", "end", "left", "right", "center", "center center", "top center", "top start", "top end", "bottom start", "bottom end", "start top", "start bottom", "end top", "end bottom"];
|
|
76
|
-
exports.OMenuLocationsName = "
|
|
78
|
+
exports.OMenuLocationsName = "OMenuLocations";
|
|
77
79
|
/**Navigation Drawer */
|
|
78
80
|
exports.ONavigationDrawerLocationDefinitions = ["top", "left", "right", "bottom", "end", "start"];
|
|
79
|
-
exports.ONavigationDrawerLocationsName = "
|
|
81
|
+
exports.ONavigationDrawerLocationsName = "ONavigationDrawerLocations";
|
|
80
82
|
exports.ONavigationDrawerVariantDefinitions = ["default", "app", "editor", "dialog"];
|
|
81
|
-
exports.ONavigationDrawerVariantsName = "
|
|
83
|
+
exports.ONavigationDrawerVariantsName = "ONavigationDrawerVariants";
|
|
82
84
|
/** Panel */
|
|
83
85
|
//export const DividerTypeDefinitions = ["top", "bottom", "top bottom","left","right", "left right","top bottom left right","top bottom left","top bottom right"] as const;
|
|
84
86
|
exports.ODividerTypeDefinitions = ["top", "bottom", "left", "right"];
|
|
85
|
-
exports.ODividerTypesName = "
|
|
87
|
+
exports.ODividerTypesName = "ODividerTypes";
|
|
86
88
|
exports.OPaddingTypeDefinitions = ["top", "bottom", "left", "right", "none"];
|
|
87
|
-
exports.OPaddingTypesName = "
|
|
89
|
+
exports.OPaddingTypesName = "ODividerTypes";
|
|
88
90
|
exports.OPanelVariantDefinitions = ["default", "dialog", "tab", "tab-vertical", "section", "toolbar", "settings", "navigation", "info-section", "content"];
|
|
89
|
-
exports.OPanelVariantsName = "
|
|
91
|
+
exports.OPanelVariantsName = "OPanelVariants";
|
|
90
92
|
exports.OPanelDirectionDefinitions = ["row", "column"];
|
|
91
|
-
exports.OPanelDirectionsName = "
|
|
93
|
+
exports.OPanelDirectionsName = "OPanelDirections";
|
|
92
94
|
exports.OHorizontalAlignmentDefinitions = ["left", "center", "right"];
|
|
93
95
|
exports.OHorizontalAlignmentsName = "OHorizontalAlignments";
|
|
94
96
|
exports.OVerticalAlignmentDefinitions = ["top", "center", "bottom"];
|
|
95
97
|
exports.OVerticalAlignmentsName = "OVerticalAlignments";
|
|
96
98
|
/** Select */
|
|
97
99
|
exports.OSelectTypeDefinitions = ["default", "add", "picker", "combobox"];
|
|
98
|
-
exports.OSelectTypesName = "
|
|
100
|
+
exports.OSelectTypesName = "OSelectTypes";
|
|
99
101
|
/**Skeleton loader */
|
|
100
102
|
exports.OSkeletonLoaderTypeDefinitions = ["text", "image", "button", "chip", "actions", "avatar", "divider", "subtitle", "heading", "sentences", "paragraph", "article", "card", "card-avatar", "date-picker", "date-picker-options", "date-picker-days", "list-item", "list-item-avatar", "list-item-two-line", "list-item-avatar-two-line", "list-item-three-line", "list-item-avatar-three-line", "table", "table-heading", "table-thead", "table-tbody", "table-row-divider", "table-row", "table-tfoot"];
|
|
101
|
-
exports.OSkeletonLoaderName = "
|
|
103
|
+
exports.OSkeletonLoaderName = "OSkeletonLoaderTypes";
|
|
102
104
|
/** Tabs */
|
|
103
105
|
exports.OScrollOffsetTypeDefinitions = ["dialog", "drawer"];
|
|
104
|
-
exports.OScrollOffsetTypesName = "
|
|
106
|
+
exports.OScrollOffsetTypesName = "OScrollOffsetTypes";
|
|
105
107
|
exports.OTabVariantDefinitions = ["default", "navigation", "settings", "header", "toolbar"];
|
|
106
|
-
exports.OTabVariantsName = "
|
|
108
|
+
exports.OTabVariantsName = "OTabVariants";
|
|
107
109
|
/** Text Box */
|
|
108
110
|
//export const TextBoxVariantTypeDefinitions = ["default", "filter-menu", "search", "find-slim", "numberselector", "numberselector-prepend", "link", "media"] as const;
|
|
109
111
|
exports.OTextBoxVariantTypeDefinitions = ["default", "search", "find-slim", "link", "media"];
|
|
110
|
-
exports.OTextBoxVariantTypesName = "
|
|
112
|
+
exports.OTextBoxVariantTypesName = "OTextBoxVariantTypes";
|
|
111
113
|
exports.OTextBoxTypeDefinitions = ["text", "password", "number"];
|
|
112
|
-
exports.OTextBoxTypesName = "
|
|
114
|
+
exports.OTextBoxTypesName = "OTextBoxTypes";
|
|
113
115
|
/** Toolbar */
|
|
114
116
|
exports.OToolbarVariationDefinitions = ["default", "blade", "menu", "drawer"];
|
|
115
|
-
exports.OToolbarVariantsName = "
|
|
117
|
+
exports.OToolbarVariantsName = "OToolbarVariants";
|
|
116
118
|
/** Draggable */
|
|
117
119
|
exports.ODraggableVariationDefinitions = ["default", "list", "data-table", "element"];
|
|
118
|
-
exports.ODraggableVariantsName = "
|
|
120
|
+
exports.ODraggableVariantsName = "ODraggableVariants";
|
|
119
121
|
/** Infinte Scroll */
|
|
120
122
|
exports.OInfiniteScrollStatusDefinitions = ["ok", "empty", "loading", "error"];
|