@omnia/fx 8.0.395-dev → 8.0.396-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/internal-do-not-import-from-here/services/TargetingPropertyService.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/AzureAdUserStore.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/TargetingPropertyStore.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/{blueprints → componentblueprints}/store/ComponentEditorStore.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/themedesigner/store/ThemeDesignerStore.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/ColorSchemaPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/ColorSchemaViewer.d.ts +21 -1
- package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/store/ColorSchemaPickerStore.d.ts +44 -0
- package/internal-do-not-import-from-here/ux/aurora/components/placeholder/Placeholder.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/journey/DefineBlade.d.ts +10 -2
- package/internal-do-not-import-from-here/ux/journey/selection/JourneySelect.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/journey/stores/JourneyStore.d.ts +2 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +10 -10
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/blades/AddBlueprint.d.ts +0 -16
- /package/internal-do-not-import-from-here/ux/aurora/admin/blades/{blueprints → componentblueprints}/BlueprintsJourney.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/blades/{blueprints → componentblueprints}/blades/BlueprintPreview.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/blades/{blueprints → componentblueprints}/blades/ButtonBladeEdit.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/blades/{blueprints → componentblueprints}/blades/ButtonsBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/blades/{blueprints → componentblueprints}/blades/EditBlueprints.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/blades/{blueprints → componentblueprints}/blades/HeaderBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/blades/{blueprints → componentblueprints}/blades/HeaderBladeEdit.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/blades/{blueprints → componentblueprints}/blades/IconsBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/blades/{blueprints → componentblueprints}/blades/IconsBladeEdit.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/blades/{blueprints → componentblueprints}/blades/InputBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/blades/{blueprints → componentblueprints}/blades/InputBladeEdit.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/blades/{blueprints → componentblueprints}/blades/TabBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/blades/{blueprints → componentblueprints}/blades/TabBladeEdit.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/blades/{blueprints → componentblueprints}/store/ButtonsEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/blades/{blueprints → componentblueprints}/store/HeaderEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/blades/{blueprints → componentblueprints}/store/IconsEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/blades/{blueprints → componentblueprints}/store/InputEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/blades/{blueprints → componentblueprints}/store/TabsEditorStore.d.ts +0 -0
@@ -9,4 +9,5 @@ export declare class TargetingPropertyService {
|
|
9
9
|
getTargetingPropertyResult: () => Promise<Array<TargetingPropertyResult>>;
|
10
10
|
terminateTargetingProperty: (propertyId: guid) => Promise<void>;
|
11
11
|
restoreTargetingProperty: (propertyId: guid) => Promise<TargetingProperty<TargetingPropertyData>>;
|
12
|
+
invalidateTargetingPropertyResultCache: () => Promise<void>;
|
12
13
|
}
|
@@ -4,6 +4,7 @@ import { Store } from "./Store";
|
|
4
4
|
export declare class AzureAdUserStore extends Store {
|
5
5
|
private azureAdService;
|
6
6
|
omniaCtx: OmniaContext;
|
7
|
+
private targetingPropertyStore;
|
7
8
|
private resolvePropertiesValuePromises;
|
8
9
|
private resolvePropertiesInfoPromise;
|
9
10
|
private resolveSyncPropertiesInfoPromise;
|
@@ -26,6 +26,7 @@ export declare class TargetingPropertyStore extends Store {
|
|
26
26
|
ensureUserTargetingResult: import("./Store").StoreAction<unknown, () => void, (result: boolean) => void, (failureReason: any) => void, () => Promise<boolean>>;
|
27
27
|
terminateTargetingProperty: import("./Store").StoreAction<unknown, (propertyId: guid) => void, (result: unknown, propertyId: guid) => void, (failureReason: any, propertyId: guid) => void, (propertyId: guid) => Promise<unknown>>;
|
28
28
|
restoreTargetingProperty: import("./Store").StoreAction<unknown, (propertyId: guid) => void, (result: unknown, propertyId: guid) => void, (failureReason: any, propertyId: guid) => void, (propertyId: guid) => Promise<unknown>>;
|
29
|
+
invalidateTargetingPropertyResultCache: import("./Store").StoreAction<unknown, () => void, (result: void) => void, (failureReason: any) => void, () => Promise<void>>;
|
29
30
|
};
|
30
31
|
onActivated(): void;
|
31
32
|
onDisposing(): void;
|
@@ -17,6 +17,9 @@ export declare const useComponentsEditorStore: () => {
|
|
17
17
|
blueprintItems: IBlueprintItem[];
|
18
18
|
editMode: boolean;
|
19
19
|
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
20
|
+
rules: {
|
21
|
+
hasBlueprintValues: (blueprint: IBlueprintItem) => boolean;
|
22
|
+
};
|
20
23
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
21
24
|
addBlueprints(blueprints: Array<IBlueprintItem>): void;
|
22
25
|
deleteBlueprints(blueprints: IBlueprintItem): void;
|
@@ -147,6 +150,7 @@ export declare const useComponentsEditorStore: () => {
|
|
147
150
|
} & {
|
148
151
|
dispose?: () => void;
|
149
152
|
};
|
153
|
+
blueprintsItems: () => IBlueprintItem[];
|
150
154
|
};
|
151
155
|
bladeId: {
|
152
156
|
addBlueprint: guid;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { ColorSchema, ColorSchemaType, ColorSchemaTypes, ResolvedThemeDefinition } from "@omnia/fx-models";
|
2
2
|
import { VNodeChild } from "vue";
|
3
|
-
type Variant = "default" | "toolbar" | "button";
|
3
|
+
type Variant = "default" | "toolbar" | "button" | "journey";
|
4
4
|
declare const _default: {
|
5
5
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
6
6
|
"v-slots": import("vue").Prop<{
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ColorSchema } from "@omnia/fx-models";
|
2
|
-
type Variant = "default" | "toolbar" | "palette" | "card-preview" | "button" | "swatch"
|
2
|
+
type Variant = "default" | "toolbar" | "palette" | "card-preview" | "button" | "swatch";
|
3
3
|
declare const _default: {
|
4
4
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
5
5
|
class: {
|
@@ -12,9 +12,15 @@ declare const _default: {
|
|
12
12
|
label: {
|
13
13
|
type: import("vue").PropType<string>;
|
14
14
|
};
|
15
|
+
width: {
|
16
|
+
type: import("vue").PropType<string>;
|
17
|
+
};
|
15
18
|
selected: {
|
16
19
|
type: import("vue").PropType<boolean>;
|
17
20
|
};
|
21
|
+
placeholder: {
|
22
|
+
type: import("vue").PropType<boolean>;
|
23
|
+
};
|
18
24
|
closeIcon: {
|
19
25
|
type: import("vue").PropType<boolean>;
|
20
26
|
};
|
@@ -122,9 +128,15 @@ declare const _default: {
|
|
122
128
|
label: {
|
123
129
|
type: import("vue").PropType<string>;
|
124
130
|
};
|
131
|
+
width: {
|
132
|
+
type: import("vue").PropType<string>;
|
133
|
+
};
|
125
134
|
selected: {
|
126
135
|
type: import("vue").PropType<boolean>;
|
127
136
|
};
|
137
|
+
placeholder: {
|
138
|
+
type: import("vue").PropType<boolean>;
|
139
|
+
};
|
128
140
|
closeIcon: {
|
129
141
|
type: import("vue").PropType<boolean>;
|
130
142
|
};
|
@@ -226,9 +238,15 @@ declare const _default: {
|
|
226
238
|
label: {
|
227
239
|
type: import("vue").PropType<string>;
|
228
240
|
};
|
241
|
+
width: {
|
242
|
+
type: import("vue").PropType<string>;
|
243
|
+
};
|
229
244
|
selected: {
|
230
245
|
type: import("vue").PropType<boolean>;
|
231
246
|
};
|
247
|
+
placeholder: {
|
248
|
+
type: import("vue").PropType<boolean>;
|
249
|
+
};
|
232
250
|
closeIcon: {
|
233
251
|
type: import("vue").PropType<boolean>;
|
234
252
|
};
|
@@ -382,6 +400,7 @@ declare const _default: {
|
|
382
400
|
}>;
|
383
401
|
};
|
384
402
|
container?: boolean;
|
403
|
+
width?: string;
|
385
404
|
variant?: Variant;
|
386
405
|
class?: string;
|
387
406
|
label?: string;
|
@@ -391,6 +410,7 @@ declare const _default: {
|
|
391
410
|
"onUpdate:modelValue"?: (value: ColorSchema) => any | void;
|
392
411
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
393
412
|
"v-model"?: ColorSchema;
|
413
|
+
placeholder?: boolean;
|
394
414
|
selected?: boolean;
|
395
415
|
}>, "onClick:close" | "onClick:select"> & {
|
396
416
|
"onClick:close"?: () => any;
|
@@ -0,0 +1,44 @@
|
|
1
|
+
import { ColorSchema, ColorSchemaType, ColorSchemaTypes, ResolvedThemeDefinition } from "@omnia/fx-models";
|
2
|
+
interface ColorSchemaItem {
|
3
|
+
id: string;
|
4
|
+
text: string;
|
5
|
+
}
|
6
|
+
export declare const useColorSchemaPickerStore: () => {
|
7
|
+
state: {
|
8
|
+
internalModel: "background" | "primary" | "secondary" | "accent1" | ColorSchema | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic" | ColorSchemaTypes;
|
9
|
+
customSchemaModel: ColorSchema;
|
10
|
+
customSchema: ColorSchema;
|
11
|
+
isCustomSchema: boolean;
|
12
|
+
hasSelection: boolean;
|
13
|
+
settings: {
|
14
|
+
defaultColorSchemaType: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
15
|
+
customSchema: boolean;
|
16
|
+
enableDynamicColor: boolean;
|
17
|
+
schemaTitle: string;
|
18
|
+
};
|
19
|
+
};
|
20
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
21
|
+
customSchema: () => {
|
22
|
+
selectCurrent(): void;
|
23
|
+
select(schema: ColorSchema): void;
|
24
|
+
};
|
25
|
+
selectItem(item: ColorSchemaItem): void;
|
26
|
+
setTheme: (themeDefinition: ResolvedThemeDefinition) => void;
|
27
|
+
initState: (model: ColorSchemaTypes | ColorSchemaType | ColorSchema, themeDefinition: ResolvedThemeDefinition) => void;
|
28
|
+
}>;
|
29
|
+
get: {
|
30
|
+
schemaLabel: (selected: boolean, schemaType: ColorSchemaType | ColorSchema, isPlaceholder?: any) => string;
|
31
|
+
schemaInstance: (schemaType: ColorSchemaType | ColorSchema) => ColorSchema;
|
32
|
+
selectedSchema: () => ColorSchema;
|
33
|
+
};
|
34
|
+
metaData: {
|
35
|
+
items: ColorSchemaItem[];
|
36
|
+
};
|
37
|
+
rules: {
|
38
|
+
isSelected: (schemaType: ColorSchemaType | ColorSchema) => boolean;
|
39
|
+
isPlaceholder: (schemaType: ColorSchemaType | ColorSchema) => boolean;
|
40
|
+
};
|
41
|
+
} & {
|
42
|
+
dispose?: () => void;
|
43
|
+
};
|
44
|
+
export {};
|
@@ -1,13 +1,15 @@
|
|
1
|
-
import { ThemeContextType } from "@omnia/fx-models";
|
1
|
+
import { FontAwesomeIcon, ThemeContextType } from "@omnia/fx-models";
|
2
2
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
3
3
|
toned?: boolean;
|
4
4
|
} & {
|
5
5
|
themeType?: ThemeContextType;
|
6
6
|
} & {
|
7
7
|
label?: string;
|
8
|
+
} & {
|
9
|
+
icon?: FontAwesomeIcon;
|
8
10
|
}> & {} & {
|
9
11
|
"v-slots"?: {} & Omit<{
|
10
12
|
default?: import("vue").Slot;
|
11
13
|
}, never>;
|
12
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "toned" | "themeType"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
14
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "label" | "toned" | "themeType"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
13
15
|
export default _default;
|
@@ -15,16 +15,24 @@ export declare function defineBlade<TRoute extends JourneyBladeRoute = {}>(blade
|
|
15
15
|
moveNext(): void;
|
16
16
|
movePrev(): void;
|
17
17
|
travelTo(toBladeId: guid): void;
|
18
|
-
defineValueToSave<T>(value?: T): {
|
18
|
+
defineValueToSave<T>(value?: T, defineDisabledClone?: boolean): {
|
19
19
|
value: T;
|
20
20
|
/**
|
21
21
|
* reset initial value to trigger new watching value change.
|
22
22
|
*/
|
23
23
|
resetValue: (value: T, disabledClone?: boolean) => void;
|
24
24
|
};
|
25
|
-
defineValueToFilter<T>(value?: T
|
25
|
+
defineValueToFilter<T>(value?: T, initialConfig?: Record<string, {
|
26
|
+
isShow: boolean;
|
27
|
+
}>, defineDisabledClone?: boolean): {
|
26
28
|
filterValues: T;
|
29
|
+
/**
|
30
|
+
* reset initial value to trigger new watching value change.
|
31
|
+
*/
|
27
32
|
resetFilterValues: (value: T, disabledClone?: boolean) => void;
|
33
|
+
updateFilterConfig: (newConfig: Record<string, {
|
34
|
+
isShow: boolean;
|
35
|
+
}>) => void;
|
28
36
|
};
|
29
37
|
};
|
30
38
|
export {};
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { DefineEmit, DefineProp, DefinePropTheming, DefineSlot, DefineVModel, JourneySelectItem, JourneySelectPropertyMapping, useJourneySelectStore } from "@omnia/fx/ux";
|
2
2
|
import { VNodeChild } from "vue";
|
3
3
|
import { ActionDefinition } from "@omnia/fx-models";
|
4
|
-
type BaseProps<TItem> = DefinePropTheming & DefineVModel<"", Array<any> | any> & DefineProp<"getApi", (store: ReturnType<typeof useJourneySelectStore>) => void, false, null, "callback to get a reference to the store"> & DefineProp<"items", Array<TItem>, false, null, "Items to select from"> & DefineProp<"toned", boolean, false, null, "Sets the component to toned"> & DefineProp<"multiple", boolean, false, null, "If it is allowed to select multiple or single"> & DefineProp<"propertyValueMapping", JourneySelectPropertyMapping, false, null, "Property value mappings"> & DefineProp<"returnSelectionAsObject", boolean, false, null, "Changes the selection behavior to return the object directly rather than the value specified with item-value"> & DefineProp<"label", string, null, null, "The label of the component"> & DefineProp<"labelAdd", string, null, null, "The add label of the component"> & DefineProp<"titleAdd", string, null, null, "The add title of the add blade"> & DefineProp<"titleEdit", string, null, null, "The edit title of the edit blade"> & DefineProp<"disableSearch", boolean, false, null, "Disables the automatic search"> & DefineProp<"disableSave", boolean, false, null, "If it is allowed save"> & DefineProp<"sortable", boolean, false, null, "If it is allowed to sort"> & DefineProp<"readonly", boolean, false, null, "Disable add and delete"> & DefineProp<"list", boolean, false, null, "Always render the items as a list"> & DefineProp<"confirmDelete", boolean, false, null, "If you confirm before delete from the items"> & DefineProp<"noAddConfirm", boolean, false, null, "If items are added without a save button"> & DefineProp<"bladeless", boolean, false, null, "If add/edit is not a blade and only fires events"> & DefineProp<"actions", ActionDefinition[], false, null, "Actions to display in the blade header"> & DefineSlot<"selectionItemRender", (item: JourneySelectItem<any>, index: number, isSelected: boolean) => VNodeChild> & DefineSlot<"selectionRender", () => VNodeChild> & DefineSlot<"selectedItemRenderer", (item: JourneySelectItem<any>, index: number) => VNodeChild> & DefineSlot<"settingsRender", (item: any, index: number) => VNodeChild> & DefineSlot<"actions", () => VNodeChild> & DefineEmit<"showAdd", () => true> & DefineEmit<"showEdit", (item: TItem, index: number) => true> & DefineEmit<"search", (searchText: string) => true> & DefineEmit<"click:clear", () => true> & DefineEmit<"click:add", (item: Array<TItem> | TItem) => true> & DefineEmit<"click:update", (item: TItem, index: number) => true> & DefineEmit<"click:delete", (item: TItem, index: number) => true>;
|
4
|
+
type BaseProps<TItem> = DefinePropTheming & DefineVModel<"", Array<any> | any> & DefineProp<"getApi", (store: ReturnType<typeof useJourneySelectStore>) => void, false, null, "callback to get a reference to the store"> & DefineProp<"items", Array<TItem>, false, null, "Items to select from"> & DefineProp<"toned", boolean, false, null, "Sets the component to toned"> & DefineProp<"multiple", boolean, false, null, "If it is allowed to select multiple or single"> & DefineProp<"propertyValueMapping", JourneySelectPropertyMapping, false, null, "Property value mappings"> & DefineProp<"returnSelectionAsObject", boolean, false, null, "Changes the selection behavior to return the object directly rather than the value specified with item-value"> & DefineProp<"label", string, null, null, "The label of the component"> & DefineProp<"labelAdd", string, null, null, "The add label of the component"> & DefineProp<"titleAdd", string, null, null, "The add title of the add blade"> & DefineProp<"titleEdit", string, null, null, "The edit title of the edit blade"> & DefineProp<"disableSearch", boolean, false, null, "Disables the automatic search"> & DefineProp<"disableSave", boolean, false, null, "If it is allowed save"> & DefineProp<"sortable", boolean, false, null, "If it is allowed to sort"> & DefineProp<"readonly", boolean, false, null, "Disable add and delete"> & DefineProp<"list", boolean, false, null, "Always render the items as a list"> & DefineProp<"confirmDelete", boolean, false, null, "If you confirm before delete from the items"> & DefineProp<"noAddConfirm", boolean, false, null, "If items are added without a save button"> & DefineProp<"bladelessAdd", boolean, false, null, "If addis not a blade and only fires events"> & DefineProp<"bladeless", boolean, false, null, "If add/edit is not a blade and only fires events"> & DefineProp<"actions", ActionDefinition[], false, null, "Actions to display in the blade header"> & DefineSlot<"selectionItemRender", (item: JourneySelectItem<any>, index: number, isSelected: boolean) => VNodeChild> & DefineSlot<"selectionRender", () => VNodeChild> & DefineSlot<"selectedItemRenderer", (item: JourneySelectItem<any>, index: number) => VNodeChild> & DefineSlot<"settingsRender", (item: any, index: number) => VNodeChild> & DefineSlot<"actions", () => VNodeChild> & DefineEmit<"showAdd", () => true> & DefineEmit<"showEdit", (item: TItem, index: number) => true> & DefineEmit<"search", (searchText: string) => true> & DefineEmit<"click:clear", () => true> & DefineEmit<"click:add", (item: Array<TItem> | TItem) => true> & DefineEmit<"click:update", (item: TItem, index: number) => true> & DefineEmit<"click:delete", (item: TItem, index: number) => true>;
|
5
5
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<BaseProps<any>> & {
|
6
6
|
"onUpdate:modelValue"?: (value: any) => any;
|
7
7
|
"onClick:clear"?: () => any;
|
@@ -21,5 +21,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<BaseProps<an
|
|
21
21
|
} & Omit<{
|
22
22
|
default?: import("vue").Slot;
|
23
23
|
}, "actions" | "selectionItemRender" | "selectionRender" | "selectedItemRenderer" | "settingsRender">;
|
24
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "actions" | "label" | "list" | "multiple" | "colorSchemaType" | "modelValue" | "items" | "readonly" | "slot:actions" | "colors" | "v-model" | "toned" | "emit:update:modelValue" | "emit:search" | "getApi" | "emit:click:clear" | "emit:click:add" | "emit:click:delete" | "sortable" | "disableSave" | "propertyValueMapping" | "returnSelectionAsObject" | "labelAdd" | "titleAdd" | "titleEdit" | "disableSearch" | "confirmDelete" | "noAddConfirm" | "bladeless" | "slot:selectionItemRender" | "slot:selectionRender" | "slot:selectedItemRenderer" | "slot:settingsRender" | "emit:showAdd" | "emit:showEdit" | "emit:click:update"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
24
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "actions" | "label" | "list" | "multiple" | "colorSchemaType" | "modelValue" | "items" | "readonly" | "slot:actions" | "colors" | "v-model" | "toned" | "emit:update:modelValue" | "emit:search" | "getApi" | "emit:click:clear" | "emit:click:add" | "emit:click:delete" | "sortable" | "disableSave" | "propertyValueMapping" | "returnSelectionAsObject" | "labelAdd" | "titleAdd" | "titleEdit" | "disableSearch" | "confirmDelete" | "noAddConfirm" | "bladelessAdd" | "bladeless" | "slot:selectionItemRender" | "slot:selectionRender" | "slot:selectedItemRenderer" | "slot:settingsRender" | "emit:showAdd" | "emit:showEdit" | "emit:click:update"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
25
25
|
export default _default;
|
@@ -126,6 +126,7 @@ export declare const useJourneyStore: () => {
|
|
126
126
|
showBackButton(bladeId: guid): boolean;
|
127
127
|
bladeWidth(size: BladeSizeTypes, bladeId: guid, scrollContainerLeftPosition?: number): number;
|
128
128
|
isBladeStillInView(blade: BladeInstance): boolean;
|
129
|
+
isBladeElementStillInView(bladeElement: HTMLElement): boolean;
|
129
130
|
readonly isNested: boolean;
|
130
131
|
};
|
131
132
|
actions: StoreReturnDefineAction<{
|
@@ -142,6 +143,7 @@ export declare const useJourneyStore: () => {
|
|
142
143
|
ensureParentBladeStillInView(fromBlade: BladeInstance): void;
|
143
144
|
scrollToActiveBlade(): void;
|
144
145
|
scrollToBlade(blade: BladeInstance): void;
|
146
|
+
scrollToBladeElemnt(bladeElement: HTMLElement): void;
|
145
147
|
ensureBladeVisibleInScrollView(blade: BladeInstance): void;
|
146
148
|
}>;
|
147
149
|
} & {
|
@@ -541,9 +541,9 @@ import wcb19b2cdc3d544c1893c3048886487a73 from './ux/admin/system/submenu/seo/Se
|
|
541
541
|
import wcfeb168ca8f484e06ab3f88d48c078319 from './ux/admin/system/submenu/services/ServicesJourney';
|
542
542
|
import wc3a923c54b15d461597cd678c0d561496 from './ux/admin/system/submenu/systemlogs/SystemLogsJourney';
|
543
543
|
import wc9fbf91affc974ca698437e8ada43bb0c from './ux/admin/system/submenu/tenantcontact/TenantContactJourney';
|
544
|
-
import wc56efc575579e4da3bb45d3a45d8c0888 from './ux/aurora/admin/blades/blueprints/BlueprintsJourney';
|
545
544
|
import wc0aa3df9194784591a5be530314b8ac7f from './ux/aurora/admin/blades/chrome/Chrome';
|
546
545
|
import wcd90e0352809742c482bdda733dc8872a from './ux/aurora/admin/blades/colorschemas/ColorSchemasJourney';
|
546
|
+
import wc56efc575579e4da3bb45d3a45d8c0888 from './ux/aurora/admin/blades/componentblueprints/BlueprintsJourney';
|
547
547
|
import wcfebab40186954cadbb54852c509f31e6 from './ux/aurora/admin/blades/fills/FillsJourney';
|
548
548
|
import wc8142fa90f0d34258bb080a15aa21ab74 from './ux/aurora/admin/blades/fontsmanager/FontManager';
|
549
549
|
import wc891de93e73cc47b0a552d24fdf34c9cf from './ux/aurora/admin/blades/spacing/SpacingJourney';
|
@@ -761,15 +761,6 @@ declare global {
|
|
761
761
|
} : typeof wc3147213782724576b53d13e580af67ae;
|
762
762
|
};
|
763
763
|
};
|
764
|
-
"blueprints": {
|
765
|
-
"journey": typeof wc56efc575579e4da3bb45d3a45d8c0888 extends {
|
766
|
-
propsDefinition: infer TProp;
|
767
|
-
} ? {
|
768
|
-
new (...args: any[]): {
|
769
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
770
|
-
};
|
771
|
-
} : typeof wc56efc575579e4da3bb45d3a45d8c0888;
|
772
|
-
};
|
773
764
|
"color": {
|
774
765
|
"schemas": {
|
775
766
|
"journey": typeof wcd90e0352809742c482bdda733dc8872a extends {
|
@@ -781,6 +772,15 @@ declare global {
|
|
781
772
|
} : typeof wcd90e0352809742c482bdda733dc8872a;
|
782
773
|
};
|
783
774
|
};
|
775
|
+
"blueprints": {
|
776
|
+
"journey": typeof wc56efc575579e4da3bb45d3a45d8c0888 extends {
|
777
|
+
propsDefinition: infer TProp;
|
778
|
+
} ? {
|
779
|
+
new (...args: any[]): {
|
780
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
781
|
+
};
|
782
|
+
} : typeof wc56efc575579e4da3bb45d3a45d8c0888;
|
783
|
+
};
|
784
784
|
"fills": {
|
785
785
|
"journey": typeof wcfebab40186954cadbb54852c509f31e6 extends {
|
786
786
|
propsDefinition: infer TProp;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.396-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": "Omnia Digital Workplace AB",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.396-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|
package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/blades/AddBlueprint.d.ts
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
declare const _default: {
|
2
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{}>>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
3
|
-
P: {};
|
4
|
-
B: {};
|
5
|
-
D: {};
|
6
|
-
C: {};
|
7
|
-
M: {};
|
8
|
-
Defaults: {};
|
9
|
-
}, Readonly<import("vue").ExtractPropTypes<{}>>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {}>;
|
10
|
-
__isFragment?: never;
|
11
|
-
__isTeleport?: never;
|
12
|
-
__isSuspense?: never;
|
13
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, 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 & {
|
14
|
-
propsDefinition: Omit<Readonly<{} & {}>, never>;
|
15
|
-
};
|
16
|
-
export default _default;
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|