@omnia/fx 8.0.459-dev → 8.0.461-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 (129) hide show
  1. package/internal-do-not-import-from-here/manifests/omnia.fx.core.manifest.json +1 -1
  2. package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
  3. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
  4. package/internal-do-not-import-from-here/services/identities/index.d.ts +0 -1
  5. package/internal-do-not-import-from-here/services/index.d.ts +1 -0
  6. package/internal-do-not-import-from-here/shared-mobile/models/IPagingable.d.ts +5 -0
  7. package/internal-do-not-import-from-here/shared-mobile/models/ItemQuery.d.ts +10 -0
  8. package/internal-do-not-import-from-here/shared-mobile/models/NamedProperty.d.ts +38 -0
  9. package/internal-do-not-import-from-here/shared-mobile/models/SharedConstants.d.ts +3 -0
  10. package/internal-do-not-import-from-here/shared-mobile/models/SharedMobileEnums.d.ts +189 -0
  11. package/internal-do-not-import-from-here/shared-mobile/models/identities/BuiltInIdentityProvider.d.ts +7 -0
  12. package/internal-do-not-import-from-here/shared-mobile/models/identities/GroupIdentity.d.ts +54 -0
  13. package/internal-do-not-import-from-here/shared-mobile/models/identities/GroupMembers.d.ts +6 -0
  14. package/internal-do-not-import-from-here/shared-mobile/models/identities/Identity.d.ts +37 -0
  15. package/internal-do-not-import-from-here/shared-mobile/models/identities/IdentityQuery.d.ts +26 -0
  16. package/internal-do-not-import-from-here/shared-mobile/models/identities/IdentityTypes.d.ts +8 -0
  17. package/internal-do-not-import-from-here/shared-mobile/models/identities/ScopeTypes.d.ts +5 -0
  18. package/internal-do-not-import-from-here/shared-mobile/models/identities/UserIdentity.d.ts +107 -0
  19. package/internal-do-not-import-from-here/shared-mobile/models/identities/UserIdentityQuery.d.ts +26 -0
  20. package/internal-do-not-import-from-here/shared-mobile/models/identities/index.d.ts +9 -0
  21. package/internal-do-not-import-from-here/shared-mobile/models/index.d.ts +8 -0
  22. package/internal-do-not-import-from-here/shared-mobile/models/media-picker/MediaPickerMedia.d.ts +33 -0
  23. package/internal-do-not-import-from-here/shared-mobile/models/media-picker/index.d.ts +1 -0
  24. package/internal-do-not-import-from-here/shared-mobile/models/oxide/OSizeTypes.d.ts +2 -0
  25. package/internal-do-not-import-from-here/shared-mobile/models/oxide/index.d.ts +1 -0
  26. package/internal-do-not-import-from-here/shared-mobile/models/properties/PropertySettingsLock.d.ts +13 -0
  27. package/internal-do-not-import-from-here/shared-mobile/models/properties/definitions/EmailPropertyDefinition.d.ts +12 -0
  28. package/internal-do-not-import-from-here/shared-mobile/models/properties/definitions/ImagePropertyDefinition.d.ts +24 -0
  29. package/internal-do-not-import-from-here/shared-mobile/models/properties/definitions/LanguagePropertyDefinition.d.ts +14 -0
  30. package/internal-do-not-import-from-here/shared-mobile/models/properties/definitions/TextPropertyDefinition.d.ts +16 -0
  31. package/internal-do-not-import-from-here/shared-mobile/models/properties/definitions/index.d.ts +4 -0
  32. package/internal-do-not-import-from-here/shared-mobile/models/properties/index.d.ts +3 -0
  33. package/internal-do-not-import-from-here/shared-mobile/models/properties/values/EmailPropertyValue.d.ts +6 -0
  34. package/internal-do-not-import-from-here/shared-mobile/models/properties/values/ImagePropertyValue.d.ts +8 -0
  35. package/internal-do-not-import-from-here/shared-mobile/models/properties/values/LanguagePropertyValue.d.ts +7 -0
  36. package/internal-do-not-import-from-here/shared-mobile/models/properties/values/PhoneNumberPropertyValue.d.ts +6 -0
  37. package/internal-do-not-import-from-here/shared-mobile/models/properties/values/TextPropertyValue.d.ts +6 -0
  38. package/internal-do-not-import-from-here/shared-mobile/models/properties/values/index.d.ts +5 -0
  39. package/internal-do-not-import-from-here/shared-mobile/services/IdentityService.d.ts +30 -0
  40. package/internal-do-not-import-from-here/shared-mobile/services/index.d.ts +1 -0
  41. package/internal-do-not-import-from-here/shared-mobile/stores/IdentityStore.d.ts +20 -0
  42. package/internal-do-not-import-from-here/shared-mobile/stores/index.d.ts +1 -0
  43. package/internal-do-not-import-from-here/stores/ArchivedIdentityStore.d.ts +4 -23
  44. package/internal-do-not-import-from-here/stores/CommentLikeStore.d.ts +1 -2
  45. package/internal-do-not-import-from-here/stores/IdentityStore.d.ts +1 -21
  46. package/internal-do-not-import-from-here/stores/UserTypeIdentityStore.d.ts +11 -20
  47. package/internal-do-not-import-from-here/stores/index.d.ts +1 -0
  48. package/internal-do-not-import-from-here/ux/admin/system/submenu/localizationadmin/localizationinput/LocalizationInput.d.ts +1 -1
  49. package/internal-do-not-import-from-here/ux/admin/usermanagement/groups/GroupDetailBlade.d.ts +1 -1
  50. package/internal-do-not-import-from-here/ux/alignmentpicker/AlignmentPicker.d.ts +3 -1
  51. package/internal-do-not-import-from-here/ux/analytics/metric/Metric.d.ts +1 -1
  52. package/internal-do-not-import-from-here/ux/aurora/admin/themedesigner/componentblueprints/store/ComponentEditorStore.d.ts +3 -0
  53. package/internal-do-not-import-from-here/ux/aurora/admin/themedesigner/componentblueprints/store/HeaderEditorStore.d.ts +3 -0
  54. package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonBlueprintsViewer.d.ts +1 -1
  55. package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/store/ButtonStyleEditorStore.d.ts +2 -1
  56. package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/DynamicColorIndicator.d.ts +1 -1
  57. package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/ColorSchemaDefinitionPicker.d.ts +1 -1
  58. package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderPicker.d.ts +10 -4
  59. package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderRenderer.d.ts +4 -2
  60. package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderRenderer.stylex.d.ts +4 -0
  61. package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/store/HeaderPickerStore.d.ts +3 -1
  62. package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/store/HeaderStyleEditorStore.d.ts +9 -2
  63. package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingPicker3.d.ts +2 -4
  64. package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/store/SpacingPickerStore.d.ts +38 -0
  65. package/internal-do-not-import-from-here/ux/aurora/components/tabs/store/TabStyleEditorStore.d.ts +5 -3
  66. package/internal-do-not-import-from-here/ux/aurora/components/typography/TypographyBlueprintsViewer.d.ts +1 -1
  67. package/internal-do-not-import-from-here/ux/datetimepicker/DateTimePicker.d.ts +1 -1
  68. package/internal-do-not-import-from-here/ux/datetimezonepicker/DateTimeZonePicker.d.ts +1 -1
  69. package/internal-do-not-import-from-here/ux/docs/chrome/SampleViewer.d.ts +1 -1
  70. package/internal-do-not-import-from-here/ux/docs/chrome/VelcronSampleViewer.d.ts +1 -1
  71. package/internal-do-not-import-from-here/ux/enterprisepropertysets/Picker.d.ts +1 -1
  72. package/internal-do-not-import-from-here/ux/enterprisepropertysets/picker/EnterprisePropertySetPicker.d.ts +1 -1
  73. package/internal-do-not-import-from-here/ux/governancedashboard/NumericIndicator.d.ts +1 -1
  74. package/internal-do-not-import-from-here/ux/iconpicker/IconPicker.d.ts +1 -1
  75. package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +5 -5
  76. package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncAddCondition.d.ts +1 -1
  77. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.d.ts +9 -9
  78. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerButton.d.ts +16 -9
  79. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +3 -3
  80. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerField.d.ts +3 -3
  81. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerInlineField.d.ts +9 -9
  82. package/internal-do-not-import-from-here/ux/inputlanguagepicker/InputLanguagePicker.d.ts +1 -1
  83. package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +1 -1
  84. package/internal-do-not-import-from-here/ux/journey/selection/JourneySelect.d.ts +1 -1
  85. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/LayoutEditorCanvas.d.ts +8 -0
  86. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/blockplaceholder/BlockPlaceholder.d.ts +1 -1
  87. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/MediaPicker.d.ts +4 -4
  88. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/editor/ImageEditorCanvas.d.ts +4 -4
  89. package/internal-do-not-import-from-here/ux/mobile/index.d.ts +0 -1
  90. package/internal-do-not-import-from-here/ux/monaco/MonacoEditor.d.ts +4 -4
  91. package/internal-do-not-import-from-here/ux/multilingualinput/MultilingualInput.d.ts +1 -1
  92. package/internal-do-not-import-from-here/ux/multitextinput/MultiTextInput.d.ts +1 -1
  93. package/internal-do-not-import-from-here/ux/optionpicker/OptionPicker.d.ts +1 -1
  94. package/internal-do-not-import-from-here/ux/oxide/breadcrumbs/Breadcrumbs.d.ts +1 -1
  95. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +1 -1
  96. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.d.ts +1 -1
  97. package/internal-do-not-import-from-here/ux/oxide/panel/store/PanelStore.d.ts +0 -1
  98. package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +1 -1
  99. package/internal-do-not-import-from-here/ux/oxide/selection/Selection.d.ts +1 -1
  100. package/internal-do-not-import-from-here/ux/oxide/splitpane/Splitpane.d.ts +2 -2
  101. package/internal-do-not-import-from-here/ux/oxide/stepper/StepperStep.d.ts +1 -1
  102. package/internal-do-not-import-from-here/ux/oxide/switch/Switch.d.ts +10 -8
  103. package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +7 -3
  104. package/internal-do-not-import-from-here/ux/oxide/treeview/OTreeViewV3.d.ts +1 -1
  105. package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +1 -1
  106. package/internal-do-not-import-from-here/ux/post/templates/PostCardDisplay.d.ts +1 -1
  107. package/internal-do-not-import-from-here/ux/properties/models/{PropertySettingsLock.d.ts → PropertySettingsLockHelper.d.ts} +1 -13
  108. package/internal-do-not-import-from-here/ux/properties/models/index.d.ts +1 -1
  109. package/internal-do-not-import-from-here/ux/properties/property-configuration/LabelOptionsRenderer.d.ts +1 -2
  110. package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyConfiguration.d.ts +1 -2
  111. package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyLocking.d.ts +1 -2
  112. package/internal-do-not-import-from-here/ux/richtexteditor/EditorMenuBar.d.ts +1 -1
  113. package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditor.d.ts +2 -2
  114. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/HashTag/HashTagEditorExtension.d.ts +1 -1
  115. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/HashTag/HashTagToolbar.d.ts +1 -1
  116. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Mention/Mention.d.ts +1 -1
  117. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Mention/MentionToolbar.d.ts +1 -1
  118. package/internal-do-not-import-from-here/ux/selection/SelectionComponent.d.ts +1 -1
  119. package/internal-do-not-import-from-here/ux/settings/SettingsPane.d.ts +1 -1
  120. package/internal-do-not-import-from-here/ux/social/PeopleTagging.d.ts +6 -6
  121. package/internal-do-not-import-from-here/ux/usertypelayout/UserTypeLayoutRenderer.d.ts +1 -1
  122. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +1 -2
  123. package/package.json +3 -3
  124. package/internal-do-not-import-from-here/services/identities/IdentityService.d.ts +0 -32
  125. package/internal-do-not-import-from-here/ux/oxide/panel/Panel.stylex_old.d.ts +0 -0
  126. package/internal-do-not-import-from-here/ux/oxide/panel/Panel_old.d.ts +0 -0
  127. package/internal-do-not-import-from-here/ux/shared-mobile/oxides/Text.d.ts +0 -19
  128. package/internal-do-not-import-from-here/ux/shared-mobile/oxides/Theming.d.ts +0 -6
  129. package/internal-do-not-import-from-here/ux/shared-mobile/oxides/index.d.ts +0 -1
