@omnia/fx 8.0.552-dev → 8.0.555-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 (137) 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/manifests/omnia.vendor.manifest.json +1 -1
  3. package/internal-do-not-import-from-here/ux/TextStyling.d.ts +51 -0
  4. package/internal-do-not-import-from-here/ux/UxModels.d.ts +2 -0
  5. package/internal-do-not-import-from-here/ux/app/management/blades/EditAliasBlade.d.ts +1 -1
  6. package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/componentblueprints/store/ComponentEditorStore.d.ts +68 -8
  7. package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/container-fills/store/ContainerFillsEditorStore.d.ts +2 -0
  8. package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/spacing/store/SpacingEditorStore.d.ts +4 -1
  9. package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/text-fills/store/TextFillsEditorStore.d.ts +2 -0
  10. package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/themes/loc/localize.d.ts +14 -0
  11. package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/themes/store/ThemeEditorStore.d.ts +90 -8
  12. package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/typography/store/TypographyEditorStore.d.ts +62 -39
  13. package/internal-do-not-import-from-here/ux/aurora/components/backgroundstyle/BackgroundStyleViewer.d.ts +20 -0
  14. package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/store/ButtonStylePickerStore.d.ts +3 -0
  15. package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/DynamicColorIndicator.d.ts +3 -1
  16. package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingPicker3.d.ts +3 -3
  17. package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/store/SpacingPickerStore.d.ts +14 -3
  18. package/internal-do-not-import-from-here/ux/aurora/components/themepicker/store/ThemeDefinitionPickerStore.d.ts +3 -0
  19. package/internal-do-not-import-from-here/ux/aurora/designkits_old/index.d.ts +0 -0
  20. package/internal-do-not-import-from-here/ux/aurora/designkits_old/pages/DefinitionRegistrations.d.ts +0 -0
  21. package/internal-do-not-import-from-here/ux/aurora/designkits_old/pages/definitions/headers/HeaderWithImage.d.ts +0 -0
  22. package/internal-do-not-import-from-here/ux/aurora/designkits_old/useDesignKits.d.ts +0 -0
  23. package/internal-do-not-import-from-here/ux/aurora/index.d.ts +1 -1
  24. package/internal-do-not-import-from-here/ux/aurora/store/FontLoader.d.ts +2 -0
  25. package/internal-do-not-import-from-here/ux/aurora/store/FontStore.d.ts +18 -0
  26. package/internal-do-not-import-from-here/ux/aurora/store/TemplateRegistrationStore.d.ts +20 -0
  27. package/internal-do-not-import-from-here/ux/aurora/store/ThemeStorage.d.ts +2 -1
  28. package/internal-do-not-import-from-here/ux/aurora/store/index.d.ts +3 -0
  29. package/internal-do-not-import-from-here/ux/aurora/styling/styles/BlueprintValues.d.ts +2 -2
  30. package/internal-do-not-import-from-here/ux/aurora/theme-templates/DefaultThemeBlueprints.d.ts +85 -0
  31. package/internal-do-not-import-from-here/ux/aurora/theme-templates/DefaultThemeTemplate.d.ts +2 -0
  32. package/internal-do-not-import-from-here/ux/aurora/theme-templates/color-schemas/BlueprintColorBase.d.ts +64 -0
  33. package/internal-do-not-import-from-here/ux/aurora/theme-templates/components/ComponentBlueprintBase.d.ts +2 -0
  34. package/internal-do-not-import-from-here/ux/aurora/theme-templates/components/ComponentBlueprints.d.ts +12 -0
  35. package/internal-do-not-import-from-here/ux/aurora/theme-templates/components/index.d.ts +1 -0
  36. package/internal-do-not-import-from-here/ux/aurora/theme-templates/container-fills/DefaultContainerFills.d.ts +2 -0
  37. package/internal-do-not-import-from-here/ux/aurora/theme-templates/index.d.ts +3 -0
  38. package/internal-do-not-import-from-here/ux/aurora/theme-templates/presets/index.d.ts +1 -0
  39. package/internal-do-not-import-from-here/ux/aurora/theme-templates/spacing/DefaultSpacingBlueprint.d.ts +2 -0
  40. package/internal-do-not-import-from-here/ux/aurora/theme-templates/text-fills/DefaultTextFills.d.ts +2 -0
  41. package/internal-do-not-import-from-here/ux/aurora/theme-templates/themes/DefaultTheme.d.ts +6 -0
  42. package/internal-do-not-import-from-here/ux/aurora/theme-templates/typography/DefaultTypography.d.ts +2 -0
  43. package/internal-do-not-import-from-here/ux/dialog/Dialog.d.ts +1 -1
  44. package/internal-do-not-import-from-here/ux/editorchrome/buttons/ToolbarButton.d.ts +3 -2
  45. package/internal-do-not-import-from-here/ux/editorchrome/hooks/useRenderActions.d.ts +2 -0
  46. package/internal-do-not-import-from-here/ux/editorchrome/models/EditorChromeRegistration.d.ts +4 -0
  47. package/internal-do-not-import-from-here/ux/icon/Icon.d.ts +1 -1
  48. package/internal-do-not-import-from-here/ux/iconpicker/Icons.d.ts +1 -1
  49. package/internal-do-not-import-from-here/ux/journey/JourneyDocumentation.d.ts +4 -1
  50. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Layout.d.ts +7 -0
  51. package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.d.ts +11 -427
  52. package/internal-do-not-import-from-here/ux/markdown/MarkdownRenderer.d.ts +9 -74
  53. package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.d.ts +2 -2
  54. package/internal-do-not-import-from-here/ux/oxide/avatar/AvatarIndicator.d.ts +10 -0
  55. package/internal-do-not-import-from-here/ux/oxide/avatar/AvatarIndicator.stylex.d.ts +5 -0
  56. package/internal-do-not-import-from-here/ux/oxide/infinite-scroll/InfiniteScroll.d.ts +2 -2
  57. package/internal-do-not-import-from-here/ux/oxide/picker/stores/PickerStore.d.ts +9 -0
  58. package/internal-do-not-import-from-here/ux/oxide/tab/Tab.d.ts +1 -1
  59. package/internal-do-not-import-from-here/ux/profilecard/ProfileCardRenderer.d.ts +7 -5
  60. package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditor.css.d.ts +0 -54
  61. package/internal-do-not-import-from-here/ux/richtexteditorrenderer/RichTextEditorRenderer.css.d.ts +1 -51
  62. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +7 -0
  63. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronConstants.d.ts +1 -0
  64. package/internal-do-not-import-from-here/ux/velcron/editor/models/ComponentDescriptors.d.ts +1 -0
  65. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Markdown.d.ts +53 -0
  66. package/internal-do-not-import-from-here/wctypings.d.ts +1 -1
  67. package/package.json +2 -2
  68. package/internal-do-not-import-from-here/ux/aurora/defaultblueprints/BlueprintColorBase.d.ts +0 -2
  69. package/internal-do-not-import-from-here/ux/aurora/defaultblueprints/ColorBlueprintDark.d.ts +0 -2
  70. package/internal-do-not-import-from-here/ux/aurora/defaultblueprints/ColorBlueprintLight.d.ts +0 -2
  71. package/internal-do-not-import-from-here/ux/aurora/defaultblueprints/DefaultSpacingBlueprint.d.ts +0 -2
  72. package/internal-do-not-import-from-here/ux/aurora/defaultblueprints/DefaultTypography.d.ts +0 -2
  73. package/internal-do-not-import-from-here/ux/aurora/defaultblueprints/components/BlueprintStrategyBase.d.ts +0 -2
  74. package/internal-do-not-import-from-here/ux/aurora/defaultblueprints/components/ComponentBlueprintStrategy.d.ts +0 -10
  75. package/internal-do-not-import-from-here/ux/aurora/defaultblueprints/components/index.d.ts +0 -1
  76. package/internal-do-not-import-from-here/ux/aurora/defaultblueprints/index.d.ts +0 -6
  77. package/internal-do-not-import-from-here/ux/aurora/designkits/editor/ThemeRegistrations.d.ts +0 -1
  78. package/internal-do-not-import-from-here/ux/aurora/designkits/index.d.ts +0 -3
  79. package/internal-do-not-import-from-here/ux/aurora/designkits/useDesignKits.d.ts +0 -58
  80. /package/internal-do-not-import-from-here/ux/{layoutcanvas/editor/settings/section/General.d.ts → aurora/admin/theme-designer/themes/EditIconStyleBlade.d.ts} +0 -0
  81. /package/internal-do-not-import-from-here/ux/aurora/{RegistrationHandlerTheming.d.ts → api/RegistrationHandlerTheming.d.ts} +0 -0
  82. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/core/BorderStyleDefinitions.d.ts +0 -0
  83. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/core/FillStyleDefinitions.d.ts +0 -0
  84. /package/internal-do-not-import-from-here/ux/aurora/{admin/theme-designer/componentblueprints/blades/BlueprintPreview.d.ts → designkits_old/core/ThemeRegistrations.d.ts} +0 -0
  85. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/default/DefinitionRegistrations.d.ts +0 -0
  86. /package/internal-do-not-import-from-here/ux/aurora/{designkits/documentation/ApiRegistrations.d.ts → designkits_old/default/ThemeRegistrations.d.ts} +0 -0
  87. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/default/definitions/actions/Todo.d.ts +0 -0
  88. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/default/definitions/actions/index.d.ts +0 -0
  89. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/default/definitions/cards/BannerImageTop.d.ts +0 -0
  90. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/default/definitions/cards/RollupAvatar.d.ts +0 -0
  91. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/default/definitions/cards/RollupImageLarge.d.ts +0 -0
  92. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/default/definitions/cards/RollupImageSmall.d.ts +0 -0
  93. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/default/definitions/cards/RollupImageTop.d.ts +0 -0
  94. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/default/definitions/cards/RollupImageTopAvatar.d.ts +0 -0
  95. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/default/definitions/cards/index.d.ts +0 -0
  96. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/default/definitions/headers/BlockTextIcon.d.ts +0 -0
  97. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/default/definitions/headers/Pageheader.d.ts +0 -0
  98. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/default/definitions/headers/index.d.ts +0 -0
  99. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/default/definitions/index.d.ts +0 -0
  100. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/default/index.d.ts +0 -0
  101. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/default/themes/ThemeDefinitions.d.ts +0 -0
  102. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/default/themes/index.d.ts +0 -0
  103. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/default/useDefaultDesignKit.d.ts +0 -0
  104. /package/internal-do-not-import-from-here/ux/aurora/{designkits/pages/DefinitionRegistrations.d.ts → designkits_old/documentation/ApiRegistrations.d.ts} +0 -0
  105. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/documentation/index.d.ts +0 -0
  106. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/documentation/themes/BlueprintsTypography.d.ts +0 -0
  107. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/documentation/themes/ThemeDefinitions.d.ts +0 -0
  108. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/documentation/themes/index.d.ts +0 -0
  109. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/documentation/useDocumentationDesignKit.d.ts +0 -0
  110. /package/internal-do-not-import-from-here/ux/aurora/{designkits/pages/definitions/headers/HeaderWithImage.d.ts → designkits_old/editor/ThemeRegistrations.d.ts} +0 -0
  111. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/editor/index.d.ts +0 -0
  112. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/editor/shared.d.ts +0 -0
  113. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/editor/themes/BlueprintsTypography.d.ts +0 -0
  114. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/editor/themes/ThemeDefinitions.d.ts +0 -0
  115. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/editor/themes/index.d.ts +0 -0
  116. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/editor/useEditorDesignKit.d.ts +0 -0
  117. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/pages/definitions/property/PropertiesWithColumLayout.d.ts +0 -0
  118. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/pages/definitions/property/PropertiesWithRowLayout.d.ts +0 -0
  119. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/shared/BlueprintsTemplates.d.ts +0 -0
  120. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/shared/ButtonStyleBlueprints.d.ts +0 -0
  121. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/shared/ChromeStyleBlueprints.d.ts +0 -0
  122. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/shared/Colors.d.ts +0 -0
  123. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/shared/FillStyleDefinitions.d.ts +0 -0
  124. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/shared/SpacingBlueprint.d.ts +0 -0
  125. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/shared/TabsStyleBlueprints.d.ts +0 -0
  126. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/shared/ThemeDefinitionInstance.d.ts +0 -0
  127. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/shared/TypographyBlueprints.d.ts +0 -0
  128. /package/internal-do-not-import-from-here/ux/aurora/{designkits → designkits_old}/shared/index.d.ts +0 -0
  129. /package/internal-do-not-import-from-here/ux/aurora/{designkits/core/ThemeRegistrations.d.ts → store/RegisterThemeProvider.d.ts} +0 -0
  130. /package/internal-do-not-import-from-here/ux/aurora/{designkits/default/ThemeRegistrations.d.ts → theme-templates/Registrations.d.ts} +0 -0
  131. /package/internal-do-not-import-from-here/ux/aurora/{defaultblueprints → theme-templates}/components/FullBlueprint.d.ts +0 -0
  132. /package/internal-do-not-import-from-here/ux/aurora/{defaultblueprints → theme-templates}/components/LargeBlueprint.d.ts +0 -0
  133. /package/internal-do-not-import-from-here/ux/aurora/{defaultblueprints → theme-templates}/components/MediumBlueprint.d.ts +0 -0
  134. /package/internal-do-not-import-from-here/ux/aurora/{defaultblueprints → theme-templates}/components/NoneBlueprint.d.ts +0 -0
  135. /package/internal-do-not-import-from-here/ux/aurora/{defaultblueprints → theme-templates}/components/SmallBlueprint.d.ts +0 -0
  136. /package/internal-do-not-import-from-here/ux/aurora/{defaultblueprints → theme-templates}/components/XSmallBlueprint.d.ts +0 -0
  137. /package/internal-do-not-import-from-here/ux/aurora/{defaultblueprints → theme-templates/presets}/ButtonBlueprintPresets.d.ts +0 -0
