@rockrms/obsidian-framework 18.1.0 → 18.2.4
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/package.json +1 -1
- package/types/Controls/Internal/EmailEditor/api.d.ts +2 -0
- package/types/Controls/Internal/EmailEditor/borderPicker.partial.obs.d.ts +39 -0
- package/types/Controls/Internal/EmailEditor/borderStylePicker.partial.obs.d.ts +37 -0
- package/types/Controls/Internal/EmailEditor/buttonWidthPicker.partial.obs.d.ts +28 -0
- package/types/Controls/Internal/EmailEditor/componentPropertyPanel.partial.obs.d.ts +17 -0
- package/types/Controls/Internal/EmailEditor/contentToggle.partial.obs.d.ts +38 -0
- package/types/Controls/Internal/EmailEditor/emailDesigner.partial.obs.d.ts +17 -3
- package/types/Controls/Internal/EmailEditor/emailIFrame.partial.obs.d.ts +17 -3
- package/types/Controls/Internal/EmailEditor/fontFamilyPicker.partial.obs.d.ts +17 -0
- package/types/Controls/Internal/EmailEditor/hrefPicker.partial.obs.d.ts +26 -0
- package/types/Controls/Internal/EmailEditor/letterCasePicker.partial.obs.d.ts +76 -0
- package/types/Controls/Internal/EmailEditor/lineHeightPicker2.partial.obs.d.ts +75 -0
- package/types/Controls/Internal/EmailEditor/percentRangeSlider.partial.obs.d.ts +55 -0
- package/types/Controls/Internal/EmailEditor/pixelBox.partial.obs.d.ts +75 -0
- package/types/Controls/Internal/EmailEditor/properties/buttonWidthProperty.partial.obs.d.ts +3 -3
- package/types/Controls/Internal/EmailEditor/properties/colorPickerProperty.partial.obs.d.ts +3 -3
- package/types/Controls/Internal/EmailEditor/propertyPanels/buttonComponentPropertyPanel.partial.obs.d.ts +21 -5
- package/types/Controls/Internal/EmailEditor/propertyPanels/codeComponentPropertyPanel.partial.obs.d.ts +2 -3
- package/types/Controls/Internal/EmailEditor/propertyPanels/dividerComponentPropertyPanel.partial.obs.d.ts +9 -0
- package/types/Controls/Internal/EmailEditor/propertyPanels/globalPropertyPanel.partial.obs.d.ts +35 -2
- package/types/Controls/Internal/EmailEditor/providers.partial.d.ts +3 -21
- package/types/Controls/Internal/EmailEditor/shorthandBorderStylePicker.partial.obs.d.ts +37 -0
- package/types/Controls/Internal/EmailEditor/shorthandColorPicker.partial.obs.d.ts +82 -0
- package/types/Controls/Internal/EmailEditor/shorthandDropDownList.partial.obs.d.ts +91 -0
- package/types/Controls/Internal/EmailEditor/shorthandPixelBox.partial.obs.d.ts +82 -0
- package/types/Controls/Internal/EmailEditor/sidePanel.partial.obs.d.ts +31 -1
- package/types/Controls/Internal/EmailEditor/textAlignmentPicker.partial.obs.d.ts +76 -0
- package/types/Controls/Internal/EmailEditor/textFormatPicker2.partial.obs.d.ts +104 -0
- package/types/Controls/Internal/EmailEditor/types.partial.d.ts +507 -5
- package/types/Controls/Internal/EmailEditor/utils.partial.d.ts +63 -115
- package/types/Controls/checkBox.obs.d.ts +3 -9
- package/types/Controls/doughnutChart.obs.d.ts +364 -0
- package/types/Controls/htmlEditor.obs.d.ts +25 -0
- package/types/Core/Controls/chart.d.ts +6 -0
- package/types/Enums/Group/appliesToPlacementConfiguration.d.ts +13 -0
- package/types/PageState/index.d.ts +1 -0
- package/types/PageState/state.d.ts +0 -1
- package/types/SystemGuids/serviceJob.d.ts +4 -2
- package/types/Utility/dom.d.ts +10 -0
- package/types/Utility/lava.d.ts +2 -0
- package/types/Utility/linq.d.ts +5 -20
- package/types/ViewModels/Blocks/Communication/Chat/ChatConfiguration/chatConfigurationBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Communication/Chat/ChatView/chatPersonDataBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Core/DefinedTypeList/definedTypeListOptionsBag.d.ts +0 -2
- package/types/ViewModels/Blocks/Engagement/StepProgramDetail/stepStatusBag.d.ts +1 -4
- package/types/ViewModels/Blocks/Event/RegistrationEntry/persistSessionResponseBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/personFiltersBag.d.ts +56 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/placementConfigurationSettingsBag.d.ts +4 -0
- package/types/ViewModels/Blocks/Reporting/DynamicData/gridResultsBag.d.ts +0 -8
- package/types/ViewModels/Rest/Controls/emailEditorGetGroupOptionsBag.d.ts +36 -0
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
import { PropType } from "vue";
|
|
2
|
+
import { ButtonGlobalProps } from "../types.partial";
|
|
3
|
+
import { UsageType } from "../types";
|
|
2
4
|
declare const _default: import("vue").DefineComponent<{
|
|
5
|
+
buttonGlobalProps: {
|
|
6
|
+
type: PropType<ButtonGlobalProps>;
|
|
7
|
+
required: true;
|
|
8
|
+
};
|
|
3
9
|
componentElement: {
|
|
4
10
|
type: PropType<HTMLElement>;
|
|
5
11
|
required: true;
|
|
6
12
|
};
|
|
7
13
|
ltr: {
|
|
8
14
|
type: PropType<boolean>;
|
|
9
|
-
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
usageType: {
|
|
18
|
+
type: PropType<UsageType>;
|
|
19
|
+
required: true;
|
|
10
20
|
};
|
|
11
21
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
22
|
clone: () => void;
|
|
@@ -14,20 +24,26 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14
24
|
delete: () => void;
|
|
15
25
|
migrate: (value: Element) => void;
|
|
16
26
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
27
|
+
buttonGlobalProps: {
|
|
28
|
+
type: PropType<ButtonGlobalProps>;
|
|
29
|
+
required: true;
|
|
30
|
+
};
|
|
17
31
|
componentElement: {
|
|
18
32
|
type: PropType<HTMLElement>;
|
|
19
33
|
required: true;
|
|
20
34
|
};
|
|
21
35
|
ltr: {
|
|
22
36
|
type: PropType<boolean>;
|
|
23
|
-
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
39
|
+
usageType: {
|
|
40
|
+
type: PropType<UsageType>;
|
|
41
|
+
required: true;
|
|
24
42
|
};
|
|
25
43
|
}>> & {
|
|
26
44
|
onComplete?: (() => any) | undefined;
|
|
27
45
|
onDelete?: (() => any) | undefined;
|
|
28
46
|
onClone?: (() => any) | undefined;
|
|
29
47
|
onMigrate?: ((value: Element) => any) | undefined;
|
|
30
|
-
}, {
|
|
31
|
-
ltr: boolean;
|
|
32
|
-
}, {}>;
|
|
48
|
+
}, {}, {}>;
|
|
33
49
|
export default _default;
|
|
@@ -15,7 +15,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
15
15
|
};
|
|
16
16
|
usageType: {
|
|
17
17
|
type: PropType<UsageType>;
|
|
18
|
-
|
|
18
|
+
required: true;
|
|
19
19
|
};
|
|
20
20
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
21
|
clone: () => void;
|
|
@@ -37,7 +37,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
37
37
|
};
|
|
38
38
|
usageType: {
|
|
39
39
|
type: PropType<UsageType>;
|
|
40
|
-
|
|
40
|
+
required: true;
|
|
41
41
|
};
|
|
42
42
|
}>> & {
|
|
43
43
|
onComplete?: (() => any) | undefined;
|
|
@@ -46,6 +46,5 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
46
46
|
onMigrate?: ((value: Element) => any) | undefined;
|
|
47
47
|
}, {
|
|
48
48
|
ltr: boolean;
|
|
49
|
-
usageType: UsageType;
|
|
50
49
|
}, {}>;
|
|
51
50
|
export default _default;
|
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
import { PropType } from "vue";
|
|
2
|
+
import { DividerGlobalProps } from "../types.partial";
|
|
2
3
|
declare const _default: import("vue").DefineComponent<{
|
|
3
4
|
componentElement: {
|
|
4
5
|
type: PropType<HTMLElement>;
|
|
5
6
|
required: true;
|
|
6
7
|
};
|
|
8
|
+
dividerGlobalProps: {
|
|
9
|
+
type: PropType<DividerGlobalProps>;
|
|
10
|
+
required: true;
|
|
11
|
+
};
|
|
7
12
|
ltr: {
|
|
8
13
|
type: PropType<boolean>;
|
|
9
14
|
default: boolean;
|
|
@@ -18,6 +23,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18
23
|
type: PropType<HTMLElement>;
|
|
19
24
|
required: true;
|
|
20
25
|
};
|
|
26
|
+
dividerGlobalProps: {
|
|
27
|
+
type: PropType<DividerGlobalProps>;
|
|
28
|
+
required: true;
|
|
29
|
+
};
|
|
21
30
|
ltr: {
|
|
22
31
|
type: PropType<boolean>;
|
|
23
32
|
default: boolean;
|
package/types/Controls/Internal/EmailEditor/propertyPanels/globalPropertyPanel.partial.obs.d.ts
CHANGED
|
@@ -1,15 +1,48 @@
|
|
|
1
1
|
import { PropType } from "vue";
|
|
2
|
+
import { BodyGlobalProps, ButtonGlobalProps, DividerGlobalProps } from "../types.partial";
|
|
2
3
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
4
|
document: {
|
|
4
5
|
type: PropType<Document>;
|
|
5
6
|
required: true;
|
|
6
7
|
};
|
|
7
|
-
|
|
8
|
+
bodyGlobalProps: {
|
|
9
|
+
type: PropType<BodyGlobalProps>;
|
|
10
|
+
required: true;
|
|
11
|
+
};
|
|
12
|
+
buttonGlobalProps: {
|
|
13
|
+
type: PropType<ButtonGlobalProps>;
|
|
14
|
+
required: true;
|
|
15
|
+
};
|
|
16
|
+
dividerGlobalProps: {
|
|
17
|
+
type: PropType<DividerGlobalProps>;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
|
+
"update:bodyGlobalProps": (value: BodyGlobalProps) => void;
|
|
22
|
+
"update:buttonGlobalProps": (value: ButtonGlobalProps) => void;
|
|
23
|
+
"update:dividerGlobalProps": (value: DividerGlobalProps) => void;
|
|
24
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
25
|
document: {
|
|
9
26
|
type: PropType<Document>;
|
|
10
27
|
required: true;
|
|
11
28
|
};
|
|
12
|
-
|
|
29
|
+
bodyGlobalProps: {
|
|
30
|
+
type: PropType<BodyGlobalProps>;
|
|
31
|
+
required: true;
|
|
32
|
+
};
|
|
33
|
+
buttonGlobalProps: {
|
|
34
|
+
type: PropType<ButtonGlobalProps>;
|
|
35
|
+
required: true;
|
|
36
|
+
};
|
|
37
|
+
dividerGlobalProps: {
|
|
38
|
+
type: PropType<DividerGlobalProps>;
|
|
39
|
+
required: true;
|
|
40
|
+
};
|
|
41
|
+
}>> & {
|
|
42
|
+
"onUpdate:bodyGlobalProps"?: ((value: BodyGlobalProps) => any) | undefined;
|
|
43
|
+
"onUpdate:buttonGlobalProps"?: ((value: ButtonGlobalProps) => any) | undefined;
|
|
44
|
+
"onUpdate:dividerGlobalProps"?: ((value: DividerGlobalProps) => any) | undefined;
|
|
45
|
+
}, {}, {}>, {
|
|
13
46
|
bodySettingsPrepend?(_: {}): any;
|
|
14
47
|
}>;
|
|
15
48
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
import { BackgroundSize, BackgroundFit, BorderStyle, CssStyleDeclarationKebabKey, ShorthandStyleValueProviderHooks, ShorthandValueProvider, StyleSheetMode, StyleValueProviderHooks, ValueConverter, ValueProvider, ValueProviderHooks,
|
|
1
|
+
import { Ref } from "vue";
|
|
2
|
+
import { BackgroundSize, BackgroundFit, BorderStyle, CssStyleDeclarationKebabKey, ShorthandStyleValueProviderHooks, ShorthandValueProvider, StyleSheetMode, StyleValueProviderHooks, ValueConverter, ValueProvider, ValueProviderHooks, ComponentStructure } from "./types.partial";
|
|
3
3
|
import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
|
|
4
4
|
export declare function inlineStyleProvider<T>(element: HTMLElement, property: CssStyleDeclarationKebabKey, converter: ValueConverter<T, string | null>, copyToElements?: HTMLElement[] | null | undefined, hooks?: StyleValueProviderHooks<T, string | null> | null | undefined): ValueProvider<T>;
|
|
5
5
|
export declare function shorthandInlineStyleProvider<T>(element: HTMLElement, shorthandProperty: CssStyleDeclarationKebabKey, longhandProperties: Record<"top" | "right" | "bottom" | "left", CssStyleDeclarationKebabKey>, converter: ValueConverter<T, string | null>, copyToElements?: HTMLElement[] | null | undefined, hooks?: ShorthandStyleValueProviderHooks<T, string | null> | null | undefined): ShorthandValueProvider<T>;
|
|
@@ -43,27 +43,9 @@ export declare function createDomWatcherShorthandProvider<T>(root: Document | El
|
|
|
43
43
|
additionalProjection?: (el: Element) => Element;
|
|
44
44
|
}): ShorthandValueProvider<T>;
|
|
45
45
|
export declare function createSetterOnlyShorthandProvider<T>(provider: ShorthandValueProvider<T>): ShorthandValueProvider<T>;
|
|
46
|
-
export declare function createGlobalBodyWidthProvider(document: Document): ValueProvider<number | null | undefined>;
|
|
47
|
-
export declare function getGlobalBodyWidthProvider(document: Document): ValueProvider<number | null | undefined>;
|
|
48
|
-
export declare function createGlobalBodyAlignmentProvider(document: Document): ValueProvider<string | null | undefined>;
|
|
49
|
-
export declare function getGlobalBodyAlignmentProvider(document: Document): ValueProvider<string | null | undefined>;
|
|
50
46
|
export declare function createBackgroundColorProvider(wrappers: ComponentStructure): ValueProvider<string | null | undefined>;
|
|
51
47
|
export declare function createComponentBackgroundColorProvider(componentElement: Element): ValueProvider<string | null | undefined>;
|
|
52
|
-
export declare function createGlobalButtonBackgroundColorProvider(document: Document): ValueProvider<string | null | undefined>;
|
|
53
|
-
export declare function getGlobalButtonBackgroundColorProvider(document: Document): ValueProvider<string | null | undefined>;
|
|
54
48
|
export declare function createComponentOuterBackgroundColorProvider(componentElement: Element): ValueProvider<string | null | undefined>;
|
|
55
|
-
export declare function createGlobalBodyBackgroundColorProvider(document: Document): ValueProvider<string | null | undefined>;
|
|
56
|
-
export declare function getGlobalBodyBackgroundColorProvider(document: Document): ValueProvider<string | null | undefined>;
|
|
57
49
|
export declare function createGlobalBackgroundColorProvider(document: Document): ValueProvider<string | null | undefined>;
|
|
58
50
|
export declare function getGlobalBackgroundColorProvider(document: Document): ValueProvider<string | null | undefined>;
|
|
59
|
-
export declare function
|
|
60
|
-
export declare function getGlobalButtonWidthValuesProvider(document: Document): ValueProvider<ButtonWidthValues | null | undefined>;
|
|
61
|
-
export declare function createButtonWidthValuesProvider(buttonShellElement: HTMLElement): ValueProvider<ButtonWidthValues | null | undefined>;
|
|
62
|
-
export declare function createMediaQueryEffect<T>(element: Element, styleCssClass: string, cssRule: string, cssStyleProperty: CssStyleDeclarationKebabKey, valueProvider: ValueProvider<T>, converter: ValueConverter<T, string | null>): Disposable;
|
|
63
|
-
export declare function createComponentBorderWidthProvider(componentElement: HTMLElement): ShorthandValueProvider<number | null | undefined>;
|
|
64
|
-
export declare function createGlobalDividerWidthProvider(document: Document): ValueProvider<number | null | undefined>;
|
|
65
|
-
export declare function getGlobalDividerWidthProvider(document: Document): ValueProvider<number | null | undefined>;
|
|
66
|
-
export declare function createComponentWidthProvider(componentElement: Element): ValueProvider<number | null | undefined>;
|
|
67
|
-
export declare function createGlobalDividerHorizontalAlignmentProvider(document: Document): ValueProvider<HorizontalAlignment | null | undefined>;
|
|
68
|
-
export declare function getGlobalDividerHorizontalAlignmentProvider(document: Document): ValueProvider<HorizontalAlignment | null | undefined>;
|
|
69
|
-
export declare function createComponentOuterHorizontalAlignmentProvider(componentElement: Element): ValueProvider<HorizontalAlignment | null | undefined>;
|
|
51
|
+
export declare function refValueProvider<T>(value: Ref<T>): ValueProvider<T>;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
2
|
+
import { BorderStyle, ShorthandModel } from "./types.partial";
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
modelValue: {
|
|
5
|
+
type: PropType<ShorthandModel<BorderStyle | null> | null>;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
help: {
|
|
9
|
+
type: PropType<string>;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
label: {
|
|
13
|
+
type: PropType<string>;
|
|
14
|
+
default: "Border Style";
|
|
15
|
+
};
|
|
16
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
|
+
"update:borderStyle": (value: ShorthandModel<BorderStyle | null> | null) => void;
|
|
18
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
modelValue: {
|
|
20
|
+
type: PropType<ShorthandModel<BorderStyle | null> | null>;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
help: {
|
|
24
|
+
type: PropType<string>;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
label: {
|
|
28
|
+
type: PropType<string>;
|
|
29
|
+
default: "Border Style";
|
|
30
|
+
};
|
|
31
|
+
}>> & {
|
|
32
|
+
"onUpdate:borderStyle"?: ((value: ShorthandModel<BorderStyle | null> | null) => any) | undefined;
|
|
33
|
+
}, {
|
|
34
|
+
label: string;
|
|
35
|
+
help: string;
|
|
36
|
+
}, {}>;
|
|
37
|
+
export default _default;
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
2
|
+
import { ShorthandModel } from "./types.partial";
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
modelValue: {
|
|
5
|
+
type: PropType<ShorthandModel<string | null> | null>;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
help: {
|
|
9
|
+
type: PropType<string>;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
label: {
|
|
13
|
+
type: PropType<string>;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
shorthandLabel: {
|
|
17
|
+
type: PropType<string>;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
topLabel: {
|
|
21
|
+
type: PropType<string>;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
bottomLabel: {
|
|
25
|
+
type: PropType<string>;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
leftLabel: {
|
|
29
|
+
type: PropType<string>;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
rightLabel: {
|
|
33
|
+
type: PropType<string>;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
37
|
+
"update:modelValue": (value: ShorthandModel<string | null> | null) => void;
|
|
38
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
39
|
+
modelValue: {
|
|
40
|
+
type: PropType<ShorthandModel<string | null> | null>;
|
|
41
|
+
required: true;
|
|
42
|
+
};
|
|
43
|
+
help: {
|
|
44
|
+
type: PropType<string>;
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
47
|
+
label: {
|
|
48
|
+
type: PropType<string>;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
51
|
+
shorthandLabel: {
|
|
52
|
+
type: PropType<string>;
|
|
53
|
+
default: string;
|
|
54
|
+
};
|
|
55
|
+
topLabel: {
|
|
56
|
+
type: PropType<string>;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
bottomLabel: {
|
|
60
|
+
type: PropType<string>;
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
63
|
+
leftLabel: {
|
|
64
|
+
type: PropType<string>;
|
|
65
|
+
default: string;
|
|
66
|
+
};
|
|
67
|
+
rightLabel: {
|
|
68
|
+
type: PropType<string>;
|
|
69
|
+
default: string;
|
|
70
|
+
};
|
|
71
|
+
}>> & {
|
|
72
|
+
"onUpdate:modelValue"?: ((value: ShorthandModel<string | null> | null) => any) | undefined;
|
|
73
|
+
}, {
|
|
74
|
+
label: string;
|
|
75
|
+
help: string;
|
|
76
|
+
shorthandLabel: string;
|
|
77
|
+
topLabel: string;
|
|
78
|
+
bottomLabel: string;
|
|
79
|
+
leftLabel: string;
|
|
80
|
+
rightLabel: string;
|
|
81
|
+
}, {}>;
|
|
82
|
+
export default _default;
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
2
|
+
import { ShorthandModel } from "./types.partial";
|
|
3
|
+
import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
|
|
4
|
+
declare const _default: import("vue").DefineComponent<{
|
|
5
|
+
modelValue: {
|
|
6
|
+
type: PropType<ShorthandModel<string | null> | null>;
|
|
7
|
+
required: true;
|
|
8
|
+
};
|
|
9
|
+
help: {
|
|
10
|
+
type: PropType<string>;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
13
|
+
items: {
|
|
14
|
+
type: PropType<ListItemBag[]>;
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
label: {
|
|
18
|
+
type: PropType<string>;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
shorthandLabel: {
|
|
22
|
+
type: PropType<string>;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
topLabel: {
|
|
26
|
+
type: PropType<string>;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
29
|
+
bottomLabel: {
|
|
30
|
+
type: PropType<string>;
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
leftLabel: {
|
|
34
|
+
type: PropType<string>;
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
rightLabel: {
|
|
38
|
+
type: PropType<string>;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
42
|
+
"update:modelValue": (value: ShorthandModel<string | null> | null) => void;
|
|
43
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
44
|
+
modelValue: {
|
|
45
|
+
type: PropType<ShorthandModel<string | null> | null>;
|
|
46
|
+
required: true;
|
|
47
|
+
};
|
|
48
|
+
help: {
|
|
49
|
+
type: PropType<string>;
|
|
50
|
+
default: string;
|
|
51
|
+
};
|
|
52
|
+
items: {
|
|
53
|
+
type: PropType<ListItemBag[]>;
|
|
54
|
+
required: true;
|
|
55
|
+
};
|
|
56
|
+
label: {
|
|
57
|
+
type: PropType<string>;
|
|
58
|
+
default: string;
|
|
59
|
+
};
|
|
60
|
+
shorthandLabel: {
|
|
61
|
+
type: PropType<string>;
|
|
62
|
+
default: string;
|
|
63
|
+
};
|
|
64
|
+
topLabel: {
|
|
65
|
+
type: PropType<string>;
|
|
66
|
+
default: string;
|
|
67
|
+
};
|
|
68
|
+
bottomLabel: {
|
|
69
|
+
type: PropType<string>;
|
|
70
|
+
default: string;
|
|
71
|
+
};
|
|
72
|
+
leftLabel: {
|
|
73
|
+
type: PropType<string>;
|
|
74
|
+
default: string;
|
|
75
|
+
};
|
|
76
|
+
rightLabel: {
|
|
77
|
+
type: PropType<string>;
|
|
78
|
+
default: string;
|
|
79
|
+
};
|
|
80
|
+
}>> & {
|
|
81
|
+
"onUpdate:modelValue"?: ((value: ShorthandModel<string | null> | null) => any) | undefined;
|
|
82
|
+
}, {
|
|
83
|
+
label: string;
|
|
84
|
+
help: string;
|
|
85
|
+
shorthandLabel: string;
|
|
86
|
+
topLabel: string;
|
|
87
|
+
bottomLabel: string;
|
|
88
|
+
leftLabel: string;
|
|
89
|
+
rightLabel: string;
|
|
90
|
+
}, {}>;
|
|
91
|
+
export default _default;
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
2
|
+
import { ShorthandModel } from "./types.partial";
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
modelValue: {
|
|
5
|
+
type: PropType<ShorthandModel<number | null> | null>;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
help: {
|
|
9
|
+
type: PropType<string>;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
label: {
|
|
13
|
+
type: PropType<string>;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
shorthandLabel: {
|
|
17
|
+
type: PropType<string>;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
topLabel: {
|
|
21
|
+
type: PropType<string>;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
bottomLabel: {
|
|
25
|
+
type: PropType<string>;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
leftLabel: {
|
|
29
|
+
type: PropType<string>;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
rightLabel: {
|
|
33
|
+
type: PropType<string>;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
37
|
+
"update:modelValue": (value: ShorthandModel<number | null> | null) => void;
|
|
38
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
39
|
+
modelValue: {
|
|
40
|
+
type: PropType<ShorthandModel<number | null> | null>;
|
|
41
|
+
required: true;
|
|
42
|
+
};
|
|
43
|
+
help: {
|
|
44
|
+
type: PropType<string>;
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
47
|
+
label: {
|
|
48
|
+
type: PropType<string>;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
51
|
+
shorthandLabel: {
|
|
52
|
+
type: PropType<string>;
|
|
53
|
+
default: string;
|
|
54
|
+
};
|
|
55
|
+
topLabel: {
|
|
56
|
+
type: PropType<string>;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
bottomLabel: {
|
|
60
|
+
type: PropType<string>;
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
63
|
+
leftLabel: {
|
|
64
|
+
type: PropType<string>;
|
|
65
|
+
default: string;
|
|
66
|
+
};
|
|
67
|
+
rightLabel: {
|
|
68
|
+
type: PropType<string>;
|
|
69
|
+
default: string;
|
|
70
|
+
};
|
|
71
|
+
}>> & {
|
|
72
|
+
"onUpdate:modelValue"?: ((value: ShorthandModel<number | null> | null) => any) | undefined;
|
|
73
|
+
}, {
|
|
74
|
+
label: string;
|
|
75
|
+
help: string;
|
|
76
|
+
shorthandLabel: string;
|
|
77
|
+
topLabel: string;
|
|
78
|
+
bottomLabel: string;
|
|
79
|
+
leftLabel: string;
|
|
80
|
+
rightLabel: string;
|
|
81
|
+
}, {}>;
|
|
82
|
+
export default _default;
|
|
@@ -1,8 +1,20 @@
|
|
|
1
1
|
import { PropType } from "vue";
|
|
2
|
-
import { CloneComponentRequest, CompleteComponentRequest, ComponentTypeDragEndRequest, ComponentTypeDragStartRequest, DeleteComponentRequest, ReplaceComponentRequest } from "./types.partial";
|
|
2
|
+
import { BodyGlobalProps, ButtonGlobalProps, CloneComponentRequest, CompleteComponentRequest, ComponentTypeDragEndRequest, ComponentTypeDragStartRequest, DeleteComponentRequest, DividerGlobalProps, ReplaceComponentRequest } from "./types.partial";
|
|
3
3
|
import { UsageType } from "./types";
|
|
4
4
|
import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
|
|
5
5
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
6
|
+
bodyGlobalProps: {
|
|
7
|
+
type: PropType<BodyGlobalProps>;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
buttonGlobalProps: {
|
|
11
|
+
type: PropType<ButtonGlobalProps>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
dividerGlobalProps: {
|
|
15
|
+
type: PropType<DividerGlobalProps>;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
6
18
|
emailDocument: {
|
|
7
19
|
type: PropType<Document | null | undefined>;
|
|
8
20
|
required: true;
|
|
@@ -54,9 +66,24 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
54
66
|
componentTypeDragEnd: (value: ComponentTypeDragEndRequest) => void;
|
|
55
67
|
deleteComponent: (value: DeleteComponentRequest) => void;
|
|
56
68
|
replaceComponent: (value: ReplaceComponentRequest) => void;
|
|
69
|
+
"update:bodyGlobalProps": (value: BodyGlobalProps) => void;
|
|
70
|
+
"update:buttonGlobalProps": (value: ButtonGlobalProps) => void;
|
|
71
|
+
"update:dividerGlobalProps": (value: DividerGlobalProps) => void;
|
|
57
72
|
"update:selectedComponentElement": (value: HTMLElement | null | undefined) => void;
|
|
58
73
|
"update:communicationTemplateGuid": (value: string | null | undefined) => void;
|
|
59
74
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
75
|
+
bodyGlobalProps: {
|
|
76
|
+
type: PropType<BodyGlobalProps>;
|
|
77
|
+
required: true;
|
|
78
|
+
};
|
|
79
|
+
buttonGlobalProps: {
|
|
80
|
+
type: PropType<ButtonGlobalProps>;
|
|
81
|
+
required: true;
|
|
82
|
+
};
|
|
83
|
+
dividerGlobalProps: {
|
|
84
|
+
type: PropType<DividerGlobalProps>;
|
|
85
|
+
required: true;
|
|
86
|
+
};
|
|
60
87
|
emailDocument: {
|
|
61
88
|
type: PropType<Document | null | undefined>;
|
|
62
89
|
required: true;
|
|
@@ -103,6 +130,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
103
130
|
};
|
|
104
131
|
}>> & {
|
|
105
132
|
"onUpdate:selectedComponentElement"?: ((value: HTMLElement | null | undefined) => any) | undefined;
|
|
133
|
+
"onUpdate:bodyGlobalProps"?: ((value: BodyGlobalProps) => any) | undefined;
|
|
134
|
+
"onUpdate:buttonGlobalProps"?: ((value: ButtonGlobalProps) => any) | undefined;
|
|
135
|
+
"onUpdate:dividerGlobalProps"?: ((value: DividerGlobalProps) => any) | undefined;
|
|
106
136
|
onCloneComponent?: ((value: CloneComponentRequest) => any) | undefined;
|
|
107
137
|
onCompleteComponent?: ((value: CompleteComponentRequest) => any) | undefined;
|
|
108
138
|
onComponentTypeDragStart?: ((value: ComponentTypeDragStartRequest) => any) | undefined;
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
2
|
+
import { TextAlignment } from "./types.partial";
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
label: {
|
|
5
|
+
type: PropType<string>;
|
|
6
|
+
default: "Text Alignment";
|
|
7
|
+
};
|
|
8
|
+
modelValue: {
|
|
9
|
+
type: PropType<TextAlignment | null>;
|
|
10
|
+
required: true;
|
|
11
|
+
};
|
|
12
|
+
disableLabel: {
|
|
13
|
+
type: PropType<boolean>;
|
|
14
|
+
default: false;
|
|
15
|
+
};
|
|
16
|
+
help: {
|
|
17
|
+
type: PropType<string>;
|
|
18
|
+
default: "";
|
|
19
|
+
};
|
|
20
|
+
rules: import("@Obsidian/ValidationRules").RulesPropType;
|
|
21
|
+
formGroupClasses: {
|
|
22
|
+
type: PropType<string>;
|
|
23
|
+
default: "";
|
|
24
|
+
};
|
|
25
|
+
validationTitle: {
|
|
26
|
+
type: PropType<string>;
|
|
27
|
+
default: "";
|
|
28
|
+
};
|
|
29
|
+
isRequiredIndicatorHidden: {
|
|
30
|
+
type: PropType<boolean>;
|
|
31
|
+
default: false;
|
|
32
|
+
};
|
|
33
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
34
|
+
"update:modelValue": (value: string | null) => void;
|
|
35
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
36
|
+
label: {
|
|
37
|
+
type: PropType<string>;
|
|
38
|
+
default: "Text Alignment";
|
|
39
|
+
};
|
|
40
|
+
modelValue: {
|
|
41
|
+
type: PropType<TextAlignment | null>;
|
|
42
|
+
required: true;
|
|
43
|
+
};
|
|
44
|
+
disableLabel: {
|
|
45
|
+
type: PropType<boolean>;
|
|
46
|
+
default: false;
|
|
47
|
+
};
|
|
48
|
+
help: {
|
|
49
|
+
type: PropType<string>;
|
|
50
|
+
default: "";
|
|
51
|
+
};
|
|
52
|
+
rules: import("@Obsidian/ValidationRules").RulesPropType;
|
|
53
|
+
formGroupClasses: {
|
|
54
|
+
type: PropType<string>;
|
|
55
|
+
default: "";
|
|
56
|
+
};
|
|
57
|
+
validationTitle: {
|
|
58
|
+
type: PropType<string>;
|
|
59
|
+
default: "";
|
|
60
|
+
};
|
|
61
|
+
isRequiredIndicatorHidden: {
|
|
62
|
+
type: PropType<boolean>;
|
|
63
|
+
default: false;
|
|
64
|
+
};
|
|
65
|
+
}>> & {
|
|
66
|
+
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
67
|
+
}, {
|
|
68
|
+
label: string;
|
|
69
|
+
help: string;
|
|
70
|
+
disableLabel: boolean;
|
|
71
|
+
rules: import("@Obsidian/ValidationRules").ValidationRule | import("@Obsidian/ValidationRules").ValidationRule[];
|
|
72
|
+
formGroupClasses: string;
|
|
73
|
+
validationTitle: string;
|
|
74
|
+
isRequiredIndicatorHidden: boolean;
|
|
75
|
+
}, {}>;
|
|
76
|
+
export default _default;
|