@omnia/fx 8.0.405-dev → 8.0.407-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/ComponentTypings.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/admin/usermanagement/loc/localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/admin/usermanagement/shared/UserManagementConstants.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/admin/usermanagement/synchronization/SyncOmniaSearchBlade.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/analytics/metric/Metric.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/typography/store/TypographyEditorStore.d.ts +19 -18
- package/internal-do-not-import-from-here/ux/aurora/components/textstylepicker/TextStylePicker.d.ts +13 -6
- package/internal-do-not-import-from-here/ux/aurora/components/textstylepicker/store/TextStylePickerStore.d.ts +9 -8
- package/internal-do-not-import-from-here/ux/aurora/components/typography/TextStyleEditor.d.ts +29 -370
- package/internal-do-not-import-from-here/ux/aurora/components/typography/TypographyBlueprintsViewer.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/aurora/components/typography/TypographyBlueprintsViewer.d.ts +9 -7
- package/internal-do-not-import-from-here/ux/aurora/components/typography/store/TextStyleEditorStore.d.ts +42 -11
- package/internal-do-not-import-from-here/ux/aurora/components/typography/store/TypographyViewerStore.d.ts +10 -4
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintManager.d.ts +13 -6
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/identities/components/settings/AzureAdSyncProviderSettings.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/identities/components/shared/BladeIds.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncAddCondition.d.ts +29 -0
- package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncAddValueCondition.d.ts +18 -0
- package/internal-do-not-import-from-here/ux/identities/loc/Localize.d.ts +34 -0
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerField.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/journeyfilter/JourneyFilterDialog.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/journey/selection/JourneySelect.d.ts +12 -3
- package/internal-do-not-import-from-here/ux/journey/stores/JourneySelectStore.d.ts +21 -3
- package/internal-do-not-import-from-here/ux/journey/stores/JourneyStore.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/Handler.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/UnsplashProvider.d.ts +5 -15
- package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/services/UnsplashImageService.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/oxide/calendar/Calendar.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/picker/Picker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/selection/Selection.d.ts +4 -3
- package/internal-do-not-import-from-here/ux/oxide/speeddial/SpeedDial.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/tooltip/Tooltip.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/properties/property-configuration/LabelOptionsRenderer.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/vuetify/VuetifyCore.d.ts +3 -2
- package/internal-do-not-import-from-here/wctypings.d.ts +8 -0
- package/package.json +3 -3
- /package/internal-do-not-import-from-here/ux/aurora/admin/blades/typography/blades/{EditDefinitionBlade.d.ts → EditTextStyleBlade.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/blades/typography/blades/{EditStylesBlade.d.ts → EditTextStylesBlade.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/blades/typography/blades/{EditTypeScaleBlade.d.ts → ViewTypeScaleBlade.d.ts} +0 -0
@@ -1,11 +1,15 @@
|
|
1
|
-
import {
|
1
|
+
import { ThemeContextType, TypographyBlueprint, TextStyleSizes, TextStyleType, TextStyleBreakpointType } from "@omnia/fx-models";
|
2
2
|
import { DefineEmit } from "@omnia/fx/ux";
|
3
3
|
import { ViewTypes } from "./store/TypographyViewerStore";
|
4
|
-
type Variant = "list" | "picker";
|
4
|
+
type Variant = "list" | "picker" | "list-preview";
|
5
5
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
6
6
|
blueprint?: TypographyBlueprint;
|
7
7
|
} & {
|
8
8
|
toned?: boolean;
|
9
|
+
} & {
|
10
|
+
showActivationStatus?: boolean;
|
11
|
+
} & {
|
12
|
+
activeScale?: number;
|
9
13
|
} & {
|
10
14
|
sampleText?: string;
|
11
15
|
} & {
|
@@ -18,14 +22,12 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
18
22
|
editable?: boolean;
|
19
23
|
} & {
|
20
24
|
themeType?: ThemeContextType;
|
21
|
-
} & DefineEmit<"click:select", (typography: TextStyleType, size: TextStyleSizes) => true> & DefineEmit<"click:
|
22
|
-
"onClick:add"?: () => any;
|
25
|
+
} & DefineEmit<"click:select", (typography: TextStyleType, size: TextStyleSizes) => true> & DefineEmit<"click:selectScale", (scale: number) => true>> & {
|
23
26
|
"onClick:select"?: (typography: "display" | "headline" | "title" | "text" | "label" | "variants", size: TextStyleSizes) => any;
|
24
|
-
"onClick:
|
25
|
-
"onClick:addFill"?: () => any;
|
27
|
+
"onClick:selectScale"?: (scale: number) => any;
|
26
28
|
} & {
|
27
29
|
"v-slots"?: {} & Omit<{
|
28
30
|
default?: import("vue").Slot;
|
29
31
|
}, never>;
|
30
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "blueprint" | "variant" | "editable" | "toned" | "themeType" | "emit:click:
|
32
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "blueprint" | "variant" | "editable" | "toned" | "themeType" | "emit:click:select" | "breakpoint" | "sampleText" | "showActivationStatus" | "activeScale" | "viewtype" | "emit:click:selectScale"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
31
33
|
export default _default;
|
@@ -5,49 +5,80 @@ export interface BreakpointItem {
|
|
5
5
|
active: boolean;
|
6
6
|
breakpoint: TextStyleBreakpointType;
|
7
7
|
}
|
8
|
+
type lineHeightType = "dynamic" | "fixed" | "typescale";
|
9
|
+
type fontSizeType = "custom" | "typescale";
|
10
|
+
interface SettingsOption {
|
11
|
+
text: string;
|
12
|
+
value: string;
|
13
|
+
}
|
8
14
|
export declare const useTextStyleEditorStore: () => {
|
9
15
|
state: {
|
10
16
|
internalModel: TextStyleDefinition;
|
11
17
|
blueprint: TypographyBlueprint;
|
12
18
|
textStyleType: "display" | "headline" | "title" | "text" | "label" | "variants";
|
13
19
|
textStyleSize: TextStyleSizes;
|
20
|
+
lineHeightType: lineHeightType;
|
21
|
+
fontSizeType: fontSizeType;
|
14
22
|
breakpoint: TextStyleBreakpointType;
|
23
|
+
customValues: {
|
24
|
+
lineHeightMultiplier: number;
|
25
|
+
lineHeight: number;
|
26
|
+
fontSize: number;
|
27
|
+
scale: number;
|
28
|
+
};
|
15
29
|
};
|
16
30
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
31
|
+
textStyleDefinition: () => {
|
32
|
+
update: () => void;
|
33
|
+
};
|
17
34
|
set: () => {
|
18
35
|
fontSize: {
|
19
|
-
|
20
|
-
|
36
|
+
fontType: (value: fontSizeType) => void;
|
37
|
+
fixedValue(value: number): void;
|
38
|
+
scale(value: number): void;
|
21
39
|
};
|
22
40
|
lineHeight: {
|
23
|
-
|
24
|
-
|
25
|
-
value(value: number): void;
|
41
|
+
lineHeightType: (value: lineHeightType) => void;
|
42
|
+
fixedValue(value: number): void;
|
26
43
|
multiplier: (value: number) => void;
|
27
44
|
};
|
28
45
|
fontWeight: (value: number) => void;
|
29
46
|
letterSpacing: (value: number) => void;
|
30
47
|
};
|
31
|
-
|
32
|
-
|
33
|
-
|
48
|
+
breakpoint: () => {
|
49
|
+
activate: (value: boolean) => void;
|
50
|
+
};
|
51
|
+
init: () => {
|
52
|
+
customValues: () => void;
|
53
|
+
state: (model: TextStyleDefinition, textStyleType: TextStyleType, breakpoint: TextStyleBreakpointType, blueprint: TypographyBlueprint, textStyleSize: TextStyleSizes) => void;
|
54
|
+
};
|
34
55
|
}>;
|
35
56
|
get: {
|
36
57
|
typeScale: {
|
37
58
|
readonly lineHeightMultiplier: number;
|
38
59
|
readonly defaultTextStyle: TextStyleBreakPoint;
|
39
60
|
};
|
40
|
-
readonly
|
61
|
+
readonly breakpoint: {
|
62
|
+
readonly textStyle: TextStyleBreakPoint;
|
63
|
+
};
|
64
|
+
readonly baseStyle: {
|
65
|
+
readonly scale: number;
|
66
|
+
};
|
41
67
|
};
|
42
68
|
rules: {
|
69
|
+
readonly isEnabled: boolean;
|
43
70
|
show: {
|
71
|
+
readonly commonSettings: boolean;
|
72
|
+
readonly enableDisableSwitch: boolean;
|
44
73
|
readonly name: boolean;
|
45
|
-
readonly
|
74
|
+
readonly ItalicSettings: boolean;
|
46
75
|
};
|
47
76
|
};
|
48
77
|
dataTypes: {
|
49
|
-
|
78
|
+
lineHeightOptions: SettingsOption[];
|
79
|
+
fontSizeOptions: SettingsOption[];
|
50
80
|
};
|
51
81
|
} & {
|
52
82
|
dispose?: () => void;
|
53
83
|
};
|
84
|
+
export {};
|
@@ -6,13 +6,16 @@ export declare const useTypographyViewerStore: () => {
|
|
6
6
|
viewType: ViewTypes;
|
7
7
|
breakPoint: TextStyleBreakpointType;
|
8
8
|
sampleText: string;
|
9
|
+
settings: {
|
10
|
+
showBreakpiontActivStatues: boolean;
|
11
|
+
};
|
9
12
|
};
|
10
13
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
11
14
|
initState: (blueprint: TypographyBlueprint, viewType: ViewTypes, breakPoint: TextStyleBreakpointType, sampleText: string) => void;
|
12
15
|
}>;
|
13
16
|
get: {
|
14
17
|
typeScale: {
|
15
|
-
|
18
|
+
textStyleDefinition: {
|
16
19
|
bySize: (size: any) => {
|
17
20
|
textStyleDefinition: TextStyleDefinition;
|
18
21
|
fontSize: number;
|
@@ -22,9 +25,10 @@ export declare const useTypographyViewerStore: () => {
|
|
22
25
|
lineHeight: (definition: TextStyleDefinition) => number;
|
23
26
|
};
|
24
27
|
};
|
25
|
-
|
28
|
+
displayIcon: (textStyleType: TextStyleType) => import("@omnia/fx-models").FontAwesomeIcon;
|
29
|
+
textStyleName: (textStyle: TextStyleType, size: TextStyleSizes) => any;
|
26
30
|
fontSizeDisplayFormat: (fontCss: string) => string;
|
27
|
-
sampleText: (typography: TextStyleType, size: TextStyleSizes) =>
|
31
|
+
sampleText: (typography: TextStyleType, size: TextStyleSizes) => any;
|
28
32
|
typeStyling: (textStyleTpe: TextStyleType, size: TextStyleSizes) => any;
|
29
33
|
};
|
30
34
|
rules: {
|
@@ -33,12 +37,14 @@ export declare const useTypographyViewerStore: () => {
|
|
33
37
|
isSizeUsed(size: number): boolean;
|
34
38
|
};
|
35
39
|
breakpoint: {
|
40
|
+
isActive(textStyleType: TextStyleType, size: TextStyleSizes): boolean;
|
41
|
+
readonly showActivationStatus: boolean;
|
36
42
|
readonly isCustomBreakpoint: boolean;
|
37
43
|
};
|
38
44
|
variants: {
|
39
45
|
isPlaceholder: (size: string) => boolean;
|
40
46
|
};
|
41
|
-
canStyleBeDisplayed: (textStyleType: TextStyleType, size: TextStyleSizes
|
47
|
+
canStyleBeDisplayed: (textStyleType: TextStyleType, size: TextStyleSizes) => boolean;
|
42
48
|
};
|
43
49
|
} & {
|
44
50
|
dispose?: () => void;
|
@@ -1,14 +1,21 @@
|
|
1
|
-
import { TextStyleDefinition,
|
1
|
+
import { TextStyleDefinition, TypographyBlueprint } from "@omnia/fx-models";
|
2
|
+
interface BreakpointScale {
|
3
|
+
lg: number;
|
4
|
+
md: number;
|
5
|
+
sm: number;
|
6
|
+
}
|
2
7
|
export declare function useTypographyBlueprintManager(): {
|
3
8
|
typeScale: {
|
4
|
-
|
9
|
+
createTextStyleDefinition: (blueprint: TypographyBlueprint, scaleSlots: BreakpointScale) => TextStyleDefinition;
|
5
10
|
};
|
6
|
-
|
7
|
-
|
8
|
-
|
11
|
+
textStyledefinition: {
|
12
|
+
createAll(blueprint: TypographyBlueprint): TypographyBlueprint;
|
13
|
+
update(definition: TextStyleDefinition, blueprint: TypographyBlueprint): TextStyleDefinition;
|
14
|
+
strip(definition: TextStyleDefinition): TextStyleDefinition;
|
9
15
|
};
|
10
16
|
blueprint: {
|
11
|
-
|
17
|
+
initFromScale(blueprint: TypographyBlueprint): TypographyBlueprint;
|
12
18
|
strip(blueprint: TypographyBlueprint): TypographyBlueprint;
|
13
19
|
};
|
14
20
|
};
|
21
|
+
export {};
|
@@ -11,6 +11,9 @@ export declare const useTypographyBlueprintStore: () => {
|
|
11
11
|
id: guid;
|
12
12
|
availableFonts: TypographyFontDefinition[];
|
13
13
|
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
14
|
+
rules: {
|
15
|
+
isStyleActive: (textStyleType: TextStyleType, size: TextStyleSizes) => boolean;
|
16
|
+
};
|
14
17
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
15
18
|
normalize(blueprint: TypographyBlueprint): TypographyBlueprint;
|
16
19
|
setBlueprint(): void;
|
@@ -1,6 +1,6 @@
|
|
1
|
-
export declare const AzureAdSyncProviderSettings: (props: import("../../..").ExtractProps<
|
1
|
+
export declare const AzureAdSyncProviderSettings: (props: import("../../..").ExtractProps<{}> & {} & {
|
2
2
|
"v-slots"?: {} & Omit<{
|
3
3
|
default?: import("vue").Slot;
|
4
4
|
}, never>;
|
5
|
-
} & {} & Omit<import("../../..").VueComponentBaseProps,
|
5
|
+
} & {} & Omit<import("../../..").VueComponentBaseProps, never> & import("../../..").VNodeEvents) => any;
|
6
6
|
export declare function renderAzureAdSyncProviderSettings(): import("vue/jsx-runtime").JSX.Element;
|
@@ -0,0 +1,29 @@
|
|
1
|
+
import { EvaluationSet, guid, IdentityProviderProperty } from "@omnia/fx/models";
|
2
|
+
import { DefineEmit } from "@omnia/fx/ux";
|
3
|
+
export interface EvaluationSetClient extends EvaluationSet {
|
4
|
+
clientId: guid;
|
5
|
+
clientNewRuleValue: string;
|
6
|
+
}
|
7
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
8
|
+
"emit:update:modelValue": (value: EvaluationSetClient) => void;
|
9
|
+
} & {
|
10
|
+
"v-model"?: EvaluationSetClient;
|
11
|
+
} & {
|
12
|
+
modelValue?: EvaluationSetClient;
|
13
|
+
} & {
|
14
|
+
isEdit: boolean;
|
15
|
+
} & {
|
16
|
+
getSyncPropertiesApi: () => Promise<IdentityProviderProperty[]>;
|
17
|
+
} & {
|
18
|
+
getSyncPropertyDisplayName: (property: IdentityProviderProperty) => string;
|
19
|
+
} & DefineEmit<"add", (set: EvaluationSetClient) => void> & DefineEmit<"update", (set: EvaluationSetClient) => void> & DefineEmit<"remove", (set: EvaluationSetClient) => void>> & {
|
20
|
+
onUpdate?: (set: EvaluationSetClient) => any;
|
21
|
+
"onUpdate:modelValue"?: (value: EvaluationSetClient) => any;
|
22
|
+
onRemove?: (set: EvaluationSetClient) => any;
|
23
|
+
onAdd?: (set: EvaluationSetClient) => any;
|
24
|
+
} & {
|
25
|
+
"v-slots"?: {} & Omit<{
|
26
|
+
default?: import("vue").Slot;
|
27
|
+
}, never>;
|
28
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "modelValue" | "v-model" | "emit:update:modelValue" | "isEdit" | "getSyncPropertiesApi" | "getSyncPropertyDisplayName" | "emit:add" | "emit:update" | "emit:remove"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
29
|
+
export default _default;
|
@@ -0,0 +1,18 @@
|
|
1
|
+
import { DefineEmit } from "@omnia/fx/ux";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
3
|
+
"emit:update:modelValue": (value: string) => void;
|
4
|
+
} & {
|
5
|
+
"v-model"?: string;
|
6
|
+
} & {
|
7
|
+
modelValue?: string;
|
8
|
+
} & {
|
9
|
+
isEdit: boolean;
|
10
|
+
} & DefineEmit<"add", (value: string) => void>> & {
|
11
|
+
"onUpdate:modelValue"?: (value: string) => any;
|
12
|
+
onAdd?: (value: string) => any;
|
13
|
+
} & {
|
14
|
+
"v-slots"?: {} & Omit<{
|
15
|
+
default?: import("vue").Slot;
|
16
|
+
}, never>;
|
17
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "modelValue" | "v-model" | "emit:update:modelValue" | "isEdit" | "emit:add"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
18
|
+
export default _default;
|
@@ -7,6 +7,20 @@ export declare namespace IdentitiesLocalization {
|
|
7
7
|
Description: string;
|
8
8
|
SyncPropertyBindingSetupTitle: string;
|
9
9
|
SyncRuleSetupTitle: string;
|
10
|
+
LastRun: string;
|
11
|
+
TimeToComplete: string;
|
12
|
+
NextScheduledRun: string;
|
13
|
+
RunFullSync: {
|
14
|
+
StartButton: string;
|
15
|
+
ConfirmTitle: string;
|
16
|
+
ConfirmMessage: string;
|
17
|
+
};
|
18
|
+
RunFullUserSync: {
|
19
|
+
StartButton: string;
|
20
|
+
ConfirmTitle: string;
|
21
|
+
ConfirmMessage: string;
|
22
|
+
};
|
23
|
+
InfoAtUserTypeAssignment: string;
|
10
24
|
};
|
11
25
|
};
|
12
26
|
PropertySyncBinding: {
|
@@ -22,6 +36,26 @@ export declare namespace IdentitiesLocalization {
|
|
22
36
|
ErrorNoRules: string;
|
23
37
|
EmptyRuleValue: string;
|
24
38
|
};
|
39
|
+
Status: {
|
40
|
+
Title: string;
|
41
|
+
Idle: string;
|
42
|
+
Running: string;
|
43
|
+
Paused: string;
|
44
|
+
Cancelled: string;
|
45
|
+
Error: string;
|
46
|
+
Success: string;
|
47
|
+
NoChange: string;
|
48
|
+
};
|
49
|
+
Identity: {
|
50
|
+
AddValue: string;
|
51
|
+
AddCondition: string;
|
52
|
+
TextProperty: string;
|
53
|
+
TextEquals: string;
|
54
|
+
TextValue: string;
|
55
|
+
TextMapping: string;
|
56
|
+
MicrosoftGraphProperty: string;
|
57
|
+
UserProperty: string;
|
58
|
+
};
|
25
59
|
IsExternal: string;
|
26
60
|
};
|
27
61
|
BuiltInProperties: {
|
@@ -323,9 +323,9 @@ declare const _default: {
|
|
323
323
|
hideGroupTypeSelection?: Boolean;
|
324
324
|
hideUserTypeSelection?: Boolean;
|
325
325
|
hideDynamicGroupSelection?: Boolean;
|
326
|
+
displayIdentityType?: Boolean;
|
326
327
|
enableSpecialUser?: ISpecialUserConfiguration;
|
327
328
|
showSelectedIdentities?: Boolean;
|
328
|
-
displayIdentityType?: Boolean;
|
329
329
|
isClosed?: Boolean;
|
330
330
|
}>, "onRemove" | "onDoc$" | "onAdd" | "onCloseDialog"> & {
|
331
331
|
onRemove?: (identity: Identity) => any;
|
@@ -35,6 +35,8 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
35
35
|
hideUserTypeSelection?: boolean;
|
36
36
|
} & {
|
37
37
|
hideDynamicGroupSelection?: boolean;
|
38
|
+
} & {
|
39
|
+
displayIdentityType?: boolean;
|
38
40
|
} & {
|
39
41
|
identityStore?: IIdentityPickerStore;
|
40
42
|
} & {
|
@@ -52,5 +54,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
52
54
|
"v-slots"?: {} & Omit<{
|
53
55
|
default?: import("vue").Slot;
|
54
56
|
}, never>;
|
55
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "filter" | "type" | "top" | "identityStore" | "disabled" | "location" | "modelValue" | "v-model" | "emit:update:modelValue" | "providerIds" | "emailEnabled" | "permissionEnabled" | "businessProfileId" | "attachToParent" | "keepSelectionMenu" | "disabledIdentities" | "blockedIdentities" | "hideTab" | "hideGroupTypeSelection" | "hideUserTypeSelection" | "hideDynamicGroupSelection" | "enableSpecialUser" | "emit:identityChanged"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
57
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "filter" | "type" | "top" | "identityStore" | "disabled" | "location" | "modelValue" | "v-model" | "emit:update:modelValue" | "providerIds" | "emailEnabled" | "permissionEnabled" | "businessProfileId" | "attachToParent" | "keepSelectionMenu" | "disabledIdentities" | "blockedIdentities" | "hideTab" | "hideGroupTypeSelection" | "hideUserTypeSelection" | "hideDynamicGroupSelection" | "displayIdentityType" | "enableSpecialUser" | "emit:identityChanged"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
56
58
|
export default _default;
|
@@ -55,6 +55,8 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
55
55
|
hideUserTypeSelection?: boolean;
|
56
56
|
} & {
|
57
57
|
hideDynamicGroupSelection?: boolean;
|
58
|
+
} & {
|
59
|
+
displayIdentityType?: boolean;
|
58
60
|
} & {
|
59
61
|
identityStore?: IIdentityPickerStore;
|
60
62
|
} & {
|
@@ -72,5 +74,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
72
74
|
"v-slots"?: {} & Omit<{
|
73
75
|
default?: import("vue").Slot;
|
74
76
|
}, never>;
|
75
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "filter" | "label" | "type" | "top" | "variant" | "identityStore" | "required" | "multiple" | "dense" | "disabled" | "modelValue" | "v-model" | "emit:update:modelValue" | "description" | "ariaInvalid" | "ariaDescribedby" | "providerIds" | "emailEnabled" | "permissionEnabled" | "businessProfileId" | "singleLine" | "attachToParent" | "keepSelectionMenu" | "showCurrentUserOption" | "autoOpenSelection" | "disabledIdentities" | "blockedIdentities" | "emit:menuToggle" | "hideTab" | "hideGroupTypeSelection" | "hideUserTypeSelection" | "hideDynamicGroupSelection" | "enableSpecialUser"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
77
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "filter" | "label" | "type" | "top" | "variant" | "identityStore" | "required" | "multiple" | "dense" | "disabled" | "modelValue" | "v-model" | "emit:update:modelValue" | "description" | "ariaInvalid" | "ariaDescribedby" | "providerIds" | "emailEnabled" | "permissionEnabled" | "businessProfileId" | "singleLine" | "attachToParent" | "keepSelectionMenu" | "showCurrentUserOption" | "autoOpenSelection" | "disabledIdentities" | "blockedIdentities" | "emit:menuToggle" | "hideTab" | "hideGroupTypeSelection" | "hideUserTypeSelection" | "hideDynamicGroupSelection" | "displayIdentityType" | "enableSpecialUser"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
76
78
|
export default _default;
|
@@ -32,5 +32,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<JourneyBlade
|
|
32
32
|
} & Omit<{
|
33
33
|
default?: import("vue").Slot;
|
34
34
|
}, "filter" | "actions" | "actionsFooter">;
|
35
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "switch" | "icon" | "actions" | "variant" | "size" | "add" | "id" | "delete" | "disabled" | "eager" | "settings" | "loading" | "create" | "remove" | "slot:actions" | "ok" | "save" | "toned" | "subTitle" | "emit:click:cancel" | "emit:click:confirm" | "
|
35
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "switch" | "icon" | "actions" | "variant" | "size" | "add" | "id" | "delete" | "disabled" | "eager" | "settings" | "loading" | "create" | "remove" | "slot:actions" | "ok" | "save" | "toned" | "subTitle" | "emit:click:cancel" | "emit:click:confirm" | "getApi" | "searchable" | "manageList" | "bladeContext" | "onOk" | "onRemove" | "onSave" | "onDelete" | "onSwitch" | "confirmDeleteDialogOption" | "disabledButtonTooltips" | "sizeOnMobile" | "slot:actionsFooter" | "slot:filter" | "emit:click:create" | "emit:click:add" | "emit:click:back" | "emit:click:settings" | "emit:search" | "emit:changeFilter" | "emit:closeFilter" | "emit:hidden" | "emit:click:manageList"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
36
36
|
export default _default;
|
@@ -8,13 +8,13 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
8
8
|
searchable?: boolean | Ref<boolean, boolean>;
|
9
9
|
} & DefineSlot<"filter", () => VNodeChild> & DefineEmit<"search", (searchText: string) => true> & DefineEmit<"applyFilter", () => true> & DefineEmit<"closeFilter", () => true>> & {
|
10
10
|
onSearch?: (searchText: string) => any;
|
11
|
-
onApplyFilter?: () => any;
|
12
11
|
onCloseFilter?: () => any;
|
12
|
+
onApplyFilter?: () => any;
|
13
13
|
} & {
|
14
14
|
"v-slots"?: {
|
15
15
|
filter?: () => VNodeChild;
|
16
16
|
} & Omit<{
|
17
17
|
default?: import("vue").Slot;
|
18
18
|
}, "filter">;
|
19
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "
|
19
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "searchable" | "slot:filter" | "emit:search" | "emit:closeFilter" | "heightDialog" | "countFieldHasValue" | "emit:applyFilter"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
20
20
|
export default _default;
|
@@ -1,7 +1,11 @@
|
|
1
1
|
import { DefineEmit, DefineProp, DefinePropTheming, DefineSlot, DefineVModel, JourneySelectItem, JourneySelectPropertyMapping, useJourneySelectStore } from "@omnia/fx/ux";
|
2
2
|
import { VNodeChild } from "vue";
|
3
3
|
import { ActionDefinition } from "@omnia/fx-models";
|
4
|
-
type BaseProps<TItem> = DefinePropTheming & DefineVModel<"", Array<any> | any> & DefineProp<"getApi", (store: ReturnType<typeof useJourneySelectStore>) => void, false, null, "callback to get a reference to the store"> & DefineProp<"items", Array<TItem>, false, null, "Items to select from"> & DefineProp<"toned", boolean, false, null, "Sets the component to toned"> & DefineProp<"multiple", boolean, false, null, "If it is allowed to select multiple or single"> & DefineProp<"propertyValueMapping", JourneySelectPropertyMapping<TItem>, false, null, "Property value mappings"> & DefineProp<"returnSelectionAsObject", boolean, false, null, "Changes the selection behavior to return the object directly rather than the value specified with item-value"> & DefineProp<"label", string, null, null, "The label of the component"> & DefineProp<"labelAdd", string, null, null, "The add label of the component"> & DefineProp<"titleAdd", string, null, null, "The add title of the add blade"> & DefineProp<"titleEdit", string, null, null, "The edit title of the edit blade"> & DefineProp<"disableSearch", boolean, false, null, "Disables the automatic search"> & DefineProp<"disableSave", boolean, false, null, "If it is allowed save"> & DefineProp<"sortable", boolean, false, null, "If it is allowed to sort"> & DefineProp<"readonly", boolean, false, null, "Disable add and delete"> & DefineProp<"list", boolean, false, null, "Always render the items as a list"> & DefineProp<"confirmDelete", boolean, false, null, "If you confirm before delete from the items"> & DefineProp<"noAddConfirm", boolean, false, null, "If items are added without a save button"> & DefineProp<"bladelessAdd", boolean, false, null, "If addis not a blade and only fires events"> & DefineProp<"bladeless", boolean, false, null, "If add/edit is not a blade and only fires events"> & DefineProp<"actions", ActionDefinition[], false, null, "Actions to display in the blade header"> & DefineProp<"itemSettingable", (item: TItem) => boolean, false, null, "Item has settings or not."> &
|
4
|
+
type BaseProps<TItem> = DefinePropTheming & DefineVModel<"", Array<any> | any> & DefineProp<"getApi", (store: ReturnType<typeof useJourneySelectStore>) => void, false, null, "callback to get a reference to the store"> & DefineProp<"items", Array<TItem>, false, null, "Items to select from"> & DefineProp<"toned", boolean, false, null, "Sets the component to toned"> & DefineProp<"multiple", boolean, false, null, "If it is allowed to select multiple or single"> & DefineProp<"propertyValueMapping", JourneySelectPropertyMapping<TItem>, false, null, "Property value mappings"> & DefineProp<"returnSelectionAsObject", boolean, false, null, "Changes the selection behavior to return the object directly rather than the value specified with item-value"> & DefineProp<"label", string, null, null, "The label of the component"> & DefineProp<"labelAdd", string, null, null, "The add label of the component"> & DefineProp<"titleAdd", string, null, null, "The add title of the add blade"> & DefineProp<"titleEdit", string, null, null, "The edit title of the edit blade"> & DefineProp<"disableSearch", boolean, false, null, "Disables the automatic search"> & DefineProp<"disableSave", boolean, false, null, "If it is allowed save"> & DefineProp<"sortable", boolean, false, null, "If it is allowed to sort"> & DefineProp<"readonly", boolean, false, null, "Disable add and delete"> & DefineProp<"list", boolean, false, null, "Always render the items as a list"> & DefineProp<"confirmDelete", boolean, false, null, "If you confirm before delete from the items"> & DefineProp<"noAddConfirm", boolean, false, null, "If items are added without a save button"> & DefineProp<"bladelessAdd", boolean, false, null, "If addis not a blade and only fires events"> & DefineProp<"bladeless", boolean, false, null, "If add/edit is not a blade and only fires events"> & DefineProp<"actions", ActionDefinition[], false, null, "Actions to display in the blade header of the selection blade"> & DefineProp<"itemSettingable", (item: TItem) => boolean, false, null, "Item has settings or not."> & DefineProp<"itemDeletable", (item: TItem) => boolean, false, null, "Item can be deleted or not."> & DefineSlot<"selectionItemRender", (item: JourneySelectItem<any>, index: number, isSelected: boolean) => VNodeChild> & DefineSlot<"selectionRender", () => VNodeChild> & DefineSlot<"selectedItemRenderer", (item: JourneySelectItem<any>, index: number) => VNodeChild> & DefineSlot<"settingsRender", (item: JourneySelectItem<any>, index: number) => VNodeChild> & DefineSlot<"settingsRenderV2", (item: {
|
5
|
+
SettingsRenderer: (blade: typeof omfx.journey.blade) => VNodeChild;
|
6
|
+
item: JourneySelectItem<any>;
|
7
|
+
index: number;
|
8
|
+
}) => VNodeChild> & DefineSlot<"actions", () => VNodeChild> & DefineEmit<"showAdd", () => true> & DefineEmit<"showEdit", (item: TItem, index: number) => true> & DefineEmit<"search", (searchText: string) => true> & DefineEmit<"click:clear", () => true> & DefineEmit<"click:add", (item: Array<TItem> | TItem) => true> & DefineEmit<"click:update", (item: TItem, index: number) => true> & DefineEmit<"click:delete", (item: TItem, index: number) => true>;
|
5
9
|
declare const _default: <TItem extends unknown = any>(props: import("@omnia/fx/ux").ExtractProps<BaseProps<TItem>> & {
|
6
10
|
"onUpdate:modelValue"?: (value: any) => any;
|
7
11
|
"onClick:clear"?: () => any;
|
@@ -17,9 +21,14 @@ declare const _default: <TItem extends unknown = any>(props: import("@omnia/fx/u
|
|
17
21
|
selectionRender?: () => VNodeChild;
|
18
22
|
selectedItemRenderer?: (item: JourneySelectItem<any>, index: number) => VNodeChild;
|
19
23
|
settingsRender?: (item: JourneySelectItem<any>, index: number) => VNodeChild;
|
24
|
+
settingsRenderV2?: (item: {
|
25
|
+
SettingsRenderer: (blade: typeof omfx.journey.blade) => VNodeChild;
|
26
|
+
item: JourneySelectItem<any>;
|
27
|
+
index: number;
|
28
|
+
}) => VNodeChild;
|
20
29
|
actions?: () => VNodeChild;
|
21
30
|
} & Omit<{
|
22
31
|
default?: import("vue").Slot;
|
23
|
-
}, "actions" | "selectionItemRender" | "selectionRender" | "selectedItemRenderer" | "settingsRender">;
|
24
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "actions" | "list" | "multiple" | "colorSchemaType" | "modelValue" | "items" | "readonly" | "slot:actions" | "colors" | "v-model" | "toned" | "emit:update:modelValue" | "
|
32
|
+
}, "actions" | "selectionItemRender" | "selectionRender" | "selectedItemRenderer" | "settingsRender" | "settingsRenderV2">;
|
33
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "actions" | "list" | "multiple" | "colorSchemaType" | "modelValue" | "items" | "readonly" | "slot:actions" | "colors" | "v-model" | "toned" | "emit:update:modelValue" | "getApi" | "emit:click:add" | "emit:search" | "emit:click:clear" | "emit:click:delete" | "sortable" | "labelAdd" | "propertyValueMapping" | "returnSelectionAsObject" | "titleAdd" | "titleEdit" | "disableSearch" | "disableSave" | "confirmDelete" | "noAddConfirm" | "bladelessAdd" | "bladeless" | "itemSettingable" | "itemDeletable" | "slot:selectionItemRender" | "slot:selectionRender" | "slot:selectedItemRenderer" | "slot:settingsRender" | "slot:settingsRenderV2" | "emit:showAdd" | "emit:showEdit" | "emit:click:update"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
25
34
|
export default _default;
|
@@ -17,6 +17,11 @@ export declare const useJourneySelectStore: () => {
|
|
17
17
|
};
|
18
18
|
readonly slots: {
|
19
19
|
settingsRender: (item: any, index: number) => VNodeChild;
|
20
|
+
settingsRenderV2: (item: {
|
21
|
+
SettingsRenderer: (blade: typeof omfx.journey.blade) => VNodeChild;
|
22
|
+
item: JourneySelectItem<any>;
|
23
|
+
index: number;
|
24
|
+
}) => VNodeChild;
|
20
25
|
selectionItemRender: (item: any, index: number, isSelected: boolean) => VNodeChild;
|
21
26
|
selectionRender: () => VNodeChild;
|
22
27
|
selectedItemRenderer: (item: any, index: number) => VNodeChild;
|
@@ -51,6 +56,7 @@ export declare const useJourneySelectStore: () => {
|
|
51
56
|
selectedItems: {
|
52
57
|
all: JourneySelectItem<any>[];
|
53
58
|
inEdit: JourneySelectItem<any>[];
|
59
|
+
isDeletable: (item: any) => boolean;
|
54
60
|
};
|
55
61
|
selectedItem: {
|
56
62
|
item: JourneySelectItem<any>;
|
@@ -70,7 +76,7 @@ export declare const useJourneySelectStore: () => {
|
|
70
76
|
returnSelectionAsObject: boolean;
|
71
77
|
propertyValueMapping: JourneySelectPropertyMapping<any>;
|
72
78
|
};
|
73
|
-
|
79
|
+
bladeSelectionActions: ActionDefinition[];
|
74
80
|
containerBladeId: guid;
|
75
81
|
bladeIds: {
|
76
82
|
selectionBlade: guid;
|
@@ -92,6 +98,7 @@ export declare const useJourneySelectStore: () => {
|
|
92
98
|
selectedItems: {
|
93
99
|
all: JourneySelectItem<any>[];
|
94
100
|
inEdit: JourneySelectItem<any>[];
|
101
|
+
isDeletable: (item: any) => boolean;
|
95
102
|
};
|
96
103
|
selectedItem: {
|
97
104
|
item: JourneySelectItem<any>;
|
@@ -111,7 +118,7 @@ export declare const useJourneySelectStore: () => {
|
|
111
118
|
returnSelectionAsObject: boolean;
|
112
119
|
propertyValueMapping: JourneySelectPropertyMapping<any>;
|
113
120
|
};
|
114
|
-
|
121
|
+
bladeSelectionActions: ActionDefinition[];
|
115
122
|
containerBladeId: guid;
|
116
123
|
bladeIds: {
|
117
124
|
selectionBlade: guid;
|
@@ -136,7 +143,18 @@ export declare const useJourneySelectStore: () => {
|
|
136
143
|
applySelection: () => void;
|
137
144
|
};
|
138
145
|
deleteItem(item: JourneySelectItem<any>, index: number): void;
|
139
|
-
init(items: Array<any>, externalModel: Array<any> | any, renderingSlots:
|
146
|
+
init(items: Array<any>, externalModel: Array<any> | any, renderingSlots: {
|
147
|
+
settingsRender: (item: any, index: number) => VNodeChild;
|
148
|
+
settingsRenderV2: (item: {
|
149
|
+
SettingsRenderer: (blade: typeof omfx.journey.blade) => VNodeChild;
|
150
|
+
item: JourneySelectItem<any>;
|
151
|
+
index: number;
|
152
|
+
}) => VNodeChild;
|
153
|
+
selectionItemRender: (item: any, index: number, isSelected: boolean) => VNodeChild;
|
154
|
+
selectionRender: () => VNodeChild;
|
155
|
+
selectedItemRenderer: (item: any, index: number) => VNodeChild;
|
156
|
+
actionsRender: () => VNodeChild;
|
157
|
+
}): void;
|
140
158
|
}>;
|
141
159
|
get: {
|
142
160
|
readonly displayText: string;
|
@@ -46,6 +46,9 @@ export type InternalJourneyStoreType = {
|
|
46
46
|
bladeWidth(size: BladeSizeTypes, bladeId: guid, scrollContainerLeftPosition?: number): number;
|
47
47
|
isNested: boolean;
|
48
48
|
};
|
49
|
+
rules: {
|
50
|
+
isActiveBlade(bladeId: guid): boolean;
|
51
|
+
};
|
49
52
|
};
|
50
53
|
export declare const useJourneyStore: () => {
|
51
54
|
readonly scrollContainer: {
|
@@ -146,6 +149,9 @@ export declare const useJourneyStore: () => {
|
|
146
149
|
scrollToBladeElemnt(bladeElement: HTMLElement): void;
|
147
150
|
ensureBladeVisibleInScrollView(blade: BladeInstance): void;
|
148
151
|
}>;
|
152
|
+
rules: {
|
153
|
+
isActiveBlade: (bladeId: guid) => boolean;
|
154
|
+
};
|
149
155
|
} & {
|
150
156
|
dispose?: () => void;
|
151
157
|
};
|
@@ -1,6 +1,9 @@
|
|
1
1
|
import { ImageItem } from "@omnia/fx-models";
|
2
2
|
import { BaseProviderImageHandler } from "@omnia/fx/stores";
|
3
3
|
export declare class UnsplashProviderHandler extends BaseProviderImageHandler {
|
4
|
+
private clientId;
|
4
5
|
private imageService;
|
6
|
+
constructor();
|
7
|
+
private getUnplashProviderSecret;
|
5
8
|
search(searchText: string, offset?: number): Promise<ImageItem[]>;
|
6
9
|
}
|
package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/UnsplashProvider.d.ts
CHANGED
@@ -1,16 +1,6 @@
|
|
1
|
-
declare const _default: {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
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
|
+
declare const _default: (props: import("../..").ExtractProps<Record<string, any>> & {} & {
|
2
|
+
"v-slots"?: {} & Omit<{
|
3
|
+
default?: import("vue").Slot;
|
4
|
+
}, never>;
|
5
|
+
} & {} & Omit<import("../..").VueComponentBaseProps, string> & import("../..").VNodeEvents) => any;
|
16
6
|
export default _default;
|
@@ -1,7 +1,13 @@
|
|
1
1
|
import { UnsplashImage } from "../models/UnsplashImage";
|
2
|
+
type UnsplashAuthenticationInfo = {
|
3
|
+
applicationId: string;
|
4
|
+
clientIdKey: string;
|
5
|
+
};
|
2
6
|
export declare class UnsplashImageService {
|
3
7
|
private httpClient;
|
4
8
|
private commonHttpClient;
|
5
|
-
search: (
|
9
|
+
search: (searchText: string, clientId: string, offset?: number, limit?: number) => Promise<Array<UnsplashImage>>;
|
6
10
|
private getImages;
|
11
|
+
getAuthenticationInfo: () => Promise<UnsplashAuthenticationInfo>;
|
7
12
|
}
|
13
|
+
export {};
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { DefineProp, DefinePropTheming, DefineSlot, DefineVModel, EventType } from "@omnia/fx/ux";
|
2
2
|
import { VNodeChild } from "vue";
|
3
|
-
declare const defaultWeekDays:
|
4
|
-
type CalendarProps<T extends EventType> = DefinePropTheming & DefineProp<"class", String | String[]> & DefineVModel<"", Date[], false, null, true, "The v-model of the component"> & DefineProp<"events", T[], false, null, "Array of events specific to this interval."> & DefineProp<"viewMode", "month" | "day" | "week", false, "month", "The current view mode of the calendar."> & DefineProp<"weekdays",
|
3
|
+
declare const defaultWeekDays: (0 | 1 | 4 | 3 | 2 | 5 | 6)[];
|
4
|
+
type CalendarProps<T extends EventType> = DefinePropTheming & DefineProp<"class", String | String[]> & DefineVModel<"", Date[], false, null, true, "The v-model of the component"> & DefineProp<"events", T[], false, null, "Array of events specific to this interval."> & DefineProp<"viewMode", "month" | "day" | "week", false, "month", "The current view mode of the calendar."> & DefineProp<"weekdays", Array<0 | 1 | 2 | 3 | 4 | 5 | 6>, false, typeof defaultWeekDays, "Specifies which days of the week to display.Default is [0, 1, 2, 3, 4, 5, 6]"> & DefineProp<"year", number, false, null, "Specifies the year for the calendar view."> & DefineProp<"month", number, false, null, "Specifies the month for the calendar view."> & DefineProp<"intervalHeight", number, false, null, "Height of the interval in pixels in the calendar view."> & DefineProp<"intervals", number, false, 24, "Total number of intervals in a day view."> & DefineProp<"intervalStart", number, false, 0, "Starting time for this specific interval."> & DefineProp<"max", Date, false, null, "Maximum date or value that can be selected."> & DefineProp<"min", Date, false, null, "Minimum date or value that can be selected."> & DefineProp<"hideWeekNumber", boolean, false, false, "Toggles the display of week numbers in a calendar view."> & DefineProp<"hideDayHeader", boolean, false, false, "Determines whether the day header is visible in the calendar day view."> & DefineProp<"hideHeader", boolean, false, false, "Determines whether the header is hidden in the calendar view."> & DefineProp<"allowedDates", Date[] | ((date: Date) => boolean), false, null, "Determines which dates are selectable."> & DefineSlot<"event", (event: {
|
5
5
|
day: Date;
|
6
6
|
allDay: boolean;
|
7
7
|
event: T;
|