@@ -1,429 +1,13 @@
1
- import { TextBlueprint, TextStyleSizes, TextStyleTypes } from "@omnia/fx-models";
1
+ import { DefinePropTheming, DefineProp, DefineVModel } from "@omnia/fx/ux";
2
+ import { TextBlueprint, TextStyleSize, TextStyleSizes, TextStyleType, TextStyleTypes } from "@omnia/fx-models";
2
3
  import { useMarkdownEditorStore } from "./stores/MarkdownEditorStore";
3
- declare const _default: {
4
- new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
5
- plugins: {
6
- type: import("vue").PropType<[object]>;
7
- };
8
- getApi: {
9
- type: import("vue").PropType<(store: ReturnType<typeof useMarkdownEditorStore>) => void>;
10
- };
11
- blueprint: {
12
- type: import("vue").PropType<TextBlueprint>;
13
- };
14
- size: {
15
- type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TextStyleSizes | "variant1" | "variant2" | "variant3" | "variant4" | "variant5" | "variant6" | "variant7" | "variant8">;
16
- };
17
- typography: {
18
- type: import("vue").PropType<"display" | "headline" | "title" | "text" | "label" | "variants" | TextStyleTypes>;
19
- };
20
- placeholder: {
21
- type: import("vue").PropType<string>;
22
- };
23
- noWrap: {
24
- type: import("vue").PropType<boolean>;
25
- };
26
- toned: {
27
- type: import("vue").PropType<boolean>;
28
- };
29
- toolbarContainer: {
30
- type: import("vue").PropType<boolean>;
31
- };
32
- hideToolbar: {
33
- type: import("vue").PropType<boolean>;
34
- };
35
- colorSchemaType: {
36
- type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType>;
37
- required: boolean;
38
- };
39
- container: {
40
- type: BooleanConstructor;
41
- required: boolean;
42
- };
43
- colors: {
44
- type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
45
- required: boolean;
46
- };
47
- "onUpdate:modelValue": {
48
- type: import("vue").PropType<(value: string) => any | void>;
49
- };
50
- "v-model": {
51
- type: import("vue").PropType<string>;
52
- required: false;
53
- };
54
- modelValue: {
55
- type: import("vue").PropType<string>;
56
- required: false;
57
- };
58
- name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
59
- type: import("vue").PropType<(value: string) => any | void>;
60
- }; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
61
- type: import("vue").PropType<string>;
62
- required: false;
63
- }; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
64
- type: import("vue").PropType<string>;
65
- required: false;
66
- }; } & {
67
- require(): import("../DefineVueTypings").DefinePropModelRequire<TName, string, {
68
- "onUpdate:modelValue": {
69
- type: import("vue").PropType<(value: string) => any | void>;
70
- };
71
- } & {
72
- "v-model": {
73
- type: import("vue").PropType<string>;
74
- required: false;
75
- };
76
- } & {
77
- modelValue: {
78
- type: import("vue").PropType<string>;
79
- required: false;
80
- };
81
- }>;
82
- defaultValue(value?: string): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, string, {
83
- "onUpdate:modelValue": {
84
- type: import("vue").PropType<(value: string) => any | void>;
85
- };
86
- } & {
87
- "v-model": {
88
- type: import("vue").PropType<string>;
89
- required: false;
90
- };
91
- } & {
92
- modelValue: {
93
- type: import("vue").PropType<string>;
94
- required: false;
95
- };
96
- }, false>;
97
- doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, string, {
98
- "onUpdate:modelValue": {
99
- type: import("vue").PropType<(value: string) => any | void>;
100
- };
101
- } & {
102
- "v-model": {
103
- type: import("vue").PropType<string>;
104
- required: false;
105
- };
106
- } & {
107
- modelValue: {
108
- type: import("vue").PropType<string>;
109
- required: false;
110
- };
111
- }>;
112
- };
113
- }>>, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
114
- container: boolean;
115
- }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
116
- P: {};
117
- B: {};
118
- D: {};
119
- C: {};
120
- M: {};
121
- Defaults: {};
122
- }, Readonly<import("vue").ExtractPropTypes<{
123
- plugins: {
124
- type: import("vue").PropType<[object]>;
125
- };
126
- getApi: {
127
- type: import("vue").PropType<(store: ReturnType<typeof useMarkdownEditorStore>) => void>;
128
- };
129
- blueprint: {
130
- type: import("vue").PropType<TextBlueprint>;
131
- };
132
- size: {
133
- type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TextStyleSizes | "variant1" | "variant2" | "variant3" | "variant4" | "variant5" | "variant6" | "variant7" | "variant8">;
134
- };
135
- typography: {
136
- type: import("vue").PropType<"display" | "headline" | "title" | "text" | "label" | "variants" | TextStyleTypes>;
137
- };
138
- placeholder: {
139
- type: import("vue").PropType<string>;
140
- };
141
- noWrap: {
142
- type: import("vue").PropType<boolean>;
143
- };
144
- toned: {
145
- type: import("vue").PropType<boolean>;
146
- };
147
- toolbarContainer: {
148
- type: import("vue").PropType<boolean>;
149
- };
150
- hideToolbar: {
151
- type: import("vue").PropType<boolean>;
152
- };
153
- colorSchemaType: {
154
- type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType>;
155
- required: boolean;
156
- };
157
- container: {
158
- type: BooleanConstructor;
159
- required: boolean;
160
- };
161
- colors: {
162
- type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
163
- required: boolean;
164
- };
165
- "onUpdate:modelValue": {
166
- type: import("vue").PropType<(value: string) => any | void>;
167
- };
168
- "v-model": {
169
- type: import("vue").PropType<string>;
170
- required: false;
171
- };
172
- modelValue: {
173
- type: import("vue").PropType<string>;
174
- required: false;
175
- };
176
- name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
177
- type: import("vue").PropType<(value: string) => any | void>;
178
- }; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
179
- type: import("vue").PropType<string>;
180
- required: false;
181
- }; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
182
- type: import("vue").PropType<string>;
183
- required: false;
184
- }; } & {
185
- require(): import("../DefineVueTypings").DefinePropModelRequire<TName, string, {
186
- "onUpdate:modelValue": {
187
- type: import("vue").PropType<(value: string) => any | void>;
188
- };
189
- } & {
190
- "v-model": {
191
- type: import("vue").PropType<string>;
192
- required: false;
193
- };
194
- } & {
195
- modelValue: {
196
- type: import("vue").PropType<string>;
197
- required: false;
198
- };
199
- }>;
200
- defaultValue(value?: string): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, string, {
201
- "onUpdate:modelValue": {
202
- type: import("vue").PropType<(value: string) => any | void>;
203
- };
204
- } & {
205
- "v-model": {
206
- type: import("vue").PropType<string>;
207
- required: false;
208
- };
209
- } & {
210
- modelValue: {
211
- type: import("vue").PropType<string>;
212
- required: false;
213
- };
214
- }, false>;
215
- doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, string, {
216
- "onUpdate:modelValue": {
217
- type: import("vue").PropType<(value: string) => any | void>;
218
- };
219
- } & {
220
- "v-model": {
221
- type: import("vue").PropType<string>;
222
- required: false;
223
- };
224
- } & {
225
- modelValue: {
226
- type: import("vue").PropType<string>;
227
- required: false;
228
- };
229
- }>;
230
- };
231
- }>>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {
232
- container: boolean;
233
- }>;
234
- __isFragment?: never;
235
- __isTeleport?: never;
236
- __isSuspense?: never;
237
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
238
- plugins: {
239
- type: import("vue").PropType<[object]>;
240
- };
241
- getApi: {
242
- type: import("vue").PropType<(store: ReturnType<typeof useMarkdownEditorStore>) => void>;
243
- };
244
- blueprint: {
245
- type: import("vue").PropType<TextBlueprint>;
246
- };
247
- size: {
248
- type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TextStyleSizes | "variant1" | "variant2" | "variant3" | "variant4" | "variant5" | "variant6" | "variant7" | "variant8">;
249
- };
250
- typography: {
251
- type: import("vue").PropType<"display" | "headline" | "title" | "text" | "label" | "variants" | TextStyleTypes>;
252
- };
253
- placeholder: {
254
- type: import("vue").PropType<string>;
255
- };
256
- noWrap: {
257
- type: import("vue").PropType<boolean>;
258
- };
259
- toned: {
260
- type: import("vue").PropType<boolean>;
261
- };
262
- toolbarContainer: {
263
- type: import("vue").PropType<boolean>;
264
- };
265
- hideToolbar: {
266
- type: import("vue").PropType<boolean>;
267
- };
268
- colorSchemaType: {
269
- type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType>;
270
- required: boolean;
271
- };
272
- container: {
273
- type: BooleanConstructor;
274
- required: boolean;
275
- };
276
- colors: {
277
- type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
278
- required: boolean;
279
- };
280
- "onUpdate:modelValue": {
281
- type: import("vue").PropType<(value: string) => any | void>;
282
- };
283
- "v-model": {
284
- type: import("vue").PropType<string>;
285
- required: false;
286
- };
287
- modelValue: {
288
- type: import("vue").PropType<string>;
289
- required: false;
290
- };
291
- name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
292
- type: import("vue").PropType<(value: string) => any | void>;
293
- }; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
294
- type: import("vue").PropType<string>;
295
- required: false;
296
- }; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
297
- type: import("vue").PropType<string>;
298
- required: false;
299
- }; } & {
300
- require(): import("../DefineVueTypings").DefinePropModelRequire<TName, string, {
301
- "onUpdate:modelValue": {
302
- type: import("vue").PropType<(value: string) => any | void>;
303
- };
304
- } & {
305
- "v-model": {
306
- type: import("vue").PropType<string>;
307
- required: false;
308
- };
309
- } & {
310
- modelValue: {
311
- type: import("vue").PropType<string>;
312
- required: false;
313
- };
314
- }>;
315
- defaultValue(value?: string): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, string, {
316
- "onUpdate:modelValue": {
317
- type: import("vue").PropType<(value: string) => any | void>;
318
- };
319
- } & {
320
- "v-model": {
321
- type: import("vue").PropType<string>;
322
- required: false;
323
- };
324
- } & {
325
- modelValue: {
326
- type: import("vue").PropType<string>;
327
- required: false;
328
- };
329
- }, false>;
330
- doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, string, {
331
- "onUpdate:modelValue": {
332
- type: import("vue").PropType<(value: string) => any | void>;
333
- };
334
- } & {
335
- "v-model": {
336
- type: import("vue").PropType<string>;
337
- required: false;
338
- };
339
- } & {
340
- modelValue: {
341
- type: import("vue").PropType<string>;
342
- required: false;
343
- };
344
- }>;
345
- };
346
- }>>, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
347
- container: boolean;
348
- }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
349
- propsDefinition: Omit<Readonly<{} & {
350
- colorSchemaType?: "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "background" | "error" | "info" | "success" | "dynamic";
351
- name?: {
352
- [x: `onUpdate:${string}`]: {
353
- type: import("vue").PropType<(value: string) => any | void>;
354
- };
355
- } & {
356
- [x: `v-model:${string}`]: {
357
- type: import("vue").PropType<string>;
358
- required: false;
359
- };
360
- } & {
361
- [x: string]: {
362
- type: import("vue").PropType<string>;
363
- required: false;
364
- };
365
- } & {
366
- require(): import("../DefineVueTypings").DefinePropModelRequire<string, string, {
367
- "onUpdate:modelValue": {
368
- type: import("vue").PropType<(value: string) => any | void>;
369
- };
370
- } & {
371
- "v-model": {
372
- type: import("vue").PropType<string>;
373
- required: false;
374
- };
375
- } & {
376
- modelValue: {
377
- type: import("vue").PropType<string>;
378
- required: false;
379
- };
380
- }>;
381
- defaultValue(value?: string): import("../DefineVueTypings").DefinePropModelDefaultValue<string, string, {
382
- "onUpdate:modelValue": {
383
- type: import("vue").PropType<(value: string) => any | void>;
384
- };
385
- } & {
386
- "v-model": {
387
- type: import("vue").PropType<string>;
388
- required: false;
389
- };
390
- } & {
391
- modelValue: {
392
- type: import("vue").PropType<string>;
393
- required: false;
394
- };
395
- }, false>;
396
- doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<string, string, {
397
- "onUpdate:modelValue": {
398
- type: import("vue").PropType<(value: string) => any | void>;
399
- };
400
- } & {
401
- "v-model": {
402
- type: import("vue").PropType<string>;
403
- required: false;
404
- };
405
- } & {
406
- modelValue: {
407
- type: import("vue").PropType<string>;
408
- required: false;
409
- };
410
- }>;
411
- };
412
- size?: "l" | "s" | "xs" | "m" | "xl" | TextStyleSizes | "variant1" | "variant2" | "variant3" | "variant4" | "variant5" | "variant6" | "variant7" | "variant8";
413
- typography?: "display" | "headline" | "title" | "text" | "label" | "variants" | TextStyleTypes;
414
- blueprint?: TextBlueprint;
415
- container?: boolean;
416
- colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
417
- toned?: boolean;
418
- "v-model"?: string;
419
- modelValue?: string;
420
- placeholder?: string;
421
- plugins?: [object];
422
- hideToolbar?: boolean;
423
- "onUpdate:modelValue"?: (value: string) => any | void;
424
- getApi?: (store: ReturnType<typeof useMarkdownEditorStore>) => void;
425
- noWrap?: boolean;
426
- toolbarContainer?: boolean;
427
- }>, never>;
428
- };
4
+ type MarkdownEditorProps = DefinePropTheming & DefineVModel<"", string> & DefineProp<"hideToolbar", boolean, false, false, "Hides the toolbar"> & DefineProp<"toolbarContainer", boolean, false, false, "Uses toolbar container"> & DefineProp<"toned", boolean, false, false, "Applies toned styling"> & DefineProp<"noWrap", boolean, false, false, "Disables text wrapping"> & DefineProp<"placeholder", string, false, null, "Placeholder text for the editor"> & DefineProp<"typography", TextStyleType | TextStyleTypes, false, null, "Applies a specific typography to be used. Default is text."> & DefineProp<"size", TextStyleSize | TextStyleSizes, false, null, "Applies a specific typography size to be used. Default is medium text."> & DefineProp<"blueprint", TextBlueprint, false, null, "Applies a text blueprint to be used"> & DefineProp<"getApi", (store: ReturnType<typeof useMarkdownEditorStore>) => void, false, null, "callback to get a reference to the markdown store. The store is used to interact with the markdown editor."> & DefineProp<"plugins", object[], false, null, "Array of plugins to be used with the editor">;
5
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<MarkdownEditorProps> & {
6
+ "onUpdate:modelValue"?: (value: string) => any;
7
+ } & {
8
+ "v-slots"?: {} & Omit<{
9
+ default?: import("vue").Slot;
10
+ $stable?: boolean;
11
+ }, never>;
12
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "colorSchemaType" | "size" | "typography" | "blueprint" | "colors" | "toned" | "v-model" | "modelValue" | "emit:update:modelValue" | "placeholder" | "plugins" | "hideToolbar" | "getApi" | "noWrap" | "toolbarContainer"> & import("@omnia/fx/ux").VNodeEvents) => any;
429
13
  export default _default;
