@saasquatch/mint-components 1.15.0-10 → 1.15.0-11
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/loader.cjs.js +1 -1
- package/dist/cjs/mint-components.cjs.js +1 -1
- package/dist/cjs/sqm-big-stat_41.cjs.entry.js +48 -47
- package/dist/cjs/sqm-empty_4.cjs.entry.js +48 -48
- package/dist/cjs/sqm-stencilbook.cjs.entry.js +30 -2
- package/dist/collection/components/sqm-stencilbook/sqm-stencilbook.js +2 -0
- package/dist/collection/components/sqm-text/Text.stories.js +12 -0
- package/dist/collection/components/sqm-text/sqm-text.js +103 -49
- package/dist/collection/components/sqm-timeline/Timeline.stories.js +8 -1
- package/dist/collection/components/sqm-timeline/sqm-timeline-entry-view.js +45 -45
- package/dist/collection/components/sqm-timeline/sqm-timeline-entry.js +53 -0
- package/dist/esm/loader.js +1 -1
- package/dist/esm/mint-components.js +1 -1
- package/dist/esm/sqm-big-stat_41.entry.js +48 -47
- package/dist/esm/sqm-empty_4.entry.js +48 -48
- package/dist/esm/sqm-stencilbook.entry.js +30 -2
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/mint-components.js +1 -1
- package/dist/esm-es5/sqm-big-stat_41.entry.js +1 -1
- package/dist/esm-es5/sqm-empty_4.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-1ae6c418.entry.js +1 -0
- package/dist/mint-components/{p-411bfb78.entry.js → p-3f3ae257.entry.js} +1 -1
- package/dist/mint-components/{p-0c7cbba4.entry.js → p-8e876dde.entry.js} +2 -2
- package/dist/mint-components/{p-070ac4ab.system.entry.js → p-c571bc61.system.entry.js} +1 -1
- package/dist/mint-components/p-dce51a2e.system.entry.js +1 -0
- package/dist/mint-components/p-ee06426a.system.js +1 -1
- package/dist/mint-components/{p-5fbabd19.system.entry.js → p-f219e877.system.entry.js} +1 -1
- package/dist/types/components/sqm-text/Text.stories.d.ts +6 -0
- package/dist/types/components/sqm-text/sqm-text.d.ts +13 -0
- package/dist/types/components/sqm-timeline/Timeline.stories.d.ts +1 -0
- package/dist/types/components/sqm-timeline/sqm-timeline-entry-view.d.ts +2 -0
- package/dist/types/components/sqm-timeline/sqm-timeline-entry.d.ts +14 -0
- package/dist/types/components.d.ts +54 -0
- 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/mint-components/p-3e9bb8f2.system.entry.js +0 -1
- package/dist/mint-components/p-9ca87c75.entry.js +0 -1
|
@@ -8,6 +8,19 @@
|
|
|
8
8
|
export declare class Text {
|
|
9
9
|
ignored: boolean;
|
|
10
10
|
constructor();
|
|
11
|
+
/**
|
|
12
|
+
* Font size in pixels
|
|
13
|
+
* @uiName Font Size
|
|
14
|
+
* @uiType number
|
|
15
|
+
*/
|
|
16
|
+
fontSize?: number;
|
|
17
|
+
/**
|
|
18
|
+
* @uiName Text Color
|
|
19
|
+
* @uiType string
|
|
20
|
+
* @uiEnum ["primary", "secondary", "text"]
|
|
21
|
+
* @uiEnumNames ["Primary", "Secondary", "Text"]
|
|
22
|
+
*/
|
|
23
|
+
textColor?: string;
|
|
11
24
|
disconnectedCallback(): void;
|
|
12
25
|
componentWillLoad(): void;
|
|
13
26
|
render(): any;
|
|
@@ -9,3 +9,4 @@ export declare const TimelineWith1Reward: () => any;
|
|
|
9
9
|
export declare const TimelineWith2Rewards: () => any;
|
|
10
10
|
export declare const TimelineWith3Rewards: () => any;
|
|
11
11
|
export declare const TimelineWith4Rewards: () => any;
|
|
12
|
+
export declare const TimelineWithCustomColors: () => any;
|
|
@@ -6,6 +6,20 @@
|
|
|
6
6
|
*/
|
|
7
7
|
export declare class TimelineReward {
|
|
8
8
|
ignored: boolean;
|
|
9
|
+
/**
|
|
10
|
+
* Color of the text and copy icon
|
|
11
|
+
* @uiName Text color
|
|
12
|
+
* @uiWidget color
|
|
13
|
+
* @format color
|
|
14
|
+
*/
|
|
15
|
+
textColor?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Color of timeline
|
|
18
|
+
* @uiName Line color
|
|
19
|
+
* @uiWidget color
|
|
20
|
+
* @format color
|
|
21
|
+
*/
|
|
22
|
+
lineColor?: string;
|
|
9
23
|
/**
|
|
10
24
|
* @uiName Reward amount
|
|
11
25
|
*/
|
|
@@ -5863,6 +5863,19 @@ export namespace Components {
|
|
|
5863
5863
|
"verificationReviewInternalHeader": string;
|
|
5864
5864
|
}
|
|
5865
5865
|
interface SqmText {
|
|
5866
|
+
/**
|
|
5867
|
+
* Font size in pixels
|
|
5868
|
+
* @uiName Font Size
|
|
5869
|
+
* @uiType number
|
|
5870
|
+
*/
|
|
5871
|
+
"fontSize"?: number;
|
|
5872
|
+
/**
|
|
5873
|
+
* @uiName Text Color
|
|
5874
|
+
* @uiType string
|
|
5875
|
+
* @uiEnum ["primary", "secondary", "text"]
|
|
5876
|
+
* @uiEnumNames ["Primary", "Secondary", "Text"]
|
|
5877
|
+
*/
|
|
5878
|
+
"textColor"?: string;
|
|
5866
5879
|
}
|
|
5867
5880
|
interface SqmTextSpan {
|
|
5868
5881
|
/**
|
|
@@ -5898,11 +5911,25 @@ export namespace Components {
|
|
|
5898
5911
|
* @uiEnumNames ["Gift", "Circle"]
|
|
5899
5912
|
*/
|
|
5900
5913
|
"icon": "gift" | "circle";
|
|
5914
|
+
/**
|
|
5915
|
+
* Color of timeline
|
|
5916
|
+
* @uiName Line color
|
|
5917
|
+
* @uiWidget color
|
|
5918
|
+
* @format color
|
|
5919
|
+
*/
|
|
5920
|
+
"lineColor"?: string;
|
|
5901
5921
|
/**
|
|
5902
5922
|
* @uiName Reward amount
|
|
5903
5923
|
*/
|
|
5904
5924
|
"reward": string;
|
|
5905
5925
|
"setIcon": (value: "gift" | "circle") => Promise<void>;
|
|
5926
|
+
/**
|
|
5927
|
+
* Color of the text and copy icon
|
|
5928
|
+
* @uiName Text color
|
|
5929
|
+
* @uiWidget color
|
|
5930
|
+
* @format color
|
|
5931
|
+
*/
|
|
5932
|
+
"textColor"?: string;
|
|
5906
5933
|
/**
|
|
5907
5934
|
* @uiName Reward unit
|
|
5908
5935
|
*/
|
|
@@ -12845,6 +12872,19 @@ declare namespace LocalJSX {
|
|
|
12845
12872
|
"verificationReviewInternalHeader"?: string;
|
|
12846
12873
|
}
|
|
12847
12874
|
interface SqmText {
|
|
12875
|
+
/**
|
|
12876
|
+
* Font size in pixels
|
|
12877
|
+
* @uiName Font Size
|
|
12878
|
+
* @uiType number
|
|
12879
|
+
*/
|
|
12880
|
+
"fontSize"?: number;
|
|
12881
|
+
/**
|
|
12882
|
+
* @uiName Text Color
|
|
12883
|
+
* @uiType string
|
|
12884
|
+
* @uiEnum ["primary", "secondary", "text"]
|
|
12885
|
+
* @uiEnumNames ["Primary", "Secondary", "Text"]
|
|
12886
|
+
*/
|
|
12887
|
+
"textColor"?: string;
|
|
12848
12888
|
}
|
|
12849
12889
|
interface SqmTextSpan {
|
|
12850
12890
|
/**
|
|
@@ -12880,10 +12920,24 @@ declare namespace LocalJSX {
|
|
|
12880
12920
|
* @uiEnumNames ["Gift", "Circle"]
|
|
12881
12921
|
*/
|
|
12882
12922
|
"icon"?: "gift" | "circle";
|
|
12923
|
+
/**
|
|
12924
|
+
* Color of timeline
|
|
12925
|
+
* @uiName Line color
|
|
12926
|
+
* @uiWidget color
|
|
12927
|
+
* @format color
|
|
12928
|
+
*/
|
|
12929
|
+
"lineColor"?: string;
|
|
12883
12930
|
/**
|
|
12884
12931
|
* @uiName Reward amount
|
|
12885
12932
|
*/
|
|
12886
12933
|
"reward"?: string;
|
|
12934
|
+
/**
|
|
12935
|
+
* Color of the text and copy icon
|
|
12936
|
+
* @uiName Text color
|
|
12937
|
+
* @uiWidget color
|
|
12938
|
+
* @format color
|
|
12939
|
+
*/
|
|
12940
|
+
"textColor"?: string;
|
|
12887
12941
|
/**
|
|
12888
12942
|
* @uiName Reward unit
|
|
12889
12943
|
*/
|
package/docs/docs.docx
CHANGED
|
Binary file
|