@omnia/fx 8.0.34-vnext → 8.0.35-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.
@@ -59,7 +59,7 @@ export declare class WebpackModuleResoverInternal {
59
59
  private static _omniaLoader;
60
60
  static onLoadError(omniaServiceId: GuidValue, manifestId: GuidValue): void;
61
61
  static resolve(omniaServiceId: GuidValue, manifestId: GuidValue): Future<void>;
62
- static isResolved(omniaServiceId: string, manifestId: string): boolean;
62
+ static isResolved(omniaServiceId: GuidValue, manifestId: GuidValue): boolean;
63
63
  private static ensureResolvablePromise;
64
64
  private static install;
65
65
  static init(): void;
@@ -3,5 +3,5 @@ export declare const JourneyBladeStyles: {
3
3
  footer: string;
4
4
  footerButtons: string;
5
5
  headerButtons: string;
6
- wrapper: (size: BladeSizes) => string;
6
+ wrapper: (size: BladeSizes, dark: boolean) => string;
7
7
  };
@@ -61,11 +61,15 @@ declare const _default: {
61
61
  };
62
62
  readonly create?: boolean;
63
63
  readonly save?: boolean;
64
+ readonly subTitle?: string;
65
+ readonly "sub-title"?: string;
64
66
  "onClick:cancel"?: (id: string) => any;
65
67
  "onClick:delete"?: (id: string) => any;
66
68
  readonly home?: boolean;
67
69
  "onClick:back"?: (id: string) => any;
68
70
  readonly searchable?: boolean;
71
+ readonly iconHeader?: boolean;
72
+ readonly "icon-header"?: boolean;
69
73
  onSearch?: (searchText: string) => any;
70
74
  "onClick:add"?: (id: string) => any;
71
75
  "onClick:save"?: (id: string) => any;
@@ -99,6 +103,12 @@ declare const _default: {
99
103
  } & {
100
104
  type: import("vue").PropType<boolean>;
101
105
  };
106
+ "icon-header": {
107
+ type: import("vue").PropType<boolean>;
108
+ };
109
+ iconHeader: {
110
+ type: import("vue").PropType<boolean>;
111
+ };
102
112
  delete: {
103
113
  type: import("vue").PropType<boolean>;
104
114
  } & {
@@ -128,6 +138,12 @@ declare const _default: {
128
138
  } & {
129
139
  type: import("vue").PropType<string>;
130
140
  };
141
+ "sub-title": {
142
+ type: import("vue").PropType<string>;
143
+ };
144
+ subTitle: {
145
+ type: import("vue").PropType<string>;
146
+ };
131
147
  title: {
132
148
  type: import("vue").PropType<string>;
133
149
  } & {
@@ -183,6 +199,12 @@ declare const _default: {
183
199
  } & {
184
200
  type: import("vue").PropType<boolean>;
185
201
  };
202
+ "icon-header": {
203
+ type: import("vue").PropType<boolean>;
204
+ };
205
+ iconHeader: {
206
+ type: import("vue").PropType<boolean>;
207
+ };
186
208
  delete: {
187
209
  type: import("vue").PropType<boolean>;
188
210
  } & {
@@ -212,6 +234,12 @@ declare const _default: {
212
234
  } & {
213
235
  type: import("vue").PropType<string>;
214
236
  };
237
+ "sub-title": {
238
+ type: import("vue").PropType<string>;
239
+ };
240
+ subTitle: {
241
+ type: import("vue").PropType<string>;
242
+ };
215
243
  title: {
216
244
  type: import("vue").PropType<string>;
217
245
  } & {
@@ -244,6 +272,12 @@ declare const _default: {
244
272
  } & {
245
273
  type: import("vue").PropType<boolean>;
246
274
  };
275
+ "icon-header": {
276
+ type: import("vue").PropType<boolean>;
277
+ };
278
+ iconHeader: {
279
+ type: import("vue").PropType<boolean>;
280
+ };
247
281
  delete: {
248
282
  type: import("vue").PropType<boolean>;
249
283
  } & {
@@ -273,6 +307,12 @@ declare const _default: {
273
307
  } & {
274
308
  type: import("vue").PropType<string>;
275
309
  };
310
+ "sub-title": {
311
+ type: import("vue").PropType<string>;
312
+ };
313
+ subTitle: {
314
+ type: import("vue").PropType<string>;
315
+ };
276
316
  title: {
277
317
  type: import("vue").PropType<string>;
278
318
  } & {
@@ -306,8 +346,12 @@ declare const _default: {
306
346
  };
307
347
  create?: boolean;
308
348
  save?: boolean;
349
+ subTitle?: string;
350
+ "sub-title"?: string;
309
351
  home?: boolean;
310
352
  searchable?: boolean;
353
+ iconHeader?: boolean;
354
+ "icon-header"?: boolean;
311
355
  }>, "onClick:cancel" | "onClick:delete" | "onClick:back" | "onSearch" | "onClick:add" | "onClick:save"> & {
312
356
  "onClick:cancel"?: (id: string) => any;
313
357
  "onClick:delete"?: (id: string) => any;
@@ -12,6 +12,7 @@ export declare function useJourneyV2(): {
12
12
  setActiveIndex: (index: number) => void;
13
13
  moveNext: () => void;
14
14
  movePrev: () => void;
15
+ travelTo: (id: string) => void;
15
16
  };
16
17
  events: {
17
18
  onMutatingBlades: import("@omnia/fx").EventHook<BladeInstance[]>;
@@ -34,6 +35,7 @@ export declare const useJourneyStore: (newInstanceWithName?: string) => {
34
35
  setActiveIndex: (index: number) => void;
35
36
  moveNext: () => void;
36
37
  movePrev: () => void;
38
+ travelTo: (id: string) => void;
37
39
  };
38
40
  events: {
39
41
  onMutatingBlades: import("@omnia/fx").EventHook<BladeInstance[]>;
@@ -66,6 +66,7 @@ declare const _default: {
66
66
  customButtons?: Func<[VNodeChild]>;
67
67
  };
68
68
  readonly variant?: string;
69
+ readonly subTitle?: string;
69
70
  "onClick:close"?: () => any;
70
71
  readonly backButton?: boolean;
71
72
  "onClick:back"?: () => any;
@@ -99,6 +100,9 @@ declare const _default: {
99
100
  icon: {
100
101
  type: import("vue").PropType<IIcon>;
101
102
  };
103
+ subTitle: {
104
+ type: import("vue").PropType<string>;
105
+ };
102
106
  title: {
103
107
  type: import("vue").PropType<string>;
104
108
  };
@@ -164,6 +168,9 @@ declare const _default: {
164
168
  icon: {
165
169
  type: import("vue").PropType<IIcon>;
166
170
  };
171
+ subTitle: {
172
+ type: import("vue").PropType<string>;
173
+ };
167
174
  title: {
168
175
  type: import("vue").PropType<string>;
169
176
  };
@@ -204,6 +211,9 @@ declare const _default: {
204
211
  icon: {
205
212
  type: import("vue").PropType<IIcon>;
206
213
  };
214
+ subTitle: {
215
+ type: import("vue").PropType<string>;
216
+ };
207
217
  title: {
208
218
  type: import("vue").PropType<string>;
209
219
  };
@@ -252,6 +262,7 @@ declare const _default: {
252
262
  customButtons?: Func<[VNodeChild]>;
253
263
  };
254
264
  variant?: string;
265
+ subTitle?: string;
255
266
  backButton?: boolean;
256
267
  }>, "onClick:close" | "onClick:back"> & {
257
268
  "onClick:close"?: () => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.34-vnext",
4
+ "version": "8.0.35-vnext",
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.34-vnext",
23
+ "@omnia/fx-models": "8.0.35-vnext",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",