@omnia/fx 8.0.217-dev → 8.0.219-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 (33) hide show
  1. package/internal-do-not-import-from-here/ux/Styles.stylex.d.ts +103 -10
  2. package/internal-do-not-import-from-here/ux/admin/usermanagement/usertypes/tabs/AuthenticationTab.d.ts +2 -2
  3. package/internal-do-not-import-from-here/ux/aurora/components/iconstylepicker/IconStylePicker.d.ts +6 -1
  4. package/internal-do-not-import-from-here/ux/aurora/styling/UseStyling.d.ts +7 -25
  5. package/internal-do-not-import-from-here/ux/aurora/styling/styles/Blueprints.d.ts +3 -8
  6. package/internal-do-not-import-from-here/ux/aurora/styling/styles/Spacing.d.ts +1 -6
  7. package/internal-do-not-import-from-here/ux/aurora/styling/styles/Typography.d.ts +1 -1
  8. package/internal-do-not-import-from-here/ux/markdown/patches/EditorScrollPatch.d.ts +2 -0
  9. package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +7 -3
  10. package/internal-do-not-import-from-here/ux/oxide/text/Text.stylex.d.ts +1 -6
  11. package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.stylex.d.ts +24 -18
  12. package/internal-do-not-import-from-here/ux/profilecard/ProfileCardRenderer.d.ts +58 -82
  13. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/HashTag/HashTagToolbar.d.ts +3 -2
  14. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/MediaPickerEditorExtension.d.ts +48 -68
  15. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/MediaPickerToolbar.d.ts +50 -70
  16. package/internal-do-not-import-from-here/ux/usertypelayout/UserTypeLayoutRenderer.d.ts +65 -44
  17. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentEditor.d.ts +681 -1061
  18. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentRenderer.d.ts +80 -0
  19. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/BorderSelector copy.d.ts +60 -0
  20. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/BorderSelector.css.d.ts +1 -0
  21. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/DefinitionToolbar copy.d.ts +65 -0
  22. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/DefinitionToolbar.css.d.ts +1 -0
  23. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/models/EditorRenderingHooks.d.ts +7 -0
  24. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/stores/ContentEditorStore.d.ts +135 -203
  25. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/ImageEditor.d.ts +14 -0
  26. package/internal-do-not-import-from-here/wctypings.d.ts +11 -26
  27. package/package.json +2 -2
  28. package/internal-do-not-import-from-here/ux/oxide/alert/Alert.css.d.ts +0 -1
  29. package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlock.css.d.ts +0 -7
  30. package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlock.d.ts +0 -16
  31. package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlockSettings.css.d.ts +0 -6
  32. package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlockSettings.d.ts +0 -16
  33. /package/internal-do-not-import-from-here/ux/oxide/appbar/{Appbar.css.d.ts → Appbar.stylex.d.ts} +0 -0
@@ -5,6 +5,12 @@ export type StylexType = {
5
5
  }>;
6
6
  };
