@omnia/fx 8.0.442-dev → 8.0.443-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 (35) hide show
  1. package/internal-do-not-import-from-here/ux/UxModels.d.ts +5 -0
  2. package/internal-do-not-import-from-here/ux/admin/index.d.ts +0 -1
  3. package/internal-do-not-import-from-here/ux/admin/queryableproperties/InternalStore.d.ts +50 -0
  4. package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesAddBlade.d.ts +8 -6
  5. package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesJourney.d.ts +7 -62
  6. package/internal-do-not-import-from-here/ux/admin/usermanagement/self-service/PropertyForm.d.ts +15 -0
  7. package/internal-do-not-import-from-here/ux/admin/usermanagement/shared/SelfServiceStore.d.ts +10 -19
  8. package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstanceCompletedStepVueComponent.d.ts +1 -1
  9. package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/FillPicker.d.ts +1 -1
  10. package/internal-do-not-import-from-here/ux/aurora/components/textcolorpicker/TextColorPicker.d.ts +2 -4
  11. package/internal-do-not-import-from-here/ux/aurora/components/textcolorpicker/store/TextColorPickerStore.d.ts +10 -0
  12. package/internal-do-not-import-from-here/ux/aurora/components/textstylepicker/store/TextStylePickerStore.d.ts +1 -1
  13. package/internal-do-not-import-from-here/ux/aurora/store/ThemePreviewContextStore.d.ts +1 -1
  14. package/internal-do-not-import-from-here/ux/aurora/store/ThemeStore.d.ts +1 -1
  15. package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +1 -0
  16. package/internal-do-not-import-from-here/ux/enterpriseproperties/settings/extendedproperty/ExtendedPropertySettings.d.ts +5 -3
  17. package/internal-do-not-import-from-here/ux/iconpicker/loc/localize.d.ts +1 -0
  18. package/internal-do-not-import-from-here/ux/iconpicker/v2/IconListingRenderer.d.ts +17 -0
  19. package/internal-do-not-import-from-here/ux/iconpicker/v2/IconPicker.d.ts +7 -3
  20. package/internal-do-not-import-from-here/ux/iconpicker/v2/Icons.d.ts +2 -0
  21. package/internal-do-not-import-from-here/ux/journey/stores/JourneyStore.d.ts +1 -0
  22. package/package.json +2 -2
  23. package/internal-do-not-import-from-here/ux/admin/queryableproperties/IQueryablePropertiesJourney.d.ts +0 -10
  24. package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryableProperties.css.d.ts +0 -1
  25. package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesHomeBlade.d.ts +0 -16
  26. package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesInfoBlade.d.ts +0 -11
  27. package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesJourneyConstants.d.ts +0 -6
  28. package/internal-do-not-import-from-here/ux/admin/queryableproperties/index.d.ts +0 -1
  29. package/internal-do-not-import-from-here/ux/admin/usermanagement/self-service/AddPropertyBlade.d.ts +0 -6
  30. package/internal-do-not-import-from-here/ux/admin/usermanagement/self-service/AddUserTypeBlade.d.ts +0 -6
  31. package/internal-do-not-import-from-here/ux/admin/usermanagement/self-service/ApprovalBlade.d.ts +0 -6
  32. package/internal-do-not-import-from-here/ux/admin/usermanagement/self-service/DefaultBlade.d.ts +0 -6
  33. package/internal-do-not-import-from-here/ux/admin/usermanagement/self-service/EditPropertyBlade.d.ts +0 -6
  34. package/internal-do-not-import-from-here/ux/admin/usermanagement/self-service/EditUserTypeBlade.d.ts +0 -6
  35. package/internal-do-not-import-from-here/ux/admin/usermanagement/self-service/UserTypesBlade.d.ts +0 -6
@@ -7,6 +7,11 @@ export interface OmniaUxLocalization {
7
7
  Flags: string;
8
8
  };
