@saasquatch/mint-components 1.15.0-20 → 1.15.0-22
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-f641a7de.js → ShadowViewAddon-d7977499.js} +8 -3
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/mint-components.cjs.js +1 -1
- package/dist/cjs/sqm-big-stat_41.cjs.entry.js +31 -7
- package/dist/cjs/sqm-stencilbook.cjs.entry.js +1 -1
- package/dist/collection/components/sqm-divided-layout/sqm-divided-layout-view.js +11 -6
- package/dist/collection/components/sqm-divided-layout/sqm-divided-layout.js +28 -1
- package/dist/collection/components/sqm-portal-frame/sqm-portal-frame-view.js +8 -3
- package/dist/collection/components/sqm-portal-frame/sqm-portal-frame.js +68 -1
- package/dist/collection/components/sqm-portal-frame/usePortalFrame.js +2 -0
- package/dist/collection/components/sqm-share-button/sqm-share-button.js +1 -1
- package/dist/esm/{ShadowViewAddon-908b4435.js → ShadowViewAddon-70b09bad.js} +8 -3
- package/dist/esm/loader.js +1 -1
- package/dist/esm/mint-components.js +1 -1
- package/dist/esm/sqm-big-stat_41.entry.js +31 -7
- package/dist/esm/sqm-stencilbook.entry.js +1 -1
- package/dist/esm-es5/ShadowViewAddon-70b09bad.js +1 -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_41.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-d2beb502.js → p-1dc920f0.js} +1 -1
- package/dist/mint-components/p-456a43e1.system.js +1 -0
- package/dist/mint-components/p-5e617dd6.system.js +1 -1
- package/dist/mint-components/{p-9980c750.system.entry.js → p-aace41ea.system.entry.js} +1 -1
- package/dist/mint-components/p-ac095a53.system.entry.js +1 -0
- package/dist/mint-components/{p-a558f6db.entry.js → p-e53acd7c.entry.js} +11 -11
- package/dist/mint-components/{p-fbdbcb13.entry.js → p-ecb29723.entry.js} +1 -1
- package/dist/types/components/sqm-divided-layout/sqm-divided-layout-view.d.ts +2 -1
- package/dist/types/components/sqm-divided-layout/sqm-divided-layout.d.ts +7 -0
- package/dist/types/components/sqm-portal-frame/sqm-portal-frame-view.d.ts +2 -0
- package/dist/types/components/sqm-portal-frame/sqm-portal-frame.d.ts +13 -0
- package/dist/types/components.d.ts +40 -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/ShadowViewAddon-908b4435.js +0 -1
- package/dist/mint-components/p-2271dff7.system.js +0 -1
- package/dist/mint-components/p-87c18a1c.system.entry.js +0 -1
|
@@ -2,9 +2,10 @@ import { VNode } from "../../stencil-public-runtime";
|
|
|
2
2
|
interface DividedLayoutViewProps {
|
|
3
3
|
direction: "row" | "column";
|
|
4
4
|
contentAreaWidth?: string | null;
|
|
5
|
-
dividerStyle
|
|
5
|
+
dividerStyle?: string;
|
|
6
6
|
backgroundColor?: string;
|
|
7
7
|
borderless?: boolean;
|
|
8
|
+
borderColor?: string;
|
|
8
9
|
}
|
|
9
10
|
export declare function DividedLayoutView(props: DividedLayoutViewProps, children: VNode): any;
|
|
10
11
|
export {};
|
|
@@ -22,6 +22,7 @@ export declare class DividedLayout {
|
|
|
22
22
|
*/
|
|
23
23
|
contentAreaWidth: string | null;
|
|
24
24
|
/**
|
|
25
|
+
* @undocumented
|
|
25
26
|
* Uses Shorthand CSS border syntax allowing specification of thickness, fill style and color.
|
|
26
27
|
* @uiName Border style
|
|
27
28
|
*/
|
|
@@ -32,6 +33,12 @@ export declare class DividedLayout {
|
|
|
32
33
|
* @uiWidget color
|
|
33
34
|
*/
|
|
34
35
|
backgroundColor?: string;
|
|
36
|
+
/**
|
|
37
|
+
* Color of the divider (defaults to default text color if none is set)
|
|
38
|
+
* @uiName Divider Background Color
|
|
39
|
+
* @uiWidget color
|
|
40
|
+
*/
|
|
41
|
+
borderColor?: string;
|
|
35
42
|
constructor();
|
|
36
43
|
disconnectedCallback(): void;
|
|
37
44
|
render(): any;
|
|
@@ -16,6 +16,19 @@ export declare class PortalFrame {
|
|
|
16
16
|
* @uiType string
|
|
17
17
|
*/
|
|
18
18
|
backgroundColor: string;
|
|
19
|
+
/**
|
|
20
|
+
* Borders placed to seperate the header and footer from the body content.
|
|
21
|
+
* @uiName Border
|
|
22
|
+
* @uiType string
|
|
23
|
+
*/
|
|
24
|
+
border: string;
|
|
25
|
+
/**
|
|
26
|
+
* Background color for the header and footer.
|
|
27
|
+
* @uiName Header and Footer Background Color
|
|
28
|
+
* @uiWidget color
|
|
29
|
+
* @uiType string
|
|
30
|
+
*/
|
|
31
|
+
headerAndFooterBackgroundColor: string;
|
|
19
32
|
/**
|
|
20
33
|
* @undocumented
|
|
21
34
|
* @uiType object
|
|
@@ -673,6 +673,12 @@ export namespace Components {
|
|
|
673
673
|
* @uiWidget color
|
|
674
674
|
*/
|
|
675
675
|
"backgroundColor"?: string;
|
|
676
|
+
/**
|
|
677
|
+
* Color of the divider (defaults to default text color if none is set)
|
|
678
|
+
* @uiName Divider Background Color
|
|
679
|
+
* @uiWidget color
|
|
680
|
+
*/
|
|
681
|
+
"borderColor"?: string;
|
|
676
682
|
/**
|
|
677
683
|
* Overrides max-width of content area
|
|
678
684
|
* @uiName Content Area Width
|
|
@@ -687,7 +693,7 @@ export namespace Components {
|
|
|
687
693
|
*/
|
|
688
694
|
"direction": "row" | "column";
|
|
689
695
|
/**
|
|
690
|
-
* Uses Shorthand CSS border syntax allowing specification of thickness, fill style and color.
|
|
696
|
+
* @undocumented Uses Shorthand CSS border syntax allowing specification of thickness, fill style and color.
|
|
691
697
|
* @uiName Border style
|
|
692
698
|
*/
|
|
693
699
|
"dividerStyle": string;
|
|
@@ -2457,11 +2463,24 @@ export namespace Components {
|
|
|
2457
2463
|
* @uiType string
|
|
2458
2464
|
*/
|
|
2459
2465
|
"backgroundColor": string;
|
|
2466
|
+
/**
|
|
2467
|
+
* Borders placed to seperate the header and footer from the body content.
|
|
2468
|
+
* @uiName Border
|
|
2469
|
+
* @uiType string
|
|
2470
|
+
*/
|
|
2471
|
+
"border": string;
|
|
2460
2472
|
/**
|
|
2461
2473
|
* @undocumented
|
|
2462
2474
|
* @uiType object
|
|
2463
2475
|
*/
|
|
2464
2476
|
"demoData"?: DemoData<PortalFrameViewProps>;
|
|
2477
|
+
/**
|
|
2478
|
+
* Background color for the header and footer.
|
|
2479
|
+
* @uiName Header and Footer Background Color
|
|
2480
|
+
* @uiWidget color
|
|
2481
|
+
* @uiType string
|
|
2482
|
+
*/
|
|
2483
|
+
"headerAndFooterBackgroundColor": string;
|
|
2465
2484
|
/**
|
|
2466
2485
|
* @undocumented
|
|
2467
2486
|
*/
|
|
@@ -7919,6 +7938,12 @@ declare namespace LocalJSX {
|
|
|
7919
7938
|
* @uiWidget color
|
|
7920
7939
|
*/
|
|
7921
7940
|
"backgroundColor"?: string;
|
|
7941
|
+
/**
|
|
7942
|
+
* Color of the divider (defaults to default text color if none is set)
|
|
7943
|
+
* @uiName Divider Background Color
|
|
7944
|
+
* @uiWidget color
|
|
7945
|
+
*/
|
|
7946
|
+
"borderColor"?: string;
|
|
7922
7947
|
/**
|
|
7923
7948
|
* Overrides max-width of content area
|
|
7924
7949
|
* @uiName Content Area Width
|
|
@@ -7933,7 +7958,7 @@ declare namespace LocalJSX {
|
|
|
7933
7958
|
*/
|
|
7934
7959
|
"direction"?: "row" | "column";
|
|
7935
7960
|
/**
|
|
7936
|
-
* Uses Shorthand CSS border syntax allowing specification of thickness, fill style and color.
|
|
7961
|
+
* @undocumented Uses Shorthand CSS border syntax allowing specification of thickness, fill style and color.
|
|
7937
7962
|
* @uiName Border style
|
|
7938
7963
|
*/
|
|
7939
7964
|
"dividerStyle"?: string;
|
|
@@ -9698,11 +9723,24 @@ declare namespace LocalJSX {
|
|
|
9698
9723
|
* @uiType string
|
|
9699
9724
|
*/
|
|
9700
9725
|
"backgroundColor"?: string;
|
|
9726
|
+
/**
|
|
9727
|
+
* Borders placed to seperate the header and footer from the body content.
|
|
9728
|
+
* @uiName Border
|
|
9729
|
+
* @uiType string
|
|
9730
|
+
*/
|
|
9731
|
+
"border"?: string;
|
|
9701
9732
|
/**
|
|
9702
9733
|
* @undocumented
|
|
9703
9734
|
* @uiType object
|
|
9704
9735
|
*/
|
|
9705
9736
|
"demoData"?: DemoData<PortalFrameViewProps>;
|
|
9737
|
+
/**
|
|
9738
|
+
* Background color for the header and footer.
|
|
9739
|
+
* @uiName Header and Footer Background Color
|
|
9740
|
+
* @uiWidget color
|
|
9741
|
+
* @uiType string
|
|
9742
|
+
*/
|
|
9743
|
+
"headerAndFooterBackgroundColor"?: string;
|
|
9706
9744
|
/**
|
|
9707
9745
|
* @undocumented
|
|
9708
9746
|
*/
|
package/docs/docs.docx
CHANGED
|
Binary file
|