@saasquatch/mint-components 2.1.13 → 2.1.14-2
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-big-stat_45.cjs.entry.js → sqm-big-stat_46.cjs.entry.js} +73 -1
- package/dist/cjs/sqm-stencilbook.cjs.entry.js +54 -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 +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/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} +73 -2
- package/dist/esm/sqm-stencilbook.entry.js +54 -0
- 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-b4fa20ce.entry.js → p-8285869e.entry.js} +2 -2
- package/dist/mint-components/{p-bbbd6e44.entry.js → p-be12607e.entry.js} +29 -21
- package/dist/mint-components/{p-3ca77515.system.entry.js → p-bf188b72.system.entry.js} +1 -1
- package/dist/mint-components/p-ca098be1.system.js +1 -1
- package/dist/mint-components/p-fb804001.system.entry.js +1 -0
- 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 +78 -0
- 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-37883f0c.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 {
|
|
@@ -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 | number;
|
|
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;
|
|
@@ -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 | number;
|
|
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
|