@@ -0,0 +1,107 @@
1
+ import { guid, PropertyValueBinding } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
+ import { IResolvedIdentity, Identity } from "./Identity";
3
+ import { IdentityTypes } from "./IdentityTypes";
4
+ import { ScopeTypes } from "./ScopeTypes";
5
+ import { EmailPropertyDefinition, EmailPropertyValue, ImagePropertyDefinition, LanguagePropertyDefinition, PhoneNumberPropertyValue, TextPropertyDefinition } from "../properties";
6
+ import { IOmniaPropertyBag, OmniaNamedModel } from "../NamedProperty";
7
+ declare class AzureAdUserPropertyValues {
8
+ private resolvedUser;
9
+ objectId: guid;
10
+ profileUrl: string;
11
+ constructor(resolvedUser: ResolvedUserIdentity);
12
+ }
13
+ export declare class UserIdentity extends Identity {
14
+ type: IdentityTypes;
15
+ }
16
+ export declare class ResolvedUserIdentity extends UserIdentity implements IResolvedIdentity {
17
+ userTypeId: guid;
18
+ providerId: guid;
19
+ propertyValues: Array<PropertyValueBinding<any>>;
20
+ displayName: PropertyValueBinding<TextPropertyDefinition>;
21
+ username: PropertyValueBinding<TextPropertyDefinition>;
22
+ image: PropertyValueBinding<ImagePropertyDefinition>;
23
+ email: PropertyValueBinding<EmailPropertyDefinition>;
24
+ preferredLanguage: PropertyValueBinding<LanguagePropertyDefinition>;
25
+ uiLanguage: PropertyValueBinding<LanguagePropertyDefinition>;
26
+ providerIdentity: string;
27
+ scope: string;
28
+ isRemoved: boolean;
29
+ firstLogin: Date;
30
+ lastLogin: Date;
31
+ replacedByIdentity: Identity;
32
+ replacesIdentity: Identity;
33
+ scopeType: ScopeTypes;
34
+ static create(options: Partial<ResolvedUserIdentity>): ResolvedUserIdentity;
35
+ static isAzureAdUser(resolvedUser: ResolvedUserIdentity): boolean;
36
+ static isOmniaUser(resolvedUser: ResolvedUserIdentity): boolean;
37
+ static tryToGetAzureAdProperties(resolvedUser: ResolvedUserIdentity): AzureAdUserPropertyValues;
38
+ static safeGetUiLanguage(resolvedUser: ResolvedUserIdentity): PropertyValueBinding<LanguagePropertyDefinition>;
39
+ static isAnonymousUser(resolvedUser: ResolvedUserIdentity): boolean;
40
+ static getDisplayName(user: ResolvedUserIdentity, deletedUserText: string): string;
41
+ }
42
+ export declare abstract class UserPropertyBagModel extends OmniaNamedModel {
43
+ }
44
+ export interface UserWithProperties extends ResolvedUserIdentity {
45
+ properties: Array<UserPropertyBagModel>;
46
+ }
47
+ export interface UserWithPropertyBag extends ResolvedUserIdentity {
48
+ propertyBag: IOmniaPropertyBag<UserPropertyBagModel>;
49
+ }
50
+ export declare class UserAccessibilitySettings extends UserPropertyBagModel {
51
+ useContrastTheme: boolean;
52
+ useAccessibilityFeature: boolean;
53
+ constructor();
54
+ }
55
+ export declare class DocumentDirectionSettings extends UserPropertyBagModel {
56
+ useContrastTheme: boolean;
57
+ isRTLDocument: boolean;
58
+ constructor();
59
+ }
60
+ export declare enum UserSortColumn {
61
+ DisplayName = 1,
62
+ Email = 2,
63
+ Username = 3,
64
+ ProviderId = 4,
65
+ UserTypeId = 5
66
+ }
67
+ export interface UserIdentityAddRequest {
68
+ id: guid;
69
+ providerId: guid;
70
+ userTypeId: guid;
71
+ displayName: PropertyValueBinding<TextPropertyDefinition>;
72
+ username: PropertyValueBinding<TextPropertyDefinition>;
73
+ image: PropertyValueBinding<ImagePropertyDefinition>;
74
+ email: PropertyValueBinding<EmailPropertyDefinition>;
75
+ preferredLanguage: PropertyValueBinding<LanguagePropertyDefinition>;
76
+ uiLanguage: PropertyValueBinding<LanguagePropertyDefinition>;
77
+ propertyValues: Array<PropertyValueBinding<any>>;
78
+ scope: string;
79
+ scopeType: ScopeTypes;
80
+ }
81
+ export interface UserIdentityAddOrUpdateRequestWithPassword extends UserIdentityAddRequest {
82
+ password: string;
83
+ }
84
+ export interface UserIdentityAddOrUpdateWithAuthInformation extends UserIdentityAddRequest {
85
+ authenticationInformation: UserAuthenticationInformation;
86
+ }
87
+ export interface UserAuthenticationInformation {
88
+ authenticationEmail: EmailPropertyValue;
89
+ authenticationMobile: PhoneNumberPropertyValue;
90
+ disabled?: boolean;
91
+ validFrom?: Date;
92
+ validTo?: Date;
93
+ }
94
+ export interface UserAddWithAuthInfoReponse {
95
+ user: ResolvedUserIdentity;
96
+ setupAuthLink: string;
97
+ emailSent: boolean;
98
+ }
99
+ export interface ResetAccountRequest {
100
+ sendAuthSetupLinkByEmail: boolean;
101
+ redirectUrl: string;
102
+ }
103
+ export declare class UserThemeManager extends UserPropertyBagModel {
104
+ constructor();
105
+ selectedAdminThemeId: guid;
106
+ }
107
+ export {};
@@ -0,0 +1,26 @@
1
+ import { guid } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
+ import { ItemQuery } from "../ItemQuery";
3
+ import { Identity } from "./Identity";
4
+ import { ScopeTypes } from "./ScopeTypes";
5
+ import { BoolFilter } from "../SharedMobileEnums";
6
+ export declare class UserIdentityQuery extends ItemQuery {
7
+ limitedToIdentities: Identity[];
8
+ includeTransitiveUsers: boolean;
9
+ searchText?: string;
10
+ /**
11
+ * This is user type id or group type id value.
12
+ */
13
+ typeIds?: guid[];
14
+ providerIds?: guid[];
15
+ excludeTypeIds?: guid[];
16
+ emailEnabled?: BoolFilter;
17
+ permissionEnabled?: BoolFilter;
18
+ scope?: string;
19
+ tenantIdentityOnly?: boolean;
20
+ scopeType?: ScopeTypes;
21
+ constructor(limitedToIdentities: Identity[], includeTransitiveUsers: boolean, searchText?: string,
22
+ /**
23
+ * This is user type id or group type id value.
24
+ */
25
+ typeIds?: guid[], providerIds?: guid[], excludeTypeIds?: guid[], emailEnabled?: BoolFilter, permissionEnabled?: BoolFilter, scope?: string, tenantIdentityOnly?: boolean, scopeType?: ScopeTypes);
26
+ }
@@ -0,0 +1,9 @@
1
+ export * from "./Identity";
2
+ export * from "./IdentityTypes";
3
+ export * from "./IdentityQuery";
4
+ export * from "./ScopeTypes";
5
+ export * from "./GroupIdentity";
6
+ export * from "./GroupMembers";
7
+ export * from "./UserIdentity";
8
+ export * from "./UserIdentityQuery";
9
+ export * from "./BuiltInIdentityProvider";
@@ -0,0 +1,8 @@
1
+ export * from "./properties";
2
+ export * from "./SharedMobileEnums";
3
+ export * from "./IPagingable";
4
+ export * from "./ItemQuery";
5
+ export * from "./identities";
6
+ export * from "./NamedProperty";
7
+ export * from "./media-picker";
8
+ export * from "./oxide";
@@ -0,0 +1,33 @@
1
+ import { guid } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
+ import { MediaPickerEnums } from "../SharedMobileEnums";
3
+ export interface MediaPickerMedia {
4
+ omniaMediaType: MediaPickerEnums.OmniaMediaTypes;
5
+ }
6
+ export interface MediaPickerImageMetaData extends IMediaMetadata {
7
+ /**
8
+ * File name including file type extension
9
+ * i.e. "name.format" or atleast .filetype for unknown file names
10
+ * */
11
+ fileName: string;
12
+ }
13
+ export interface IMediaMetadata {
14
+ caption?: string;
15
+ altText?: string;
16
+ providerId?: guid;
17
+ }
18
+ export interface IVideoMetadata extends IMediaMetadata {
19
+ }
20
+ export interface MediaPickerImage extends MediaPickerMedia, MediaPickerImageMetaData {
21
+ omniaImageId: number;
22
+ omniaServiceId: guid;
23
+ }
24
+ export interface MediaPickerVideo extends MediaPickerMedia, IVideoMetadata {
25
+ html: string;
26
+ thumbnailUrl?: string;
27
+ videoUrl: string;
28
+ autoPlay: boolean;
29
+ startTime?: string;
30
+ mute: boolean;
31
+ graphDriveId?: string;
32
+ graphDriveItemId?: string;
33
+ }
@@ -0,0 +1 @@
1
+ export * from "./MediaPickerMedia";
@@ -0,0 +1,2 @@
1
+ export declare const OSizeTypeDefinitions: readonly ["default", "x-small", "small", "large", "x-large"];
2
+ export type OSizeTypes = typeof OSizeTypeDefinitions[number];
@@ -0,0 +1 @@
1
+ export * from "./OSizeTypes";
@@ -0,0 +1,13 @@
1
+ import { PropertyDisplaySettingsBase } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
+ export declare enum PropertyLockStatus {
3
+ open = 1,
4
+ locked = 2,
5
+ rollback = 3
6
+ }
7
+ export type PropertyLockStatusType<T> = T extends object ? {
8
+ [K in keyof T]?: PropertyLockStatusType<T[K]>;
9
+ } : PropertyLockStatus;
10
+ export type LockStatusExcludeChildren<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>> & Record<K, PropertyLockStatus>;
11
+ export type LockingPropertyDisplaySettings = {
12
+ locks?: PropertyLockStatusType<LockStatusExcludeChildren<Omit<LockingPropertyDisplaySettings, "locks">, "label">>;
13
+ } & PropertyDisplaySettingsBase;
@@ -0,0 +1,12 @@
1
+ import { guid, PropertyDefinition, PropertyDisplaySettingsBase, PropertyEditorSettingsBase } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
+ import { EmailPropertyValue } from "../values";
3
+ export declare class EmailDisplaySettings extends PropertyDisplaySettingsBase {
4
+ showIcon?: boolean;
5
+ }
6
+ export declare class EmailEditorSettings extends PropertyEditorSettingsBase {
7
+ }
8
+ export declare const EmailPropertyDefinitionId: guid;
9
+ export declare class EmailPropertyDefinition extends PropertyDefinition<EmailPropertyValue, EmailDisplaySettings, EmailEditorSettings> {
10
+ id: guid;
11
+ typeName: string;
12
+ }
@@ -0,0 +1,24 @@
1
+ import { guid, PropertyDefinition, PropertyDisplaySettingsBase, PropertyEditorSettingsBase } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
+ import { LockStatusExcludeChildren, PropertyLockStatusType } from "../PropertySettingsLock";
3
+ import { ImagePropertyValue } from "../values";
4
+ import { OSizeTypes } from "../../oxide";
5
+ export declare class ImageDisplaySettings extends PropertyDisplaySettingsBase {
6
+ locks?: PropertyLockStatusType<LockStatusExcludeChildren<Omit<ImageDisplaySettings, "locks">, "label">>;
7
+ width?: string;
8
+ height?: string;
9
+ avatar?: {
10
+ size: OSizeTypes;
11
+ };
12
+ }
13
+ export declare class ImageEditorSettings extends PropertyEditorSettingsBase {
14
+ locks?: PropertyLockStatusType<LockStatusExcludeChildren<Omit<ImageEditorSettings, "locks">, "cropRatioUniqueIds" | "preConfiguredImageScalingUniqueId">>;
15
+ preConfiguredImageScalingUniqueId?: guid;
16
+ forceScaling?: boolean;
17
+ cropRatioUniqueIds?: Array<guid>;
18
+ rollupRatiosDisabled?: boolean;
19
+ }
20
+ export declare const imagePropertyDefinitionId: guid;
21
+ export declare class ImagePropertyDefinition extends PropertyDefinition<ImagePropertyValue, ImageDisplaySettings, ImageEditorSettings> {
22
+ id: guid;
23
+ typeName: string;
24
+ }
@@ -0,0 +1,14 @@
1
+ import { guid, PropertyDefinition, PropertyDisplaySettingsBase, PropertyEditorSettingsBase } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
+ import { LanguagePropertyValue } from "../values";
3
+ export declare class LanguageDisplaySettings extends PropertyDisplaySettingsBase {
4
+ hideFlag?: boolean;
5
+ showLanguageName?: boolean;
6
+ size?: number;
7
+ }
8
+ export declare class LanguageEditorSettings extends PropertyEditorSettingsBase {
9
+ }
10
+ export declare const LanguagePropertyDefinitionId: guid;
11
+ export declare class LanguagePropertyDefinition extends PropertyDefinition<LanguagePropertyValue, LanguageDisplaySettings, LanguageEditorSettings> {
12
+ id: guid;
13
+ typeName: string;
14
+ }
@@ -0,0 +1,16 @@
1
+ import { guid, PropertyDefinition, PropertyDisplaySettingsBase, PropertyEditorSettingsBase } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
+ import { TextPropertyValue } from "../values";
3
+ export declare class TextDisplaySettings extends PropertyDisplaySettingsBase {
4
+ multiLine?: boolean;
5
+ }
6
+ export declare class TextEditorSettings extends PropertyEditorSettingsBase {
7
+ maxLength?: number;
8
+ multiLine?: boolean;
9
+ disallowWhiteSpace?: boolean;
10
+ rows?: number;
11
+ }
12
+ export declare const textPropertyDefinitionId: guid;
13
+ export declare class TextPropertyDefinition extends PropertyDefinition<TextPropertyValue, TextDisplaySettings, TextEditorSettings> {
14
+ id: guid;
15
+ typeName: string;
16
+ }
@@ -0,0 +1,4 @@
1
+ export * from "./EmailPropertyDefinition";
2
+ export * from "./ImagePropertyDefinition";
3
+ export * from "./LanguagePropertyDefinition";
4
+ export * from "./TextPropertyDefinition";
@@ -0,0 +1,3 @@
1
+ export * from "./values";
2
+ export * from "./definitions";
3
+ export * from "./PropertySettingsLock";
@@ -0,0 +1,6 @@
1
+ import { PropertyValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
+ export declare class EmailPropertyValue extends PropertyValue {
3
+ email: string;
4
+ constructor(email: string);
5
+ isEmpty(): boolean;
6
+ }
@@ -0,0 +1,8 @@
1
+ import { PropertyValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
+ import { MediaPickerImage } from "../../media-picker";
3
+ export declare class ImagePropertyValue extends PropertyValue {
4
+ image: MediaPickerImage;
5
+ queryValue: number;
6
+ constructor(image: MediaPickerImage);
7
+ isEmpty(): boolean;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { LanguageTags } from "../../SharedMobileEnums";
2
+ import { PropertyValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
3
+ export declare class LanguagePropertyValue extends PropertyValue {
4
+ language: LanguageTags;
5
+ constructor(language: LanguageTags);
6
+ isEmpty(): boolean;
7
+ }
@@ -0,0 +1,6 @@
1
+ import { PropertyValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
+ export declare class PhoneNumberPropertyValue extends PropertyValue {
3
+ number: string;
4
+ constructor(number: string);
5
+ isEmpty(): boolean;
6
+ }
@@ -0,0 +1,6 @@
1
+ import { PropertyValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
2
+ export declare class TextPropertyValue extends PropertyValue {
3
+ text: string;
4
+ constructor(text: string);
5
+ isEmpty(): boolean;
6
+ }
@@ -0,0 +1,5 @@
1
+ export * from "./EmailPropertyValue";
2
+ export * from "./TextPropertyValue";
3
+ export * from "./ImagePropertyValue";
4
+ export * from "./PhoneNumberPropertyValue";
5
+ export * from "./LanguagePropertyValue";
@@ -0,0 +1,30 @@
1
+ import { Identity, IdentityQuery, IResolvedIdentity, ItemQueryResult, GroupIdentity, GroupMembers, ResolvedUserIdentity, UserIdentity, UserIdentityQuery } from "../models";
2
+ import { ApiResponse, Future, guid } from "@omnia/fx-models/internal-do-not-import-from-here/shared";
3
+ export declare const useIdentityService: () => {
4
+ query: (query: IdentityQuery) => Future<import("@omnia/fx-models/internal-do-not-import-from-here/shared").HttpResponse<ApiResponse<ItemQueryResult<IResolvedIdentity>>>>;
5
+ queryUsers: (query: UserIdentityQuery) => Future<ItemQueryResult<IResolvedIdentity>>;
6
+ getSpecialIdentities: () => Future<IResolvedIdentity[]>;
7
+ resolveIdentities: (identites: Identity[]) => Future<{
8
+ [uid: string]: IResolvedIdentity;
9
+ }>;
10
+ resolveUserIdentities: (usernames: string[]) => Future<{
11
+ [username: string]: ResolvedUserIdentity;
12
+ }>;
13
+ resolveUserIdentitiesByEmails: (emails: string[]) => Future<{
14
+ [email: string]: ResolvedUserIdentity;
15
+ }>;
16
+ checkUserMemberOfGroups: (user: UserIdentity, groups: GroupIdentity[]) => Future<{
17
+ [groupUid: string]: boolean;
18
+ }>;
19
+ getUserGroups: (user: UserIdentity) => Future<GroupIdentity[]>;
20
+ getGroupsMembers: (groups: GroupIdentity[]) => Future<{
21
+ [groupIdentityUid: string]: GroupMembers;
22
+ }>;
23
+ getIdentitiesWithProviderIdentities: (providerId: guid, userIds: guid[]) => Future<{
24
+ [userIdentityUid: string]: Identity;
25
+ }>;
26
+ queryArchive: (query: IdentityQuery) => Future<ItemQueryResult<IResolvedIdentity>>;
27
+ resolveArchivedUserIdentities: (identites: Identity[]) => Future<{
28
+ [uid: string]: IResolvedIdentity;
29
+ }>;
30
+ };
@@ -0,0 +1 @@
1
+ export * from "./IdentityService";
@@ -0,0 +1,20 @@
1
+ import { StoreReturnDefineAction, Future } from "@omnia/fx-models/internal-do-not-import-from-here/shared";
2
+ import { Identity, IdentityQuery, IResolvedIdentity, ItemQueryResult } from "../models";
3
+ export type IdentityStoreType = {
4
+ getters: {
5
+ getResolvedIdentity: (identity: Identity) => IResolvedIdentity;
6
+ getResolvedIdentities: () => IResolvedIdentity[];
7
+ };
8
+ mutations: {
9
+ addOrUpdateResolvedIdentities(resolvedIdentities: IResolvedIdentity[]): void;
10
+ };
11
+ actions: StoreReturnDefineAction<{
12
+ resolveIdentities(identities: Identity[]): Promise<{
13
+ [uid: string]: IResolvedIdentity;
14
+ }>;
15
+ query(query: IdentityQuery): Future<ItemQueryResult<IResolvedIdentity>>;
16
+ }>;
17
+ };
18
+ export declare const useIdentityStore: () => IdentityStoreType & {
19
+ dispose?: () => void;
20
+ };
@@ -0,0 +1 @@
1
+ export * from "./IdentityStore";
@@ -1,23 +1,4 @@
1
- import { Future, IResolvedIdentity, Identity, IdentityQuery } from "@omnia/fx-models";
2
- import { Store } from "./Store";
3
- import { IIdentityPickerStore } from "./IdentityStore";
4
- export declare class ArchivedIdentityStore extends Store implements IIdentityPickerStore {
5
- private identityService;
6
- private archivedIdentitiesState;
7
- getters: {
8
- getResolvedIdentity: (identity: Identity) => IResolvedIdentity;
9
- getResolvedIdentities: () => IResolvedIdentity[];
10
- };
11
- mutations: {
12
- addOrUpdateResolvedIdentities: (resolvedIdentities: IResolvedIdentity[]) => void;
13
- };
14
- actions: {
15
- resolveIdentities: import("./Store").StoreAction<unknown, (identities: Identity[]) => void, (result: {
16
- [uid: string]: IResolvedIdentity;
17
- }, identities: Identity[]) => void, (failureReason: any, identities: Identity[]) => void, (identities: Identity[]) => Promise<{
18
- [uid: string]: IResolvedIdentity;
19
- }>>;
20
- query: import("./Store").StoreAction<unknown, (query: IdentityQuery) => void, (result: import("@omnia/fx-models").ItemQueryResult<IResolvedIdentity>, query: IdentityQuery) => void, (failureReason: any, query: IdentityQuery) => void, (query: IdentityQuery) => Future<import("@omnia/fx-models").ItemQueryResult<IResolvedIdentity>>>;
21
- };
22
- protected onActivated(): void;
23
- }
1
+ import { IdentityStoreType } from "@omnia/fx/stores";
2
+ export declare const useArchivedIdentityStore: () => IdentityStoreType & {
3
+ dispose?: () => void;
4
+ };
@@ -1,6 +1,5 @@
1
1
  import { CommentLike, Like, Comment, ResolvedUserIdentity, ReactionType } from "../models";
2
2
  import { Store } from "../stores/Store";
3
- import { IdentityStore } from "./IdentityStore";
4
3
  export interface ILikeService {
5
4
  socialReacts: (topicId: string, commentId: string, isReacts: boolean, reactionType: ReactionType) => Promise<void>;
6
5
  toggleLike: (...params: any[]) => Promise<void>;
@@ -13,7 +12,7 @@ export interface ICommentLikeService extends ILikeService {
13
12
  markBestReply: (topicId: string, commentId: string) => Promise<void>;
14
13
  }
15
14
  export declare class CommentLikeStore extends Store {
16
- identityStore: IdentityStore;
15
+ private identityStore;
17
16
  likes: import("../stores/Store").StoreState<{
18
17
  [topicId: string]: Like[];
19
18
  }>;
@@ -1,5 +1,5 @@
1
1
  import { Future, IResolvedIdentity, Identity, IdentityQuery, ItemQueryResult } from "../models";
2
- import { Store, StoreAction, MapActionOnDispatching, MapActionOnDispatched, MapActionOnFailure } from "./Store";
2
+ import { StoreAction, MapActionOnDispatching, MapActionOnDispatched, MapActionOnFailure } from "./Store";
3
3
  type QueryActionDispatcher = (query: IdentityQuery) => Future<ItemQueryResult<IResolvedIdentity>>;
4
4
  type ResolveIdentitiesActionDispatcher = (identities: Identity[]) => Promise<{
5
5
  [uid: string]: IResolvedIdentity;
@@ -13,24 +13,4 @@ export interface IIdentityPickerStore {
13
13
  resolveIdentities: StoreAction<unknown, MapActionOnDispatching<ResolveIdentitiesActionDispatcher>, MapActionOnDispatched<ResolveIdentitiesActionDispatcher>, MapActionOnFailure<ResolveIdentitiesActionDispatcher>, ResolveIdentitiesActionDispatcher>;
14
14
  };
15
15
  }
16
- export declare class IdentityStore extends Store implements IIdentityPickerStore {
17
- private identityService;
18
- private identitiesState;
19
- getters: {
20
- getResolvedIdentity: (identity: Identity) => IResolvedIdentity;
21
- getResolvedIdentities: () => IResolvedIdentity[];
22
- };
23
- mutations: {
24
- addOrUpdateResolvedIdentities: (resolvedIdentities: IResolvedIdentity[]) => void;
25
- };
26
- actions: {
27
- resolveIdentities: StoreAction<unknown, (identities: Identity[]) => void, (result: {
28
- [uid: string]: IResolvedIdentity;
29
- }, identities: Identity[]) => void, (failureReason: any, identities: Identity[]) => void, (identities: Identity[]) => Promise<{
30
- [uid: string]: IResolvedIdentity;
31
- }>>;
32
- query: StoreAction<unknown, (query: IdentityQuery) => void, (result: ItemQueryResult<IResolvedIdentity>, query: IdentityQuery) => void, (failureReason: any, query: IdentityQuery) => void, (query: IdentityQuery) => Future<ItemQueryResult<IResolvedIdentity>>>;
33
- };
34
- protected onActivated(): void;
35
- }
36
16
  export {};
@@ -1,13 +1,11 @@
1
1
  import { Future, guid, IResolvedIdentity, Identity, IdentityQuery, ItemQueryResult, UserIdentityQuery } from "@omnia/fx-models";
2
- import { IdentityService } from "../services";
3
- import { IIdentityPickerStore, IdentityStore } from "./IdentityStore";
4
2
  import { Store } from "./Store";
3
+ import { IdentityStoreType } from "@omnia/fx-models/internal-do-not-import-from-here/shared-mobile/stores";
5
4
  export declare class UserTypeIdentityStore extends Store {
6
5
  private identityService;
7
6
  private identityStore;
8
7
  private userTypeIdentitiesState;
9
8
  getters: {
10
- createIdentityPickerStore: (userType: guid) => UserTypeIdentityPickerStore;
11
9
  getIdentitiesOfUserType: (userType: guid) => ItemQueryResult<IResolvedIdentity>;
12
10
  };
13
11
  actions: {
@@ -21,22 +19,15 @@ export declare class UserTypeIdentityStore extends Store {
21
19
  };
22
20
  protected onActivated(): void;
23
21
  }
24
- export declare class UserTypeIdentityPickerStore extends Store implements IIdentityPickerStore {
25
- private userTypeIdentityStore;
26
- private identityStore;
27
- private identityService;
28
- private userType;
29
- constructor(userTypeIdentityStore: UserTypeIdentityStore, identityStore: IdentityStore, identityService: IdentityService, userType: guid);
30
- getters: {
31
- getResolvedIdentity: (identity: Identity) => IResolvedIdentity;
22
+ export type UserTypeIdentityStoreType = IdentityStoreType & {
23
+ mutate: {
24
+ userType: (value: guid) => void;
32
25
  };
33
- actions: {
34
- resolveIdentities: import("./Store").StoreAction<unknown, (identities: Identity[]) => void, (result: {
35
- [uid: string]: IResolvedIdentity;
36
- }, identities: Identity[]) => void, (failureReason: any, identities: Identity[]) => void, (identities: Identity[]) => Promise<{
37
- [uid: string]: IResolvedIdentity;
38
- }>>;
39
- query: import("./Store").StoreAction<unknown, (query: IdentityQuery) => void, (result: ItemQueryResult<IResolvedIdentity>, query: IdentityQuery) => void, (failureReason: any, query: IdentityQuery) => void, (query: IdentityQuery) => Future<ItemQueryResult<IResolvedIdentity>>>;
26
+ };
27
+ export declare const useUserTypeIdentityPickerStore: () => IdentityStoreType & {
28
+ mutate: {
29
+ userType: (value: guid) => void;
40
30
  };
41
- protected onActivated(): void;
42
- }
31
+ } & {
32
+ dispose?: () => void;
33
+ };
@@ -31,6 +31,7 @@ export * from "./DirectionRuleStore";
31
31
  export * from "./PostStore";
32
32
  export * from "./TimeZoneStore";
33
33
  export * from "./IdentityStore";
34
+ export * from "@omnia/fx-models/internal-do-not-import-from-here/shared-mobile/stores";
34
35
  export * from "./UserIdentityStore";
35
36
  export * from "./GroupIdentityStore";
36
37
  export * from "./UserTypeStore";
@@ -33,4 +33,4 @@ export declare const LocalizationInput: (props: import("@omnia/fx/ux").ExtractPr
33
33
  "v-slots"?: {} & Omit<{
34
34
  default?: import("vue").Slot;
35
35
  }, never>;
36
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "localization" | "disabled" | "requiredWithValidator" | "language" | "languages" | "localizationChange" | "modelChange"> & import("@omnia/fx/ux").VNodeEvents) => any;
36
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "localization" | "disabled" | "language" | "requiredWithValidator" | "languages" | "localizationChange" | "modelChange"> & import("@omnia/fx/ux").VNodeEvents) => any;
@@ -42,5 +42,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
42
42
  } & Omit<{
43
43
  default?: import("vue").Slot;
44
44
  }, "actions">;
45
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "readonly" | "slot:actions" | "getApi" | "group" | "businessProfileId" | "hasAdminPermission" | "emit:save" | "emit:delete"> & import("@omnia/fx/ux").VNodeEvents) => any;
45
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "businessProfileId" | "readonly" | "slot:actions" | "getApi" | "group" | "hasAdminPermission" | "emit:save" | "emit:delete"> & import("@omnia/fx/ux").VNodeEvents) => any;
46
46
  export default _default;
@@ -8,6 +8,8 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
8
8
  modelValue?: HorizontalAlignments | VerticalAlignments;
9
9
  } & {
10
10
  vertical?: boolean;
11
+ } & {
12
+ noCenterSelection?: boolean;
11
13
  } & {
12
14
  label?: string;
13
15
  } & DefineEmit<"update:modelValue", (value: HorizontalAlignments | VerticalAlignments) => true>> & {
@@ -16,5 +18,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
16
18
  "v-slots"?: {} & Omit<{
17
19
  default?: import("vue").Slot;
18
20
  }, never>;
19
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "vertical" | "modelValue" | "emit:update:modelValue" | "v-model"> & import("@omnia/fx/ux").VNodeEvents) => any;
21
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "vertical" | "modelValue" | "emit:update:modelValue" | "v-model" | "noCenterSelection"> & import("@omnia/fx/ux").VNodeEvents) => any;
20
22
  export default _default;
@@ -7,5 +7,5 @@ declare const _default: (props: import("../..").ExtractProps<MetricProps> & {
7
7
  "v-slots"?: {} & Omit<{
8
8
  default?: import("vue").Slot;
9
9
  }, never>;
10
- } & {} & Omit<import("../..").VueComponentBaseProps, "title" | "icon" | "iconColor" | "emit:click" | "description" | "metricInfo"> & import("../..").VNodeEvents) => any;
10
+ } & {} & Omit<import("../..").VueComponentBaseProps, "title" | "icon" | "description" | "iconColor" | "emit:click" | "metricInfo"> & import("../..").VNodeEvents) => any;
11
11
  export default _default;
@@ -133,6 +133,9 @@ export declare const useComponentsEditorStore: () => {
133
133
  addVariant(): string;
134
134
  applyChanges(): void;
135
135
  }>;
136
+ get: {
137
+ editingVariantName: () => string;
138
+ };
136
139
  } & {
137
140
  dispose?: () => void;
138
141
  };
@@ -21,6 +21,9 @@ export declare const useHeadersEditorStore: () => {
21
21
  addVariant(): string;
22
22
  applyChanges(): void;
23
23
  }>;
24
+ get: {
25
+ editingVariantName: () => string;
26
+ };
24
27
  } & {
25
28
  dispose?: () => void;
26
29
  };
@@ -23,5 +23,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
23
23
  "v-slots"?: {} & Omit<{
24
24
  default?: import("vue").Slot;
25
25
  }, never>;
26
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "variant" | "editable" | "modelValue" | "emit:update:modelValue" | "v-model" | "toned" | "emit:click:add" | "emit:click:select" | "blueprintStrategy"> & import("@omnia/fx/ux").VNodeEvents) => any;
26
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "variant" | "modelValue" | "emit:update:modelValue" | "v-model" | "toned" | "emit:click:add" | "emit:click:select" | "editable" | "blueprintStrategy"> & import("@omnia/fx/ux").VNodeEvents) => any;
27
27
  export default _default;
@@ -1,4 +1,4 @@
1
- import { ButtonBlueprint, ButtonBlueprintVariant, TextBlueprint, VelcronAppDefinition, VelcronRendererResolverReference } from "@omnia/fx-models";
1
+ import { ButtonBlueprint, ButtonBlueprintVariant, HorizontalAlignments, TextBlueprint, VelcronAppDefinition, VelcronRendererResolverReference } from "@omnia/fx-models";
2
2
  export declare const useButtonStyleEditorStore: () => {
3
3
  state: {
4
4
  internalModel: ButtonBlueprint;
@@ -6,6 +6,7 @@ export declare const useButtonStyleEditorStore: () => {
6
6
  upperCase: boolean;
7
7
  defaultColorSchemaType: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
8
8
  enableDynamicColor: boolean;
9
+ iconPosition: HorizontalAlignments;
9
10
  editingDefault: ButtonBlueprint;
10
11
  editingTemplate: {
11
12
  viewRenderer: VelcronRendererResolverReference;