9
9
  Common: {
10
+ Property: {
11
+ Add: string;
12
+ Create: string;
13
+ Edit: string;
14
+ };
10
15
  Buttons: {
11
16
  Ok: string;
12
17
  Save: string;
@@ -2,7 +2,6 @@ export * from "./AdminRouter";
2
2
  export * from "./AdminChromeInstance";
3
3
  export * from "./BusinessProfileRouter";
4
4
  export * from "./store/AdminStore";
5
- export * from "./queryableproperties";
6
5
  export * from "./system/store/SystemJourneyStore";
7
6
  export * from "./system/submenu/services/store/ServicesJourneyStore";
8
7
  export * from "./businessprofile/manageprofiles/BusinessProfileJourneyStore";
@@ -0,0 +1,50 @@
1
+ import { EnterprisePropertyDefinition, EnterprisePropertyMappingStatus, guid } from "@omnia/fx-models";
2
+ type Settings = {
3
+ serviceId: guid;
4
+ additionalBuiltInProperties: guid[];
5
+ tableName: string;
6
+ };
7
+ export interface EnterprisePropertyDefinitionViewModel extends EnterprisePropertyDefinition {
8
+ deleting?: boolean;
9
+ status: EnterprisePropertyMappingStatus;
10
+ log?: string;
11
+ }
12
+ export declare const useInternalStore: () => {
13
+ state: {
14
+ initialProperties: EnterprisePropertyDefinitionViewModel[];
15
+ serviceId: guid;
16
+ additionalBuiltInProperties: guid[];
17
+ tableName: string;
18
+ availableProperties: EnterprisePropertyDefinition[];
19
+ error: string;
20
+ };
21
+ events: import("@omnia/fx/stores").StoreEvents<{
22
+ initialProperties: EnterprisePropertyDefinitionViewModel[];
23
+ serviceId: guid;
24
+ additionalBuiltInProperties: guid[];
25
+ tableName: string;
26
+ availableProperties: EnterprisePropertyDefinition[];
27
+ error: string;
28
+ }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
29
+ actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
30
+ init(settings: Settings): Promise<void>;
31
+ addMapping(property: EnterprisePropertyDefinition): Promise<void>;
32
+ removeProperty(property: EnterprisePropertyDefinition): Promise<void>;
33
+ }>;
34
+ mutate: {
35
+ initialProperties: (value: EnterprisePropertyDefinitionViewModel[] | ((prev: EnterprisePropertyDefinitionViewModel[]) => EnterprisePropertyDefinitionViewModel[])) => void;
36
+ serviceId: (value: guid | ((prev: guid) => guid)) => void;
37
+ additionalBuiltInProperties: (value: guid[] | ((prev: guid[]) => guid[])) => void;
38
+ tableName: (value: string | ((prev: string) => string)) => void;
39
+ availableProperties: (value: EnterprisePropertyDefinition[] | ((prev: EnterprisePropertyDefinition[]) => EnterprisePropertyDefinition[])) => void;
40
+ error: (value: string | ((prev: string) => string)) => void;
41
+ };
42
+ get: {
43
+ properties(searchText?: string): EnterprisePropertyDefinitionViewModel[];
44
+ readonly currentQueryableProperties: EnterprisePropertyDefinition[];
45
+ readonly availableProperties: EnterprisePropertyDefinition[];
46
+ };
47
+ } & {
48
+ dispose?: () => void;
49
+ };
50
+ export {};
@@ -1,13 +1,15 @@
1
- import { guid } from "@omnia/fx-models";
1
+ import { EnterprisePropertyDefinitionViewModel } from "./InternalStore";
2
2
  declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
3
- serviceId: guid;
3
+ "emit:update:modelValue": (value: EnterprisePropertyDefinitionViewModel) => void;
4
4
  } & {
5
- tableName: string;
5
+ "v-model"?: EnterprisePropertyDefinitionViewModel;
6
+ } & {
7
+ modelValue?: EnterprisePropertyDefinitionViewModel;
8
+ }> & {
9
+ "onUpdate:modelValue"?: (value: EnterprisePropertyDefinitionViewModel) => any;
6
10
  } & {
7
- additionalBuiltInProperties: guid[];
8
- }> & {} & {
9
11
  "v-slots"?: {} & Omit<{
10
12
  default?: import("vue").Slot;
11
13
  }, never>;
12
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "serviceId" | "additionalBuiltInProperties" | "tableName"> & import("@omnia/fx/ux").VNodeEvents) => any;
14
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "modelValue" | "emit:update:modelValue" | "v-model"> & import("@omnia/fx/ux").VNodeEvents) => any;
13
15
  export default _default;
