@saasquatch/mint-components 2.1.8-24 → 2.1.8-26
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/dist/cjs/{ShadowViewAddon-1ed8faf9.js → ShadowViewAddon-1bc48666.js} +11 -10
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/mint-components.cjs.js +1 -1
- package/dist/cjs/sqm-big-stat_45.cjs.entry.js +61 -57
- package/dist/cjs/sqm-stencilbook.cjs.entry.js +1 -1
- package/dist/collection/components/sqm-share-link/sqm-share-link-view.js +6 -5
- package/dist/collection/components/sqm-share-link/sqm-share-link.js +153 -137
- package/dist/collection/components/sqm-share-link/useShareLink.js +5 -5
- package/dist/esm/{ShadowViewAddon-395ab799.js → ShadowViewAddon-10db3e11.js} +11 -10
- package/dist/esm/loader.js +1 -1
- package/dist/esm/mint-components.js +1 -1
- package/dist/esm/sqm-big-stat_45.entry.js +61 -57
- package/dist/esm/sqm-stencilbook.entry.js +1 -1
- package/dist/esm-es5/{ShadowViewAddon-395ab799.js → ShadowViewAddon-10db3e11.js} +1 -1
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/mint-components.js +1 -1
- package/dist/esm-es5/sqm-big-stat_45.entry.js +1 -1
- package/dist/esm-es5/sqm-stencilbook.entry.js +1 -1
- package/dist/mint-components/mint-components.esm.js +1 -1
- package/dist/mint-components/{p-d7adb7f3.system.js → p-0b5dd21b.system.js} +1 -1
- package/dist/mint-components/p-4b365f1f.system.js +1 -1
- package/dist/mint-components/{p-2b108f39.system.entry.js → p-4df9c93e.system.entry.js} +1 -1
- package/dist/mint-components/{p-8e5a6491.system.entry.js → p-6d10c03c.system.entry.js} +1 -1
- package/dist/mint-components/{p-cd79864c.js → p-72055e41.js} +2 -2
- package/dist/mint-components/{p-ba640335.entry.js → p-840157bd.entry.js} +2 -2
- package/dist/mint-components/{p-e6cf9daa.entry.js → p-a4f44c57.entry.js} +1 -1
- package/dist/types/components/sqm-share-link/sqm-share-link.d.ts +59 -55
- package/dist/types/components/sqm-share-link/useShareLink.d.ts +5 -5
- package/dist/types/components.d.ts +94 -86
- package/docs/docs.docx +0 -0
- package/docs/raisins.json +1 -1
- package/grapesjs/grapesjs.js +1 -1
- package/package.json +1 -1
|
@@ -91,131 +91,135 @@ export declare class ShareLink {
|
|
|
91
91
|
*/
|
|
92
92
|
buttonStyle?: "icon" | "button-outside" | "button-below";
|
|
93
93
|
/**
|
|
94
|
-
*
|
|
94
|
+
* Let advocates customize their share links up to 5 times.
|
|
95
95
|
*
|
|
96
|
-
* @uiName
|
|
96
|
+
* @uiName Allow customization
|
|
97
97
|
* @uiType boolean
|
|
98
|
-
* @uiGroup
|
|
98
|
+
* @uiGroup Customizable Vanity Link
|
|
99
99
|
* @requiredFlavor impact
|
|
100
100
|
*/
|
|
101
101
|
allowCustomization?: boolean;
|
|
102
102
|
/**
|
|
103
|
-
* Text
|
|
103
|
+
* Text for the cancel button in editing mode
|
|
104
104
|
*
|
|
105
|
-
* @uiName
|
|
105
|
+
* @uiName Cancel button label
|
|
106
106
|
* @uiType string
|
|
107
|
-
* @uiGroup
|
|
107
|
+
* @uiGroup Customizable Vanity Link
|
|
108
108
|
* @requiredFlavor impact
|
|
109
109
|
*/
|
|
110
|
-
|
|
110
|
+
cancelLabelText?: string;
|
|
111
111
|
/**
|
|
112
|
-
*
|
|
112
|
+
* Tooltip text shown when link customization is disabled
|
|
113
113
|
*
|
|
114
|
-
* @uiName
|
|
114
|
+
* @uiName Customize disabled tooltip
|
|
115
115
|
* @uiType string
|
|
116
|
-
* @uiGroup
|
|
116
|
+
* @uiGroup Customizable Vanity Link
|
|
117
117
|
* @requiredFlavor impact
|
|
118
118
|
*/
|
|
119
|
-
|
|
119
|
+
customizeDisabledTooltip?: string;
|
|
120
120
|
/**
|
|
121
|
-
*
|
|
121
|
+
* Displayed below the share link.
|
|
122
122
|
*
|
|
123
|
-
* @uiName
|
|
123
|
+
* @uiName Customize link button label
|
|
124
124
|
* @uiType string
|
|
125
|
-
* @uiGroup
|
|
125
|
+
* @uiGroup Customizable Vanity Link
|
|
126
126
|
* @requiredFlavor impact
|
|
127
127
|
*/
|
|
128
|
-
|
|
128
|
+
customizeLinkButtonLabel?: string;
|
|
129
129
|
/**
|
|
130
|
-
*
|
|
130
|
+
* Message shown when the URL has been edited 5 times. To display a clickable link, use {supportLink} as a placeholder.
|
|
131
131
|
*
|
|
132
|
-
* @uiName
|
|
132
|
+
* @uiName Edit limit reached text
|
|
133
133
|
* @uiType string
|
|
134
|
-
* @
|
|
134
|
+
* @uiWidget textarea
|
|
135
|
+
* @uiGroup Customizable Vanity Link
|
|
135
136
|
* @requiredFlavor impact
|
|
136
137
|
*/
|
|
137
|
-
|
|
138
|
+
editLimitReachedText?: string;
|
|
138
139
|
/**
|
|
139
|
-
*
|
|
140
|
+
* Subtext shown while the user is customizing their URL.
|
|
140
141
|
*
|
|
141
|
-
* @uiName
|
|
142
|
+
* @uiName Edit limit text
|
|
142
143
|
* @uiType string
|
|
143
|
-
* @uiGroup
|
|
144
|
+
* @uiGroup Customizable Vanity Link
|
|
144
145
|
* @requiredFlavor impact
|
|
145
146
|
*/
|
|
146
|
-
|
|
147
|
+
editLimitText?: string;
|
|
147
148
|
/**
|
|
148
|
-
*
|
|
149
|
+
* Description text shown when the link contains invalid special characters.
|
|
149
150
|
*
|
|
150
|
-
* @uiName Invalid characters error
|
|
151
|
+
* @uiName Invalid characters error description
|
|
151
152
|
* @uiType string
|
|
152
|
-
* @
|
|
153
|
+
* @uiWidget textarea
|
|
154
|
+
* @uiGroup Customizable Vanity Link
|
|
153
155
|
* @requiredFlavor impact
|
|
154
156
|
*/
|
|
155
|
-
|
|
157
|
+
invalidCharactersErrorDescription?: string;
|
|
156
158
|
/**
|
|
157
|
-
*
|
|
159
|
+
* Title of the error message shown when the link contains invalid special characters.
|
|
158
160
|
*
|
|
159
|
-
* @uiName Invalid characters error
|
|
161
|
+
* @uiName Invalid characters error title
|
|
160
162
|
* @uiType string
|
|
161
|
-
* @uiGroup
|
|
163
|
+
* @uiGroup Customizable Vanity Link
|
|
162
164
|
* @requiredFlavor impact
|
|
163
165
|
*/
|
|
164
|
-
|
|
166
|
+
invalidCharactersErrorTitle?: string;
|
|
165
167
|
/**
|
|
166
|
-
*
|
|
168
|
+
* Description text shown when the link has already been taken
|
|
167
169
|
*
|
|
168
|
-
* @uiName
|
|
170
|
+
* @uiName Link taken error message
|
|
169
171
|
* @uiType string
|
|
170
|
-
* @
|
|
172
|
+
* @uiWidget textarea
|
|
173
|
+
* @uiGroup Customizable Vanity Link
|
|
171
174
|
* @requiredFlavor impact
|
|
172
175
|
*/
|
|
173
|
-
|
|
176
|
+
linkTakenErrorDescription?: string;
|
|
174
177
|
/**
|
|
175
|
-
*
|
|
178
|
+
* Title of the error message shown when the link has already been taken
|
|
176
179
|
*
|
|
177
|
-
* @uiName
|
|
180
|
+
* @uiName Link taken error title
|
|
178
181
|
* @uiType string
|
|
179
|
-
* @uiGroup
|
|
182
|
+
* @uiGroup Customizable Vanity Link
|
|
180
183
|
* @requiredFlavor impact
|
|
181
184
|
*/
|
|
182
|
-
|
|
185
|
+
linkTakenErrorTitle?: string;
|
|
183
186
|
/**
|
|
184
|
-
*
|
|
187
|
+
* Description text shown when the link contains profanity or brand names.
|
|
185
188
|
*
|
|
186
|
-
* @uiName
|
|
189
|
+
* @uiName Restricted words error description
|
|
187
190
|
* @uiType string
|
|
188
|
-
* @
|
|
191
|
+
* @uiWidget textarea
|
|
192
|
+
* @uiGroup Customizable Vanity Link
|
|
189
193
|
* @requiredFlavor impact
|
|
190
194
|
*/
|
|
191
|
-
|
|
195
|
+
restrictedWordsErrorDescription?: string;
|
|
192
196
|
/**
|
|
193
|
-
*
|
|
197
|
+
* Title of the error message shown when the link contains profanity or brand names.
|
|
194
198
|
*
|
|
195
|
-
* @uiName
|
|
199
|
+
* @uiName Restricted words error title
|
|
196
200
|
* @uiType string
|
|
197
|
-
* @uiGroup
|
|
201
|
+
* @uiGroup Customizable Vanity Link
|
|
198
202
|
* @requiredFlavor impact
|
|
199
203
|
*/
|
|
200
|
-
|
|
204
|
+
restrictedWordsErrorTitle?: string;
|
|
201
205
|
/**
|
|
202
|
-
*
|
|
206
|
+
* Text for the save button in editing mode
|
|
203
207
|
*
|
|
204
|
-
* @uiName
|
|
208
|
+
* @uiName Save button label
|
|
205
209
|
* @uiType string
|
|
206
|
-
* @uiGroup
|
|
210
|
+
* @uiGroup Customizable Vanity Link
|
|
207
211
|
* @requiredFlavor impact
|
|
208
212
|
*/
|
|
209
|
-
|
|
213
|
+
saveLabelText?: string;
|
|
210
214
|
/**
|
|
211
|
-
*
|
|
215
|
+
* Display text for the support link in the edit limit reached message
|
|
212
216
|
*
|
|
213
|
-
* @uiName
|
|
217
|
+
* @uiName Support link text
|
|
214
218
|
* @uiType string
|
|
215
|
-
* @uiGroup
|
|
219
|
+
* @uiGroup Customizable Vanity Link
|
|
216
220
|
* @requiredFlavor impact
|
|
217
221
|
*/
|
|
218
|
-
|
|
222
|
+
supportLinkText?: string;
|
|
219
223
|
/**
|
|
220
224
|
* @undocumented
|
|
221
225
|
* @uiType object
|
|
@@ -6,7 +6,7 @@ export interface ShareLinkProps {
|
|
|
6
6
|
linkOverride?: string;
|
|
7
7
|
allowCustomization?: boolean;
|
|
8
8
|
customizeUrlText?: string;
|
|
9
|
-
|
|
9
|
+
customizeLinkButtonLabel?: string;
|
|
10
10
|
saveLabelText?: string;
|
|
11
11
|
cancelLabelText?: string;
|
|
12
12
|
textAlign?: "left" | "center" | "right";
|
|
@@ -17,12 +17,12 @@ export interface ShareLinkProps {
|
|
|
17
17
|
buttonType?: "primary" | "secondary";
|
|
18
18
|
copyButtonLabel?: string;
|
|
19
19
|
borderColor?: string;
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
linkTakenErrorTitle?: string;
|
|
21
|
+
linkTakenErrorDescription?: string;
|
|
22
22
|
invalidCharactersErrorTitle?: string;
|
|
23
23
|
invalidCharactersErrorDescription?: string;
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
restrictedWordsErrorTitle?: string;
|
|
25
|
+
restrictedWordsErrorDescription?: string;
|
|
26
26
|
editLimitText?: string;
|
|
27
27
|
editLimitReachedText?: string;
|
|
28
28
|
supportLinkText?: string;
|
|
@@ -4890,10 +4890,10 @@ export namespace Components {
|
|
|
4890
4890
|
}
|
|
4891
4891
|
interface SqmShareLink {
|
|
4892
4892
|
/**
|
|
4893
|
-
*
|
|
4894
|
-
* @uiName
|
|
4893
|
+
* Let advocates customize their share links up to 5 times.
|
|
4894
|
+
* @uiName Allow customization
|
|
4895
4895
|
* @uiType boolean
|
|
4896
|
-
* @uiGroup
|
|
4896
|
+
* @uiGroup Customizable Vanity Link
|
|
4897
4897
|
* @requiredFlavor impact
|
|
4898
4898
|
*/
|
|
4899
4899
|
"allowCustomization"?: boolean;
|
|
@@ -4942,7 +4942,7 @@ export namespace Components {
|
|
|
4942
4942
|
* Text for the cancel button in editing mode
|
|
4943
4943
|
* @uiName Cancel button label
|
|
4944
4944
|
* @uiType string
|
|
4945
|
-
* @uiGroup
|
|
4945
|
+
* @uiGroup Customizable Vanity Link
|
|
4946
4946
|
* @requiredFlavor impact
|
|
4947
4947
|
*/
|
|
4948
4948
|
"cancelLabelText"?: string;
|
|
@@ -4954,99 +4954,103 @@ export namespace Components {
|
|
|
4954
4954
|
* Tooltip text shown when link customization is disabled
|
|
4955
4955
|
* @uiName Customize disabled tooltip
|
|
4956
4956
|
* @uiType string
|
|
4957
|
-
* @uiGroup
|
|
4957
|
+
* @uiGroup Customizable Vanity Link
|
|
4958
4958
|
* @requiredFlavor impact
|
|
4959
4959
|
*/
|
|
4960
4960
|
"customizeDisabledTooltip"?: string;
|
|
4961
4961
|
/**
|
|
4962
|
-
*
|
|
4963
|
-
* @uiName Customize link label
|
|
4962
|
+
* Displayed below the share link.
|
|
4963
|
+
* @uiName Customize link button label
|
|
4964
4964
|
* @uiType string
|
|
4965
|
-
* @uiGroup
|
|
4965
|
+
* @uiGroup Customizable Vanity Link
|
|
4966
4966
|
* @requiredFlavor impact
|
|
4967
4967
|
*/
|
|
4968
|
-
"
|
|
4968
|
+
"customizeLinkButtonLabel"?: string;
|
|
4969
4969
|
/**
|
|
4970
4970
|
* @undocumented
|
|
4971
4971
|
* @uiType object
|
|
4972
4972
|
*/
|
|
4973
4973
|
"demoData"?: DemoData<ShareLinkViewProps>;
|
|
4974
4974
|
/**
|
|
4975
|
-
* Message shown when the
|
|
4975
|
+
* Message shown when the URL has been edited 5 times. To display a clickable link, use {supportLink} as a placeholder.
|
|
4976
4976
|
* @uiName Edit limit reached text
|
|
4977
4977
|
* @uiType string
|
|
4978
|
-
* @
|
|
4978
|
+
* @uiWidget textarea
|
|
4979
|
+
* @uiGroup Customizable Vanity Link
|
|
4979
4980
|
* @requiredFlavor impact
|
|
4980
4981
|
*/
|
|
4981
4982
|
"editLimitReachedText"?: string;
|
|
4982
4983
|
/**
|
|
4983
|
-
*
|
|
4984
|
+
* Subtext shown while the user is customizing their URL.
|
|
4984
4985
|
* @uiName Edit limit text
|
|
4985
4986
|
* @uiType string
|
|
4986
|
-
* @uiGroup
|
|
4987
|
+
* @uiGroup Customizable Vanity Link
|
|
4987
4988
|
* @requiredFlavor impact
|
|
4988
4989
|
*/
|
|
4989
4990
|
"editLimitText"?: string;
|
|
4990
4991
|
"editsRemaining"?: number;
|
|
4991
4992
|
/**
|
|
4992
|
-
* Description text shown when the
|
|
4993
|
-
* @uiName Existing code conflict error description
|
|
4994
|
-
* @uiType string
|
|
4995
|
-
* @uiGroup Customize Vanity Link
|
|
4996
|
-
* @requiredFlavor impact
|
|
4997
|
-
*/
|
|
4998
|
-
"existingCodeConflictErrorDescription"?: string;
|
|
4999
|
-
/**
|
|
5000
|
-
* Title text shown when the custom link is already taken
|
|
5001
|
-
* @uiName Existing code conflict error title
|
|
5002
|
-
* @uiType string
|
|
5003
|
-
* @uiGroup Customize Vanity Link
|
|
5004
|
-
* @requiredFlavor impact
|
|
5005
|
-
*/
|
|
5006
|
-
"existingCodeConflictErrorTitle"?: string;
|
|
5007
|
-
/**
|
|
5008
|
-
* Description text shown when the link contains invalid characters
|
|
4993
|
+
* Description text shown when the link contains invalid special characters.
|
|
5009
4994
|
* @uiName Invalid characters error description
|
|
5010
4995
|
* @uiType string
|
|
5011
|
-
* @
|
|
4996
|
+
* @uiWidget textarea
|
|
4997
|
+
* @uiGroup Customizable Vanity Link
|
|
5012
4998
|
* @requiredFlavor impact
|
|
5013
4999
|
*/
|
|
5014
5000
|
"invalidCharactersErrorDescription"?: string;
|
|
5015
5001
|
/**
|
|
5016
|
-
* Title
|
|
5002
|
+
* Title of the error message shown when the link contains invalid special characters.
|
|
5017
5003
|
* @uiName Invalid characters error title
|
|
5018
5004
|
* @uiType string
|
|
5019
|
-
* @uiGroup
|
|
5005
|
+
* @uiGroup Customizable Vanity Link
|
|
5020
5006
|
* @requiredFlavor impact
|
|
5021
5007
|
*/
|
|
5022
5008
|
"invalidCharactersErrorTitle"?: string;
|
|
5023
5009
|
/**
|
|
5024
|
-
* Description text shown when the link
|
|
5025
|
-
* @uiName
|
|
5010
|
+
* Description text shown when the link has already been taken
|
|
5011
|
+
* @uiName Link taken error message
|
|
5026
5012
|
* @uiType string
|
|
5027
|
-
* @
|
|
5013
|
+
* @uiWidget textarea
|
|
5014
|
+
* @uiGroup Customizable Vanity Link
|
|
5028
5015
|
* @requiredFlavor impact
|
|
5029
5016
|
*/
|
|
5030
|
-
"
|
|
5017
|
+
"linkTakenErrorDescription"?: string;
|
|
5031
5018
|
/**
|
|
5032
|
-
* Title
|
|
5033
|
-
* @uiName
|
|
5019
|
+
* Title of the error message shown when the link has already been taken
|
|
5020
|
+
* @uiName Link taken error title
|
|
5034
5021
|
* @uiType string
|
|
5035
|
-
* @uiGroup
|
|
5022
|
+
* @uiGroup Customizable Vanity Link
|
|
5036
5023
|
* @requiredFlavor impact
|
|
5037
5024
|
*/
|
|
5038
|
-
"
|
|
5025
|
+
"linkTakenErrorTitle"?: string;
|
|
5039
5026
|
/**
|
|
5040
5027
|
* The ID of the program that should generate the link. Defaults to the program ID in context where this widget is loaded.
|
|
5041
5028
|
* @uiName Program ID
|
|
5042
5029
|
* @uiWidget programSelector
|
|
5043
5030
|
*/
|
|
5044
5031
|
"programId"?: string;
|
|
5032
|
+
/**
|
|
5033
|
+
* Description text shown when the link contains profanity or brand names.
|
|
5034
|
+
* @uiName Restricted words error description
|
|
5035
|
+
* @uiType string
|
|
5036
|
+
* @uiWidget textarea
|
|
5037
|
+
* @uiGroup Customizable Vanity Link
|
|
5038
|
+
* @requiredFlavor impact
|
|
5039
|
+
*/
|
|
5040
|
+
"restrictedWordsErrorDescription"?: string;
|
|
5041
|
+
/**
|
|
5042
|
+
* Title of the error message shown when the link contains profanity or brand names.
|
|
5043
|
+
* @uiName Restricted words error title
|
|
5044
|
+
* @uiType string
|
|
5045
|
+
* @uiGroup Customizable Vanity Link
|
|
5046
|
+
* @requiredFlavor impact
|
|
5047
|
+
*/
|
|
5048
|
+
"restrictedWordsErrorTitle"?: string;
|
|
5045
5049
|
/**
|
|
5046
5050
|
* Text for the save button in editing mode
|
|
5047
5051
|
* @uiName Save button label
|
|
5048
5052
|
* @uiType string
|
|
5049
|
-
* @uiGroup
|
|
5053
|
+
* @uiGroup Customizable Vanity Link
|
|
5050
5054
|
* @requiredFlavor impact
|
|
5051
5055
|
*/
|
|
5052
5056
|
"saveLabelText"?: string;
|
|
@@ -5054,7 +5058,7 @@ export namespace Components {
|
|
|
5054
5058
|
* Display text for the support link in the edit limit reached message
|
|
5055
5059
|
* @uiName Support link text
|
|
5056
5060
|
* @uiType string
|
|
5057
|
-
* @uiGroup
|
|
5061
|
+
* @uiGroup Customizable Vanity Link
|
|
5058
5062
|
* @requiredFlavor impact
|
|
5059
5063
|
*/
|
|
5060
5064
|
"supportLinkText"?: string;
|
|
@@ -12896,10 +12900,10 @@ declare namespace LocalJSX {
|
|
|
12896
12900
|
}
|
|
12897
12901
|
interface SqmShareLink {
|
|
12898
12902
|
/**
|
|
12899
|
-
*
|
|
12900
|
-
* @uiName
|
|
12903
|
+
* Let advocates customize their share links up to 5 times.
|
|
12904
|
+
* @uiName Allow customization
|
|
12901
12905
|
* @uiType boolean
|
|
12902
|
-
* @uiGroup
|
|
12906
|
+
* @uiGroup Customizable Vanity Link
|
|
12903
12907
|
* @requiredFlavor impact
|
|
12904
12908
|
*/
|
|
12905
12909
|
"allowCustomization"?: boolean;
|
|
@@ -12948,7 +12952,7 @@ declare namespace LocalJSX {
|
|
|
12948
12952
|
* Text for the cancel button in editing mode
|
|
12949
12953
|
* @uiName Cancel button label
|
|
12950
12954
|
* @uiType string
|
|
12951
|
-
* @uiGroup
|
|
12955
|
+
* @uiGroup Customizable Vanity Link
|
|
12952
12956
|
* @requiredFlavor impact
|
|
12953
12957
|
*/
|
|
12954
12958
|
"cancelLabelText"?: string;
|
|
@@ -12960,99 +12964,103 @@ declare namespace LocalJSX {
|
|
|
12960
12964
|
* Tooltip text shown when link customization is disabled
|
|
12961
12965
|
* @uiName Customize disabled tooltip
|
|
12962
12966
|
* @uiType string
|
|
12963
|
-
* @uiGroup
|
|
12967
|
+
* @uiGroup Customizable Vanity Link
|
|
12964
12968
|
* @requiredFlavor impact
|
|
12965
12969
|
*/
|
|
12966
12970
|
"customizeDisabledTooltip"?: string;
|
|
12967
12971
|
/**
|
|
12968
|
-
*
|
|
12969
|
-
* @uiName Customize link label
|
|
12972
|
+
* Displayed below the share link.
|
|
12973
|
+
* @uiName Customize link button label
|
|
12970
12974
|
* @uiType string
|
|
12971
|
-
* @uiGroup
|
|
12975
|
+
* @uiGroup Customizable Vanity Link
|
|
12972
12976
|
* @requiredFlavor impact
|
|
12973
12977
|
*/
|
|
12974
|
-
"
|
|
12978
|
+
"customizeLinkButtonLabel"?: string;
|
|
12975
12979
|
/**
|
|
12976
12980
|
* @undocumented
|
|
12977
12981
|
* @uiType object
|
|
12978
12982
|
*/
|
|
12979
12983
|
"demoData"?: DemoData<ShareLinkViewProps>;
|
|
12980
12984
|
/**
|
|
12981
|
-
* Message shown when the
|
|
12985
|
+
* Message shown when the URL has been edited 5 times. To display a clickable link, use {supportLink} as a placeholder.
|
|
12982
12986
|
* @uiName Edit limit reached text
|
|
12983
12987
|
* @uiType string
|
|
12984
|
-
* @
|
|
12988
|
+
* @uiWidget textarea
|
|
12989
|
+
* @uiGroup Customizable Vanity Link
|
|
12985
12990
|
* @requiredFlavor impact
|
|
12986
12991
|
*/
|
|
12987
12992
|
"editLimitReachedText"?: string;
|
|
12988
12993
|
/**
|
|
12989
|
-
*
|
|
12994
|
+
* Subtext shown while the user is customizing their URL.
|
|
12990
12995
|
* @uiName Edit limit text
|
|
12991
12996
|
* @uiType string
|
|
12992
|
-
* @uiGroup
|
|
12997
|
+
* @uiGroup Customizable Vanity Link
|
|
12993
12998
|
* @requiredFlavor impact
|
|
12994
12999
|
*/
|
|
12995
13000
|
"editLimitText"?: string;
|
|
12996
13001
|
"editsRemaining"?: number;
|
|
12997
13002
|
/**
|
|
12998
|
-
* Description text shown when the
|
|
12999
|
-
* @uiName Existing code conflict error description
|
|
13000
|
-
* @uiType string
|
|
13001
|
-
* @uiGroup Customize Vanity Link
|
|
13002
|
-
* @requiredFlavor impact
|
|
13003
|
-
*/
|
|
13004
|
-
"existingCodeConflictErrorDescription"?: string;
|
|
13005
|
-
/**
|
|
13006
|
-
* Title text shown when the custom link is already taken
|
|
13007
|
-
* @uiName Existing code conflict error title
|
|
13008
|
-
* @uiType string
|
|
13009
|
-
* @uiGroup Customize Vanity Link
|
|
13010
|
-
* @requiredFlavor impact
|
|
13011
|
-
*/
|
|
13012
|
-
"existingCodeConflictErrorTitle"?: string;
|
|
13013
|
-
/**
|
|
13014
|
-
* Description text shown when the link contains invalid characters
|
|
13003
|
+
* Description text shown when the link contains invalid special characters.
|
|
13015
13004
|
* @uiName Invalid characters error description
|
|
13016
13005
|
* @uiType string
|
|
13017
|
-
* @
|
|
13006
|
+
* @uiWidget textarea
|
|
13007
|
+
* @uiGroup Customizable Vanity Link
|
|
13018
13008
|
* @requiredFlavor impact
|
|
13019
13009
|
*/
|
|
13020
13010
|
"invalidCharactersErrorDescription"?: string;
|
|
13021
13011
|
/**
|
|
13022
|
-
* Title
|
|
13012
|
+
* Title of the error message shown when the link contains invalid special characters.
|
|
13023
13013
|
* @uiName Invalid characters error title
|
|
13024
13014
|
* @uiType string
|
|
13025
|
-
* @uiGroup
|
|
13015
|
+
* @uiGroup Customizable Vanity Link
|
|
13026
13016
|
* @requiredFlavor impact
|
|
13027
13017
|
*/
|
|
13028
13018
|
"invalidCharactersErrorTitle"?: string;
|
|
13029
13019
|
/**
|
|
13030
|
-
* Description text shown when the link
|
|
13031
|
-
* @uiName
|
|
13020
|
+
* Description text shown when the link has already been taken
|
|
13021
|
+
* @uiName Link taken error message
|
|
13032
13022
|
* @uiType string
|
|
13033
|
-
* @
|
|
13023
|
+
* @uiWidget textarea
|
|
13024
|
+
* @uiGroup Customizable Vanity Link
|
|
13034
13025
|
* @requiredFlavor impact
|
|
13035
13026
|
*/
|
|
13036
|
-
"
|
|
13027
|
+
"linkTakenErrorDescription"?: string;
|
|
13037
13028
|
/**
|
|
13038
|
-
* Title
|
|
13039
|
-
* @uiName
|
|
13029
|
+
* Title of the error message shown when the link has already been taken
|
|
13030
|
+
* @uiName Link taken error title
|
|
13040
13031
|
* @uiType string
|
|
13041
|
-
* @uiGroup
|
|
13032
|
+
* @uiGroup Customizable Vanity Link
|
|
13042
13033
|
* @requiredFlavor impact
|
|
13043
13034
|
*/
|
|
13044
|
-
"
|
|
13035
|
+
"linkTakenErrorTitle"?: string;
|
|
13045
13036
|
/**
|
|
13046
13037
|
* The ID of the program that should generate the link. Defaults to the program ID in context where this widget is loaded.
|
|
13047
13038
|
* @uiName Program ID
|
|
13048
13039
|
* @uiWidget programSelector
|
|
13049
13040
|
*/
|
|
13050
13041
|
"programId"?: string;
|
|
13042
|
+
/**
|
|
13043
|
+
* Description text shown when the link contains profanity or brand names.
|
|
13044
|
+
* @uiName Restricted words error description
|
|
13045
|
+
* @uiType string
|
|
13046
|
+
* @uiWidget textarea
|
|
13047
|
+
* @uiGroup Customizable Vanity Link
|
|
13048
|
+
* @requiredFlavor impact
|
|
13049
|
+
*/
|
|
13050
|
+
"restrictedWordsErrorDescription"?: string;
|
|
13051
|
+
/**
|
|
13052
|
+
* Title of the error message shown when the link contains profanity or brand names.
|
|
13053
|
+
* @uiName Restricted words error title
|
|
13054
|
+
* @uiType string
|
|
13055
|
+
* @uiGroup Customizable Vanity Link
|
|
13056
|
+
* @requiredFlavor impact
|
|
13057
|
+
*/
|
|
13058
|
+
"restrictedWordsErrorTitle"?: string;
|
|
13051
13059
|
/**
|
|
13052
13060
|
* Text for the save button in editing mode
|
|
13053
13061
|
* @uiName Save button label
|
|
13054
13062
|
* @uiType string
|
|
13055
|
-
* @uiGroup
|
|
13063
|
+
* @uiGroup Customizable Vanity Link
|
|
13056
13064
|
* @requiredFlavor impact
|
|
13057
13065
|
*/
|
|
13058
13066
|
"saveLabelText"?: string;
|
|
@@ -13060,7 +13068,7 @@ declare namespace LocalJSX {
|
|
|
13060
13068
|
* Display text for the support link in the edit limit reached message
|
|
13061
13069
|
* @uiName Support link text
|
|
13062
13070
|
* @uiType string
|
|
13063
|
-
* @uiGroup
|
|
13071
|
+
* @uiGroup Customizable Vanity Link
|
|
13064
13072
|
* @requiredFlavor impact
|
|
13065
13073
|
*/
|
|
13066
13074
|
"supportLinkText"?: string;
|
package/docs/docs.docx
CHANGED
|
Binary file
|