@saasquatch/mint-components 2.1.10-0 → 2.1.10-51
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-banking-info-form_10.cjs.entry.js +1 -27
- package/dist/cjs/{sqm-big-stat_45.cjs.entry.js → sqm-big-stat_46.cjs.entry.js} +54 -10
- package/dist/cjs/sqm-stencilbook.cjs.entry.js +17 -0
- package/dist/collection/collection-manifest.json +1 -0
- package/dist/collection/components/sqm-stencilbook/sqm-stencilbook.js +2 -0
- package/dist/collection/components/sqm-user-attribute/UserAttribute.stories.js +10 -0
- package/dist/collection/components/sqm-user-attribute/sqm-user-attribute-view.js +5 -0
- package/dist/collection/components/sqm-user-attribute/sqm-user-attribute.js +114 -0
- package/dist/collection/components/sqm-user-attribute/useUserAttribute.js +25 -0
- package/dist/collection/components/tax-and-cash/sqm-banking-info-form/formDefinitions.js +1 -19
- package/dist/collection/components/tax-and-cash/sqm-banking-info-form/sqm-banking-info-form.js +0 -50
- package/dist/collection/components/tax-and-cash/sqm-tax-and-cash/sqm-tax-and-cash.js +1 -59
- package/dist/esm/loader.js +1 -1
- package/dist/esm/mint-components.js +1 -1
- package/dist/esm/sqm-banking-info-form_10.entry.js +1 -27
- package/dist/esm/{sqm-big-stat_45.entry.js → sqm-big-stat_46.entry.js} +54 -11
- package/dist/esm/sqm-stencilbook.entry.js +17 -0
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/mint-components.js +1 -1
- package/dist/esm-es5/sqm-banking-info-form_10.entry.js +1 -1
- package/dist/esm-es5/{sqm-big-stat_45.entry.js → sqm-big-stat_46.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-5492dd51.system.entry.js +1 -0
- package/dist/mint-components/{p-bf545082.system.entry.js → p-bf3729b6.system.entry.js} +1 -1
- package/dist/mint-components/{p-abc28aeb.system.entry.js → p-bf7054a5.system.entry.js} +1 -1
- package/dist/mint-components/{p-0614dcbc.entry.js → p-c823e8ee.entry.js} +1 -1
- package/dist/mint-components/{p-6640bbd6.entry.js → p-c8fe5744.entry.js} +10 -2
- package/dist/mint-components/p-ca098be1.system.js +1 -1
- package/dist/mint-components/{p-3687d433.entry.js → p-d4f332a7.entry.js} +1 -1
- package/dist/types/components/sqm-user-attribute/UserAttribute.stories.d.ts +5 -0
- package/dist/types/components/sqm-user-attribute/sqm-user-attribute-view.d.ts +6 -0
- package/dist/types/components/sqm-user-attribute/sqm-user-attribute.d.ts +29 -0
- package/dist/types/components/sqm-user-attribute/useUserAttribute.d.ts +3 -0
- package/dist/types/components/tax-and-cash/sqm-banking-info-form/formDefinitions.d.ts +0 -6
- package/dist/types/components/tax-and-cash/sqm-banking-info-form/sqm-banking-info-form.d.ts +0 -8
- package/dist/types/components/tax-and-cash/sqm-banking-info-form/useBankingInfoForm.d.ts +0 -2
- package/dist/types/components/tax-and-cash/sqm-tax-and-cash/sqm-tax-and-cash.d.ts +0 -10
- package/dist/types/components.d.ts +46 -36
- 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-57ac2160.system.entry.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
- package/docs/stats.json +0 -122783
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { DemoData } from "../../global/demo";
|
|
2
|
+
import { UserAttributeViewProps } from "./sqm-user-attribute-view";
|
|
3
|
+
/**
|
|
4
|
+
* @uiName User Attribute
|
|
5
|
+
* @exampleGroup Advanced Components
|
|
6
|
+
* @example User Attribute - <sqm-user-attribute value="firstName" loading-text="..."></sqm-user-attribute>
|
|
7
|
+
*/
|
|
8
|
+
export declare class UserAttribute {
|
|
9
|
+
ignored: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* Text displayed while the participant’s name is loading.
|
|
12
|
+
* @uiName Loading text
|
|
13
|
+
*/
|
|
14
|
+
loadingText: string;
|
|
15
|
+
/**
|
|
16
|
+
* The custom field key to display.
|
|
17
|
+
* @uiName Custom field key
|
|
18
|
+
* @uiWidget customFieldSelector
|
|
19
|
+
*/
|
|
20
|
+
value: string;
|
|
21
|
+
/**
|
|
22
|
+
* @undocumented
|
|
23
|
+
* @uiType object
|
|
24
|
+
*/
|
|
25
|
+
demoData?: DemoData<UserAttributeViewProps>;
|
|
26
|
+
constructor();
|
|
27
|
+
disconnectedCallback(): void;
|
|
28
|
+
render(): any;
|
|
29
|
+
}
|
|
@@ -156,19 +156,11 @@ export declare class BankingInfoForm {
|
|
|
156
156
|
* @uiName Branch code field label
|
|
157
157
|
*/
|
|
158
158
|
branchCodeLabel: string;
|
|
159
|
-
/**
|
|
160
|
-
* @uiName Branch name field label
|
|
161
|
-
*/
|
|
162
|
-
branchNameLabel: string;
|
|
163
159
|
/**
|
|
164
160
|
* Label text for the classification input field
|
|
165
161
|
* @uiName Classification field label
|
|
166
162
|
*/
|
|
167
163
|
classificationLabel: string;
|
|
168
|
-
/**
|
|
169
|
-
* @uiName Classification code field label
|
|
170
|
-
*/
|
|
171
|
-
classificationCodeLabel: string;
|
|
172
164
|
/**
|
|
173
165
|
* @uiName Taxpayer ID field label
|
|
174
166
|
*/
|
|
@@ -475,22 +475,12 @@ export declare class TaxAndCashMonolith {
|
|
|
475
475
|
* @uiGroup Step 4 Properties
|
|
476
476
|
*/
|
|
477
477
|
step4_branchCodeLabel: string;
|
|
478
|
-
/**
|
|
479
|
-
* @uiName Branch name field label
|
|
480
|
-
* @uiGroup Step 4 Properties
|
|
481
|
-
*/
|
|
482
|
-
step4_branchNameLabel: string;
|
|
483
478
|
/**
|
|
484
479
|
* Label text for the classification input field
|
|
485
480
|
* @uiName Classification field label
|
|
486
481
|
* @uiGroup Step 4 Properties
|
|
487
482
|
*/
|
|
488
483
|
step4_classificationLabel: string;
|
|
489
|
-
/**
|
|
490
|
-
* @uiName Classification code field label
|
|
491
|
-
* @uiGroup Step 4 Properties
|
|
492
|
-
*/
|
|
493
|
-
step4_classificationCodeLabel: string;
|
|
494
484
|
/**
|
|
495
485
|
* @uiName Taxpayer ID field label
|
|
496
486
|
* @uiGroup Step 4 Properties
|
|
@@ -56,6 +56,7 @@ import { RewardExchangeViewProps } from "./components/sqm-reward-exchange-list/s
|
|
|
56
56
|
import { ShareButtonViewProps } from "./components/sqm-share-button/sqm-share-button-view";
|
|
57
57
|
import { TaskCardViewProps } from "./components/sqm-task-card/sqm-task-card-view";
|
|
58
58
|
import { UseTaxAndCashDashboardResult } from "./components/tax-and-cash/sqm-tax-and-cash-dashboard/useTaxAndCashDashboard";
|
|
59
|
+
import { UserAttributeViewProps } from "./components/sqm-user-attribute/sqm-user-attribute-view";
|
|
59
60
|
import { UseUserInfoFormResult } from "./components/tax-and-cash/sqm-user-info-form/useUserInfoForm";
|
|
60
61
|
import { UserNameViewProps } from "./components/sqm-user-name/sqm-user-name-view";
|
|
61
62
|
export namespace Components {
|
|
@@ -117,10 +118,6 @@ export namespace Components {
|
|
|
117
118
|
* @uiName Branch code field label
|
|
118
119
|
*/
|
|
119
120
|
"branchCodeLabel": string;
|
|
120
|
-
/**
|
|
121
|
-
* @uiName Branch name field label
|
|
122
|
-
*/
|
|
123
|
-
"branchNameLabel": string;
|
|
124
121
|
/**
|
|
125
122
|
* One of three options listed for the classification field
|
|
126
123
|
* @uiName Business classification option
|
|
@@ -134,10 +131,6 @@ export namespace Components {
|
|
|
134
131
|
* @uiName Classification CPF field label
|
|
135
132
|
*/
|
|
136
133
|
"classificationCPFLabel": string;
|
|
137
|
-
/**
|
|
138
|
-
* @uiName Classification code field label
|
|
139
|
-
*/
|
|
140
|
-
"classificationCodeLabel": string;
|
|
141
134
|
/**
|
|
142
135
|
* @uiName Classification entity field label
|
|
143
136
|
*/
|
|
@@ -6118,11 +6111,6 @@ export namespace Components {
|
|
|
6118
6111
|
* @uiGroup Step 4 Properties
|
|
6119
6112
|
*/
|
|
6120
6113
|
"step4_branchCodeLabel": string;
|
|
6121
|
-
/**
|
|
6122
|
-
* @uiName Branch name field label
|
|
6123
|
-
* @uiGroup Step 4 Properties
|
|
6124
|
-
*/
|
|
6125
|
-
"step4_branchNameLabel": string;
|
|
6126
6114
|
/**
|
|
6127
6115
|
* One of three options listed for the classification field
|
|
6128
6116
|
* @uiName Business classification option
|
|
@@ -6139,11 +6127,6 @@ export namespace Components {
|
|
|
6139
6127
|
* @uiGroup Step 4 Properties
|
|
6140
6128
|
*/
|
|
6141
6129
|
"step4_classificationCPFLabel": string;
|
|
6142
|
-
/**
|
|
6143
|
-
* @uiName Classification code field label
|
|
6144
|
-
* @uiGroup Step 4 Properties
|
|
6145
|
-
*/
|
|
6146
|
-
"step4_classificationCodeLabel": string;
|
|
6147
6130
|
/**
|
|
6148
6131
|
* @uiName Classification entity field label
|
|
6149
6132
|
* @uiGroup Step 4 Properties
|
|
@@ -6830,6 +6813,24 @@ export namespace Components {
|
|
|
6830
6813
|
*/
|
|
6831
6814
|
"textAlign": "left" | "center" | "right";
|
|
6832
6815
|
}
|
|
6816
|
+
interface SqmUserAttribute {
|
|
6817
|
+
/**
|
|
6818
|
+
* @undocumented
|
|
6819
|
+
* @uiType object
|
|
6820
|
+
*/
|
|
6821
|
+
"demoData"?: DemoData<UserAttributeViewProps>;
|
|
6822
|
+
/**
|
|
6823
|
+
* Text displayed while the participant’s name is loading.
|
|
6824
|
+
* @uiName Loading text
|
|
6825
|
+
*/
|
|
6826
|
+
"loadingText": string;
|
|
6827
|
+
/**
|
|
6828
|
+
* The custom field key to display.
|
|
6829
|
+
* @uiName Custom field key
|
|
6830
|
+
* @uiWidget customFieldSelector
|
|
6831
|
+
*/
|
|
6832
|
+
"value": string;
|
|
6833
|
+
}
|
|
6833
6834
|
interface SqmUserInfoForm {
|
|
6834
6835
|
/**
|
|
6835
6836
|
* @uiName Address field label
|
|
@@ -7850,6 +7851,12 @@ declare global {
|
|
|
7850
7851
|
prototype: HTMLSqmTitledSectionElement;
|
|
7851
7852
|
new (): HTMLSqmTitledSectionElement;
|
|
7852
7853
|
};
|
|
7854
|
+
interface HTMLSqmUserAttributeElement extends Components.SqmUserAttribute, HTMLStencilElement {
|
|
7855
|
+
}
|
|
7856
|
+
var HTMLSqmUserAttributeElement: {
|
|
7857
|
+
prototype: HTMLSqmUserAttributeElement;
|
|
7858
|
+
new (): HTMLSqmUserAttributeElement;
|
|
7859
|
+
};
|
|
7853
7860
|
interface HTMLSqmUserInfoFormElement extends Components.SqmUserInfoForm, HTMLStencilElement {
|
|
7854
7861
|
}
|
|
7855
7862
|
var HTMLSqmUserInfoFormElement: {
|
|
@@ -7999,6 +8006,7 @@ declare global {
|
|
|
7999
8006
|
"sqm-timeline": HTMLSqmTimelineElement;
|
|
8000
8007
|
"sqm-timeline-entry": HTMLSqmTimelineEntryElement;
|
|
8001
8008
|
"sqm-titled-section": HTMLSqmTitledSectionElement;
|
|
8009
|
+
"sqm-user-attribute": HTMLSqmUserAttributeElement;
|
|
8002
8010
|
"sqm-user-info-form": HTMLSqmUserInfoFormElement;
|
|
8003
8011
|
"sqm-user-name": HTMLSqmUserNameElement;
|
|
8004
8012
|
"sqm-widget-verification": HTMLSqmWidgetVerificationElement;
|
|
@@ -8062,10 +8070,6 @@ declare namespace LocalJSX {
|
|
|
8062
8070
|
* @uiName Branch code field label
|
|
8063
8071
|
*/
|
|
8064
8072
|
"branchCodeLabel"?: string;
|
|
8065
|
-
/**
|
|
8066
|
-
* @uiName Branch name field label
|
|
8067
|
-
*/
|
|
8068
|
-
"branchNameLabel"?: string;
|
|
8069
8073
|
/**
|
|
8070
8074
|
* One of three options listed for the classification field
|
|
8071
8075
|
* @uiName Business classification option
|
|
@@ -8079,10 +8083,6 @@ declare namespace LocalJSX {
|
|
|
8079
8083
|
* @uiName Classification CPF field label
|
|
8080
8084
|
*/
|
|
8081
8085
|
"classificationCPFLabel"?: string;
|
|
8082
|
-
/**
|
|
8083
|
-
* @uiName Classification code field label
|
|
8084
|
-
*/
|
|
8085
|
-
"classificationCodeLabel"?: string;
|
|
8086
8086
|
/**
|
|
8087
8087
|
* @uiName Classification entity field label
|
|
8088
8088
|
*/
|
|
@@ -14034,11 +14034,6 @@ declare namespace LocalJSX {
|
|
|
14034
14034
|
* @uiGroup Step 4 Properties
|
|
14035
14035
|
*/
|
|
14036
14036
|
"step4_branchCodeLabel"?: string;
|
|
14037
|
-
/**
|
|
14038
|
-
* @uiName Branch name field label
|
|
14039
|
-
* @uiGroup Step 4 Properties
|
|
14040
|
-
*/
|
|
14041
|
-
"step4_branchNameLabel"?: string;
|
|
14042
14037
|
/**
|
|
14043
14038
|
* One of three options listed for the classification field
|
|
14044
14039
|
* @uiName Business classification option
|
|
@@ -14055,11 +14050,6 @@ declare namespace LocalJSX {
|
|
|
14055
14050
|
* @uiGroup Step 4 Properties
|
|
14056
14051
|
*/
|
|
14057
14052
|
"step4_classificationCPFLabel"?: string;
|
|
14058
|
-
/**
|
|
14059
|
-
* @uiName Classification code field label
|
|
14060
|
-
* @uiGroup Step 4 Properties
|
|
14061
|
-
*/
|
|
14062
|
-
"step4_classificationCodeLabel"?: string;
|
|
14063
14053
|
/**
|
|
14064
14054
|
* @uiName Classification entity field label
|
|
14065
14055
|
* @uiGroup Step 4 Properties
|
|
@@ -14745,6 +14735,24 @@ declare namespace LocalJSX {
|
|
|
14745
14735
|
*/
|
|
14746
14736
|
"textAlign"?: "left" | "center" | "right";
|
|
14747
14737
|
}
|
|
14738
|
+
interface SqmUserAttribute {
|
|
14739
|
+
/**
|
|
14740
|
+
* @undocumented
|
|
14741
|
+
* @uiType object
|
|
14742
|
+
*/
|
|
14743
|
+
"demoData"?: DemoData<UserAttributeViewProps>;
|
|
14744
|
+
/**
|
|
14745
|
+
* Text displayed while the participant’s name is loading.
|
|
14746
|
+
* @uiName Loading text
|
|
14747
|
+
*/
|
|
14748
|
+
"loadingText"?: string;
|
|
14749
|
+
/**
|
|
14750
|
+
* The custom field key to display.
|
|
14751
|
+
* @uiName Custom field key
|
|
14752
|
+
* @uiWidget customFieldSelector
|
|
14753
|
+
*/
|
|
14754
|
+
"value"?: string;
|
|
14755
|
+
}
|
|
14748
14756
|
interface SqmUserInfoForm {
|
|
14749
14757
|
/**
|
|
14750
14758
|
* @uiName Address field label
|
|
@@ -15144,6 +15152,7 @@ declare namespace LocalJSX {
|
|
|
15144
15152
|
"sqm-timeline": SqmTimeline;
|
|
15145
15153
|
"sqm-timeline-entry": SqmTimelineEntry;
|
|
15146
15154
|
"sqm-titled-section": SqmTitledSection;
|
|
15155
|
+
"sqm-user-attribute": SqmUserAttribute;
|
|
15147
15156
|
"sqm-user-info-form": SqmUserInfoForm;
|
|
15148
15157
|
"sqm-user-name": SqmUserName;
|
|
15149
15158
|
"sqm-widget-verification": SqmWidgetVerification;
|
|
@@ -15278,6 +15287,7 @@ declare module "@stencil/core" {
|
|
|
15278
15287
|
"sqm-timeline": LocalJSX.SqmTimeline & JSXBase.HTMLAttributes<HTMLSqmTimelineElement>;
|
|
15279
15288
|
"sqm-timeline-entry": LocalJSX.SqmTimelineEntry & JSXBase.HTMLAttributes<HTMLSqmTimelineEntryElement>;
|
|
15280
15289
|
"sqm-titled-section": LocalJSX.SqmTitledSection & JSXBase.HTMLAttributes<HTMLSqmTitledSectionElement>;
|
|
15290
|
+
"sqm-user-attribute": LocalJSX.SqmUserAttribute & JSXBase.HTMLAttributes<HTMLSqmUserAttributeElement>;
|
|
15281
15291
|
"sqm-user-info-form": LocalJSX.SqmUserInfoForm & JSXBase.HTMLAttributes<HTMLSqmUserInfoFormElement>;
|
|
15282
15292
|
"sqm-user-name": LocalJSX.SqmUserName & JSXBase.HTMLAttributes<HTMLSqmUserNameElement>;
|
|
15283
15293
|
"sqm-widget-verification": LocalJSX.SqmWidgetVerification & JSXBase.HTMLAttributes<HTMLSqmWidgetVerificationElement>;
|
package/docs/docs.docx
CHANGED
|
Binary file
|