@omnia/fx 8.0.38-dev → 8.0.39-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.
Files changed (42) hide show
  1. package/internal-do-not-import-from-here/shared/models/hub/activities/ActivityFeed.d.ts +4 -1
  2. package/internal-do-not-import-from-here/shared/models/hub/activities/IdentityActivity.d.ts +4 -0
  3. package/internal-do-not-import-from-here/shared/services/ActivityService.d.ts +2 -2
  4. package/internal-do-not-import-from-here/ux/appprovisioning/approuteinput/AppRouteInput.d.ts +263 -48
  5. package/internal-do-not-import-from-here/ux/appprovisioning/approuteinput/IAppRouteInput.d.ts +0 -12
  6. package/internal-do-not-import-from-here/ux/hub/feed/HubFeed.css.d.ts +4 -0
  7. package/internal-do-not-import-from-here/ux/hub/feed/HubFeed.d.ts +1 -1
  8. package/internal-do-not-import-from-here/ux/hub/feed/components/CategoryItem.d.ts +11 -11
  9. package/internal-do-not-import-from-here/ux/hub/feed/components/FeedItem.css.d.ts +1 -0
  10. package/internal-do-not-import-from-here/ux/hub/feed/components/Header.d.ts +32 -1
  11. package/internal-do-not-import-from-here/ux/hub/feed/components/MeMenu.d.ts +46 -0
  12. package/internal-do-not-import-from-here/ux/hub/feed/components/{MeSenderItem.d.ts → MenuItem.d.ts} +43 -6
  13. package/internal-do-not-import-from-here/ux/hub/feed/components/Social.css.d.ts +0 -5
  14. package/internal-do-not-import-from-here/ux/hub/feed/stores/ActivityFeedStore.d.ts +22 -7
  15. package/internal-do-not-import-from-here/ux/hub/feed/stores/HubFeedChromeStore.d.ts +14 -6
  16. package/internal-do-not-import-from-here/ux/hub/feed/tabs/FeedTab.css.d.ts +2 -2
  17. package/internal-do-not-import-from-here/ux/hub/feed/tabs/FindTab.d.ts +46 -0
  18. package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyStore.d.ts +1 -1
  19. package/internal-do-not-import-from-here/ux/models/UrlInputStyles.d.ts +1 -15
  20. package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.d.ts +28 -0
  21. package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +18 -0
  22. package/internal-do-not-import-from-here/ux/oxide/flex/Flex.d.ts +18 -0
  23. package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +28 -0
  24. package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +18 -0
  25. package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +32 -0
  26. package/internal-do-not-import-from-here/ux/social/Reactions.css.d.ts +31 -0
  27. package/internal-do-not-import-from-here/ux/social/Reactions.d.ts +192 -0
  28. package/internal-do-not-import-from-here/ux/social/docs/ExampleComponents.d.ts +1 -0
  29. package/internal-do-not-import-from-here/ux/social/docs/SampleComponent.d.ts +46 -0
  30. package/internal-do-not-import-from-here/ux/social/docs/index.d.ts +1 -0
  31. package/internal-do-not-import-from-here/ux/urlinput/UrlInputLegacy.d.ts +245 -44
  32. package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +7 -0
  33. package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/VelcronContentEditor.css.d.ts +1 -0
  34. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +9 -0
  35. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronConstants.d.ts +1 -0
  36. package/internal-do-not-import-from-here/ux/velcron/docs/components/Video.d.ts +1 -0
  37. package/internal-do-not-import-from-here/ux/velcron/docs/components/index.d.ts +1 -0
  38. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Video.d.ts +65 -0
  39. package/internal-do-not-import-from-here/wctypings.d.ts +21 -0
  40. package/package.json +2 -2
  41. package/internal-do-not-import-from-here/ux/urlinput/IUrlInput.d.ts +0 -42
  42. /package/internal-do-not-import-from-here/ux/hub/feed/components/{MeSendersList.d.ts → FindMenu.d.ts} +0 -0
@@ -1,46 +1,247 @@
1
- import { IWebComponentInstance } from "@omnia/fx";
2
- import { IValidator, VueComponentBase } from "@omnia/fx/ux";
1
+ import { IValidator } from "@omnia/fx/ux";
3
2
  import { UrlPropertyValue } from "../../models";
