@omnia/fx 8.0.120-dev → 8.0.122-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 (92) hide show
  1. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
  2. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/Template.d.ts +1 -1
  3. package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaEditor.d.ts +45 -5
  4. package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.d.ts +117 -91
  5. package/internal-do-not-import-from-here/ux/fileuploader/FileUploader.d.ts +26 -0
  6. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutBlockRenderer.d.ts +32 -4
  7. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionRenderer.d.ts +32 -4
  8. package/internal-do-not-import-from-here/ux/mediapickerV2/Utils/getMediaProvider.d.ts +8 -0
  9. package/internal-do-not-import-from-here/ux/mediapickerV2/Utils/index.d.ts +1 -0
  10. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/MediaPicker.css.d.ts +2 -0
  11. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/MediaPicker.d.ts +75 -50
  12. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/components/MediaGallerySelector.css.d.ts +1 -0
  13. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/core/MediaFileProcessor.d.ts +2 -2
  14. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/core/MediaPickerImageHandler.d.ts +2 -0
  15. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/core/utils.d.ts +1 -1
  16. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/types.d.ts +2 -0
  17. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/gallery/ImageHandler.d.ts +12 -0
  18. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/gallery/VideoHandler.d.ts +9 -0
  19. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/gallery/index.d.ts +2 -0
  20. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/imagetransformer/cropByRatio.d.ts +24 -0
  21. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/imagetransformer/filter.d.ts +11 -0
  22. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/imagetransformer/flip.d.ts +8 -0
  23. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/imagetransformer/index.d.ts +4 -0
  24. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/imagetransformer/utils.d.ts +13 -0
  25. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/index.d.ts +3 -0
  26. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/provider/BaseImageHandler.d.ts +47 -0
  27. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/provider/BaseVideoHandler.d.ts +36 -0
  28. package/internal-do-not-import-from-here/ux/mediapickerV2/handlers/provider/index.d.ts +2 -0
  29. package/internal-do-not-import-from-here/ux/mediapickerV2/imagegrid/ImageGrid.d.ts +22 -0
  30. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/cropper/ImageCropper.d.ts +6 -38
  31. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/editor/ImageEditor.css.d.ts +1 -0
  32. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/editor/ImageEditorCanvas.d.ts +51 -66
  33. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/filters/ImageFilters.d.ts +5 -20
  34. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/ImageTransformer.d.ts +4 -19
  35. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Utils/cropUtils.d.ts +21 -0
  36. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Utils/index.d.ts +2 -0
  37. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Utils/transformUtils.d.ts +7 -0
  38. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/loc/localize.d.ts +2 -0
  39. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/store/ImageTransformerStore.d.ts +236 -0
  40. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/store/index.d.ts +1 -0
  41. package/internal-do-not-import-from-here/ux/mediapickerV2/interfaces/IImageTransformHandler.d.ts +16 -0
  42. package/internal-do-not-import-from-here/ux/mediapickerV2/interfaces/IMediaPickerGalleryHandler.d.ts +10 -0
  43. package/internal-do-not-import-from-here/ux/mediapickerV2/interfaces/IMediaPickerProviderMediaHandler.d.ts +56 -0
  44. package/internal-do-not-import-from-here/ux/mediapickerV2/interfaces/index.d.ts +3 -0
  45. package/internal-do-not-import-from-here/ux/mediapickerV2/mediaprovider/MediaProvider.css.d.ts +0 -2
  46. package/internal-do-not-import-from-here/ux/mediapickerV2/mediaprovider/MediaProvider.d.ts +53 -0
  47. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/MediaPickerCommonStore.d.ts +84 -0
  48. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/MediaPickerGalleryStore.d.ts +190 -0
  49. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/ProviderStore.d.ts +241 -0
  50. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/constants.d.ts +2 -0
  51. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/index.d.ts +5 -3
  52. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/types.d.ts +55 -0
  53. package/internal-do-not-import-from-here/ux/mediapickerproviders/Youtube/YouTubeProvider.d.ts +48 -0
  54. package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/BingProvider.d.ts +4 -395
  55. package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/handler.d.ts +9 -0
  56. package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/searchFilters.d.ts +19 -0
  57. package/internal-do-not-import-from-here/ux/mediapickerproviders/mycomputerprovider/MyComputerProvider.css.d.ts +4 -0
  58. package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider-V2/PexelProvider.d.ts +4 -395
  59. package/internal-do-not-import-from-here/ux/multitextinput/MultiTextInput.d.ts +7 -3
  60. package/internal-do-not-import-from-here/ux/organizationtree/OrganizationTree.css.d.ts +9 -1
  61. package/internal-do-not-import-from-here/ux/organizationtree/OrganizationTree.d.ts +68 -31
  62. package/internal-do-not-import-from-here/ux/organizationtree/reportees/Reportees.d.ts +63 -18
  63. package/internal-do-not-import-from-here/ux/oxide/column/ColumnGrid.d.ts +1 -1
  64. package/internal-do-not-import-from-here/ux/oxide/image/Image.d.ts +21 -0
  65. package/internal-do-not-import-from-here/ux/persona/Persona.css.d.ts +7 -1
  66. package/internal-do-not-import-from-here/ux/persona/Persona.d.ts +71 -26
  67. package/internal-do-not-import-from-here/ux/theming-v2/themeprovider/ThemeProvider.d.ts +707 -681
  68. package/internal-do-not-import-from-here/wctypings.d.ts +149 -101
  69. package/package.json +2 -2
  70. package/internal-do-not-import-from-here/ux/depricated-mediapicker/components/ImageSelector.css.d.ts +0 -6
  71. package/internal-do-not-import-from-here/ux/depricated-mediapicker/components/ImageSelector.d.ts +0 -30
  72. package/internal-do-not-import-from-here/ux/imagegrid/ImageGrid copy.d.ts +0 -1
  73. package/internal-do-not-import-from-here/ux/imagegrid/ImageGrid.css.d.ts +0 -1
  74. package/internal-do-not-import-from-here/ux/imagegrid/ImageGrid.d.ts +0 -138
  75. package/internal-do-not-import-from-here/ux/imagegrid/loc/index.d.ts +0 -1
  76. package/internal-do-not-import-from-here/ux/imagegrid/loc/localize.d.ts +0 -8
  77. package/internal-do-not-import-from-here/ux/mediapickerV2/imagegrid/index.d.ts +0 -0
  78. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/Interfaces.d.ts +0 -0
  79. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/MediaGalleryStore.d.ts +0 -59
  80. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/MediaPickerEditorStore.d.ts +0 -159
  81. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/MediaPickerProviderStore.d.ts +0 -116
  82. package/internal-do-not-import-from-here/ux/mediapickerproviders/Youtube/IYouTubeProvider.d.ts +0 -0
  83. package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/BingProvider_old.d.ts +0 -0
  84. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/GridViewMediaProviderComponent.css.d.ts +0 -0
  85. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/GridViewMediaProviderComponent.d.ts +0 -0
  86. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/MediaProviderComponentBase.css.d.ts +0 -0
  87. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/MediaProviderComponentBase.d.ts +0 -0
  88. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/MultiSelectMediaProviderComponentBase.d.ts +0 -0
  89. package/internal-do-not-import-from-here/ux/organizationtree/IOrganizationTree.d.ts +0 -22
  90. package/internal-do-not-import-from-here/ux/organizationtree/reportees/IReportees.d.ts +0 -21
  91. package/internal-do-not-import-from-here/ux/persona/IPersona.d.ts +0 -23
  92. /package/internal-do-not-import-from-here/ux/{imagegrid → mediapickerV2}/index.d.ts +0 -0