@@ -1,75 +1,10 @@
1
- import { TextBlueprint, TextStyleSizes, TextStyleTypes } from "@omnia/fx-models";
2
- declare const _default: {
3
- new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
4
- blueprint: {
5
- type: import("vue").PropType<TextBlueprint>;
6
- };
7
- size: {
8
- type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TextStyleSizes | "variant1" | "variant2" | "variant3" | "variant4" | "variant5" | "variant6" | "variant7" | "variant8">;
9
- };
10
- typography: {
11
- type: import("vue").PropType<"display" | "headline" | "title" | "text" | "label" | "variants" | TextStyleTypes>;
12
- };
13
- toned: {
14
- type: import("vue").PropType<boolean>;
15
- };
16
- value: {
17
- type: import("vue").PropType<string>;
18
- required: true;
19
- };
20
- }>>, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
21
- P: {};
22
- B: {};
23
- D: {};
24
- C: {};
25
- M: {};
26
- Defaults: {};
27
- }, Readonly<import("vue").ExtractPropTypes<{
28
- blueprint: {
29
- type: import("vue").PropType<TextBlueprint>;
30
- };
31
- size: {
32
- type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TextStyleSizes | "variant1" | "variant2" | "variant3" | "variant4" | "variant5" | "variant6" | "variant7" | "variant8">;
33
- };
34
- typography: {
35
- type: import("vue").PropType<"display" | "headline" | "title" | "text" | "label" | "variants" | TextStyleTypes>;
36
- };
37
- toned: {
38
- type: import("vue").PropType<boolean>;
39
- };
40
- value: {
41
- type: import("vue").PropType<string>;
42
- required: true;
43
- };
44
- }>>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {}>;
45
- __isFragment?: never;
46
- __isTeleport?: never;
47
- __isSuspense?: never;
48
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
49
- blueprint: {
50
- type: import("vue").PropType<TextBlueprint>;
51
- };
52
- size: {
53
- type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TextStyleSizes | "variant1" | "variant2" | "variant3" | "variant4" | "variant5" | "variant6" | "variant7" | "variant8">;
54
- };
55
- typography: {
56
- type: import("vue").PropType<"display" | "headline" | "title" | "text" | "label" | "variants" | TextStyleTypes>;
57
- };
58
- toned: {
59
- type: import("vue").PropType<boolean>;
60
- };
61
- value: {
62
- type: import("vue").PropType<string>;
63
- required: true;
64
- };
65
- }>>, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
66
- propsDefinition: Omit<Readonly<{
67
- value: string;
68
- } & {
69
- size?: "l" | "s" | "xs" | "m" | "xl" | TextStyleSizes | "variant1" | "variant2" | "variant3" | "variant4" | "variant5" | "variant6" | "variant7" | "variant8";
70
- typography?: "display" | "headline" | "title" | "text" | "label" | "variants" | TextStyleTypes;
71
- blueprint?: TextBlueprint;
72
- toned?: boolean;
73
- }>, never>;
74
- };
1
+ import { DefineProp } from "@omnia/fx/ux";
2
+ import { TextBlueprint, TextStyleSize, TextStyleSizes, TextStyleType, TextStyleTypes } from "@omnia/fx-models";
3
+ type MarkdownRendererProps = DefineProp<"value", string, true> & DefineProp<"toned", boolean, false, false> & DefineProp<"typography", TextStyleType | TextStyleTypes, false, null, "Applies a specific typography to be used. Default is text."> & DefineProp<"size", TextStyleSize | TextStyleSizes, false, null, "Applies a specific typography size to be used. Default is medium text."> & DefineProp<"blueprint", TextBlueprint, false, null, "Applies a text blueprint to be used">;
4
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<MarkdownRendererProps> & {} & {
5
+ "v-slots"?: {} & Omit<{
6
+ default?: import("vue").Slot;
7
+ $stable?: boolean;
8
+ }, never>;
9
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "size" | "typography" | "blueprint" | "value" | "toned"> & import("@omnia/fx/ux").VNodeEvents) => any;
75
10
  export default _default;
