@rockrms/obsidian-framework 1.16.3-rc.2 → 1.16.4-rc.1
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/Grid/filterHeaderRow.partial.obs.d.ts +22 -0
- package/types/Controls/Grid/grid.partial.obs.d.ts +34 -0
- package/types/Controls/Internal/treeListItem.obs.d.ts +7 -0
- package/types/Controls/Internal/universalItemSearchPicker.obs.d.ts +53 -0
- package/types/Controls/Internal/universalItemSearchPickerResult.partial.obs.d.ts +28 -0
- package/types/Controls/buttonGroup.obs.d.ts +9 -0
- package/types/Controls/cacheabilityPicker.obs.d.ts +5 -5
- package/types/Controls/campusAccountAmountPicker.obs.d.ts +1 -1
- package/types/Controls/currencyBox.obs.d.ts +11 -0
- package/types/Controls/intervalPicker.obs.d.ts +5 -5
- package/types/Controls/keyValueList.obs.d.ts +58 -0
- package/types/Controls/lavaCommandPicker.obs.d.ts +34 -25
- package/types/Controls/listItems.obs.d.ts +58 -2
- package/types/Controls/noteTextEditor.obs.d.ts +19 -5
- package/types/Controls/panel.obs.d.ts +18 -0
- package/types/Controls/rockForm.obs.d.ts +8 -3
- package/types/Controls/rockFormField.obs.d.ts +9 -0
- package/types/Controls/textBox.obs.d.ts +57 -8
- package/types/Controls/timeIntervalPicker.obs.d.ts +5 -5
- package/types/Enums/Controls/rockCacheabilityType.d.ts +15 -10
- package/types/Enums/Controls/universalItemValuePickerDisplayStyle.d.ts +19 -0
- package/types/Enums/Core/benchmarkRepititionMode.d.ts +22 -0
- package/types/FieldTypes/fieldType.d.ts +8 -8
- package/types/FieldTypes/keyValueListFieldComponents.d.ts +2 -0
- package/types/FieldTypes/universalItemFieldComponents.d.ts +27 -0
- package/types/FieldTypes/universalItemPickerField.partial.d.ts +15 -0
- package/types/FieldTypes/universalItemPickerFieldComponents.d.ts +79 -0
- package/types/FieldTypes/universalItemSearchPickerField.partial.d.ts +13 -0
- package/types/FieldTypes/universalItemSearchPickerFieldComponents.d.ts +76 -0
- package/types/FieldTypes/universalItemTreePickerField.partial.d.ts +15 -0
- package/types/FieldTypes/universalItemTreePickerFieldComponents.d.ts +119 -0
- package/types/SystemGuids/definedType.d.ts +2 -0
- package/types/SystemGuids/definedValue.d.ts +2 -0
- package/types/Templates/detailBlock.d.ts +15 -0
- package/types/Templates/rockBlock.partial.d.ts +8 -0
- package/types/Types/fieldType.d.ts +28 -7
- package/types/Utility/block.d.ts +12 -0
- package/types/Utility/numberUtils.d.ts +2 -1
- package/types/Utility/stringUtils.d.ts +9 -0
- package/types/Utility/treeItemProviders.d.ts +15 -1
- package/types/ViewModels/Blocks/Communication/SnippetDetail/snippetBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Communication/SnippetTypeDetail/snippetTypeBag.d.ts +3 -0
- package/types/ViewModels/Blocks/{Tv/AppleTvPageDetail/rockCacheabilityBag.d.ts → Engagement/SignUp/SignUpFinder/getAvailableCampusesBag.d.ts} +6 -10
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderCustomSettingsBag.d.ts +6 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderCustomSettingsOptionsBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegisterInitializationBox.d.ts +7 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegistrantBag.d.ts +6 -0
- package/types/ViewModels/Blocks/Engagement/StepProgramDetail/stepProgramBag.d.ts +86 -0
- package/types/ViewModels/Blocks/Engagement/StepProgramDetail/stepProgramDetailOptionsBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Engagement/StepProgramDetail/stepProgramWorkflowTriggerBag.d.ts +51 -0
- package/types/ViewModels/Blocks/Engagement/StepProgramDetail/stepStatusBag.d.ts +45 -0
- package/types/ViewModels/Blocks/Finance/FinancialBatchDetail/financialBatchDetailOptionsBag.d.ts +4 -0
- package/types/ViewModels/Blocks/Finance/FinancialBatchList/financialBatchListOptionsBag.d.ts +4 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerSendNowResponseBag.d.ts +3 -3
- package/types/ViewModels/Controls/fieldTypeEditorUpdateAttributeConfigurationResultBag.d.ts +12 -6
- package/types/ViewModels/Controls/rockCacheabilityBag.d.ts +2 -1
- package/types/ViewModels/Controls/universalItemSearchPickerItemBag.d.ts +63 -0
- package/types/ViewModels/{Controls/rockCacheability.d.ts → Rest/Controls/currencyBoxGetCurrencyInfoOptionsBag.d.ts} +12 -12
- package/types/ViewModels/Rest/Controls/currencyBoxGetCurrencyInfoResultsBag.d.ts +31 -0
- package/types/ViewModels/Rest/Controls/universalItemSearchPickerOptionsBag.d.ts +34 -0
- package/types/ViewModels/Rest/Controls/universalItemTreePickerOptionsBag.d.ts +49 -0
- package/types/ViewModels/Rest/Utilities/currencyInfoBag.d.ts +34 -0
- package/types/ViewModels/Utility/currencyInfoBag.d.ts +34 -0
- package/types/ViewModels/Utility/publicEditableAttributeBag.d.ts +9 -0
- package/types/ViewModels/Utility/treeItemBag.d.ts +7 -0
- package/types/ViewModels/Utility/timeInterval.d.ts +0 -27
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { PropType } from "vue";
|
|
2
|
+
import type { ValidationRule } from "@Obsidian/Types/validationRules";
|
|
2
3
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
4
|
label: {
|
|
4
5
|
type: PropType<string>;
|
|
@@ -7,8 +8,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
7
8
|
help: {
|
|
8
9
|
type: PropType<string>;
|
|
9
10
|
default: "";
|
|
10
|
-
};
|
|
11
|
-
|
|
11
|
+
}; /**
|
|
12
|
+
* Update the content from our model value.
|
|
13
|
+
*/
|
|
14
|
+
rules: import("@Obsidian/ValidationRules").RulesPropType;
|
|
12
15
|
formGroupClasses: {
|
|
13
16
|
type: PropType<string>;
|
|
14
17
|
default: "";
|
|
@@ -33,6 +36,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
33
36
|
type: PropType<boolean>;
|
|
34
37
|
default: boolean;
|
|
35
38
|
};
|
|
39
|
+
allowHtml: {
|
|
40
|
+
type: PropType<boolean>;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
36
43
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
37
44
|
"update:modelValue": (value: string) => void;
|
|
38
45
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -43,8 +50,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
43
50
|
help: {
|
|
44
51
|
type: PropType<string>;
|
|
45
52
|
default: "";
|
|
46
|
-
};
|
|
47
|
-
|
|
53
|
+
}; /**
|
|
54
|
+
* Update the content from our model value.
|
|
55
|
+
*/
|
|
56
|
+
rules: import("@Obsidian/ValidationRules").RulesPropType;
|
|
48
57
|
formGroupClasses: {
|
|
49
58
|
type: PropType<string>;
|
|
50
59
|
default: "";
|
|
@@ -69,16 +78,21 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
69
78
|
type: PropType<boolean>;
|
|
70
79
|
default: boolean;
|
|
71
80
|
};
|
|
81
|
+
allowHtml: {
|
|
82
|
+
type: PropType<boolean>;
|
|
83
|
+
default: boolean;
|
|
84
|
+
};
|
|
72
85
|
}>> & {
|
|
73
86
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
74
87
|
}, {
|
|
75
88
|
label: string;
|
|
76
89
|
help: string;
|
|
77
|
-
rules:
|
|
90
|
+
rules: ValidationRule | ValidationRule[];
|
|
78
91
|
formGroupClasses: string;
|
|
79
92
|
validationTitle: string;
|
|
80
93
|
isRequiredIndicatorHidden: boolean;
|
|
81
94
|
modelValue: string;
|
|
95
|
+
allowHtml: boolean;
|
|
82
96
|
mentionEnabled: boolean;
|
|
83
97
|
}>, {
|
|
84
98
|
prepend: (_: {
|
|
@@ -16,6 +16,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
16
16
|
type: PropType<boolean>;
|
|
17
17
|
default: boolean;
|
|
18
18
|
};
|
|
19
|
+
/**
|
|
20
|
+
* True if the panel has a Title and the Title area should be displayed
|
|
21
|
+
* false if no title is given and the area should not be displayed.
|
|
22
|
+
*/
|
|
23
|
+
hasTitle: {
|
|
24
|
+
type: BooleanConstructor;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
19
27
|
/** True if the panel is collapsable and shows the collapse button. */
|
|
20
28
|
hasCollapse: {
|
|
21
29
|
type: PropType<boolean>;
|
|
@@ -75,6 +83,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
75
83
|
type: PropType<boolean>;
|
|
76
84
|
default: boolean;
|
|
77
85
|
};
|
|
86
|
+
/**
|
|
87
|
+
* True if the panel has a Title and the Title area should be displayed
|
|
88
|
+
* false if no title is given and the area should not be displayed.
|
|
89
|
+
*/
|
|
90
|
+
hasTitle: {
|
|
91
|
+
type: BooleanConstructor;
|
|
92
|
+
default: boolean;
|
|
93
|
+
};
|
|
78
94
|
/** True if the panel is collapsable and shows the collapse button. */
|
|
79
95
|
hasCollapse: {
|
|
80
96
|
type: PropType<boolean>;
|
|
@@ -128,12 +144,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
128
144
|
modelValue: boolean;
|
|
129
145
|
isFullscreen: boolean;
|
|
130
146
|
isDrawerOpen: boolean;
|
|
147
|
+
hasTitle: boolean;
|
|
131
148
|
hasCollapse: boolean;
|
|
132
149
|
hasZoom: boolean;
|
|
133
150
|
hasFullscreen: boolean;
|
|
134
151
|
isFullscreenPageOnly: boolean;
|
|
135
152
|
titleIconCssClass: string;
|
|
136
153
|
}>, {
|
|
154
|
+
sidebar: (_: {}) => any;
|
|
137
155
|
title: (_: {}) => any;
|
|
138
156
|
headerActions: (_: {}) => any;
|
|
139
157
|
subheaderLeft: (_: {}) => any;
|
|
@@ -20,9 +20,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
20
20
|
type: PropType<string>;
|
|
21
21
|
default: string;
|
|
22
22
|
};
|
|
23
|
+
onSubmit: {
|
|
24
|
+
type: PropType<() => void | PromiseLike<void>>;
|
|
25
|
+
required: false;
|
|
26
|
+
};
|
|
23
27
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24
|
-
submit: () => void;
|
|
25
|
-
} & {
|
|
26
28
|
validationChanged: (errors: FormError[]) => void;
|
|
27
29
|
} & {
|
|
28
30
|
visibleValidationChanged: (errors: FormError[]) => void;
|
|
@@ -48,8 +50,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
48
50
|
type: PropType<string>;
|
|
49
51
|
default: string;
|
|
50
52
|
};
|
|
53
|
+
onSubmit: {
|
|
54
|
+
type: PropType<() => void | PromiseLike<void>>;
|
|
55
|
+
required: false;
|
|
56
|
+
};
|
|
51
57
|
}>> & {
|
|
52
|
-
onSubmit?: (() => any) | undefined;
|
|
53
58
|
onValidationChanged?: ((errors: FormError[]) => any) | undefined;
|
|
54
59
|
onVisibleValidationChanged?: ((errors: FormError[]) => any) | undefined;
|
|
55
60
|
"onUpdate:submit"?: ((value: boolean) => any) | undefined;
|
|
@@ -31,6 +31,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
31
31
|
type: BooleanConstructor;
|
|
32
32
|
default: boolean;
|
|
33
33
|
};
|
|
34
|
+
watchDeep: {
|
|
35
|
+
type: BooleanConstructor;
|
|
36
|
+
default: boolean;
|
|
37
|
+
};
|
|
34
38
|
}, {
|
|
35
39
|
errorClasses: import("vue").ComputedRef<string[]>;
|
|
36
40
|
fieldLabel: import("vue").ComputedRef<string>;
|
|
@@ -70,6 +74,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
70
74
|
type: BooleanConstructor;
|
|
71
75
|
default: boolean;
|
|
72
76
|
};
|
|
77
|
+
watchDeep: {
|
|
78
|
+
type: BooleanConstructor;
|
|
79
|
+
default: boolean;
|
|
80
|
+
};
|
|
73
81
|
}>>, {
|
|
74
82
|
label: string;
|
|
75
83
|
help: string;
|
|
@@ -78,5 +86,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
78
86
|
validationTitle: string;
|
|
79
87
|
isRequiredIndicatorHidden: boolean;
|
|
80
88
|
disableLabel: boolean;
|
|
89
|
+
watchDeep: boolean;
|
|
81
90
|
}>;
|
|
82
91
|
export default _default;
|
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
import { PropType } from "vue";
|
|
2
|
+
import type { ValidationRule } from "@Obsidian/Types/validationRules";
|
|
2
3
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
4
|
+
label: {
|
|
5
|
+
type: PropType<string>;
|
|
6
|
+
default: "";
|
|
7
|
+
};
|
|
8
|
+
help: {
|
|
9
|
+
type: PropType<string>;
|
|
10
|
+
default: "";
|
|
11
|
+
};
|
|
12
|
+
rules: import("@Obsidian/ValidationRules").RulesPropType;
|
|
13
|
+
formGroupClasses: {
|
|
14
|
+
type: PropType<string>;
|
|
15
|
+
default: "";
|
|
16
|
+
};
|
|
17
|
+
validationTitle: {
|
|
18
|
+
type: PropType<string>;
|
|
19
|
+
default: "";
|
|
20
|
+
};
|
|
21
|
+
isRequiredIndicatorHidden: {
|
|
22
|
+
type: PropType<boolean>;
|
|
23
|
+
default: false;
|
|
24
|
+
};
|
|
3
25
|
modelValue: {
|
|
4
26
|
type: PropType<string>;
|
|
5
27
|
required: true;
|
|
@@ -24,10 +46,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
24
46
|
type: PropType<string>;
|
|
25
47
|
default: string;
|
|
26
48
|
};
|
|
27
|
-
formGroupClasses: {
|
|
28
|
-
type: PropType<string>;
|
|
29
|
-
default: string;
|
|
30
|
-
};
|
|
31
49
|
rows: {
|
|
32
50
|
type: PropType<number>;
|
|
33
51
|
default: number;
|
|
@@ -40,9 +58,34 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
40
58
|
type: PropType<"small" | "medium" | "large">;
|
|
41
59
|
default: string;
|
|
42
60
|
};
|
|
61
|
+
allowHtml: {
|
|
62
|
+
type: PropType<boolean>;
|
|
63
|
+
default: boolean;
|
|
64
|
+
};
|
|
43
65
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
44
66
|
"update:modelValue": (value: string) => void;
|
|
45
67
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
68
|
+
label: {
|
|
69
|
+
type: PropType<string>;
|
|
70
|
+
default: "";
|
|
71
|
+
};
|
|
72
|
+
help: {
|
|
73
|
+
type: PropType<string>;
|
|
74
|
+
default: "";
|
|
75
|
+
};
|
|
76
|
+
rules: import("@Obsidian/ValidationRules").RulesPropType;
|
|
77
|
+
formGroupClasses: {
|
|
78
|
+
type: PropType<string>;
|
|
79
|
+
default: "";
|
|
80
|
+
};
|
|
81
|
+
validationTitle: {
|
|
82
|
+
type: PropType<string>;
|
|
83
|
+
default: "";
|
|
84
|
+
};
|
|
85
|
+
isRequiredIndicatorHidden: {
|
|
86
|
+
type: PropType<boolean>;
|
|
87
|
+
default: false;
|
|
88
|
+
};
|
|
46
89
|
modelValue: {
|
|
47
90
|
type: PropType<string>;
|
|
48
91
|
required: true;
|
|
@@ -67,10 +110,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
67
110
|
type: PropType<string>;
|
|
68
111
|
default: string;
|
|
69
112
|
};
|
|
70
|
-
formGroupClasses: {
|
|
71
|
-
type: PropType<string>;
|
|
72
|
-
default: string;
|
|
73
|
-
};
|
|
74
113
|
rows: {
|
|
75
114
|
type: PropType<number>;
|
|
76
115
|
default: number;
|
|
@@ -83,18 +122,28 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
83
122
|
type: PropType<"small" | "medium" | "large">;
|
|
84
123
|
default: string;
|
|
85
124
|
};
|
|
125
|
+
allowHtml: {
|
|
126
|
+
type: PropType<boolean>;
|
|
127
|
+
default: boolean;
|
|
128
|
+
};
|
|
86
129
|
}>> & {
|
|
87
130
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
88
131
|
}, {
|
|
89
132
|
type: string;
|
|
133
|
+
label: string;
|
|
90
134
|
size: "small" | "medium" | "large";
|
|
135
|
+
help: string;
|
|
91
136
|
placeholder: string;
|
|
137
|
+
rules: ValidationRule | ValidationRule[];
|
|
92
138
|
formGroupClasses: string;
|
|
139
|
+
validationTitle: string;
|
|
140
|
+
isRequiredIndicatorHidden: boolean;
|
|
93
141
|
maxLength: number;
|
|
94
142
|
showCountDown: boolean;
|
|
95
143
|
inputClasses: string;
|
|
96
144
|
rows: number;
|
|
97
145
|
textMode: string;
|
|
146
|
+
allowHtml: boolean;
|
|
98
147
|
}>, {
|
|
99
148
|
prepend: (_: {
|
|
100
149
|
isInputGroupSupported: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PropType } from "vue";
|
|
2
|
-
import {
|
|
2
|
+
import { TimeIntervalBag } from "@Obsidian/ViewModels/Utility/timeIntervalBag";
|
|
3
3
|
declare const _default: import("vue").DefineComponent<{
|
|
4
4
|
label: {
|
|
5
5
|
type: PropType<string>;
|
|
@@ -23,11 +23,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
23
23
|
default: false;
|
|
24
24
|
};
|
|
25
25
|
modelValue: {
|
|
26
|
-
type: PropType<
|
|
26
|
+
type: PropType<TimeIntervalBag>;
|
|
27
27
|
required: true;
|
|
28
28
|
};
|
|
29
29
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
30
|
-
"update:modelValue": (_value:
|
|
30
|
+
"update:modelValue": (_value: TimeIntervalBag) => void;
|
|
31
31
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32
32
|
label: {
|
|
33
33
|
type: PropType<string>;
|
|
@@ -51,11 +51,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
51
|
default: false;
|
|
52
52
|
};
|
|
53
53
|
modelValue: {
|
|
54
|
-
type: PropType<
|
|
54
|
+
type: PropType<TimeIntervalBag>;
|
|
55
55
|
required: true;
|
|
56
56
|
};
|
|
57
57
|
}>> & {
|
|
58
|
-
"onUpdate:modelValue"?: ((_value:
|
|
58
|
+
"onUpdate:modelValue"?: ((_value: TimeIntervalBag) => any) | undefined;
|
|
59
59
|
}, {
|
|
60
60
|
label: string;
|
|
61
61
|
help: string;
|
|
@@ -1,10 +1,15 @@
|
|
|
1
|
-
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
NoCache
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
/** Type representing the cache strategy for this item. */
|
|
2
|
+
export declare const RockCacheabilityType: {
|
|
3
|
+
/** Represents the public Cache-Control header. */
|
|
4
|
+
readonly Public: 0;
|
|
5
|
+
/** Represents the private Cache-Control header. */
|
|
6
|
+
readonly Private: 1;
|
|
7
|
+
/** Represents the no-cache Cache-Control header. */
|
|
8
|
+
readonly NoCache: 2;
|
|
9
|
+
/** Represents the no-store Cache-Control header. */
|
|
10
|
+
readonly NoStore: 3;
|
|
11
|
+
};
|
|
12
|
+
/** Type representing the cache strategy for this item. */
|
|
13
|
+
export declare const RockCacheabilityTypeDescription: Record<number, string>;
|
|
14
|
+
/** Type representing the cache strategy for this item. */
|
|
15
|
+
export declare type RockCacheabilityType = typeof RockCacheabilityType[keyof typeof RockCacheabilityType];
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/** The way to display the items for the item value pickers. */
|
|
2
|
+
export declare const UniversalItemValuePickerDisplayStyle: {
|
|
3
|
+
/** Let the system decide the best way to display the list of options. */
|
|
4
|
+
readonly Auto: 0;
|
|
5
|
+
/**
|
|
6
|
+
* Display the list of options as a long list of items. For example,
|
|
7
|
+
* as a list of checkboxes or radio buttons.
|
|
8
|
+
*/
|
|
9
|
+
readonly List: 1;
|
|
10
|
+
/**
|
|
11
|
+
* Display the list of options in a condensed format. For example,
|
|
12
|
+
* as a drop down list.
|
|
13
|
+
*/
|
|
14
|
+
readonly Condensed: 2;
|
|
15
|
+
};
|
|
16
|
+
/** The way to display the items for the item value pickers. */
|
|
17
|
+
export declare const UniversalItemValuePickerDisplayStyleDescription: Record<number, string>;
|
|
18
|
+
/** The way to display the items for the item value pickers. */
|
|
19
|
+
export declare type UniversalItemValuePickerDisplayStyle = typeof UniversalItemValuePickerDisplayStyle[keyof typeof UniversalItemValuePickerDisplayStyle];
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Provides a general mode to the number of repititions to run during
|
|
3
|
+
* a benchmark.
|
|
4
|
+
*/
|
|
5
|
+
export declare const BenchmarkRepititionMode: {
|
|
6
|
+
/** A normal run. This takes 30-60 seconds. */
|
|
7
|
+
readonly Normal: 0;
|
|
8
|
+
/** A fast run, less accurate. This takes 15-30 seconds. */
|
|
9
|
+
readonly Fast: 1;
|
|
10
|
+
/** An extended run, slightly more accurate. This takes 60-90 seconds. */
|
|
11
|
+
readonly Extended: 2;
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* Provides a general mode to the number of repititions to run during
|
|
15
|
+
* a benchmark.
|
|
16
|
+
*/
|
|
17
|
+
export declare const BenchmarkRepititionModeDescription: Record<number, string>;
|
|
18
|
+
/**
|
|
19
|
+
* Provides a general mode to the number of repititions to run during
|
|
20
|
+
* a benchmark.
|
|
21
|
+
*/
|
|
22
|
+
export declare type BenchmarkRepititionMode = typeof BenchmarkRepititionMode[keyof typeof BenchmarkRepititionMode];
|
|
@@ -11,15 +11,15 @@ export declare abstract class FieldTypeBase implements IFieldType {
|
|
|
11
11
|
getHtmlValue(value: string, configurationValues: Record<string, string>): string;
|
|
12
12
|
getCondensedTextValue(value: string, configurationValues: Record<string, string>): string;
|
|
13
13
|
getCondensedHtmlValue(value: string, configurationValues: Record<string, string>): string;
|
|
14
|
-
getFormattedComponent(): Component;
|
|
15
|
-
getCondensedFormattedComponent(): Component;
|
|
16
|
-
getEditComponent(): Component;
|
|
14
|
+
getFormattedComponent(_configurationValues: Record<string, string>): Component;
|
|
15
|
+
getCondensedFormattedComponent(_configurationValues: Record<string, string>): Component;
|
|
16
|
+
getEditComponent(_configurationValues: Record<string, string>): Component;
|
|
17
17
|
getConfigurationComponent(): Component;
|
|
18
|
-
hasDefaultComponent(): boolean;
|
|
19
|
-
isFilterable(): boolean;
|
|
20
|
-
getSupportedComparisonTypes(): ComparisonType;
|
|
21
|
-
getFilterComponent(): Component | null;
|
|
18
|
+
hasDefaultComponent(_configurationValues: Record<string, string>): boolean;
|
|
19
|
+
isFilterable(_configurationValues: Record<string, string>): boolean;
|
|
20
|
+
getSupportedComparisonTypes(_configurationValues: Record<string, string>): ComparisonType;
|
|
21
|
+
getFilterComponent(configurationValues: Record<string, string>): Component | null;
|
|
22
22
|
getFilterValueDescription(value: ComparisonValue, configurationValues: Record<string, string>): string;
|
|
23
23
|
getFilterValueText(value: ComparisonValue, configurationValues: Record<string, string>): string;
|
|
24
|
-
doesValueMatchFilter(value: string, filterValue: ComparisonValue,
|
|
24
|
+
doesValueMatchFilter(value: string, filterValue: ComparisonValue, configurationValues: Record<string, string>): boolean;
|
|
25
25
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
|
|
2
|
+
import type { ValidationRule } from "@Obsidian/Types/validationRules";
|
|
2
3
|
export declare const EditComponent: import("vue").DefineComponent<{
|
|
3
4
|
modelValue: {
|
|
4
5
|
type: import("vue").PropType<string>;
|
|
@@ -12,6 +13,7 @@ export declare const EditComponent: import("vue").DefineComponent<{
|
|
|
12
13
|
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
13
14
|
};
|
|
14
15
|
}, {
|
|
16
|
+
augmentedRules: import("vue").ComputedRef<ValidationRule[]>;
|
|
15
17
|
internalValues: import("vue").Ref<{
|
|
16
18
|
key: string;
|
|
17
19
|
value: string;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { PublicAttributeBag } from "@Obsidian/ViewModels/Utility/publicAttributeBag";
|
|
2
|
+
export declare const ConfigurationComponent: import("vue").DefineComponent<{
|
|
3
|
+
modelValue: {
|
|
4
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
configurationProperties: {
|
|
8
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
9
|
+
required: true;
|
|
10
|
+
};
|
|
11
|
+
}, {
|
|
12
|
+
attributes: import("vue").ComputedRef<Record<string, PublicAttributeBag>>;
|
|
13
|
+
internalValue: import("vue").Ref<Record<string, string>>;
|
|
14
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "updateConfiguration" | "updateConfigurationValue")[], "update:modelValue" | "updateConfiguration" | "updateConfigurationValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
+
modelValue: {
|
|
16
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
17
|
+
required: true;
|
|
18
|
+
};
|
|
19
|
+
configurationProperties: {
|
|
20
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
}>> & {
|
|
24
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
25
|
+
onUpdateConfiguration?: ((...args: any[]) => any) | undefined;
|
|
26
|
+
onUpdateConfigurationValue?: ((...args: any[]) => any) | undefined;
|
|
27
|
+
}, {}>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Component } from "vue";
|
|
2
|
+
import { ComparisonType } from "@Obsidian/Enums/Reporting/comparisonType";
|
|
3
|
+
import { FieldTypeBase } from "./fieldType";
|
|
4
|
+
import { ComparisonValue } from "@Obsidian/Types/Reporting/comparisonValue";
|
|
5
|
+
/**
|
|
6
|
+
* The field type handler for the Universal Item Picker field types.
|
|
7
|
+
*/
|
|
8
|
+
export declare class UniversalItemPickerFieldType extends FieldTypeBase {
|
|
9
|
+
getTextValue(value: string): string;
|
|
10
|
+
getEditComponent(): Component;
|
|
11
|
+
getFilterComponent(configurationValues: Record<string, string>): Component | null;
|
|
12
|
+
getConfigurationComponent(): Component;
|
|
13
|
+
getSupportedComparisonTypes(configurationValues: Record<string, string>): ComparisonType;
|
|
14
|
+
getFilterValueText(value: ComparisonValue): string;
|
|
15
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
|
|
2
|
+
import { PickerDisplayStyle } from "@Obsidian/Enums/Controls/pickerDisplayStyle";
|
|
3
|
+
import { DataEntryMode } from "@Obsidian/Utility/fieldTypes";
|
|
4
|
+
export declare const EditComponent: import("vue").DefineComponent<{
|
|
5
|
+
modelValue: {
|
|
6
|
+
type: import("vue").PropType<string>;
|
|
7
|
+
required: true;
|
|
8
|
+
};
|
|
9
|
+
configurationValues: {
|
|
10
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
11
|
+
default: () => import("./utils").ConfigurationValues;
|
|
12
|
+
};
|
|
13
|
+
dataEntryMode: {
|
|
14
|
+
type: import("vue").PropType<DataEntryMode>;
|
|
15
|
+
};
|
|
16
|
+
}, {
|
|
17
|
+
columnCount: import("vue").ComputedRef<number>;
|
|
18
|
+
displayStyle: import("vue").ComputedRef<PickerDisplayStyle>;
|
|
19
|
+
enhanceForLongLists: import("vue").ComputedRef<boolean>;
|
|
20
|
+
internalValue: import("vue").Ref<{
|
|
21
|
+
category?: string | null | undefined;
|
|
22
|
+
disabled?: boolean | null | undefined;
|
|
23
|
+
text?: string | null | undefined;
|
|
24
|
+
value?: string | null | undefined;
|
|
25
|
+
} | {
|
|
26
|
+
category?: string | null | undefined;
|
|
27
|
+
disabled?: boolean | null | undefined;
|
|
28
|
+
text?: string | null | undefined;
|
|
29
|
+
value?: string | null | undefined;
|
|
30
|
+
}[] | null>;
|
|
31
|
+
isMultiple: import("vue").ComputedRef<boolean>;
|
|
32
|
+
isRequired: boolean;
|
|
33
|
+
items: import("vue").ComputedRef<ListItemBag[]>;
|
|
34
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
35
|
+
modelValue: {
|
|
36
|
+
type: import("vue").PropType<string>;
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
39
|
+
configurationValues: {
|
|
40
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
41
|
+
default: () => import("./utils").ConfigurationValues;
|
|
42
|
+
};
|
|
43
|
+
dataEntryMode: {
|
|
44
|
+
type: import("vue").PropType<DataEntryMode>;
|
|
45
|
+
};
|
|
46
|
+
}>>, {
|
|
47
|
+
configurationValues: import("./utils").ConfigurationValues;
|
|
48
|
+
}>;
|
|
49
|
+
export declare const FilterComponent: import("vue").DefineComponent<{
|
|
50
|
+
modelValue: {
|
|
51
|
+
type: import("vue").PropType<string>;
|
|
52
|
+
required: true;
|
|
53
|
+
};
|
|
54
|
+
configurationValues: {
|
|
55
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
56
|
+
default: () => import("./utils").ConfigurationValues;
|
|
57
|
+
};
|
|
58
|
+
dataEntryMode: {
|
|
59
|
+
type: import("vue").PropType<DataEntryMode>;
|
|
60
|
+
};
|
|
61
|
+
}, {
|
|
62
|
+
configurationValues: import("vue").ComputedRef<Record<string, string>>;
|
|
63
|
+
dataEntryMode: import("vue").ComputedRef<DataEntryMode>;
|
|
64
|
+
internalValue: import("vue").Ref<string>;
|
|
65
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
66
|
+
modelValue: {
|
|
67
|
+
type: import("vue").PropType<string>;
|
|
68
|
+
required: true;
|
|
69
|
+
};
|
|
70
|
+
configurationValues: {
|
|
71
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
72
|
+
default: () => import("./utils").ConfigurationValues;
|
|
73
|
+
};
|
|
74
|
+
dataEntryMode: {
|
|
75
|
+
type: import("vue").PropType<DataEntryMode>;
|
|
76
|
+
};
|
|
77
|
+
}>>, {
|
|
78
|
+
configurationValues: import("./utils").ConfigurationValues;
|
|
79
|
+
}>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Component } from "vue";
|
|
2
|
+
import { ComparisonType } from "@Obsidian/Enums/Reporting/comparisonType";
|
|
3
|
+
import { FieldTypeBase } from "./fieldType";
|
|
4
|
+
/**
|
|
5
|
+
* The field type handler for the Universal Tree Item Picker field types.
|
|
6
|
+
*/
|
|
7
|
+
export declare class UniversalItemSearchPickerFieldType extends FieldTypeBase {
|
|
8
|
+
getTextValue(value: string): string;
|
|
9
|
+
getEditComponent(): Component;
|
|
10
|
+
getFilterComponent(): Component | null;
|
|
11
|
+
getConfigurationComponent(): Component;
|
|
12
|
+
getSupportedComparisonTypes(): ComparisonType;
|
|
13
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
export declare const EditComponent: import("vue").DefineComponent<{
|
|
2
|
+
modelValue: {
|
|
3
|
+
type: import("vue").PropType<string>;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
configurationValues: {
|
|
7
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
8
|
+
default: () => import("./utils").ConfigurationValues;
|
|
9
|
+
};
|
|
10
|
+
dataEntryMode: {
|
|
11
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
12
|
+
};
|
|
13
|
+
}, {
|
|
14
|
+
areDetailsAlwaysVisible: import("vue").ComputedRef<boolean>;
|
|
15
|
+
isIncludeInactiveVisible: import("vue").ComputedRef<boolean>;
|
|
16
|
+
internalValue: import("vue").Ref<{
|
|
17
|
+
category?: string | null | undefined;
|
|
18
|
+
disabled?: boolean | null | undefined;
|
|
19
|
+
text?: string | null | undefined;
|
|
20
|
+
value?: string | null | undefined;
|
|
21
|
+
} | null>;
|
|
22
|
+
isRequired: boolean;
|
|
23
|
+
searchUrl: import("vue").ComputedRef<string>;
|
|
24
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
25
|
+
modelValue: {
|
|
26
|
+
type: import("vue").PropType<string>;
|
|
27
|
+
required: true;
|
|
28
|
+
};
|
|
29
|
+
configurationValues: {
|
|
30
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
31
|
+
default: () => import("./utils").ConfigurationValues;
|
|
32
|
+
};
|
|
33
|
+
dataEntryMode: {
|
|
34
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
35
|
+
};
|
|
36
|
+
}>>, {
|
|
37
|
+
configurationValues: import("./utils").ConfigurationValues;
|
|
38
|
+
}>;
|
|
39
|
+
export declare const FilterComponent: import("vue").DefineComponent<{
|
|
40
|
+
modelValue: {
|
|
41
|
+
type: import("vue").PropType<string>;
|
|
42
|
+
required: true;
|
|
43
|
+
};
|
|
44
|
+
configurationValues: {
|
|
45
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
46
|
+
default: () => import("./utils").ConfigurationValues;
|
|
47
|
+
};
|
|
48
|
+
dataEntryMode: {
|
|
49
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
50
|
+
};
|
|
51
|
+
}, {
|
|
52
|
+
areDetailsAlwaysVisible: import("vue").ComputedRef<boolean>;
|
|
53
|
+
isIncludeInactiveVisible: import("vue").ComputedRef<boolean>;
|
|
54
|
+
internalValue: import("vue").Ref<{
|
|
55
|
+
category?: string | null | undefined;
|
|
56
|
+
disabled?: boolean | null | undefined;
|
|
57
|
+
text?: string | null | undefined;
|
|
58
|
+
value?: string | null | undefined;
|
|
59
|
+
} | null>;
|
|
60
|
+
isRequired: boolean;
|
|
61
|
+
searchUrl: import("vue").ComputedRef<string>;
|
|
62
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
63
|
+
modelValue: {
|
|
64
|
+
type: import("vue").PropType<string>;
|
|
65
|
+
required: true;
|
|
66
|
+
};
|
|
67
|
+
configurationValues: {
|
|
68
|
+
type: import("vue").PropType<import("./utils").ConfigurationValues>;
|
|
69
|
+
default: () => import("./utils").ConfigurationValues;
|
|
70
|
+
};
|
|
71
|
+
dataEntryMode: {
|
|
72
|
+
type: import("vue").PropType<import("@Obsidian/Utility/fieldTypes").DataEntryMode>;
|
|
73
|
+
};
|
|
74
|
+
}>>, {
|
|
75
|
+
configurationValues: import("./utils").ConfigurationValues;
|
|
76
|
+
}>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Component } from "vue";
|
|
2
|
+
import { ComparisonType } from "@Obsidian/Enums/Reporting/comparisonType";
|
|
3
|
+
import { FieldTypeBase } from "./fieldType";
|
|
4
|
+
import { ComparisonValue } from "@Obsidian/Types/Reporting/comparisonValue";
|
|
5
|
+
/**
|
|
6
|
+
* The field type handler for the Universal Item Tree Picker field types.
|
|
7
|
+
*/
|
|
8
|
+
export declare class UniversalItemTreePickerFieldType extends FieldTypeBase {
|
|
9
|
+
getTextValue(value: string): string;
|
|
10
|
+
getEditComponent(): Component;
|
|
11
|
+
getFilterComponent(configurationValues: Record<string, string>): Component | null;
|
|
12
|
+
getConfigurationComponent(): Component;
|
|
13
|
+
getSupportedComparisonTypes(configurationValues: Record<string, string>): ComparisonType;
|
|
14
|
+
getFilterValueText(value: ComparisonValue): string;
|
|
15
|
+
}
|