@omnia/fx 8.0.407-dev → 8.0.409-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/core/utils/Utils.d.ts +2 -1
- package/internal-do-not-import-from-here/stores/mediapicker/ProviderStore.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/admin/usermanagement/groups/GroupAddMemberBlade.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/admin/usermanagement/groups/GroupDetailBlade.d.ts +15 -1
- package/internal-do-not-import-from-here/ux/admin/usermanagement/groups/GroupItemDetailBlade.d.ts +20 -0
- package/internal-do-not-import-from-here/ux/admin/usermanagement/groups/GroupMembershipListingJourney.d.ts +26 -0
- package/internal-do-not-import-from-here/ux/admin/usermanagement/loc/localize.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/componentblueprints/blades/BlueprintPreview.d.ts +0 -16
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/componentblueprints/blades/ButtonSelectSizeBlade.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/componentblueprints/store/ButtonsEditorStore.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/componentblueprints/store/ComponentEditorStore.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/store/ThemeEditorStore.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/typography/store/TypographyEditorStore.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/store/FillPickerStore.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/documenticon/DocumentIcon.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/identities/loc/Localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/journeyfilter/JourneyFilterDialog.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/journey/selection/JourneySelect.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/journey/stores/JourneySelectStore.d.ts +5 -3
- package/internal-do-not-import-from-here/ux/journey/stores/JourneyStore.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/mediapickerV2/mediaprovider/MediaProvider.d.ts +27 -1
- package/internal-do-not-import-from-here/ux/oxide/picker/Picker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/picker/Picker.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/picker/PickerSelection.d.ts +2 -2
- package/package.json +3 -3
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { DateOperator, FirstDayOfWeeks, IIcon, TenantRegionalSettings, TimePeriodSettings } from "../../models";
|
2
2
|
export declare namespace Utils {
|
3
3
|
function asyncForEach<T>(array: Array<T>, callback: (item: T, index?: number, items?: Array<T>) => Promise<void>): Promise<void>;
|
4
4
|
function isPromise(val: any): boolean;
|
@@ -89,6 +89,7 @@ export declare namespace Utils {
|
|
89
89
|
function trimEnd(str: string, chr: string): string;
|
90
90
|
function after(timePeriodSettings: TimePeriodSettings, date?: Date): Date;
|
91
91
|
function before(timePeriodSettings: TimePeriodSettings, date?: Date): Date;
|
92
|
+
function calculate(timePeriodSettings: TimePeriodSettings, date?: Date, operator?: DateOperator): Date;
|
92
93
|
function getScrollParent(node: any): any;
|
93
94
|
function throttle(func: any, wait: any, options: any): () => any;
|
94
95
|
/**
|
@@ -9,6 +9,7 @@ export declare const useProviderStore: () => {
|
|
9
9
|
showErrorScalingImage: boolean;
|
10
10
|
showErrorDownloadingImage: boolean;
|
11
11
|
showFileTypeNotSupported: boolean;
|
12
|
+
enableNoResultText: boolean;
|
12
13
|
scaleProcessingImage: boolean;
|
13
14
|
renderProvider: boolean;
|
14
15
|
searchResults: Array<MediaItem>;
|
@@ -50,6 +51,7 @@ export declare const useProviderStore: () => {
|
|
50
51
|
showErrorScalingImage: boolean;
|
51
52
|
showErrorDownloadingImage: boolean;
|
52
53
|
showFileTypeNotSupported: boolean;
|
54
|
+
enableNoResultText: boolean;
|
53
55
|
scaleProcessingImage: boolean;
|
54
56
|
renderProvider: boolean;
|
55
57
|
searchResults: Array<MediaItem>;
|
@@ -72,6 +74,7 @@ export declare const useProviderStore: () => {
|
|
72
74
|
showErrorScalingImage: (value: boolean | ((prev: boolean) => boolean)) => void;
|
73
75
|
showErrorDownloadingImage: (value: boolean | ((prev: boolean) => boolean)) => void;
|
74
76
|
showFileTypeNotSupported: (value: boolean | ((prev: boolean) => boolean)) => void;
|
77
|
+
enableNoResultText: (value: boolean | ((prev: boolean) => boolean)) => void;
|
75
78
|
scaleProcessingImage: (value: boolean | ((prev: boolean) => boolean)) => void;
|
76
79
|
renderProvider: (value: boolean | ((prev: boolean) => boolean)) => void;
|
77
80
|
searchResults: (value: MediaItem[] | ((prev: MediaItem[]) => MediaItem[])) => void;
|
package/internal-do-not-import-from-here/ux/admin/usermanagement/groups/GroupAddMemberBlade.d.ts
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
import { GroupIdentity, UserIdentity } from "@omnia/fx-models";
|
2
|
+
import { DefineEmit } from "@omnia/fx/ux";
|
3
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
4
|
+
isAddUserBlade?: boolean;
|
5
|
+
} & DefineEmit<"SaveUser", (users?: UserIdentity[]) => void> & DefineEmit<"SaveGroup", (groups?: GroupIdentity[]) => void>> & {
|
6
|
+
onSaveUser?: (...args: never) => any;
|
7
|
+
onSaveGroup?: (...args: never) => any;
|
8
|
+
} & {
|
9
|
+
"v-slots"?: {} & Omit<{
|
10
|
+
default?: import("vue").Slot;
|
11
|
+
}, never>;
|
12
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "isAddUserBlade" | "emit:SaveUser" | "emit:SaveGroup"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
13
|
+
export default _default;
|
package/internal-do-not-import-from-here/ux/admin/usermanagement/groups/GroupDetailBlade.d.ts
CHANGED
@@ -1,6 +1,14 @@
|
|
1
|
-
import { GroupIdentity } from "@omnia/fx-models";
|
1
|
+
import { FontAwesomeIcon, GroupIdentity } from "@omnia/fx-models";
|
2
2
|
import { DefineEmit, DefineSlot } from "@omnia/fx/ux";
|
3
3
|
import { VNodeChild } from "vue";
|
4
|
+
declare enum SelectedOwnershipTabs {
|
5
|
+
Members = 0,
|
6
|
+
Owners = 1
|
7
|
+
}
|
8
|
+
declare enum BladeType {
|
9
|
+
Members = 0,
|
10
|
+
Owners = 1
|
11
|
+
}
|
4
12
|
export interface GroupBladeState {
|
5
13
|
identity?: GroupIdentity;
|
6
14
|
businessProfileId?: string;
|
@@ -9,6 +17,12 @@ export interface GroupBladeState {
|
|
9
17
|
interface GroupDetailBladeApi {
|
10
18
|
movePrev: () => void;
|
11
19
|
}
|
20
|
+
export interface ItemMenuSetting {
|
21
|
+
id: SelectedOwnershipTabs;
|
22
|
+
title: string;
|
23
|
+
icon: FontAwesomeIcon;
|
24
|
+
bladeType: BladeType;
|
25
|
+
}
|
12
26
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
13
27
|
group?: GroupIdentity;
|
14
28
|
} & {
|
package/internal-do-not-import-from-here/ux/admin/usermanagement/groups/GroupItemDetailBlade.d.ts
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
import { GroupIdentity, UserIdentity } from "@omnia/fx-models";
|
2
|
+
import { DefineEmit } from "@omnia/fx/ux";
|
3
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
4
|
+
selectedGroup?: GroupIdentity;
|
5
|
+
} & {
|
6
|
+
selectedUser?: UserIdentity;
|
7
|
+
} & {
|
8
|
+
enableDetailsUser?: boolean;
|
9
|
+
} & {
|
10
|
+
isGroupOwner?: boolean;
|
11
|
+
} & DefineEmit<"RemoveUser", (user?: UserIdentity) => void> & DefineEmit<"RemoveGroup", (group?: GroupIdentity) => void> & DefineEmit<"OpenUserDetails", (user?: UserIdentity) => void>> & {
|
12
|
+
onRemoveUser?: (...args: never) => any;
|
13
|
+
onRemoveGroup?: (...args: never) => any;
|
14
|
+
onOpenUserDetails?: (...args: never) => any;
|
15
|
+
} & {
|
16
|
+
"v-slots"?: {} & Omit<{
|
17
|
+
default?: import("vue").Slot;
|
18
|
+
}, never>;
|
19
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "selectedGroup" | "selectedUser" | "enableDetailsUser" | "isGroupOwner" | "emit:RemoveUser" | "emit:RemoveGroup" | "emit:OpenUserDetails"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
20
|
+
export default _default;
|
@@ -0,0 +1,26 @@
|
|
1
|
+
import { DefineEmit } from "@omnia/fx/ux";
|
2
|
+
import { GroupIdentity, GroupMembers, ResolvedUserIdentity } from "@omnia/fx-models";
|
3
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
4
|
+
identity?: GroupIdentity;
|
5
|
+
} & {
|
6
|
+
businessProfileId?: string;
|
7
|
+
} & {
|
8
|
+
hasEditablePremission?: boolean;
|
9
|
+
} & {
|
10
|
+
omniaGroupBuiltIn?: boolean;
|
11
|
+
} & {
|
12
|
+
isEditableGroup?: boolean;
|
13
|
+
} & {
|
14
|
+
changedMembers?: GroupMembers;
|
15
|
+
} & {
|
16
|
+
saving?: boolean;
|
17
|
+
} & {
|
18
|
+
isOwnersTab?: boolean;
|
19
|
+
} & DefineEmit<"openUserDetailBlade", (user?: ResolvedUserIdentity) => void>> & {
|
20
|
+
onOpenUserDetailBlade?: (user?: ResolvedUserIdentity) => any;
|
21
|
+
} & {
|
22
|
+
"v-slots"?: {} & Omit<{
|
23
|
+
default?: import("vue").Slot;
|
24
|
+
}, never>;
|
25
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "identity" | "businessProfileId" | "saving" | "hasEditablePremission" | "omniaGroupBuiltIn" | "isEditableGroup" | "changedMembers" | "isOwnersTab" | "emit:openUserDetailBlade"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
26
|
+
export default _default;
|
@@ -15,6 +15,7 @@ export declare namespace UserManagementLocalization {
|
|
15
15
|
Contact: string;
|
16
16
|
Properties: string;
|
17
17
|
CreateUser: string;
|
18
|
+
AddUser: string;
|
18
19
|
EditUser: string;
|
19
20
|
UserDetails: string;
|
20
21
|
DeleteUser: string;
|
@@ -71,6 +72,7 @@ export declare namespace UserManagementLocalization {
|
|
71
72
|
EndDate: string;
|
72
73
|
};
|
73
74
|
PendingApproval: string;
|
75
|
+
RecycleBin: string;
|
74
76
|
ApproveAccountTitle: string;
|
75
77
|
ApprovalCommentTitle: string;
|
76
78
|
ErrorUsernameInUse: string;
|
@@ -123,6 +125,8 @@ export declare namespace UserManagementLocalization {
|
|
123
125
|
DeleteGroupsErrorMessageGroupsInUse: string;
|
124
126
|
DeleteGroupErrorMessageGroupInUse: string;
|
125
127
|
Members: string;
|
128
|
+
OwnerDetails: string;
|
129
|
+
MemberDetails: string;
|
126
130
|
AddExistingUser: string;
|
127
131
|
CreateAndAddNewUser: string;
|
128
132
|
RemoveUser: string;
|
@@ -139,6 +143,8 @@ export declare namespace UserManagementLocalization {
|
|
139
143
|
RestoreDeleteSelectedWithNonOmniaConfirmation: string;
|
140
144
|
ErrorDisplaynameInUse: string;
|
141
145
|
GroupInformation: string;
|
146
|
+
RemoveMember: string;
|
147
|
+
RemoveMemberConfirmation: string;
|
142
148
|
};
|
143
149
|
DynamicGroups: {
|
144
150
|
Title: string;
|
@@ -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;
|
@@ -0,0 +1,16 @@
|
|
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;
|
@@ -4,6 +4,7 @@ export declare const useButtonsEditorStore: () => {
|
|
4
4
|
blueprints: ButtonBlueprints;
|
5
5
|
editingButtonBlueprint: ButtonBlueprint;
|
6
6
|
editingButtonType: ButtonVariant;
|
7
|
+
editingButtonSize: "small" | "default" | "large";
|
7
8
|
editingButtonBlueprintType: ButtonBlueprintType;
|
8
9
|
strategy: string;
|
9
10
|
};
|
@@ -11,6 +12,7 @@ export declare const useButtonsEditorStore: () => {
|
|
11
12
|
blueprints: ButtonBlueprints;
|
12
13
|
editingButtonBlueprint: ButtonBlueprint;
|
13
14
|
editingButtonType: ButtonVariant;
|
15
|
+
editingButtonSize: "small" | "default" | "large";
|
14
16
|
editingButtonBlueprintType: ButtonBlueprintType;
|
15
17
|
strategy: string;
|
16
18
|
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
@@ -64,6 +64,7 @@ export declare const useComponentsEditorStore: () => {
|
|
64
64
|
blueprints: import("@omnia/fx-models").ButtonBlueprints;
|
65
65
|
editingButtonBlueprint: import("@omnia/fx-models").ButtonBlueprint;
|
66
66
|
editingButtonType: import("@omnia/fx-models").ButtonVariant;
|
67
|
+
editingButtonSize: "small" | "default" | "large";
|
67
68
|
editingButtonBlueprintType: import("@omnia/fx-models").ButtonBlueprintType;
|
68
69
|
strategy: string;
|
69
70
|
};
|
@@ -71,6 +72,7 @@ export declare const useComponentsEditorStore: () => {
|
|
71
72
|
blueprints: import("@omnia/fx-models").ButtonBlueprints;
|
72
73
|
editingButtonBlueprint: import("@omnia/fx-models").ButtonBlueprint;
|
73
74
|
editingButtonType: import("@omnia/fx-models").ButtonVariant;
|
75
|
+
editingButtonSize: "small" | "default" | "large";
|
74
76
|
editingButtonBlueprintType: import("@omnia/fx-models").ButtonBlueprintType;
|
75
77
|
strategy: string;
|
76
78
|
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
@@ -153,11 +155,10 @@ export declare const useComponentsEditorStore: () => {
|
|
153
155
|
blueprintsItems: () => IBlueprintItem[];
|
154
156
|
};
|
155
157
|
bladeId: {
|
156
|
-
addBlueprint: guid;
|
157
|
-
previewBlade: guid;
|
158
158
|
startBlade: guid;
|
159
159
|
editComponentBlade: guid;
|
160
160
|
buttonsBlade: guid;
|
161
|
+
buttonSelectSizeBlade: guid;
|
161
162
|
buttonsBladeEdit: guid;
|
162
163
|
iconsBladeEdit: guid;
|
163
164
|
iconsBlade: guid;
|
package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/store/ThemeEditorStore.d.ts
CHANGED
@@ -16,6 +16,9 @@ export declare const useThemeEditorStore: () => {
|
|
16
16
|
};
|
17
17
|
};
|
18
18
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
19
|
+
colorSchemas(): {
|
20
|
+
set: (colorSchema: ColorSchemaType, value: ColorSchema) => void;
|
21
|
+
};
|
19
22
|
addThemeDefinition(): void;
|
20
23
|
editThemeDefinition(definition: ITemplateRegistration<ResolvedThemeDefinition>): void;
|
21
24
|
copyDefinition(definition: ResolvedThemeDefinition): void;
|
@@ -71,6 +71,7 @@ export declare const useTypographyEditorStore: () => {
|
|
71
71
|
setSelected(type: TextStyleType, size: TextStyleSizes): void;
|
72
72
|
};
|
73
73
|
blueprints(): {
|
74
|
+
update(blueprints: TypographyBlueprint): void;
|
74
75
|
edit(blueprints: ITemplateRegistration<TypographyBlueprint>): void;
|
75
76
|
add(): void;
|
76
77
|
};
|
@@ -32,5 +32,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<JourneyBlade
|
|
32
32
|
} & Omit<{
|
33
33
|
default?: import("vue").Slot;
|
34
34
|
}, "filter" | "actions" | "actionsFooter">;
|
35
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "switch" | "icon" | "actions" | "variant" | "size" | "add" | "id" | "delete" | "disabled" | "eager" | "settings" | "loading" | "create" | "remove" | "slot:actions" | "ok" | "save" | "toned" | "subTitle" | "emit:click:cancel" | "emit:click:confirm" | "
|
35
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "switch" | "icon" | "actions" | "variant" | "size" | "add" | "id" | "delete" | "disabled" | "eager" | "settings" | "loading" | "create" | "remove" | "slot:actions" | "ok" | "save" | "toned" | "subTitle" | "emit:click:cancel" | "emit:click:confirm" | "searchable" | "slot:filter" | "emit:search" | "emit:closeFilter" | "getApi" | "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:changeFilter" | "emit:hidden" | "emit:click:manageList"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
36
36
|
export default _default;
|
@@ -8,13 +8,13 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
8
8
|
searchable?: boolean | Ref<boolean, boolean>;
|
9
9
|
} & DefineSlot<"filter", () => VNodeChild> & DefineEmit<"search", (searchText: string) => true> & DefineEmit<"applyFilter", () => true> & DefineEmit<"closeFilter", () => true>> & {
|
10
10
|
onSearch?: (searchText: string) => any;
|
11
|
-
onCloseFilter?: () => any;
|
12
11
|
onApplyFilter?: () => any;
|
12
|
+
onCloseFilter?: () => any;
|
13
13
|
} & {
|
14
14
|
"v-slots"?: {
|
15
15
|
filter?: () => VNodeChild;
|
16
16
|
} & Omit<{
|
17
17
|
default?: import("vue").Slot;
|
18
18
|
}, "filter">;
|
19
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "
|
19
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "heightDialog" | "countFieldHasValue" | "searchable" | "slot:filter" | "emit:search" | "emit:applyFilter" | "emit:closeFilter"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
20
20
|
export default _default;
|
@@ -1,8 +1,8 @@
|
|
1
|
-
import { DefineEmit, DefineProp, DefinePropTheming, DefineSlot, DefineVModel, JourneySelectItem, JourneySelectPropertyMapping, useJourneySelectStore } from "@omnia/fx/ux";
|
1
|
+
import { DefineEmit, DefineProp, DefinePropTheming, DefineSlot, DefineVModel, JourneySelectBladeElement, JourneySelectItem, JourneySelectPropertyMapping, useJourneySelectStore } from "@omnia/fx/ux";
|
2
2
|
import { VNodeChild } from "vue";
|
3
3
|
import { ActionDefinition } from "@omnia/fx-models";
|
4
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<TItem>, 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 of the selection blade"> & DefineProp<"itemSettingable", (item: TItem) => boolean, false, null, "Item has settings or not."> & DefineProp<"itemDeletable", (item: TItem) => boolean, false, null, "Item can be deleted or not."> & DefineSlot<"selectionItemRender", (item: JourneySelectItem<any>, index: number, isSelected: boolean) => VNodeChild> & DefineSlot<"selectionRender", () => VNodeChild> & DefineSlot<"selectedItemRenderer", (item: JourneySelectItem<any>, index: number) => VNodeChild> & DefineSlot<"settingsRender", (item: JourneySelectItem<any>, index: number) => VNodeChild> & DefineSlot<"settingsRenderV2", (item: {
|
5
|
-
SettingsRenderer:
|
5
|
+
SettingsRenderer: JourneySelectBladeElement;
|
6
6
|
item: JourneySelectItem<any>;
|
7
7
|
index: number;
|
8
8
|
}) => 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>;
|
@@ -22,7 +22,7 @@ declare const _default: <TItem extends unknown = any>(props: import("@omnia/fx/u
|
|
22
22
|
selectedItemRenderer?: (item: JourneySelectItem<any>, index: number) => VNodeChild;
|
23
23
|
settingsRender?: (item: JourneySelectItem<any>, index: number) => VNodeChild;
|
24
24
|
settingsRenderV2?: (item: {
|
25
|
-
SettingsRenderer:
|
25
|
+
SettingsRenderer: JourneySelectBladeElement;
|
26
26
|
item: JourneySelectItem<any>;
|
27
27
|
index: number;
|
28
28
|
}) => VNodeChild;
|
@@ -30,5 +30,5 @@ declare const _default: <TItem extends unknown = any>(props: import("@omnia/fx/u
|
|
30
30
|
} & Omit<{
|
31
31
|
default?: import("vue").Slot;
|
32
32
|
}, "actions" | "selectionItemRender" | "selectionRender" | "selectedItemRenderer" | "settingsRender" | "settingsRenderV2">;
|
33
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "actions" | "list" | "multiple" | "colorSchemaType" | "modelValue" | "items" | "readonly" | "slot:actions" | "colors" | "v-model" | "toned" | "emit:update:modelValue" | "
|
33
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "actions" | "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" | "labelAdd" | "propertyValueMapping" | "returnSelectionAsObject" | "titleAdd" | "titleEdit" | "disableSearch" | "disableSave" | "confirmDelete" | "noAddConfirm" | "bladelessAdd" | "bladeless" | "itemSettingable" | "itemDeletable" | "slot:selectionItemRender" | "slot:selectionRender" | "slot:selectedItemRenderer" | "slot:settingsRender" | "slot:settingsRenderV2" | "emit:showAdd" | "emit:showEdit" | "emit:click:update"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
34
34
|
export default _default;
|
@@ -1,6 +1,8 @@
|
|
1
1
|
import { ActionDefinition, guid, MenuState } from "@omnia/fx-models";
|
2
2
|
import { VNodeChild } from "vue";
|
3
|
-
import { JourneySelectItem, JourneySelectPropertyMapping } from "@omnia/fx/ux";
|
3
|
+
import { ConstructComponentProps, JourneySelectItem, JourneySelectPropertyMapping, VNodeEvents } from "@omnia/fx/ux";
|
4
|
+
import { type JourneyBladeProps } from "../JourneyBlade";
|
5
|
+
export type JourneySelectBladeElement = (props: Omit<ConstructComponentProps<JourneyBladeProps>, "id" | "getApi" | "manageList"> & VNodeEvents) => any;
|
4
6
|
export declare const useJourneySelectStore: () => {
|
5
7
|
readonly settings: {
|
6
8
|
multiple: boolean;
|
@@ -18,7 +20,7 @@ export declare const useJourneySelectStore: () => {
|
|
18
20
|
readonly slots: {
|
19
21
|
settingsRender: (item: any, index: number) => VNodeChild;
|
20
22
|
settingsRenderV2: (item: {
|
21
|
-
SettingsRenderer:
|
23
|
+
SettingsRenderer: JourneySelectBladeElement;
|
22
24
|
item: JourneySelectItem<any>;
|
23
25
|
index: number;
|
24
26
|
}) => VNodeChild;
|
@@ -146,7 +148,7 @@ export declare const useJourneySelectStore: () => {
|
|
146
148
|
init(items: Array<any>, externalModel: Array<any> | any, renderingSlots: {
|
147
149
|
settingsRender: (item: any, index: number) => VNodeChild;
|
148
150
|
settingsRenderV2: (item: {
|
149
|
-
SettingsRenderer:
|
151
|
+
SettingsRenderer: JourneySelectBladeElement;
|
150
152
|
item: JourneySelectItem<any>;
|
151
153
|
index: number;
|
152
154
|
}) => VNodeChild;
|
@@ -137,7 +137,6 @@ export declare const useJourneyStore: () => {
|
|
137
137
|
addBlade(newBlade: BladeInstance): void;
|
138
138
|
removeBlade(blade: BladeInstance): void;
|
139
139
|
getBladeSize(blade: BladeInstance): number;
|
140
|
-
setBladeStates(activeIndex: number): void;
|
141
140
|
moveNext(fromBladeId: guid): void;
|
142
141
|
movePrev(fromBladeId: guid): void;
|
143
142
|
travelTo(fromBladeId: guid, toBladeId: guid): void;
|
@@ -11,6 +11,8 @@ declare const _default: <TType extends MediaProviderTypes>(props: ExtractProps<{
|
|
11
11
|
searchable?: boolean;
|
12
12
|
} & {
|
13
13
|
welcomeMessage?: boolean;
|
14
|
+
} & {
|
15
|
+
enableNoResultText?: boolean;
|
14
16
|
} & {
|
15
17
|
infiniteScroll?: boolean;
|
16
18
|
} & DefineSlot<"search", () => VNodeChild, "Slot for custom search field."> & DefineSlot<"provider", () => VNodeChild, "The handle for providers including the logic for searching, selecting media, scaling image."> & DefineSlot<"filter", () => VNodeChild, "Slot for custom filter field.">> & (({
|
@@ -21,6 +23,8 @@ declare const _default: <TType extends MediaProviderTypes>(props: ExtractProps<{
|
|
21
23
|
searchable?: boolean;
|
22
24
|
} & {
|
23
25
|
welcomeMessage?: boolean;
|
26
|
+
} & {
|
27
|
+
enableNoResultText?: boolean;
|
24
28
|
} & {
|
25
29
|
infiniteScroll?: boolean;
|
26
30
|
} & DefineSlot<"search", () => VNodeChild, "Slot for custom search field."> & DefineSlot<"provider", () => VNodeChild, "The handle for providers including the logic for searching, selecting media, scaling image."> & DefineSlot<"filter", () => VNodeChild, "Slot for custom filter field."> extends infer T ? { [K in keyof T as K extends `emit:${infer N}` ? N : never]: ({
|
@@ -31,6 +35,8 @@ declare const _default: <TType extends MediaProviderTypes>(props: ExtractProps<{
|
|
31
35
|
searchable?: boolean;
|
32
36
|
} & {
|
33
37
|
welcomeMessage?: boolean;
|
38
|
+
} & {
|
39
|
+
enableNoResultText?: boolean;
|
34
40
|
} & {
|
35
41
|
infiniteScroll?: boolean;
|
36
42
|
} & DefineSlot<"search", () => VNodeChild, "Slot for custom search field."> & DefineSlot<"provider", () => VNodeChild, "The handle for providers including the logic for searching, selecting media, scaling image."> & DefineSlot<"filter", () => VNodeChild, "Slot for custom filter field.">)[K]; } : never) extends infer T_1 ? T_1 extends ({
|
@@ -41,6 +47,8 @@ declare const _default: <TType extends MediaProviderTypes>(props: ExtractProps<{
|
|
41
47
|
searchable?: boolean;
|
42
48
|
} & {
|
43
49
|
welcomeMessage?: boolean;
|
50
|
+
} & {
|
51
|
+
enableNoResultText?: boolean;
|
44
52
|
} & {
|
45
53
|
infiniteScroll?: boolean;
|
46
54
|
} & DefineSlot<"search", () => VNodeChild, "Slot for custom search field."> & DefineSlot<"provider", () => VNodeChild, "The handle for providers including the logic for searching, selecting media, scaling image."> & DefineSlot<"filter", () => VNodeChild, "Slot for custom filter field."> extends infer T_2 ? { [K in keyof T_2 as K extends `emit:${infer N}` ? N : never]: ({
|
@@ -51,6 +59,8 @@ declare const _default: <TType extends MediaProviderTypes>(props: ExtractProps<{
|
|
51
59
|
searchable?: boolean;
|
52
60
|
} & {
|
53
61
|
welcomeMessage?: boolean;
|
62
|
+
} & {
|
63
|
+
enableNoResultText?: boolean;
|
54
64
|
} & {
|
55
65
|
infiniteScroll?: boolean;
|
56
66
|
} & DefineSlot<"search", () => VNodeChild, "Slot for custom search field."> & DefineSlot<"provider", () => VNodeChild, "The handle for providers including the logic for searching, selecting media, scaling image."> & DefineSlot<"filter", () => VNodeChild, "Slot for custom filter field.">)[K]; } : never) ? T_1 extends string[] ? { [K_1 in `on${Capitalize<T_1[number]>}`]?: (...args: any[]) => any; } : T_1 extends import("vue").ObjectEmitsOptions ? { [K_2 in `on${Capitalize<string & keyof T_1>}`]?: K_2 extends `on${infer C}` ? T_1[Uncapitalize<C>] extends null ? (...args: any[]) => any : (...args: T_1[Uncapitalize<C>] extends (...args: infer P) => any ? P : never) => any : never; } : {} : never : never) & {
|
@@ -62,6 +72,8 @@ declare const _default: <TType extends MediaProviderTypes>(props: ExtractProps<{
|
|
62
72
|
searchable?: boolean;
|
63
73
|
} & {
|
64
74
|
welcomeMessage?: boolean;
|
75
|
+
} & {
|
76
|
+
enableNoResultText?: boolean;
|
65
77
|
} & {
|
66
78
|
infiniteScroll?: boolean;
|
67
79
|
} & DefineSlot<"search", () => VNodeChild, "Slot for custom search field."> & DefineSlot<"provider", () => VNodeChild, "The handle for providers including the logic for searching, selecting media, scaling image."> & DefineSlot<"filter", () => VNodeChild, "Slot for custom filter field."> extends infer T_3 ? { [K_3 in keyof T_3 as K_3 extends `slot:${infer N_1}` ? N_1 : never]: ({
|
@@ -72,6 +84,8 @@ declare const _default: <TType extends MediaProviderTypes>(props: ExtractProps<{
|
|
72
84
|
searchable?: boolean;
|
73
85
|
} & {
|
74
86
|
welcomeMessage?: boolean;
|
87
|
+
} & {
|
88
|
+
enableNoResultText?: boolean;
|
75
89
|
} & {
|
76
90
|
infiniteScroll?: boolean;
|
77
91
|
} & DefineSlot<"search", () => VNodeChild, "Slot for custom search field."> & DefineSlot<"provider", () => VNodeChild, "The handle for providers including the logic for searching, selecting media, scaling image."> & DefineSlot<"filter", () => VNodeChild, "Slot for custom filter field.">)[K_3]; } : never) & Omit<{
|
@@ -84,6 +98,8 @@ declare const _default: <TType extends MediaProviderTypes>(props: ExtractProps<{
|
|
84
98
|
searchable?: boolean;
|
85
99
|
} & {
|
86
100
|
welcomeMessage?: boolean;
|
101
|
+
} & {
|
102
|
+
enableNoResultText?: boolean;
|
87
103
|
} & {
|
88
104
|
infiniteScroll?: boolean;
|
89
105
|
} & DefineSlot<"search", () => VNodeChild, "Slot for custom search field."> & DefineSlot<"provider", () => VNodeChild, "The handle for providers including the logic for searching, selecting media, scaling image."> & DefineSlot<"filter", () => VNodeChild, "Slot for custom filter field."> extends infer T_4 ? { [K_3 in keyof T_4 as K_3 extends `slot:${infer N_1}` ? N_1 : never]: ({
|
@@ -94,6 +110,8 @@ declare const _default: <TType extends MediaProviderTypes>(props: ExtractProps<{
|
|
94
110
|
searchable?: boolean;
|
95
111
|
} & {
|
96
112
|
welcomeMessage?: boolean;
|
113
|
+
} & {
|
114
|
+
enableNoResultText?: boolean;
|
97
115
|
} & {
|
98
116
|
infiniteScroll?: boolean;
|
99
117
|
} & DefineSlot<"search", () => VNodeChild, "Slot for custom search field."> & DefineSlot<"provider", () => VNodeChild, "The handle for providers including the logic for searching, selecting media, scaling image."> & DefineSlot<"filter", () => VNodeChild, "Slot for custom filter field.">)[K_3]; } : never)>;
|
@@ -105,6 +123,8 @@ declare const _default: <TType extends MediaProviderTypes>(props: ExtractProps<{
|
|
105
123
|
searchable?: boolean;
|
106
124
|
} & {
|
107
125
|
welcomeMessage?: boolean;
|
126
|
+
} & {
|
127
|
+
enableNoResultText?: boolean;
|
108
128
|
} & {
|
109
129
|
infiniteScroll?: boolean;
|
110
130
|
} & DefineSlot<"search", () => VNodeChild, "Slot for custom search field."> & DefineSlot<"provider", () => VNodeChild, "The handle for providers including the logic for searching, selecting media, scaling image."> & DefineSlot<"filter", () => VNodeChild, "Slot for custom filter field."> extends infer T_5 ? { [K_4 in keyof T_5 as K_4 extends "ref" ? "ref" : never]: import("vue").Ref<({
|
@@ -115,6 +135,8 @@ declare const _default: <TType extends MediaProviderTypes>(props: ExtractProps<{
|
|
115
135
|
searchable?: boolean;
|
116
136
|
} & {
|
117
137
|
welcomeMessage?: boolean;
|
138
|
+
} & {
|
139
|
+
enableNoResultText?: boolean;
|
118
140
|
} & {
|
119
141
|
infiniteScroll?: boolean;
|
120
142
|
} & DefineSlot<"search", () => VNodeChild, "Slot for custom search field."> & DefineSlot<"provider", () => VNodeChild, "The handle for providers including the logic for searching, selecting media, scaling image."> & DefineSlot<"filter", () => VNodeChild, "Slot for custom filter field.">)[K_4], ({
|
@@ -125,6 +147,8 @@ declare const _default: <TType extends MediaProviderTypes>(props: ExtractProps<{
|
|
125
147
|
searchable?: boolean;
|
126
148
|
} & {
|
127
149
|
welcomeMessage?: boolean;
|
150
|
+
} & {
|
151
|
+
enableNoResultText?: boolean;
|
128
152
|
} & {
|
129
153
|
infiniteScroll?: boolean;
|
130
154
|
} & DefineSlot<"search", () => VNodeChild, "Slot for custom search field."> & DefineSlot<"provider", () => VNodeChild, "The handle for providers including the logic for searching, selecting media, scaling image."> & DefineSlot<"filter", () => VNodeChild, "Slot for custom filter field.">)[K_4]> | ((ref: ({
|
@@ -135,9 +159,11 @@ declare const _default: <TType extends MediaProviderTypes>(props: ExtractProps<{
|
|
135
159
|
searchable?: boolean;
|
136
160
|
} & {
|
137
161
|
welcomeMessage?: boolean;
|
162
|
+
} & {
|
163
|
+
enableNoResultText?: boolean;
|
138
164
|
} & {
|
139
165
|
infiniteScroll?: boolean;
|
140
|
-
} & DefineSlot<"search", () => VNodeChild, "Slot for custom search field."> & DefineSlot<"provider", () => VNodeChild, "The handle for providers including the logic for searching, selecting media, scaling image."> & DefineSlot<"filter", () => VNodeChild, "Slot for custom filter field.">)[K_4]) => void); } : never) & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "type" | "searchable" | "slot:filter" | "slot:search" | "welcomeMessage" | "infiniteScroll" | "slot:provider" | keyof (TType extends "image" ? {
|
166
|
+
} & DefineSlot<"search", () => VNodeChild, "Slot for custom search field."> & DefineSlot<"provider", () => VNodeChild, "The handle for providers including the logic for searching, selecting media, scaling image."> & DefineSlot<"filter", () => VNodeChild, "Slot for custom filter field.">)[K_4]) => void); } : never) & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "type" | "searchable" | "slot:filter" | "slot:search" | "enableNoResultText" | "welcomeMessage" | "infiniteScroll" | "slot:provider" | keyof (TType extends "image" ? {
|
141
167
|
handler: IMediaPickerProviderHandler;
|
142
168
|
} : {})> & import("@omnia/fx/ux").VNodeEvents) => any;
|
143
169
|
export default _default;
|
@@ -16,5 +16,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<PickerProps>
|
|
16
16
|
} & Omit<{
|
17
17
|
default?: import("vue").Slot;
|
18
18
|
}, "actions" | "activator" | "selectedItemRenderer">;
|
19
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "text" | "label" | "blueprint" | "grid" | "maxHeight" | "actions" | "variant" | "class" | "disabled" | "modelValue" | "slot:actions" | "v-model" | "toned" | "placeholder" | "emit:update:modelValue" | "slot:activator" | "
|
19
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "text" | "label" | "blueprint" | "grid" | "maxHeight" | "actions" | "variant" | "class" | "disabled" | "modelValue" | "slot:actions" | "v-model" | "toned" | "placeholder" | "emit:update:modelValue" | "slot:activator" | "searchable" | "emit:search" | "getApi" | "emit:click:clear" | "clearable" | "visibleOnContentClick" | "isLoading" | "slot:selectedItemRenderer" | "hasSelection"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
20
20
|
export default _default;
|
@@ -8,7 +8,7 @@ export declare const PickerStyles: {
|
|
8
8
|
iconExpanded: string;
|
9
9
|
selectorBackground: string;
|
10
10
|
selectorWrapper: (colors: ReturnType<typeof useColorSchemaStore>) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
11
|
-
overlay: (dark: boolean) => string;
|
11
|
+
overlay: (dark: boolean, disableOverlay: boolean) => string;
|
12
12
|
componentWrapper: Readonly<import("@omnia/fx/ux").StylexValue>;
|
13
13
|
componentVariantWrapper: (colors: ReturnType<typeof useColorSchemaStore>, variant: OSelectTypes, hasValue: boolean, hasLabel: boolean) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
14
14
|
};
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { DefineEmit, DefineProp, DefinePropTheming, DefineSlot } from "@omnia/fx/ux";
|
2
2
|
import { VNodeChild } from "vue";
|
3
|
-
type PickerSelectionProps = DefinePropTheming & DefineProp<"text", string, false, null, "Sets the text of the component."> & DefineProp<"grid", boolean, false, null, "Sets the component to disabled"> & DefineProp<"disabled", boolean, false, null, "Sets the component to disabled"> & DefineProp<"clearable", boolean, false, null, "If a clear icon can be shown"> & DefineProp<"searchable", boolean, false, null, "A search box is displayed with the text value"> & DefineProp<"isLoading", boolean, false, null, "Displays a loading indicator"> & DefineProp<"hasSelection", boolean | any, false, null, "If the component has selection or not. If true it will render the selection slot and show clear icon"> & DefineProp<"placeholder", string, false, null, "Sets the placeholder of the component. The placeholder is shown if there is no selection and displays select if empty"> & DefineProp<"toned", boolean, false, null, "Sets the component to disabled"> & DefineEmit<"click:clear", () => void> & DefineEmit<"show:selection", () => void> & DefineEmit<"search", (text: string) => void> & DefineSlot<"placeholderRenderer", () => VNodeChild> & DefineSlot<"selectedItemRenderer", () => VNodeChild>;
|
3
|
+
type PickerSelectionProps = DefinePropTheming & DefineProp<"text", string, false, null, "Sets the text of the component."> & DefineProp<"grid", boolean, false, null, "Sets the component to disabled"> & DefineProp<"disabled", boolean, false, null, "Sets the component to disabled"> & DefineProp<"disableOverlay", boolean, false, null, "Doesn't show a default overlay to mark the picker"> & DefineProp<"clearable", boolean, false, null, "If a clear icon can be shown"> & DefineProp<"searchable", boolean, false, null, "A search box is displayed with the text value"> & DefineProp<"isLoading", boolean, false, null, "Displays a loading indicator"> & DefineProp<"hasSelection", boolean | any, false, null, "If the component has selection or not. If true it will render the selection slot and show clear icon"> & DefineProp<"placeholder", string, false, null, "Sets the placeholder of the component. The placeholder is shown if there is no selection and displays select if empty"> & DefineProp<"toned", boolean, false, null, "Sets the component to disabled"> & DefineEmit<"click:clear", () => void> & DefineEmit<"show:selection", () => void> & DefineEmit<"search", (text: string) => void> & DefineSlot<"placeholderRenderer", () => VNodeChild> & DefineSlot<"selectedItemRenderer", () => VNodeChild>;
|
4
4
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<PickerSelectionProps> & {
|
5
5
|
"onClick:clear"?: () => any;
|
6
6
|
onSearch?: (text: string) => any;
|
@@ -12,5 +12,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<PickerSelect
|
|
12
12
|
} & Omit<{
|
13
13
|
default?: import("vue").Slot;
|
14
14
|
}, "selectedItemRenderer" | "placeholderRenderer">;
|
15
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "text" | "grid" | "disabled" | "colorSchemaType" | "colors" | "toned" | "placeholder" | "searchable" | "emit:search" | "emit:click:clear" | "clearable" | "isLoading" | "slot:selectedItemRenderer" | "hasSelection" | "emit:show:selection" | "slot:placeholderRenderer"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
15
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "text" | "grid" | "disabled" | "colorSchemaType" | "colors" | "toned" | "placeholder" | "searchable" | "emit:search" | "emit:click:clear" | "clearable" | "isLoading" | "slot:selectedItemRenderer" | "hasSelection" | "disableOverlay" | "emit:show:selection" | "slot:placeholderRenderer"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
16
16
|
export default _default;
|
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.409-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.409-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.8.
|
29
|
+
"vuetify": "3.8.1",
|
30
30
|
"tslib": "2.6.2",
|
31
31
|
"typescript": "5.8.2",
|
32
32
|
"@tiptap/vue-3": "2.1.13",
|