@@ -1,64 +1,9 @@
1
+ import { DefineProp } from "@omnia/fx/ux";
1
2
  import { guid } from "@omnia/fx-models";
2
- declare const _default: {
3
- new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
4
- tableName: {
5
- type: import("vue").PropType<string>;
6
- };
7
- additionalTitle: {
8
- type: import("vue").PropType<string>;
9
- };
10
- additionalBuiltInProperties: {
11
- type: import("vue").PropType<guid[]>;
12
- required: false;
13
- };
14
- serviceId: {
15
- type: import("vue").PropType<guid>;
16
- };
17
- }>>, () => 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, {
18
- P: {};
19
- B: {};
20
- D: {};
21
- C: {};
22
- M: {};
23
- Defaults: {};
24
- }, Readonly<import("vue").ExtractPropTypes<{
25
- tableName: {
26
- type: import("vue").PropType<string>;
27
- };
28
- additionalTitle: {
29
- type: import("vue").PropType<string>;
30
- };
31
- additionalBuiltInProperties: {
32
- type: import("vue").PropType<guid[]>;
33
- required: false;
34
- };
35
- serviceId: {
36
- type: import("vue").PropType<guid>;
37
- };
38
- }>>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {}>;
39
- __isFragment?: never;
40
- __isTeleport?: never;
41
- __isSuspense?: never;
42
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
43
- tableName: {
44
- type: import("vue").PropType<string>;
45
- };
46
- additionalTitle: {
47
- type: import("vue").PropType<string>;
48
- };
49
- additionalBuiltInProperties: {
50
- type: import("vue").PropType<guid[]>;
51
- required: false;
52
- };
53
- serviceId: {
54
- type: import("vue").PropType<guid>;
55
- };
56
- }>>, () => 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 & {
57
- propsDefinition: Omit<Readonly<{} & {
58
- serviceId?: guid;
59
- additionalBuiltInProperties?: guid[];
60
- additionalTitle?: string;
61
- tableName?: string;
62
- }>, never>;
63
- };
3
+ type Prop = DefineProp<"serviceId", guid> & DefineProp<"additionalBuiltInProperties", guid[]> & DefineProp<"additionalTitle", string> & DefineProp<"tableName", string>;
4
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Prop> & {} & {
5
+ "v-slots"?: {} & Omit<{
6
+ default?: import("vue").Slot;
7
+ }, never>;
8
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "serviceId" | "additionalBuiltInProperties" | "tableName" | "additionalTitle"> & import("@omnia/fx/ux").VNodeEvents) => any;
64
9
  export default _default;
@@ -0,0 +1,15 @@
1
+ import { UserRequestFormSetting } from "@omnia/fx-models";
2
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
3
+ "emit:update:modelValue": (value: UserRequestFormSetting) => void;
4
+ } & {
5
+ "v-model"?: UserRequestFormSetting;
6
+ } & {
7
+ modelValue?: UserRequestFormSetting;
8
+ }> & {
9
+ "onUpdate:modelValue"?: (value: UserRequestFormSetting) => any;
10
+ } & {
11
+ "v-slots"?: {} & Omit<{
12
+ default?: import("vue").Slot;
13
+ }, never>;
14
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "modelValue" | "emit:update:modelValue" | "v-model"> & import("@omnia/fx/ux").VNodeEvents) => any;
15
+ export default _default;
@@ -1,4 +1,4 @@
1
- import { guid, IdentityPropertyBindingSetting, PropertyBindingSetting, UserRequestFormSetting, UserType, PropertyBinding, PropertyDefinition } from "@omnia/fx-models";
1
+ import { BusinessProfileIdentityCreationRequestSettings, guid, IdentityPropertyBindingSetting, PropertyBindingSetting, UserType, PropertyBinding, PropertyDefinition } from "@omnia/fx-models";
2
2
  import { TermSetPropertyBindingSetting } from "@omnia/fx-sp";
