@saasquatch/mint-components 2.1.12 → 2.1.14-1
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/{ShadowViewAddon-229dd1c1.js → ShadowViewAddon-c97e80de.js} +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/mint-components.cjs.js +1 -1
- package/dist/cjs/{sqm-big-stat_45.cjs.entry.js → sqm-big-stat_46.cjs.entry.js} +75 -3
- package/dist/cjs/sqm-stencilbook.cjs.entry.js +55 -1
- package/dist/collection/collection-manifest.json +1 -0
- package/dist/collection/components/sqm-checkbox-field/sqm-checkbox-field-view.js +1 -1
- package/dist/collection/components/sqm-checkbox-field/sqm-checkbox-field.js +3 -2
- package/dist/collection/components/sqm-stencilbook/sqm-stencilbook.js +2 -0
- package/dist/collection/components/sqm-user-attribute/UserAttribute.stories.js +43 -0
- package/dist/collection/components/sqm-user-attribute/sqm-user-attribute-view.js +19 -0
- package/dist/collection/components/sqm-user-attribute/sqm-user-attribute.js +175 -0
- package/dist/collection/components/sqm-user-attribute/useUserAttribute.js +30 -0
- package/dist/esm/{ShadowViewAddon-cc32bca2.js → ShadowViewAddon-33f1a8f7.js} +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/mint-components.js +1 -1
- package/dist/esm/{sqm-big-stat_45.entry.js → sqm-big-stat_46.entry.js} +75 -4
- package/dist/esm/sqm-stencilbook.entry.js +55 -1
- package/dist/esm-es5/{ShadowViewAddon-cc32bca2.js → ShadowViewAddon-33f1a8f7.js} +1 -1
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/mint-components.js +1 -1
- package/dist/esm-es5/sqm-big-stat_46.entry.js +1 -0
- 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-8300e806.js → p-08930b83.js} +1 -1
- package/dist/mint-components/{p-b3f18de4.entry.js → p-7462403c.entry.js} +2 -2
- package/dist/mint-components/{p-e846e3bb.system.js → p-78b40f71.system.js} +1 -1
- package/dist/mint-components/{p-f611c11a.system.entry.js → p-9de4d6d1.system.entry.js} +1 -1
- package/dist/mint-components/p-ca098be1.system.js +1 -1
- package/dist/mint-components/{p-a3eefe38.entry.js → p-e43a8421.entry.js} +29 -21
- package/dist/mint-components/p-fb637e0a.system.entry.js +1 -0
- package/dist/types/components/sqm-checkbox-field/sqm-checkbox-field.d.ts +1 -1
- package/dist/types/components/sqm-user-attribute/UserAttribute.stories.d.ts +11 -0
- package/dist/types/components/sqm-user-attribute/sqm-user-attribute-view.d.ts +8 -0
- package/dist/types/components/sqm-user-attribute/sqm-user-attribute.d.ts +45 -0
- package/dist/types/components/sqm-user-attribute/useUserAttribute.d.ts +3 -0
- package/dist/types/components.d.ts +80 -2
- 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/esm-es5/sqm-big-stat_45.entry.js +0 -1
- package/dist/mint-components/p-7a673f14.system.entry.js +0 -1
|
@@ -57,6 +57,7 @@ import { ShareButtonViewProps } from "./components/sqm-share-button/sqm-share-bu
|
|
|
57
57
|
import { ShareLinkViewProps } from "./components/sqm-share-link/sqm-share-link-view";
|
|
58
58
|
import { TaskCardViewProps } from "./components/sqm-task-card/sqm-task-card-view";
|
|
59
59
|
import { UseTaxAndCashDashboardResult } from "./components/tax-and-cash/sqm-tax-and-cash-dashboard/useTaxAndCashDashboard";
|
|
60
|
+
import { UserAttributeViewProps } from "./components/sqm-user-attribute/sqm-user-attribute-view";
|
|
60
61
|
import { UseUserInfoFormResult } from "./components/tax-and-cash/sqm-user-info-form/useUserInfoForm";
|
|
61
62
|
import { UserNameViewProps } from "./components/sqm-user-name/sqm-user-name-view";
|
|
62
63
|
export namespace Components {
|
|
@@ -456,7 +457,7 @@ export namespace Components {
|
|
|
456
457
|
*/
|
|
457
458
|
"checkboxLabelLink"?: string;
|
|
458
459
|
/**
|
|
459
|
-
* @uiName Checkbox label link
|
|
460
|
+
* @uiName Checkbox label link lext
|
|
460
461
|
*/
|
|
461
462
|
"checkboxLabelLinkText"?: string;
|
|
462
463
|
/**
|
|
@@ -6986,6 +6987,40 @@ export namespace Components {
|
|
|
6986
6987
|
*/
|
|
6987
6988
|
"textAlign": "left" | "center" | "right";
|
|
6988
6989
|
}
|
|
6990
|
+
interface SqmUserAttribute {
|
|
6991
|
+
/**
|
|
6992
|
+
* @uiName Color
|
|
6993
|
+
* @uiWidget color
|
|
6994
|
+
* @format color
|
|
6995
|
+
* @uiGroup Style
|
|
6996
|
+
*/
|
|
6997
|
+
"color"?: string;
|
|
6998
|
+
/**
|
|
6999
|
+
* @undocumented
|
|
7000
|
+
* @uiType object
|
|
7001
|
+
*/
|
|
7002
|
+
"demoData"?: DemoData<UserAttributeViewProps>;
|
|
7003
|
+
/**
|
|
7004
|
+
* Number in pixels.
|
|
7005
|
+
* @uiName Font size
|
|
7006
|
+
* @uiGroup Style
|
|
7007
|
+
*/
|
|
7008
|
+
"fontSize"?: number;
|
|
7009
|
+
/**
|
|
7010
|
+
* Font weight
|
|
7011
|
+
* @uiName Font weight
|
|
7012
|
+
* @uiGroup Style
|
|
7013
|
+
* @uiEnum [100, 200, 300, 400, 500, 600, 700, 800, 900]
|
|
7014
|
+
* @uiEnumNames ["Thin", "Extra Light", "Light", "Normal", "Medium", "Semi Bold", "Bold", "Extra Bold", "Heavy"]
|
|
7015
|
+
*/
|
|
7016
|
+
"fontWeight"?: number;
|
|
7017
|
+
/**
|
|
7018
|
+
* The custom field key to display.
|
|
7019
|
+
* @uiName Custom field key
|
|
7020
|
+
* @uiWidget customFieldSelector
|
|
7021
|
+
*/
|
|
7022
|
+
"value": string;
|
|
7023
|
+
}
|
|
6989
7024
|
interface SqmUserInfoForm {
|
|
6990
7025
|
/**
|
|
6991
7026
|
* @uiName Address field label
|
|
@@ -8006,6 +8041,12 @@ declare global {
|
|
|
8006
8041
|
prototype: HTMLSqmTitledSectionElement;
|
|
8007
8042
|
new (): HTMLSqmTitledSectionElement;
|
|
8008
8043
|
};
|
|
8044
|
+
interface HTMLSqmUserAttributeElement extends Components.SqmUserAttribute, HTMLStencilElement {
|
|
8045
|
+
}
|
|
8046
|
+
var HTMLSqmUserAttributeElement: {
|
|
8047
|
+
prototype: HTMLSqmUserAttributeElement;
|
|
8048
|
+
new (): HTMLSqmUserAttributeElement;
|
|
8049
|
+
};
|
|
8009
8050
|
interface HTMLSqmUserInfoFormElement extends Components.SqmUserInfoForm, HTMLStencilElement {
|
|
8010
8051
|
}
|
|
8011
8052
|
var HTMLSqmUserInfoFormElement: {
|
|
@@ -8155,6 +8196,7 @@ declare global {
|
|
|
8155
8196
|
"sqm-timeline": HTMLSqmTimelineElement;
|
|
8156
8197
|
"sqm-timeline-entry": HTMLSqmTimelineEntryElement;
|
|
8157
8198
|
"sqm-titled-section": HTMLSqmTitledSectionElement;
|
|
8199
|
+
"sqm-user-attribute": HTMLSqmUserAttributeElement;
|
|
8158
8200
|
"sqm-user-info-form": HTMLSqmUserInfoFormElement;
|
|
8159
8201
|
"sqm-user-name": HTMLSqmUserNameElement;
|
|
8160
8202
|
"sqm-widget-verification": HTMLSqmWidgetVerificationElement;
|
|
@@ -8556,7 +8598,7 @@ declare namespace LocalJSX {
|
|
|
8556
8598
|
*/
|
|
8557
8599
|
"checkboxLabelLink"?: string;
|
|
8558
8600
|
/**
|
|
8559
|
-
* @uiName Checkbox label link
|
|
8601
|
+
* @uiName Checkbox label link lext
|
|
8560
8602
|
*/
|
|
8561
8603
|
"checkboxLabelLinkText"?: string;
|
|
8562
8604
|
/**
|
|
@@ -15056,6 +15098,40 @@ declare namespace LocalJSX {
|
|
|
15056
15098
|
*/
|
|
15057
15099
|
"textAlign"?: "left" | "center" | "right";
|
|
15058
15100
|
}
|
|
15101
|
+
interface SqmUserAttribute {
|
|
15102
|
+
/**
|
|
15103
|
+
* @uiName Color
|
|
15104
|
+
* @uiWidget color
|
|
15105
|
+
* @format color
|
|
15106
|
+
* @uiGroup Style
|
|
15107
|
+
*/
|
|
15108
|
+
"color"?: string;
|
|
15109
|
+
/**
|
|
15110
|
+
* @undocumented
|
|
15111
|
+
* @uiType object
|
|
15112
|
+
*/
|
|
15113
|
+
"demoData"?: DemoData<UserAttributeViewProps>;
|
|
15114
|
+
/**
|
|
15115
|
+
* Number in pixels.
|
|
15116
|
+
* @uiName Font size
|
|
15117
|
+
* @uiGroup Style
|
|
15118
|
+
*/
|
|
15119
|
+
"fontSize"?: number;
|
|
15120
|
+
/**
|
|
15121
|
+
* Font weight
|
|
15122
|
+
* @uiName Font weight
|
|
15123
|
+
* @uiGroup Style
|
|
15124
|
+
* @uiEnum [100, 200, 300, 400, 500, 600, 700, 800, 900]
|
|
15125
|
+
* @uiEnumNames ["Thin", "Extra Light", "Light", "Normal", "Medium", "Semi Bold", "Bold", "Extra Bold", "Heavy"]
|
|
15126
|
+
*/
|
|
15127
|
+
"fontWeight"?: number;
|
|
15128
|
+
/**
|
|
15129
|
+
* The custom field key to display.
|
|
15130
|
+
* @uiName Custom field key
|
|
15131
|
+
* @uiWidget customFieldSelector
|
|
15132
|
+
*/
|
|
15133
|
+
"value"?: string;
|
|
15134
|
+
}
|
|
15059
15135
|
interface SqmUserInfoForm {
|
|
15060
15136
|
/**
|
|
15061
15137
|
* @uiName Address field label
|
|
@@ -15455,6 +15531,7 @@ declare namespace LocalJSX {
|
|
|
15455
15531
|
"sqm-timeline": SqmTimeline;
|
|
15456
15532
|
"sqm-timeline-entry": SqmTimelineEntry;
|
|
15457
15533
|
"sqm-titled-section": SqmTitledSection;
|
|
15534
|
+
"sqm-user-attribute": SqmUserAttribute;
|
|
15458
15535
|
"sqm-user-info-form": SqmUserInfoForm;
|
|
15459
15536
|
"sqm-user-name": SqmUserName;
|
|
15460
15537
|
"sqm-widget-verification": SqmWidgetVerification;
|
|
@@ -15589,6 +15666,7 @@ declare module "@stencil/core" {
|
|
|
15589
15666
|
"sqm-timeline": LocalJSX.SqmTimeline & JSXBase.HTMLAttributes<HTMLSqmTimelineElement>;
|
|
15590
15667
|
"sqm-timeline-entry": LocalJSX.SqmTimelineEntry & JSXBase.HTMLAttributes<HTMLSqmTimelineEntryElement>;
|
|
15591
15668
|
"sqm-titled-section": LocalJSX.SqmTitledSection & JSXBase.HTMLAttributes<HTMLSqmTitledSectionElement>;
|
|
15669
|
+
"sqm-user-attribute": LocalJSX.SqmUserAttribute & JSXBase.HTMLAttributes<HTMLSqmUserAttributeElement>;
|
|
15592
15670
|
"sqm-user-info-form": LocalJSX.SqmUserInfoForm & JSXBase.HTMLAttributes<HTMLSqmUserInfoFormElement>;
|
|
15593
15671
|
"sqm-user-name": LocalJSX.SqmUserName & JSXBase.HTMLAttributes<HTMLSqmUserNameElement>;
|
|
15594
15672
|
"sqm-widget-verification": LocalJSX.SqmWidgetVerification & JSXBase.HTMLAttributes<HTMLSqmWidgetVerificationElement>;
|
package/docs/docs.docx
CHANGED
|
Binary file
|