@@ -1,408 +1,17 @@
1
1
  import "./PexelProvider.css";
2
2
  declare const _default: {
3
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<{
4
- readonly [x: number]: string;
5
- readonly length: number;
6
- toString: () => string;
7
- toLocaleString: () => string;
8
- concat: {
9
- (...items: ConcatArray<string>[]): string[];
10
- (...items: (string | ConcatArray<string>)[]): string[];
11
- };
12
- join: (separator?: string) => string;
13
- slice: (start?: number, end?: number) => string[];
14
- indexOf: (searchElement: string, fromIndex?: number) => number;
15
- lastIndexOf: (searchElement: string, fromIndex?: number) => number;
16
- every: {
17
- <S extends string>(predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[];
18
- (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean;
19
- };
20
- some: (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean;
21
- forEach: (callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void;
22
- map: <U>(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[];
23
- filter: {
24
- <S_1 extends string>(predicate: (value: string, index: number, array: readonly string[]) => value is S_1, thisArg?: any): S_1[];
25
- (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[];
26
- };
27
- reduce: {
28
- (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string;
29
- (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string;
30
- <U_1>(callbackfn: (previousValue: U_1, currentValue: string, currentIndex: number, array: readonly string[]) => U_1, initialValue: U_1): U_1;
31
- };
32
- reduceRight: {
33
- (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string;
34
- (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string;
35
- <U_2>(callbackfn: (previousValue: U_2, currentValue: string, currentIndex: number, array: readonly string[]) => U_2, initialValue: U_2): U_2;
36
- };
37
- find: {
38
- <S_2 extends string>(predicate: (value: string, index: number, obj: readonly string[]) => value is S_2, thisArg?: any): S_2;
39
- (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
40
- };
41
- findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
42
- entries: () => IterableIterator<[number, string]>;
43
- keys: () => IterableIterator<number>;
44
- values: () => IterableIterator<string>;
45
- includes: (searchElement: string, fromIndex?: number) => boolean;
46
- flatMap: <U_3, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
47
- flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
48
- [Symbol.iterator]: () => IterableIterator<string>;
49
- readonly [Symbol.unscopables]: {
50
- readonly [x: number]: boolean;
51
- readonly length?: boolean;
52
- toString?: boolean;
53
- toLocaleString?: boolean;
54
- concat?: boolean;
55
- join?: boolean;
56
- slice?: boolean;
57
- indexOf?: boolean;
58
- lastIndexOf?: boolean;
59
- every?: boolean;
60
- some?: boolean;
61
- forEach?: boolean;
62
- map?: boolean;
63
- filter?: boolean;
64
- reduce?: boolean;
65
- reduceRight?: boolean;
66
- find?: boolean;
67
- findIndex?: boolean;
68
- entries?: boolean;
69
- keys?: boolean;
70
- values?: boolean;
71
- includes?: boolean;
72
- flatMap?: boolean;
73
- flat?: boolean;
74
- [Symbol.iterator]?: boolean;
75
- readonly [Symbol.unscopables]?: boolean;
76
- at?: boolean;
77
- };
78
- at: (index: number) => string;
79
- }> | Readonly<import("vue").ExtractPropTypes<{
80
- readonly [x: string]: import("vue").Prop<unknown, unknown>;
81
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{
82
- readonly [x: number]: string;
83
- readonly length: number;
84
- toString: () => string;
85
- toLocaleString: () => string;
86
- concat: {
87
- (...items: ConcatArray<string>[]): string[];
88
- (...items: (string | ConcatArray<string>)[]): string[];
89
- };
90
- join: (separator?: string) => string;
91
- slice: (start?: number, end?: number) => string[];
92
- indexOf: (searchElement: string, fromIndex?: number) => number;
93
- lastIndexOf: (searchElement: string, fromIndex?: number) => number;
94
- every: {
95
- <S extends string>(predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[];
96
- (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean;
97
- };
98
- some: (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean;
99
- forEach: (callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void;
100
- map: <U>(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[];
101
- filter: {
102
- <S_1 extends string>(predicate: (value: string, index: number, array: readonly string[]) => value is S_1, thisArg?: any): S_1[];
103
- (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[];
104
- };
105
- reduce: {
106
- (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string;
107
- (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string;
108
- <U_1>(callbackfn: (previousValue: U_1, currentValue: string, currentIndex: number, array: readonly string[]) => U_1, initialValue: U_1): U_1;
109
- };
110
- reduceRight: {
111
- (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string;
112
- (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string;
113
- <U_2>(callbackfn: (previousValue: U_2, currentValue: string, currentIndex: number, array: readonly string[]) => U_2, initialValue: U_2): U_2;
114
- };
115
- find: {
116
- <S_2 extends string>(predicate: (value: string, index: number, obj: readonly string[]) => value is S_2, thisArg?: any): S_2;
117
- (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
118
- };
119
- findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
120
- entries: () => IterableIterator<[number, string]>;
121
- keys: () => IterableIterator<number>;
122
- values: () => IterableIterator<string>;
123
- includes: (searchElement: string, fromIndex?: number) => boolean;
124
- flatMap: <U_3, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
125
- flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
126
- [Symbol.iterator]: () => IterableIterator<string>;
127
- readonly [Symbol.unscopables]: {
128
- readonly [x: number]: boolean;
129
- readonly length?: boolean;
130
- toString?: boolean;
131
- toLocaleString?: boolean;
132
- concat?: boolean;
133
- join?: boolean;
134
- slice?: boolean;
135
- indexOf?: boolean;
136
- lastIndexOf?: boolean;
137
- every?: boolean;
138
- some?: boolean;
139
- forEach?: boolean;
140
- map?: boolean;
141
- filter?: boolean;
142
- reduce?: boolean;
143
- reduceRight?: boolean;
144
- find?: boolean;
145
- findIndex?: boolean;
146
- entries?: boolean;
147
- keys?: boolean;
148
- values?: boolean;
149
- includes?: boolean;
150
- flatMap?: boolean;
151
- flat?: boolean;
152
- [Symbol.iterator]?: boolean;
153
- readonly [Symbol.unscopables]?: boolean;
154
- at?: boolean;
155
- };
156
- at: (index: number) => string;
157
- } | import("vue").ExtractPropTypes<{
158
- readonly [x: string]: import("vue").Prop<unknown, unknown>;
159
- }>>, {} | {}, true, {}, {}, {
3
+ new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
160
4
  P: {};
161
5
  B: {};
162
6
  D: {};
163
7
  C: {};
164
8
  M: {};
165
9
  Defaults: {};
166
- }, Readonly<{
167
- readonly [x: number]: string;
168
- readonly length: number;
169
- toString: () => string;
170
- toLocaleString: () => string;
171
- concat: {
172
- (...items: ConcatArray<string>[]): string[];
173
- (...items: (string | ConcatArray<string>)[]): string[];
174
- };
175
- join: (separator?: string) => string;
176
- slice: (start?: number, end?: number) => string[];
177
- indexOf: (searchElement: string, fromIndex?: number) => number;
178
- lastIndexOf: (searchElement: string, fromIndex?: number) => number;
179
- every: {
180
- <S extends string>(predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[];
181
- (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean;
182
- };
183
- some: (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean;
184
- forEach: (callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void;
185
- map: <U>(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[];
186
- filter: {
187
- <S_1 extends string>(predicate: (value: string, index: number, array: readonly string[]) => value is S_1, thisArg?: any): S_1[];
188
- (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[];
189
- };
190
- reduce: {
191
- (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string;
192
- (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string;
193
- <U_1>(callbackfn: (previousValue: U_1, currentValue: string, currentIndex: number, array: readonly string[]) => U_1, initialValue: U_1): U_1;
194
- };
195
- reduceRight: {
196
- (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string;
197
- (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string;
198
- <U_2>(callbackfn: (previousValue: U_2, currentValue: string, currentIndex: number, array: readonly string[]) => U_2, initialValue: U_2): U_2;
199
- };
200
- find: {
201
- <S_2 extends string>(predicate: (value: string, index: number, obj: readonly string[]) => value is S_2, thisArg?: any): S_2;
202
- (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
203
- };
204
- findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
205
- entries: () => IterableIterator<[number, string]>;
206
- keys: () => IterableIterator<number>;
207
- values: () => IterableIterator<string>;
208
- includes: (searchElement: string, fromIndex?: number) => boolean;
209
- flatMap: <U_3, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
210
- flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
211
- [Symbol.iterator]: () => IterableIterator<string>;
212
- readonly [Symbol.unscopables]: {
213
- readonly [x: number]: boolean;
214
- readonly length?: boolean;
215
- toString?: boolean;
216
- toLocaleString?: boolean;
217
- concat?: boolean;
218
- join?: boolean;
219
- slice?: boolean;
220
- indexOf?: boolean;
221
- lastIndexOf?: boolean;
222
- every?: boolean;
223
- some?: boolean;
224
- forEach?: boolean;
225
- map?: boolean;
226
- filter?: boolean;
227
- reduce?: boolean;
228
- reduceRight?: boolean;
229
- find?: boolean;
230
- findIndex?: boolean;
231
- entries?: boolean;
232
- keys?: boolean;
233
- values?: boolean;
234
- includes?: boolean;
235
- flatMap?: boolean;
236
- flat?: boolean;
237
- [Symbol.iterator]?: boolean;
238
- readonly [Symbol.unscopables]?: boolean;
239
- at?: boolean;
240
- };
241
- at: (index: number) => string;
242
- }> | Readonly<import("vue").ExtractPropTypes<{
243
- readonly [x: string]: import("vue").Prop<unknown, unknown>;
244
- }>>, () => JSX.Element, {}, {}, {}, {} | {}>;
10
+ }, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
245
11
  __isFragment?: never;
246
12
  __isTeleport?: never;
247
13
  __isSuspense?: never;
248
- } & import("vue").ComponentOptionsBase<Readonly<{
249
- readonly [x: number]: string;
250
- readonly length: number;
251
- toString: () => string;
252
- toLocaleString: () => string;
253
- concat: {
254
- (...items: ConcatArray<string>[]): string[];
255
- (...items: (string | ConcatArray<string>)[]): string[];
256
- };
257
- join: (separator?: string) => string;
258
- slice: (start?: number, end?: number) => string[];
259
- indexOf: (searchElement: string, fromIndex?: number) => number;
260
- lastIndexOf: (searchElement: string, fromIndex?: number) => number;
261
- every: {
262
- <S extends string>(predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[];
263
- (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean;
264
- };
265
- some: (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean;
266
- forEach: (callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void;
267
- map: <U>(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[];
268
- filter: {
269
- <S_1 extends string>(predicate: (value: string, index: number, array: readonly string[]) => value is S_1, thisArg?: any): S_1[];
270
- (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[];
271
- };
272
- reduce: {
273
- (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string;
274
- (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string;
275
- <U_1>(callbackfn: (previousValue: U_1, currentValue: string, currentIndex: number, array: readonly string[]) => U_1, initialValue: U_1): U_1;
276
- };
277
- reduceRight: {
278
- (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string;
279
- (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string;
280
- <U_2>(callbackfn: (previousValue: U_2, currentValue: string, currentIndex: number, array: readonly string[]) => U_2, initialValue: U_2): U_2;
281
- };
282
- find: {
283
- <S_2 extends string>(predicate: (value: string, index: number, obj: readonly string[]) => value is S_2, thisArg?: any): S_2;
284
- (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
285
- };
286
- findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
287
- entries: () => IterableIterator<[number, string]>;
288
- keys: () => IterableIterator<number>;
289
- values: () => IterableIterator<string>;
290
- includes: (searchElement: string, fromIndex?: number) => boolean;
291
- flatMap: <U_3, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
292
- flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
293
- [Symbol.iterator]: () => IterableIterator<string>;
294
- readonly [Symbol.unscopables]: {
295
- readonly [x: number]: boolean;
296
- readonly length?: boolean;
297
- toString?: boolean;
298
- toLocaleString?: boolean;
299
- concat?: boolean;
300
- join?: boolean;
301
- slice?: boolean;
302
- indexOf?: boolean;
303
- lastIndexOf?: boolean;
304
- every?: boolean;
305
- some?: boolean;
306
- forEach?: boolean;
307
- map?: boolean;
308
- filter?: boolean;
309
- reduce?: boolean;
310
- reduceRight?: boolean;
311
- find?: boolean;
312
- findIndex?: boolean;
313
- entries?: boolean;
314
- keys?: boolean;
315
- values?: boolean;
316
- includes?: boolean;
317
- flatMap?: boolean;
318
- flat?: boolean;
319
- [Symbol.iterator]?: boolean;
320
- readonly [Symbol.unscopables]?: boolean;
321
- at?: boolean;
322
- };
323
- at: (index: number) => string;
324
- }> | Readonly<import("vue").ExtractPropTypes<{
325
- readonly [x: string]: import("vue").Prop<unknown, unknown>;
326
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {} | {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
327
- propsDefinition: Omit<Readonly<{
328
- readonly [x: number]: string;
329
- readonly length: number;
330
- toString: () => string;
331
- toLocaleString: () => string;
332
- concat: {
333
- (...items: ConcatArray<string>[]): string[];
334
- (...items: (string | ConcatArray<string>)[]): string[];
335
- };
336
- join: (separator?: string) => string;
337
- slice: (start?: number, end?: number) => string[];
338
- indexOf: (searchElement: string, fromIndex?: number) => number;
339
- lastIndexOf: (searchElement: string, fromIndex?: number) => number;
340
- every: {
341
- <S extends string>(predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[];
342
- (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean;
343
- };
344
- some: (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean;
345
- forEach: (callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void;
346
- map: <U>(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[];
347
- filter: {
348
- <S_1 extends string>(predicate: (value: string, index: number, array: readonly string[]) => value is S_1, thisArg?: any): S_1[];
349
- (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[];
350
- };
351
- reduce: {
352
- (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string;
353
- (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string;
354
- <U_1>(callbackfn: (previousValue: U_1, currentValue: string, currentIndex: number, array: readonly string[]) => U_1, initialValue: U_1): U_1;
355
- };
356
- reduceRight: {
357
- (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string;
358
- (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string;
359
- <U_2>(callbackfn: (previousValue: U_2, currentValue: string, currentIndex: number, array: readonly string[]) => U_2, initialValue: U_2): U_2;
360
- };
361
- find: {
362
- <S_2 extends string>(predicate: (value: string, index: number, obj: readonly string[]) => value is S_2, thisArg?: any): S_2;
363
- (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string;
364
- };
365
- findIndex: (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number;
366
- entries: () => IterableIterator<[number, string]>;
367
- keys: () => IterableIterator<number>;
368
- values: () => IterableIterator<string>;
369
- includes: (searchElement: string, fromIndex?: number) => boolean;
370
- flatMap: <U_3, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
371
- flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
372
- [Symbol.iterator]: () => IterableIterator<string>;
373
- readonly [Symbol.unscopables]: {
374
- readonly [x: number]: boolean;
375
- readonly length?: boolean;
376
- toString?: boolean;
377
- toLocaleString?: boolean;
378
- concat?: boolean;
379
- join?: boolean;
380
- slice?: boolean;
381
- indexOf?: boolean;
382
- lastIndexOf?: boolean;
383
- every?: boolean;
384
- some?: boolean;
385
- forEach?: boolean;
386
- map?: boolean;
387
- filter?: boolean;
388
- reduce?: boolean;
389
- reduceRight?: boolean;
390
- find?: boolean;
391
- findIndex?: boolean;
392
- entries?: boolean;
393
- keys?: boolean;
394
- values?: boolean;
395
- includes?: boolean;
396
- flatMap?: boolean;
397
- flat?: boolean;
398
- [Symbol.iterator]?: boolean;
399
- readonly [Symbol.unscopables]?: boolean;
400
- at?: boolean;
401
- };
402
- at: (index: number) => string;
403
- }>, never> | Omit<Readonly<{} & {
404
- readonly [x: string]: unknown;
405
- readonly [x: number]: unknown;
406
- }>, never>;
14
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
15
+ propsDefinition: Omit<Readonly<{} & {}>, never>;
407
16
  };
408
17
  export default _default;
@@ -23,16 +23,18 @@ declare const _default: <T1 extends unknown, T2 extends unknown>(props: {
23
23
  hideEditGrid?: boolean;
24
24
  } & {
25
25
  rules?: ValidationRule[];
26
+ } & {
27
+ selectionVisible?: boolean;
26
28
  } & {
27
29
  isAppendIcon?: boolean;
28
30
  } & Omit<{
29
31
  "onUpdate:modelValue"?: (value: MultiTextInputItem<T1>) => any;
30
32
  onSelectItem?: (item: MultiTextInputItem<T2>, index: number) => any;
31
- }, "mode" | "label" | "disabled" | "items" | "v-model" | "onUpdate:modelValue" | "modelValue" | "autofocus" | "rules" | "itemValue" | "defaultValueItem" | "hideEditGrid" | "isAppendIcon"> & {
33
+ }, "mode" | "label" | "disabled" | "items" | "v-model" | "onUpdate:modelValue" | "modelValue" | "autofocus" | "rules" | "itemValue" | "defaultValueItem" | "hideEditGrid" | "selectionVisible" | "isAppendIcon"> & {
32
34
  "v-slots"?: {
33
35
  default?: import("vue").Slot;
34
36
  };
35
- } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "mode" | "label" | "disabled" | "items" | "v-model" | "onUpdate:modelValue" | "modelValue" | "autofocus" | "rules" | "itemValue" | "defaultValueItem" | "hideEditGrid" | "isAppendIcon">) => {
37
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "mode" | "label" | "disabled" | "items" | "v-model" | "onUpdate:modelValue" | "modelValue" | "autofocus" | "rules" | "itemValue" | "defaultValueItem" | "hideEditGrid" | "selectionVisible" | "isAppendIcon">) => {
36
38
  $: import("vue").ComponentInternalInstance;
37
39
  $data: {};
38
40
  $props: {};
@@ -94,6 +96,8 @@ declare const _default: <T1 extends unknown, T2 extends unknown>(props: {
94
96
  hideEditGrid?: boolean;
95
97
  } & {
96
98
  rules?: ValidationRule[];
99
+ } & {
100
+ selectionVisible?: boolean;
97
101
  } & {
98
102
  isAppendIcon?: boolean;
99
103
  } & {
@@ -103,7 +107,7 @@ declare const _default: <T1 extends unknown, T2 extends unknown>(props: {
103
107
  } & {
104
108
  "onUpdate:modelValue"?: (value: MultiTextInputItem<T1>) => any;
105
109
  onSelectItem?: (item: MultiTextInputItem<T2>, index: number) => any;
106
- } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "mode" | "label" | "disabled" | "items" | "v-model" | "onUpdate:modelValue" | "modelValue" | "autofocus" | "rules" | "itemValue" | "defaultValueItem" | "hideEditGrid" | "isAppendIcon">;
110
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "mode" | "label" | "disabled" | "items" | "v-model" | "onUpdate:modelValue" | "modelValue" | "autofocus" | "rules" | "itemValue" | "defaultValueItem" | "hideEditGrid" | "selectionVisible" | "isAppendIcon">;
107
111
  } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
108
112
  [key: string]: any;
109
113
  }>;
@@ -1 +1,9 @@
1
- export {};
1
+ import { ColorValue } from "../velcron/core";
2
+ /**
3
+ * Styles for the organization tree component
4
+ */
5
+ export declare const OrgTreeStyles: {
6
+ container: string;
7
+ dividerRight: (color: ColorValue) => string;
8
+ dividerLeft: (color: ColorValue) => string;
9
+ };
@@ -1,31 +1,68 @@
1
- import { IWebComponentInstance, OmniaContext } from "@omnia/fx";
2
- import { VueComponentBase } from "@omnia/fx/ux";
3
- import { IOrganizationTree } from "./IOrganizationTree";
4
- import { OrgTree, OrgTreeComponentSettings, OrgTreeUser } from "../../models";
5
- import "./OrganizationTree.css";
6
- import { OrganizationTreeStore, ProfileCardStore } from "../../stores";
7
- export declare class OrganizationTreeComponent extends VueComponentBase<IOrganizationTree> implements IWebComponentInstance, IOrganizationTree {
8
- valueBind: OrgTreeComponentSettings;
9
- onNewUserSelected: (tree: OrgTree) => void;
10
- omniaContext: OmniaContext;
11
- organizationTreeStore: OrganizationTreeStore;
12
- profileCardStore: ProfileCardStore;
13
- private graphClient;
14
- private isReady;
15
- private currentTree;
16
- private backupModel;
17
- private orgTreeStyles;
18
- private tenantSetting;
19
- private camelizedExcludeFitlers;
20
- onValueBindChanged(model: any): void;
21
- created(): void;
22
- beforeDestroy(): void;
23
- mounted(): void;
24
- needToBeRemoved(user: OrgTreeUser): boolean;
25
- removeReporteesAccordingToSettings(users: OrgTreeUser[]): void;
26
- reInitComponent(user: OrgTreeUser): void;
27
- initComponent(): void;
28
- camelize(str: any): string;
29
- getDividerSectionMarkup(): JSX.Element;
30
- render(): JSX.Element;
31
- }
1
+ import { OrgTree, OrgTreeComponentSettings } from "../../models";
2
+ declare const _default: (props: {
3
+ "v-model"?: OrgTreeComponentSettings;
4
+ } & {
5
+ "onUpdate:modelValue"?: (value: OrgTreeComponentSettings) => void;
6
+ } & {
7
+ modelValue?: OrgTreeComponentSettings;
8
+ } & Omit<{
9
+ onNewUserSelected?: (tree: OrgTree) => any;
10
+ }, "v-model" | "onUpdate:modelValue" | "modelValue"> & {
11
+ "v-slots"?: {
12
+ default?: import("vue").Slot;
13
+ };
14
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">) => {
15
+ $: import("vue").ComponentInternalInstance;
16
+ $data: {};
17
+ $props: {};
18
+ $attrs: {
19
+ [x: string]: unknown;
20
+ };
21
+ $refs: {
22
+ [x: string]: unknown;
23
+ };
24
+ $slots: Readonly<{
25
+ [name: string]: import("vue").Slot<any>;
26
+ }>;
27
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
28
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
29
+ $emit: (event: string, ...args: any[]) => void;
30
+ $el: any;
31
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
32
+ beforeCreate?: (() => void) | (() => void)[];
33
+ created?: (() => void) | (() => void)[];
34
+ beforeMount?: (() => void) | (() => void)[];
35
+ mounted?: (() => void) | (() => void)[];
36
+ beforeUpdate?: (() => void) | (() => void)[];
37
+ updated?: (() => void) | (() => void)[];
38
+ activated?: (() => void) | (() => void)[];
39
+ deactivated?: (() => void) | (() => void)[];
40
+ beforeDestroy?: (() => void) | (() => void)[];
41
+ beforeUnmount?: (() => void) | (() => void)[];
42
+ destroyed?: (() => void) | (() => void)[];
43
+ unmounted?: (() => void) | (() => void)[];
44
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
45
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
46
+ 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)[];
47
+ };
48
+ $forceUpdate: () => void;
49
+ $nextTick: typeof import("vue").nextTick;
50
+ $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;
51
+ } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
52
+ propsDefinition: {
53
+ "v-model"?: OrgTreeComponentSettings;
54
+ } & {
55
+ "onUpdate:modelValue"?: (value: OrgTreeComponentSettings) => void;
56
+ } & {
57
+ modelValue?: OrgTreeComponentSettings;
58
+ } & {
59
+ "v-slots"?: {
60
+ default?: import("vue").Slot;
61
+ };
62
+ } & {
63
+ onNewUserSelected?: (tree: OrgTree) => any;
64
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">;
65
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
66
+ [key: string]: any;
67
+ }>;
68
+ export default _default;
@@ -1,19 +1,64 @@
1
- import { IWebComponentInstance } from "@omnia/fx";
2
- import { VueComponentBase } from "@omnia/fx/ux";
3
- import { IReportees } from "./IReportees";
4
1
  import { OrgTreeUser } from "../../../models";
5
- import "./Reportees.css";
6
- export declare class ReporteesComponent extends VueComponentBase<IReportees> implements IWebComponentInstance, IReportees {
7
- users: OrgTreeUser[];
8
- manager: OrgTreeUser;
9
- onUserClick: (user: OrgTreeUser) => void;
10
- private loc;
11
- private reporteesStyles;
12
- private showAll;
13
- created(): void;
14
- beforeDestroy(): void;
15
- onClick(user: OrgTreeUser): void;
16
- getUserMarkup(user: OrgTreeUser, index: number): JSX.Element;
17
- mounted(): void;
18
- render(): JSX.Element;
19
- }
2
+ declare const _default: (props: {
3
+ users?: OrgTreeUser[];
4
+ } & {
5
+ manager?: OrgTreeUser;
6
+ } & Omit<{
7
+ onUserClick?: (user: OrgTreeUser) => any;
8
+ }, "users" | "manager"> & {
9
+ "v-slots"?: {
10
+ default?: import("vue").Slot;
11
+ };
12
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "users" | "manager">) => {
13
+ $: import("vue").ComponentInternalInstance;
14
+ $data: {};
15
+ $props: {};
16
+ $attrs: {
17
+ [x: string]: unknown;
18
+ };
19
+ $refs: {
20
+ [x: string]: unknown;
21
+ };
22
+ $slots: Readonly<{
23
+ [name: string]: import("vue").Slot<any>;
24
+ }>;
25
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
26
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
27
+ $emit: (event: string, ...args: any[]) => void;
28
+ $el: any;
29
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, 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
+ } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
50
+ propsDefinition: {
51
+ users?: OrgTreeUser[];
52
+ } & {
53
+ manager?: OrgTreeUser;
54
+ } & {
55
+ "v-slots"?: {
56
+ default?: import("vue").Slot;
57
+ };
58
+ } & {
59
+ onUserClick?: (user: OrgTreeUser) => any;
60
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "users" | "manager">;
61
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
62
+ [key: string]: any;
63
+ }>;
64
+ export default _default;