@@ -1,10 +1,10 @@
1
1
  import { DefineProp, DefinePropTheming } from "@omnia/fx/ux";
2
2
  import { ColorType, OSizeTypes } from "@omnia/fx-models";
3
- type AvatarProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"color", string, false, null, "The color of the component."> & DefineProp<"toned", boolean, false, false, "If the toned color should be used."> & DefineProp<"size", OSizeTypes | number, false, null, "The size of the component."> & DefineProp<"colorType", ColorType, false, null, "Sets the colorType to use for the icons. Default is onBase."> & DefineProp<"gradient", boolean, false, false, "Applies a gradient effect to the component.">;
3
+ type AvatarProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"color", string, false, null, "The color of the component."> & DefineProp<"toned", boolean, false, false, "If the toned color should be used."> & DefineProp<"size", OSizeTypes | number, false, null, "The size of the component."> & DefineProp<"colorType", ColorType, false, null, "Sets the colorType to use for the icons. Default is onBase."> & DefineProp<"gradient", boolean, false, false, "Applies a gradient effect to the component."> & DefineProp<"showIndicator", boolean, false, false, "Show the avatar halo."> & DefineProp<"notificationCount", number, false, null, "Show the number in badge.">;
4
4
  declare const _default: (props: import("@omnia/fx/ux").ExtractProps<AvatarProps> & {} & {
5
5
  "v-slots"?: {} & Omit<{
6
6
  default?: import("vue").Slot;
7
7
  $stable?: boolean;
8
8
  }, never>;
9
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "colorSchemaType" | "color" | "size" | "class" | "colors" | "gradient" | "colorType" | "toned"> & import("@omnia/fx/ux").VNodeEvents) => any;
9
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "colorSchemaType" | "color" | "size" | "class" | "colors" | "gradient" | "colorType" | "toned" | "showIndicator" | "notificationCount"> & import("@omnia/fx/ux").VNodeEvents) => any;
10
10
  export default _default;
