@rockrms/obsidian-framework 17.1.5 → 17.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.
Files changed (23) hide show
  1. package/package.json +1 -1
  2. package/types/Controls/Grid/Columns/personColumn.partial.d.ts +17 -0
  3. package/types/Controls/Internal/EmailEditor/componentPropertyPanel.partial.obs.d.ts +12 -1
  4. package/types/Controls/Internal/EmailEditor/emailEditor.partial.obs.d.ts +10 -1
  5. package/types/Controls/Internal/EmailEditor/properties/innerHtmlProperty.partial.obs.d.ts +10 -0
  6. package/types/Controls/Internal/EmailEditor/propertyPanels/codeComponentPropertyPanel.partial.obs.d.ts +12 -1
  7. package/types/Controls/Internal/EmailEditor/propertyPanels/textComponentPropertyPanel.partial.obs.d.ts +12 -1
  8. package/types/Controls/Internal/EmailEditor/sidePanel.partial.obs.d.ts +10 -0
  9. package/types/Controls/Internal/EmailEditor/types.d.ts +1 -0
  10. package/types/Controls/NoteEditor/mergeFieldPlugin.partial.obs.d.ts +18 -0
  11. package/types/Controls/htmlEditor.obs.d.ts +18 -0
  12. package/types/Controls/inlineSwitch.obs.d.ts +9 -0
  13. package/types/Controls/modal.obs.d.ts +18 -0
  14. package/types/Controls/personAvatar.obs.d.ts +90 -0
  15. package/types/Controls/phoneNumberBoxWithSms.obs.d.ts +11 -0
  16. package/types/Controls/smsMessageEditor.obs.d.ts +18 -0
  17. package/types/Controls/switch.obs.d.ts +9 -0
  18. package/types/Controls/tabbedBar.obs.d.ts +10 -0
  19. package/types/ViewModels/Blocks/Cms/MediaAccountDetail/mediaAccountBag.d.ts +3 -0
  20. package/types/ViewModels/Blocks/Cms/MediaElementList/mediaElementListOptionsBag.d.ts +28 -0
  21. package/types/ViewModels/Blocks/Event/RegistrationEntry/registrantBag.d.ts +3 -0
  22. package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/performScheduleRowActionRequestBag.d.ts +4 -0
  23. package/types/ViewModels/Rest/Controls/assetManagerGetFilesResultsBag.d.ts +5 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rockrms/obsidian-framework",
3
3
  "description": "Type definitions to allow building a plugin against the Obsidian framework.",
4
- "version": "17.1.5",
4
+ "version": "17.2.4",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "scripts": {},
7
7
  "exports": "./types/*.d.ts",
@@ -104,6 +104,14 @@ declare const _default: import("vue").DefineComponent<{
104
104
  type: PropType<boolean>;
105
105
  default: boolean;
106
106
  };
