@omnia/fx 8.0.383-dev → 8.0.384-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/SecurityService.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/InternalDefineComponent.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/admin/system/submenu/customemail/loc/localize.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/components/store/ButtonsEditorStore.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/components/store/ComponentEditorStore.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonStylePicker.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/fileuploader/FileUploader.d.ts +31 -0
- package/internal-do-not-import-from-here/ux/inputtoken/InputToken.d.ts +23 -30
- package/internal-do-not-import-from-here/ux/journey/JourneyBlade.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/journey/SettingsJourneyMenu.d.ts +4 -3
- package/internal-do-not-import-from-here/ux/journey/models/SettingsBladeRegistration.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/stores/JourneyStore.d.ts +58 -1
- package/internal-do-not-import-from-here/ux/optionpicker/OptionPicker.d.ts +27 -79
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +4 -3
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/ScrollContainer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/selection/SelectionComponent.d.ts +21 -21
- package/internal-do-not-import-from-here/ux/sitelogoicon/SiteLogoIcon.d.ts +9 -12
- package/internal-do-not-import-from-here/wctypings.d.ts +28 -0
- package/package.json +3 -3
@@ -1,5 +1,5 @@
|
|
1
1
|
import { OmniaContext } from "../contexts";
|
2
|
-
import { guid, OmniaRole, PermissionBinding, RolePermissionSettingWithContextParam, AzurePermissionResource, AuthenticationSettings, AuthenticationConfiguration } from "../models";
|
2
|
+
import { guid, OmniaRole, PermissionBinding, RolePermissionSettingWithContextParam, AzurePermissionResource, AuthenticationSettings, AuthenticationConfiguration, AzureAdEnvironment } from "../models";
|
3
3
|
export declare class SecurityService {
|
4
4
|
private serviceContainerContext;
|
5
5
|
omniaContext: OmniaContext;
|
@@ -19,6 +19,7 @@ export declare class SecurityService {
|
|
19
19
|
getAuthenticationSettingsByUserTypeId: (userTypeId: guid) => Promise<AuthenticationSettings>;
|
20
20
|
saveAuthenticationSettings: (authConfig: AuthenticationConfiguration) => Promise<void>;
|
21
21
|
validateAzureAdPermissionsSynced: (permissionIds: Array<string>) => Promise<boolean>;
|
22
|
+
getAzureAdEnvironment: () => Promise<AzureAdEnvironment>;
|
22
23
|
syncAzureAdPermissions: () => Promise<void>;
|
23
24
|
private createHttpClientFromServiceId;
|
24
25
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { SubscriptionHandler } from "@omnia/fx";
|
2
|
-
import { ComponentInjectOptions, ComponentObjectPropsOptions, ComponentOptions, ComponentOptionsBase, ComponentOptionsMixin, ComponentPropsOptions, ComputedOptions, CreateComponentPublicInstance, DefineComponent, EmitsOptions, ExtractDefaultPropTypes, MethodOptions, ObjectEmitsOptions, Prop, PropType, Ref, RenderFunction, Slot, SlotsType, VNode, VNodeArrayChildren, VNodeProps, VNodeTypes, watch, watchEffect } from "vue";
|
2
|
+
import { ComponentInjectOptions, ComponentObjectPropsOptions, ComponentOptions, ComponentOptionsBase, ComponentOptionsMixin, ComponentPropsOptions, ComputedOptions, ComputedRef, CreateComponentPublicInstance, DefineComponent, EmitsOptions, ExtractDefaultPropTypes, MethodOptions, ObjectEmitsOptions, Prop, PropType, Ref, RenderFunction, Slot, SlotsType, VNode, VNodeArrayChildren, VNodeProps, VNodeTypes, watch, watchEffect } from "vue";
|
3
3
|
import { LooseRequired, Prettify, UnionToIntersection } from "@vue/shared";
|
4
4
|
import { ColorSchemaType, ColorSchemaTypes, ComponentBundleManifest, Directives, guid } from "@omnia/fx-models";
|
5
5
|
import { ColorSchemaStoreType, VueComponentBaseProps } from ".";
|
@@ -134,6 +134,7 @@ type InternalSetupContext<ExtractedPropsType, Props, E = EmitsOptions, S extends
|
|
134
134
|
attrs: Data;
|
135
135
|
slots: ExtractVSlots<Props> & S;
|
136
136
|
seo: boolean;
|
137
|
+
mobile: ComputedRef<boolean>;
|
137
138
|
models?: Required<ExtractVModels<Props>>;
|
138
139
|
colors: ReturnType<typeof useColorSchemaSetup>;
|
139
140
|
validator: IValidator;
|
package/internal-do-not-import-from-here/ux/admin/system/submenu/customemail/loc/localize.d.ts
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
export declare namespace CustomEmailSettingsLocalization {
|
2
2
|
const namespace = "Omnia.Fx.Ux.CustomEmailSettings";
|
3
3
|
interface locInterface {
|
4
|
+
New7TestConfigureApplicationAccessPolicyPS: string;
|
5
|
+
New7ConfigureApplicationAccessPolicyPS: string;
|
6
|
+
New7ConfigureApplicationAccessPolicyMessage: string;
|
7
|
+
New7TestConfigureApplicationAccessPolicyMessage: string;
|
4
8
|
Header: string;
|
5
9
|
Email: string;
|
6
10
|
UserMailbox: string;
|
@@ -1,16 +1,16 @@
|
|
1
|
-
import { ButtonBlueprint, ButtonBlueprintType, ButtonBlueprintVariant, ButtonBlueprints,
|
1
|
+
import { ButtonBlueprint, ButtonBlueprintType, ButtonBlueprintVariant, ButtonBlueprints, ButtonVariant, ComponentBlueprints } from "@omnia/fx-models";
|
2
2
|
export declare const useButtonsEditorStore: () => {
|
3
3
|
state: {
|
4
4
|
blueprints: ButtonBlueprints;
|
5
5
|
editingButtonBlueprint: ButtonBlueprint;
|
6
|
-
editingButtonType:
|
6
|
+
editingButtonType: ButtonVariant;
|
7
7
|
editingButtonBlueprintType: ButtonBlueprintType;
|
8
8
|
strategy: string;
|
9
9
|
};
|
10
10
|
events: import("@omnia/fx/stores").StoreEvents<{
|
11
11
|
blueprints: ButtonBlueprints;
|
12
12
|
editingButtonBlueprint: ButtonBlueprint;
|
13
|
-
editingButtonType:
|
13
|
+
editingButtonType: ButtonVariant;
|
14
14
|
editingButtonBlueprintType: ButtonBlueprintType;
|
15
15
|
strategy: string;
|
16
16
|
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
@@ -18,7 +18,7 @@ export declare const useButtonsEditorStore: () => {
|
|
18
18
|
setEditingBlueprints(blueprints: ComponentBlueprints): void;
|
19
19
|
addVariant(category: ButtonBlueprintType): ButtonBlueprintVariant;
|
20
20
|
deleteEditingBlueprint(): void;
|
21
|
-
setEditingBlueprint(type: ButtonBlueprintType, buttonType:
|
21
|
+
setEditingBlueprint(type: ButtonBlueprintType, buttonType: ButtonVariant): void;
|
22
22
|
applyChanges(): void;
|
23
23
|
}>;
|
24
24
|
} & {
|
@@ -61,14 +61,14 @@ export declare const useComponentsEditorStore: () => {
|
|
61
61
|
state: {
|
62
62
|
blueprints: import("@omnia/fx-models").ButtonBlueprints;
|
63
63
|
editingButtonBlueprint: import("@omnia/fx-models").ButtonBlueprint;
|
64
|
-
editingButtonType: import("@omnia/fx-models").
|
64
|
+
editingButtonType: import("@omnia/fx-models").ButtonVariant;
|
65
65
|
editingButtonBlueprintType: import("@omnia/fx-models").ButtonBlueprintType;
|
66
66
|
strategy: string;
|
67
67
|
};
|
68
68
|
events: import("@omnia/fx/stores").StoreEvents<{
|
69
69
|
blueprints: import("@omnia/fx-models").ButtonBlueprints;
|
70
70
|
editingButtonBlueprint: import("@omnia/fx-models").ButtonBlueprint;
|
71
|
-
editingButtonType: import("@omnia/fx-models").
|
71
|
+
editingButtonType: import("@omnia/fx-models").ButtonVariant;
|
72
72
|
editingButtonBlueprintType: import("@omnia/fx-models").ButtonBlueprintType;
|
73
73
|
strategy: string;
|
74
74
|
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
@@ -76,7 +76,7 @@ export declare const useComponentsEditorStore: () => {
|
|
76
76
|
setEditingBlueprints(blueprints: ComponentBlueprints): void;
|
77
77
|
addVariant(category: import("@omnia/fx-models").ButtonBlueprintType): import("@omnia/fx-models").ButtonBlueprintVariant;
|
78
78
|
deleteEditingBlueprint(): void;
|
79
|
-
setEditingBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").
|
79
|
+
setEditingBlueprint(type: import("@omnia/fx-models").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonVariant): void;
|
80
80
|
applyChanges(): void;
|
81
81
|
}>;
|
82
82
|
} & {
|
package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonStylePicker.d.ts
CHANGED
@@ -7,6 +7,8 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
7
7
|
modelValue?: ButtonBlueprint | ButtonBlueprintVariant;
|
8
8
|
} & {
|
9
9
|
label?: string;
|
10
|
+
} & {
|
11
|
+
variant?: "list" | "picker";
|
10
12
|
} & {
|
11
13
|
placeholder?: string;
|
12
14
|
} & {
|
@@ -23,5 +25,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
23
25
|
"v-slots"?: {} & Omit<{
|
24
26
|
default?: import("vue").Slot;
|
25
27
|
}, never>;
|
26
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "modelValue" | "v-model" | "toned" | "placeholder" | "emit:update:modelValue" | "themeType" | "sampleText" | "customStyling"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
28
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "variant" | "label" | "modelValue" | "v-model" | "toned" | "placeholder" | "emit:update:modelValue" | "themeType" | "sampleText" | "customStyling"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
27
29
|
export default _default;
|
@@ -29,6 +29,15 @@ declare const _default: {
|
|
29
29
|
disabled: {
|
30
30
|
type: import("vue").PropType<boolean>;
|
31
31
|
};
|
32
|
+
style: {
|
33
|
+
type: import("vue").PropType<{
|
34
|
+
[key: string]: string;
|
35
|
+
}>;
|
36
|
+
};
|
37
|
+
class: {
|
38
|
+
type: import("vue").PropType<String | String[]>;
|
39
|
+
required: boolean;
|
40
|
+
};
|
32
41
|
}>> & {
|
33
42
|
onDoc$?: (description?: string) => any;
|
34
43
|
onFileChanged?: (allFiles: FileUploaderItemHandler[]) => any;
|
@@ -71,6 +80,15 @@ declare const _default: {
|
|
71
80
|
disabled: {
|
72
81
|
type: import("vue").PropType<boolean>;
|
73
82
|
};
|
83
|
+
style: {
|
84
|
+
type: import("vue").PropType<{
|
85
|
+
[key: string]: string;
|
86
|
+
}>;
|
87
|
+
};
|
88
|
+
class: {
|
89
|
+
type: import("vue").PropType<String | String[]>;
|
90
|
+
required: boolean;
|
91
|
+
};
|
74
92
|
}>> & {
|
75
93
|
onDoc$?: (description?: string) => any;
|
76
94
|
onFileChanged?: (allFiles: FileUploaderItemHandler[]) => any;
|
@@ -105,6 +123,15 @@ declare const _default: {
|
|
105
123
|
disabled: {
|
106
124
|
type: import("vue").PropType<boolean>;
|
107
125
|
};
|
126
|
+
style: {
|
127
|
+
type: import("vue").PropType<{
|
128
|
+
[key: string]: string;
|
129
|
+
}>;
|
130
|
+
};
|
131
|
+
class: {
|
132
|
+
type: import("vue").PropType<String | String[]>;
|
133
|
+
required: boolean;
|
134
|
+
};
|
108
135
|
}>> & {
|
109
136
|
onDoc$?: (description?: string) => any;
|
110
137
|
onFileChanged?: (allFiles: FileUploaderItemHandler[]) => any;
|
@@ -115,6 +142,10 @@ declare const _default: {
|
|
115
142
|
};
|
116
143
|
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
117
144
|
propsDefinition: Omit<Readonly<{} & {
|
145
|
+
style?: {
|
146
|
+
[key: string]: string;
|
147
|
+
};
|
148
|
+
class?: String | String[];
|
118
149
|
multiple?: boolean;
|
119
150
|
disabled?: boolean;
|
120
151
|
"v-slots"?: {
|
@@ -1,32 +1,25 @@
|
|
1
|
-
import { VueComponentBase, IInputToken, InputTokenStyles } from "@omnia/fx/ux";
|
2
1
|
import "./InputToken.css";
|
3
|
-
|
4
|
-
styles?:
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
3
|
+
styles?: {
|
4
|
+
wordBreak?: import("typestyle/lib/types").NestedCSSProperties;
|
5
|
+
};
|
6
|
+
} & {
|
7
|
+
"emit:update:modelValue": (value: string) => void;
|
8
|
+
} & {
|
9
|
+
"v-model"?: string;
|
10
|
+
} & {
|
11
|
+
modelValue?: string;
|
12
|
+
} & {
|
13
|
+
class?: string | string[];
|
14
|
+
} & {
|
15
|
+
label?: string;
|
16
|
+
} & {
|
9
17
|
disabled?: boolean;
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
private loadingTokens;
|
19
|
-
private openTokenPicker;
|
20
|
-
private triggeredLoadTokens;
|
21
|
-
private headers;
|
22
|
-
created(): void;
|
23
|
-
mounted(): void;
|
24
|
-
beforeDestroy(): void;
|
25
|
-
private ensureLoadTokens;
|
26
|
-
private handleChange;
|
27
|
-
private handleSelectToken;
|
28
|
-
private handleKeyUp;
|
29
|
-
private closePicker;
|
30
|
-
private renderTokenPicker;
|
31
|
-
render(): import("vue/jsx-runtime").JSX.Element;
|
32
|
-
}
|
18
|
+
}> & {
|
19
|
+
"onUpdate:modelValue"?: (value: string) => any;
|
20
|
+
} & {
|
21
|
+
"v-slots"?: {} & Omit<{
|
22
|
+
default?: import("vue").Slot;
|
23
|
+
}, never>;
|
24
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "class" | "label" | "disabled" | "styles" | "modelValue" | "v-model" | "emit:update:modelValue"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
25
|
+
export default _default;
|
@@ -4,7 +4,7 @@ declare const _default: {
|
|
4
4
|
headerButtons: string;
|
5
5
|
headerIcon: string;
|
6
6
|
switchWrapper: string;
|
7
|
-
wrapper: (totalWidth: number, dark: boolean, compactMode: boolean) => string;
|
7
|
+
wrapper: (totalWidth: number, dark: boolean, compactMode: boolean, compactModeWidth?: number) => string;
|
8
8
|
fullScreenWrapper: string;
|
9
9
|
};
|
10
10
|
export default _default;
|
@@ -11,7 +11,7 @@ export interface DisabledButtonTooltips {
|
|
11
11
|
delete?: string;
|
12
12
|
remove?: string;
|
13
13
|
}
|
14
|
-
export type JourneyBladeProps = DefineProp<"getApi", (store: ReturnType<typeof useJourneyStore>) => void, false, null, "callback to get a reference to the journey store. The store is used to navigate the journey blades."> & DefineProp<"title", string, false, null, "Specify the title of the blade."> & DefineProp<"toned", boolean, false, null, "IF the color is toned"> & DefineProp<"subTitle", string, false, null, "Specify a subtitle for the blade and the title is displayed in a breadcrumb style where the subTittle is prominent."> & DefineProp<"id", guid, true, null, "The id of the blade. Used to identify the blade in the journey store."> & DefineProp<"size", BladeSizeTypes, false, "x-small", "Specify the size of the blade. Small will show the header buttons as icons."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"ok", boolean, false, false, "Specify if the blade should show a ok button. If a ok button is shown, a cancel button will also be shown."> & DefineProp<"save", boolean, false, false, "Specify if the blade should show a save button. If a save button is shown, a cancel button will also be shown."> & DefineProp<"searchable", boolean | Ref<boolean>, false, false, "Specify if the blade should show a search field."> & DefineProp<"delete", boolean, false, false, "Specify if the blade should show a delete button."> & DefineProp<"remove", boolean, false, false, "Specify if the blade should show a remove button."> & DefineProp<"disabled", boolean, false, false, "Specify if the blade should shoud be read only."> & DefineProp<"manageList", boolean | Ref<boolean>, false, false, "Specify if the blade shoud be draggable on items."> & DefineProp<"switch", SwitchValue, false, null, "Specify if the blade should show switch."> & DefineProp<"settings", boolean, false, false, "Specify if the blade should show a settings button."> & DefineProp<"create", boolean, false, false, "Specify if the blade should show a create button."> & DefineProp<"add", boolean, false, false, "Specify if the blade should show a add button."> & DefineProp<"bladeContext", BladeContexts | BladeContext, false, null, "Specify context of the journey."> & DefineProp<"icon", IIcon, false, null, "Specify an icon for the blade header. This should be used to hightlight the blade type such as create blades, edit blades etc."> & DefineProp<"variant", BladeVariantTypes, false, null, "Applies a distinct style to the component."> & DefineProp<"onOk", () => boolean | Promise<boolean>, false, null, "Trigger when user click ok, return true if ok to close the blade."> & DefineProp<"onRemove", () => boolean | Promise<boolean>, false, null, "Trigger when user click remove, return true if ok to close the blade."> & DefineProp<"onSave", () => boolean | Promise<boolean>, false, null, "Trigger when user click save, return true if ok to close the blade."> & DefineProp<"onDelete", () => boolean | Promise<boolean>, false, null, "Trigger when user click delete, return true if ok to close the blade."> & DefineProp<"onSwitch", (value: boolean) => boolean | Promise<boolean>, false, null, "Trigger when user toggle switch, return true if ok to close the blade."> & DefineProp<"confirmDeleteDialogOption", ConfirmDialogOptions, false, null, "Specify a set of options for the confirm dialog shown before deleting."> & DefineProp<"eager", boolean, false, false, "Force the tab content to preload. This is useful if you have content that you want to be preloaded, instead of 'load on click' default behavior."> & DefineProp<"disabledButtonTooltips", DisabledButtonTooltips, false, null, "Specify a set of options for the confirm dialog shown before deleting."> & DefineSlot<"actions", () => VNodeChild> & DefineSlot<"actionsFooter", () => VNodeChild> & DefineEmit<"click:create", (id: guid) => true> & DefineEmit<"click:add", (id: guid) => true> & DefineEmit<"click:back", (id: guid) => true> & DefineEmit<"click:cancel", (id: guid) => true> & DefineEmit<"click:settings", (id: guid) => true> & DefineEmit<"click:confirm", () => true> & DefineEmit<"search", (searchText: string) => true> & DefineEmit<"click:manageList", () => true>;
|
14
|
+
export type JourneyBladeProps = DefineProp<"getApi", (store: ReturnType<typeof useJourneyStore>) => void, false, null, "callback to get a reference to the journey store. The store is used to navigate the journey blades."> & DefineProp<"title", string, false, null, "Specify the title of the blade."> & DefineProp<"toned", boolean, false, null, "IF the color is toned"> & DefineProp<"subTitle", string, false, null, "Specify a subtitle for the blade and the title is displayed in a breadcrumb style where the subTittle is prominent."> & DefineProp<"id", guid, true, null, "The id of the blade. Used to identify the blade in the journey store."> & DefineProp<"size", BladeSizeTypes, false, "x-small", "Specify the size of the blade. Small will show the header buttons as icons."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"ok", boolean, false, false, "Specify if the blade should show a ok button. If a ok button is shown, a cancel button will also be shown."> & DefineProp<"save", boolean, false, false, "Specify if the blade should show a save button. If a save button is shown, a cancel button will also be shown."> & DefineProp<"searchable", boolean | Ref<boolean>, false, false, "Specify if the blade should show a search field."> & DefineProp<"delete", boolean, false, false, "Specify if the blade should show a delete button."> & DefineProp<"remove", boolean, false, false, "Specify if the blade should show a remove button."> & DefineProp<"disabled", boolean, false, false, "Specify if the blade should shoud be read only."> & DefineProp<"manageList", boolean | Ref<boolean>, false, false, "Specify if the blade shoud be draggable on items."> & DefineProp<"switch", SwitchValue, false, null, "Specify if the blade should show switch."> & DefineProp<"settings", boolean, false, false, "Specify if the blade should show a settings button."> & DefineProp<"create", boolean, false, false, "Specify if the blade should show a create button."> & DefineProp<"add", boolean, false, false, "Specify if the blade should show a add button."> & DefineProp<"bladeContext", BladeContexts | BladeContext, false, null, "Specify context of the journey."> & DefineProp<"icon", IIcon, false, null, "Specify an icon for the blade header. This should be used to hightlight the blade type such as create blades, edit blades etc."> & DefineProp<"variant", BladeVariantTypes, false, null, "Applies a distinct style to the component."> & DefineProp<"onOk", () => boolean | Promise<boolean>, false, null, "Trigger when user click ok, return true if ok to close the blade."> & DefineProp<"onRemove", () => boolean | Promise<boolean>, false, null, "Trigger when user click remove, return true if ok to close the blade."> & DefineProp<"onSave", () => boolean | Promise<boolean>, false, null, "Trigger when user click save, return true if ok to close the blade."> & DefineProp<"onDelete", () => boolean | Promise<boolean>, false, null, "Trigger when user click delete, return true if ok to close the blade."> & DefineProp<"onSwitch", (value: boolean) => boolean | Promise<boolean>, false, null, "Trigger when user toggle switch, return true if ok to close the blade."> & DefineProp<"confirmDeleteDialogOption", ConfirmDialogOptions, false, null, "Specify a set of options for the confirm dialog shown before deleting."> & DefineProp<"eager", boolean, false, false, "Force the tab content to preload. This is useful if you have content that you want to be preloaded, instead of 'load on click' default behavior."> & DefineProp<"disabledButtonTooltips", DisabledButtonTooltips, false, null, "Specify a set of options for the confirm dialog shown before deleting."> & DefineProp<"sizeOnMobile", BladeSizeTypes, false, null, "Specify the size of the blade on mobile. Default full width on mobile view"> & DefineSlot<"actions", () => VNodeChild> & DefineSlot<"actionsFooter", () => VNodeChild> & DefineEmit<"click:create", (id: guid) => true> & DefineEmit<"click:add", (id: guid) => true> & DefineEmit<"click:back", (id: guid) => true> & DefineEmit<"click:cancel", (id: guid) => true> & DefineEmit<"click:settings", (id: guid) => true> & DefineEmit<"click:confirm", () => true> & DefineEmit<"search", (searchText: string) => true> & DefineEmit<"click:manageList", () => true>;
|
15
15
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<JourneyBladeProps> & {
|
16
16
|
"onClick:cancel"?: (id: guid) => any;
|
17
17
|
"onClick:confirm"?: () => any;
|
@@ -28,5 +28,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<JourneyBlade
|
|
28
28
|
} & Omit<{
|
29
29
|
default?: import("vue").Slot;
|
30
30
|
}, "actions" | "actionsFooter">;
|
31
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "switch" | "icon" | "variant" | "size" | "add" | "id" | "delete" | "disabled" | "eager" | "settings" | "loading" | "create" | "remove" | "slot:actions" | "ok" | "save" | "toned" | "subTitle" | "emit:click:cancel" | "emit:click:confirm" | "getApi" | "searchable" | "manageList" | "bladeContext" | "onOk" | "onRemove" | "onSave" | "onDelete" | "onSwitch" | "confirmDeleteDialogOption" | "disabledButtonTooltips" | "slot:actionsFooter" | "emit:click:create" | "emit:click:add" | "emit:click:back" | "emit:click:settings" | "emit:search" | "emit:click:manageList"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
31
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "switch" | "icon" | "variant" | "size" | "add" | "id" | "delete" | "disabled" | "eager" | "settings" | "loading" | "create" | "remove" | "slot:actions" | "ok" | "save" | "toned" | "subTitle" | "emit:click:cancel" | "emit:click:confirm" | "getApi" | "searchable" | "manageList" | "bladeContext" | "onOk" | "onRemove" | "onSave" | "onDelete" | "onSwitch" | "confirmDeleteDialogOption" | "disabledButtonTooltips" | "sizeOnMobile" | "slot:actionsFooter" | "emit:click:create" | "emit:click:add" | "emit:click:back" | "emit:click:settings" | "emit:search" | "emit:click:manageList"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
32
32
|
export default _default;
|
@@ -4,14 +4,15 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
4
4
|
items?: SettingsJourneyMenuItem[] | Ref<SettingsJourneyMenuItem[], SettingsJourneyMenuItem[]>;
|
5
5
|
} & {
|
6
6
|
getApi?: (store: ReturnType<typeof useJourneyStore>) => void;
|
7
|
-
} & DefineSlot<"append", () => VNodeChild> & DefineRef<{
|
7
|
+
} & DefineSlot<"append", () => VNodeChild> & DefineSlot<"item", (item: SettingsJourneyMenuItem, index: Number) => VNodeChild> & DefineRef<{
|
8
8
|
journeyStore: ReturnType<typeof useJourneyStore>;
|
9
9
|
}>> & {} & {
|
10
10
|
"v-slots"?: {
|
11
11
|
append?: () => VNodeChild;
|
12
|
+
item?: (item: SettingsJourneyMenuItem, index: Number) => VNodeChild;
|
12
13
|
} & Omit<{
|
13
14
|
default?: import("vue").Slot;
|
14
|
-
}, "append">;
|
15
|
+
}, "item" | "append">;
|
15
16
|
} & {
|
16
17
|
ref?: Ref<{
|
17
18
|
journeyStore: ReturnType<typeof useJourneyStore>;
|
@@ -20,5 +21,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
20
21
|
}> | ((ref: {
|
21
22
|
journeyStore: ReturnType<typeof useJourneyStore>;
|
22
23
|
}) => void);
|
23
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "items" | "ref" | "getApi" | "slot:append"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
24
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "items" | "ref" | "slot:item" | "getApi" | "slot:append"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
24
25
|
export default _default;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { guid } from "@omnia/fx-models";
|
2
2
|
import { type StoreEvents, type StoreReturnDefineAction } from "@omnia/fx/stores";
|
3
|
-
import { BladeInstance, defineBlade } from "@omnia/fx/ux";
|
3
|
+
import { BladeInstance, defineBlade, useScrollContainerStore } from "@omnia/fx/ux";
|
4
4
|
import { BladeSizeTypes } from "../models/Constants";
|
5
5
|
import { JourneyVariant } from "../Journey.css";
|
6
6
|
export type JourneyStore = ReturnType<typeof useJourneyStore>;
|
@@ -48,6 +48,62 @@ export type InternalJourneyStoreType = {
|
|
48
48
|
};
|
49
49
|
};
|
50
50
|
export declare const useJourneyStore: () => {
|
51
|
+
readonly scrollContainer: {
|
52
|
+
state: {
|
53
|
+
elementRef: HTMLElement;
|
54
|
+
elementId: string;
|
55
|
+
disableScrolling: boolean;
|
56
|
+
height: string;
|
57
|
+
width: string;
|
58
|
+
scrollingDirection: import("@omnia/fx-models").OScrollTypesCombination;
|
59
|
+
coordinates: {
|
60
|
+
readonly bottom: number;
|
61
|
+
readonly left: number;
|
62
|
+
readonly right: number;
|
63
|
+
readonly top: number;
|
64
|
+
};
|
65
|
+
};
|
66
|
+
events: StoreEvents<{
|
67
|
+
elementRef: HTMLElement;
|
68
|
+
elementId: string;
|
69
|
+
disableScrolling: boolean;
|
70
|
+
height: string;
|
71
|
+
width: string;
|
72
|
+
scrollingDirection: import("@omnia/fx-models").OScrollTypesCombination;
|
73
|
+
coordinates: {
|
74
|
+
readonly bottom: number;
|
75
|
+
readonly left: number;
|
76
|
+
readonly right: number;
|
77
|
+
readonly top: number;
|
78
|
+
};
|
79
|
+
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
80
|
+
actions: StoreReturnDefineAction<{
|
81
|
+
scroll: () => void;
|
82
|
+
calculateDynamicHeight: () => void;
|
83
|
+
setHeight: (height: string) => void;
|
84
|
+
setWidth: (width: string) => void;
|
85
|
+
setScrolling: (scrolling: import("@omnia/fx-models").OScrollTypesCombination) => void;
|
86
|
+
calculateScrollHeight: (referenceElementIds: string[]) => void;
|
87
|
+
isElementNameStillInView: (elementName: string) => boolean;
|
88
|
+
isElementIdStillInView: (elementId: string) => boolean;
|
89
|
+
scrollToStart: () => void;
|
90
|
+
scrollToElementId: (elementId: string, anchor?: import("@omnia/fx/ux").AnchorPosition) => void;
|
91
|
+
scrollToElementName: (elementName: string, anchor?: import("@omnia/fx/ux").AnchorPosition) => void;
|
92
|
+
scrollToElement: (element: HTMLElement, anchor?: import("@omnia/fx/ux").AnchorPosition) => void;
|
93
|
+
scrollToSelector: (selector: string, anchor?: import("@omnia/fx/ux").AnchorPosition) => void;
|
94
|
+
}>;
|
95
|
+
get: {
|
96
|
+
readonly coordinates: {
|
97
|
+
readonly bottom: number;
|
98
|
+
readonly left: number;
|
99
|
+
readonly right: number;
|
100
|
+
readonly top: number;
|
101
|
+
};
|
102
|
+
readonly scrollPosition: number;
|
103
|
+
};
|
104
|
+
} & {
|
105
|
+
dispose?: () => void;
|
106
|
+
};
|
51
107
|
state: {
|
52
108
|
blades: Array<BladeInstance>;
|
53
109
|
bladeRenderers: Array<BladeRenderRegistration>;
|
@@ -81,6 +137,7 @@ export declare const useJourneyStore: () => {
|
|
81
137
|
movePrev(fromBladeId: guid): void;
|
82
138
|
travelTo(fromBladeId: guid, toBladeId: guid): void;
|
83
139
|
setActiveIndex(index: number): void;
|
140
|
+
setScrollContainer(store: ReturnType<typeof useScrollContainerStore>): void;
|
84
141
|
}>;
|
85
142
|
} & {
|
86
143
|
dispose?: () => void;
|
@@ -1,80 +1,28 @@
|
|
1
|
-
declare const _default: {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
options: import("vue").Prop<object[], object[]>;
|
29
|
-
optionValue: import("vue").Prop<string, string>;
|
30
|
-
optionText: import("vue").Prop<string, string>;
|
31
|
-
valueBind: import("vue").Prop<any[], any[]>;
|
32
|
-
onValueChanged: import("vue").Prop<(value: any[]) => void, (value: any[]) => void>;
|
33
|
-
required: import("vue").Prop<boolean, boolean>;
|
34
|
-
hideDetails: import("vue").Prop<boolean, boolean>;
|
35
|
-
onVnodeBeforeMount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
36
|
-
onVnodeMounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
37
|
-
onVnodeBeforeUpdate?: import("vue").Prop<((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]>;
|
38
|
-
onVnodeUpdated?: import("vue").Prop<((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]>;
|
39
|
-
onVnodeBeforeUnmount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
40
|
-
onVnodeUnmounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
41
|
-
}>>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {}>;
|
42
|
-
__isFragment?: never;
|
43
|
-
__isTeleport?: never;
|
44
|
-
__isSuspense?: never;
|
45
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
46
|
-
title: import("vue").Prop<string, string>;
|
47
|
-
multipleChoice: import("vue").Prop<boolean, boolean>;
|
48
|
-
options: import("vue").Prop<object[], object[]>;
|
49
|
-
optionValue: import("vue").Prop<string, string>;
|
50
|
-
optionText: import("vue").Prop<string, string>;
|
51
|
-
valueBind: import("vue").Prop<any[], any[]>;
|
52
|
-
onValueChanged: import("vue").Prop<(value: any[]) => void, (value: any[]) => void>;
|
53
|
-
required: import("vue").Prop<boolean, boolean>;
|
54
|
-
hideDetails: import("vue").Prop<boolean, boolean>;
|
55
|
-
onVnodeBeforeMount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
56
|
-
onVnodeMounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
57
|
-
onVnodeBeforeUpdate?: import("vue").Prop<((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]>;
|
58
|
-
onVnodeUpdated?: import("vue").Prop<((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]>;
|
59
|
-
onVnodeBeforeUnmount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
60
|
-
onVnodeUnmounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
61
|
-
}>>, () => 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 & {
|
62
|
-
propsDefinition: Omit<Readonly<{} & {
|
63
|
-
title?: string;
|
64
|
-
options?: object[];
|
65
|
-
required?: boolean;
|
66
|
-
valueBind?: any[];
|
67
|
-
onVnodeBeforeMount?: ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[];
|
68
|
-
onVnodeMounted?: ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[];
|
69
|
-
onVnodeBeforeUpdate?: ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[];
|
70
|
-
onVnodeUpdated?: ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[];
|
71
|
-
onVnodeBeforeUnmount?: ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[];
|
72
|
-
onVnodeUnmounted?: ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[];
|
73
|
-
hideDetails?: boolean;
|
74
|
-
onValueChanged?: (value: any[]) => void;
|
75
|
-
multipleChoice?: boolean;
|
76
|
-
optionValue?: string;
|
77
|
-
optionText?: string;
|
78
|
-
}>, never>;
|
79
|
-
};
|
1
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
2
|
+
title?: string;
|
3
|
+
} & {
|
4
|
+
multipleChoice?: boolean;
|
5
|
+
} & {
|
6
|
+
options?: object[];
|
7
|
+
} & {
|
8
|
+
optionValue?: string;
|
9
|
+
} & {
|
10
|
+
optionText?: string;
|
11
|
+
} & {
|
12
|
+
"emit:update:modelValue": (value: any[]) => void;
|
13
|
+
} & {
|
14
|
+
"v-model"?: any[];
|
15
|
+
} & {
|
16
|
+
modelValue?: any[];
|
17
|
+
} & {
|
18
|
+
required?: boolean;
|
19
|
+
} & {
|
20
|
+
hideDetails?: boolean;
|
21
|
+
}> & {
|
22
|
+
"onUpdate:modelValue"?: (value: any[]) => any;
|
23
|
+
} & {
|
24
|
+
"v-slots"?: {} & Omit<{
|
25
|
+
default?: import("vue").Slot;
|
26
|
+
}, never>;
|
27
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "options" | "required" | "modelValue" | "hideDetails" | "v-model" | "emit:update:modelValue" | "multipleChoice" | "optionValue" | "optionText"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
80
28
|
export default _default;
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import { ButtonIconOptions, OOxideButtonPresets, ButtonTooltipOptions, OSizeTypes, OIconAnimations, ButtonBlueprint, OButtonVariants } from "@omnia/fx-models";
|
1
|
+
import { ButtonIconOptions, OOxideButtonPresets, ButtonTooltipOptions, OSizeTypes, OIconAnimations, ButtonBlueprint, OButtonVariants, ButtonBlueprintVariant } from "@omnia/fx-models";
|
2
2
|
import { DefinePropTheming, DefineProp } from "@omnia/fx/ux";
|
3
|
-
type ButtonProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"filled", boolean, false, false, "Applies the a background color to the flex. The color is based on the colorSchema either set or inherited."> & DefineProp<"icon", ButtonIconOptions, false, null, "The icon to be displayed."> & DefineProp<"text", string, false, null, "Specifies the text to display on the button."> & DefineProp<"href", string, false, null, "Designates the component as anchor and applies the href attribute."> & DefineProp<"target", "_blank" | "_self" | "_parent" | "_top" | "framename", false, null, "The target attribute specifies where to open the linked document."> & DefineProp<"variant", OButtonVariants, false, null, "Applies a distinct style to the component. Prominent should be used for call to action. Toolbar will create a transparent button to be used in toolbars."> & DefineProp<"overrides", object, false, null, "Sets the icon to display on the button. If no text is provided the button will be displayed as an icon button."> & DefineProp<"preset", OOxideButtonPresets, false, null, "Sets the default values of the button to the specified preset."> & DefineProp<"tooltip", ButtonTooltipOptions, false, null, "Sets tooltip to display when hovering the button."> & DefineProp<"size", OSizeTypes, false, null, "Sets the size of the button."> & DefineProp<"grouped", boolean, false, false, "Adds spacing to the left of the button to group it with other buttons. Should be used when more than one button is displayed."> & DefineProp<"toned", boolean, false, false, "Applies a toned background to the button. Should be used when the button is displayed on a colored background."> & DefineProp<"transparentHover", boolean, false, false, "Makes the button transparent and no hover effect."> & DefineProp<"active", boolean, false, false, "Controls the active state of the item. This is typically used to highlight the component."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar."> & DefineProp<"disabled", boolean, false, false, "Removes the ability to click or target the component."> & DefineProp<"block", boolean, false, false, "Block buttons extend the full width of their container. This is useful for creating buttons that span the full width of a card or dialog."> & DefineProp<"stacked", boolean, false, false, "Displays the button as a column with the icon on top."> & DefineProp<"disableBlueprint", boolean, false, false, "Disables the blueprint and use properties instead."> & DefineProp<"animation", OIconAnimations, false, null, "Sets the animation on the icon when hovering the button."> & DefineProp<"blueprint", ButtonBlueprint, false, null, "Sets a custom blueprint for the button.">;
|
3
|
+
type ButtonProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"filled", boolean, false, false, "Applies the a background color to the flex. The color is based on the colorSchema either set or inherited."> & DefineProp<"icon", ButtonIconOptions, false, null, "The icon to be displayed."> & DefineProp<"text", string, false, null, "Specifies the text to display on the button."> & DefineProp<"href", string, false, null, "Designates the component as anchor and applies the href attribute."> & DefineProp<"target", "_blank" | "_self" | "_parent" | "_top" | "framename", false, null, "The target attribute specifies where to open the linked document."> & DefineProp<"variant", OButtonVariants, false, null, "Applies a distinct style to the component. Prominent should be used for call to action. Toolbar will create a transparent button to be used in toolbars."> & DefineProp<"overrides", object, false, null, "Sets the icon to display on the button. If no text is provided the button will be displayed as an icon button."> & DefineProp<"preset", OOxideButtonPresets, false, null, "Sets the default values of the button to the specified preset."> & DefineProp<"tooltip", ButtonTooltipOptions, false, null, "Sets tooltip to display when hovering the button."> & DefineProp<"size", OSizeTypes, false, null, "Sets the size of the button."> & DefineProp<"grouped", boolean, false, false, "Adds spacing to the left of the button to group it with other buttons. Should be used when more than one button is displayed."> & DefineProp<"toned", boolean, false, false, "Applies a toned background to the button. Should be used when the button is displayed on a colored background."> & DefineProp<"transparentHover", boolean, false, false, "Makes the button transparent and no hover effect."> & DefineProp<"active", boolean, false, false, "Controls the active state of the item. This is typically used to highlight the component."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar."> & DefineProp<"disabled", boolean, false, false, "Removes the ability to click or target the component."> & DefineProp<"block", boolean, false, false, "Block buttons extend the full width of their container. This is useful for creating buttons that span the full width of a card or dialog."> & DefineProp<"stacked", boolean, false, false, "Displays the button as a column with the icon on top."> & DefineProp<"disableBlueprint", boolean, false, false, "Disables the blueprint and use properties instead."> & DefineProp<"animation", OIconAnimations, false, null, "Sets the animation on the icon when hovering the button."> & DefineProp<"blueprint", ButtonBlueprint | ButtonBlueprintVariant, false, null, "Sets a custom blueprint for the button.">;
|
4
4
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<ButtonProps> & {} & {
|
5
5
|
"v-slots"?: {} & Omit<{
|
6
6
|
default?: import("vue").Slot;
|
@@ -3,15 +3,16 @@ import { DefineEmit, DefineProp, DefinePropTheming, DefineSlot, DefineVModel } f
|
|
3
3
|
import { VNodeChild } from "vue";
|
4
4
|
export * from "./Dialog.stylex";
|
5
5
|
type DialogLocation = "left" | "center" | "right";
|
6
|
-
type DialogProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"toned", boolean, false, false, "Toned color picker."> & DefineVModel<"", boolean, false, null, false, "The v-model of the component."> & DefineProp<"persistent", boolean, false, false, "Specify if the dialog is closed if clicked outside of the dialog."> & DefineProp<"eager", boolean, false, false, "Forces the component’s content to render when it mounts."> & DefineProp<"title", string, false, null, "Specify the title of the dialog."> & DefineProp<"subTitle", string, false, null, "Specify a subtitle for the dialog and the title is displayed in a breadcrumb style where the subTittle is prominent."> & DefineProp<"icon", IIcon, false, null, "Specify an icon for the dialog. This is almost mandatory and is used to hightlight the dialog context."> & DefineProp<"hiddenCloseButton", boolean, false, false, "Hide the close button of the dialog."> & DefineProp<"backButton", boolean, false, false, "I a back button is displayed to close the dialog."> & DefineProp<"size", ODialogSizes, false, "medium", "Specify the size of the dialog. Default is mediumsize."> & DefineProp<"variant", ODialogTypes, false, "default", "Applies a distinct style to the component."> & DefineProp<"contentHeight", OContentHeight, false, "static", "Sets the content responsive strategy for the dialog . With dynamic it will adapt to the content height. This should only be used with content that does not change size."> & DefineProp<"customScrolling", boolean, false, false, "Disables the default scrolling behavior of the dialog. This should be used when the dialog contains a custom scrollable element such as a o.tab or a component with custom scrollable requirements."> & DefineProp<"horizontalScroll", boolean, false, false, "Adds a horizontal scrollbar to the dialog. This should be used when the dialog contains a custom vertiacl scrollable element such as a <o-journey> or a component with custom scrollable requirements."> & DefineProp<"journey", boolean, false, false, "The dialog is a journey dialog where the header supports navigation."> & DefineProp<"canClose", (request: ODialogBuiltinButtons, buttonInstance: ODialogButtonInstance) => Future<void>, false, null, "Function that can control if the dialog is allowed to be closed. When the promise is resolved the dialog will close. If the promise is rejected the dialog will not close."> & DefineProp<"buttonApi", (confirm: ODialogButtonInstance, cancel: ODialogButtonInstance) => void, false, null, "Function that can get reference to the buttons to control the state of them."> & DefineSlot<"fixedContent", () => VNodeChild> & DefineSlot<"activator", () => VNodeChild> & DefineSlot<"headerButtons", () => VNodeChild> & DefineSlot<"actions", () => VNodeChild> & DefineSlot<"navigation", (apis: {
|
6
|
+
type DialogProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"toned", boolean, false, false, "Toned color picker."> & DefineVModel<"", boolean, false, null, false, "The v-model of the component."> & DefineProp<"persistent", boolean, false, false, "Specify if the dialog is closed if clicked outside of the dialog."> & DefineProp<"eager", boolean, false, false, "Forces the component’s content to render when it mounts."> & DefineProp<"title", string, false, null, "Specify the title of the dialog."> & DefineProp<"subTitle", string, false, null, "Specify a subtitle for the dialog and the title is displayed in a breadcrumb style where the subTittle is prominent."> & DefineProp<"icon", IIcon, false, null, "Specify an icon for the dialog. This is almost mandatory and is used to hightlight the dialog context."> & DefineProp<"hiddenCloseButton", boolean, false, false, "Hide the close button of the dialog."> & DefineProp<"backButton", boolean, false, false, "I a back button is displayed to close the dialog."> & DefineProp<"size", ODialogSizes, false, "medium", "Specify the size of the dialog. Default is mediumsize."> & DefineProp<"variant", ODialogTypes, false, "default", "Applies a distinct style to the component."> & DefineProp<"contentHeight", OContentHeight, false, "static", "Sets the content responsive strategy for the dialog . With dynamic it will adapt to the content height. This should only be used with content that does not change size."> & DefineProp<"customScrolling", boolean, false, false, "Disables the default scrolling behavior of the dialog. This should be used when the dialog contains a custom scrollable element such as a o.tab or a component with custom scrollable requirements."> & DefineProp<"horizontalScroll", boolean, false, false, "Adds a horizontal scrollbar to the dialog. This should be used when the dialog contains a custom vertiacl scrollable element such as a <o-journey> or a component with custom scrollable requirements."> & DefineProp<"journey", boolean, false, false, "The dialog is a journey dialog where the header supports navigation."> & DefineProp<"canClose", (request: ODialogBuiltinButtons, buttonInstance: ODialogButtonInstance) => Future<void>, false, null, "Function that can control if the dialog is allowed to be closed. When the promise is resolved the dialog will close. If the promise is rejected the dialog will not close."> & DefineProp<"canBack", (request: ODialogBuiltinButtons, buttonInstance: ODialogButtonInstance) => Future<void>, false, null, "Function that can control if the dialog is allowed to be closed. When the promise is resolved the dialog will close. If the promise is rejected the dialog will not close."> & DefineProp<"buttonApi", (confirm: ODialogButtonInstance, cancel: ODialogButtonInstance) => void, false, null, "Function that can get reference to the buttons to control the state of them."> & DefineSlot<"fixedContent", () => VNodeChild> & DefineSlot<"activator", () => VNodeChild> & DefineSlot<"headerButtons", () => VNodeChild> & DefineSlot<"actions", () => VNodeChild> & DefineSlot<"navigation", (apis: {
|
7
7
|
hideNavigation: () => void;
|
8
8
|
showNavigation: () => void;
|
9
|
-
}) => VNodeChild> & DefineSlot<"header", () => VNodeChild> & DefineEmit<"click:close", () => void> & DefineEmit<"click:cancel", () => void> & DefineEmit<"click:confirm", () => void> & DefineProp<"location", DialogLocation, false, "center", "Sets location of the dialog.">;
|
9
|
+
}) => VNodeChild> & DefineSlot<"header", () => VNodeChild> & DefineEmit<"click:close", () => void> & DefineEmit<"click:cancel", () => void> & DefineEmit<"click:confirm", () => void> & DefineEmit<"click:backButton", () => void> & DefineProp<"location", DialogLocation, false, "center", "Sets location of the dialog.">;
|
10
10
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<DialogProps> & {
|
11
11
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
12
12
|
"onClick:close"?: () => any;
|
13
13
|
"onClick:cancel"?: () => any;
|
14
14
|
"onClick:confirm"?: () => any;
|
15
|
+
"onClick:backButton"?: () => any;
|
15
16
|
} & {
|
16
17
|
"v-slots"?: {
|
17
18
|
fixedContent?: () => VNodeChild;
|
@@ -26,5 +27,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<DialogProps>
|
|
26
27
|
} & Omit<{
|
27
28
|
default?: import("vue").Slot;
|
28
29
|
}, "navigation" | "actions" | "header" | "activator" | "fixedContent" | "headerButtons">;
|
29
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "icon" | "variant" | "size" | "class" | "persistent" | "eager" | "colorSchemaType" | "location" | "modelValue" | "slot:actions" | "colors" | "v-model" | "toned" | "journey" | "emit:update:modelValue" | "subTitle" | "hiddenCloseButton" | "backButton" | "contentHeight" | "customScrolling" | "horizontalScroll" | "canClose" | "buttonApi" | "slot:fixedContent" | "slot:activator" | "slot:headerButtons" | "slot:navigation" | "slot:header" | "emit:click:close" | "emit:click:cancel" | "emit:click:confirm"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
30
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "icon" | "variant" | "size" | "class" | "persistent" | "eager" | "colorSchemaType" | "location" | "modelValue" | "slot:actions" | "colors" | "v-model" | "toned" | "journey" | "emit:update:modelValue" | "subTitle" | "hiddenCloseButton" | "backButton" | "contentHeight" | "customScrolling" | "horizontalScroll" | "canClose" | "canBack" | "buttonApi" | "slot:fixedContent" | "slot:activator" | "slot:headerButtons" | "slot:navigation" | "slot:header" | "emit:click:close" | "emit:click:cancel" | "emit:click:confirm" | "emit:click:backButton"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
30
31
|
export default _default;
|
@@ -5,5 +5,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<ScrollContai
|
|
5
5
|
"v-slots"?: {} & Omit<{
|
6
6
|
default?: import("vue").Slot;
|
7
7
|
}, never>;
|
8
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "height" | "width" | "filled" | "class" | "colorSchemaType" | "colors" | "toned" | "
|
8
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "height" | "width" | "filled" | "class" | "colorSchemaType" | "colors" | "toned" | "disableScrolling" | "getApi" | "compensatScrollbar" | "dynamicHeight" | "scrolling"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
9
9
|
export default _default;
|
@@ -1,23 +1,23 @@
|
|
1
|
-
import {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
1
|
+
import { SelectionItem } from "..";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
3
|
+
items?: SelectionItem<any>[];
|
4
|
+
} & {
|
5
|
+
"emit:update:modelValue": (value: SelectionItem<any>) => void;
|
6
|
+
} & {
|
7
|
+
"v-model"?: SelectionItem<any>;
|
8
|
+
} & {
|
9
|
+
modelValue?: SelectionItem<any>;
|
10
|
+
} & {
|
8
11
|
loading?: boolean;
|
9
|
-
|
12
|
+
} & {
|
13
|
+
label?: string;
|
14
|
+
} & {
|
10
15
|
disabled?: boolean;
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
beforeDestroy(): void;
|
20
|
-
private handleChange;
|
21
|
-
private handleTokenChange;
|
22
|
-
render(): import("vue/jsx-runtime").JSX.Element;
|
23
|
-
}
|
16
|
+
}> & {
|
17
|
+
"onUpdate:modelValue"?: (value: SelectionItem<any>) => any;
|
18
|
+
} & {
|
19
|
+
"v-slots"?: {} & Omit<{
|
20
|
+
default?: import("vue").Slot;
|
21
|
+
}, never>;
|
22
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "disabled" | "modelValue" | "items" | "loading" | "v-model" | "emit:update:modelValue"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
23
|
+
export default _default;
|
@@ -1,15 +1,12 @@
|
|
1
|
-
|
2
|
-
import { IWebComponentInstance } from "../..";
|
3
|
-
import { ISiteLogoIcon } from "./ISiteLogoIcon";
|
4
|
-
import { SiteStore } from "../../stores";
|
5
|
-
export declare class SiteLogoIcon extends VueComponentBase implements IWebComponentInstance, ISiteLogoIcon {
|
1
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
6
2
|
forceLetterAvatar?: boolean;
|
3
|
+
} & {
|
7
4
|
siteUrl?: string;
|
5
|
+
} & {
|
8
6
|
size?: number;
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
}
|
7
|
+
}> & {} & {
|
8
|
+
"v-slots"?: {} & Omit<{
|
9
|
+
default?: import("vue").Slot;
|
10
|
+
}, never>;
|
11
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "size" | "forceLetterAvatar" | "siteUrl"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
12
|
+
export default _default;
|
@@ -61,6 +61,7 @@ import wcec81357974804c539bff6c58a8785c22 from './ux/identitypicker/IdentityPick
|
|
61
61
|
import wc5d74b2de65164761a3dce6a534b64bd1 from './ux/identitypicker/IdentityPickerDialog';
|
62
62
|
import wc70593d481fa54e68be9f4fe41f0f5c92 from './ux/identitypicker/IdentityPickerButton';
|
63
63
|
import wc91919b3f54de42dab709575b8a9ca233 from './ux/inputlanguagepicker/InputLanguagePicker';
|
64
|
+
import wcdb657792b7d541d7a90dd4488bd1034e from './ux/inputtoken/InputToken';
|
64
65
|
import wcc0ba9c7ccef54093bcb0be49e7cf79df from './ux/journey/Journey';
|
65
66
|
import wc4357bb8264e3482c8710afed3b2be35c from './ux/journey/JourneyBlade';
|
66
67
|
import wc0ce695fbce6f4c08906de47bbd84152d from './ux/journey/JourneyPlaceHolder';
|
@@ -110,6 +111,7 @@ import wc8c7794090eb647eb8510b39cbefa17a7 from './ux/rollupempty/RollupEmpty';
|
|
110
111
|
import wc327f0bbcccdf4ad6b43b86816c61d6c9 from './ux/rollupfilter/RollupFilter';
|
111
112
|
import wc0ed31f854a244481a011ce4fa4aa5436 from './ux/rollupfilter/RollupFilterPicker';
|
112
113
|
import wc379287b1efe64a49a43fcd754d1fd951 from './ux/securitytrimmer/SecurityTrimmer';
|
114
|
+
import wcd77bfe700fa84b5d9d2cb578660fc364 from './ux/selection/SelectionComponent';
|
113
115
|
import wcc0de4753b9fe4004b0f4e6b6b91730ab from './ux/settings/SettingsPane';
|
114
116
|
import wc67a7bdf58e82465d8f3fc32413512932 from './ux/shapedivider/ShapeDividerSettings';
|
115
117
|
import wce11da8c3cd654c1e8701db2c69e423de from './ux/shapedivider/ShapeDivider';
|
@@ -123,6 +125,7 @@ import wc535ac075284646eca569a78457213e6f from './ux/signin/omnia/Login';
|
|
123
125
|
import wc2b741f0203a54cb5a7be72e204ebecc8 from './ux/signin/identitycreationrequest/IdentityCreationRequestView';
|
124
126
|
import wcffcb5f0ddcfd445d81683167f298c336 from './ux/signin/identitycreationrequest/ConfirmEmailView';
|
125
127
|
import wcf297290b5ea4409a9738ca880f1ea612 from './ux/signout/Logout';
|
128
|
+
import wcb000c2b3b2114ea5b90511ead32741c4 from './ux/sitelogoicon/SiteLogoIcon';
|
126
129
|
import wc9be9d4f831fd4d15ab09d235d5cd6a38 from './ux/social/Comment';
|
127
130
|
import wc239412079c474a78b857dd4bdca3ff84 from './ux/social/PeopleTagging';
|
128
131
|
import wcd737feca8c0e44c1808f6f016122f8ea from './ux/social/CommentDialog';
|
@@ -1561,6 +1564,13 @@ declare global {
|
|
1561
1564
|
};
|
1562
1565
|
} : typeof wc91919b3f54de42dab709575b8a9ca233;
|
1563
1566
|
};
|
1567
|
+
"token": typeof wcdb657792b7d541d7a90dd4488bd1034e extends {
|
1568
|
+
propsDefinition: infer TProp;
|
1569
|
+
} ? {
|
1570
|
+
new (...args: any[]): {
|
1571
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
1572
|
+
};
|
1573
|
+
} : typeof wcdb657792b7d541d7a90dd4488bd1034e;
|
1564
1574
|
"style": {
|
1565
1575
|
"picker": typeof wcd84a5b45429344d29a084ade31ad668d extends {
|
1566
1576
|
propsDefinition: infer TProp;
|
@@ -2195,6 +2205,13 @@ declare global {
|
|
2195
2205
|
};
|
2196
2206
|
} : typeof wc379287b1efe64a49a43fcd754d1fd951;
|
2197
2207
|
};
|
2208
|
+
"selection": typeof wcd77bfe700fa84b5d9d2cb578660fc364 extends {
|
2209
|
+
propsDefinition: infer TProp;
|
2210
|
+
} ? {
|
2211
|
+
new (...args: any[]): {
|
2212
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2213
|
+
};
|
2214
|
+
} : typeof wcd77bfe700fa84b5d9d2cb578660fc364;
|
2198
2215
|
"shape": {
|
2199
2216
|
"divider": {
|
2200
2217
|
"settings": typeof wc67a7bdf58e82465d8f3fc32413512932 extends {
|
@@ -2297,6 +2314,17 @@ declare global {
|
|
2297
2314
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2298
2315
|
};
|
2299
2316
|
} : typeof wcf297290b5ea4409a9738ca880f1ea612;
|
2317
|
+
"site": {
|
2318
|
+
"logo": {
|
2319
|
+
"icon": typeof wcb000c2b3b2114ea5b90511ead32741c4 extends {
|
2320
|
+
propsDefinition: infer TProp;
|
2321
|
+
} ? {
|
2322
|
+
new (...args: any[]): {
|
2323
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2324
|
+
};
|
2325
|
+
} : typeof wcb000c2b3b2114ea5b90511ead32741c4;
|
2326
|
+
};
|
2327
|
+
};
|
2300
2328
|
"comment": {
|
2301
2329
|
"component": typeof wc9be9d4f831fd4d15ab09d235d5cd6a38 extends {
|
2302
2330
|
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.384-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,13 +20,13 @@
|
|
20
20
|
],
|
21
21
|
"author": "Omnia Digital Workplace AB",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.384-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|
27
27
|
"splitpanes": "3.1.5",
|
28
28
|
"vue": "3.5.13",
|
29
|
-
"vuetify": "3.7.
|
29
|
+
"vuetify": "3.7.12",
|
30
30
|
"tslib": "2.6.2",
|
31
31
|
"typescript": "5.7.2",
|
32
32
|
"@tiptap/vue-3": "2.1.13",
|