@omnia/fx 8.0.427-dev → 8.0.428-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 (18) hide show
  1. package/internal-do-not-import-from-here/ux/app/management/core/loc.d.ts +5 -0
  2. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplateDetail.d.ts +8 -4
  3. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplatesListing.d.ts +6 -4
  4. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/CustomSteps.d.ts +4 -8
  5. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/Features.d.ts +4 -8
  6. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PermissionTab.d.ts +6 -0
  7. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PoliciesTab.d.ts +2 -6
  8. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertiesTab.d.ts +4 -8
  9. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertyRow.d.ts +1 -3
  10. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/WizardConfigurationItem.d.ts +12 -0
  11. package/internal-do-not-import-from-here/ux/aurora/admin/blades/fills/FillsJourney.d.ts +8 -15
  12. package/internal-do-not-import-from-here/ux/aurora/admin/blades/themedesigner/store/ThemeDesignerStore.d.ts +3 -0
  13. package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/store/ThemeEditorStore.d.ts +14 -0
  14. package/internal-do-not-import-from-here/ux/oxide/switch/Switch.d.ts +9 -3
  15. package/internal-do-not-import-from-here/ux/timezonepicker/TimeZonePicker.d.ts +18 -26
  16. package/internal-do-not-import-from-here/wctypings.d.ts +21 -11
  17. package/package.json +2 -2
  18. package/internal-do-not-import-from-here/ux/aurora/admin/blades/themedesigner/PreviewJourney.d.ts +0 -16
@@ -11,12 +11,15 @@ export declare namespace AppManagementLocalization {
11
11
  Feature: string;
12
12
  Setup: string;
13
13
  CustomSteps: string;
14
+ WizardConfiguration: string;
14
15
  Policies: string;
15
16
  UncheckTitle: string;
16
17
  UncheckConfirmation: string;
17
18
  MemberStep: string;
18
19
  EnableCutomSteps: string;
19
20
  AppAdministrator: string;
21
+ Permission: string;
22
+ Title: string;
20
23
  ProvisioningTemplate: string;
21
24
  Template: string;
22
25
  CreatedDate: string;
@@ -114,6 +117,8 @@ export declare namespace AppManagementLocalization {
114
117
  Summary: string;
115
118
  Back: string;
116
119
  ResetToDefault: string;
120
+ TextOn: string;
121
+ TextOff: string;
117
122
  };
118
123
  };
119
124
  }
@@ -1,4 +1,4 @@
1
- import { ElementRenderer, guid } from "@omnia/fx-models";
1
+ import { ElementRenderer, guid, IIcon } from "@omnia/fx-models";
2
2
  import { DefineEmit } from "@omnia/fx/ux";
