@saasquatch/mint-components 1.15.0-10 → 1.15.0-12

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 (45) hide show
  1. package/dist/cjs/loader.cjs.js +1 -1
  2. package/dist/cjs/mint-components.cjs.js +1 -1
  3. package/dist/cjs/sqm-big-stat_41.cjs.entry.js +48 -47
  4. package/dist/cjs/sqm-empty_4.cjs.entry.js +48 -48
  5. package/dist/cjs/sqm-stencilbook.cjs.entry.js +30 -2
  6. package/dist/collection/components/sqm-stencilbook/sqm-stencilbook.js +2 -0
  7. package/dist/collection/components/sqm-text/Text.stories.js +12 -0
  8. package/dist/collection/components/sqm-text/sqm-text.js +100 -49
  9. package/dist/collection/components/sqm-timeline/Timeline.stories.js +8 -1
  10. package/dist/collection/components/sqm-timeline/sqm-timeline-entry-view.js +45 -45
  11. package/dist/collection/components/sqm-timeline/sqm-timeline-entry.js +53 -0
  12. package/dist/esm/loader.js +1 -1
  13. package/dist/esm/mint-components.js +1 -1
  14. package/dist/esm/sqm-big-stat_41.entry.js +48 -47
  15. package/dist/esm/sqm-empty_4.entry.js +48 -48
  16. package/dist/esm/sqm-stencilbook.entry.js +30 -2
  17. package/dist/esm-es5/loader.js +1 -1
  18. package/dist/esm-es5/mint-components.js +1 -1
  19. package/dist/esm-es5/sqm-big-stat_41.entry.js +1 -1
  20. package/dist/esm-es5/sqm-empty_4.entry.js +1 -1
  21. package/dist/esm-es5/sqm-stencilbook.entry.js +1 -1
  22. package/dist/mint-components/mint-components.esm.js +1 -1
  23. package/dist/mint-components/p-1ae6c418.entry.js +1 -0
  24. package/dist/mint-components/{p-411bfb78.entry.js → p-3f3ae257.entry.js} +1 -1
  25. package/dist/mint-components/{p-0c7cbba4.entry.js → p-8e876dde.entry.js} +2 -2
  26. package/dist/mint-components/{p-070ac4ab.system.entry.js → p-c571bc61.system.entry.js} +1 -1
  27. package/dist/mint-components/p-dce51a2e.system.entry.js +1 -0
  28. package/dist/mint-components/p-ee06426a.system.js +1 -1
  29. package/dist/mint-components/{p-5fbabd19.system.entry.js → p-f219e877.system.entry.js} +1 -1
  30. package/dist/types/components/sqm-text/Text.stories.d.ts +6 -0
  31. package/dist/types/components/sqm-text/sqm-text.d.ts +12 -0
  32. package/dist/types/components/sqm-timeline/Timeline.stories.d.ts +1 -0
  33. package/dist/types/components/sqm-timeline/sqm-timeline-entry-view.d.ts +2 -0
  34. package/dist/types/components/sqm-timeline/sqm-timeline-entry.d.ts +14 -0
  35. package/dist/types/components.d.ts +52 -0
  36. package/docs/docs.docx +0 -0
  37. package/docs/raisins.json +1 -1
  38. package/grapesjs/grapesjs.js +1 -1
  39. package/package.json +1 -1
  40. package/dist/mint-components/p-3e9bb8f2.system.entry.js +0 -1
  41. package/dist/mint-components/p-9ca87c75.entry.js +0 -1
  42. package/dist/types/global/android.d.ts +0 -7
  43. package/dist/types/global/demo.d.ts +0 -2
  44. package/dist/types/stories/features.d.ts +0 -4
  45. package/dist/types/stories/templates.d.ts +0 -4
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ title: string;
3
+ };
4
+ export default _default;
5
+ export declare const PurpleText: () => any;
6
+ export declare const CustomFontSize: () => any;
@@ -7,6 +7,18 @@
7
7
  */
8
8
  export declare class Text {
9
9
  ignored: boolean;
10
+ /**
11
+ * Font size in pixels
12
+ * @uiName Font Size
13
+ * @uiType number
14
+ */
15
+ fontSize?: number;
16
+ /**
17
+ * @uiName Text Color
18
+ * @uiWidget color
19
+ * @format color
20
+ */
21
+ textColor?: string;
10
22
  constructor();
11
23
  disconnectedCallback(): void;
12
24
  componentWillLoad(): void;
@@ -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;
@@ -5,5 +5,7 @@ export interface TimelineEntryProps {
5
5
  desc: string;
6
6
  icon: string;
7
7
  iconState: string;
8
+ textColor?: string;
9
+ lineColor?: string;
8
10
  }
9
11
  export declare function TimelineEntryView(props: TimelineEntryProps): VNode;
@@ -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,18 @@ 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
+ * @uiWidget color
5875
+ * @format color
5876
+ */
5877
+ "textColor"?: string;
5866
5878
  }
5867
5879
  interface SqmTextSpan {
5868
5880
  /**
@@ -5898,11 +5910,25 @@ export namespace Components {
5898
5910
  * @uiEnumNames ["Gift", "Circle"]
5899
5911
  */
5900
5912
  "icon": "gift" | "circle";
5913
+ /**
5914
+ * Color of timeline
5915
+ * @uiName Line color
5916
+ * @uiWidget color
5917
+ * @format color
5918
+ */
5919
+ "lineColor"?: string;
5901
5920
  /**
5902
5921
  * @uiName Reward amount
5903
5922
  */
5904
5923
  "reward": string;
5905
5924
  "setIcon": (value: "gift" | "circle") => Promise<void>;
5925
+ /**
5926
+ * Color of the text and copy icon
5927
+ * @uiName Text color
5928
+ * @uiWidget color
5929
+ * @format color
5930
+ */
5931
+ "textColor"?: string;
5906
5932
  /**
5907
5933
  * @uiName Reward unit
5908
5934
  */
@@ -12845,6 +12871,18 @@ declare namespace LocalJSX {
12845
12871
  "verificationReviewInternalHeader"?: string;
12846
12872
  }
12847
12873
  interface SqmText {
12874
+ /**
12875
+ * Font size in pixels
12876
+ * @uiName Font Size
12877
+ * @uiType number
12878
+ */
12879
+ "fontSize"?: number;
12880
+ /**
12881
+ * @uiName Text Color
12882
+ * @uiWidget color
12883
+ * @format color
12884
+ */
12885
+ "textColor"?: string;
12848
12886
  }
12849
12887
  interface SqmTextSpan {
12850
12888
  /**
@@ -12880,10 +12918,24 @@ declare namespace LocalJSX {
12880
12918
  * @uiEnumNames ["Gift", "Circle"]
12881
12919
  */
12882
12920
  "icon"?: "gift" | "circle";
12921
+ /**
12922
+ * Color of timeline
12923
+ * @uiName Line color
12924
+ * @uiWidget color
12925
+ * @format color
12926
+ */
12927
+ "lineColor"?: string;
12883
12928
  /**
12884
12929
  * @uiName Reward amount
12885
12930
  */
12886
12931
  "reward"?: string;
12932
+ /**
12933
+ * Color of the text and copy icon
12934
+ * @uiName Text color
12935
+ * @uiWidget color
12936
+ * @format color
12937
+ */
12938
+ "textColor"?: string;
12887
12939
  /**
12888
12940
  * @uiName Reward unit
12889
12941
  */
package/docs/docs.docx CHANGED
Binary file