@saasquatch/mint-components 1.12.1-16 → 1.12.1-18
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/sqm-big-stat_40.cjs.entry.js +2 -1
- package/dist/collection/components/sqm-marketing-emails-checkbox/sqm-marketing-emails-checkbox.js +1 -0
- package/dist/collection/components/sqm-portal-change-marketing/sqm-portal-change-marketing.js +5 -3
- package/dist/esm/sqm-big-stat_40.entry.js +2 -1
- package/dist/types/components/sqm-marketing-emails-checkbox/sqm-marketing-emails-checkbox.d.ts +1 -0
- package/dist/types/components/sqm-portal-change-marketing/sqm-portal-change-marketing.d.ts +3 -1
- package/dist/types/components.d.ts +4 -2
- package/docs/docs.docx +0 -0
- package/docs/raisins.json +1 -1
- package/grapesjs/grapesjs.js +1 -1
- package/package.json +1 -1
|
@@ -1887,8 +1887,9 @@ const PortalChangeMarketing = class {
|
|
|
1887
1887
|
*/
|
|
1888
1888
|
this.submitChangeButtonText = "Save";
|
|
1889
1889
|
/**
|
|
1890
|
-
* @uiName Network request error message
|
|
1891
1890
|
* Displayed when the page fails to load due to a network error. The participant can try refreshing the page.
|
|
1891
|
+
*
|
|
1892
|
+
* @uiName Network request error message
|
|
1892
1893
|
*/
|
|
1893
1894
|
this.networkRequestMessage = "An error occurred while loading this page. Please refresh the page.";
|
|
1894
1895
|
/**
|
package/dist/collection/components/sqm-marketing-emails-checkbox/sqm-marketing-emails-checkbox.js
CHANGED
|
@@ -8,6 +8,7 @@ import { useCheckboxField } from "../sqm-checkbox-field/useCheckboxField";
|
|
|
8
8
|
/**
|
|
9
9
|
* @uiName Marketing Emails Checkbox Field
|
|
10
10
|
* @validParents ["sqm-portal-register","sqm-portal-registration-form"]
|
|
11
|
+
* @requiredFeatures ["MARKETING_EMAILS"]
|
|
11
12
|
* @exampleGroup Microsite Components
|
|
12
13
|
* @example Marketing Emails Checkbox - <sqm-marketing-emails-checkbox slot="emailOptIn" name="marketingEmails" checkbox-label="I would like to receive marketing and promotional emails for this referral program" required="false" name="marketing-emails" required="false" ></sqm-marketing-emails-checkbox>
|
|
13
14
|
*/
|
package/dist/collection/components/sqm-portal-change-marketing/sqm-portal-change-marketing.js
CHANGED
|
@@ -7,6 +7,7 @@ import { isDemo } from "@saasquatch/component-boilerplate";
|
|
|
7
7
|
import deepmerge from "deepmerge";
|
|
8
8
|
/**
|
|
9
9
|
* @uiName Change Marketing Opt in Status
|
|
10
|
+
* @requiredFeatures ["MARKETING_EMAILS"]
|
|
10
11
|
* @exampleGroup Microsite Components
|
|
11
12
|
* @example Marketing Opt in Status - <div><sqm-portal-container direction="column" gap="large"><sqm-portal-change-marketing></sqm-portal-change-marketing></sqm-portal-container></div>
|
|
12
13
|
*/
|
|
@@ -26,8 +27,9 @@ export class PortalChangeMarketing {
|
|
|
26
27
|
*/
|
|
27
28
|
this.submitChangeButtonText = "Save";
|
|
28
29
|
/**
|
|
29
|
-
* @uiName Network request error message
|
|
30
30
|
* Displayed when the page fails to load due to a network error. The participant can try refreshing the page.
|
|
31
|
+
*
|
|
32
|
+
* @uiName Network request error message
|
|
31
33
|
*/
|
|
32
34
|
this.networkRequestMessage = "An error occurred while loading this page. Please refresh the page.";
|
|
33
35
|
/**
|
|
@@ -121,10 +123,10 @@ export class PortalChangeMarketing {
|
|
|
121
123
|
"optional": false,
|
|
122
124
|
"docs": {
|
|
123
125
|
"tags": [{
|
|
124
|
-
"text": "Network request error message
|
|
126
|
+
"text": "Network request error message",
|
|
125
127
|
"name": "uiName"
|
|
126
128
|
}],
|
|
127
|
-
"text": ""
|
|
129
|
+
"text": "Displayed when the page fails to load due to a network error. The participant can try refreshing the page."
|
|
128
130
|
},
|
|
129
131
|
"attribute": "network-request-message",
|
|
130
132
|
"reflect": false,
|
|
@@ -1883,8 +1883,9 @@ const PortalChangeMarketing = class {
|
|
|
1883
1883
|
*/
|
|
1884
1884
|
this.submitChangeButtonText = "Save";
|
|
1885
1885
|
/**
|
|
1886
|
-
* @uiName Network request error message
|
|
1887
1886
|
* Displayed when the page fails to load due to a network error. The participant can try refreshing the page.
|
|
1887
|
+
*
|
|
1888
|
+
* @uiName Network request error message
|
|
1888
1889
|
*/
|
|
1889
1890
|
this.networkRequestMessage = "An error occurred while loading this page. Please refresh the page.";
|
|
1890
1891
|
/**
|
package/dist/types/components/sqm-marketing-emails-checkbox/sqm-marketing-emails-checkbox.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { CheckboxFieldViewProps } from "../sqm-checkbox-field/sqm-checkbox-field
|
|
|
3
3
|
/**
|
|
4
4
|
* @uiName Marketing Emails Checkbox Field
|
|
5
5
|
* @validParents ["sqm-portal-register","sqm-portal-registration-form"]
|
|
6
|
+
* @requiredFeatures ["MARKETING_EMAILS"]
|
|
6
7
|
* @exampleGroup Microsite Components
|
|
7
8
|
* @example Marketing Emails Checkbox - <sqm-marketing-emails-checkbox slot="emailOptIn" name="marketingEmails" checkbox-label="I would like to receive marketing and promotional emails for this referral program" required="false" name="marketing-emails" required="false" ></sqm-marketing-emails-checkbox>
|
|
8
9
|
*/
|
|
@@ -2,6 +2,7 @@ import { ChangeMarketingViewProps } from "./sqm-portal-change-marketing-view";
|
|
|
2
2
|
import { DemoData } from "../../global/demo";
|
|
3
3
|
/**
|
|
4
4
|
* @uiName Change Marketing Opt in Status
|
|
5
|
+
* @requiredFeatures ["MARKETING_EMAILS"]
|
|
5
6
|
* @exampleGroup Microsite Components
|
|
6
7
|
* @example Marketing Opt in Status - <div><sqm-portal-container direction="column" gap="large"><sqm-portal-change-marketing></sqm-portal-change-marketing></sqm-portal-container></div>
|
|
7
8
|
*/
|
|
@@ -20,8 +21,9 @@ export declare class PortalChangeMarketing {
|
|
|
20
21
|
*/
|
|
21
22
|
submitChangeButtonText: string;
|
|
22
23
|
/**
|
|
23
|
-
* @uiName Network request error message
|
|
24
24
|
* Displayed when the page fails to load due to a network error. The participant can try refreshing the page.
|
|
25
|
+
*
|
|
26
|
+
* @uiName Network request error message
|
|
25
27
|
*/
|
|
26
28
|
networkRequestMessage: string;
|
|
27
29
|
/**
|
|
@@ -1691,7 +1691,8 @@ export namespace Components {
|
|
|
1691
1691
|
*/
|
|
1692
1692
|
"marketingCheckboxLabel": string;
|
|
1693
1693
|
/**
|
|
1694
|
-
*
|
|
1694
|
+
* Displayed when the page fails to load due to a network error. The participant can try refreshing the page.
|
|
1695
|
+
* @uiName Network request error message
|
|
1695
1696
|
*/
|
|
1696
1697
|
"networkRequestMessage": string;
|
|
1697
1698
|
/**
|
|
@@ -7588,7 +7589,8 @@ declare namespace LocalJSX {
|
|
|
7588
7589
|
*/
|
|
7589
7590
|
"marketingCheckboxLabel"?: string;
|
|
7590
7591
|
/**
|
|
7591
|
-
*
|
|
7592
|
+
* Displayed when the page fails to load due to a network error. The participant can try refreshing the page.
|
|
7593
|
+
* @uiName Network request error message
|
|
7592
7594
|
*/
|
|
7593
7595
|
"networkRequestMessage"?: string;
|
|
7594
7596
|
/**
|
package/docs/docs.docx
CHANGED
|
Binary file
|