3
3
  export interface ExtendElementRenderer extends ElementRenderer {
4
4
  render?: () => JSX.Element;
@@ -9,19 +9,23 @@ export declare enum AppManagementTemplateBladeSelection {
9
9
  Features = 2,
10
10
  CustomSteps = 3,
11
11
  Custom = 4,
12
- Policies = 5
12
+ Policies = 5,
13
+ Permission = 6
13
14
  }
14
15
  export interface AppManagementTemplateBlade {
15
16
  bladeSelection: AppManagementTemplateBladeSelection;
16
17
  renderManifestId?: guid;
17
18
  title?: string;
19
+ icon?: IIcon;
18
20
  }
19
- declare const _default: (props: import("@omnia/fx/ux").ExtractProps<DefineEmit<"close", () => void> & DefineEmit<"selectBladeSelection", (templateSelection: AppManagementTemplateBlade) => void>> & {
21
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<DefineEmit<"close", () => void> & DefineEmit<"selectBladeSelection", (templateSelection: AppManagementTemplateBlade) => void> & {
22
+ blades?: AppManagementTemplateBlade[];
23
+ }> & {
20
24
  onClose?: () => any;
21
25
  onSelectBladeSelection?: (templateSelection: AppManagementTemplateBlade) => any;
22
26
  } & {
23
27
  "v-slots"?: {} & Omit<{
24
28
  default?: import("vue").Slot;
25
29
  }, never>;
26
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "emit:close" | "emit:selectBladeSelection"> & import("@omnia/fx/ux").VNodeEvents) => any;
30
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "blades" | "emit:close" | "emit:selectBladeSelection"> & import("@omnia/fx/ux").VNodeEvents) => any;
27
31
  export default _default;
@@ -1,9 +1,11 @@
1
1
  import { AppTemplate } from "@omnia/fx-models";
2
- declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
3
- handleOpenEditTemplate?: (template: AppTemplate) => void;
4
- }> & {} & {
2
+ import { DefineEmit } from "@omnia/fx/ux";
3
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<DefineEmit<"handleOpenEditTemplate", (template: AppTemplate) => void> & DefineEmit<"loadedAppTemplates", (templates: AppTemplate[]) => void>> & {
4
+ onHandleOpenEditTemplate?: (template: AppTemplate) => any;
5
+ onLoadedAppTemplates?: (templates: AppTemplate[]) => any;
6
+ } & {
5
7
  "v-slots"?: {} & Omit<{
6
8
  default?: import("vue").Slot;
7
9
  }, never>;
8
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "handleOpenEditTemplate"> & import("@omnia/fx/ux").VNodeEvents) => any;
10
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "emit:handleOpenEditTemplate" | "emit:loadedAppTemplates"> & import("@omnia/fx/ux").VNodeEvents) => any;
9
11
  export default _default;
@@ -1,11 +1,10 @@
1
- import { AppProvisioningStepInfo, AppProvisioningStepRegistration, AppTemplate } from "@omnia/fx-models";
2
- import { DefineEmit } from "@omnia/fx/ux";
1
+ import { AppProvisioningStepInfo, AppProvisioningStepRegistration } from "@omnia/fx-models";
3
2
  export interface StepViewModel extends AppProvisioningStepRegistration {
4
3
  info: AppProvisioningStepInfo;
5
4
  checked?: boolean;
6
5
  label: string;
7
6
  }
8
- declare const _default: (props: import("@omnia/fx/ux").ExtractProps<DefineEmit<"close", () => void> & DefineEmit<"save", (appTemplate: AppTemplate) => void> & {
7
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
9
8
  isSaving?: boolean;
10
9
  } & {
11
10
  hasError?: boolean;
@@ -13,12 +12,9 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<DefineEmit<"
13
12
  errorMessage?: string;
14
13
  } & {
15
14
  hasSaved?: boolean;
16
- }> & {
17
- onClose?: () => any;
18
- onSave?: (appTemplate: AppTemplate) => any;
19
- } & {
15
+ }> & {} & {
20
16
  "v-slots"?: {} & Omit<{
21
17
  default?: import("vue").Slot;
22
18
  }, never>;
23
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "isSaving" | "hasError" | "emit:close" | "errorMessage" | "emit:save" | "hasSaved"> & import("@omnia/fx/ux").VNodeEvents) => any;
19
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "isSaving" | "hasError" | "errorMessage" | "hasSaved"> & import("@omnia/fx/ux").VNodeEvents) => any;
24
20
  export default _default;
@@ -1,9 +1,8 @@
1
- import { AppTemplate, Feature } from "@omnia/fx-models";
2
- import { DefineEmit } from "@omnia/fx/ux";
1
+ import { Feature } from "@omnia/fx-models";
3
2
  export interface FeatureViewModel extends Feature {
4
3
  checked?: boolean;
5
4
  }
6
- declare const _default: (props: import("@omnia/fx/ux").ExtractProps<DefineEmit<"close", () => void> & DefineEmit<"save", (appTemplate: AppTemplate) => void> & {
5
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
7
6
  hasSaved?: boolean;
8
7
  } & {
9
8
  hasError?: boolean;
@@ -11,12 +10,9 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<DefineEmit<"
11
10
  errorMessage?: string;
12
11
  } & {
13
12
  isSaving?: boolean;
14
- }> & {
15
- onClose?: () => any;
16
- onSave?: (appTemplate: AppTemplate) => any;
17
- } & {
13
+ }> & {} & {
18
14
  "v-slots"?: {} & Omit<{
19
15
  default?: import("vue").Slot;
20
16
  }, never>;
21
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "isSaving" | "hasError" | "emit:close" | "errorMessage" | "emit:save" | "hasSaved"> & import("@omnia/fx/ux").VNodeEvents) => any;
17
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "isSaving" | "hasError" | "errorMessage" | "hasSaved"> & import("@omnia/fx/ux").VNodeEvents) => any;
22
18
  export default _default;
@@ -0,0 +1,6 @@
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 +1,4 @@
1
- import { AppTemplate } from "@omnia/fx-models";
2
- import { DefineEmit } from "@omnia/fx/ux";
3
- declare const _default: (props: import("@omnia/fx/ux").ExtractProps<DefineEmit<"close", () => void> & DefineEmit<"save", (appTemplate: AppTemplate) => void> & {
1
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
4
2
  hasSaved?: boolean;
5
3
  } & {
6
4
  hasError?: boolean;
@@ -15,12 +13,10 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<DefineEmit<"
15
13
  } & {
16
14
  isSensitivityLabelsFeatureActivated?: boolean;
17
15
  }> & {
18
- onClose?: () => any;
19
- onSave?: (appTemplate: AppTemplate) => any;
20
16
  "onUpdate:isSensitivityLabelsFeatureActivated"?: (value: boolean) => any;
21
17
  } & {
22
18
  "v-slots"?: {} & Omit<{
23
19
  default?: import("vue").Slot;
24
20
  }, never>;
25
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "isSaving" | "hasError" | "emit:close" | "errorMessage" | "emit:save" | "hasSaved" | "isSensitivityLabelsFeatureActivated" | "emit:update:isSensitivityLabelsFeatureActivated" | "v-model:isSensitivityLabelsFeatureActivated"> & import("@omnia/fx/ux").VNodeEvents) => any;
21
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "isSaving" | "hasError" | "errorMessage" | "hasSaved" | "isSensitivityLabelsFeatureActivated" | "emit:update:isSensitivityLabelsFeatureActivated" | "v-model:isSensitivityLabelsFeatureActivated"> & import("@omnia/fx/ux").VNodeEvents) => any;
26
22
  export default _default;
@@ -1,5 +1,4 @@
1
- import { AppTemplate, DateTimeValue, EnterprisePropertyDefinition, MultilingualString, OptionValue, PropertyIndexedType, guid } from "@omnia/fx-models";
2
- import { DefineEmit } from "@omnia/fx/ux";
1
+ import { DateTimeValue, EnterprisePropertyDefinition, MultilingualString, OptionValue, PropertyIndexedType, guid } from "@omnia/fx-models";
3
2
  export interface DefaultEnterpriseProperty {
4
3
  type: PropertyIndexedType;
5
4
  title: MultilingualString;
@@ -16,7 +15,7 @@ export interface DateTimeEnterprisePropertyValue extends DefaultEnterpriseProper
16
15
  export interface FixedDefaultEnterprisePropertyValue extends DefaultEnterpriseProperty {
17
16
  display: boolean;
18
17
  }
19
- declare const _default: (props: import("@omnia/fx/ux").ExtractProps<DefineEmit<"close", () => void> & DefineEmit<"save", (appTemplate: AppTemplate) => void> & {
18
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
20
19
  isSaving?: boolean;
21
20
  } & {
22
21
  hasError?: boolean;
@@ -24,12 +23,9 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<DefineEmit<"
24
23
  errorMessage?: string;
25
24
  } & {
26
25
  hasSaved?: boolean;
27
- }> & {
28
- onClose?: () => any;
29
- onSave?: (appTemplate: AppTemplate) => any;
30
- } & {
26
+ }> & {} & {
31
27
  "v-slots"?: {} & Omit<{
32
28
  default?: import("vue").Slot;
33
29
  }, never>;
34
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "isSaving" | "hasError" | "emit:close" | "errorMessage" | "emit:save" | "hasSaved"> & import("@omnia/fx/ux").VNodeEvents) => any;
30
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "isSaving" | "hasError" | "errorMessage" | "hasSaved"> & import("@omnia/fx/ux").VNodeEvents) => any;
35
31
  export default _default;
@@ -10,11 +10,9 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
10
10
  appTemplate?: AppTemplate;
11
11
  } & {
12
12
  templateProperties?: EnterprisePropertyItemSettings[];
13
- } & {
14
- visibilitySettings?: any;
15
13
  }> & {} & {
16
14
  "v-slots"?: {} & Omit<{
17
15
  default?: import("vue").Slot;
18
16
  }, never>;
19
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "property" | "targetingProperties" | "appTemplate" | "defaultPropertySetValue" | "templateProperties" | "visibilitySettings"> & import("@omnia/fx/ux").VNodeEvents) => any;
17
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "property" | "targetingProperties" | "appTemplate" | "defaultPropertySetValue" | "templateProperties"> & import("@omnia/fx/ux").VNodeEvents) => any;
20
18
  export default _default;
