@omnia/fx 8.0.487-dev → 8.0.488-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/ux/oxide/breadcrumbs/Breadcrumbs.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/selection/Selection.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/speeddial/SpeedDial.d.ts +10 -2
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.stylex.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/social/Like.d.ts +38 -181
- package/internal-do-not-import-from-here/ux/social/PeopleTagging.d.ts +19 -110
- package/internal-do-not-import-from-here/ux/social/Reactions.d.ts +19 -127
- package/internal-do-not-import-from-here/ux/social/templates/LikeListingTemplate.d.ts +1 -1
- package/package.json +2 -2
@@ -2,7 +2,7 @@ import { IIcon, LinkItemProps } from "@omnia/fx-models";
|
|
2
2
|
import { DefineProp, DefinePropTheming, DefineSlot } from "@omnia/fx/ux";
|
3
3
|
import { VNodeChild } from "vue";
|
4
4
|
declare const emptyArray: any[];
|
5
|
-
type BreadcrumbsProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"items", (string | LinkItemProps)[], false, typeof emptyArray, "An array of strings or objects used for automatically generating children components."> & DefineProp<"icon", IIcon, false, null, "Prepend a specific icon"> & DefineSlot<"divider", () => VNodeChild> & DefineSlot<"title", ({ item }: {
|
5
|
+
type BreadcrumbsProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"items", (string | LinkItemProps)[], false, typeof emptyArray, "An array of strings or objects used for automatically generating children components."> & DefineProp<"icon", IIcon, false, null, "Prepend a specific icon"> & DefineSlot<"divider", () => VNodeChild> & DefineProp<"toned", boolean, false, false> & DefineSlot<"title", ({ item }: {
|
6
6
|
item: LinkItemProps;
|
7
7
|
}) => VNodeChild>;
|
8
8
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<BreadcrumbsProps> & {} & {
|
@@ -14,5 +14,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<BreadcrumbsP
|
|
14
14
|
} & Omit<{
|
15
15
|
default?: import("vue").Slot;
|
16
16
|
}, "title" | "divider">;
|
17
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "colorSchemaType" | "class" | "items" | "colors" | "slot:title" | "slot:divider"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
17
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "colorSchemaType" | "class" | "items" | "colors" | "toned" | "slot:title" | "slot:divider"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
18
18
|
export default _default;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { DefineEmit, DefineProp, DefinePropTheming, DefineSlot, ItemValueType } from "@omnia/fx/ux";
|
2
2
|
import { VNodeChild } from "vue";
|
3
3
|
import { OMultiSelectionStyles } from "@omnia/fx-models";
|
4
|
-
type SelectionVariants = "remove" | "settings" | "readonly";
|
4
|
+
type SelectionVariants = "remove" | "settings" | "readonly" | "delete";
|
5
5
|
type BaseProps<TItem> = DefinePropTheming & DefineProp<"items", TItem[], false, null, "TItem must be an array of objects or array of strings. When using objects, will look for a title, value and disabled keys. This can be changed using the item-title, item-value and item-disabled props."> & DefineProp<"variant", SelectionVariants, false, null, "The component variants"> & DefineProp<"toned", boolean, false, null, "Sets the component to toned"> & DefineProp<"sorting", boolean, false, null, "Sets the component to sorting mode"> & DefineProp<"itemValue", ItemValueType<TItem>, false, null, "Property on supplied items that contains its value."> & DefineProp<"itemTitle", ItemValueType<TItem>, false, null, "Property on supplied items that contains its title."> & DefineProp<"itemSubtitle", string, false, null, "Property on supplied items that contains its value."> & DefineProp<"itemIcon", string, false, null, "Property on supplied items that contains its value."> & DefineProp<"enableAdd", boolean, false, null, "If add button is shown"> & DefineProp<"labelAdd", string, null, null, "The label for the add button of the component"> & DefineProp<"selectionStyle", OMultiSelectionStyles, false, null, "The style of multi select"> & 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<"item", (item: TItem, index: Number) => VNodeChild> & DefineEmit<"selectItem", (index: any) => true> & DefineEmit<"removeItem", (index: any) => true> & DefineEmit<"sort:update", (items: TItem[]) => true> & DefineEmit<"addItem", () => true>;
|
6
6
|
declare const _default: <TItem extends unknown>(props: import("@omnia/fx/ux").ExtractProps<BaseProps<TItem>> & {
|
7
7
|
onRemoveItem?: (index: any) => any;
|
@@ -1,12 +1,20 @@
|
|
1
1
|
import { OPosition } from "@omnia/fx-models";
|
2
2
|
import { DefineProp, DefinePropTheming, DefineSlot, DefineVModel } from "@omnia/fx/ux";
|
3
3
|
import { VNodeChild } from "vue";
|
4
|
-
type SpeedDialProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineVModel<"", boolean, false, false, false, "The v-model of the component"> & DefineProp<"openOnClick", boolean, false, null, "Activate the component when the activator is clicked."> & DefineProp<"openOnFocus", boolean, false, null, "Activate the component when the activator is focused."> & DefineProp<"openOnHover", boolean, false, false, "Opens speed-dial on hover."> & DefineProp<"zIndex", number | string, false, 2000, "The z-index used for the component."> & DefineProp<"persistent", boolean, false, false, "Clicking outside of the element or pressing esc key will not deactivate it."> & DefineProp<"location", OPosition, false, "top center", "Specifies the component's location. Can combine by using a space separated string."> & DefineSlot<"activator", (
|
4
|
+
type SpeedDialProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineVModel<"", boolean, false, false, false, "The v-model of the component"> & DefineProp<"openOnClick", boolean, false, null, "Activate the component when the activator is clicked."> & DefineProp<"openOnFocus", boolean, false, null, "Activate the component when the activator is focused."> & DefineProp<"openOnHover", boolean, false, false, "Opens speed-dial on hover."> & DefineProp<"zIndex", number | string, false, 2000, "The z-index used for the component."> & DefineProp<"persistent", boolean, false, false, "Clicking outside of the element or pressing esc key will not deactivate it."> & DefineProp<"location", OPosition, false, "top center", "Specifies the component's location. Can combine by using a space separated string."> & DefineSlot<"activator", (params: {
|
5
|
+
isActive: boolean;
|
6
|
+
props: Record<string, any>;
|
7
|
+
targetRef: HTMLElement;
|
8
|
+
}) => VNodeChild>;
|
5
9
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<SpeedDialProps> & {
|
6
10
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
7
11
|
} & {
|
8
12
|
"v-slots"?: {
|
9
|
-
activator?: (
|
13
|
+
activator?: (params: {
|
14
|
+
isActive: boolean;
|
15
|
+
props: Record<string, any>;
|
16
|
+
targetRef: HTMLElement;
|
17
|
+
}) => VNodeChild;
|
10
18
|
} & Omit<{
|
11
19
|
default?: import("vue").Slot;
|
12
20
|
}, "activator">;
|
@@ -4,4 +4,5 @@ export declare const treeViewStylex: {
|
|
4
4
|
expandedAnimation: import("../../Styles.stylex").StylexValue;
|
5
5
|
expandedIcon: import("../../Styles.stylex").StylexValue;
|
6
6
|
collapsedIcon: import("../../Styles.stylex").StylexValue;
|
7
|
+
titleNavigationStyle: Readonly<import("../../Styles.stylex").StylexValue>;
|
7
8
|
};
|
@@ -1,185 +1,42 @@
|
|
1
1
|
import { ReactionType, ISocialReaction } from "../../models";
|
2
2
|
import { type ICommentLikeService } from "../../stores";
|
3
3
|
import "./Like.css";
|
4
|
-
declare const _default: {
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
likeListingTemplate: {
|
43
|
-
type: import("vue").PropType<string>;
|
44
|
-
required: false;
|
45
|
-
};
|
46
|
-
commendId: {
|
47
|
-
type: import("vue").PropType<string>;
|
48
|
-
};
|
49
|
-
topicId: {
|
50
|
-
type: import("vue").PropType<string>;
|
51
|
-
};
|
52
|
-
}>>, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
53
|
-
P: {};
|
54
|
-
B: {};
|
55
|
-
D: {};
|
56
|
-
C: {};
|
57
|
-
M: {};
|
58
|
-
Defaults: {};
|
59
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
60
|
-
commentLikeService: {
|
61
|
-
type: import("vue").PropType<ICommentLikeService>;
|
62
|
-
};
|
63
|
-
isSummaryMode: {
|
64
|
-
type: import("vue").PropType<boolean>;
|
65
|
-
required: false;
|
66
|
-
};
|
67
|
-
isCompactMode: {
|
68
|
-
type: import("vue").PropType<boolean>;
|
69
|
-
required: false;
|
70
|
-
};
|
71
|
-
styles: {
|
72
|
-
type: import("vue").PropType<{
|
73
|
-
underlineWhenHover?: import("typestyle/lib/types").NestedCSSProperties;
|
74
|
-
buttonOutline?: import("typestyle/lib/types").NestedCSSProperties;
|
75
|
-
personWrapper?: import("typestyle/lib/types").NestedCSSProperties;
|
76
|
-
buttonPosition?: import("typestyle/lib/types").NestedCSSProperties;
|
77
|
-
likesToShow?: import("typestyle/lib/types").NestedCSSProperties;
|
78
|
-
socialReactionIconWrapper?: (reactionType: ReactionType, isCompactMode: boolean) => import("typestyle/lib/types").NestedCSSProperties;
|
79
|
-
socialReactionIcon?: (isCompactMode: boolean) => import("typestyle/lib/types").NestedCSSProperties;
|
80
|
-
socialReactionContainer?: (isCompactMode: boolean) => import("typestyle/lib/types").NestedCSSProperties;
|
81
|
-
socialReactionSummary?: (isCompactMode: boolean) => import("typestyle/lib/types").NestedCSSProperties;
|
82
|
-
socialReactionMenu?: import("typestyle/lib/types").NestedCSSProperties;
|
83
|
-
replyAndLikeActionLink?: import("typestyle/lib/types").NestedCSSProperties;
|
84
|
-
}>;
|
85
|
-
};
|
86
|
-
likes: {
|
87
|
-
type: import("vue").PropType<ISocialReaction[]>;
|
88
|
-
required: false;
|
89
|
-
};
|
90
|
-
extendComponents: {
|
91
|
-
type: import("vue").PropType<{
|
92
|
-
elem: string;
|
93
|
-
dynamicInput: any;
|
94
|
-
}[]>;
|
95
|
-
};
|
96
|
-
likeListingTemplate: {
|
97
|
-
type: import("vue").PropType<string>;
|
98
|
-
required: false;
|
99
|
-
};
|
100
|
-
commendId: {
|
101
|
-
type: import("vue").PropType<string>;
|
102
|
-
};
|
103
|
-
topicId: {
|
104
|
-
type: import("vue").PropType<string>;
|
105
|
-
};
|
106
|
-
}>>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {}>;
|
107
|
-
__isFragment?: never;
|
108
|
-
__isTeleport?: never;
|
109
|
-
__isSuspense?: never;
|
110
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
111
|
-
commentLikeService: {
|
112
|
-
type: import("vue").PropType<ICommentLikeService>;
|
113
|
-
};
|
114
|
-
isSummaryMode: {
|
115
|
-
type: import("vue").PropType<boolean>;
|
116
|
-
required: false;
|
117
|
-
};
|
118
|
-
isCompactMode: {
|
119
|
-
type: import("vue").PropType<boolean>;
|
120
|
-
required: false;
|
121
|
-
};
|
122
|
-
styles: {
|
123
|
-
type: import("vue").PropType<{
|
124
|
-
underlineWhenHover?: import("typestyle/lib/types").NestedCSSProperties;
|
125
|
-
buttonOutline?: import("typestyle/lib/types").NestedCSSProperties;
|
126
|
-
personWrapper?: import("typestyle/lib/types").NestedCSSProperties;
|
127
|
-
buttonPosition?: import("typestyle/lib/types").NestedCSSProperties;
|
128
|
-
likesToShow?: import("typestyle/lib/types").NestedCSSProperties;
|
129
|
-
socialReactionIconWrapper?: (reactionType: ReactionType, isCompactMode: boolean) => import("typestyle/lib/types").NestedCSSProperties;
|
130
|
-
socialReactionIcon?: (isCompactMode: boolean) => import("typestyle/lib/types").NestedCSSProperties;
|
131
|
-
socialReactionContainer?: (isCompactMode: boolean) => import("typestyle/lib/types").NestedCSSProperties;
|
132
|
-
socialReactionSummary?: (isCompactMode: boolean) => import("typestyle/lib/types").NestedCSSProperties;
|
133
|
-
socialReactionMenu?: import("typestyle/lib/types").NestedCSSProperties;
|
134
|
-
replyAndLikeActionLink?: import("typestyle/lib/types").NestedCSSProperties;
|
135
|
-
}>;
|
136
|
-
};
|
137
|
-
likes: {
|
138
|
-
type: import("vue").PropType<ISocialReaction[]>;
|
139
|
-
required: false;
|
140
|
-
};
|
141
|
-
extendComponents: {
|
142
|
-
type: import("vue").PropType<{
|
143
|
-
elem: string;
|
144
|
-
dynamicInput: any;
|
145
|
-
}[]>;
|
146
|
-
};
|
147
|
-
likeListingTemplate: {
|
148
|
-
type: import("vue").PropType<string>;
|
149
|
-
required: false;
|
150
|
-
};
|
151
|
-
commendId: {
|
152
|
-
type: import("vue").PropType<string>;
|
153
|
-
};
|
154
|
-
topicId: {
|
155
|
-
type: import("vue").PropType<string>;
|
156
|
-
};
|
157
|
-
}>>, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
158
|
-
propsDefinition: Omit<Readonly<{} & {
|
159
|
-
styles?: {
|
160
|
-
underlineWhenHover?: import("typestyle/lib/types").NestedCSSProperties;
|
161
|
-
buttonOutline?: import("typestyle/lib/types").NestedCSSProperties;
|
162
|
-
personWrapper?: import("typestyle/lib/types").NestedCSSProperties;
|
163
|
-
buttonPosition?: import("typestyle/lib/types").NestedCSSProperties;
|
164
|
-
likesToShow?: import("typestyle/lib/types").NestedCSSProperties;
|
165
|
-
socialReactionIconWrapper?: (reactionType: ReactionType, isCompactMode: boolean) => import("typestyle/lib/types").NestedCSSProperties;
|
166
|
-
socialReactionIcon?: (isCompactMode: boolean) => import("typestyle/lib/types").NestedCSSProperties;
|
167
|
-
socialReactionContainer?: (isCompactMode: boolean) => import("typestyle/lib/types").NestedCSSProperties;
|
168
|
-
socialReactionSummary?: (isCompactMode: boolean) => import("typestyle/lib/types").NestedCSSProperties;
|
169
|
-
socialReactionMenu?: import("typestyle/lib/types").NestedCSSProperties;
|
170
|
-
replyAndLikeActionLink?: import("typestyle/lib/types").NestedCSSProperties;
|
171
|
-
};
|
172
|
-
topicId?: string;
|
173
|
-
commendId?: string;
|
174
|
-
likeListingTemplate?: string;
|
175
|
-
extendComponents?: {
|
176
|
-
elem: string;
|
177
|
-
dynamicInput: any;
|
178
|
-
}[];
|
179
|
-
likes?: ISocialReaction[];
|
180
|
-
isCompactMode?: boolean;
|
181
|
-
isSummaryMode?: boolean;
|
182
|
-
commentLikeService?: ICommentLikeService;
|
183
|
-
}>, never>;
|
184
|
-
};
|
4
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
5
|
+
topicId?: string;
|
6
|
+
} & {
|
7
|
+
commendId?: string;
|
8
|
+
} & {
|
9
|
+
likeListingTemplate?: string;
|
10
|
+
} & {
|
11
|
+
extendComponents?: {
|
12
|
+
elem: string;
|
13
|
+
dynamicInput: any;
|
14
|
+
}[];
|
15
|
+
} & {
|
16
|
+
likes?: ISocialReaction[];
|
17
|
+
} & {
|
18
|
+
styles?: {
|
19
|
+
underlineWhenHover?: import("typestyle/lib/types").NestedCSSProperties;
|
20
|
+
buttonOutline?: import("typestyle/lib/types").NestedCSSProperties;
|
21
|
+
personWrapper?: import("typestyle/lib/types").NestedCSSProperties;
|
22
|
+
buttonPosition?: import("typestyle/lib/types").NestedCSSProperties;
|
23
|
+
likesToShow?: import("typestyle/lib/types").NestedCSSProperties;
|
24
|
+
socialReactionIconWrapper?: (reactionType: ReactionType, isCompactMode: boolean) => import("typestyle/lib/types").NestedCSSProperties;
|
25
|
+
socialReactionIcon?: (isCompactMode: boolean) => import("typestyle/lib/types").NestedCSSProperties;
|
26
|
+
socialReactionContainer?: (isCompactMode: boolean) => import("typestyle/lib/types").NestedCSSProperties;
|
27
|
+
socialReactionSummary?: (isCompactMode: boolean) => import("typestyle/lib/types").NestedCSSProperties;
|
28
|
+
socialReactionMenu?: import("typestyle/lib/types").NestedCSSProperties;
|
29
|
+
replyAndLikeActionLink?: import("typestyle/lib/types").NestedCSSProperties;
|
30
|
+
};
|
31
|
+
} & {
|
32
|
+
isCompactMode?: boolean;
|
33
|
+
} & {
|
34
|
+
isSummaryMode?: boolean;
|
35
|
+
} & {
|
36
|
+
commentLikeService?: ICommentLikeService;
|
37
|
+
}> & {} & {
|
38
|
+
"v-slots"?: {} & Omit<{
|
39
|
+
default?: import("vue").Slot;
|
40
|
+
}, never>;
|
41
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "styles" | "topicId" | "commendId" | "likeListingTemplate" | "extendComponents" | "likes" | "isCompactMode" | "isSummaryMode" | "commentLikeService"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
185
42
|
export default _default;
|
@@ -1,116 +1,25 @@
|
|
1
|
+
import { DefineEmit } from "@omnia/fx/ux";
|
1
2
|
import { OmitProperties, ResolvedUserIdentity } from "../../models";
|
2
3
|
import { IRichTextEditor } from "../richtexteditor";
|
3
|
-
declare const _default: {
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
};
|
17
|
-
disabled: {
|
18
|
-
type: import("vue").PropType<boolean>;
|
19
|
-
};
|
20
|
-
content: {
|
21
|
-
type: import("vue").PropType<string>;
|
22
|
-
};
|
23
|
-
}>> & {
|
24
|
-
onDoc$?: (description?: string) => any;
|
25
|
-
onContentChanged?: (content: string) => any;
|
26
|
-
onRegisterFocus?: (callback: () => void) => any;
|
27
|
-
onMentionChanged?: (mentions: ResolvedUserIdentity[]) => any;
|
28
|
-
}, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
29
|
-
registerFocus: (callback: () => void) => void;
|
30
|
-
doc$(description?: string): {
|
31
|
-
registerFocus: (callback: () => void) => void;
|
32
|
-
};
|
33
|
-
mentionChanged: (mentions: Array<ResolvedUserIdentity>) => void;
|
34
|
-
contentChanged: (content: string) => void;
|
35
|
-
}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
36
|
-
P: {};
|
37
|
-
B: {};
|
38
|
-
D: {};
|
39
|
-
C: {};
|
40
|
-
M: {};
|
41
|
-
Defaults: {};
|
42
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
43
|
-
autoFocus: {
|
44
|
-
type: import("vue").PropType<boolean>;
|
45
|
-
};
|
46
|
-
enableMention: {
|
47
|
-
type: import("vue").PropType<boolean>;
|
48
|
-
};
|
49
|
-
richTextSettings: {
|
50
|
-
type: import("vue").PropType<OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">>;
|
51
|
-
};
|
52
|
-
resetContetnRte: {
|
53
|
-
type: import("vue").PropType<boolean>;
|
54
|
-
};
|
55
|
-
disabled: {
|
56
|
-
type: import("vue").PropType<boolean>;
|
57
|
-
};
|
58
|
-
content: {
|
59
|
-
type: import("vue").PropType<string>;
|
60
|
-
};
|
61
|
-
}>> & {
|
62
|
-
onDoc$?: (description?: string) => any;
|
63
|
-
onContentChanged?: (content: string) => any;
|
64
|
-
onRegisterFocus?: (callback: () => void) => any;
|
65
|
-
onMentionChanged?: (mentions: ResolvedUserIdentity[]) => any;
|
66
|
-
}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {}>;
|
67
|
-
__isFragment?: never;
|
68
|
-
__isTeleport?: never;
|
69
|
-
__isSuspense?: never;
|
70
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
71
|
-
autoFocus: {
|
72
|
-
type: import("vue").PropType<boolean>;
|
73
|
-
};
|
74
|
-
enableMention: {
|
75
|
-
type: import("vue").PropType<boolean>;
|
76
|
-
};
|
77
|
-
richTextSettings: {
|
78
|
-
type: import("vue").PropType<OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">>;
|
79
|
-
};
|
80
|
-
resetContetnRte: {
|
81
|
-
type: import("vue").PropType<boolean>;
|
82
|
-
};
|
83
|
-
disabled: {
|
84
|
-
type: import("vue").PropType<boolean>;
|
85
|
-
};
|
86
|
-
content: {
|
87
|
-
type: import("vue").PropType<string>;
|
88
|
-
};
|
89
|
-
}>> & {
|
90
|
-
onDoc$?: (description?: string) => any;
|
4
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
5
|
+
content?: string;
|
6
|
+
} & {
|
7
|
+
disabled?: boolean;
|
8
|
+
} & {
|
9
|
+
resetContetnRte?: boolean;
|
10
|
+
} & {
|
11
|
+
richTextSettings?: OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">;
|
12
|
+
} & {
|
13
|
+
enableMention?: boolean;
|
14
|
+
} & {
|
15
|
+
autoFocus?: boolean;
|
16
|
+
} & DefineEmit<"contentChanged", (content: string) => void> & DefineEmit<"mentionChanged", (mentions: Array<ResolvedUserIdentity>) => void> & DefineEmit<"registerFocus", (callback: () => void) => void>> & {
|
91
17
|
onContentChanged?: (content: string) => any;
|
92
18
|
onRegisterFocus?: (callback: () => void) => any;
|
93
19
|
onMentionChanged?: (mentions: ResolvedUserIdentity[]) => any;
|
94
|
-
}
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
mentionChanged: (mentions: Array<ResolvedUserIdentity>) => void;
|
100
|
-
contentChanged: (content: string) => void;
|
101
|
-
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
102
|
-
propsDefinition: Omit<Readonly<{} & {
|
103
|
-
content?: string;
|
104
|
-
disabled?: boolean;
|
105
|
-
richTextSettings?: OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">;
|
106
|
-
autoFocus?: boolean;
|
107
|
-
resetContetnRte?: boolean;
|
108
|
-
enableMention?: boolean;
|
109
|
-
}>, "onDoc$" | "onContentChanged" | "onRegisterFocus" | "onMentionChanged"> & {
|
110
|
-
onDoc$?: (description?: string) => any;
|
111
|
-
onContentChanged?: (content: string) => any;
|
112
|
-
onRegisterFocus?: (callback: () => void) => any;
|
113
|
-
onMentionChanged?: (mentions: ResolvedUserIdentity[]) => any;
|
114
|
-
};
|
115
|
-
};
|
20
|
+
} & {
|
21
|
+
"v-slots"?: {} & Omit<{
|
22
|
+
default?: import("vue").Slot;
|
23
|
+
}, never>;
|
24
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "content" | "disabled" | "emit:contentChanged" | "richTextSettings" | "autoFocus" | "resetContetnRte" | "enableMention" | "emit:mentionChanged" | "emit:registerFocus"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
116
25
|
export default _default;
|
@@ -1,134 +1,26 @@
|
|
1
|
+
import { DefineEmit, DefineSlot } from "@omnia/fx/ux";
|
1
2
|
import { IUserReaction } from "@omnia/fx-models";
|
2
3
|
type ReactionVariants = "picker" | "viewer" | "default";
|
3
|
-
declare const _default: {
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
variant: {
|
15
|
-
type: import("vue").PropType<ReactionVariants>;
|
16
|
-
required: false;
|
17
|
-
};
|
18
|
-
modelValue: {
|
19
|
-
type: import("vue").PropType<Required<IUserReaction>[]>;
|
20
|
-
required: false;
|
21
|
-
};
|
22
|
-
"onUpdate:modelValue": {
|
23
|
-
type: import("vue").PropType<(value: Required<IUserReaction>[]) => any | void>;
|
24
|
-
};
|
25
|
-
"v-model": {
|
26
|
-
type: import("vue").PropType<Required<IUserReaction>[]>;
|
27
|
-
required: false;
|
28
|
-
};
|
29
|
-
}>> & {
|
30
|
-
"onUpdate:modelValue"?: (value: Required<IUserReaction>[]) => any;
|
31
|
-
"onReaction:added"?: (value: Required<IUserReaction>) => any;
|
32
|
-
"onReaction:removed"?: (value: Required<IUserReaction>) => any;
|
33
|
-
"onReaction:selected"?: (value: Required<IUserReaction>) => any;
|
34
|
-
}, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
35
|
-
"update:modelValue": (value: Required<IUserReaction>[]) => true;
|
36
|
-
"reaction:added": (value: Required<IUserReaction>) => true;
|
37
|
-
"reaction:removed": (value: Required<IUserReaction>) => true;
|
38
|
-
"reaction:selected": (value: Required<IUserReaction>) => true;
|
39
|
-
}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
40
|
-
P: {};
|
41
|
-
B: {};
|
42
|
-
D: {};
|
43
|
-
C: {};
|
44
|
-
M: {};
|
45
|
-
Defaults: {};
|
46
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
47
|
-
"v-slots": import("vue").Prop<{
|
48
|
-
default?: import("../DefineVueTypings").Slot;
|
49
|
-
} & {
|
50
|
-
activator: () => JSX.Element;
|
51
|
-
}>;
|
52
|
-
stacked: {
|
53
|
-
type: import("vue").PropType<boolean>;
|
54
|
-
required: false;
|
55
|
-
};
|
56
|
-
variant: {
|
57
|
-
type: import("vue").PropType<ReactionVariants>;
|
58
|
-
required: false;
|
59
|
-
};
|
60
|
-
modelValue: {
|
61
|
-
type: import("vue").PropType<Required<IUserReaction>[]>;
|
62
|
-
required: false;
|
63
|
-
};
|
64
|
-
"onUpdate:modelValue": {
|
65
|
-
type: import("vue").PropType<(value: Required<IUserReaction>[]) => any | void>;
|
66
|
-
};
|
67
|
-
"v-model": {
|
68
|
-
type: import("vue").PropType<Required<IUserReaction>[]>;
|
69
|
-
required: false;
|
70
|
-
};
|
71
|
-
}>> & {
|
72
|
-
"onUpdate:modelValue"?: (value: Required<IUserReaction>[]) => any;
|
73
|
-
"onReaction:added"?: (value: Required<IUserReaction>) => any;
|
74
|
-
"onReaction:removed"?: (value: Required<IUserReaction>) => any;
|
75
|
-
"onReaction:selected"?: (value: Required<IUserReaction>) => any;
|
76
|
-
}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {}>;
|
77
|
-
__isFragment?: never;
|
78
|
-
__isTeleport?: never;
|
79
|
-
__isSuspense?: never;
|
80
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
81
|
-
"v-slots": import("vue").Prop<{
|
82
|
-
default?: import("../DefineVueTypings").Slot;
|
83
|
-
} & {
|
84
|
-
activator: () => JSX.Element;
|
85
|
-
}>;
|
86
|
-
stacked: {
|
87
|
-
type: import("vue").PropType<boolean>;
|
88
|
-
required: false;
|
89
|
-
};
|
90
|
-
variant: {
|
91
|
-
type: import("vue").PropType<ReactionVariants>;
|
92
|
-
required: false;
|
93
|
-
};
|
94
|
-
modelValue: {
|
95
|
-
type: import("vue").PropType<Required<IUserReaction>[]>;
|
96
|
-
required: false;
|
97
|
-
};
|
98
|
-
"onUpdate:modelValue": {
|
99
|
-
type: import("vue").PropType<(value: Required<IUserReaction>[]) => any | void>;
|
100
|
-
};
|
101
|
-
"v-model": {
|
102
|
-
type: import("vue").PropType<Required<IUserReaction>[]>;
|
103
|
-
required: false;
|
104
|
-
};
|
105
|
-
}>> & {
|
4
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
5
|
+
"emit:update:modelValue": (value: Required<IUserReaction>[]) => void;
|
6
|
+
} & {
|
7
|
+
"v-model"?: Required<IUserReaction>[];
|
8
|
+
} & {
|
9
|
+
modelValue?: Required<IUserReaction>[];
|
10
|
+
} & {
|
11
|
+
variant?: ReactionVariants;
|
12
|
+
} & {
|
13
|
+
stacked?: boolean;
|
14
|
+
} & DefineSlot<"activator", () => JSX.Element> & DefineEmit<"reaction:added", (value: Required<IUserReaction>) => true> & DefineEmit<"reaction:removed", (value: Required<IUserReaction>) => true> & DefineEmit<"reaction:selected", (value: Required<IUserReaction>) => true>> & {
|
106
15
|
"onUpdate:modelValue"?: (value: Required<IUserReaction>[]) => any;
|
107
16
|
"onReaction:added"?: (value: Required<IUserReaction>) => any;
|
108
17
|
"onReaction:removed"?: (value: Required<IUserReaction>) => any;
|
109
18
|
"onReaction:selected"?: (value: Required<IUserReaction>) => any;
|
110
|
-
}
|
111
|
-
"
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
},
|
116
|
-
|
117
|
-
variant?: ReactionVariants;
|
118
|
-
modelValue?: Required<IUserReaction>[];
|
119
|
-
"v-slots"?: {
|
120
|
-
default?: import("../DefineVueTypings").Slot;
|
121
|
-
} & {
|
122
|
-
activator: () => JSX.Element;
|
123
|
-
};
|
124
|
-
stacked?: boolean;
|
125
|
-
"onUpdate:modelValue"?: (value: Required<IUserReaction>[]) => any | void;
|
126
|
-
"v-model"?: Required<IUserReaction>[];
|
127
|
-
}>, "onUpdate:modelValue" | "onReaction:added" | "onReaction:removed" | "onReaction:selected"> & {
|
128
|
-
"onUpdate:modelValue"?: (value: Required<IUserReaction>[]) => any;
|
129
|
-
"onReaction:added"?: (value: Required<IUserReaction>) => any;
|
130
|
-
"onReaction:removed"?: (value: Required<IUserReaction>) => any;
|
131
|
-
"onReaction:selected"?: (value: Required<IUserReaction>) => any;
|
132
|
-
};
|
133
|
-
};
|
19
|
+
} & {
|
20
|
+
"v-slots"?: {
|
21
|
+
activator?: () => JSX.Element;
|
22
|
+
} & Omit<{
|
23
|
+
default?: import("vue").Slot;
|
24
|
+
}, "activator">;
|
25
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "variant" | "modelValue" | "stacked" | "emit:update:modelValue" | "v-model" | "slot:activator" | "emit:reaction:added" | "emit:reaction:removed" | "emit:reaction:selected"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
134
26
|
export default _default;
|
@@ -8,5 +8,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<LikeListingT
|
|
8
8
|
"v-slots"?: {} & Omit<{
|
9
9
|
default?: import("vue").Slot;
|
10
10
|
}, never>;
|
11
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "likes" | "
|
11
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "likes" | "socialReactionStylings" | "currentSocialReaction" | "emit:close"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
12
12
|
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.488-dev",
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
],
|
21
21
|
"author": "Omnia Digital Workplace AB",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.488-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|