@omnia/fx 8.0.311-dev → 8.0.313-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.
Files changed (22) hide show
  1. package/internal-do-not-import-from-here/rules/DisplayRules.d.ts +1 -0
  2. package/internal-do-not-import-from-here/ux/StyleFlow.d.ts +220 -0
  3. package/internal-do-not-import-from-here/ux/Styles.stylex.d.ts +2 -2
  4. package/internal-do-not-import-from-here/ux/admin/chrome/AdminChrome.css.d.ts +1 -0
  5. package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderRenderer.d.ts +3 -1
  6. package/internal-do-not-import-from-here/ux/aurora/designkits/shared/BlueprintsTemplates.d.ts +3 -45
  7. package/internal-do-not-import-from-here/ux/aurora/designkits/shared/ThemeDefinitionInstance.d.ts +7 -14
  8. package/internal-do-not-import-from-here/ux/aurora/store/ComponentBlueprintStore.d.ts +3 -0
  9. package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +3 -0
  10. package/internal-do-not-import-from-here/ux/aurora/store/ThemeContextStore.d.ts +36 -0
  11. package/internal-do-not-import-from-here/ux/aurora/store/ThemeStore.d.ts +3 -0
  12. package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +3 -0
  13. package/internal-do-not-import-from-here/ux/commandpalette/commands/api-explorer/models/ApiSpec.d.ts +5 -5
  14. package/internal-do-not-import-from-here/ux/commandpalette/commands/api-explorer/specs/HubApiSpec.d.ts +1 -0
  15. package/internal-do-not-import-from-here/ux/commandpalette/commands/api-explorer/specs/index.d.ts +1 -0
  16. package/internal-do-not-import-from-here/ux/commandpalette/commands/api-explorer/stores/ApiExplorerStore.d.ts +6 -16
  17. package/internal-do-not-import-from-here/ux/confirmdialog/ConfirmDialog.d.ts +1 -1
  18. package/internal-do-not-import-from-here/ux/dialog/Dialog.d.ts +1 -1
  19. package/internal-do-not-import-from-here/ux/journey/stores/JourneyRouterStore.d.ts +1 -0
  20. package/internal-do-not-import-from-here/ux/oxide/timepicker/TimePicker.d.ts +1 -1
  21. package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyPicker.d.ts +1 -1
  22. package/package.json +2 -2
@@ -5,4 +5,5 @@ export declare class DisplayRules {
5
5
  static IsPreviewMode(): boolean;
6
6
  static IsFeaturePreviewMode(): boolean;
7
7
  static isAdvancedModeActivated(): boolean;
8
+ static IsNotFoundMode(path: string): boolean;
8
9
  }
@@ -1,5 +1,6 @@
1
1
  import { types } from "typestyle";
2
2
  import { NestedCSSPropertiesExtends } from "@omnia/fx/models";
3
+ import { mergeCssRules } from "./Styles.stylex";
3
4
  type CSSClassNames<T extends string> = {
4
5
  [P in T]?: string | any;
5
6
  };
@@ -12,6 +13,225 @@ type ReturnStyleFlow<T> = {
12
13
  [K in keyof T]: T[K] extends (...args: infer U) => any ? (...args: U) => string : string;
13
14
  };