3
3
  import { UserTypePropertyFormSettingsViewModel } from "./UserManagementHelper";
4
4
  import { ExtendedPropertiesRegistrationViewModel } from "./UserManagementTempModel";
@@ -6,24 +6,17 @@ export declare const useSelfServiceStore: () => {
6
6
  state: {
7
7
  userType: UserType;
8
8
  settings: import("@omnia/fx-models").IdentityCreationRequestSettings;
9
- selectedSetting: UserRequestFormSetting;
10
- propertyBindingSettings: IdentityPropertyBindingSetting | TermSetPropertyBindingSetting;
11
- userProperties: Array<UserTypePropertyFormSettingsViewModel>;
12
- extendedPropertiesRegistration: Array<ExtendedPropertiesRegistrationViewModel>;
9
+ propertyBindingSettings: TermSetPropertyBindingSetting | IdentityPropertyBindingSetting;
10
+ userProperties: UserTypePropertyFormSettingsViewModel[];
11
+ extendedPropertiesRegistration: ExtendedPropertiesRegistrationViewModel[];
13
12
  extendedEnterprisePropBindings: PropertyBinding<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>[];
14
13
  };
15
14
  get: {
15
+ readonly settings: import("@omnia/fx-models").IdentityCreationRequestSettings;
16
16
  readonly defaultPropertyBindings: PropertyBinding<import("@omnia/fx-models").TextPropertyDefinition>[];
17
+ readonly userProperties: UserTypePropertyFormSettingsViewModel[];
17
18
  readonly userTypes: UserType[];
18
19
  readonly userPropertiesLookup: Map<string, UserTypePropertyFormSettingsViewModel>;
19
- readonly viewUserTypes: {
20
- displayName: string;
21
- id: guid;
22
- }[];
23
- readonly viewUserProperties: {
24
- id: guid;
25
- displayName: string;
26
- }[];
27
20
  readonly userTypeLookup: Map<guid, UserType>;
28
21
  isDefaultProperty(propertyBindingSetting: PropertyBindingSetting): boolean;
29
22
  isLookupProperty(propertyBindingSetting: PropertyBindingSetting): boolean;
@@ -34,17 +27,15 @@ export declare const useSelfServiceStore: () => {
34
27
  loadSettings: () => void;
35
28
  loadUserTypes: () => Promise<UserType[]>;
36
29
  loadUserProperties: (errorMessage: string) => Promise<void>;
37
- saveSettings: () => Promise<void>;
30
+ saveSettings: (settings: BusinessProfileIdentityCreationRequestSettings["settings"]) => Promise<void>;
38
31
  removePropertyBindings: (propertyBindingId: guid) => void;
39
- setPropertyBindingSettings: (propertyBindingSetting: PropertyBindingSetting) => void;
40
32
  }>;
41
33
  events: import("@omnia/fx/stores").StoreEvents<{
42
34
  userType: UserType;
43
35
  settings: import("@omnia/fx-models").IdentityCreationRequestSettings;
44
- selectedSetting: UserRequestFormSetting;
45
- propertyBindingSettings: IdentityPropertyBindingSetting | TermSetPropertyBindingSetting;
46
- userProperties: Array<UserTypePropertyFormSettingsViewModel>;
47
- extendedPropertiesRegistration: Array<ExtendedPropertiesRegistrationViewModel>;
36
+ propertyBindingSettings: TermSetPropertyBindingSetting | IdentityPropertyBindingSetting;
37
+ userProperties: UserTypePropertyFormSettingsViewModel[];
38
+ extendedPropertiesRegistration: ExtendedPropertiesRegistrationViewModel[];
48
39
  extendedEnterprisePropBindings: PropertyBinding<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>[];
49
40
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
50
41
  } & {
@@ -18,5 +18,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<AppInstanceC
18
18
  "v-slots"?: {} & Omit<{
19
19
  default?: import("vue").Slot;
20
20
  }, never>;
21
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "appInstance" | "action" | "hideProgressLabel" | "onHandleBeforeCreate" | "onHandleBeforeUpdate" | "deleteAppWithErrorStatusAfterCreating" | "emit:handleAppActionCompleted" | "emit:handleAppActionError"> & import("@omnia/fx/ux").VNodeEvents) => any;
21
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "appInstance" | "hideProgressLabel" | "action" | "onHandleBeforeCreate" | "onHandleBeforeUpdate" | "deleteAppWithErrorStatusAfterCreating" | "emit:handleAppActionCompleted" | "emit:handleAppActionError"> & import("@omnia/fx/ux").VNodeEvents) => any;
22
22
  export default _default;
@@ -37,5 +37,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
37
37
  } & Omit<{
38
38
  default?: import("vue").Slot;
39
39
  }, "activator">;