@@ -0,0 +1,12 @@
1
+ import { DefineEmit } from "@omnia/fx/ux";
2
+ import { StepViewModel } from "./CustomSteps";
3
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
4
+ step?: StepViewModel;
5
+ } & DefineEmit<"buildItemList", () => void>> & {
6
+ onBuildItemList?: () => any;
7
+ } & {
8
+ "v-slots"?: {} & Omit<{
9
+ default?: import("vue").Slot;
10
+ }, never>;
11
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "step" | "emit:buildItemList"> & import("@omnia/fx/ux").VNodeEvents) => any;
12
+ export default _default;
@@ -1,16 +1,9 @@
1
- declare const _default: {
2
- new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{}>>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
3
- P: {};
4
- B: {};
5
- D: {};
6
- C: {};
7
- M: {};
8
- Defaults: {};
9
- }, Readonly<import("vue").ExtractPropTypes<{}>>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {}>;
10
- __isFragment?: never;
11
- __isTeleport?: never;
12
- __isSuspense?: never;
13
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, 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 & {
14
- propsDefinition: Omit<Readonly<{} & {}>, never>;
15
- };
1
+ type FillType = "container" | "text";
2
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
3
+ fillType?: FillType;
4
+ }> & {} & {
5
+ "v-slots"?: {} & Omit<{
6
+ default?: import("vue").Slot;
7
+ }, never>;
8
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "fillType"> & import("@omnia/fx/ux").VNodeEvents) => any;
16
9
  export default _default;