@@ -0,0 +1,10 @@
1
+ import { DefineProp } from "@omnia/fx/ux";
2
+ import { OSizeTypes } from "@omnia/fx-models";
3
+ type AvatarIndicatorProps = DefineProp<"showIndicator", boolean, false, false, "Show the avatar halo."> & DefineProp<"notificationCount", number, false, null, "Show the number in badge."> & DefineProp<"size", OSizeTypes | number, false, null, "The size of the component.">;
4
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<AvatarIndicatorProps> & {} & {
5
+ "v-slots"?: {} & Omit<{
6
+ default?: import("vue").Slot;
7
+ $stable?: boolean;
8
+ }, never>;
9
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "size" | "showIndicator" | "notificationCount"> & import("@omnia/fx/ux").VNodeEvents) => any;
10
+ export default _default;
@@ -0,0 +1,5 @@
1
+ import { OSizeTypes } from "@omnia/fx-models";
2
+ import { InternalColorSchemaStoreType } from "@omnia/fx/ux";
3
+ export declare const AvatarIndicatorStyles: {
4
+ halo: (size: OSizeTypes | number, colors: InternalColorSchemaStoreType) => Readonly<import("@omnia/fx/ux").StylexValue>;
5
+ };
@@ -1,7 +1,7 @@
1
1
  import { OInfiniteScrollSide, OInfiniteScrollLoadOptions } from "@omnia/fx-models";