40
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "label" | "variant" | "modelValue" | "emit:update:modelValue" | "v-model" | "toned" | "colorType" | "slot:activator" | "enableDynamicColor" | "toolbarCallback" | "defaultColorSchemaType" | "singleColor" | "createNewColorDynamic"> & import("@omnia/fx/ux").VNodeEvents) => any;
40
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "label" | "variant" | "modelValue" | "emit:update:modelValue" | "v-model" | "toned" | "colorType" | "slot:activator" | "enableDynamicColor" | "toolbarCallback" | "defaultColorSchemaType" | "createNewColorDynamic" | "singleColor"> & import("@omnia/fx/ux").VNodeEvents) => any;
41
41
  export default _default;
@@ -17,9 +17,7 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
17
17
  } & {
18
18
  label?: string;
19
19
  } & {
20
- customTyping?: boolean;
21
- } & {
22
- singleColor?: boolean;
20
+ customColor?: boolean;
23
21
  } & {
24
22
  enableDynamicColor?: boolean;
25
23
  } & DefineSlot<"activator", () => VNodeChild>> & {
@@ -30,5 +28,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
30
28
  } & Omit<{
31
29
  default?: import("vue").Slot;
32
30
  }, "activator">;
33
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "variant" | "modelValue" | "emit:update:modelValue" | "v-model" | "toned" | "slot:activator" | "customTyping" | "enableDynamicColor" | "defaultColorSchemaType" | "singleColor"> & import("@omnia/fx/ux").VNodeEvents) => any;
31
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "variant" | "modelValue" | "emit:update:modelValue" | "v-model" | "toned" | "slot:activator" | "enableDynamicColor" | "customColor" | "defaultColorSchemaType"> & import("@omnia/fx/ux").VNodeEvents) => any;
34
32
  export default _default;
@@ -1,16 +1,20 @@
1
1
  import { BlueprintVariant, TextFillBlueprints, TextBlueprint, ColorValue, TextFillDefinitionValue } from "@omnia/fx-models";
