@saasquatch/mint-components 1.11.1-30 → 1.11.1-31

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.
@@ -78,6 +78,9 @@ export class ReferralCodes {
78
78
  "tags": [{
79
79
  "text": "Program ID",
80
80
  "name": "uiName"
81
+ }, {
82
+ "text": "programSelector",
83
+ "name": "uiWidget"
81
84
  }],
82
85
  "text": ""
83
86
  },
@@ -12,6 +12,7 @@ export declare class ReferralCodes {
12
12
  titleText?: string;
13
13
  /**
14
14
  * @uiName Program ID
15
+ * @uiWidget programSelector
15
16
  */
16
17
  programId?: string;
17
18
  /**
@@ -2648,6 +2648,7 @@ export namespace Components {
2648
2648
  "demoData"?: DemoData<ReferralCodesViewProps>;
2649
2649
  /**
2650
2650
  * @uiName Program ID
2651
+ * @uiWidget programSelector
2651
2652
  */
2652
2653
  "programId"?: string;
2653
2654
  /**
@@ -8584,6 +8585,7 @@ declare namespace LocalJSX {
8584
8585
  "demoData"?: DemoData<ReferralCodesViewProps>;
8585
8586
  /**
8586
8587
  * @uiName Program ID
8588
+ * @uiWidget programSelector
8587
8589
  */
8588
8590
  "programId"?: string;
8589
8591
  /**
@@ -0,0 +1,7 @@
1
+ interface AndroidInterface {
2
+ platform: 'android';
3
+ shareOnFacebook(shareUrl: string, fallbackUrl: string): void;
4
+ showToast(toast: string): void;
5
+ }
6
+
7
+ export type PlatformNativeActions = AndroidInterface | undefined;
@@ -0,0 +1,2 @@
1
+ export type DemoData<T extends {}> = Partial<Omit<T, "callbacks" | "text">>;
2
+ export type StoryDemoData<T extends {}> = Partial<Omit<T, "text">>;
@@ -0,0 +1,4 @@
1
+ declare module "*.feature" {
2
+ const content: string;
3
+ export default content;
4
+ }
@@ -0,0 +1,4 @@
1
+ declare module "*.html" {
2
+ const content: string;
3
+ export default content;
4
+ }
package/docs/docs.docx CHANGED
Binary file