4
- import { MSTeamsStore } from "../../stores";
5
- import { IUrlInput } from "./IUrlInput";
6
- import { UrlInputLocalization } from "./loc/localize";
7
3
  import "./UrlInputStyles.css";
8
- export declare class UrlInput extends VueComponentBase implements IWebComponentInstance, IUrlInput {
9
- valueBind: UrlPropertyValue;
10
- onValueChanged: (value: UrlPropertyValue) => void;
11
- onBlur: () => void;
12
- label?: string;
13
- filled?: boolean;
14
- light?: boolean;
15
- dark?: boolean;
16
- disabled?: boolean;
17
- requiredWithValidator: IValidator;
18
- defaultUrlResolving?: boolean;
19
- enabledInputMSTeamsUrl?: boolean;
20
- urlInputLoc: UrlInputLocalization.locInterface;
21
- msTeamsStore: MSTeamsStore;
22
- internalModel: UrlPropertyValue;
23
- internalDisabled: boolean;
24
- private editingPropertyName;
25
- private isListView;
26
- private isFocused;
27
- private urlInputStyles;
28
- private urlValidationFlags;
29
- private isValidateTrigged;
30
- private propertyNames;
31
- onValueBindChanged(): void;
32
- mounted(): void;
33
- created(): void;
34
- init(): void;
35
- onUrlChanged(val: string): void;
36
- private onBlurEvent;
37
- validateMSTeamsUrl(): boolean;
38
- validateDefaultUrl(): boolean;
39
- validate(): Promise<boolean>;
40
- clearValidation(): void;
41
- onClickUrlCategoryIcon(selectedProperty: string): void;
42
- renderLabel(): JSX.Element;
43
- renderTabView(): JSX.Element;
44
- renderListView(): JSX.Element;
45
- render(): JSX.Element;
46
- }
4
+ declare const _default: {
5
+ new (...args: any[]): {
6
+ $: import("vue").ComponentInternalInstance;
7
+ $data: {};
8
+ $props: Partial<{}> & Omit<{
9
+ readonly label?: string;
10
+ readonly disabled?: boolean;
11
+ "onUpdate:modelValue"?: ((value: UrlPropertyValue) => any) & ((value: UrlPropertyValue) => any);
12
+ readonly "v-model"?: UrlPropertyValue;
13
+ readonly modelValue?: UrlPropertyValue;
14
+ readonly requiredWithValidator?: IValidator;
15
+ readonly "required-with-validator"?: IValidator;
16
+ readonly defaultUrlResolving?: boolean;
17
+ readonly enabledInputMSTeamsUrl?: boolean;
18
+ onBlur?: () => any;
19
+ onDoc$?: (description?: string) => any;
20
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
21
+ enabledInputMSTeamsUrl: {
22
+ type: import("vue").PropType<boolean>;
23
+ required: false;
24
+ };
25
+ defaultUrlResolving: {
26
+ type: import("vue").PropType<boolean>;
27
+ required: false;
28
+ };
29
+ disabled: {
30
+ type: import("vue").PropType<boolean>;
31
+ } & {
32
+ type: import("vue").PropType<boolean>;
33
+ };
34
+ "required-with-validator": {
35
+ type: import("vue").PropType<IValidator>;
36
+ };
37
+ requiredWithValidator: {
38
+ type: import("vue").PropType<IValidator>;
39
+ };
40
+ label: {
41
+ type: import("vue").PropType<string>;
42
+ } & {
43
+ type: import("vue").PropType<string>;
44
+ };
45
+ "onUpdate:modelValue": {
46
+ type: import("vue").PropType<(value: UrlPropertyValue) => any>;
47
+ };
48
+ "v-model": {
49
+ type: import("vue").PropType<UrlPropertyValue>;
50
+ required: false;
51
+ };
52
+ modelValue: {
53
+ type: import("vue").PropType<UrlPropertyValue>;
54
+ required: false;
55
+ };
56
+ }>> & {
57
+ "onUpdate:modelValue"?: (value: UrlPropertyValue) => any;
58
+ onBlur?: () => any;
59
+ onDoc$?: (description?: string) => any;
60
+ }, never>;
61
+ $attrs: {
62
+ [x: string]: unknown;
63
+ };
64
+ $refs: {
65
+ [x: string]: unknown;
66
+ };
67
+ $slots: Readonly<{
68
+ [name: string]: import("vue").Slot<any>;
69
+ }>;
70
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
71
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
72
+ $emit: ((event: "blur") => void) & ((event: "doc$", description?: string) => void) & ((event: "update:modelValue", value: UrlPropertyValue) => void);
73
+ $el: any;
74
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
75
+ enabledInputMSTeamsUrl: {
76
+ type: import("vue").PropType<boolean>;
77
+ required: false;
78
+ };
79
+ defaultUrlResolving: {
80
+ type: import("vue").PropType<boolean>;
81
+ required: false;
82
+ };
83
+ disabled: {
84
+ type: import("vue").PropType<boolean>;
85
+ } & {
86
+ type: import("vue").PropType<boolean>;
87
+ };
88
+ "required-with-validator": {
89
+ type: import("vue").PropType<IValidator>;
90
+ };
91
+ requiredWithValidator: {
92
+ type: import("vue").PropType<IValidator>;
93
+ };
94
+ label: {
95
+ type: import("vue").PropType<string>;
96
+ } & {
97
+ type: import("vue").PropType<string>;
98
+ };
99
+ "onUpdate:modelValue": {
100
+ type: import("vue").PropType<(value: UrlPropertyValue) => any>;
101
+ };
102
+ "v-model": {
103
+ type: import("vue").PropType<UrlPropertyValue>;
104
+ required: false;
105
+ };
106
+ modelValue: {
107
+ type: import("vue").PropType<UrlPropertyValue>;
108
+ required: false;
109
+ };
110
+ }>> & {
111
+ "onUpdate:modelValue"?: (value: UrlPropertyValue) => any;
112
+ onBlur?: () => any;
113
+ onDoc$?: (description?: string) => any;
114
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
115
+ blur: () => void;
116
+ doc$(description?: string): {
117
+ blur: () => void;
118
+ };
119
+ "update:modelValue": (value: UrlPropertyValue) => true;
120
+ }, string, {}, {}, string, {}> & {
121
+ beforeCreate?: (() => void) | (() => void)[];
122
+ created?: (() => void) | (() => void)[];
123
+ beforeMount?: (() => void) | (() => void)[];
124
+ mounted?: (() => void) | (() => void)[];
125
+ beforeUpdate?: (() => void) | (() => void)[];
126
+ updated?: (() => void) | (() => void)[];
127
+ activated?: (() => void) | (() => void)[];
128
+ deactivated?: (() => void) | (() => void)[];
129
+ beforeDestroy?: (() => void) | (() => void)[];
130
+ beforeUnmount?: (() => void) | (() => void)[];
131
+ destroyed?: (() => void) | (() => void)[];
132
+ unmounted?: (() => void) | (() => void)[];
133
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
134
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
135
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
136
+ };
137
+ $forceUpdate: () => void;
138
+ $nextTick: typeof import("vue").nextTick;
139
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
140
+ } & Readonly<import("vue").ExtractPropTypes<{
141
+ enabledInputMSTeamsUrl: {
142
+ type: import("vue").PropType<boolean>;
143
+ required: false;
144
+ };
145
+ defaultUrlResolving: {
146
+ type: import("vue").PropType<boolean>;
147
+ required: false;
148
+ };
149
+ disabled: {
150
+ type: import("vue").PropType<boolean>;
151
+ } & {
152
+ type: import("vue").PropType<boolean>;
153
+ };
154
+ "required-with-validator": {
155
+ type: import("vue").PropType<IValidator>;
156
+ };
157
+ requiredWithValidator: {
158
+ type: import("vue").PropType<IValidator>;
159
+ };
160
+ label: {
161
+ type: import("vue").PropType<string>;
162
+ } & {
163
+ type: import("vue").PropType<string>;
164
+ };
165
+ "onUpdate:modelValue": {
166
+ type: import("vue").PropType<(value: UrlPropertyValue) => any>;
167
+ };
168
+ "v-model": {
169
+ type: import("vue").PropType<UrlPropertyValue>;
170
+ required: false;
171
+ };
172
+ modelValue: {
173
+ type: import("vue").PropType<UrlPropertyValue>;
174
+ required: false;
175
+ };
176
+ }>> & {
177
+ "onUpdate:modelValue"?: (value: UrlPropertyValue) => any;
178
+ onBlur?: () => any;
179
+ onDoc$?: (description?: string) => any;
180
+ } & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
181
+ __isFragment?: never;
182
+ __isTeleport?: never;
183
+ __isSuspense?: never;
184
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
185
+ enabledInputMSTeamsUrl: {
186
+ type: import("vue").PropType<boolean>;
187
+ required: false;
188
+ };
189
+ defaultUrlResolving: {
190
+ type: import("vue").PropType<boolean>;
191
+ required: false;
192
+ };
193
+ disabled: {
194
+ type: import("vue").PropType<boolean>;
195
+ } & {
196
+ type: import("vue").PropType<boolean>;
197
+ };
198
+ "required-with-validator": {
199
+ type: import("vue").PropType<IValidator>;
200
+ };
201
+ requiredWithValidator: {
202
+ type: import("vue").PropType<IValidator>;
203
+ };
204
+ label: {
205
+ type: import("vue").PropType<string>;
206
+ } & {
207
+ type: import("vue").PropType<string>;
208
+ };
209
+ "onUpdate:modelValue": {
210
+ type: import("vue").PropType<(value: UrlPropertyValue) => any>;
211
+ };
212
+ "v-model": {
213
+ type: import("vue").PropType<UrlPropertyValue>;
214
+ required: false;
215
+ };
216
+ modelValue: {
217
+ type: import("vue").PropType<UrlPropertyValue>;
218
+ required: false;
219
+ };
220
+ }>> & {
221
+ "onUpdate:modelValue"?: (value: UrlPropertyValue) => any;
222
+ onBlur?: () => any;
223
+ onDoc$?: (description?: string) => any;
224
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
225
+ blur: () => void;
226
+ doc$(description?: string): {
227
+ blur: () => void;
228
+ };
229
+ "update:modelValue": (value: UrlPropertyValue) => true;
230
+ }, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
231
+ propsDefinition: Omit<Readonly<{} & {
232
+ label?: string;
233
+ disabled?: boolean;
234
+ "onUpdate:modelValue"?: (value: UrlPropertyValue) => any;
235
+ "v-model"?: UrlPropertyValue;
236
+ modelValue?: UrlPropertyValue;
237
+ requiredWithValidator?: IValidator;
238
+ "required-with-validator"?: IValidator;
239
+ defaultUrlResolving?: boolean;
240
+ enabledInputMSTeamsUrl?: boolean;
241
+ }>, "onUpdate:modelValue" | "onBlur" | "onDoc$"> & {
242
+ "onUpdate:modelValue"?: (value: UrlPropertyValue) => any;
243
+ onBlur?: () => any;
244
+ onDoc$?: (description?: string) => any;
245
+ };
246
+ };
247
+ export default _default;
@@ -13,6 +13,7 @@ export declare function useIcons(): {
13
13
  approve: FontAwesomeIcon;
14
14
  adjust: FontAwesomeIcon;
15
15
  archive: FontAwesomeIcon;
16
+ award: FontAwesomeIcon;
16
17
  back: FontAwesomeIcon;
17
18
  blueprint: FontAwesomeIcon;
18
19
  businessProfile: FontAwesomeIcon;
@@ -43,8 +44,10 @@ export declare function useIcons(): {
43
44
  info: FontAwesomeIcon;
44
45
  lock: FontAwesomeIcon;
45
46
  link: FontAwesomeIcon;
47
+ location: FontAwesomeIcon;
46
48
  lockOpen: FontAwesomeIcon;
47
49
  lockEdit: FontAwesomeIcon;
50
+ mail: FontAwesomeIcon;
48
51
  more: MaterialIcon;
49
52
  move: FontAwesomeIcon;
50
53
  moveUp: FontAwesomeIcon;
@@ -53,9 +56,11 @@ export declare function useIcons(): {
53
56
  menu: FontAwesomeIcon;
54
57
  media: FontAwesomeIcon;
55
58
  navigate: FontAwesomeIcon;
59
+ organization: FontAwesomeIcon;
56
60
  preview: FontAwesomeIcon;
57
61
  permissions: FontAwesomeIcon;
58
62
  praise: FontAwesomeIcon;
63
+ phone: FontAwesomeIcon;
59
64
  tag: FontAwesomeIcon;
60
65
  tags: FontAwesomeIcon;
61
66
  targeting: FontAwesomeIcon;
@@ -70,6 +75,7 @@ export declare function useIcons(): {
70
75
  settings: FontAwesomeIcon;
71
76
  sort: FontAwesomeIcon;
72
77
  styles: FontAwesomeIcon;
78
+ siteMap: FontAwesomeIcon;
73
79
  spacing: FontAwesomeIcon;
74
80
  template: FontAwesomeIcon;
75
81
  typography: FontAwesomeIcon;
@@ -83,6 +89,7 @@ export declare function useIcons(): {
83
89
  question: FontAwesomeIcon;
84
90
  upload: FontAwesomeIcon;
85
91
  user: FontAwesomeIcon;
92
+ global: FontAwesomeIcon;
86
93
  };
87
94
  system: {
88
95
  settings: {
@@ -1,5 +1,6 @@
1
1
  import { useColorSchemaStore } from "@omnia/fx/ux";
2
2
  export declare const VelcronContentEditorStyles: {
3
3
  itemWrapper: (colors: ReturnType<typeof useColorSchemaStore>) => string;
4
+ socialToolbarwrapper: string;
4
5
  toolbarWrapper: string;
5
6
  };
@@ -16,6 +16,7 @@ export interface BuiltInComponentRenderers {
16
16
  "card": unknown;
17
17
  "text": unknown;
18
18
  "image": unknown;
19
+ "video": unknown;
19
20
  "button": unknown;
20
21
  "text-input": unknown;
21
22
  "progress-circle": unknown;
@@ -241,6 +242,14 @@ export interface VelcronImageDefinition extends VelcronDefinition {
241
242
  borderRadius?: VelcronDimensions;
242
243
  events?: VelcronOnPressEvent;
243
244
  }
245
+ export interface VelcronVideoDefinition extends VelcronDefinition {
246
+ type: "video";
247
+ url?: VelcronBindableProp<string>;
248
+ bind?: VelcronBindableProp<string>;
249
+ aspectRatio?: VelcronBindableProp<"16:9" | "4:3" | "1:1">;
250
+ autoplay?: VelcronBindableProp<boolean>;
251
+ muted?: VelcronBindableProp<boolean>;
252
+ }
244
253
  export interface VelcronButtonDefinition extends VelcronDefinition {
245
254
  type: "button";
246
255
  text: string;
@@ -5,6 +5,7 @@ export declare const VelcronConstants: {
5
5
  card: string;
6
6
  text: string;
7
7
  image: string;
8
+ video: string;
8
9
  button: string;
9
10
  "text-input": string;
10
11
  "progress-circle": string;
@@ -5,3 +5,4 @@ export * from "./Image";
5
5
  export * from "./Button";
6
6
  export * from "./Property";
7
7
  export * from "./Checkbox";
8
+ export * from "./Video";
@@ -0,0 +1,65 @@
1
+ import { VelcronRenderContext, VelcronVideoDefinition } from "../../core";
2
+ declare const _default: {
3
+ new (...args: any[]): {
4
+ $: import("vue").ComponentInternalInstance;
5
+ $data: {};
6
+ $props: Partial<{}> & Omit<{
7
+ readonly definition?: VelcronVideoDefinition;
8
+ readonly renderContext?: VelcronRenderContext;
9
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
10
+ definition: import("vue").Prop<VelcronVideoDefinition, VelcronVideoDefinition>;
11
+ renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
12
+ }>>, never>;
13
+ $attrs: {
14
+ [x: string]: unknown;
15
+ };
16
+ $refs: {
17
+ [x: string]: unknown;
18
+ };
19
+ $slots: Readonly<{
20
+ [name: string]: import("vue").Slot<any>;
21
+ }>;
22
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
23
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
24
+ $emit: (event: string, ...args: any[]) => void;
25
+ $el: any;
26
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
27
+ definition: import("vue").Prop<VelcronVideoDefinition, VelcronVideoDefinition>;
28
+ renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
29
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
30
+ beforeCreate?: (() => void) | (() => void)[];
31
+ created?: (() => void) | (() => void)[];
32
+ beforeMount?: (() => void) | (() => void)[];
33
+ mounted?: (() => void) | (() => void)[];
34
+ beforeUpdate?: (() => void) | (() => void)[];
35
+ updated?: (() => void) | (() => void)[];
36
+ activated?: (() => void) | (() => void)[];
37
+ deactivated?: (() => void) | (() => void)[];
38
+ beforeDestroy?: (() => void) | (() => void)[];
39
+ beforeUnmount?: (() => void) | (() => void)[];
40
+ destroyed?: (() => void) | (() => void)[];
41
+ unmounted?: (() => void) | (() => void)[];
42
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
43
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
44
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
45
+ };
46
+ $forceUpdate: () => void;
47
+ $nextTick: typeof import("vue").nextTick;
48
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
49
+ } & Readonly<import("vue").ExtractPropTypes<{
50
+ definition: import("vue").Prop<VelcronVideoDefinition, VelcronVideoDefinition>;
51
+ renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
52
+ }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
53
+ __isFragment?: never;
54
+ __isTeleport?: never;
55
+ __isSuspense?: never;
56
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
57
+ definition: import("vue").Prop<VelcronVideoDefinition, VelcronVideoDefinition>;
58
+ renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
59
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
60
+ propsDefinition: Omit<Readonly<{} & {
61
+ definition?: VelcronVideoDefinition;
62
+ renderContext?: VelcronRenderContext;
63
+ }>, never>;
64
+ };
65
+ export default _default;
@@ -89,11 +89,13 @@ import wc9be9d4f831fd4d15ab09d235d5cd6a38 from './ux/social/Comment';
89
89
  import wc239412079c474a78b857dd4bdca3ff84 from './ux/social/PeopleTagging';
90
90
  import wcd737feca8c0e44c1808f6f016122f8ea from './ux/social/CommentDialog';
91
91
  import wcbe381da6819b477c857057f129cd9210 from './ux/social/Like';
92
+ import wcdc26034aad994c5c8ec6992d317df993 from './ux/social/Reactions';
92
93
  import wc564bced7081c496483e8df717f600ff3 from './ux/spacingpicker/SpacingPicker3';
93
94
  import wc5aaaefb501d64fe59da8b779a54c0a55 from './ux/statuscoderenderer/StatusCodeRenderer';
94
95
  import wccb83d46eaaed44d4920d4d5da21bc488 from './ux/statusmessageoverlay/StatusMessageOverlay';
95
96
  import wca9e655701cd249aca6b2af56caea6630 from './ux/timeperiodpicker/TimePeriodPicker';
96
97
  import wc54730f05dd2c4f2da1c830b3985b36a9 from './ux/typographypicker/TypographyPicker';
98
+ import wc6f50634fb5c149e0964666bca7d9edc0 from './ux/urlinput/UrlInputLegacy';
97
99
  import wc21a1f20b3d404602853049c1c8b8da2f from './ux/userpresence/UserPresence';
98
100
  import wc30289e2b58ff48b0aabb3cb3732c3038 from './ux/usertypelayout/UserTypeLayoutRenderer';
99
101
  import wc90cfd68bb4e04f67bfd5677bdf4af59d from './ux/validation/FieldValidation';
@@ -119,6 +121,7 @@ import wc211ad37d3c1747c2a3fce889a433ebaa from './ux/app/management/tabs/namingp
119
121
  import wc20bd8ac81b314379a3676ca3b31c720e from './ux/app/management/components/TabsManagement';
120
122
  import wc0edb482876244660a11456d63e31b847 from './ux/appprovisioning/appimageinput/AppImageInput';
121
123
  import wcf4841dc16bb3406985428b109cb3e048 from './ux/appprovisioning/apppropertiesinput/AppPropertiesInput';
124
+ import wc22d04b93a87c44d290da28f58d163eeb from './ux/appprovisioning/approuteinput/AppRouteInput';
122
125
  import wc8e21d658d6f84d70870d29805b27df86 from './ux/appprovisioning/appshowinpubliclistingsinput/AppShowInPublicListingsInput';
123
126
  import wc1f31fc580b854d19895c1879120a9891 from './ux/docs/chrome/DocsChrome';
124
127
  import wc710dc11b823c4a80b2a031395c206325 from './ux/editorchrome/chrome/EditorChrome';
@@ -428,11 +431,13 @@ declare global {
428
431
  "omfx-people-tagging-component": typeof wc239412079c474a78b857dd4bdca3ff84.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc239412079c474a78b857dd4bdca3ff84.propsDefinition>;
429
432
  "omfx-comment-dialog": typeof wcd737feca8c0e44c1808f6f016122f8ea.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcd737feca8c0e44c1808f6f016122f8ea.propsDefinition>;
430
433
  "omfx-like-component": typeof wcbe381da6819b477c857057f129cd9210.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcbe381da6819b477c857057f129cd9210.propsDefinition>;
434
+ "omfx-reactions": typeof wcdc26034aad994c5c8ec6992d317df993.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcdc26034aad994c5c8ec6992d317df993.propsDefinition>;
431
435
  "omfx-spacing-picker": typeof wc564bced7081c496483e8df717f600ff3.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc564bced7081c496483e8df717f600ff3.propsDefinition>;
432
436
  "omfx-status-code-renderer": typeof wc5aaaefb501d64fe59da8b779a54c0a55.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc5aaaefb501d64fe59da8b779a54c0a55.propsDefinition>;
433
437
  "omfx-status-message-overlay": typeof wccb83d46eaaed44d4920d4d5da21bc488.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wccb83d46eaaed44d4920d4d5da21bc488.propsDefinition>;
434
438
  "omfx-time-period-picker": typeof wca9e655701cd249aca6b2af56caea6630.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wca9e655701cd249aca6b2af56caea6630.propsDefinition>;
435
439
  "omfx-typography-picker": typeof wc54730f05dd2c4f2da1c830b3985b36a9.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc54730f05dd2c4f2da1c830b3985b36a9.propsDefinition>;
440
+ "omfx-url-input-legacy": typeof wc6f50634fb5c149e0964666bca7d9edc0.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc6f50634fb5c149e0964666bca7d9edc0.propsDefinition>;
436
441
  "omfx-user-presence": typeof wc21a1f20b3d404602853049c1c8b8da2f.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc21a1f20b3d404602853049c1c8b8da2f.propsDefinition>;
437
442
  "omfx-usertype-layout-renderer": typeof wc30289e2b58ff48b0aabb3cb3732c3038.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc30289e2b58ff48b0aabb3cb3732c3038.propsDefinition>;
438
443
  "omfx-field-validation": typeof wc90cfd68bb4e04f67bfd5677bdf4af59d.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc90cfd68bb4e04f67bfd5677bdf4af59d.propsDefinition>;
@@ -458,6 +463,7 @@ declare global {
458
463
  "omfx-tab-management": typeof wc20bd8ac81b314379a3676ca3b31c720e.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc20bd8ac81b314379a3676ca3b31c720e.propsDefinition>;
459
464
  "omfx-app-image-input": typeof wc0edb482876244660a11456d63e31b847.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc0edb482876244660a11456d63e31b847.propsDefinition>;
460
465
  "omfx-app-properties-input": typeof wcf4841dc16bb3406985428b109cb3e048.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcf4841dc16bb3406985428b109cb3e048.propsDefinition>;
466
+ "omfx-app-route-input": typeof wc22d04b93a87c44d290da28f58d163eeb.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc22d04b93a87c44d290da28f58d163eeb.propsDefinition>;
461
467
  "omfx-app-show-in-public-listings-input": typeof wc8e21d658d6f84d70870d29805b27df86.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc8e21d658d6f84d70870d29805b27df86.propsDefinition>;
462
468
  "omfx-docs": typeof wc1f31fc580b854d19895c1879120a9891.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc1f31fc580b854d19895c1879120a9891.propsDefinition>;
463
469
  "omfx-editor-chrome": typeof wc710dc11b823c4a80b2a031395c206325.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc710dc11b823c4a80b2a031395c206325.propsDefinition>;
@@ -1125,6 +1131,11 @@ declare global {
1125
1131
  $props: typeof wcbe381da6819b477c857057f129cd9210.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcbe381da6819b477c857057f129cd9210.propsDefinition>;
1126
1132
  };
1127
1133
  };
1134
+ "Reactions": {
1135
+ new (...args: any[]): {
1136
+ $props: typeof wcdc26034aad994c5c8ec6992d317df993.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcdc26034aad994c5c8ec6992d317df993.propsDefinition>;
1137
+ };
1138
+ };
1128
1139
  "SpacingPicker": {
1129
1140
  new (...args: any[]): {
1130
1141
  $props: typeof wc564bced7081c496483e8df717f600ff3.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc564bced7081c496483e8df717f600ff3.propsDefinition>;
@@ -1150,6 +1161,11 @@ declare global {
1150
1161
  $props: typeof wc54730f05dd2c4f2da1c830b3985b36a9.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc54730f05dd2c4f2da1c830b3985b36a9.propsDefinition>;
1151
1162
  };
1152
1163
  };
1164
+ "UrlInputLegacy": {
1165
+ new (...args: any[]): {
1166
+ $props: typeof wc6f50634fb5c149e0964666bca7d9edc0.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc6f50634fb5c149e0964666bca7d9edc0.propsDefinition>;
1167
+ };
1168
+ };
1153
1169
  "UserPresence": {
1154
1170
  new (...args: any[]): {
1155
1171
  $props: typeof wc21a1f20b3d404602853049c1c8b8da2f.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc21a1f20b3d404602853049c1c8b8da2f.propsDefinition>;
@@ -1275,6 +1291,11 @@ declare global {
1275
1291
  $props: typeof wcf4841dc16bb3406985428b109cb3e048.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcf4841dc16bb3406985428b109cb3e048.propsDefinition>;
1276
1292
  };
1277
1293
  };
1294
+ "AppRouteInput": {
1295
+ new (...args: any[]): {
1296
+ $props: typeof wc22d04b93a87c44d290da28f58d163eeb.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc22d04b93a87c44d290da28f58d163eeb.propsDefinition>;
1297
+ };
1298
+ };
1278
1299
  "AppShowInPublicListingsInput": {
1279
1300
  new (...args: any[]): {
1280
1301
  $props: typeof wc8e21d658d6f84d70870d29805b27df86.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc8e21d658d6f84d70870d29805b27df86.propsDefinition>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.38-dev",
4
+ "version": "8.0.39-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": "Precio Fishbone",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "8.0.38-dev",
23
+ "@omnia/fx-models": "8.0.39-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",
@@ -1,42 +0,0 @@
1
- import { UrlPropertyValue } from "../../../fx/models";
2
- import { IValidator, TsxAllowUnknowProperties } from "@omnia/fx/ux";
3
- export interface IUrlInputProperties {
4
- /**Label */
5
- label?: string;
6
- /**Disabled */
7
- disabled?: boolean;
8
- /**Vuetify filled mode*/
9
- filled?: boolean;
10
- /**Light theme*/
11
- light?: boolean;
12
- /**Dark theme*/
13
- dark?: boolean;
14
- /**Resolving default url*/
15
- defaultUrlResolving?: boolean;
16
- /**MS Teams Url input*/
17
- enabledInputMSTeamsUrl?: boolean;
18
- }
19
- /**Url Input - the component for setting UrlPropertyValue model*/
20
- export interface IUrlInput extends IUrlInputProperties {
21
- [name: string]: any;
22
- /**UrlPropertyValue Model */
23
- valueBind: UrlPropertyValue;
24
- /**Require with validator */
25
- requiredWithValidator?: IValidator;
26
- /**On model change */
27
- onValueChanged: (model: UrlPropertyValue) => void;
28
- onBlur?: () => void;
29
- }
30
- declare global {
31
- namespace JSX {
32
- interface Element {
33
- }
34
- interface ElementClass {
35
- }
36
- interface ElementAttributesProperty {
37
- }
38
- interface IntrinsicElements {
39
- "omfx-url-input-legacy": TsxAllowUnknowProperties<IUrlInput>;
40
- }
41
- }
42
- }