107
+ /**
108
+ * If true, when hovering over the avatar will show a popover with some
109
+ * additional information about the person.
110
+ */
111
+ enableHoverInfo: {
112
+ type: BooleanConstructor;
113
+ default: boolean;
114
+ };
107
115
  columnType: {
108
116
  type: PropType<string>;
109
117
  default: string;
@@ -266,6 +274,14 @@ declare const _default: import("vue").DefineComponent<{
266
274
  type: PropType<boolean>;
267
275
  default: boolean;
268
276
  };
277
+ /**
278
+ * If true, when hovering over the avatar will show a popover with some
279
+ * additional information about the person.
280
+ */
281
+ enableHoverInfo: {
282
+ type: BooleanConstructor;
283
+ default: boolean;
284
+ };
269
285
  columnType: {
270
286
  type: PropType<string>;
271
287
  default: string;
@@ -349,6 +365,7 @@ declare const _default: import("vue").DefineComponent<{
349
365
  visiblePriority: "xs" | "sm" | "lg" | "md" | "xl";
350
366
  wrapped: boolean;
351
367
  disableSort: boolean;
368
+ enableHoverInfo: boolean;
352
369
  showAsLink: boolean;
353
370
  hideAvatar: boolean;
354
371
  showLastNameFirst: boolean;
@@ -1,4 +1,5 @@
1
1
  import { PropType } from "vue";
2
+ import { UsageType } from "./types";
2
3
  import { EmailEditorEmailSectionBag } from "@Obsidian/ViewModels/Rest/Controls/emailEditorEmailSectionBag";
3
4
  import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
4
5
  declare const _default: import("vue").DefineComponent<{
@@ -30,6 +31,10 @@ declare const _default: import("vue").DefineComponent<{
30
31
  shortLinkTokenMinLength: {
31
32
  type: PropType<number | null | undefined>;
32
33
  };
34
+ usageType: {
35
+ type: PropType<UsageType>;
36
+ default: "email";
37
+ };
33
38
  videoProviderNames: {
34
39
  type: PropType<string[] | null | undefined>;
35
40
  required: true;
@@ -69,6 +74,10 @@ declare const _default: import("vue").DefineComponent<{
69
74
  shortLinkTokenMinLength: {
70
75
  type: PropType<number | null | undefined>;
71
76
  };
77
+ usageType: {
78
+ type: PropType<UsageType>;
79
+ default: "email";
80
+ };
72
81
  videoProviderNames: {
73
82
  type: PropType<string[] | null | undefined>;
74
83
  required: true;
@@ -79,5 +88,7 @@ declare const _default: import("vue").DefineComponent<{
79
88
  onClone?: (() => any) | undefined;
80
89
  onMigrate?: ((value: Element) => any) | undefined;
81
90
  onEmailSectionSaved?: ((value: EmailEditorEmailSectionBag) => any) | undefined;
82
- }, {}, {}>;
91
+ }, {
92
+ usageType: UsageType;
93
+ }, {}>;
83
94
  export default _default;
@@ -1,5 +1,5 @@
1
1
  import { PropType } from "vue";
2
- import { GetHtmlRequest } from "./types";
2
+ import { GetHtmlRequest, UsageType } from "./types";
3
3
  import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
4
4
  import { EmailEditorApi } from "./api";
5
5
  /**
@@ -62,6 +62,10 @@ declare const _default: import("vue").DefineComponent<{
62
62
  shortLinkTokenMinLength: {
63
63
  type: PropType<number | null | undefined>;
64
64
  };
65
+ usageType: {
66
+ type: PropType<UsageType>;
67
+ default: "email";
68
+ };
65
69
  /** Video component - the video provider names used to add context to the Source Video URL help text. */
66
70
  videoProviderNames: {
67
71
  type: PropType<string[] | null | undefined>;
@@ -125,6 +129,10 @@ declare const _default: import("vue").DefineComponent<{
125
129
  shortLinkTokenMinLength: {
126
130
  type: PropType<number | null | undefined>;
127
131
  };
132
+ usageType: {
133
+ type: PropType<UsageType>;
134
+ default: "email";
135
+ };
128
136
  /** Video component - the video provider names used to add context to the Source Video URL help text. */
129
137
  videoProviderNames: {
130
138
  type: PropType<string[] | null | undefined>;
@@ -135,6 +143,7 @@ declare const _default: import("vue").DefineComponent<{
135
143
  }, {
136
144
  disabled: boolean;
137
145
  ltr: boolean;
146
+ usageType: UsageType;
138
147
  imageComponentBinaryFileTypeGuid: string;
139
148
  }, {}>;
140
149
  export default _default;
@@ -1,4 +1,5 @@
1
1
  import { PropType } from "vue";
2
+ import { UsageType } from "../types";
2
3
  import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
3
4
  declare const _default: import("vue").DefineComponent<{
4
5
  element: {
@@ -25,6 +26,10 @@ declare const _default: import("vue").DefineComponent<{
25
26
  shortLinkTokenMinLength: {
26
27
  type: PropType<number | null | undefined>;
27
28
  };
29
+ usageType: {
30
+ type: PropType<UsageType>;
31
+ default: "email";
32
+ };
28
33
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
29
34
  change: (value: string) => void;
30
35
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -52,9 +57,14 @@ declare const _default: import("vue").DefineComponent<{
52
57
  shortLinkTokenMinLength: {
53
58
  type: PropType<number | null | undefined>;
54
59
  };
60
+ usageType: {
61
+ type: PropType<UsageType>;
62
+ default: "email";
63
+ };
55
64
  }>> & {
56
65
  onChange?: ((value: string) => any) | undefined;
57
66
  }, {
58
67
  mode: "code" | "html";
68
+ usageType: UsageType;
59
69
  }, {}>;
60
70
  export default _default;
@@ -1,4 +1,5 @@
1
1
  import { PropType } from "vue";
2
+ import { UsageType } from "../types";
2
3
  declare const _default: import("vue").DefineComponent<{
3
4
  componentElement: {
4
5
  type: PropType<HTMLElement>;
@@ -8,6 +9,10 @@ declare const _default: import("vue").DefineComponent<{
8
9
  type: PropType<string[] | null | undefined>;
9
10
  required: false;
10
11
  };
12
+ usageType: {
13
+ type: PropType<UsageType>;
14
+ default: "email";
15
+ };
11
16
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
17
  clone: () => void;
13
18
  complete: () => void;
@@ -22,10 +27,16 @@ declare const _default: import("vue").DefineComponent<{
22
27
  type: PropType<string[] | null | undefined>;
23
28
  required: false;
24
29
  };
30
+ usageType: {
31
+ type: PropType<UsageType>;
32
+ default: "email";
33
+ };
25
34
  }>> & {
26
35
  onComplete?: (() => any) | undefined;
27
36
  onDelete?: (() => any) | undefined;
28
37
  onClone?: (() => any) | undefined;
29
38
  onMigrate?: ((value: Element) => any) | undefined;
30
- }, {}, {}>;
39
+ }, {
40
+ usageType: UsageType;
41
+ }, {}>;
31
42
  export default _default;
@@ -1,4 +1,5 @@
1
1
  import { PropType } from "vue";
2
+ import { UsageType } from "../types";
2
3
  import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
3
4
  declare const _default: import("vue").DefineComponent<{
4
5
  componentElement: {
@@ -21,6 +22,10 @@ declare const _default: import("vue").DefineComponent<{
21
22
  shortLinkTokenMinLength: {
22
23
  type: PropType<number | null | undefined>;
23
24
  };
25
+ usageType: {
26
+ type: PropType<UsageType>;
27
+ default: "email";
28
+ };
24
29
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
25
30
  clone: () => void;
26
31
  complete: () => void;
@@ -47,10 +52,16 @@ declare const _default: import("vue").DefineComponent<{
47
52
  shortLinkTokenMinLength: {
48
53
  type: PropType<number | null | undefined>;
49
54
  };
55
+ usageType: {
56
+ type: PropType<UsageType>;
57
+ default: "email";
58
+ };
50
59
  }>> & {
51
60
  onComplete?: (() => any) | undefined;
52
61
  onDelete?: (() => any) | undefined;
53
62
  onClone?: (() => any) | undefined;
54
63
  onMigrate?: ((value: Element) => any) | undefined;
55
- }, {}, {}>;
64
+ }, {
65
+ usageType: UsageType;
66
+ }, {}>;
56
67
  export default _default;
@@ -1,5 +1,6 @@
1
1
  import { PropType } from "vue";
2
2
  import { CloneComponentRequest, CompleteComponentRequest, ComponentTypeDragEndRequest, ComponentTypeDragStartRequest, DeleteComponentRequest, ReplaceComponentRequest } from "./types.partial";
3
+ import { UsageType } from "./types";
3
4
  import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
4
5
  declare const _default: import("vue").DefineComponent<{
5
6
  communicationTemplateGuid: {
@@ -46,6 +47,10 @@ declare const _default: import("vue").DefineComponent<{
46
47
  type: PropType<number[] | null | undefined>;
47
48
  required: true;
48
49
  };
50
+ usageType: {
51
+ type: PropType<UsageType>;
52
+ default: "email";
53
+ };
49
54
  videoProviderNames: {
50
55
  type: PropType<string[] | null | undefined>;
51
56
  required: true;
@@ -104,6 +109,10 @@ declare const _default: import("vue").DefineComponent<{
104
109
  type: PropType<number[] | null | undefined>;
105
110
  required: true;
106
111
  };
112
+ usageType: {
113
+ type: PropType<UsageType>;
114
+ default: "email";
115
+ };
107
116
  videoProviderNames: {
108
117
  type: PropType<string[] | null | undefined>;
109
118
  required: true;
@@ -119,5 +128,6 @@ declare const _default: import("vue").DefineComponent<{
119
128
  onReplaceComponent?: ((value: ReplaceComponentRequest) => any) | undefined;
120
129
  }, {
121
130
  ltr: boolean;
131
+ usageType: UsageType;
122
132
  }, {}>;
123
133
  export default _default;
@@ -6,3 +6,4 @@ export type GetHtmlResponse = {
6
6
  html: string;
7
7
  bodyWidth?: number | null | undefined;
8
8
  };
9
+ export type UsageType = "template" | "email";
@@ -51,6 +51,15 @@ declare const _default: import("vue").DefineComponent<{
51
51
  type: PropType<string[] | undefined>;
52
52
  required: false;
53
53
  };
54
+ /**
55
+ * A list of common merge field to show below the picker for easy access. Should be an array of strings
56
+ * and the strings should be in the following format: "FieldName^Label|Icon", where the FieldName is the
57
+ * name of the merge field, Label is the text to display on the button, and Icon is the CSS class for icon.
58
+ */
59
+ commonMergeFields: {
60
+ type: PropType<string[] | undefined>;
61
+ required: false;
62
+ };
54
63
  isIconHidden: {
55
64
  type: PropType<boolean>;
56
65
  default: boolean;
@@ -70,6 +79,15 @@ declare const _default: import("vue").DefineComponent<{
70
79
  type: PropType<string[] | undefined>;
71
80
  required: false;
72
81
  };
82
+ /**
83
+ * A list of common merge field to show below the picker for easy access. Should be an array of strings
84
+ * and the strings should be in the following format: "FieldName^Label|Icon", where the FieldName is the
85
+ * name of the merge field, Label is the text to display on the button, and Icon is the CSS class for icon.
86
+ */
87
+ commonMergeFields: {
88
+ type: PropType<string[] | undefined>;
89
+ required: false;
90
+ };
73
91
  isIconHidden: {
74
92
  type: PropType<boolean>;
75
93
  default: boolean;
@@ -40,6 +40,15 @@ declare const _default: import("vue").DefineComponent<{
40
40
  type: PropType<string[] | undefined>;
41
41
  required: false;
42
42
  };
43
+ /**
44
+ * A list of common merge field to show below the picker for easy access. Should be an array of strings
45
+ * and the strings should be in the following format: "FieldName^Label|Icon" or just "FieldName^Label", where the FieldName is the
46
+ * name of the merge field, Label is the text to display on the button, and Icon is the CSS class for icon.
47
+ */
48
+ commonMergeFields: {
49
+ type: PropType<string[] | undefined>;
50
+ required: false;
51
+ };
43
52
  /** Editor height in pixels (including toolbar). */
44
53
  editorHeight: {
45
54
  type: PropType<number>;
@@ -167,6 +176,15 @@ declare const _default: import("vue").DefineComponent<{
167
176
  type: PropType<string[] | undefined>;
168
177
  required: false;
169
178
  };
179
+ /**
180
+ * A list of common merge field to show below the picker for easy access. Should be an array of strings
181
+ * and the strings should be in the following format: "FieldName^Label|Icon" or just "FieldName^Label", where the FieldName is the
182
+ * name of the merge field, Label is the text to display on the button, and Icon is the CSS class for icon.
183
+ */
184
+ commonMergeFields: {
185
+ type: PropType<string[] | undefined>;
186
+ required: false;
187
+ };
170
188
  /** Editor height in pixels (including toolbar). */
171
189
  editorHeight: {
172
190
  type: PropType<number>;
@@ -8,6 +8,10 @@ declare const _default: import("vue").DefineComponent<{
8
8
  type: PropType<string>;
9
9
  required: true;
10
10
  };
11
+ help: {
12
+ type: PropType<string>;
13
+ default: string;
14
+ };
11
15
  isBold: {
12
16
  type: PropType<boolean>;
13
17
  default: boolean;
@@ -31,6 +35,10 @@ declare const _default: import("vue").DefineComponent<{
31
35
  type: PropType<string>;
32
36
  required: true;
33
37
  };
38
+ help: {
39
+ type: PropType<string>;
40
+ default: string;
41
+ };
34
42
  isBold: {
35
43
  type: PropType<boolean>;
36
44
  default: boolean;
@@ -47,6 +55,7 @@ declare const _default: import("vue").DefineComponent<{
47
55
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
48
56
  }, {
49
57
  disabled: boolean;
58
+ help: string;
50
59
  uniqueId: string;
51
60
  isBold: boolean;
52
61
  }, {}>;
@@ -9,6 +9,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
9
9
  type: PropType<string>;
10
10
  default: string;
11
11
  };
12
+ modalContentClasses: {
13
+ type: PropType<string>;
14
+ default: string;
15
+ };
12
16
  title: {
13
17
  type: PropType<string>;
14
18
  default: string;
@@ -45,6 +49,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
45
49
  type: PropType<boolean>;
46
50
  default: boolean;
47
51
  };
52
+ isNarrow: {
53
+ type: PropType<boolean>;
54
+ default: boolean;
55
+ };
48
56
  clickBackdropToClose: {
49
57
  type: PropType<boolean>;
50
58
  default: boolean;
@@ -73,6 +81,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
73
81
  type: PropType<string>;
74
82
  default: string;
75
83
  };
84
+ modalContentClasses: {
85
+ type: PropType<string>;
86
+ default: string;
87
+ };
76
88
  title: {
77
89
  type: PropType<string>;
78
90
  default: string;
@@ -109,6 +121,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
109
121
  type: PropType<boolean>;
110
122
  default: boolean;
111
123
  };
124
+ isNarrow: {
125
+ type: PropType<boolean>;
126
+ default: boolean;
127
+ };
112
128
  clickBackdropToClose: {
113
129
  type: PropType<boolean>;
114
130
  default: boolean;
@@ -132,6 +148,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
132
148
  title: string;
133
149
  submit: boolean;
134
150
  modalWrapperClasses: string;
151
+ modalContentClasses: string;
135
152
  subtitle: string;
136
153
  cancelText: string;
137
154
  saveText: string;
@@ -140,6 +157,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
140
157
  isFooterHidden: boolean;
141
158
  isSaveButtonDisabled: boolean;
142
159
  isCloseButtonHidden: boolean;
160
+ isNarrow: boolean;
143
161
  clickBackdropToClose: boolean;
144
162
  }, {}>, {
145
163
  header?(_: {}): any;
@@ -0,0 +1,90 @@
1
+ import { type PropType } from "vue";
2
+ declare const _default: import("vue").DefineComponent<{
3
+ /**
4
+ * ID key of the person whose avatar should be displayed. This is required if you wish to enable
5
+ * the popover info on hover. You can use the idKey or the id of the person.
6
+ */
7
+ personIdKey: {
8
+ type: StringConstructor;
9
+ default: string;
10
+ };
11
+ /**
12
+ * The url of the image for the avatar.
13
+ */
14
+ photoUrl: {
15
+ type: StringConstructor;
16
+ required: true;
17
+ };
18
+ /**
19
+ * If true, when hovering the avatar, a popover will be shown with additional information
20
+ * about the person. This requires that the personIdKey is also specified.
21
+ */
22
+ enableHoverInfo: {
23
+ type: BooleanConstructor;
24
+ default: boolean;
25
+ };
26
+ /**
27
+ * The diameter of the avatar photo. If "xs" or "sm" is specified, the photo will be sized via
28
+ * the photo-round-[xs/sm] class. If a number is specified, it will be used as the px width and height
29
+ * of the photo directly.
30
+ */
31
+ photoSize: {
32
+ type: PropType<number | "xs" | "sm">;
33
+ default: number;
34
+ };
35
+ /**
36
+ * Size of the margin to the right of the avatar. This value is used to apply a margin class, either
37
+ * "margin-r-X" or "mr-X", whichever works correctly with the value provided.
38
+ */
39
+ marginRight: {
40
+ type: PropType<"sm" | "lg" | "0" | "1" | "auto" | "none" | "2" | "3" | "4" | "5" | "md" | "xl">;
41
+ default: string;
42
+ };
43
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
44
+ /**
45
+ * ID key of the person whose avatar should be displayed. This is required if you wish to enable
46
+ * the popover info on hover. You can use the idKey or the id of the person.
47
+ */
48
+ personIdKey: {
49
+ type: StringConstructor;
50
+ default: string;
51
+ };
52
+ /**
53
+ * The url of the image for the avatar.
54
+ */
55
+ photoUrl: {
56
+ type: StringConstructor;
57
+ required: true;
58
+ };
59
+ /**
60
+ * If true, when hovering the avatar, a popover will be shown with additional information
61
+ * about the person. This requires that the personIdKey is also specified.
62
+ */
63
+ enableHoverInfo: {
64
+ type: BooleanConstructor;
65
+ default: boolean;
66
+ };
67
+ /**
68
+ * The diameter of the avatar photo. If "xs" or "sm" is specified, the photo will be sized via
69
+ * the photo-round-[xs/sm] class. If a number is specified, it will be used as the px width and height
70
+ * of the photo directly.
71
+ */
72
+ photoSize: {
73
+ type: PropType<number | "xs" | "sm">;
74
+ default: number;
75
+ };
76
+ /**
77
+ * Size of the margin to the right of the avatar. This value is used to apply a margin class, either
78
+ * "margin-r-X" or "mr-X", whichever works correctly with the value provided.
79
+ */
80
+ marginRight: {
81
+ type: PropType<"sm" | "lg" | "0" | "1" | "auto" | "none" | "2" | "3" | "4" | "5" | "md" | "xl">;
82
+ default: string;
83
+ };
84
+ }>>, {
85
+ personIdKey: string;
86
+ enableHoverInfo: boolean;
87
+ photoSize: number | "xs" | "sm";
88
+ marginRight: "sm" | "lg" | "0" | "1" | "auto" | "none" | "2" | "3" | "4" | "5" | "md" | "xl";
89
+ }, {}>;
90
+ export default _default;
@@ -35,6 +35,11 @@ declare const _default: import("vue").DefineComponent<{
35
35
  type: PropType<string>;
36
36
  default: string;
37
37
  };
38
+ /** When this is enabled, the SMS option will be hidden regardless of server settings. */
39
+ hideSms: {
40
+ type: PropType<boolean>;
41
+ default: boolean;
42
+ };
38
43
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
39
44
  "update:modelValue": (value: PhoneNumberBoxWithSmsControlBag) => void;
40
45
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -72,6 +77,11 @@ declare const _default: import("vue").DefineComponent<{
72
77
  type: PropType<string>;
73
78
  default: string;
74
79
  };
80
+ /** When this is enabled, the SMS option will be hidden regardless of server settings. */
81
+ hideSms: {
82
+ type: PropType<boolean>;
83
+ default: boolean;
84
+ };
75
85
  }>> & {
76
86
  "onUpdate:modelValue"?: ((value: PhoneNumberBoxWithSmsControlBag) => any) | undefined;
77
87
  }, {
@@ -83,5 +93,6 @@ declare const _default: import("vue").DefineComponent<{
83
93
  validationTitle: string;
84
94
  isRequiredIndicatorHidden: boolean;
85
95
  inputGroupClasses: string;
96
+ hideSms: boolean;
86
97
  }, {}>;
87
98
  export default _default;
@@ -22,6 +22,15 @@ declare const _default: import("vue").DefineComponent<{
22
22
  type: PropType<string[] | undefined>;
23
23
  required: false;
24
24
  };
25
+ /**
26
+ * A list of common merge field to show below the picker for easy access. Should be an array of strings
27
+ * and the strings should be in the following format: "FieldName^Label|Icon", where the FieldName is the
28
+ * name of the merge field, Label is the text to display on the button, and Icon is the CSS class for icon.
29
+ */
30
+ commonMergeFields: {
31
+ type: PropType<string[] | undefined>;
32
+ required: false;
33
+ };
25
34
  shortLinkCheckToken: {
26
35
  type: PropType<((token: string, siteId: number) => Promise<string>) | null | undefined>;
27
36
  };
@@ -125,6 +134,15 @@ declare const _default: import("vue").DefineComponent<{
125
134
  type: PropType<string[] | undefined>;
126
135
  required: false;
127
136
  };
137
+ /**
138
+ * A list of common merge field to show below the picker for easy access. Should be an array of strings
139
+ * and the strings should be in the following format: "FieldName^Label|Icon", where the FieldName is the
140
+ * name of the merge field, Label is the text to display on the button, and Icon is the CSS class for icon.
141
+ */
142
+ commonMergeFields: {
143
+ type: PropType<string[] | undefined>;
144
+ required: false;
145
+ };
128
146
  shortLinkCheckToken: {
129
147
  type: PropType<((token: string, siteId: number) => Promise<string>) | null | undefined>;
130
148
  };
@@ -8,6 +8,10 @@ declare const _default: import("vue").DefineComponent<{
8
8
  type: PropType<string>;
9
9
  default: string;
10
10
  };
11
+ help: {
12
+ type: PropType<string>;
13
+ default: string;
14
+ };
11
15
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
16
  "update:modelValue": (value: boolean) => void;
13
17
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -19,9 +23,14 @@ declare const _default: import("vue").DefineComponent<{
19
23
  type: PropType<string>;
20
24
  default: string;
21
25
  };
26
+ help: {
27
+ type: PropType<string>;
28
+ default: string;
29
+ };
22
30
  }>> & {
23
31
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
24
32
  }, {
25
33
  text: string;
34
+ help: string;
26
35
  }, {}>;
27
36
  export default _default;
@@ -16,6 +16,11 @@ declare const _default: import("vue").DefineComponent<{
16
16
  type: PropType<"tabs" | "pills">;
17
17
  default: string;
18
18
  };
19
+ /** The key for the selected tab to be tracked in the Query String. */
20
+ selectedTabQueryParameterKey: {
21
+ type: StringConstructor;
22
+ required: false;
23
+ };
19
24
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
20
25
  "update:modelValue": (value: string) => void;
21
26
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -34,6 +39,11 @@ declare const _default: import("vue").DefineComponent<{
34
39
  type: PropType<"tabs" | "pills">;
35
40
  default: string;
36
41
  };
42
+ /** The key for the selected tab to be tracked in the Query String. */
43
+ selectedTabQueryParameterKey: {
44
+ type: StringConstructor;
45
+ required: false;
46
+ };
37
47
  }>> & {
38
48
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
39
49
  }, {
@@ -52,4 +52,7 @@ export type MediaAccountBag = {
52
52
 
53
53
  /** Gets or sets the Name of the MediaAccount. This property is required. */
54
54
  name?: string | null;
55
+
56
+ /** Gets or sets the value indicating whether manual entry is allowed for this media account. */
57
+ showDownloadButton: boolean;
55
58
  };
@@ -0,0 +1,28 @@
1
+ //------------------------------------------------------------------------------
2
+ // <auto-generated>
3
+ // This code was generated by the Rock.CodeGeneration project
4
+ // Changes to this file will be lost when the code is regenerated.
5
+ // </auto-generated>
6
+ //------------------------------------------------------------------------------
7
+ // <copyright>
8
+ // Copyright by the Spark Development Network
9
+ //
10
+ // Licensed under the Rock Community License (the "License");
11
+ // you may not use this file except in compliance with the License.
12
+ // You may obtain a copy of the License at
13
+ //
14
+ // http://www.rockrms.com/license
15
+ //
16
+ // Unless required by applicable law or agreed to in writing, software
17
+ // distributed under the License is distributed on an "AS IS" BASIS,
18
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ // See the License for the specific language governing permissions and
20
+ // limitations under the License.
21
+ // </copyright>
22
+ //
23
+
24
+ /** The additional configuration options for the Media Element List block. */
25
+ export type MediaElementListOptionsBag = {
26
+ /** The name of the media folder to display media elements from. */
27
+ mediaFolderName?: string | null;
28
+ };
@@ -43,6 +43,9 @@ export type RegistrantBag = {
43
43
  /** Gets or sets the unique identifier. */
44
44
  guid: Guid;
45
45
 
46
+ /** Gets or sets the boolean value that determines if the current registrant is a new family. */
47
+ isNewFamily: boolean;
48
+
46
49
  /** Gets or sets a value indicating whether this instance is on wait list. */
47
50
  isOnWaitList: boolean;
48
51
 
@@ -22,6 +22,7 @@
22
22
  //
23
23
 
24
24
  import { ToolboxScheduleRowActionType } from "@Obsidian/Enums/Blocks/Group/Scheduling/toolboxScheduleRowActionType";
25
+ import { ToolboxScheduleRowConfirmationStatus } from "@Obsidian/Enums/Blocks/Group/Scheduling/toolboxScheduleRowConfirmationStatus";
25
26
  import { Guid } from "@Obsidian/Types";
26
27
 
27
28
  /**
@@ -40,6 +41,9 @@ export type PerformScheduleRowActionRequestBag = {
40
41
  */
41
42
  entityGuid: Guid;
42
43
 
44
+ /** Gets or sets the existing confirmation status. */
45
+ existingConfirmationStatus: ToolboxScheduleRowConfirmationStatus;
46
+
43
47
  /** Gets or sets the selected person unique identifier. */
44
48
  selectedPersonGuid: Guid;
45
49
  };
@@ -26,9 +26,12 @@ export type AssetManagerGetFilesResultsBag<T> = {
26
26
  /** List of files to display */
27
27
  files?: T[] | null;
28
28
 
29
- /** Whether or not this folder is restricted from having certain actions performed on it. */
29
+ /**
30
+ * roller
31
+ * Whether or not this folder is restricted from having certain actions performed on it.
32
+ */
30
33
  isFolderRestricted: boolean;
31
34
 
32
- /** Whetehr or not this folder is restricted from having certain types of files uploaded to it. */
35
+ /** Whether or not this folder is restricted from having certain types of files uploaded to it. */
33
36
  isFolderUploadRestricted: boolean;
34
37
  };