7
7
  export declare const themingStylex: {
8
+ position: (position: string) => Readonly<{
9
+ className?: string;
10
+ style?: Readonly<{
11
+ [$$Key$$: string]: string | number;
12
+ }>;
13
+ }>;
8
14
  textFillColor: (textFillColor: string) => Readonly<{
9
15
  className?: string;
10
16
  style?: Readonly<{
@@ -103,7 +109,7 @@ export declare const themingStylex: {
103
109
  [$$Key$$: string]: string | number;
104
110
  }>;
105
111
  }>;
106
- height: (height: string) => Readonly<{
112
+ height: (height: string, important?: boolean) => Readonly<{
107
113
  className?: string;
108
114
  style?: Readonly<{
109
115
  [$$Key$$: string]: string | number;
@@ -163,7 +169,7 @@ export declare const themingStylex: {
163
169
  [$$Key$$: string]: string | number;
164
170
  }>;
165
171
  }>;
166
- fontSize: (fontSize: string) => Readonly<{
172
+ fontSize: (fontSize: string, important?: boolean) => Readonly<{
167
173
  className?: string;
168
174
  style?: Readonly<{
169
175
  [$$Key$$: string]: string | number;
@@ -199,7 +205,13 @@ export declare const themingStylex: {
199
205
  [$$Key$$: string]: string | number;
200
206
  }>;
201
207
  }>;
202
- backgroundColor: (backgroundColor: string) => Readonly<{
208
+ backgroundImage: (backgroundImage: string) => Readonly<{
209
+ className?: string;
210
+ style?: Readonly<{
211
+ [$$Key$$: string]: string | number;
212
+ }>;
213
+ }>;
214
+ backgroundColor: (backgroundColor: string, important?: boolean) => Readonly<{
203
215
  className?: string;
204
216
  style?: Readonly<{
205
217
  [$$Key$$: string]: string | number;
@@ -211,24 +223,33 @@ export declare const themingStylex: {
211
223
  [$$Key$$: string]: string | number;
212
224
  }>;
213
225
  }>;
214
- marginValue: (marginValue: string) => Readonly<{
226
+ borderTopLeftRadius: (borderTopLeftRadius: string, important?: boolean) => Readonly<{
215
227
  className?: string;
216
228
  style?: Readonly<{
217
229
  [$$Key$$: string]: string | number;
218
230
  }>;
219
231
  }>;
220
- paddingValue: (marginValue: string) => Readonly<{
232
+ borderTopRightRadius: (borderTopRightRadius: string, important?: boolean) => Readonly<{
221
233
  className?: string;
222
234
  style?: Readonly<{
223
235
  [$$Key$$: string]: string | number;
224
236
  }>;
225
237
  }>;
226
- borderValue: (borderValue: string) => Readonly<{
238
+ borderBottomRightRadius: (borderBottomRightRadius: string, important?: boolean) => Readonly<{
227
239
  className?: string;
228
240
  style?: Readonly<{
229
241
  [$$Key$$: string]: string | number;
230
242
  }>;
231
243
  }>;
244
+ borderBottomLeftRadius: (borderBottomLeftRadius: string, important?: boolean) => Readonly<{
245
+ className?: string;
246
+ style?: Readonly<{
247
+ [$$Key$$: string]: string | number;
248
+ }>;
249
+ }>;
250
+ margin: (top: string, right?: string, bottom?: string, left?: string) => Readonly<StylexType>;
251
+ padding: (top: string, right?: string, bottom?: string, left?: string) => Readonly<StylexType>;
252
+ border: (top: string, right?: string, bottom?: string, left?: string) => Readonly<StylexType>;
232
253
  marginLeft: (marginLeft: string) => Readonly<{
233
254
  className?: string;
234
255
  style?: Readonly<{
@@ -241,25 +262,97 @@ export declare const themingStylex: {
241
262
  [$$Key$$: string]: string | number;
242
263
  }>;
243
264
  }>;
244
- margin: (marginTop?: string, marginRight?: string, marginBottom?: string, marginLeft?: string) => Readonly<{
265
+ marginRight: (marginRight: string) => Readonly<{
266
+ className?: string;
267
+ style?: Readonly<{
268
+ [$$Key$$: string]: string | number;
269
+ }>;
270
+ }>;
271
+ marginTop: (marginTop: string) => Readonly<{
272
+ className?: string;
273
+ style?: Readonly<{
274
+ [$$Key$$: string]: string | number;
275
+ }>;
276
+ }>;
277
+ paddingLeft: (paddingLeft: string) => Readonly<{
278
+ className?: string;
279
+ style?: Readonly<{
280
+ [$$Key$$: string]: string | number;
281
+ }>;
282
+ }>;
283
+ paddingRight: (paddingRight: string) => Readonly<{
284
+ className?: string;
285
+ style?: Readonly<{
286
+ [$$Key$$: string]: string | number;
287
+ }>;
288
+ }>;
289
+ paddingBottom: (paddingBottom: string) => Readonly<{
290
+ className?: string;
291
+ style?: Readonly<{
292
+ [$$Key$$: string]: string | number;
293
+ }>;
294
+ }>;
295
+ paddingTop: (paddingTop: string) => Readonly<{
296
+ className?: string;
297
+ style?: Readonly<{
298
+ [$$Key$$: string]: string | number;
299
+ }>;
300
+ }>;
301
+ borderLeft: (borderLeft: string) => Readonly<{
302
+ className?: string;
303
+ style?: Readonly<{
304
+ [$$Key$$: string]: string | number;
305
+ }>;
306
+ }>;
307
+ borderRight: (borderRight: string) => Readonly<{
308
+ className?: string;
309
+ style?: Readonly<{
310
+ [$$Key$$: string]: string | number;
311
+ }>;
312
+ }>;
313
+ borderBottom: (borderBottom: string) => Readonly<{
314
+ className?: string;
315
+ style?: Readonly<{
316
+ [$$Key$$: string]: string | number;
317
+ }>;
318
+ }>;
319
+ borderTop: (borderTop: string) => Readonly<{
320
+ className?: string;
321
+ style?: Readonly<{
322
+ [$$Key$$: string]: string | number;
323
+ }>;
324
+ }>;
325
+ borderRadius: (borderRadius: string) => Readonly<{
326
+ className?: string;
327
+ style?: Readonly<{
328
+ [$$Key$$: string]: string | number;
329
+ }>;
330
+ }>;
331
+ textTransform: (textTransform: string) => Readonly<{
332
+ className?: string;
333
+ style?: Readonly<{
334
+ [$$Key$$: string]: string | number;
335
+ }>;
336
+ }>;
337
+ lineCamp: (lineCamp: number) => Readonly<{
245
338
  className?: string;
246
339
  style?: Readonly<{
247
340
  [$$Key$$: string]: string | number;
248
341
  }>;
249
342
  }>;
250
- padding: (paddingTop?: string, paddingRight?: string, paddingBottom?: string, paddingLeft?: string) => Readonly<{
343
+ overflow: (overflow: string) => Readonly<{
251
344
  className?: string;
252
345
  style?: Readonly<{
253
346
  [$$Key$$: string]: string | number;
254
347
  }>;
255
348
  }>;
256
- border: (borderTop?: string, borderRight?: string, borderBottom?: string, borderLeft?: string) => Readonly<{
349
+ boxOrient: (boxOrient: string) => Readonly<{
257
350
  className?: string;
258
351
  style?: Readonly<{
259
352
  [$$Key$$: string]: string | number;
260
353
  }>;
261
354
  }>;
262
- borderRadius: (borderTopLeftRadius?: string, borderTopRightRadius?: string, borderBottomRightRadius?: string, borderBottomLeftRadius?: string) => Readonly<{
355
+ cursor: (cursor: string) => Readonly<{
263
356
  className?: string;
264
357
  style?: Readonly<{
265
358
  [$$Key$$: string]: string | number;
@@ -8,7 +8,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
8
8
  } & {
9
9
  errorMsg: string;
10
10
  } & {
11
- onInvalidateUserTokens: Promise<void>;
11
+ onInvalidateUserTokens?: () => Promise<void>;
12
12
  }>) => {
13
13
  $: import("vue").ComponentInternalInstance;
14
14
  $data: {};
@@ -56,7 +56,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
56
56
  } & {
57
57
  errorMsg: string;
58
58
  } & {
59
- onInvalidateUserTokens: Promise<void>;
59
+ onInvalidateUserTokens?: () => Promise<void>;
60
60
  }> & {
61
61
  "v-slots"?: {
62
62
  default?: import("vue").Slot;
@@ -1,6 +1,7 @@
1
1
  import { IIcon, IconBlueprint, ThemeContextType } from "@omnia/fx-models";
2
2
  import { DefineSlot } from "@omnia/fx/ux";
3
3
  import { VNodeChild } from "vue";
4
+ type IconStylePickerVariant = "dialog" | "editor" | "blade";
4
5
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
5
6
  "v-model"?: IconBlueprint;
6
7
  } & {
@@ -17,6 +18,8 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
17
18
  toned?: boolean;
18
19
  } & {
19
20
  enableDynamicColor?: boolean;
21
+ } & {
22
+ variant?: IconStylePickerVariant;
20
23
  } & {
21
24
  label?: string;
22
25
  } & DefineSlot<"activator", () => VNodeChild>>) => {
@@ -73,6 +76,8 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
73
76
  toned?: boolean;
74
77
  } & {
75
78
  enableDynamicColor?: boolean;
79
+ } & {
80
+ variant?: IconStylePickerVariant;
76
81
  } & {
77
82
  label?: string;
78
83
  } & DefineSlot<"activator", () => VNodeChild>> & {
@@ -81,7 +86,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
81
86
  } & {
82
87
  activator?: () => VNodeChild;
83
88
  };
84
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "label" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "themeType" | "defaultColorSchemaType" | "enableDynamicColor">;
89
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "label" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "themeType" | "defaultColorSchemaType" | "enableDynamicColor">;
85
90
  } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
86
91
  [key: string]: any;
87
92
  }>;
@@ -27,7 +27,7 @@ export declare function useThemeStyling(): {
27
27
  };
28
28
  };
29
29
  typography: {
30
- valueStylex: typeof typographyStylex.typographyStylexFromValue;
30
+ valueStylex: typeof typographyStylex.typographyStylexFromValueStylex;
31
31
  typeStylex: typeof typographyStylex.typographyTypeStylex;
32
32
  stylex: typeof typographyStylex.typographyStylex;
33
33
  valueStyling: (value: import("@omnia/fx-models").TypographyValue, blueprint: import("@omnia/fx-models").TypographyBlueprint) => string;
@@ -53,7 +53,9 @@ export declare function useThemeStyling(): {
53
53
  };
54
54
  blueprints: {
55
55
  button: typeof blueprintStyles.getButtonBlueprintStyling;
56
+ buttonStylex: typeof blueprintStylex.getButtonBlueprintStylex;
56
57
  icon: typeof blueprintStyles.getIconBlueprintStyling;
58
+ iconStyleX: typeof blueprintStylex.getIconBlueprintStylex;
57
59
  chip: typeof blueprintStyles.getChipBlueprintStyling;
58
60
  fill: typeof blueprintStyles.getBlueprintFillStyling;
59
61
  fillObject: typeof blueprintStyles.getBlueprintFillObject;
@@ -65,30 +67,10 @@ export declare function useThemeStyling(): {
65
67
  tab: typeof blueprintStyles.getBlueprintTabStyling;
66
68
  tabs: typeof blueprintStyles.getBlueprintTabsStyling;
67
69
  spacing: {
68
- innerPaddingStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<{
69
- className?: string;
70
- style?: Readonly<{
71
- [$$Key$$: string]: string | number;
72
- }>;
73
- }>;
74
- innerMarginStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<{
75
- className?: string;
76
- style?: Readonly<{
77
- [$$Key$$: string]: string | number;
78
- }>;
79
- }>;
80
- layoutPaddingStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<{
81
- className?: string;
82
- style?: Readonly<{
83
- [$$Key$$: string]: string | number;
84
- }>;
85
- }>;
86
- layoutMarginStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<{
87
- className?: string;
88
- style?: Readonly<{
89
- [$$Key$$: string]: string | number;
90
- }>;
91
- }>;
70
+ innerPaddingStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<import("../..").StylexType>;
71
+ innerMarginStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<import("../..").StylexType>;
72
+ layoutPaddingStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<import("../..").StylexType>;
73
+ layoutMarginStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => Readonly<import("../..").StylexType>;
92
74
  innerPadding: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => string;
93
75
  innerMargin: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => string;
94
76
  layoutPadding: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => string;
@@ -5,9 +5,9 @@ import { StylexType } from "internal/fx/ux/Styles.stylex";
5
5
  export declare namespace blueprintStylex {
6
6
  /**Text styling */
7
7
  function getBlueprintTextStylex(bluePrint: TextBlueprint, colors: ReturnType<typeof useColorSchemaStore>, blueprints: ReturnType<typeof useTypographyBlueprintStore>): Readonly<StylexType>;
8
- function getIconBlueprintStylex(bluePrint: IconBlueprint, colors: ReturnType<typeof useColorSchemaStore>, duoTone: boolean, nested?: boolean): string;
8
+ function getIconBlueprintStylex(bluePrint: IconBlueprint, colors: ReturnType<typeof useColorSchemaStore>, duoTone: boolean, nested?: boolean): Readonly<StylexType>;
9
9
  /**Button styling */
10
- function getButtonBlueprintStylex(bluePrint: ButtonBlueprint, colors: ReturnType<typeof useColorSchemaStore>): string;
10
+ function getButtonBlueprintStylex(bluePrint: ButtonBlueprint, colors: ReturnType<typeof useColorSchemaStore>): Readonly<StylexType>;
11
11
  }
12
12
  export declare namespace blueprintStyles {
13
13
  /**Border styling */
@@ -19,12 +19,7 @@ export declare namespace blueprintStyles {
19
19
  function getBlueprintFillStyling(definition: FillDefinitionValue, colors?: ReturnType<typeof useColorSchemaStore>): string;
20
20
  /**Spacing styling */
21
21
  function getBlueprintSpacingValue(value: any, type: SpacingBlueprintTypes, blueprint?: ReturnType<typeof useSpacingBlueprintStore>): number;
22
- function getBlueprintSpacingStylingx(value: Spacing | SpacingValue, type: SpacingBlueprintTypes, spacingType?: "margin" | "padding", blueprint?: ReturnType<typeof useSpacingBlueprintStore>): Readonly<{
23
- className?: string;
24
- style?: Readonly<{
25
- [$$Key$$: string]: string | number;
26
- }>;
27
- }>;
22
+ function getBlueprintSpacingStylingx(value: Spacing | SpacingValue, type: SpacingBlueprintTypes, spacingType?: "margin" | "padding", blueprint?: ReturnType<typeof useSpacingBlueprintStore>): Readonly<StylexType>;
28
23
  function getBlueprintSpacingStyling(value: Spacing | SpacingValue, type: SpacingBlueprintTypes, spacingType?: "margin" | "padding", blueprint?: ReturnType<typeof useSpacingBlueprintStore>): string;
29
24
  /**Button styling */
30
25
  function getButtonBlueprintStyling(bluePrint: ButtonBlueprint, colors: ReturnType<typeof useColorSchemaStore>): string;
@@ -6,11 +6,6 @@ export interface NumericalSpacing {
6
6
  left?: number;
7
7
  }
8
8
  export declare namespace spacingStyling {
9
- function createSpacingx(spacing: NumericalSpacing, type: SpacingTypes): Readonly<{
10
- className?: string;
11
- style?: Readonly<{
12
- [$$Key$$: string]: string | number;
13
- }>;
14
- }>;
9
+ function createSpacingx(spacing: NumericalSpacing, type: SpacingTypes): Readonly<import("internal/fx/ux/Styles.stylex").StylexType>;
15
10
  function createSpacing(spacing: NumericalSpacing, type: SpacingTypes): string;
16
11
  }
@@ -27,7 +27,7 @@ export declare namespace typographyStylex {
27
27
  };
28
28
  typographyType: (typographyType: string) => any;
29
29
  };
30
- function typographyStylexFromValue(value: TypographyValue, blueprint: TypographyBlueprint): Readonly<import("@omnia/fx/ux").StylexType>;
30
+ function typographyStylexFromValueStylex(value: TypographyValue, blueprint: TypographyBlueprint): Readonly<import("@omnia/fx/ux").StylexType>;
31
31
  }
32
32
  export declare const typographyStyles: {
33
33
  typographyTypeStyling: typeof typographyTypeStyling;
@@ -0,0 +1,2 @@
1
+ import { Editor } from "@toast-ui/editor";
2
+ export declare function applyEditorScrollPatch(editor: Editor): (text: any) => void;
@@ -61,7 +61,9 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
61
61
  persistentHint?: boolean;
62
62
  } & {
63
63
  hideSelected?: boolean;
64
- } & DefineEmit<"update:modelValue", (value: TModel) => void, "Emit a click event."> & DefineEmit<"click:button", (value: any) => void, "Emit a click event."> & DefineEmit<"update:search", (value: string) => void, "Emit when search input value is changed. Only works when searchable prop is true."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineSlot<"chip", (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild> & DefineSlot<"selection", (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild> & DefineSlot<"item", (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild> & DefineSlot<"append-item", () => VNodeChild>>) => {
64
+ } & DefineEmit<"update:modelValue", (value: TModel) => void, "Emit a click event."> & DefineEmit<"click:button", (value: any) => void, "Emit a click event."> & {
65
+ errorMessages?: string | readonly string[];
66
+ } & DefineEmit<"update:search", (value: string) => void, "Emit when search input value is changed. Only works when searchable prop is true."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineSlot<"chip", (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild> & DefineSlot<"selection", (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild> & DefineSlot<"item", (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild> & DefineSlot<"append-item", () => VNodeChild>>) => {
65
67
  $: import("vue").ComponentInternalInstance;
66
68
  $data: {};
67
69
  $props: {};
@@ -151,7 +153,9 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
151
153
  persistentHint?: boolean;
152
154
  } & {
153
155
  hideSelected?: boolean;
154
- } & DefineEmit<"update:modelValue", (value: TModel) => void, "Emit a click event."> & DefineEmit<"click:button", (value: any) => void, "Emit a click event."> & DefineEmit<"update:search", (value: string) => void, "Emit when search input value is changed. Only works when searchable prop is true."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineSlot<"chip", (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild> & DefineSlot<"selection", (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild> & DefineSlot<"item", (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild> & DefineSlot<"append-item", () => VNodeChild>> & {
156
+ } & DefineEmit<"update:modelValue", (value: TModel) => void, "Emit a click event."> & DefineEmit<"click:button", (value: any) => void, "Emit a click event."> & {
157
+ errorMessages?: string | readonly string[];
158
+ } & DefineEmit<"update:search", (value: string) => void, "Emit when search input value is changed. Only works when searchable prop is true."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineSlot<"chip", (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild> & DefineSlot<"selection", (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild> & DefineSlot<"item", (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild> & DefineSlot<"append-item", () => VNodeChild>> & {
155
159
  "v-slots"?: {
156
160
  default?: import("vue").Slot;
157
161
  } & {
@@ -165,7 +169,7 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
165
169
  "onUpdate:focused"?: (value: boolean) => any;
166
170
  "onClick:button"?: (value: any) => any;
167
171
  "onUpdate:search"?: (value: string) => any;
168
- } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "container" | "class" | "label" | "multiple" | "disabled" | "colorSchemaType" | "toned" | "items" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "loading" | "searchable" | "rules" | "hint" | "persistentHint" | "readonly" | "clearable" | "itemValue" | "returnObject" | "hideNoData" | "itemTitle" | "menuIcon" | "hideSelected">;
172
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "container" | "class" | "label" | "multiple" | "disabled" | "colorSchemaType" | "toned" | "items" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "loading" | "searchable" | "rules" | "hint" | "persistentHint" | "readonly" | "errorMessages" | "clearable" | "itemValue" | "returnObject" | "hideNoData" | "itemTitle" | "menuIcon" | "hideSelected">;
169
173
  } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
170
174
  [key: string]: any;
171
175
  }>;
@@ -2,10 +2,5 @@
2
2
  * Styles for the CommandPalette component
3
3
  */
4
4
  export declare const TextStyles: {
5
- truncateText: (lines: number) => Readonly<{
6
- className?: string;
7
- style?: Readonly<{
8
- [$$Key$$: string]: string | number;
9
- }>;
10
- }>;
5
+ truncateText: (lines: number) => Readonly<import("../../Styles.stylex").StylexType>;
11
6
  };
@@ -1,21 +1,27 @@
1
- export declare const treeViewStylex: Readonly<{
2
- readonly titleWrapper: (otreeTitleHoverBackgroundColor: string) => readonly [Readonly<{
3
- display: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"display", "flex">;
4
- flexDirection: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"flexDirection", "row">;
5
- alignItems: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"alignItems", "center">;
6
- background: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"background", any>;
7
- cursor: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"cursor", "pointer">;
8
- }>, typeof import("@stylexjs/stylex/lib/StyleXTypes").StyleXInlineStylesTag];
9
- readonly containerWrapper: (otreeContainerWrapperBackgroundColor: string) => readonly [Readonly<{
10
- background: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"background", string>;
11
- }>, typeof import("@stylexjs/stylex/lib/StyleXTypes").StyleXInlineStylesTag];
12
- readonly expandedAnimation: Readonly<{
13
- readonly transition: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"transition", "0.4s">;
1
+ export declare const treeViewStylex: {
2
+ titleWrapper: (hoverBackgroundColor: string) => Readonly<import("../../Styles.stylex").StylexType>;
3
+ containerWrapper: (background: string) => Readonly<{
4
+ className?: string;
5
+ style?: Readonly<{
6
+ [$$Key$$: string]: string | number;
7
+ }>;
14
8
  }>;
15
- readonly expandedIcon: Readonly<{
16
- readonly transform: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"transform", "rotate(90deg)">;
9
+ expandedAnimation: Readonly<{
10
+ className?: string;
11
+ style?: Readonly<{
12
+ [$$Key$$: string]: string | number;
13
+ }>;
17
14
  }>;
18
- readonly collapsedIcon: Readonly<{
19
- readonly transform: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"transform", "rotate(0deg)">;
15
+ expandedIcon: Readonly<{
16
+ className?: string;
17
+ style?: Readonly<{
18
+ [$$Key$$: string]: string | number;
19
+ }>;
20
20
  }>;
21
- }>;
21
+ collapsedIcon: Readonly<{
22
+ className?: string;
23
+ style?: Readonly<{
24
+ [$$Key$$: string]: string | number;
25
+ }>;
26
+ }>;
27
+ };
@@ -1,88 +1,64 @@
1
1
  import { UserIdentity } from "@omnia/fx-models";
2
- declare const _default: {
3
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
- removeElementAfterClosing: {
5
- type: BooleanConstructor;
6
- };
7
- "onUpdate:user": {
8
- type: import("vue").PropType<(value: UserIdentity) => any>;
9
- };
10
- "v-model:user": {
11
- type: import("vue").PropType<UserIdentity>;
12
- required: false;
13
- };
14
- user: {
15
- type: import("vue").PropType<UserIdentity>;
16
- required: false;
17
- };
18
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
19
- removeElementAfterClosing: {
20
- type: BooleanConstructor;
21
- };
22
- "onUpdate:user": {
23
- type: import("vue").PropType<(value: UserIdentity) => any>;
24
- };
25
- "v-model:user": {
26
- type: import("vue").PropType<UserIdentity>;
27
- required: false;
28
- };
29
- user: {
30
- type: import("vue").PropType<UserIdentity>;
31
- required: false;
32
- };
33
- }>>, {
34
- removeElementAfterClosing: boolean;
35
- }, true, {}, {}, {
36
- P: {};
37
- B: {};
38
- D: {};
39
- C: {};
40
- M: {};
41
- Defaults: {};
42
- }, Readonly<import("vue").ExtractPropTypes<{
43
- removeElementAfterClosing: {
44
- type: BooleanConstructor;
45
- };
46
- "onUpdate:user": {
47
- type: import("vue").PropType<(value: UserIdentity) => any>;
48
- };
49
- "v-model:user": {
50
- type: import("vue").PropType<UserIdentity>;
51
- required: false;
52
- };
53
- user: {
54
- type: import("vue").PropType<UserIdentity>;
55
- required: false;
56
- };
57
- }>>, () => JSX.Element, {}, {}, {}, {
58
- removeElementAfterClosing: boolean;
59
- }>;
60
- __isFragment?: never;
61
- __isTeleport?: never;
62
- __isSuspense?: never;
63
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
64
- removeElementAfterClosing: {
65
- type: BooleanConstructor;
66
- };
67
- "onUpdate:user": {
68
- type: import("vue").PropType<(value: UserIdentity) => any>;
2
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
3
+ "v-model"?: UserIdentity;
4
+ } & {
5
+ "onUpdate:modelValue"?: (value: UserIdentity) => void;
6
+ } & {
7
+ modelValue?: UserIdentity;
8
+ } & {
9
+ removeElementAfterClosing?: boolean;
10
+ }>) => {
11
+ $: import("vue").ComponentInternalInstance;
12
+ $data: {};
13
+ $props: {};
14
+ $attrs: {
15
+ [x: string]: unknown;
69
16
  };
70
- "v-model:user": {
71
- type: import("vue").PropType<UserIdentity>;
72
- required: false;
17
+ $refs: {
18
+ [x: string]: unknown;
73
19
  };
74
- user: {
75
- type: import("vue").PropType<UserIdentity>;
76
- required: false;
20
+ $slots: Readonly<{
21
+ [name: string]: import("vue").Slot<any>;
22
+ }>;
23
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
24
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
25
+ $emit: (event: string, ...args: any[]) => void;
26
+ $el: any;
27
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
28
+ beforeCreate?: (() => void) | (() => void)[];
29
+ created?: (() => void) | (() => void)[];
30
+ beforeMount?: (() => void) | (() => void)[];
31
+ mounted?: (() => void) | (() => void)[];
32
+ beforeUpdate?: (() => void) | (() => void)[];
33
+ updated?: (() => void) | (() => void)[];
34
+ activated?: (() => void) | (() => void)[];
35
+ deactivated?: (() => void) | (() => void)[];
36
+ beforeDestroy?: (() => void) | (() => void)[];
37
+ beforeUnmount?: (() => void) | (() => void)[];
38
+ destroyed?: (() => void) | (() => void)[];
39
+ unmounted?: (() => void) | (() => void)[];
40
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
41
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
42
+ 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)[];
77
43
  };
78
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
79
- removeElementAfterClosing: boolean;
80
- }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
81
- propsDefinition: Omit<Readonly<{} & {
82
- user?: UserIdentity;
44
+ $forceUpdate: () => void;
45
+ $nextTick: typeof import("vue").nextTick;
46
+ $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;
47
+ } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
48
+ propsDefinition: import("@omnia/fx/ux").ExtractProps<{
49
+ "v-model"?: UserIdentity;
50
+ } & {
51
+ "onUpdate:modelValue"?: (value: UserIdentity) => void;
52
+ } & {
53
+ modelValue?: UserIdentity;
54
+ } & {
83
55
  removeElementAfterClosing?: boolean;
84
- "onUpdate:user"?: (value: UserIdentity) => any;
85
- "v-model:user"?: UserIdentity;
86
- }>, never>;
87
- };
56
+ }> & {
57
+ "v-slots"?: {
58
+ default?: import("vue").Slot;
59
+ } & {};
60
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "removeElementAfterClosing">;
61
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
62
+ [key: string]: any;
63
+ }>;
88
64
  export default _default;
@@ -1,6 +1,7 @@
1
1
  import { ToolbarExtension } from "../../ToolbarExtension";
2
- import { HashTagToolbarProperties, HashTagMenuBar, EditorHashTagMenuBar, IHashTagMenuBarDefinition, TipTapEditor, Tag, PromotedTagOptions } from "../../../../models";
2
+ import { HashTagToolbarProperties, HashTagMenuBar, EditorHashTagMenuBar, IHashTagMenuBarDefinition, Tag, PromotedTagOptions } from "../../../../models";
3
3
  import { RichTextContentExtensionData } from "../../RichTextContentHelper";
4
+ import { Editor } from "@tiptap/vue-3";
4
5
  export declare class HashTagMenuBarDefinition implements IHashTagMenuBarDefinition {
5
6
  constructor();
6
7
  _items: Array<Tag>;
@@ -21,7 +22,7 @@ export declare class HashTagMenuBarDefinition implements IHashTagMenuBarDefiniti
21
22
  }
22
23
  export default class HashTagToolbar extends ToolbarExtension implements HashTagToolbarProperties {
23
24
  menubar: EditorHashTagMenuBar;
24
- editor: TipTapEditor;
25
+ editor: Editor;
25
26
  onContentChanged?: (content: string, extensionName?: string, data?: RichTextContentExtensionData, pushChange?: boolean) => void;
26
27
  menuHandler: (menubar: IHashTagMenuBarDefinition) => void;
27
28
  selectTag: (tag: Tag) => void;