@saasquatch/mint-components 1.15.0-72 → 1.15.0-73
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-232eaf8b.js → ShadowViewAddon-5d9a17e7.js} +3 -3
- package/dist/cjs/sqm-big-stat_43.cjs.entry.js +3 -3
- package/dist/cjs/sqm-stencilbook.cjs.entry.js +1 -1
- package/dist/collection/components/sqm-big-stat/sqm-big-stat.js +13 -11
- package/dist/collection/components/sqm-big-stat/useBigStat.js +2 -2
- package/dist/collection/components/sqm-big-stat/useDemoBigStat.js +1 -1
- package/dist/collection/components/sqm-portal-footer/sqm-portal-footer.js +1 -1
- package/dist/collection/components/sqm-referral-card/sqm-referral-card.js +2 -1
- package/dist/collection/components/sqm-titled-section/sqm-titled-section.js +1 -1
- package/dist/esm/{ShadowViewAddon-31e71683.js → ShadowViewAddon-e2c43345.js} +3 -3
- package/dist/esm/sqm-big-stat_43.entry.js +3 -3
- package/dist/esm/sqm-stencilbook.entry.js +1 -1
- package/dist/esm-es5/ShadowViewAddon-e2c43345.js +1 -0
- package/dist/esm-es5/sqm-big-stat_43.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-2a8e2f28.system.js +1 -1
- package/dist/mint-components/{p-246e67d4.system.entry.js → p-83239943.system.entry.js} +1 -1
- package/dist/mint-components/{p-9542a949.entry.js → p-d4802081.entry.js} +1 -1
- package/dist/mint-components/p-dd315973.js +394 -0
- package/dist/mint-components/{p-3b11d902.entry.js → p-e64c4d67.entry.js} +1 -1
- package/dist/mint-components/p-f2564fde.system.js +1 -0
- package/dist/mint-components/{p-91fd1cae.system.entry.js → p-fde9bf0f.system.entry.js} +1 -1
- package/dist/types/components/sqm-big-stat/sqm-big-stat.d.ts +10 -8
- package/dist/types/components/sqm-portal-footer/sqm-portal-footer.d.ts +1 -1
- package/dist/types/components/sqm-referral-card/sqm-referral-card.d.ts +2 -1
- package/dist/types/components/sqm-titled-section/sqm-titled-section.d.ts +1 -1
- package/dist/types/components.d.ts +14 -14
- package/docs/docs.docx +0 -0
- package/docs/raisins.json +1 -1
- package/grapesjs/grapesjs.js +1 -1
- package/package.json +1 -1
- package/dist/esm-es5/ShadowViewAddon-31e71683.js +0 -1
- package/dist/mint-components/p-765d0c63.js +0 -394
- package/dist/mint-components/p-a41c29cd.system.js +0 -1
- package/dist/types/global/android.d.ts +0 -7
- package/dist/types/global/demo.d.ts +0 -2
- package/dist/types/stories/features.d.ts +0 -4
- package/dist/types/stories/templates.d.ts +0 -4
|
@@ -1,16 +1,18 @@
|
|
|
1
|
-
import { BigStatViewProps } from "./sqm-big-stat-view";
|
|
2
1
|
import { DemoData } from "../../global/demo";
|
|
2
|
+
import { BigStatViewProps } from "./sqm-big-stat-view";
|
|
3
3
|
/**
|
|
4
4
|
*
|
|
5
5
|
* @uiName User Stat
|
|
6
6
|
* @validParents ["sqm-stat-container"]
|
|
7
7
|
* @validChildren ["p","div","h1","h2","h3","h4","h5","span"]
|
|
8
8
|
* @slots [{"name":"","title":"Stat Text"}]
|
|
9
|
+
* @uiOrder ["statType", "programId", "*"]
|
|
9
10
|
* @slotEditor richText
|
|
10
11
|
* @exampleGroup Statistics
|
|
11
12
|
* @example Points Balance - <sqm-big-stat flex-reverse="true" alignment="left" stat-type="/rewardBalance/CREDIT/POINT/value/global"><p>Points Balance</p></sqm-big-stat>
|
|
12
13
|
* @example GiftCards Earned - <sqm-big-stat flex-reverse="true" alignment="left" stat-type="/integrationRewardsCountFiltered/AVAILABLE/global"><p>Giftcards Earned</p></sqm-big-stat>
|
|
13
14
|
* @example Referrals - <sqm-big-stat flex-reverse="true" alignment="left" stat-type="/referralsCount"><p>Referrals</p></sqm-big-stat>
|
|
15
|
+
* @example Other Stat - <sqm-big-stat flex-reverse="true" alignment="left" stat-type=""><p>Label</p></sqm-big-stat>
|
|
14
16
|
*/
|
|
15
17
|
export declare class BigStat {
|
|
16
18
|
/**
|
|
@@ -27,7 +29,7 @@ export declare class BigStat {
|
|
|
27
29
|
*
|
|
28
30
|
* @uiName Flex reverse
|
|
29
31
|
* @default
|
|
30
|
-
* @uiGroup
|
|
32
|
+
* @uiGroup Additional Settings
|
|
31
33
|
*/
|
|
32
34
|
flexReverse?: boolean;
|
|
33
35
|
/**
|
|
@@ -37,7 +39,7 @@ export declare class BigStat {
|
|
|
37
39
|
* @uiType string
|
|
38
40
|
* @uiEnum ["left", "right", "center"]
|
|
39
41
|
* @uiEnumNames ["Left", "Right", "Center"]
|
|
40
|
-
* @uiGroup
|
|
42
|
+
* @uiGroup Additional Settings
|
|
41
43
|
*/
|
|
42
44
|
alignment?: "left" | "right" | "center";
|
|
43
45
|
/**
|
|
@@ -53,20 +55,20 @@ export declare class BigStat {
|
|
|
53
55
|
* @uiWidget color
|
|
54
56
|
* @uiType string
|
|
55
57
|
* @format color
|
|
56
|
-
* @uiGroup
|
|
58
|
+
* @uiGroup Additional Settings
|
|
57
59
|
*/
|
|
58
60
|
statTextColor?: string;
|
|
59
61
|
/**
|
|
60
62
|
* Font size of the stat text in pixels
|
|
61
63
|
* @uiName Stat font size
|
|
62
64
|
* @uiType string
|
|
63
|
-
* @uiGroup
|
|
65
|
+
* @uiGroup Additional Settings
|
|
64
66
|
*/
|
|
65
67
|
statFontSize?: number;
|
|
66
68
|
/**
|
|
67
69
|
* Font weight of the stat text
|
|
68
70
|
* @uiName Stat font weight
|
|
69
|
-
* @uiGroup
|
|
71
|
+
* @uiGroup Additional Settings
|
|
70
72
|
* @uiEnum [100, 200, 300, 400, 500, 600, 700, 800, 900]
|
|
71
73
|
* @uiEnumNames ["Thin", "Extra Light", "Light", "Normal", "Medium", "Semi Bold", "Bold", "Extra Bold", "Heavy"]
|
|
72
74
|
*/
|
|
@@ -77,13 +79,13 @@ export declare class BigStat {
|
|
|
77
79
|
* @uiWidget color
|
|
78
80
|
* @uiType string
|
|
79
81
|
* @format color
|
|
80
|
-
* @uiGroup
|
|
82
|
+
* @uiGroup Additional Settings
|
|
81
83
|
*/
|
|
82
84
|
descriptionTextColor?: string;
|
|
83
85
|
/**
|
|
84
86
|
* Font size of the description text in pixels
|
|
85
87
|
* @uiName Description font size
|
|
86
|
-
* @uiGroup
|
|
88
|
+
* @uiGroup Additional Settings
|
|
87
89
|
*/
|
|
88
90
|
descriptionFontSize?: number;
|
|
89
91
|
/**
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @uiName Footer
|
|
3
|
-
* @validParents ["div","sqm-brand","sqm-portal-container", "sqm-divided-layout", "sqm-referral-card"]
|
|
3
|
+
* @validParents ["div","sqm-brand","sqm-portal-container", "sqm-divided-layout", "sqm-referral-card", "sqm-instant-access-registration"]
|
|
4
4
|
*/
|
|
5
5
|
export declare class PortalFooter {
|
|
6
6
|
ignored: boolean;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
+
*
|
|
2
3
|
* @uiName Referral Card
|
|
3
4
|
* @validParents ["sqm-portal-container","div","sqm-divided-layout","sqm-brand","template","sqb-program-section","sqb-conditional-section", "sqm-hero"]
|
|
4
|
-
* @validChildren ["div","sqm-portal-container","p","sqm-timeline","h1","h2","h3","h5","h4","sqm-pagination","sqm-qr-code","sqm-referral-code","sqm-referral-codes","sqm-share-code","sqm-share-link","sqm-text","span", "sqm-portal-footer"]
|
|
5
|
+
* @validChildren ["div","sqm-portal-container","p","sqm-timeline","h1","h2","h3","h5","h4","sqm-pagination","sqm-qr-code","sqm-referral-code","sqm-referral-codes","sqm-share-code","sqm-share-link","sqm-text","span", "sqm-portal-footer", "sqm-titled-section"]
|
|
5
6
|
* @exampleGroup Referrals
|
|
6
7
|
* @slots [{"name":"left", "title":"Left Content"},{"name":"right", "title":"Right Content"},{"name":"header", "title":"Header Content"},{"name":"footer", "title":"Footer Content"}]
|
|
7
8
|
* @example Referral Card - <sqm-referral-card vertical-alignment="start"> <sqm-portal-container gap="large" slot="left" direction="column" display="grid" max-width="100%" padding="none" > <sqm-text >They’ll get a $50 credit towards a new account and you’ll get: </sqm-text> <sqm-timeline icon="circle"> <sqm-timeline-entry reward="$50" unit="visa giftcard" desc="Your friend purchases a Business plan" icon="circle" > </sqm-timeline-entry> <sqm-timeline-entry reward="$200" unit="visa giftcard" desc="Our sales team qualifies your friend as a good fit for our Enterprise plan" icon="circle" > </sqm-timeline-entry> <sqm-timeline-entry reward="$1000" unit="visa giftcard" desc="Your friend purchases an Enterprise plan" icon="circle" > </sqm-timeline-entry> </sqm-timeline> </sqm-portal-container> <sqm-portal-container gap="large" slot="right" direction="column" display="grid" max-width="100%" padding="none" > <sqm-text>Choose how you want to share: </sqm-text> <sqm-text> <sub>Your unique referral link:</sub> <sqm-share-link tooltip-text="Copied to Clipboard" tooltip-lifespan="1000" > </sqm-share-link> </sqm-text> <sqm-portal-container gap="x-small" direction="column" display="grid" max-width="100%" padding="none" > <sqm-share-button medium="email" icon-slot="prefix" size="medium" type="default" > Share via email </sqm-share-button> <sqm-share-button medium="linkedin" icon-slot="prefix" size="medium" type="default" > Share on LinkedIn </sqm-share-button> <sqm-share-button medium="twitter" icon-slot="prefix" size="medium" type="default" > Share on Twitter </sqm-share-button> </sqm-portal-container> </sqm-portal-container> </sqm-referral-card>
|
|
@@ -2,7 +2,7 @@ import { VNode } from "../../stencil-public-runtime";
|
|
|
2
2
|
import { Spacing } from "../../global/mixins";
|
|
3
3
|
/**
|
|
4
4
|
* @uiName Titled Section
|
|
5
|
-
* @validParents ["sqm-portal-container","div","sqm-divided-layout","sqm-brand","template","sqm-hero","sqm-tab", "sqm-referred-registration", "sqb-program-section","sqb-conditional-section"]
|
|
5
|
+
* @validParents ["sqm-portal-container","div","sqm-divided-layout","sqm-brand","template","sqm-hero","sqm-tab", "sqm-referred-registration", "sqb-program-section","sqb-conditional-section", "sqm-instant-access-registration"]
|
|
6
6
|
* @validChildren ["div","sqm-portal-container","p","sqm-timeline","h1","h2","h3","h5","h4","sqm-qr-code","sqm-referral-code","sqm-referral-codes","sqm-share-code","sqm-share-link","sqm-text","span"]
|
|
7
7
|
* @slots [{"name":"label", "title":"Label"},{"name":"content", "title":"Content"}]
|
|
8
8
|
* @exampleGroup Layout
|
|
@@ -341,7 +341,7 @@ export namespace Components {
|
|
|
341
341
|
* @uiType string
|
|
342
342
|
* @uiEnum ["left", "right", "center"]
|
|
343
343
|
* @uiEnumNames ["Left", "Right", "Center"]
|
|
344
|
-
* @uiGroup
|
|
344
|
+
* @uiGroup Additional Settings
|
|
345
345
|
*/
|
|
346
346
|
"alignment"?: "left" | "right" | "center";
|
|
347
347
|
/**
|
|
@@ -352,7 +352,7 @@ export namespace Components {
|
|
|
352
352
|
/**
|
|
353
353
|
* Font size of the description text in pixels
|
|
354
354
|
* @uiName Description font size
|
|
355
|
-
* @uiGroup
|
|
355
|
+
* @uiGroup Additional Settings
|
|
356
356
|
*/
|
|
357
357
|
"descriptionFontSize"?: number;
|
|
358
358
|
/**
|
|
@@ -361,14 +361,14 @@ export namespace Components {
|
|
|
361
361
|
* @uiWidget color
|
|
362
362
|
* @uiType string
|
|
363
363
|
* @format color
|
|
364
|
-
* @uiGroup
|
|
364
|
+
* @uiGroup Additional Settings
|
|
365
365
|
*/
|
|
366
366
|
"descriptionTextColor"?: string;
|
|
367
367
|
/**
|
|
368
368
|
* Controls the order of the stat value & description column
|
|
369
369
|
* @uiName Flex reverse
|
|
370
370
|
* @default
|
|
371
|
-
* @uiGroup
|
|
371
|
+
* @uiGroup Additional Settings
|
|
372
372
|
*/
|
|
373
373
|
"flexReverse"?: boolean;
|
|
374
374
|
/**
|
|
@@ -381,13 +381,13 @@ export namespace Components {
|
|
|
381
381
|
* Font size of the stat text in pixels
|
|
382
382
|
* @uiName Stat font size
|
|
383
383
|
* @uiType string
|
|
384
|
-
* @uiGroup
|
|
384
|
+
* @uiGroup Additional Settings
|
|
385
385
|
*/
|
|
386
386
|
"statFontSize"?: number;
|
|
387
387
|
/**
|
|
388
388
|
* Font weight of the stat text
|
|
389
389
|
* @uiName Stat font weight
|
|
390
|
-
* @uiGroup
|
|
390
|
+
* @uiGroup Additional Settings
|
|
391
391
|
* @uiEnum [100, 200, 300, 400, 500, 600, 700, 800, 900]
|
|
392
392
|
* @uiEnumNames ["Thin", "Extra Light", "Light", "Normal", "Medium", "Semi Bold", "Bold", "Extra Bold", "Heavy"]
|
|
393
393
|
*/
|
|
@@ -398,7 +398,7 @@ export namespace Components {
|
|
|
398
398
|
* @uiWidget color
|
|
399
399
|
* @uiType string
|
|
400
400
|
* @format color
|
|
401
|
-
* @uiGroup
|
|
401
|
+
* @uiGroup Additional Settings
|
|
402
402
|
*/
|
|
403
403
|
"statTextColor"?: string;
|
|
404
404
|
/**
|
|
@@ -7709,7 +7709,7 @@ declare namespace LocalJSX {
|
|
|
7709
7709
|
* @uiType string
|
|
7710
7710
|
* @uiEnum ["left", "right", "center"]
|
|
7711
7711
|
* @uiEnumNames ["Left", "Right", "Center"]
|
|
7712
|
-
* @uiGroup
|
|
7712
|
+
* @uiGroup Additional Settings
|
|
7713
7713
|
*/
|
|
7714
7714
|
"alignment"?: "left" | "right" | "center";
|
|
7715
7715
|
/**
|
|
@@ -7720,7 +7720,7 @@ declare namespace LocalJSX {
|
|
|
7720
7720
|
/**
|
|
7721
7721
|
* Font size of the description text in pixels
|
|
7722
7722
|
* @uiName Description font size
|
|
7723
|
-
* @uiGroup
|
|
7723
|
+
* @uiGroup Additional Settings
|
|
7724
7724
|
*/
|
|
7725
7725
|
"descriptionFontSize"?: number;
|
|
7726
7726
|
/**
|
|
@@ -7729,14 +7729,14 @@ declare namespace LocalJSX {
|
|
|
7729
7729
|
* @uiWidget color
|
|
7730
7730
|
* @uiType string
|
|
7731
7731
|
* @format color
|
|
7732
|
-
* @uiGroup
|
|
7732
|
+
* @uiGroup Additional Settings
|
|
7733
7733
|
*/
|
|
7734
7734
|
"descriptionTextColor"?: string;
|
|
7735
7735
|
/**
|
|
7736
7736
|
* Controls the order of the stat value & description column
|
|
7737
7737
|
* @uiName Flex reverse
|
|
7738
7738
|
* @default
|
|
7739
|
-
* @uiGroup
|
|
7739
|
+
* @uiGroup Additional Settings
|
|
7740
7740
|
*/
|
|
7741
7741
|
"flexReverse"?: boolean;
|
|
7742
7742
|
/**
|
|
@@ -7749,13 +7749,13 @@ declare namespace LocalJSX {
|
|
|
7749
7749
|
* Font size of the stat text in pixels
|
|
7750
7750
|
* @uiName Stat font size
|
|
7751
7751
|
* @uiType string
|
|
7752
|
-
* @uiGroup
|
|
7752
|
+
* @uiGroup Additional Settings
|
|
7753
7753
|
*/
|
|
7754
7754
|
"statFontSize"?: number;
|
|
7755
7755
|
/**
|
|
7756
7756
|
* Font weight of the stat text
|
|
7757
7757
|
* @uiName Stat font weight
|
|
7758
|
-
* @uiGroup
|
|
7758
|
+
* @uiGroup Additional Settings
|
|
7759
7759
|
* @uiEnum [100, 200, 300, 400, 500, 600, 700, 800, 900]
|
|
7760
7760
|
* @uiEnumNames ["Thin", "Extra Light", "Light", "Normal", "Medium", "Semi Bold", "Bold", "Extra Bold", "Heavy"]
|
|
7761
7761
|
*/
|
|
@@ -7766,7 +7766,7 @@ declare namespace LocalJSX {
|
|
|
7766
7766
|
* @uiWidget color
|
|
7767
7767
|
* @uiType string
|
|
7768
7768
|
* @format color
|
|
7769
|
-
* @uiGroup
|
|
7769
|
+
* @uiGroup Additional Settings
|
|
7770
7770
|
*/
|
|
7771
7771
|
"statTextColor"?: string;
|
|
7772
7772
|
/**
|
package/docs/docs.docx
CHANGED
|
Binary file
|