14
15
  export declare namespace StyleFlow {
16
+ export const rules: {
17
+ position(position: string): import("./Styles.stylex").StylexValue;
18
+ textFillColor(textFillColor: string): import("./Styles.stylex").StylexValue;
19
+ backgroundClip(backgroundClip: string, important?: boolean): import("./Styles.stylex").StylexValue;
20
+ fontFamily(fontFamily: string): import("./Styles.stylex").StylexValue;
21
+ flexBasis(flexBasis: string | number): import("./Styles.stylex").StylexValue;
22
+ flexGrow(flexGrow: number): import("./Styles.stylex").StylexValue;
23
+ maxWidth(maxWidth: string): import("./Styles.stylex").StylexValue;
24
+ alignSelf(alignSelf: string): import("./Styles.stylex").StylexValue;
25
+ minWidth: (minWidth: string, important?: boolean) => import("./Styles.stylex").StylexValue;
26
+ flex: (flex: string | number, important?: boolean) => import("./Styles.stylex").StylexValue;
27
+ justifyContent(justifyContent: string): import("./Styles.stylex").StylexValue;
28
+ flexWrap(flexWrap: string): import("./Styles.stylex").StylexValue;
29
+ rowGap(rowGap: string): import("./Styles.stylex").StylexValue;
30
+ columnGap(columnGap: string): import("./Styles.stylex").StylexValue;
31
+ flexDirection(flexDirection: string): import("./Styles.stylex").StylexValue;
32
+ width: (width: string | number, important?: boolean) => import("./Styles.stylex").StylexValue;
33
+ height: (height: string | number, important?: boolean) => import("./Styles.stylex").StylexValue;
34
+ maxHeight: (maxHeight: string | number, important?: boolean) => import("./Styles.stylex").StylexValue;
35
+ minHeight(minHeight: string | number): import("./Styles.stylex").StylexValue;
36
+ alignItems(alignItems: string): import("./Styles.stylex").StylexValue;
37
+ boxSizing(boxSizing: string): import("./Styles.stylex").StylexValue;
38
+ display(display: string): import("./Styles.stylex").StylexValue;
39
+ wordBreak(wordBreak: string): import("./Styles.stylex").StylexValue;
40
+ whiteSpace(whiteSpace: string): import("./Styles.stylex").StylexValue;
41
+ backDropFilter(backDropFilter: string): import("./Styles.stylex").StylexValue;
42
+ transition(transition: string): import("./Styles.stylex").StylexValue;
43
+ transform(transform: string): import("./Styles.stylex").StylexValue;
44
+ fontSize: (fontSize: string | number, important?: boolean) => import("./Styles.stylex").StylexValue;
45
+ fontWeight(fontWeight: number): import("./Styles.stylex").StylexValue;
46
+ lineHeight(lineHeight: string): import("./Styles.stylex").StylexValue;
47
+ letterSpacing(letterSpacing: string): import("./Styles.stylex").StylexValue;
48
+ textDecoration: (textDecoration: string, important?: boolean) => import("./Styles.stylex").StylexValue;
49
+ background: (background: string, important?: boolean) => import("./Styles.stylex").StylexValue;
50
+ opacity(opacity: string | number): import("./Styles.stylex").StylexValue;
51
+ backgroundImage(backgroundImage: string, important?: boolean): import("./Styles.stylex").StylexValue;
52
+ backgroundPosition(backgroundPosition: string, important?: boolean): import("./Styles.stylex").StylexValue;
53
+ backgroundRepeat(backgroundRepeat: string, important?: boolean): import("./Styles.stylex").StylexValue;
54
+ backgroundSize(backgroundSize: string, important?: boolean): import("./Styles.stylex").StylexValue;
55
+ backgroundColor: (backgroundColor: string, important?: boolean) => import("./Styles.stylex").StylexValue;
56
+ color: (color: string, important?: boolean) => import("./Styles.stylex").StylexValue;
57
+ borderTopLeftRadius: (borderTopLeftRadius: string, important?: boolean) => import("./Styles.stylex").StylexValue;
58
+ borderTopRightRadius: (borderTopRightRadius: string, important?: boolean) => import("./Styles.stylex").StylexValue;
59
+ borderBottomRightRadius: (borderBottomRightRadius: string, important?: boolean) => import("./Styles.stylex").StylexValue;
60
+ borderBottomLeftRadius: (borderBottomLeftRadius: string, important?: boolean) => import("./Styles.stylex").StylexValue;
61
+ border: (value: {
62
+ top?: string | number;
63
+ right?: string | number;
64
+ bottom?: string | number;
65
+ left?: string | number;
66
+ } | string) => Readonly<import("./Styles.stylex").StylexValue>;
67
+ margin: (value: {
68
+ top?: string | number;
69
+ right?: string | number;
70
+ bottom?: string | number;
71
+ left?: string | number;
72
+ } | string | number, important?: boolean) => Readonly<import("./Styles.stylex").StylexValue>;
73
+ marginLeft: (marginLeft: string | number, important?: boolean) => import("./Styles.stylex").StylexValue;
74
+ marginBottom: (marginBottom: string | number, important?: boolean) => import("./Styles.stylex").StylexValue;
75
+ marginRight: (marginRight: string | number, important?: boolean) => import("./Styles.stylex").StylexValue;
76
+ marginTop: (marginTop: string | number, important?: boolean) => import("./Styles.stylex").StylexValue;
77
+ padding: (value: {
78
+ top?: string | number;
79
+ right?: string | number;
80
+ bottom?: string | number;
81
+ left?: string | number;
82
+ } | string | number, important?: boolean) => Readonly<import("./Styles.stylex").StylexValue>;
83
+ paddingLeft: (paddingLeft: string | number, important?: boolean) => import("./Styles.stylex").StylexValue;
84
+ paddingRight: (paddingRight: string | number, important?: boolean) => import("./Styles.stylex").StylexValue;
85
+ paddingBottom: (paddingBottom: string | number, important?: boolean) => import("./Styles.stylex").StylexValue;
86
+ paddingTop: (paddingTop: string | number, important?: boolean) => import("./Styles.stylex").StylexValue;
87
+ borderLeft: (borderLeft: string | number, important?: boolean) => import("./Styles.stylex").StylexValue;
88
+ borderRight: (borderRight: string | number, important?: boolean) => import("./Styles.stylex").StylexValue;
89
+ borderBottom: (borderBottom: string | number, important?: boolean) => import("./Styles.stylex").StylexValue;
90
+ borderTop: (borderTop: string | number, important?: boolean) => import("./Styles.stylex").StylexValue;
91
+ borderRadius(borderRadius: string | number): import("./Styles.stylex").StylexValue;
92
+ textTransform(textTransform: string): import("./Styles.stylex").StylexValue;
93
+ lineCamp(lineCamp: number): import("./Styles.stylex").StylexValue;
94
+ overflow: (overflow: string, important?: boolean) => import("./Styles.stylex").StylexValue;
95
+ overflowY: (overflowY: string, important?: boolean) => import("./Styles.stylex").StylexValue;
96
+ overflowX: (overflowX: string, important?: boolean) => import("./Styles.stylex").StylexValue;
97
+ boxOrient(boxOrient: string): import("./Styles.stylex").StylexValue;
98
+ cursor: (cursor: string, important?: boolean) => import("./Styles.stylex").StylexValue;
99
+ top: (top: number | string, important?: boolean) => import("./Styles.stylex").StylexValue;
100
+ left(left: number | string): import("./Styles.stylex").StylexValue;
101
+ right: (right: number | string, important?: boolean) => import("./Styles.stylex").StylexValue;
102
+ zIndex(zIndex: number): import("./Styles.stylex").StylexValue;
103
+ textAlign(textAlign: string): import("./Styles.stylex").StylexValue;
104
+ transformOrigin(transformOrigin: string): import("./Styles.stylex").StylexValue;
105
+ borderColor(borderColor: string): import("./Styles.stylex").StylexValue;
106
+ pointerEvents(pointerEvents: string): import("./Styles.stylex").StylexValue;
107
+ verticalAlign(verticalAlign: string): import("./Styles.stylex").StylexValue;
108
+ textOverflow(textOverflow: string): import("./Styles.stylex").StylexValue;
109
+ flexShrink(flexShrink: string | number): import("./Styles.stylex").StylexValue;
110
+ gridTemplateColumns(gridTemplateColumns: string | number): import("./Styles.stylex").StylexValue;
111
+ hover: {
112
+ cursor: (cursor: string, important?: boolean) => import("./Styles.stylex").StylexValue;
113
+ transform: (transform: string) => import("./Styles.stylex").StylexValue;
114
+ background: (background: string) => import("./Styles.stylex").StylexValue;
115
+ backgroundColor: (backgroundColor: string, important?: boolean) => import("./Styles.stylex").StylexValue;
116
+ boxShadow: (boxShadow: string) => import("./Styles.stylex").StylexValue;
117
+ };
118
+ nest: {
119
+ iframe: {
120
+ paddingLeft: (paddingLeft: string | number) => {
121
+ class: string;
122
+ style: {
123
+ "--paddingLeft": string | number;
124
+ };
125
+ };
126
+ paddingRight: (paddingRight: string | number) => {
127
+ class: string;
128
+ style: {
129
+ "--paddingRight": string | number;
130
+ };
131
+ };
132
+ paddingBottom: (paddingBottom: string | number) => {
133
+ class: string;
134
+ style: {
135
+ "--paddingBottom": string | number;
136
+ };
137
+ };
138
+ paddingTop: (paddingTop: string | number) => {
139
+ class: string;
140
+ style: {
141
+ "--paddingTop": string | number;
142
+ };
143
+ };
144
+ };
145
+ };
146
+ after: {};
147
+ before: {};
148
+ media: {
149
+ sm: {
150
+ fontSize: (fontSize: string, important?: boolean) => {
151
+ class: string;
152
+ style: {
153
+ "--fontSize-sm": string;
154
+ };
155
+ };
156
+ fontWeight: (fontWeight: number, important?: boolean) => {
157
+ class: string;
158
+ style: {
159
+ "--fontWeight-sm": number;
160
+ };
161
+ };
162
+ lineHeight: (lineHeight: string, important?: boolean) => {
163
+ class: string;
164
+ style: {
165
+ "--lineHeight-sm": string;
166
+ };
167
+ };
168
+ letterSpacing: (letterSpacing: string, important?: boolean) => {
169
+ class: string;
170
+ style: {
171
+ "--letterSpacing-sm": string;
172
+ };
173
+ };
174
+ };
175
+ md: {
176
+ fontSize: (fontSize: string, important?: boolean) => {
177
+ class: string;
178
+ style: {
179
+ "--fontSize-md": string;
180
+ };
181
+ };
182
+ fontWeight: (fontWeight: number, important?: boolean) => {
183
+ class: string;
184
+ style: {
185
+ "--fontWeight-md": number;
186
+ };
187
+ };
188
+ lineHeight: (lineHeight: string, important?: boolean) => {
189
+ class: string;
190
+ style: {
191
+ "--lineHeight-md": string;
192
+ };
193
+ };
194
+ letterSpacing: (letterSpacing: string, important?: boolean) => {
195
+ class: string;
196
+ style: {
197
+ "--letterSpacing-md": string;
198
+ };
199
+ };
200
+ };
201
+ lg: {
202
+ fontSize: (fontSize: string, important?: boolean) => {
203
+ class: string;
204
+ style: {
205
+ "--fontSize-lg": string;
206
+ };
207
+ };
208
+ fontWeight: (fontWeight: number, important?: boolean) => {
209
+ class: string;
210
+ style: {
211
+ "--fontWeight-lg": number;
212
+ };
213
+ };
214
+ lineHeight: (lineHeight: string, important?: boolean) => {
215
+ class: string;
216
+ style: {
217
+ "--lineHeight-lg": string;
218
+ };
219
+ };
220
+ letterSpacing: (letterSpacing: string, important?: boolean) => {
221
+ class: string;
222
+ style: {
223
+ "--letterSpacing-lg": string;
224
+ };
225
+ };
226
+ };
227
+ };
228
+ container: {
229
+ sm: {};
230
+ md: {};
231
+ lg: {};
232
+ };
233
+ };
234
+ export const mergeRules: typeof mergeCssRules;
15
235
  export function define<TCSSClasses extends CSSClasses<any> = any>(targetCSSClasses: TCSSClasses, classes?: TCSSClasses, prefixClassName?: string): TCSSClasses;
16
236
  export function override<T extends CSSClassesExtends<string>>(target: T): InternalStyleFlow.StyleOverride<T>;
17
237
  export function use<Names extends string, T extends CSSClassesExtends<Names>>(targetCSSClasses: T, ...mergeCSSClasses: Array<CSSClassesExtends<Names>>): ReturnStyleFlow<T>;
@@ -34,8 +34,8 @@ export declare const cssRules: {
34
34
  rowGap(rowGap: string): StylexValue;
35
35
  columnGap(columnGap: string): StylexValue;
36
36
  flexDirection(flexDirection: string): StylexValue;
37
- width: (width: string, important?: boolean) => StylexValue;
38
- height: (height: string, important?: boolean) => StylexValue;
37
+ width: (width: string | number, important?: boolean) => StylexValue;
38
+ height: (height: string | number, important?: boolean) => StylexValue;
39
39
  maxHeight: (maxHeight: string | number, important?: boolean) => StylexValue;
40
40
  minHeight(minHeight: string | number): StylexValue;
41
41
  alignItems(alignItems: string): StylexValue;
@@ -3,6 +3,7 @@ export declare const AdminChromeStyles: {
3
3
  wrapper: (color: ColorDefinition) => string;
4
4
  journeyContainer: string;
5
5
  backgroundIcon: string;
6
+ backgroundPosition: string;
6
7
  omniaLogo: {
7
8
  wrapperCircle: string;
8
9
  wrapper: string;
@@ -1,9 +1,11 @@
1
- import { HeaderBlueprint } from "@omnia/fx-models";
1
+ import { HeaderBlueprint, ThemeContextType } from "@omnia/fx-models";
2
2
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
3
3
  "emit:update:modelValue": (value: HeaderBlueprint) => void;
4
4
  } & {
5
5
  "v-model"?: HeaderBlueprint;
6
6
  } & {
7
7
  modelValue?: HeaderBlueprint;
8
+ } & {
9
+ themeType?: ThemeContextType;
8
10
  }>) => any;
9
11
  export default _default;
@@ -1,4 +1,4 @@
1
- import { ComponentBlueprints, guid, IconBlueprint, IconBlueprints, SpacingBlueprints, TabsBlueprints, TypographyBlueprints } from "@omnia/fx-models";
1
+ import { ComponentBlueprints, guid, IconBlueprint, IconBlueprints, SpacingBlueprints, TypographyBlueprints } from "@omnia/fx-models";
2
2
  import { DefaultInnerSpacing, DefaultLayoutSpacing, PreviewInnerSpacing } from "./SpacingBlueprint";
3
3
  import { DefaultTypography, FunkyTypography, PreviewMiniTypography, PreviewTypography } from "./TypographyBlueprints";
4
4
  declare class DefaultIconsBlueprintsTemplate implements IconBlueprints {
@@ -38,55 +38,13 @@ export declare class PreviewSpacingBlueprintTemplate implements SpacingBlueprint
38
38
  declare class SquareBlueprintsTemplate implements ComponentBlueprints {
39
39
  id: any;
40
40
  name: any;
41
- buttons: {
42
- text: {
43
- primary: import("@omnia/fx-models").ButtonBlueprint;
44
- basic: import("@omnia/fx-models").ButtonBlueprint;
45
- accent1: import("@omnia/fx-models").ButtonBlueprint;
46
- warn: import("@omnia/fx-models").ButtonBlueprint;
47
- link: import("@omnia/fx-models").ButtonBlueprint;
48
- variant1: import("@omnia/fx-models").ButtonBlueprint;
49
- variant2: import("@omnia/fx-models").ButtonBlueprint;
50
- variant3: import("@omnia/fx-models").ButtonBlueprint;
51
- variant4: import("@omnia/fx-models").ButtonBlueprint;
52
- };
53
- icon: {
54
- primary: import("@omnia/fx-models").ButtonBlueprint;
55
- basic: import("@omnia/fx-models").ButtonBlueprint;
56
- accent1: import("@omnia/fx-models").ButtonBlueprint;
57
- warn: import("@omnia/fx-models").ButtonBlueprint;
58
- link: import("@omnia/fx-models").ButtonBlueprint;
59
- variant1: import("@omnia/fx-models").ButtonBlueprint;
60
- variant2: import("@omnia/fx-models").ButtonBlueprint;
61
- variant3: import("@omnia/fx-models").ButtonBlueprint;
62
- variant4: import("@omnia/fx-models").ButtonBlueprint;
63
- };
64
- };
65
- tabs: TabsBlueprints;
66
- icons?: DefaultIconsBlueprintsTemplate;
41
+ strategy?: "MD2" | "MD3";
67
42
  constructor(id: guid, name: string);
68
43
  }
69
44
  declare class RoundBlueprintsTemplate implements ComponentBlueprints {
70
45
  id: any;
71
46
  name: any;
72
- buttons: {
73
- text: {
74
- primary: import("@omnia/fx-models").ButtonBlueprint;
75
- basic: import("@omnia/fx-models").ButtonBlueprint;
76
- accent1: import("@omnia/fx-models").ButtonBlueprint;
77
- warn: import("@omnia/fx-models").ButtonBlueprint;
78
- link: import("@omnia/fx-models").ButtonBlueprint;
79
- };
80
- icon: {
81
- primary: import("@omnia/fx-models").ButtonBlueprint;
82
- basic: import("@omnia/fx-models").ButtonBlueprint;
83
- accent1: import("@omnia/fx-models").ButtonBlueprint;
84
- warn: import("@omnia/fx-models").ButtonBlueprint;
85
- link: import("@omnia/fx-models").ButtonBlueprint;
86
- };
87
- };
88
- tabs: TabsBlueprints;
89
- icons?: DefaultIconsBlueprintsTemplate;
47
+ strategy?: "MD2" | "MD3";
90
48
  constructor(id: guid, name: string);
91
49
  }
92
50
  export declare class DefaultTypographyBlueprint implements TypographyBlueprints {
@@ -8,20 +8,13 @@ export declare class ThemeDefinitionInstance implements ResolvedThemeDefinition
8
8
  spacing: SpacingBlueprints;
9
9
  components: ComponentBlueprints;
10
10
  constructor(colors: {
11
- primary: string | ColorSchema;
12
- secondary: string | ColorSchema;
13
- accent1: string | ColorSchema;
14
- accent2: string | ColorSchema;
15
- accent3: string | ColorSchema;
16
- neutral: string | ColorSchema;
17
- background: string | ColorSchema;
18
- info: string | ColorSchema;
19
- error: string | ColorSchema;
20
- warning: string | ColorSchema;
21
- notification: string | ColorSchema;
11
+ primary?: string | ColorSchema;
12
+ secondary?: string | ColorSchema;
13
+ neutral?: string | ColorSchema;
14
+ background?: string | ColorSchema;
22
15
  }, name: string, id: guid, blueprints: {
23
- typography: TypographyBlueprints;
24
- spacing: SpacingBlueprints;
25
- components: ComponentBlueprints;
16
+ typography?: TypographyBlueprints;
17
+ spacing?: SpacingBlueprints;
18
+ components?: ComponentBlueprints;
26
19
  });
27
20
  }
@@ -8,6 +8,9 @@ export declare const useComponentBlueprintStore: () => {
8
8
  blueprints: ComponentBlueprints;
9
9
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
10
10
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
11
+ ensure(): {
12
+ buttons: () => void;
13
+ };
11
14
  setBlueprint(type: blueprintType): void;
12
15
  setBluePrints(componentBlueprints: ComponentBlueprints): void;
13
16
  }>;
@@ -40,6 +40,9 @@ export declare const useSpacingBlueprintStore: () => {
40
40
  blueprints: import("@omnia/fx-models").ComponentBlueprints;
41
41
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
42
42
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
43
+ ensure(): {
44
+ buttons: () => void;
45
+ };
43
46
  setBlueprint(type: "default"): void;
44
47
  setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
45
48
  }>;
@@ -28,6 +28,9 @@ export declare const useThemeContextStore: () => {
28
28
  blueprints: import("@omnia/fx-models").ComponentBlueprints;
29
29
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
30
30
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
31
+ ensure(): {
32
+ buttons: () => void;
33
+ };
31
34
  setBlueprint(type: "default"): void;
32
35
  setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
33
36
  }>;
@@ -93,6 +96,9 @@ export declare const useThemeContextStore: () => {
93
96
  blueprints: import("@omnia/fx-models").ComponentBlueprints;
94
97
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
95
98
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
99
+ ensure(): {
100
+ buttons: () => void;
101
+ };
96
102
  setBlueprint(type: "default"): void;
97
103
  setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
98
104
  }>;
@@ -158,6 +164,9 @@ export declare const useThemeContextStore: () => {
158
164
  blueprints: import("@omnia/fx-models").ComponentBlueprints;
159
165
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
160
166
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
167
+ ensure(): {
168
+ buttons: () => void;
169
+ };
161
170
  setBlueprint(type: "default"): void;
162
171
  setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
163
172
  }>;
@@ -223,6 +232,9 @@ export declare const useThemeContextStore: () => {
223
232
  blueprints: import("@omnia/fx-models").ComponentBlueprints;
224
233
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
225
234
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
235
+ ensure(): {
236
+ buttons: () => void;
237
+ };
226
238
  setBlueprint(type: "default"): void;
227
239
  setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
228
240
  }>;
@@ -290,6 +302,9 @@ export declare const useThemeContextStore: () => {
290
302
  blueprints: import("@omnia/fx-models").ComponentBlueprints;
291
303
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
292
304
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
305
+ ensure(): {
306
+ buttons: () => void;
307
+ };
293
308
  setBlueprint(type: "default"): void;
294
309
  setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
295
310
  }>;
@@ -355,6 +370,9 @@ export declare const useThemeContextStore: () => {
355
370
  blueprints: import("@omnia/fx-models").ComponentBlueprints;
356
371
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
357
372
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
373
+ ensure(): {
374
+ buttons: () => void;
375
+ };
358
376
  setBlueprint(type: "default"): void;
359
377
  setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
360
378
  }>;
@@ -420,6 +438,9 @@ export declare const useThemeContextStore: () => {
420
438
  blueprints: import("@omnia/fx-models").ComponentBlueprints;
421
439
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
422
440
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
441
+ ensure(): {
442
+ buttons: () => void;
443
+ };
423
444
  setBlueprint(type: "default"): void;
424
445
  setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
425
446
  }>;
@@ -485,6 +506,9 @@ export declare const useThemeContextStore: () => {
485
506
  blueprints: import("@omnia/fx-models").ComponentBlueprints;
486
507
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
487
508
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
509
+ ensure(): {
510
+ buttons: () => void;
511
+ };
488
512
  setBlueprint(type: "default"): void;
489
513
  setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
490
514
  }>;
@@ -552,6 +576,9 @@ export declare const useThemeContextStore: () => {
552
576
  blueprints: import("@omnia/fx-models").ComponentBlueprints;
553
577
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
554
578
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
579
+ ensure(): {
580
+ buttons: () => void;
581
+ };
555
582
  setBlueprint(type: "default"): void;
556
583
  setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
557
584
  }>;
@@ -617,6 +644,9 @@ export declare const useThemeContextStore: () => {
617
644
  blueprints: import("@omnia/fx-models").ComponentBlueprints;
618
645
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
619
646
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
647
+ ensure(): {
648
+ buttons: () => void;
649
+ };
620
650
  setBlueprint(type: "default"): void;
621
651
  setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
622
652
  }>;
@@ -682,6 +712,9 @@ export declare const useThemeContextStore: () => {
682
712
  blueprints: import("@omnia/fx-models").ComponentBlueprints;
683
713
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
684
714
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
715
+ ensure(): {
716
+ buttons: () => void;
717
+ };
685
718
  setBlueprint(type: "default"): void;
686
719
  setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
687
720
  }>;
@@ -747,6 +780,9 @@ export declare const useThemeContextStore: () => {
747
780
  blueprints: import("@omnia/fx-models").ComponentBlueprints;
748
781
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
749
782
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
783
+ ensure(): {
784
+ buttons: () => void;
785
+ };
750
786
  setBlueprint(type: "default"): void;
751
787
  setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
752
788
  }>;
@@ -23,6 +23,9 @@ export declare const useThemeStore: () => {
23
23
  blueprints: import("@omnia/fx-models").ComponentBlueprints;
24
24
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
25
25
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
26
+ ensure(): {
27
+ buttons: () => void;
28
+ };
26
29
  setBlueprint(type: "default"): void;
27
30
  setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
28
31
  }>;
@@ -42,6 +42,9 @@ export declare const useTypographyBlueprintStore: () => {
42
42
  blueprints: import("@omnia/fx-models").ComponentBlueprints;
43
43
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
44
44
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
45
+ ensure(): {
46
+ buttons: () => void;
47
+ };
45
48
  setBlueprint(type: "default"): void;
46
49
  setBluePrints(componentBlueprints: import("@omnia/fx-models").ComponentBlueprints): void;
47
50
  }>;
@@ -2,11 +2,11 @@ import { HttpMethods, VelcronAppDefinition } from "@omnia/fx-models/internal-do-
2
2
  export interface ApiSpec {
3
3
  title: string;
4
4
  method: HttpMethods;
5
- route: string;
6
- headers: Record<string, string>;
7
- queryStrings: Record<string, string>;
8
- body: object;
9
- velcron: VelcronAppDefinition<{
5
+ url: string;
6
+ headers?: Record<string, string>;
7
+ queryStrings?: Record<string, string>;
8
+ body?: object;
9
+ velcron?: VelcronAppDefinition<{
10
10
  items: Array<unknown>;
11
11
  item: unknown;
12
12
  }>;
@@ -1 +1,2 @@
1
1
  export * from "./TodoApiSpec";
2
+ export * from "./HubApiSpec";
@@ -6,14 +6,8 @@ export declare const useApiExplorerStore: () => {
6
6
  currentHttpMethod: HttpMethods;
7
7
  availableHttpMethods: HttpMethods[];
8
8
  apiUrl: string;
9
- requestBody: {
10
- obj: any;
11
- json: string;
12
- };
13
- responseBody: {
14
- obj: any;
15
- json: string;
16
- };
9
+ requestBody: string;
10
+ responseBody: string;
17
11
  requestHeaders: Record<string, string>;
18
12
  requestQueryStrings: Record<string, string>;
19
13
  newHeaderName: string;
@@ -34,14 +28,8 @@ export declare const useApiExplorerStore: () => {
34
28
  currentHttpMethod: HttpMethods;
35
29
  availableHttpMethods: HttpMethods[];
36
30
  apiUrl: string;
37
- requestBody: {
38
- obj: any;
39
- json: string;
40
- };
41
- responseBody: {
42
- obj: any;
43
- json: string;
44
- };
31
+ requestBody: string;
32
+ responseBody: string;
45
33
  requestHeaders: Record<string, string>;
46
34
  requestQueryStrings: Record<string, string>;
47
35
  newHeaderName: string;
@@ -71,9 +59,11 @@ export declare const useApiExplorerStore: () => {
71
59
  addQueryString(): void;
72
60
  updateQueryString(name: string, value: string): void;
73
61
  removeQueryString(name: string): void;
62
+ setRequestBodyJson(json: string): void;
74
63
  }>;
75
64
  get: {
76
65
  title: () => HttpMethods;
66
+ requestBodyAsObject: () => any;
77
67
  };
78
68
  } & {
79
69
  dispose?: () => void;
@@ -186,8 +186,8 @@ declare const _default: {
186
186
  type?: ConfirmDialogDisplay;
187
187
  text?: string;
188
188
  icon?: IIcon;
189
- tooltip?: ButtonTooltipOptions;
190
189
  disabled?: boolean;
190
+ tooltip?: ButtonTooltipOptions;
191
191
  dialogOptions?: ConfirmDialogOptions;
192
192
  styles?: {
193
193
  icon?: import("typestyle/lib/types").NestedCSSProperties;
@@ -91,8 +91,8 @@ declare const dialogComponent: {
91
91
  lazy?: boolean;
92
92
  title?: string;
93
93
  onClose?: () => void;
94
- dark?: boolean;
95
94
  light?: boolean;
95
+ dark?: boolean;
96
96
  disabled?: boolean;
97
97
  valueBind?: DialogModel;
98
98
  onClickOutside?: (closeDialog: (prompt: boolean, title?: string) => void, event?: Event) => void;
@@ -12,6 +12,7 @@ export declare const useJourneyRouterStore: () => {
12
12
  ensureBlade(blade: JourneyBladeRouter): void;
13
13
  updateBlade(blade: JourneyBladeRouter): void;
14
14
  removeBlade(blade: JourneyBladeRouter): void;
15
+ clearRoute(): void;
15
16
  }>;
16
17
  events: import("@omnia/fx/stores").StoreEvents<{
17
18
  blades: InternalJourneyBladeRouter[];
@@ -8,7 +8,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
8
8
  } & {
9
9
  location?: OPosition;
10
10
  } & {
11
- position?: "fixed" | "absolute" | "relative" | "static" | "sticky";
11
+ position?: "fixed" | "static" | "relative" | "absolute" | "sticky";
12
12
  } & {
13
13
  format?: "ampm" | "24hr";
14
14
  }>) => any;
@@ -158,9 +158,9 @@ declare const _default: {
158
158
  };
159
159
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
160
160
  propsDefinition: Omit<Readonly<{} & {
161
- filled?: boolean;
162
161
  multiple?: boolean;
163
162
  disabled?: boolean;
163
+ filled?: boolean;
164
164
  hideDetails?: boolean;
165
165
  hideConfiguration?: boolean;
166
166
  resetAfterSelected?: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.311-dev",
4
+ "version": "8.0.313-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.311-dev",
23
+ "@omnia/fx-models": "8.0.313-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",