2
2
  import { DefineEmit, DefineProp, DefineSlot } from "@omnia/fx/ux";
3
3
  import { VNodeChild } from "vue";
4
- type InfinitiScrollProps = DefineProp<"height", string | number, false, null, "Sets the height for the component."> & DefineProp<"direction", "horizontal" | "vertical", false, null, "Specifies if scroller is vertical or horizontal."> & DefineProp<"margin", string | number, false, null, "Value sent to the intersection observer. Will make the observer trigger earlier, by the margin (px) value supplied."> & DefineProp<"mode", "intersect" | "manual", false, null, "Specifies if content should load automatically when scrolling (intersect) or manually (manual)."> & DefineProp<"side", OInfiniteScrollSide, false, null, "Specifies the side where new content should appear. Either the start, end, or both sides."> & DefineSlot<"empty", (value: {
4
+ type InfinitiScrollProps = DefineProp<"height", string | number, false, null, "Sets the height for the component."> & DefineProp<"width", string | number, false, null, "Sets the width for the component."> & DefineProp<"maxHeight", string | number, false, null, "Sets the max-height for the component."> & DefineProp<"minHeight", string | number, false, null, "Sets the min-height for the component."> & DefineProp<"direction", "horizontal" | "vertical", false, null, "Specifies if scroller is vertical or horizontal."> & DefineProp<"margin", string | number, false, null, "Value sent to the intersection observer. Will make the observer trigger earlier, by the margin (px) value supplied."> & DefineProp<"mode", "intersect" | "manual", false, null, "Specifies if content should load automatically when scrolling (intersect) or manually (manual)."> & DefineProp<"side", OInfiniteScrollSide, false, null, "Specifies the side where new content should appear. Either the start, end, or both sides."> & DefineSlot<"empty", (value: {
5
5
  side: OInfiniteScrollSide;
6
6
  }) => VNodeChild> & DefineSlot<"error", (value: {
7
7
  side: OInfiniteScrollSide;
@@ -30,5 +30,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<InfinitiScro
30
30
  default?: import("vue").Slot;
31
31
  $stable?: boolean;
32
32
  }, "error" | "empty" | "loading" | "loadMore">;
33
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "margin" | "height" | "direction" | "mode" | "emit:load" | "side" | "slot:error" | "slot:empty" | "slot:loadMore" | "slot:loading"> & import("@omnia/fx/ux").VNodeEvents) => any;
33
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "margin" | "height" | "minHeight" | "direction" | "maxHeight" | "width" | "mode" | "emit:load" | "side" | "slot:error" | "slot:empty" | "slot:loadMore" | "slot:loading"> & import("@omnia/fx/ux").VNodeEvents) => any;
34
34
  export default _default;
@@ -1,6 +1,12 @@
1
1
  import { guid, InputBlueprint, MenuState, OSelectVariants } from "@omnia/fx-models";
2
2
  import { VNodeChild } from "vue";
3
+ import { useJourneyStore } from "@omnia/fx/ux";
3
4
  type PickerVariant = "dialog" | "virtual-list" | OSelectVariants | "journey";
5
+ export interface SelectionJourney {
6
+ store: ReturnType<typeof useJourneyStore>;
7
+ show: () => void;
8
+ hide: () => void;
9
+ }
4
10
  export declare const usePickerStore: () => {
5
11
  readonly slots: {
6
12
  selectionRender: () => VNodeChild;
@@ -9,15 +15,18 @@ export declare const usePickerStore: () => {
9
15
  searchText: string;
10
16
  blueprint: InputBlueprint;
11
17
  variant: PickerVariant;
18
+ selectionBlade: guid;
12
19
  showMenu: boolean;
13
20
  };
14
21
  events: import("@omnia/fx/stores").StoreEvents<{
15
22
  searchText: string;
16
23
  blueprint: InputBlueprint;
17
24
  variant: PickerVariant;
25
+ selectionBlade: guid;
18
26
  showMenu: boolean;
19
27
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
20
28
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
29
+ setSelectionJourney: (settings: SelectionJourney) => void;
21
30
  itemSelections: () => {
22
31
  show: () => void;
23
32
  hide: () => void;
@@ -15,5 +15,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<TabProps> &
15
15
  default?: import("vue").Slot;
16
16
  $stable?: boolean;
17
17
  }, "itemRendering">;
18
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "colorSchemaType" | "icon" | "variant" | "class" | "disabled" | "colors" | "eager" | "slot:itemRendering" | "notificationCount"> & import("@omnia/fx/ux").VNodeEvents) => any;
18
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "colorSchemaType" | "icon" | "variant" | "class" | "disabled" | "colors" | "eager" | "notificationCount" | "slot:itemRendering"> & import("@omnia/fx/ux").VNodeEvents) => any;
19
19
  export default _default;
@@ -1,20 +1,22 @@
1
1
  import { UserIdentity } from "@omnia/fx-models";
2
2
  import { DefineEmit } from "@omnia/fx/ux";
3
3
  declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
4
- "emit:update:modelValue": (value: UserIdentity) => void;
4
+ "emit:update:modelValue": (value: boolean) => void;
5
5
  } & {
6
- "v-model"?: UserIdentity;
6
+ "v-model"?: boolean;
7
7
  } & {
8
- modelValue?: UserIdentity;
8
+ modelValue?: boolean;
9
+ } & {
10
+ user?: UserIdentity;
9
11
  } & {
10
12
  removeElementAfterClosing?: boolean;
11
13
  } & DefineEmit<"close", () => void>> & {
12
14
  onClose?: () => any;
13
- "onUpdate:modelValue"?: (value: UserIdentity) => any;
15
+ "onUpdate:modelValue"?: (value: boolean) => any;
14
16
  } & {
15
17
  "v-slots"?: {} & Omit<{
16
18
  default?: import("vue").Slot;
17
19
  $stable?: boolean;
18
20
  }, never>;
19
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "modelValue" | "emit:update:modelValue" | "emit:close" | "removeElementAfterClosing"> & import("@omnia/fx/ux").VNodeEvents) => any;
21
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "user" | "v-model" | "modelValue" | "emit:update:modelValue" | "emit:close" | "removeElementAfterClosing"> & import("@omnia/fx/ux").VNodeEvents) => any;
20
22
  export default _default;