@saasquatch/mint-components 1.13.4 → 1.13.5-0
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/collection/components/tax-and-cash/sqm-tax-and-cash/sqm-tax-and-cash.js +17 -2
- package/dist/types/components/tax-and-cash/sqm-tax-and-cash/sqm-tax-and-cash.d.ts +5 -0
- package/dist/types/components.d.ts +82 -0
- package/docs/docs.docx +0 -0
- package/docs/raisins.json +1 -1
- package/package.json +1 -1
|
@@ -1,13 +1,13 @@
|
|
|
1
|
+
import { isDemo, useParentState } from "@saasquatch/component-boilerplate";
|
|
1
2
|
import { withHooks } from "@saasquatch/stencil-hooks";
|
|
2
3
|
import { Component, Prop, h } from "@stencil/core";
|
|
3
4
|
import deepmerge from "deepmerge";
|
|
4
5
|
import { getProps } from "../../../utils/utils";
|
|
6
|
+
import { ErrorView } from "./ErrorView";
|
|
5
7
|
import LoadingView from "./LoadingView";
|
|
6
8
|
import { TAX_CONTEXT_NAMESPACE } from "./data";
|
|
7
9
|
import { extractProps } from "./extractProps";
|
|
8
10
|
import { useTaxAndCash } from "./useTaxAndCash";
|
|
9
|
-
import { isDemo, useParentState } from "@saasquatch/component-boilerplate";
|
|
10
|
-
import { ErrorView } from "./ErrorView";
|
|
11
11
|
/**
|
|
12
12
|
* @uiName Tax and Cash
|
|
13
13
|
* @exampleGroup Tax and Cash
|
|
@@ -5040,6 +5040,21 @@ export class TaxAndCashMonolith {
|
|
|
5040
5040
|
}, {
|
|
5041
5041
|
"text": "object",
|
|
5042
5042
|
"name": "uiType"
|
|
5043
|
+
}, {
|
|
5044
|
+
"text": "Step 1 - { \"step\": \"/1\" }",
|
|
5045
|
+
"name": "demo"
|
|
5046
|
+
}, {
|
|
5047
|
+
"text": "Step 2 - { \"step\": \"/2\" }",
|
|
5048
|
+
"name": "demo"
|
|
5049
|
+
}, {
|
|
5050
|
+
"text": "Step 3 - { \"step\": \"/3\" }",
|
|
5051
|
+
"name": "demo"
|
|
5052
|
+
}, {
|
|
5053
|
+
"text": "Step 3 - { \"step\": \"/4\" }",
|
|
5054
|
+
"name": "demo"
|
|
5055
|
+
}, {
|
|
5056
|
+
"text": "Dashboard - { \"step\": \"/dashboard\" }",
|
|
5057
|
+
"name": "demo"
|
|
5043
5058
|
}],
|
|
5044
5059
|
"text": ""
|
|
5045
5060
|
}
|
|
@@ -950,6 +950,11 @@ export declare class TaxAndCashMonolith {
|
|
|
950
950
|
*
|
|
951
951
|
* @undocumented
|
|
952
952
|
* @uiType object
|
|
953
|
+
* @demo Step 1 - { "step": "/1" }
|
|
954
|
+
* @demo Step 2 - { "step": "/2" }
|
|
955
|
+
* @demo Step 3 - { "step": "/3" }
|
|
956
|
+
* @demo Step 3 - { "step": "/4" }
|
|
957
|
+
* @demo Dashboard - { "step": "/dashboard" }
|
|
953
958
|
*/
|
|
954
959
|
demoData?: DemoData<UseTaxAndCashResultType>;
|
|
955
960
|
constructor();
|
|
@@ -43,6 +43,7 @@ import { PortalProfileViewProps } from "./components/sqm-portal-profile/sqm-port
|
|
|
43
43
|
import { PortalRegisterViewProps } from "./components/sqm-portal-register/sqm-portal-register-view";
|
|
44
44
|
import { PortalResetPasswordViewProps } from "./components/sqm-portal-reset-password/sqm-portal-reset-password-view";
|
|
45
45
|
import { PortalVerifyEmailViewProps } from "./components/sqm-portal-verify-email/sqm-portal-verify-email-view";
|
|
46
|
+
import { QRCodeViewProps } from "./components/sqm-qr-code/sqm-qr-code-view";
|
|
46
47
|
import { ReferralCodesViewProps } from "./components/sqm-referral-codes/sqm-referral-codes-view";
|
|
47
48
|
import { ReferralIframeViewProps } from "./components/sqm-referral-iframe/sqm-referral-iframe-view";
|
|
48
49
|
import { ReferralDates } from "./components/sqm-referral-table/useReferralTable";
|
|
@@ -2991,6 +2992,37 @@ export namespace Components {
|
|
|
2991
2992
|
}
|
|
2992
2993
|
interface SqmProgramMenu {
|
|
2993
2994
|
}
|
|
2995
|
+
interface SqmQrCode {
|
|
2996
|
+
/**
|
|
2997
|
+
* @undocumented
|
|
2998
|
+
* @uiType object
|
|
2999
|
+
*/
|
|
3000
|
+
"demoData"?: DemoData<QRCodeViewProps>;
|
|
3001
|
+
/**
|
|
3002
|
+
* @uiName Download QR code text
|
|
3003
|
+
*/
|
|
3004
|
+
"downloadCodeText"?: string;
|
|
3005
|
+
/**
|
|
3006
|
+
* @uiName Description for error banner
|
|
3007
|
+
*/
|
|
3008
|
+
"errorDescriptionText"?: string;
|
|
3009
|
+
/**
|
|
3010
|
+
* @uiName Header for error banner
|
|
3011
|
+
*/
|
|
3012
|
+
"errorHeaderText"?: string;
|
|
3013
|
+
/**
|
|
3014
|
+
* @uiName Print QR code text
|
|
3015
|
+
*/
|
|
3016
|
+
"printCodeText"?: string;
|
|
3017
|
+
/**
|
|
3018
|
+
* @uiName Title
|
|
3019
|
+
*/
|
|
3020
|
+
"titleText"?: string;
|
|
3021
|
+
/**
|
|
3022
|
+
* @uiName View QR code text
|
|
3023
|
+
*/
|
|
3024
|
+
"viewCodeText"?: string;
|
|
3025
|
+
}
|
|
2994
3026
|
interface SqmReferralCard {
|
|
2995
3027
|
/**
|
|
2996
3028
|
* @uiName Background color
|
|
@@ -4665,6 +4697,11 @@ export namespace Components {
|
|
|
4665
4697
|
/**
|
|
4666
4698
|
* @undocumented
|
|
4667
4699
|
* @uiType object
|
|
4700
|
+
* @demo Step 1 - { "step": "/1" }
|
|
4701
|
+
* @demo Step 2 - { "step": "/2" }
|
|
4702
|
+
* @demo Step 3 - { "step": "/3" }
|
|
4703
|
+
* @demo Step 3 - { "step": "/4" }
|
|
4704
|
+
* @demo Dashboard - { "step": "/dashboard" }
|
|
4668
4705
|
*/
|
|
4669
4706
|
"demoData"?: DemoData<UseTaxAndCashResultType>;
|
|
4670
4707
|
/**
|
|
@@ -6313,6 +6350,12 @@ declare global {
|
|
|
6313
6350
|
prototype: HTMLSqmProgramMenuElement;
|
|
6314
6351
|
new (): HTMLSqmProgramMenuElement;
|
|
6315
6352
|
};
|
|
6353
|
+
interface HTMLSqmQrCodeElement extends Components.SqmQrCode, HTMLStencilElement {
|
|
6354
|
+
}
|
|
6355
|
+
var HTMLSqmQrCodeElement: {
|
|
6356
|
+
prototype: HTMLSqmQrCodeElement;
|
|
6357
|
+
new (): HTMLSqmQrCodeElement;
|
|
6358
|
+
};
|
|
6316
6359
|
interface HTMLSqmReferralCardElement extends Components.SqmReferralCard, HTMLStencilElement {
|
|
6317
6360
|
}
|
|
6318
6361
|
var HTMLSqmReferralCardElement: {
|
|
@@ -6696,6 +6739,7 @@ declare global {
|
|
|
6696
6739
|
"sqm-program-explainer": HTMLSqmProgramExplainerElement;
|
|
6697
6740
|
"sqm-program-explainer-step": HTMLSqmProgramExplainerStepElement;
|
|
6698
6741
|
"sqm-program-menu": HTMLSqmProgramMenuElement;
|
|
6742
|
+
"sqm-qr-code": HTMLSqmQrCodeElement;
|
|
6699
6743
|
"sqm-referral-card": HTMLSqmReferralCardElement;
|
|
6700
6744
|
"sqm-referral-code": HTMLSqmReferralCodeElement;
|
|
6701
6745
|
"sqm-referral-codes": HTMLSqmReferralCodesElement;
|
|
@@ -9681,6 +9725,37 @@ declare namespace LocalJSX {
|
|
|
9681
9725
|
}
|
|
9682
9726
|
interface SqmProgramMenu {
|
|
9683
9727
|
}
|
|
9728
|
+
interface SqmQrCode {
|
|
9729
|
+
/**
|
|
9730
|
+
* @undocumented
|
|
9731
|
+
* @uiType object
|
|
9732
|
+
*/
|
|
9733
|
+
"demoData"?: DemoData<QRCodeViewProps>;
|
|
9734
|
+
/**
|
|
9735
|
+
* @uiName Download QR code text
|
|
9736
|
+
*/
|
|
9737
|
+
"downloadCodeText"?: string;
|
|
9738
|
+
/**
|
|
9739
|
+
* @uiName Description for error banner
|
|
9740
|
+
*/
|
|
9741
|
+
"errorDescriptionText"?: string;
|
|
9742
|
+
/**
|
|
9743
|
+
* @uiName Header for error banner
|
|
9744
|
+
*/
|
|
9745
|
+
"errorHeaderText"?: string;
|
|
9746
|
+
/**
|
|
9747
|
+
* @uiName Print QR code text
|
|
9748
|
+
*/
|
|
9749
|
+
"printCodeText"?: string;
|
|
9750
|
+
/**
|
|
9751
|
+
* @uiName Title
|
|
9752
|
+
*/
|
|
9753
|
+
"titleText"?: string;
|
|
9754
|
+
/**
|
|
9755
|
+
* @uiName View QR code text
|
|
9756
|
+
*/
|
|
9757
|
+
"viewCodeText"?: string;
|
|
9758
|
+
}
|
|
9684
9759
|
interface SqmReferralCard {
|
|
9685
9760
|
/**
|
|
9686
9761
|
* @uiName Background color
|
|
@@ -11331,6 +11406,11 @@ declare namespace LocalJSX {
|
|
|
11331
11406
|
/**
|
|
11332
11407
|
* @undocumented
|
|
11333
11408
|
* @uiType object
|
|
11409
|
+
* @demo Step 1 - { "step": "/1" }
|
|
11410
|
+
* @demo Step 2 - { "step": "/2" }
|
|
11411
|
+
* @demo Step 3 - { "step": "/3" }
|
|
11412
|
+
* @demo Step 3 - { "step": "/4" }
|
|
11413
|
+
* @demo Dashboard - { "step": "/dashboard" }
|
|
11334
11414
|
*/
|
|
11335
11415
|
"demoData"?: DemoData<UseTaxAndCashResultType>;
|
|
11336
11416
|
/**
|
|
@@ -12627,6 +12707,7 @@ declare namespace LocalJSX {
|
|
|
12627
12707
|
"sqm-program-explainer": SqmProgramExplainer;
|
|
12628
12708
|
"sqm-program-explainer-step": SqmProgramExplainerStep;
|
|
12629
12709
|
"sqm-program-menu": SqmProgramMenu;
|
|
12710
|
+
"sqm-qr-code": SqmQrCode;
|
|
12630
12711
|
"sqm-referral-card": SqmReferralCard;
|
|
12631
12712
|
"sqm-referral-code": SqmReferralCode;
|
|
12632
12713
|
"sqm-referral-codes": SqmReferralCodes;
|
|
@@ -12755,6 +12836,7 @@ declare module "@stencil/core" {
|
|
|
12755
12836
|
"sqm-program-explainer": LocalJSX.SqmProgramExplainer & JSXBase.HTMLAttributes<HTMLSqmProgramExplainerElement>;
|
|
12756
12837
|
"sqm-program-explainer-step": LocalJSX.SqmProgramExplainerStep & JSXBase.HTMLAttributes<HTMLSqmProgramExplainerStepElement>;
|
|
12757
12838
|
"sqm-program-menu": LocalJSX.SqmProgramMenu & JSXBase.HTMLAttributes<HTMLSqmProgramMenuElement>;
|
|
12839
|
+
"sqm-qr-code": LocalJSX.SqmQrCode & JSXBase.HTMLAttributes<HTMLSqmQrCodeElement>;
|
|
12758
12840
|
"sqm-referral-card": LocalJSX.SqmReferralCard & JSXBase.HTMLAttributes<HTMLSqmReferralCardElement>;
|
|
12759
12841
|
"sqm-referral-code": LocalJSX.SqmReferralCode & JSXBase.HTMLAttributes<HTMLSqmReferralCodeElement>;
|
|
12760
12842
|
"sqm-referral-codes": LocalJSX.SqmReferralCodes & JSXBase.HTMLAttributes<HTMLSqmReferralCodesElement>;
|
package/docs/docs.docx
CHANGED
|
Binary file
|