@@ -3,6 +3,9 @@ export declare const useThemeDesignerStore: () => {
3
3
  bladeIds: {
4
4
  themeDesignerStart: guid;
5
5
  };
6
+ rules: {
7
+ isAdvanceModeEnabled: () => boolean;
8
+ };
6
9
  state: {
7
10
  selectedMenuItem: JourneyMenuItem;
8
11
  activeElementKey: guid;
@@ -4,11 +4,23 @@ export declare const useThemeEditorStore: () => {
4
4
  definition: ITemplateRegistration<ResolvedThemeDefinition>;
5
5
  editMode: boolean;
6
6
  enableDelete: boolean;
7
+ showComponentsEditor: boolean;
8
+ displayKey: guid;
9
+ fills: {
10
+ show: boolean;
11
+ fillType: "text" | "container";
12
+ };
7
13
  };
8
14
  events: import("@omnia/fx/stores").StoreEvents<{
9
15
  definition: ITemplateRegistration<ResolvedThemeDefinition>;
10
16
  editMode: boolean;
11
17
  enableDelete: boolean;
18
+ showComponentsEditor: boolean;
19
+ displayKey: guid;
20
+ fills: {
21
+ show: boolean;
22
+ fillType: "text" | "container";
23
+ };
12
24
  }, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
13
25
  rules: {
14
26
  colors: {
@@ -16,6 +28,8 @@ export declare const useThemeEditorStore: () => {
16
28
  };
17
29
  };
18
30
  actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
31
+ showFills(type: "container" | "text"): void;
32
+ showComponentEditor(): void;
19
33
  colorSchemas(): {
20
34
  set: (colorSchema: ColorSchemaType, value: ColorSchema) => void;
21
35
  };
@@ -1,10 +1,16 @@
1
1
  import { DefineProp, DefinePropTheming, DefineVModel, ValidationRule } from "@omnia/fx/ux";
2
- type SwtichProps<T> = DefinePropTheming & DefineProp<"class", String | String[]> & DefineVModel<"", T, false, null, true, "The v-model of the component"> & DefineProp<"label", string, false, null, "The label of the component"> & DefineProp<"rules", ValidationRule[], false, null, "Accepts a mixed array of types function. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string."> & DefineProp<"disabled", boolean, false, false, "Removes the ability to click or target the component."> & DefineProp<"hint", string, false, "", "Displays hint text below the input when focused. Force this always open with the persistentHint property."> & DefineProp<"persistentHint", boolean, false, false, "Forces the hint to always be visible"> & DefineProp<"hideDetails", boolean, false, false, "Hides hint and validation errors"> & DefineProp<"revert", boolean, false, false, "Shows the switch inverted"> & DefineProp<"trueValue", boolean | string, false, true, "Sets value for truthy state."> & DefineProp<"falseValue", boolean | string, false, false, "Sets value for falsy state.">;
3
- declare const _default: <T extends string | boolean>(props: import("@omnia/fx/ux").ExtractProps<SwtichProps<T>> & {
2
+ import { TooltipPosition } from "@omnia/fx-models";
3
+ export interface SwitchTooltipOptions {
4
+ text: string;
5
+ element?: JSX.Element;
6
+ position?: TooltipPosition;
7
+ }
8
+ type SwitchProps<T> = DefinePropTheming & DefineProp<"class", String | String[]> & DefineVModel<"", T, false, null, true, "The v-model of the component"> & DefineProp<"label", string, false, null, "The label of the component"> & DefineProp<"sublabel", string, false, null, "The label of the component"> & DefineProp<"rules", ValidationRule[], false, null, "Accepts a mixed array of types function. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string."> & DefineProp<"disabled", boolean, false, false, "Removes the ability to click or target the component."> & DefineProp<"hint", string, false, "", "Displays hint text below the input when focused. Force this always open with the persistentHint property."> & DefineProp<"persistentHint", boolean, false, false, "Forces the hint to always be visible"> & DefineProp<"hideDetails", boolean, false, false, "Hides hint and validation errors"> & DefineProp<"revert", boolean, false, false, "Shows the switch inverted"> & DefineProp<"trueValue", boolean | string, false, true, "Sets value for truthy state."> & DefineProp<"falseValue", boolean | string, false, false, "Sets value for falsy state."> & DefineProp<"tooltip", SwitchTooltipOptions, false, null, "Sets tooltip to display when hovering the button.">;
9
+ declare const _default: <T extends string | boolean>(props: import("@omnia/fx/ux").ExtractProps<SwitchProps<T>> & {
4
10
  "onUpdate:modelValue"?: (value: T) => any;
5
11
  } & {
6
12
  "v-slots"?: {} & Omit<{
7
13
  default?: import("vue").Slot;
8
14
  }, never>;
9
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "class" | "disabled" | "revert" | "colorSchemaType" | "colors" | "rules" | "emit:update:modelValue" | "modelValue" | "v-model" | "hideDetails" | "hint" | "persistentHint" | "trueValue" | "falseValue"> & import("@omnia/fx/ux").VNodeEvents) => any;
15
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "class" | "disabled" | "revert" | "tooltip" | "colorSchemaType" | "colors" | "rules" | "emit:update:modelValue" | "modelValue" | "v-model" | "hideDetails" | "hint" | "persistentHint" | "sublabel" | "trueValue" | "falseValue"> & import("@omnia/fx/ux").VNodeEvents) => any;
10
16
  export default _default;
@@ -1,32 +1,24 @@
1
- import { VueComponentBase } from "@omnia/fx/ux";
2
- import { IWebComponentInstance } from "../../";
3
- import { ITimeZonePicker } from "./ITimeZonePicker";
4
1
  import { TimeZone } from "../../models";
5
- import { ScopedSlots, TimeZonePickerStyles } from "..";
6
- import { IVSelectScopedSlots } from "../vuetify";
7
2
  import "./TimeZonePicker.css";
8
- export declare class TimeZonePicker extends VueComponentBase implements IWebComponentInstance, ITimeZonePicker {
9
- valueBind: TimeZone;
3
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
4
+ "emit:update:modelValue": (value: TimeZone) => void;
5
+ } & {
6
+ "v-model"?: TimeZone;
7
+ } & {
8
+ modelValue?: TimeZone;
9
+ } & {
10
10
  disabled?: boolean;
11
+ } & {
11
12
  label?: string;
12
- onValueChanged?: (timezone: TimeZone) => void;
13
+ } & {
13
14
  filled?: boolean;
14
- dark?: boolean;
15
- flat?: boolean;
15
+ } & {
16
16
  hideDetails?: boolean;
17
- scopedSlots?: ScopedSlots<IVSelectScopedSlots>;
18
- styles?: typeof TimeZonePickerStyles;
19
- private timezoneService;
20
- private omniaUxLoc;
21
- private styleClasses;
22
- timeZones: TimeZone[];
23
- menuProp: any;
24
- private get slots();
25
- created(): void;
26
- mounted(): void;
27
- beforeDestroy(): void;
28
- private populateModel;
29
- private updateSelected;
30
- private onClick;
31
- render(): import("vue/jsx-runtime").JSX.Element;
32
- }
17
+ }> & {
18
+ "onUpdate:modelValue"?: (value: TimeZone) => any;
19
+ } & {
20
+ "v-slots"?: {} & Omit<{
21
+ default?: import("vue").Slot;
22
+ }, never>;
23
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "filled" | "disabled" | "emit:update:modelValue" | "modelValue" | "v-model" | "hideDetails"> & import("@omnia/fx/ux").VNodeEvents) => any;
24
+ export default _default;
@@ -137,6 +137,7 @@ import wccb83d46eaaed44d4920d4d5da21bc488 from './ux/statusmessageoverlay/Status
137
137
  import wc3ccd469648b244efb3fbf9b561ca1967 from './ux/templatepicker/TemplatePicker';
138
138
  import wce6ce806749594b1da7e0ae5f60cef41c from './ux/texttranslator/TextTranslator';
139
139
  import wca9e655701cd249aca6b2af56caea6630 from './ux/timeperiodpicker/TimePeriodPicker';
140
+ import wc9e11e0281fc54086b2929ba4750fd2a1 from './ux/timezonepicker/TimeZonePicker';
140
141
  import wc6f50634fb5c149e0964666bca7d9edc0 from './ux/urlinput/UrlInputLegacy';
141
142
  import wc21a1f20b3d404602853049c1c8b8da2f from './ux/userpresence/UserPresence';
142
143
  import wc30289e2b58ff48b0aabb3cb3732c3038 from './ux/usertypelayout/UserTypeLayoutRenderer';
@@ -152,6 +153,7 @@ import wcbd6cd82aabef42e7bf60679c7d5fb470 from './ux/wizard/WizardComponent';
152
153
  import wcde36ccd3a3064b0ea8f5865e65521e41 from '../../fx-sp/internal-do-not-import-from-here/ux/appwithspaliasinput/AppWithSharePointAliasInput';
153
154
  import wc28d15a1179a04eaa9f2e82abe15f7177 from '../../fx-sp/internal-do-not-import-from-here/ux/filterengine/TaxonomyPropertyRenderer';
154
155
  import wcb1fca92af8524970b426823cf7ef65b5 from '../../fx-sp/internal-do-not-import-from-here/ux/filterengine/SelectionsAreaTaxonomyRenderer';
156
+ import wc148996e094b140ae831c069c77830f37 from '../../fx-sp/internal-do-not-import-from-here/ux/languagepicker/LanguagePicker';
155
157
  import wc4584d438a74748ab9ae5f9f4f431673f from '../../fx-sp/internal-do-not-import-from-here/ux/listtree/ListTree';
156
158
  import wc8000658f96504040b6194f7e887665a7 from '../../fx-sp/internal-do-not-import-from-here/ux/queryfilterbuilder/QueryFilterBuilder';
157
159
  import wccff151bfd6e24f2fbacd02bba0fffe1f from '../../fx-sp/internal-do-not-import-from-here/ux/targetingfilter/TargetingFilter';
@@ -554,7 +556,6 @@ import wc8142fa90f0d34258bb080a15aa21ab74 from './ux/aurora/admin/blades/fontsma
554
556
  import wc891de93e73cc47b0a552d24fdf34c9cf from './ux/aurora/admin/blades/spacing/SpacingJourney';
555
557
  import wc682077b575c74b2086cbf438346e0ed3 from './ux/aurora/admin/blades/templates/TemplatesJourney';
556
558
  import wc5e7631b4411b498eafa68ebde2136cc5 from './ux/aurora/admin/blades/themedesigner/ThemeDesigner';
557
- import wc136c9c57149747f198180bdf38a6b297 from './ux/aurora/admin/blades/themedesigner/PreviewJourney';
558
559
  import wcbed95d1ec67f4a15986fc72adebdb78f from './ux/aurora/admin/blades/themes/ThemesJourney';
559
560
  import wcfc2401c7c3384790ae7ce17d05b0855f from './ux/aurora/admin/blades/typography/TypographyJourney';
560
561
  import wcf5cf0b4975644d688124880ae533869e from './ux/layoutcanvas/editor/settings/backgroundsettings/BackgroundSettings';
@@ -2302,6 +2303,15 @@ declare global {
2302
2303
  $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2303
2304
  };
2304
2305
  } : typeof wc07fdbc119d7742769eafe5f45ce14e18;
2306
+ "language": {
2307
+ "picker": typeof wc148996e094b140ae831c069c77830f37 extends {
2308
+ propsDefinition: infer TProp;
2309
+ } ? {
2310
+ new (...args: any[]): {
2311
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2312
+ };
2313
+ } : typeof wc148996e094b140ae831c069c77830f37;
2314
+ };
2305
2315
  "list": {
2306
2316
  "tree": typeof wc4584d438a74748ab9ae5f9f4f431673f extends {
2307
2317
  propsDefinition: infer TProp;
@@ -2490,6 +2500,15 @@ declare global {
2490
2500
  } : typeof wca9e655701cd249aca6b2af56caea6630;
2491
2501
  };
2492
2502
  };
2503
+ "timezone": {
2504
+ "picker": typeof wc9e11e0281fc54086b2929ba4750fd2a1 extends {
2505
+ propsDefinition: infer TProp;
2506
+ } ? {
2507
+ new (...args: any[]): {
2508
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2509
+ };
2510
+ } : typeof wc9e11e0281fc54086b2929ba4750fd2a1;
2511
+ };
2493
2512
  "url": {
2494
2513
  "input": {
2495
2514
  "legacy": typeof wc6f50634fb5c149e0964666bca7d9edc0 extends {
@@ -3052,16 +3071,7 @@ declare global {
3052
3071
  };
3053
3072
  } : typeof wcc6eec07d48af435ab0c75195d9c7dcfc;
3054
3073
  };
3055
- "designer": {
3056
- "preview": typeof wc136c9c57149747f198180bdf38a6b297 extends {
3057
- propsDefinition: infer TProp;
3058
- } ? {
3059
- new (...args: any[]): {
3060
- $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
3061
- };
3062
- } : typeof wc136c9c57149747f198180bdf38a6b297;
3063
- };
3064
- "designer$": typeof wc5e7631b4411b498eafa68ebde2136cc5 extends {
3074
+ "designer": typeof wc5e7631b4411b498eafa68ebde2136cc5 extends {
3065
3075
  propsDefinition: infer TProp;
3066
3076
  } ? {
3067
3077
  new (...args: any[]): {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.427-dev",
4
+ "version": "8.0.428-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.427-dev",
23
+ "@omnia/fx-models": "8.0.428-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",
@@ -1,16 +0,0 @@
1
- declare const _default: {
2
- new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{}>>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
3
- P: {};
4
- B: {};
5
- D: {};
6
- C: {};
7
- M: {};
8
- Defaults: {};
9
- }, Readonly<import("vue").ExtractPropTypes<{}>>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {}>;
10
- __isFragment?: never;
11
- __isTeleport?: never;
12
- __isSuspense?: never;
13
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, 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 & {
14
- propsDefinition: Omit<Readonly<{} & {}>, never>;
15
- };
16
- export default _default;