2
+ export type TextColorOptionValue = "default" | "custom";
2
3
  export declare const useTextColorPickerStore: () => {
3
4
  state: {
4
5
  internalModel: TextBlueprint;
6
+ textColorOption: TextColorOptionValue;
5
7
  fillBlueprints: TextFillBlueprints;
6
8
  selectedColorValue: ColorValue;
7
9
  };
8
10
  events: import("@omnia/fx/stores").StoreEvents<{
9
11
  internalModel: TextBlueprint;
12
+ textColorOption: TextColorOptionValue;
10
13
  fillBlueprints: TextFillBlueprints;
11
14
  selectedColorValue: ColorValue;
12
15
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
13
16
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
17
+ setTextColorOption: (value: TextColorOptionValue) => void;
14
18
  clearValue(): void;
15
19
  selectValue(value: TextFillDefinitionValue): void;
16
20
  init: (model: TextBlueprint) => void;
@@ -18,6 +22,12 @@ export declare const useTextColorPickerStore: () => {
18
22
  rules: {
19
23
  isPlaceholder(variant: BlueprintVariant): boolean;
20
24
  };
25
+ dataTypes: {
26
+ textColorOptions: {
27
+ title: string;
28
+ value: TextColorOptionValue;
29
+ }[];
30
+ };
21
31
  get: {
22
32
  label: (variant: BlueprintVariant) => string;
23
33
  variant: (variant: BlueprintVariant) => any;
@@ -17,7 +17,7 @@ export declare const useTextStylePickerStore: () => {
17
17
  get: {
18
18
  readonly iconSize: number;
19
19
  readonly textStyle: textStyle;
20
- displayText: (textStyle: ThemedTextStyleValue) => string;
20
+ displayText: (textStyle: ThemedTextStyleValue) => any;
21
21
  displayIcon: (textStyle: ThemedTextStyleValue) => import("@omnia/fx-models").FontAwesomeIcon;
22
22
  };
23
23
  rules: {
@@ -77,7 +77,7 @@ export declare const useThemePreviewContextStore: () => {
77
77
  fills(): {
78
78
  text: {
79
79
  hasVariant(type: import("@omnia/fx-models").BlueprintVariant | string): boolean;
80
- byValue(value: import("@omnia/fx-models").TextFillDefinitionValue): any;
80
+ byValue(value: import("@omnia/fx-models").TextFillDefinitionValue): import("@omnia/fx-models").TextFillDefinitionValue;
81
81
  };
82
82
  container: {
83
83
  hasVariant(type: import("@omnia/fx-models").BlueprintVariant | string): boolean;
@@ -72,7 +72,7 @@ export declare const useThemeStore: () => {
72
72
  fills(): {
73
73
  text: {
74
74
  hasVariant(type: BlueprintVariant | string): boolean;
75
- byValue(value: TextFillDefinitionValue): any;
75
+ byValue(value: TextFillDefinitionValue): TextFillDefinitionValue;
76
76
  };
77
77
  container: {
78
78
  hasVariant(type: BlueprintVariant | string): boolean;
@@ -21,6 +21,7 @@ export declare const useTypographyBlueprintStore: () => {
21
21
  }>;
22
22
  get: {
23
23
  readonly defaultTypographyBlueprint: TypographyBlueprint;
24
+ textStyleName: (textStyle: TextStyleType, size: TextStyleSizes) => any;
24
25
  readonly themeStore: ReturnType<typeof useThemeStore>;
25
26
  readonly blueprint: TypographyBlueprint;
26
27
  typography(typographyType: TextStyleTypes | TextStyleType, size: TextStyleSize | TextStyleSizes): TextStyleDefinition;
@@ -1,4 +1,4 @@
1
- import { DefineSlot } from "@omnia/fx/ux";
1
+ import { DefineSlot, DefineEmit } from "@omnia/fx/ux";
2
2
  import { ExtendedPropertyEnterprisePropertyDefinition } from "@omnia/fx/models";
3
3
  import { VNodeChild } from "vue";
4
4
  import * as ux from "@omnia/fx/ux";
@@ -8,11 +8,13 @@ declare const _default: (props: ux.ExtractProps<{
8
8
  styles?: {
9
9
  container: import("typestyle/lib/types").NestedCSSProperties;
10
10
  };
11
- } & DefineSlot<"settings", () => VNodeChild>> & {} & {
11
+ } & DefineSlot<"settings", () => VNodeChild> & DefineEmit<"changeProperty", (property: ExtendedPropertyEnterprisePropertyDefinition) => void>> & {
12
+ onChangeProperty?: (property: ExtendedPropertyEnterprisePropertyDefinition) => any;
13
+ } & {
12
14
  "v-slots"?: {
13
15
  settings?: () => VNodeChild;
14
16
  } & Omit<{
15
17
  default?: import("vue").Slot;
16
18
  }, "settings">;
17
- } & {} & Omit<ux.VueComponentBaseProps, "styles" | "property" | "slot:settings"> & ux.VNodeEvents) => any;
19
+ } & {} & Omit<ux.VueComponentBaseProps, "styles" | "property" | "slot:settings" | "emit:changeProperty"> & ux.VNodeEvents) => any;
18
20
  export default _default;
@@ -5,5 +5,6 @@ export declare namespace IconPickerLocalization {
5
5
  AddImage: string;
6
6
  IconLibrary: string;
7
7
  CustomImage: string;
8
+ SelectIcon: string;
8
9
  }
9
10
  }
@@ -0,0 +1,17 @@
1
+ import { IIcon } from "@omnia/fx-models";
2
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
3
+ "emit:update:modelValue": (value: IIcon) => void;
4
+ } & {
5
+ "v-model"?: IIcon;
6
+ } & {
7
+ modelValue?: IIcon;
8
+ } & {
9
+ variant?: "dropdown" | "journey";
10
+ }> & {
11
+ "onUpdate:modelValue"?: (value: IIcon) => any;
12
+ } & {
13
+ "v-slots"?: {} & Omit<{
14
+ default?: import("vue").Slot;
15
+ }, never>;
16
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "variant" | "modelValue" | "emit:update:modelValue" | "v-model"> & import("@omnia/fx/ux").VNodeEvents) => any;
17
+ export default _default;
@@ -1,14 +1,18 @@
1
- import { IIcon, LegacyIconPickerModel, MediaPickerImage } from "@omnia/fx-models";
1
+ import { IIcon, LegacyIconPickerModel, MediaPickerImage, MediaPickerStorageProviderContext } from "@omnia/fx-models";
2
2
  declare const _default: <TType extends IIcon | MediaPickerImage | LegacyIconPickerModel>(props: import("@omnia/fx/ux").ExtractProps<{
3
3
  "emit:update:modelValue": (value: TType) => void;
4
4
  } & {
5
5
  "v-model"?: TType;
6
6
  } & {
7
7
  modelValue?: TType;
8
+ } & {
9
+ mediaPickerStorageProviderContext?: MediaPickerStorageProviderContext;
10
+ } & {
11
+ required?: boolean;
8
12
  } & {
9
13
  library?: "icon" | "image" | "icon-image";
10
14
  } & {
11
- label?: String;
15
+ label?: string;
12
16
  } & {
13
17
  variant?: "dropdown" | "journey";
14
18
  }> & {
@@ -17,5 +21,5 @@ declare const _default: <TType extends IIcon | MediaPickerImage | LegacyIconPick
17
21
  "v-slots"?: {} & Omit<{
18
22
  default?: import("vue").Slot;
19
23
  }, never>;
20
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "variant" | "modelValue" | "emit:update:modelValue" | "v-model" | "library"> & import("@omnia/fx/ux").VNodeEvents) => any;
24
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "variant" | "required" | "modelValue" | "emit:update:modelValue" | "v-model" | "mediaPickerStorageProviderContext" | "library"> & import("@omnia/fx/ux").VNodeEvents) => any;
21
25
  export default _default;
@@ -0,0 +1,2 @@
1
+ import { IIcon } from "@omnia/fx-models";
2
+ export declare const allIcons: Array<IIcon>;
@@ -134,6 +134,7 @@ export declare const useJourneyStore: () => {
134
134
  };
135
135
  actions: StoreReturnDefineAction<{
136
136
  registerBladeForRendering(blade: ReturnType<typeof defineBlade>): void;
137
+ removeBladeForRendering(blade: ReturnType<typeof defineBlade>): void;
137
138
  addBlade(newBlade: BladeInstance): void;
138
139
  removeBlade(blade: BladeInstance): void;
139
140
  getBladeSize(blade: BladeInstance): number;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.442-dev",
4
+ "version": "8.0.443-dev",
5
5
  "description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "author": "Omnia Digital Workplace AB",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "8.0.442-dev",
23
+ "@omnia/fx-models": "8.0.443-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",
@@ -1,10 +0,0 @@
1
- import { EnterprisePropertyDefinition, guid } from "../../../models";
2
- export interface IQueryablePropertiesJourneyState {
3
- selectedProperty: EnterprisePropertyDefinition;
4
- }
5
- export interface IQueryablePropertiesJourney {
6
- additionalTitle?: string;
7
- tableName?: string;
8
- serviceId: guid;
9
- additionalBuiltInProperties?: Array<guid>;
10
- }
@@ -1,16 +0,0 @@
1
- import { guid } from "@omnia/fx-models";
2
- import "./QueryableProperties.css";
3
- declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
4
- serviceId?: guid;
5
- } & {
6
- additionalBuiltInProperties?: guid[];
7
- } & {
8
- additionalTitle?: string;
9
- } & {
10
- tableName?: string;
11
- }> & {} & {
12
- "v-slots"?: {} & Omit<{
13
- default?: import("vue").Slot;
14
- }, never>;
15
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "serviceId" | "additionalBuiltInProperties" | "additionalTitle" | "tableName"> & import("@omnia/fx/ux").VNodeEvents) => any;
16
- export default _default;
@@ -1,11 +0,0 @@
1
- import { guid } from "@omnia/fx-models";
2
- declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
3
- serviceId: guid;
4
- } & {
5
- tableName: string;
6
- }> & {} & {
7
- "v-slots"?: {} & Omit<{
8
- default?: import("vue").Slot;
9
- }, never>;
10
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "serviceId" | "tableName"> & import("@omnia/fx/ux").VNodeEvents) => any;
11
- export default _default;
@@ -1,6 +0,0 @@
1
- import { guid } from "@omnia/fx-models";
2
- export declare const QueryablePropertiesJourneyBladeIds: {
3
- home: guid;
4
- add: guid;
5
- info: guid;
6
- };
@@ -1 +0,0 @@
1
- export * from "./IQueryablePropertiesJourney";
@@ -1,6 +0,0 @@
1
- declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {} & {
2
- "v-slots"?: {} & Omit<{
3
- default?: import("vue").Slot;
4
- }, never>;
5
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string> & import("@omnia/fx/ux").VNodeEvents) => any;
6
- export default _default;
@@ -1,6 +0,0 @@
1
- declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {} & {
2
- "v-slots"?: {} & Omit<{
3
- default?: import("vue").Slot;
4
- }, never>;
5
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string> & import("@omnia/fx/ux").VNodeEvents) => any;
6
- export default _default;
@@ -1,6 +0,0 @@
1
- declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {} & {
2
- "v-slots"?: {} & Omit<{
3
- default?: import("vue").Slot;
4
- }, never>;
5
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string> & import("@omnia/fx/ux").VNodeEvents) => any;
6
- export default _default;
@@ -1,6 +0,0 @@
1
- declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{}> & {} & {
2
- "v-slots"?: {} & Omit<{
3
- default?: import("vue").Slot;
4
- }, never>;
5
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, never> & import("@omnia/fx/ux").VNodeEvents) => any;
6
- export default _default;
@@ -1,6 +0,0 @@
1
- declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{}> & {} & {
2
- "v-slots"?: {} & Omit<{
3
- default?: import("vue").Slot;
4
- }, never>;
5
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, never> & import("@omnia/fx/ux").VNodeEvents) => any;
6
- export default _default;
@@ -1,6 +0,0 @@
1
- declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {} & {
2
- "v-slots"?: {} & Omit<{
3
- default?: import("vue").Slot;
4
- }, never>;
5
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string> & import("@omnia/fx/ux").VNodeEvents) => any;
6
- export default _default;
@@ -1,6 +0,0 @@
1
- declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {} & {
2
- "v-slots"?: {} & Omit<{
3
- default?: import("vue").Slot;
4
- }, never>;
5
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string> & import("@omnia/fx/ux").VNodeEvents) => any;
6
- export default _default;