@omnia/fx 8.0.427-dev → 8.0.429-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.
- package/internal-do-not-import-from-here/ux/Exposes.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/app/management/core/loc.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplateDetail.d.ts +8 -4
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplatesListing.d.ts +6 -4
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/CustomSteps.d.ts +4 -8
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/Features.d.ts +4 -8
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PermissionTab.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PoliciesTab.d.ts +2 -6
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertiesTab.d.ts +4 -8
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertyRow.d.ts +1 -3
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/WizardConfigurationItem.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/fills/FillsJourney.d.ts +8 -15
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/themedesigner/store/ThemeDesignerStore.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/store/ThemeEditorStore.d.ts +14 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +6 -3
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTableStore.d.ts +15 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/RowRenderer.d.ts +6 -1
- package/internal-do-not-import-from-here/ux/oxide/labeledtext/LabeledText.d.ts +8 -5
- package/internal-do-not-import-from-here/ux/oxide/switch/Switch.d.ts +9 -3
- package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +8 -3
- package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyLocking.d.ts +29 -85
- package/internal-do-not-import-from-here/ux/timezonepicker/TimeZonePicker.d.ts +18 -26
- package/internal-do-not-import-from-here/wctypings.d.ts +21 -11
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/themedesigner/PreviewJourney.d.ts +0 -16
@@ -74,5 +74,5 @@ export type { FocusOption, LinkHandlerOptions, ScrollOption } from "./directives
|
|
74
74
|
export { FocusDirective, LinkHandlerDirective } from "./directives";
|
75
75
|
export { VueComponentBase, VueComponentConnect, getVuetifyAppClasses } from "./VueComponentBase";
|
76
76
|
export type { VueComponentBaseEvents, VueComponentBaseProps } from "./VueComponentBase";
|
77
|
-
export { createVueNode, definePropFunctionType, definePropObjectType, defineVue, defineVueComponent, getElementName, isElement, type VNodeEvents, type SetupComponentContext, type ExtractProps, type ExtractEmits, type ExtractSlots, type ConstructComponentProps, type ExtractVModels } from "./InternalDefineComponent";
|
77
|
+
export { createVueNode, definePropFunctionType, definePropObjectType, defineVue, defineVueComponent, getElementName, isElement, type VNodeEvents, type SetupComponentContext, type ExtractProps, type ExtractEmits, type ExtractSlots, type ExtractExpose, type ConstructComponentProps, type ExtractVModels } from "./InternalDefineComponent";
|
78
78
|
export { type DefineEmit, type DefineProp, type DefineRef, type DefinePropTheming, type DefineSlot, type DefineType, type DefineVModel, type ItemType, type SelectItemKey, type ItemValueType } from "./DefineVueTypings";
|
@@ -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
|
}
|
package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplateDetail.d.ts
CHANGED
@@ -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;
|
package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplatesListing.d.ts
CHANGED
@@ -1,9 +1,11 @@
|
|
1
1
|
import { AppTemplate } from "@omnia/fx-models";
|
2
|
-
|
3
|
-
|
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;
|
package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/CustomSteps.d.ts
CHANGED
@@ -1,11 +1,10 @@
|
|
1
|
-
import { AppProvisioningStepInfo, AppProvisioningStepRegistration
|
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<
|
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" | "
|
19
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "isSaving" | "hasError" | "errorMessage" | "hasSaved"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
24
20
|
export default _default;
|
package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/Features.d.ts
CHANGED
@@ -1,9 +1,8 @@
|
|
1
|
-
import {
|
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<
|
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" | "
|
17
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "isSaving" | "hasError" | "errorMessage" | "hasSaved"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
22
18
|
export default _default;
|
package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PermissionTab.d.ts
ADDED
@@ -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;
|
package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PoliciesTab.d.ts
CHANGED
@@ -1,6 +1,4 @@
|
|
1
|
-
|
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" | "
|
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;
|
package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertiesTab.d.ts
CHANGED
@@ -1,5 +1,4 @@
|
|
1
|
-
import {
|
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<
|
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" | "
|
30
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "isSaving" | "hasError" | "errorMessage" | "hasSaved"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
35
31
|
export default _default;
|
package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertyRow.d.ts
CHANGED
@@ -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"
|
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
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
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;
|
package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/store/ThemeEditorStore.d.ts
CHANGED
@@ -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,11 +1,14 @@
|
|
1
|
-
import { DataTableHeader, DefineEmit, DefineProp, DefinePropTheming, DefineSlot, DefineType, DefineVModel, ExtractProps, IDataTableRow, ItemValueType, SelectItemKey, SortItem } from "@omnia/fx/ux";
|
1
|
+
import { DataTableHeader, DefineEmit, DefineProp, DefinePropTheming, DefineRef, DefineSlot, DefineType, DefineVModel, ExtractProps, IDataTableRow, ItemValueType, SelectItemKey, SortItem } from "@omnia/fx/ux";
|
2
2
|
import { VNodeChild } from "vue";
|
3
|
+
import { useDataTableStore } from "./DataTableStore";
|
3
4
|
export type DataTableOptions = {
|
4
5
|
page: number;
|
5
6
|
itemsPerPage: number;
|
6
7
|
sortBy: SortItem[];
|
7
8
|
};
|
8
|
-
export type DataTablePropsBase<T> = DefinePropTheming & DefineProp<"class", String | String[]> & DefineVModel<"expanded", Array<string>, false, null, true, "Whether the item is expanded or not."> & DefineVModel<"sortBy", SortItem[], false, null, true, "Changes which item property (or properties) should be used for sort order."> & DefineProp<"mustSort", boolean, false, false, "If true then one can not disable sorting, it will always switch between ascending and descending."> & DefineProp<"showSelect", boolean, false, false, "Shows a checkbox for each row."> & DefineProp<"itemSelectable", SelectItemKey<T>, false, false, "SProperty on supplied items that indicates whether the item is selectable."> & DefineProp<"height", string | number, false, null, "Sets and explicit height of the tablet."> & DefineProp<"noDataText", string, false, null, "Text shown when no items are provided to the component."> & DefineProp<"itemValue", ItemValueType<T>, false, null, "Property on supplied items that contains its value."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"drag", boolean, false, false, "Enable draggable row."> & DefineProp<"hover", boolean, false, false, "Property on supplied items that contains its value."> & DefineProp<"mobileColumn", number, false, 1, "Specific a column to render in mobile view."> & DefineProp<"search", string, false, null, "Text input used to filter items."> & DefineProp<"searchBy", (keyof T)[] | ((item: T) => string[]), false, null, "Property on supplied items that contains its value to search."> & DefineProp<"showExpand", boolean, false, false, "Shows the expand toggle in default rows."> & DefineProp<"headers", DataTableHeader[], false, typeof defaultHeaders, "An array of objects that each describe a header column."> & DefineVModel<"items", T[], false, typeof emptyArray, true, "An array of strings or objects used for automatically generating children components."> & DefineVModel<"", Array<any>, false, typeof emptyArray, true, "The v-model value of the component. If component supports the multiple prop, this defaults to an empty array."> & DefineEmit<"update:expanded", (expanded: string[]) => void, "Emits when the expanded property of the options prop is updated."> & DefineEmit<"update:sortBy", (sort: SortItem[]) => void, "Emits when the sortBy property of the options prop is updated."> & DefineEmit<"update:options", (options: DataTableOptions) => void, "Emits when one of the options properties is updated."> & DefineEmit<"update:page", (page: number) => void, "Emits when the page property of the options prop is updated."> & DefineEmit<"update:itemsPerPage", (value: number) => void, "Emits when the items-per-page property of the options prop is updated."> & DefineEmit<"click:loadMore", () => void> &
|
9
|
+
export type DataTablePropsBase<T> = DefinePropTheming & DefineProp<"class", String | String[]> & DefineVModel<"expanded", Array<string>, false, null, true, "Whether the item is expanded or not."> & DefineVModel<"sortBy", SortItem[], false, null, true, "Changes which item property (or properties) should be used for sort order."> & DefineProp<"mustSort", boolean, false, false, "If true then one can not disable sorting, it will always switch between ascending and descending."> & DefineProp<"showSelect", boolean, false, false, "Shows a checkbox for each row."> & DefineProp<"itemSelectable", SelectItemKey<T>, false, false, "SProperty on supplied items that indicates whether the item is selectable."> & DefineProp<"height", string | number, false, null, "Sets and explicit height of the tablet."> & DefineProp<"noDataText", string, false, null, "Text shown when no items are provided to the component."> & DefineProp<"itemValue", ItemValueType<T>, false, null, "Property on supplied items that contains its value."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"drag", boolean, false, false, "Enable draggable row."> & DefineProp<"hover", boolean, false, false, "Property on supplied items that contains its value."> & DefineProp<"mobileColumn", number, false, 1, "Specific a column to render in mobile view."> & DefineProp<"search", string, false, null, "Text input used to filter items."> & DefineProp<"searchBy", (keyof T)[] | ((item: T) => string[]), false, null, "Property on supplied items that contains its value to search."> & DefineProp<"showExpand", boolean, false, false, "Shows the expand toggle in default rows."> & DefineProp<"headers", DataTableHeader[], false, typeof defaultHeaders, "An array of objects that each describe a header column."> & DefineVModel<"items", T[], false, typeof emptyArray, true, "An array of strings or objects used for automatically generating children components."> & DefineVModel<"", Array<any>, false, typeof emptyArray, true, "The v-model value of the component. If component supports the multiple prop, this defaults to an empty array."> & DefineEmit<"update:expanded", (expanded: string[]) => void, "Emits when the expanded property of the options prop is updated."> & DefineEmit<"update:sortBy", (sort: SortItem[]) => void, "Emits when the sortBy property of the options prop is updated."> & DefineEmit<"update:options", (options: DataTableOptions) => void, "Emits when one of the options properties is updated."> & DefineEmit<"update:page", (page: number) => void, "Emits when the page property of the options prop is updated."> & DefineEmit<"update:itemsPerPage", (value: number) => void, "Emits when the items-per-page property of the options prop is updated."> & DefineEmit<"click:loadMore", () => void> & DefineRef<{
|
10
|
+
store: ReturnType<typeof useDataTableStore>;
|
11
|
+
}> & DefineSlot<"row", (row: IDataTableRow<T>) => VNodeChild> & DefineSlot<"top", () => VNodeChild> & DefineSlot<"expanded-row", (e: {
|
9
12
|
item: T;
|
10
13
|
}) => VNodeChild> & DefineSlot<`header.${string}`, (header: DataTableHeader) => void> & DefineSlot<`item.${string}`, (e: {
|
11
14
|
item: T;
|
@@ -27,7 +30,7 @@ declare const _default: <TItem extends unknown, TVariant extends "default" | "cl
|
|
27
30
|
"v-slots"?: (DataTableProps<TItem, TVariant> extends infer T_3 ? { [K_3 in keyof T_3 as K_3 extends `slot:${infer N_1}` ? N_1 : never]: DataTableProps<TItem, TVariant>[K_3]; } : never) & Omit<{
|
28
31
|
default?: import("vue").Slot;
|
29
32
|
}, keyof (DataTableProps<TItem, TVariant> extends infer T_4 ? { [K_3 in keyof T_4 as K_3 extends `slot:${infer N_1}` ? N_1 : never]: DataTableProps<TItem, TVariant>[K_3]; } : never)>;
|
30
|
-
} & (DataTableProps<TItem, TVariant> extends infer T_5 ? { [K_4 in keyof T_5 as K_4 extends "ref" ? "ref" : never]: import("vue").Ref<DataTableProps<TItem, TVariant>[K_4], DataTableProps<TItem, TVariant>[K_4]> | ((ref: DataTableProps<TItem, TVariant>[K_4]) => void); } : never) & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "search" | "height" | "variant" | "drag" | "class" | "expanded" | "colorSchemaType" | "colors" | "emit:update:modelValue" | "modelValue" | "v-model" | "items" | "loading" | "hover" | "itemValue" | "emit:update:expanded" | "v-model:expanded" | "sortBy" | "emit:update:sortBy" | "v-model:sortBy" | "mustSort" | "showSelect" | "itemSelectable" | "noDataText" | "mobileColumn" | "searchBy" | "showExpand" | "emit:update:items" | "v-model:items" | "emit:update:options" | "emit:update:page" | "emit:update:itemsPerPage" | "emit:click:loadMore" | "slot:row" | "slot:top" | "slot:expanded-row" | `slot:header.${string}` | `slot:item.${string}` | keyof (TVariant extends "client-pagination-scroll" ? {
|
33
|
+
} & (DataTableProps<TItem, TVariant> extends infer T_5 ? { [K_4 in keyof T_5 as K_4 extends "ref" ? "ref" : never]: import("vue").Ref<DataTableProps<TItem, TVariant>[K_4], DataTableProps<TItem, TVariant>[K_4]> | ((ref: DataTableProps<TItem, TVariant>[K_4]) => void); } : never) & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "search" | "height" | "variant" | "drag" | "class" | "expanded" | "ref" | "colorSchemaType" | "colors" | "emit:update:modelValue" | "modelValue" | "v-model" | "items" | "loading" | "hover" | "itemValue" | "emit:update:expanded" | "v-model:expanded" | "sortBy" | "emit:update:sortBy" | "v-model:sortBy" | "mustSort" | "showSelect" | "itemSelectable" | "noDataText" | "mobileColumn" | "searchBy" | "showExpand" | "emit:update:items" | "v-model:items" | "emit:update:options" | "emit:update:page" | "emit:update:itemsPerPage" | "emit:click:loadMore" | "slot:row" | "slot:top" | "slot:expanded-row" | `slot:header.${string}` | `slot:item.${string}` | keyof (TVariant extends "client-pagination-scroll" ? {
|
31
34
|
itemHeight?: string | number;
|
32
35
|
} : TVariant extends "client-pagination-page" ? ClientPaginationPageProps<TItem_1> : TVariant extends "server-pagination-page" ? ServerPaginationPageProps : TVariant extends "server-pagination-scroll" ? ServerPaginationScrollProps<TItem> : DefaultProps)> & import("@omnia/fx/ux").VNodeEvents) => any;
|
33
36
|
export default _default;
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import { VNodeChild } from "vue";
|
2
|
+
export type RowDetail = Array<{
|
3
|
+
columnName: string;
|
4
|
+
element: VNodeChild;
|
5
|
+
}>;
|
6
|
+
export declare const useDataTableStore: () => {
|
7
|
+
state: {
|
8
|
+
selectedRowToRenderDetail: RowDetail;
|
9
|
+
};
|
10
|
+
events: import("@omnia/fx/stores").StoreEvents<{
|
11
|
+
selectedRowToRenderDetail: RowDetail;
|
12
|
+
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
13
|
+
} & {
|
14
|
+
dispose?: () => void;
|
15
|
+
};
|
@@ -14,6 +14,10 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
14
14
|
mobileVariant?: "card" | "one-column";
|
15
15
|
} & {
|
16
16
|
mobileColumn?: number;
|
17
|
+
} & {
|
18
|
+
"emit:update:visibleActionColumn": (value: boolean) => void;
|
19
|
+
} & {
|
20
|
+
"v-model:visibleActionColumn"?: boolean;
|
17
21
|
} & {
|
18
22
|
visibleActionColumn?: boolean;
|
19
23
|
} & {
|
@@ -24,11 +28,12 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
24
28
|
"onUpdate:mouseOver"?: () => any;
|
25
29
|
"onUpdate:mouseOut"?: () => any;
|
26
30
|
"onClick:navigation"?: (e: MouseEvent) => any;
|
31
|
+
"onUpdate:visibleActionColumn"?: (value: boolean) => any;
|
27
32
|
} & {
|
28
33
|
"v-slots"?: {
|
29
34
|
actions?: () => VNodeChild;
|
30
35
|
} & Omit<{
|
31
36
|
default?: import("vue").Slot;
|
32
37
|
}, "actions">;
|
33
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "icon" | "active" | "drag" | "remove" | "slot:actions" | "mobileColumn" | "emit:update:mouseOver" | "emit:update:mouseOut" | "emit:click:navigation" | "mobileVariant" | "visibleActionColumn" | "draggableIcon"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
38
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "icon" | "active" | "drag" | "remove" | "slot:actions" | "mobileColumn" | "emit:update:mouseOver" | "emit:update:mouseOut" | "emit:click:navigation" | "mobileVariant" | "visibleActionColumn" | "emit:update:visibleActionColumn" | "v-model:visibleActionColumn" | "draggableIcon"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
34
39
|
export default _default;
|
@@ -1,8 +1,11 @@
|
|
1
|
-
import { DefineProp } from "@omnia/fx/ux";
|
2
|
-
|
1
|
+
import { DefineProp, DefineSlot } from "@omnia/fx/ux";
|
2
|
+
import { VNodeChild } from "vue";
|
3
|
+
type LabeledTextProps = DefineProp<"label", String, false, null, "Sets the label of the component."> & DefineProp<"text", String, false, null, "Sets the text value of the component."> & DefineSlot<"text", () => VNodeChild, "Custom render text.">;
|
3
4
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<LabeledTextProps> & {} & {
|
4
|
-
"v-slots"?: {
|
5
|
+
"v-slots"?: {
|
6
|
+
text?: () => VNodeChild;
|
7
|
+
} & Omit<{
|
5
8
|
default?: import("vue").Slot;
|
6
|
-
},
|
7
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "text" | "label"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
9
|
+
}, "text">;
|
10
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "text" | "label" | "slot:text"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
8
11
|
export default _default;
|
@@ -1,10 +1,16 @@
|
|
1
1
|
import { DefineProp, DefinePropTheming, DefineVModel, ValidationRule } from "@omnia/fx/ux";
|
2
|
-
|
3
|
-
|
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,7 +1,9 @@
|
|
1
1
|
import { DefineEmit, DefineProp, DefinePropTheming, DefineSlot } from "@omnia/fx/ux";
|
2
2
|
import { IIcon, OToolbarVariants } from "@omnia/fx/models";
|
3
3
|
import { VNodeChild } from "vue";
|
4
|
-
type ToolbarProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"variant", OToolbarVariants, false, null, "Applies a distinct style to the component."> & DefineProp<"title", string, false, null, "The title of the toolbar"> & DefineProp<"subTitle", string, false, null, "Sub title of the toolbar"> & DefineProp<"icon", IIcon, false, null, "The icon of the toolbar."> & DefineProp<"toned", boolean, false, false> & DefineProp<"divider", boolean, false, false, "If true, the toolbar will have a bottom divider."> & DefineProp<"closeButton", boolean, false, false, "If true, a close button will be rendered in the toolbar."> & DefineProp<"backButton", boolean, false, false, "If true, a back button will be rendered in the toolbar."> & DefineSlot<"title", () => VNodeChild> & DefineSlot<"customButtons", () => VNodeChild> &
|
4
|
+
type ToolbarProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"variant", OToolbarVariants, false, null, "Applies a distinct style to the component."> & DefineProp<"title", string, false, null, "The title of the toolbar"> & DefineProp<"subTitle", string, false, null, "Sub title of the toolbar"> & DefineProp<"icon", IIcon, false, null, "The icon of the toolbar."> & DefineProp<"toned", boolean, false, false> & DefineProp<"divider", boolean, false, false, "If true, the toolbar will have a bottom divider."> & DefineProp<"closeButton", boolean, false, false, "If true, a close button will be rendered in the toolbar."> & DefineProp<"backButton", boolean, false, false, "If true, a back button will be rendered in the toolbar."> & DefineSlot<"title", () => VNodeChild> & DefineSlot<"customButtons", () => VNodeChild> & DefineSlot<"prepend", (params: {
|
5
|
+
renderCustomIcon: (icon: IIcon) => VNodeChild;
|
6
|
+
}) => VNodeChild, "Adds an item outside the title and before title content."> & DefineEmit<"click:close", () => void> & DefineEmit<"click:back", () => void>;
|
5
7
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<ToolbarProps> & {
|
6
8
|
"onClick:close"?: () => any;
|
7
9
|
"onClick:back"?: () => any;
|
@@ -9,8 +11,11 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<ToolbarProps
|
|
9
11
|
"v-slots"?: {
|
10
12
|
title?: () => VNodeChild;
|
11
13
|
customButtons?: () => VNodeChild;
|
14
|
+
prepend?: (params: {
|
15
|
+
renderCustomIcon: (icon: IIcon) => VNodeChild;
|
16
|
+
}) => VNodeChild;
|
12
17
|
} & Omit<{
|
13
18
|
default?: import("vue").Slot;
|
14
|
-
}, "title" | "customButtons">;
|
15
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "icon" | "variant" | "class" | "colorSchemaType" | "toned" | "colors" | "subTitle" | "backButton" | "emit:click:close" | "divider" | "emit:click:back" | "closeButton" | "slot:title" | "slot:customButtons"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
19
|
+
}, "title" | "prepend" | "customButtons">;
|
20
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "icon" | "variant" | "class" | "colorSchemaType" | "toned" | "colors" | "subTitle" | "backButton" | "emit:click:close" | "divider" | "slot:prepend" | "emit:click:back" | "closeButton" | "slot:title" | "slot:customButtons"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
16
21
|
export default _default;
|
package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyLocking.d.ts
CHANGED
@@ -1,88 +1,32 @@
|
|
1
1
|
import { PropertyLockStatus } from "@omnia/fx/ux";
|
2
|
-
import {
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
onVnodeUpdated?: import("vue").Prop<((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]>;
|
20
|
-
onVnodeBeforeUnmount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
21
|
-
onVnodeUnmounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
22
|
-
}>>, () => 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, {
|
23
|
-
P: {};
|
24
|
-
B: {};
|
25
|
-
D: {};
|
26
|
-
C: {};
|
27
|
-
M: {};
|
28
|
-
Defaults: {};
|
29
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
30
|
-
lockingStatus: import("vue").Prop<PropertyLockStatus, PropertyLockStatus>;
|
31
|
-
onValueChanged: import("vue").Prop<Function, Function>;
|
32
|
-
allowRollback: import("vue").Prop<unknown, unknown>;
|
33
|
-
rollback: import("vue").Prop<Function, Function>;
|
34
|
-
renderBody: import("vue").Prop<() => VNodeChild, () => VNodeChild>;
|
35
|
-
styles: import("vue").Prop<{
|
36
|
-
lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
37
|
-
}, {
|
38
|
-
lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
39
|
-
}>;
|
40
|
-
showLockConfiguration: import("vue").Prop<boolean, boolean>;
|
41
|
-
onVnodeBeforeMount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
42
|
-
onVnodeMounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
43
|
-
onVnodeBeforeUpdate?: import("vue").Prop<((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]>;
|
44
|
-
onVnodeUpdated?: import("vue").Prop<((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]>;
|
45
|
-
onVnodeBeforeUnmount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
46
|
-
onVnodeUnmounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
47
|
-
}>>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {}>;
|
48
|
-
__isFragment?: never;
|
49
|
-
__isTeleport?: never;
|
50
|
-
__isSuspense?: never;
|
51
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
52
|
-
lockingStatus: import("vue").Prop<PropertyLockStatus, PropertyLockStatus>;
|
53
|
-
onValueChanged: import("vue").Prop<Function, Function>;
|
54
|
-
allowRollback: import("vue").Prop<unknown, unknown>;
|
55
|
-
rollback: import("vue").Prop<Function, Function>;
|
56
|
-
renderBody: import("vue").Prop<() => VNodeChild, () => VNodeChild>;
|
57
|
-
styles: import("vue").Prop<{
|
2
|
+
import { TooltipPosition } from "@omnia/fx-models";
|
3
|
+
interface PropertyLockingTooltip {
|
4
|
+
text: string;
|
5
|
+
position?: TooltipPosition;
|
6
|
+
}
|
7
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
8
|
+
"emit:update:modelValue": (value: PropertyLockStatus) => void;
|
9
|
+
} & {
|
10
|
+
"v-model"?: PropertyLockStatus;
|
11
|
+
} & {
|
12
|
+
modelValue?: PropertyLockStatus;
|
13
|
+
} & {
|
14
|
+
allowRollback?: boolean;
|
15
|
+
} & {
|
16
|
+
rollback?: Function;
|
17
|
+
} & {
|
18
|
+
styles?: {
|
58
19
|
lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
59
|
-
}
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
}
|
70
|
-
|
71
|
-
styles?: {
|
72
|
-
lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
73
|
-
};
|
74
|
-
onVnodeBeforeMount?: ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[];
|
75
|
-
onVnodeMounted?: ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[];
|
76
|
-
onVnodeBeforeUpdate?: ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[];
|
77
|
-
onVnodeUpdated?: ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[];
|
78
|
-
onVnodeBeforeUnmount?: ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[];
|
79
|
-
onVnodeUnmounted?: ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[];
|
80
|
-
onValueChanged?: Function;
|
81
|
-
rollback?: Function;
|
82
|
-
showLockConfiguration?: boolean;
|
83
|
-
renderBody?: () => VNodeChild;
|
84
|
-
lockingStatus?: PropertyLockStatus;
|
85
|
-
allowRollback?: unknown;
|
86
|
-
}>, never>;
|
87
|
-
};
|
20
|
+
};
|
21
|
+
} & {
|
22
|
+
showLockConfiguration?: boolean;
|
23
|
+
} & {
|
24
|
+
tooltip?: PropertyLockingTooltip;
|
25
|
+
}> & {
|
26
|
+
"onUpdate:modelValue"?: (value: PropertyLockStatus) => any;
|
27
|
+
} & {
|
28
|
+
"v-slots"?: {} & Omit<{
|
29
|
+
default?: import("vue").Slot;
|
30
|
+
}, never>;
|
31
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "tooltip" | "styles" | "emit:update:modelValue" | "modelValue" | "v-model" | "rollback" | "showLockConfiguration" | "allowRollback"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
88
32
|
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
|
-
|
9
|
-
|
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
|
-
|
13
|
+
} & {
|
13
14
|
filled?: boolean;
|
14
|
-
|
15
|
-
flat?: boolean;
|
15
|
+
} & {
|
16
16
|
hideDetails?: boolean;
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
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.
|
4
|
+
"version": "8.0.429-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.
|
23
|
+
"@omnia/fx-models": "8.0.429-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|
package/internal-do-not-import-from-here/ux/aurora/admin/blades/themedesigner/PreviewJourney.d.ts
DELETED
@@ -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;
|