@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,4 +1,4 @@
1
- import { guid, ITemplateRegistration, ResolvedThemeDefinition, TemplateRegistrationType, ColorSchema, ColorSchemaType, MediaPickerImage, SpacingValue, Spacing } from "@omnia/fx-models";
1
+ import { guid, ITemplateRegistration, ResolvedThemeDefinition, TemplateRegistrationType, ColorSchema, ColorSchemaType, MediaPickerImage, SpacingValue, Spacing, ThemeIconStyle, ThemeIconPack, TypographyBlueprint, SpacingBlueprint, VersionedLayout, ComponentBlueprints, ContainerFillBlueprints, TextFillBlueprints } from "@omnia/fx-models";
2
2
  export declare const useThemeEditorStore: () => {
3
3
  state: {
4
4
  definition: ITemplateRegistration<ResolvedThemeDefinition>;
@@ -6,9 +6,9 @@ export declare const useThemeEditorStore: () => {
6
6
  enableDelete: boolean;
7
7
  showComponentsEditor: boolean;
8
8
  displayKey: guid;
9
- layoutType: {
10
- selected: string;
11
- width: number;
9
+ editingSettings: {
10
+ layoutType: string;
11
+ layoutTypeWidth: number;
12
12
  layoutMargin: SpacingValue;
13
13
  blockSpacing: SpacingValue;
14
14
  sectionMargin: Spacing;
@@ -18,6 +18,32 @@ export declare const useThemeEditorStore: () => {
18
18
  show: boolean;
19
19
  fillType: "text" | "container";
20
20
  };
21
+ predifinedSettings: {
22
+ typography: {
23
+ custom: boolean;
24
+ value: any;
25
+ };
26
+ spacing: {
27
+ custom: boolean;
28
+ value: any;
29
+ };
30
+ chrome: {
31
+ custom: boolean;
32
+ value: any;
33
+ };
34
+ components: {
35
+ custom: boolean;
36
+ value: any;
37
+ };
38
+ containerFills: {
39
+ custom: boolean;
40
+ value: any;
41
+ };
42
+ textFills: {
43
+ custom: boolean;
44
+ value: any;
45
+ };
46
+ };
21
47
  };
22
48
  events: import("@omnia/fx/stores").StoreEvents<{
23
49
  definition: ITemplateRegistration<ResolvedThemeDefinition>;
@@ -25,9 +51,9 @@ export declare const useThemeEditorStore: () => {
25
51
  enableDelete: boolean;
26
52
  showComponentsEditor: boolean;
27
53
  displayKey: guid;
28
- layoutType: {
29
- selected: string;
30
- width: number;
54
+ editingSettings: {
55
+ layoutType: string;
56
+ layoutTypeWidth: number;
31
57
  layoutMargin: SpacingValue;
32
58
  blockSpacing: SpacingValue;
33
59
  sectionMargin: Spacing;
@@ -37,6 +63,32 @@ export declare const useThemeEditorStore: () => {
37
63
  show: boolean;
38
64
  fillType: "text" | "container";
39
65
  };
66
+ predifinedSettings: {
67
+ typography: {
68
+ custom: boolean;
69
+ value: any;
70
+ };
71
+ spacing: {
72
+ custom: boolean;
73
+ value: any;
74
+ };
75
+ chrome: {
76
+ custom: boolean;
77
+ value: any;
78
+ };
79
+ components: {
80
+ custom: boolean;
81
+ value: any;
82
+ };
83
+ containerFills: {
84
+ custom: boolean;
85
+ value: any;
86
+ };
87
+ textFills: {
88
+ custom: boolean;
89
+ value: any;
90
+ };
91
+ };
40
92
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
41
93
  rules: {
42
94
  colors: {
@@ -46,6 +98,7 @@ export declare const useThemeEditorStore: () => {
46
98
  };
47
99
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
48
100
  layoutType(): {
101
+ ensureLayoutSettings(): void;
49
102
  setwidthType: (type: string) => void;
50
103
  width: (width: number) => void;
51
104
  };
@@ -58,12 +111,34 @@ export declare const useThemeEditorStore: () => {
58
111
  mediaResources(): {
59
112
  setLogo: (image: MediaPickerImage) => void;
60
113
  };
114
+ icon(): {
115
+ setIconStyle: (iconStyle: ThemeIconStyle) => void;
116
+ setIconPack: (iconPack: ThemeIconPack) => void;
117
+ };
61
118
  addThemeDefinition(): void;
62
119
  importThemeDefinition(themeDefinition2Import: ITemplateRegistration<ResolvedThemeDefinition>): void;
63
120
  editThemeDefinition(definition: ITemplateRegistration<ResolvedThemeDefinition>): void;
64
121
  copyDefinition(definition: ITemplateRegistration<ResolvedThemeDefinition>): void;
65
- save(): Promise<boolean>;
122
+ save(): Promise<void>;
66
123
  delete(): Promise<boolean>;
124
+ presets: () => {
125
+ toggle: {
126
+ typography: (value: boolean) => void;
127
+ spacing: (value: boolean) => void;
128
+ chrome: (value: boolean) => void;
129
+ components: (value: boolean) => void;
130
+ containerFills: (value: boolean) => void;
131
+ textFills: (value: boolean) => void;
132
+ };
133
+ set: {
134
+ typography: (blueprint: TypographyBlueprint) => void;
135
+ spacing: (spacing: SpacingBlueprint) => void;
136
+ chrome: (layout: VersionedLayout) => void;
137
+ components: (components: ComponentBlueprints) => void;
138
+ containerFills: (fill: ContainerFillBlueprints) => void;
139
+ textFills: (fill: TextFillBlueprints) => void;
140
+ };
141
+ };
67
142
  }>;
68
143
  get: {
69
144
  colorSchema: {
@@ -82,6 +157,12 @@ export declare const useThemeEditorStore: () => {
82
157
  mediaResources: {
83
158
  logo: () => MediaPickerImage;
84
159
  };
160
+ icon: {
161
+ style: () => ThemeIconStyle;
162
+ pack: () => ThemeIconPack;
163
+ readonly allStyles: ThemeIconStyle[];
164
+ readonly allPacks: ThemeIconPack[];
165
+ };
85
166
  };
86
167
  bladeId: {
87
168
  editBlade: guid;
@@ -89,6 +170,7 @@ export declare const useThemeEditorStore: () => {
89
170
  editColorSchemasBlade: guid;
90
171
  editMediaResourcesBlade: guid;
91
172
  editLayoutBlade: guid;
173
+ editIconStyleBlade: guid;
92
174
  };
93
175
  dataTypes: {
94
176
  itemTypes: {
@@ -1,4 +1,4 @@
1
- import { guid, ITemplateRegistration, TypographyBlueprint, TextStyleDefinition, TextStyleSizes, TextStyleType, TypographyFontDefinition, IFontBlueprints, TypographyFontRef, BlueprintVariant, FontAwesomeIcon, TextStyleBreakpointType } from "@omnia/fx-models";
1
+ import { guid, ITemplateRegistration, TypographyBlueprint, TextStyleDefinition, TextStyleSizes, TextStyleType, TypographyFontDefinition, IFontBlueprints, BlueprintVariant, FontAwesomeIcon, TextStyleBreakpointType } from "@omnia/fx-models";
2
2
  export interface BreakpointItem {
3
3
  icon: FontAwesomeIcon;
4
4
  title: string;
@@ -10,7 +10,6 @@ export declare const useTypographyEditorStore: () => {
10
10
  state: {
11
11
  blueprintRegistration: ITemplateRegistration<TypographyBlueprint, import("@omnia/fx-models").TemplateRegistrationType>;
12
12
  availableFonts: ITemplateRegistration<IFontBlueprints, import("@omnia/fx-models").TemplateRegistrationType>;
13
- blueprint: TypographyBlueprint;
14
13
  editMode: boolean;
15
14
  editing: {
16
15
  type: "display" | "headline" | "title" | "text" | "label" | "variants";
@@ -28,7 +27,6 @@ export declare const useTypographyEditorStore: () => {
28
27
  events: import("@omnia/fx/stores").StoreEvents<{
29
28
  blueprintRegistration: ITemplateRegistration<TypographyBlueprint, import("@omnia/fx-models").TemplateRegistrationType>;
30
29
  availableFonts: ITemplateRegistration<IFontBlueprints, import("@omnia/fx-models").TemplateRegistrationType>;
31
- blueprint: TypographyBlueprint;
32
30
  editMode: boolean;
33
31
  editing: {
34
32
  type: "display" | "headline" | "title" | "text" | "label" | "variants";
@@ -93,6 +91,66 @@ export declare const useTypographyEditorStore: () => {
93
91
  deleteRegistration(): Promise<boolean>;
94
92
  }>;
95
93
  get: {
94
+ editBladeDefinition: {
95
+ readonly Blade: (props: Omit<import("@omnia/fx/ux").ConstructComponentProps<import("../../../../../journey/JourneyBlade").JourneyBladeProps>, "id" | "getApi" | "manageList"> & import("@omnia/fx/ux").VNodeEvents) => any;
96
+ readonly Menu: (props: Omit<import("@omnia/fx/ux").ConstructComponentProps<import("../../../../../journey/JourneyMenu").JourneyMenuProps>, "id" | "getApi"> & import("@omnia/fx/ux").VNodeEvents) => any;
97
+ readonly ManageList: (<T extends unknown>(props: import("@omnia/fx/ux").ExtractProps<import("../../../../../oxide/list/List").OListProps<T>> & {
98
+ "onUpdate:modelValue"?: (value: T[]) => any;
99
+ } & {
100
+ "v-slots"?: {
101
+ item?: (item: import("../../../../../oxide/list/List").IListItem<T>) => import("vue").VNodeChild;
102
+ } & Omit<{
103
+ default?: import("vue").Slot;
104
+ $stable?: boolean;
105
+ }, "item">;
106
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "colorSchemaType" | "variant" | "class" | "remove" | "drag" | "nav" | "colors" | "toned" | "v-model" | "modelValue" | "emit:update:modelValue" | "navigation" | "lines" | "divider" | "dragStyles" | "itemValue" | "disableItemClickable" | "slot:item"> & import("@omnia/fx/ux").VNodeEvents) => any) & {
107
+ item: typeof import("../../../../../oxide/list/ListItem").default extends {
108
+ propsDefinition: infer TProp;
109
+ } ? {
110
+ new (...args: any[]): {
111
+ $props: TProp & Omit<import("@omnia/fx/ux").VueComponentBaseProps, keyof TProp>;
112
+ };
113
+ } : typeof import("../../../../../oxide/list/ListItem").default;
114
+ };
115
+ readonly ManageDataTable: <TItem extends unknown, TVariant extends "default" | "client-pagination-scroll" | "client-pagination-page" | "server-pagination-scroll" | "server-pagination-page" = "default">(props: import("@omnia/fx/ux").ExtractProps<import("../../../../../oxide/datatable/DataTable").DataTableProps<TItem, TVariant>> & ((import("../../../../../oxide/datatable/DataTable").DataTableProps<TItem, TVariant> extends infer T ? { [K in keyof T as K extends `emit:${infer N}` ? N : never]: import("../../../../../oxide/datatable/DataTable").DataTableProps<TItem, TVariant>[K]; } : never) extends infer T_1 ? T_1 extends (import("../../../../../oxide/datatable/DataTable").DataTableProps<TItem, TVariant> extends infer T_2 ? { [K in keyof T_2 as K extends `emit:${infer N}` ? N : never]: import("../../../../../oxide/datatable/DataTable").DataTableProps<TItem, TVariant>[K]; } : never) ? T_1 extends string[] ? { [K_1 in `on${Capitalize<T_1[number]>}`]?: (...args: any[]) => any; } : T_1 extends import("vue").ObjectEmitsOptions ? { [K_2 in `on${Capitalize<string & keyof T_1>}`]?: K_2 extends `on${infer C}` ? T_1[Uncapitalize<C>] extends null ? (...args: any[]) => any : (...args: T_1[Uncapitalize<C>] extends (...args: infer P) => any ? P : never) => any : never; } : {} : never : never) & {
116
+ "v-slots"?: (import("../../../../../oxide/datatable/DataTable").DataTableProps<TItem, TVariant> extends infer T_3 ? { [K_3 in keyof T_3 as K_3 extends `slot:${infer N_1}` ? N_1 : never]: import("../../../../../oxide/datatable/DataTable").DataTableProps<TItem, TVariant>[K_3]; } : never) & Omit<{
117
+ default?: import("vue").Slot;
118
+ $stable?: boolean;
119
+ }, keyof (import("../../../../../oxide/datatable/DataTable").DataTableProps<TItem, TVariant> extends infer T_4 ? { [K_3 in keyof T_4 as K_3 extends `slot:${infer N_1}` ? N_1 : never]: import("../../../../../oxide/datatable/DataTable").DataTableProps<TItem, TVariant>[K_3]; } : never)>;
120
+ } & (import("../../../../../oxide/datatable/DataTable").DataTableProps<TItem, TVariant> extends infer T_5 ? { [K_4 in keyof T_5 as K_4 extends "ref" ? "ref" : never]: import("vue").Ref<import("../../../../../oxide/datatable/DataTable").DataTableProps<TItem, TVariant>[K_4], import("../../../../../oxide/datatable/DataTable").DataTableProps<TItem, TVariant>[K_4]> | ((ref: import("../../../../../oxide/datatable/DataTable").DataTableProps<TItem, TVariant>[K_4]) => void); } : never) & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "colorSchemaType" | "height" | "variant" | "search" | "headers" | "class" | "drag" | "expanded" | "colors" | "hover" | "ref" | "v-model" | "modelValue" | "emit:update:modelValue" | "items" | "loading" | "mobileColumn" | "itemValue" | "emit:update:expanded" | "v-model:expanded" | "sortBy" | "emit:update:sortBy" | "v-model:sortBy" | "mustSort" | "showSelect" | "itemSelectable" | "noDataText" | "searchBy" | "showExpand" | "emit:update:items" | "v-model:items" | "emit:update:options" | "emit:update:page" | "emit:update:itemsPerPage" | "emit:click:loadMore" | "slot:row" | "slot:top" | "slot:expanded-row" | `slot:header.${string}` | `slot:item.${string}` | keyof (TVariant extends "client-pagination-scroll" ? {
121
+ itemHeight?: string | number;
122
+ } : TVariant extends "client-pagination-page" ? {
123
+ itemsPerPage: number;
124
+ } & {
125
+ page?: number;
126
+ } : TVariant extends "server-pagination-page" ? {
127
+ itemsPerPage: number;
128
+ } & {
129
+ page?: number;
130
+ } & {
131
+ itemsLength: number;
132
+ } : TVariant extends "server-pagination-scroll" ? {
133
+ showLoadMore?: boolean;
134
+ } & import("@omnia/fx/ux").DefineEmit<"visible:lastItem", (item: TItem) => void> : {})> & import("@omnia/fx/ux").VNodeEvents) => any;
135
+ id: guid;
136
+ readonly route: TRoute;
137
+ moveNext(): void;
138
+ movePrev(): void;
139
+ travelTo(toBladeId: guid): void;
140
+ defineValueToCommit<T>(value?: T, defineDisabledClone?: boolean): {
141
+ value: T;
142
+ resetValue: (value: T, disabledClone?: boolean) => void;
143
+ };
144
+ defineValueToFilter<T>(value?: T, initialConfig?: Record<string, {
145
+ isShow: boolean;
146
+ }>, defineDisabledClone?: boolean): {
147
+ filterValues: T;
148
+ resetFilterValues: (value: T, disabledClone?: boolean) => void;
149
+ updateFilterConfig: (newConfig: Record<string, {
150
+ isShow: boolean;
151
+ }>) => void;
152
+ };
153
+ };
96
154
  textStyleName: (textStyleType: TextStyleType, size: TextStyleSizes) => string;
97
155
  typeScale: {
98
156
  active: {
@@ -101,42 +159,7 @@ export declare const useTypographyEditorStore: () => {
101
159
  readonly lineHeight: number;
102
160
  };
103
161
  };
104
- definitionType: () => import("@omnia/fx-models").VariantBlueprints<TextStyleDefinition> | {
105
- xl: TextStyleDefinition;
106
- l: TextStyleDefinition;
107
- m: TextStyleDefinition;
108
- s: TextStyleDefinition;
109
- xs: TextStyleDefinition;
110
- font?: TypographyFontRef;
111
- } | {
112
- xl: TextStyleDefinition;
113
- l: TextStyleDefinition;
114
- m: TextStyleDefinition;
115
- s: TextStyleDefinition;
116
- xs: TextStyleDefinition;
117
- font?: TypographyFontRef;
118
- } | {
119
- xl: TextStyleDefinition;
120
- l: TextStyleDefinition;
121
- m: TextStyleDefinition;
122
- s: TextStyleDefinition;
123
- xs: TextStyleDefinition;
124
- font?: TypographyFontRef;
125
- } | {
126
- xl?: TextStyleDefinition;
127
- l: TextStyleDefinition;
128
- m: TextStyleDefinition;
129
- s: TextStyleDefinition;
130
- xs: TextStyleDefinition;
131
- font?: TypographyFontRef;
132
- } | {
133
- xl: TextStyleDefinition;
134
- l: TextStyleDefinition;
135
- m: TextStyleDefinition;
136
- s: TextStyleDefinition;
137
- xs: TextStyleDefinition;
138
- font?: TypographyFontRef;
139
- };
162
+ definitionType: () => any;
140
163
  selectedTextStyleSizeFont: () => string;
141
164
  };
142
165
  bladeId: {
@@ -1,6 +1,12 @@
1
1
  import { BackgroundDefinition, ColorSchemaType } from "@omnia/fx-models";
2
2
  declare const _default: {
3
3
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
4
+ hasDynamicColors: {
5
+ type: import("vue").PropType<boolean>;
6
+ };
7
+ noPadding: {
8
+ type: import("vue").PropType<boolean>;
9
+ };
4
10
  height: {
5
11
  type: import("vue").PropType<string>;
6
12
  };
@@ -38,6 +44,12 @@ declare const _default: {
38
44
  M: {};
39
45
  Defaults: {};
40
46
  }, Readonly<import("vue").ExtractPropTypes<{
47
+ hasDynamicColors: {
48
+ type: import("vue").PropType<boolean>;
49
+ };
50
+ noPadding: {
51
+ type: import("vue").PropType<boolean>;
52
+ };
41
53
  height: {
42
54
  type: import("vue").PropType<string>;
43
55
  };
@@ -72,6 +84,12 @@ declare const _default: {
72
84
  __isTeleport?: never;
73
85
  __isSuspense?: never;
74
86
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
87
+ hasDynamicColors: {
88
+ type: import("vue").PropType<boolean>;
89
+ };
90
+ noPadding: {
91
+ type: import("vue").PropType<boolean>;
92
+ };
75
93
  height: {
76
94
  type: import("vue").PropType<string>;
77
95
  };
@@ -111,6 +129,8 @@ declare const _default: {
111
129
  colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
112
130
  dynamicColorSchemaType?: "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "background" | "error" | "info" | "success" | "dynamic";
113
131
  disableDynamicColorDisplay?: boolean;
132
+ noPadding?: boolean;
133
+ hasDynamicColors?: boolean;
114
134
  }>, never>;
115
135
  };
116
136
  export default _default;
@@ -26,15 +26,18 @@ export declare const useButtonStylePickerStore: () => {
26
26
  searchText: string;
27
27
  blueprint: import("@omnia/fx-models").InputBlueprint;
28
28
  variant: "button" | "dialog" | "dropdown" | "journey" | "virtual-list";
29
+ selectionBlade: import("@omnia/fx-models").guid;
29
30
  showMenu: boolean;
30
31
  };
31
32
  events: import("@omnia/fx/stores").StoreEvents<{
32
33
  searchText: string;
33
34
  blueprint: import("@omnia/fx-models").InputBlueprint;
34
35
  variant: "button" | "dialog" | "dropdown" | "journey" | "virtual-list";
36
+ selectionBlade: import("@omnia/fx-models").guid;
35
37
  showMenu: boolean;
36
38
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
37
39
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
40
+ setSelectionJourney: (settings: import("../../../../oxide/picker/stores/PickerStore").SelectionJourney) => void;
38
41
  itemSelections: () => {
39
42
  show: () => void;
40
43
  hide: () => void;
@@ -11,10 +11,12 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
11
11
  size?: "small" | "default";
12
12
  } & {
13
13
  height?: string;
14
+ } & {
15
+ hasDynamicColors?: boolean;
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, "noIcon" | "height" | "size" | "width" | "dynamicColorSchemaType" | "colorReference"> & import("@omnia/fx/ux").VNodeEvents) => any;
21
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "noIcon" | "height" | "size" | "width" | "dynamicColorSchemaType" | "hasDynamicColors" | "colorReference"> & import("@omnia/fx/ux").VNodeEvents) => any;
20
22
  export default _default;
@@ -1,8 +1,8 @@
1
1
  import { DefineProp, DefinePropTheming, DefineVModel } from "@omnia/fx/ux";
2
- import { Spacing, SpacingValue, SpacingScale } from "@omnia/fx/models";
3
- type BaseProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"scaleSelection", boolean> & DefineProp<"allowNegativeNumbers", boolean> & DefineProp<"defaultScale", SpacingScale> & DefineProp<"label", string> & DefineProp<"toned", boolean>;
2
+ import { Spacing, SpacingValue, SpacingScale, SpacingPreset } from "@omnia/fx/models";
3
+ type BaseProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"scaleSelection", boolean> & DefineProp<"allowNegativeNumbers", boolean> & DefineProp<"defaultScale", SpacingScale> & DefineProp<"preset", SpacingPreset> & DefineProp<"label", string> & DefineProp<"toned", boolean>;
4
4
  type SingleProps = DefineVModel<"", SpacingValue, false, null, false, "The v-model value of the component."> & BaseProps;
5
- type MultiProps = DefineVModel<"", Spacing, false, null, false, "The v-model value of the component."> & DefineVModel<"", Spacing, false, null, false, "The v-model value of the component."> & DefineProp<"disableTop", boolean> & DefineProp<"disableBottom", boolean> & DefineProp<"disableLeft", boolean> & DefineProp<"disableRight", boolean> & BaseProps;
5
+ type MultiProps = DefineVModel<"", Spacing, false, null, false, "The v-model value of the component."> & DefineProp<"disableTop", boolean> & DefineProp<"disableBottom", boolean> & DefineProp<"disableLeft", boolean> & DefineProp<"disableRight", boolean> & BaseProps;
6
6
  declare const _default: <TType extends "single" | "multi">(props: import("@omnia/fx/ux").ExtractProps<{
7
7
  type?: TType;
8
8
  } & (TType extends "multi" ? MultiProps : SingleProps)> & (({
@@ -1,7 +1,8 @@
1
- import { Spacing, SpacingScale, SpacingValue } from "@omnia/fx-models";
1
+ import { Spacing, SpacingPreset, SpacingScale, SpacingValue } from "@omnia/fx-models";
2
2
  import { Positions } from "../SpacingPicker3.css";
3
3
  export declare const InputTypeDefinitions: readonly ["single", "multi"];
4
4
  export type InputTypes = typeof InputTypeDefinitions[number];
5
+ type PresetSelection = "none" | "preset" | "custom";
5
6
  export declare const useSpacingPickerStore: () => {
6
7
  state: {
7
8
  internalModel: Spacing | SpacingValue;
@@ -11,23 +12,32 @@ export declare const useSpacingPickerStore: () => {
11
12
  position: Positions;
12
13
  applyToAll: boolean;
13
14
  };
15
+ presetSelection: PresetSelection;
14
16
  settings: {
15
17
  scaleSelection: boolean;
18
+ presetButtons: boolean;
16
19
  type: "single" | "multi";
17
20
  scale: SpacingScale;
21
+ preset: SpacingPreset;
18
22
  };
19
23
  };
20
24
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
25
+ selectPreset: (preset: PresetSelection) => void;
21
26
  setSelectionContext(positions: Positions, applyToAll: boolean): void;
22
27
  setCustomValueFromSelection: () => void;
23
28
  updateValue: (value: number | SpacingValue) => void;
24
29
  changeScale: () => void;
25
- initState: (model: Spacing | SpacingValue) => void;
30
+ init: (model: Spacing | SpacingValue) => void;
26
31
  }>;
27
32
  get: {
28
33
  valueForPosition: (position: Positions) => SpacingValue | Spacing;
29
34
  };
30
- datatTypes: {};
35
+ datatTypes: {
36
+ presetOptions: {
37
+ id: PresetSelection;
38
+ title: string;
39
+ }[];
40
+ };
31
41
  rules: {
32
42
  isSelected: (position: Positions) => boolean;
33
43
  isCustomValueSelected: () => boolean;
@@ -36,3 +46,4 @@ export declare const useSpacingPickerStore: () => {
36
46
  } & {
37
47
  dispose?: () => void;
38
48
  };
49
+ export {};
@@ -11,15 +11,18 @@ export declare const useThemeDefinitionPickerStore: () => {
11
11
  searchText: string;
12
12
  blueprint: import("@omnia/fx-models").InputBlueprint;
13
13
  variant: "button" | "dialog" | "dropdown" | "journey" | "virtual-list";
14
+ selectionBlade: guid;
14
15
  showMenu: boolean;
15
16
  };
16
17
  events: import("@omnia/fx/stores").StoreEvents<{
17
18
  searchText: string;
18
19
  blueprint: import("@omnia/fx-models").InputBlueprint;
19
20
  variant: "button" | "dialog" | "dropdown" | "journey" | "virtual-list";
21
+ selectionBlade: guid;
20
22
  showMenu: boolean;
21
23
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
22
24
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
25
+ setSelectionJourney: (settings: import("internal/fx/ux/oxide/picker/stores/PickerStore").SelectionJourney) => void;
23
26
  itemSelections: () => {
24
27
  show: () => void;
25
28
  hide: () => void;
@@ -1,3 +1,3 @@
1
1
  export * from "./styling";
2
2
  export * from "./store";
3
- export * from "./defaultblueprints";
3
+ export * from "./theme-templates";
@@ -0,0 +1,2 @@
1
+ import { TypographyFontDefinition } from "@omnia/fx-models";
2
+ export declare function loadCustomFont(font: TypographyFontDefinition): Promise<void>;
@@ -0,0 +1,18 @@
1
+ import { Future, ITemplateRegistration, TypographyFontDefinition } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
+ export declare const useFontStore: () => {
3
+ actions: import("@omnia/fx-models/internal-do-not-import-from-here/shared").StoreReturnDefineAction<{
4
+ ensureLoadFonts: () => Future<ITemplateRegistration<TypographyFontDefinition, import("@omnia/fx-models/internal-do-not-import-from-here/shared").TemplateRegistrationType>[]>;
5
+ addFont(font: TypographyFontDefinition): void;
6
+ editFont(font: TypographyFontDefinition): void;
7
+ onFinishLoad(): Promise<Record<string, ITemplateRegistration<any, import("@omnia/fx-models/internal-do-not-import-from-here/shared").TemplateRegistrationType>>>;
8
+ saveFont(): Promise<boolean>;
9
+ delete(font: TypographyFontDefinition): Promise<void>;
10
+ }>;
11
+ get: {
12
+ readonly availableFonts: TypographyFontDefinition[];
13
+ findFont(family: string): ITemplateRegistration<TypographyFontDefinition, import("@omnia/fx-models/internal-do-not-import-from-here/shared").TemplateRegistrationType>;
14
+ readonly finishLoad: boolean;
15
+ };
16
+ } & {
17
+ dispose?: () => void;
18
+ };
@@ -0,0 +1,20 @@
1
+ import { guid, ITemplateRegistration, TemplateRegistrationType } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
+ export declare const useTemplateRegistrationStore: () => {
3
+ state: {
4
+ registrations: Record<string, ITemplateRegistration<any, TemplateRegistrationType>>;
5
+ };
6
+ events: import("@omnia/fx-models/internal-do-not-import-from-here/shared").StoreEvents<{
7
+ registrations: Record<string, ITemplateRegistration<any, TemplateRegistrationType>>;
8
+ }, Record<string, import("@omnia/fx-models/internal-do-not-import-from-here/shared").IMessageBusTopicPublishSubscriber<any>>>;
9
+ actions: import("@omnia/fx-models/internal-do-not-import-from-here/shared").StoreReturnDefineAction<{
10
+ upsertRegistration<TTemplateRegistration extends ITemplateRegistration<any>>(registration: TTemplateRegistration): Promise<boolean>;
11
+ deleteRegistration(registrationId: guid): Promise<boolean>;
12
+ ensureLoadTemplates: () => Promise<Record<string, ITemplateRegistration<any, TemplateRegistrationType>>>;
13
+ }>;
14
+ get: {
15
+ byId: <TTemplateRegistration extends ITemplateRegistration<any>>(id: guid) => ITemplateRegistration<any, TemplateRegistrationType>;
16
+ getByType: <TTemplateRegistration extends ITemplateRegistration<any>>(type: TemplateRegistrationType) => Array<TTemplateRegistration>;
17
+ };
18
+ } & {
19
+ dispose?: () => void;
20
+ };
@@ -7,12 +7,14 @@ export declare const useThemeProviderStore: () => {
7
7
  defaultTheme: ResolvedThemeDefinition;
8
8
  availableThemes: ThemesResolved;
9
9
  isLoaded: boolean;
10
+ ready: boolean;
10
11
  };
11
12
  events: import("@omnia/fx/stores").StoreEvents<{
12
13
  adminTheme: ResolvedThemeDefinition;
13
14
  defaultTheme: ResolvedThemeDefinition;
14
15
  availableThemes: ThemesResolved;
15
16
  isLoaded: boolean;
17
+ ready: boolean;
16
18
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
17
19
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
18
20
  reloadTheme(): Promise<void>;
@@ -21,7 +23,6 @@ export declare const useThemeProviderStore: () => {
21
23
  delete(id: guid): Promise<unknown>;
22
24
  }>;
23
25
  get: {
24
- readonly additionalThemeId: guid;
25
26
  readonly adminTheme: ResolvedThemeDefinition;
26
27
  readonly defaultTheme: ResolvedThemeDefinition;
27
28
  getByType: (type: TemplateRegistrationType) => Array<any>;
@@ -1,5 +1,8 @@
1
+ import "./RegisterThemeProvider";
1
2
  export * from "@omnia/fx-models/internal-do-not-import-from-here/shared/aurora/stores";
2
3
  export * from "./ColorSchemaManager";
3
4
  export * from "./StateManager";
4
5
  export * from "./ThemeStorage";
5
6
  export * from "./TextStyleConfigurationStore";
7
+ export * from "./TemplateRegistrationStore";
8
+ export * from "./FontStore";
@@ -1,6 +1,6 @@
1
- import { Spacing } from "@omnia/fx-models";
1
+ import { Spacing, SpacingPreset } from "@omnia/fx-models";
2
2
  import { useSpacingBlueprintStore } from "@omnia/fx-models/internal-do-not-import-from-here/shared/aurora/stores";
3
3
  export declare namespace BlueprintValues {
4
4
  function getBlueprintSpacingValue(value: any, blueprint?: ReturnType<typeof useSpacingBlueprintStore>): number;
5
- function getBlueprintSpacingValues(value: Spacing, blueprint?: ReturnType<typeof useSpacingBlueprintStore>): Spacing;
5
+ function getBlueprintSpacingValues(value: Spacing | SpacingPreset, blueprint?: ReturnType<typeof useSpacingBlueprintStore>): Spacing;
6
6
  }