impaktapps-ui-builder 1.0.149 → 1.0.150
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/impaktapps-ui-builder.es.js +131 -182
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/card.d.ts +173 -197
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +140 -186
|
@@ -11559,184 +11559,37 @@ function Card(theme) {
|
|
|
11559
11559
|
type: "WrapperLayout",
|
|
11560
11560
|
config: {
|
|
11561
11561
|
main: {},
|
|
11562
|
-
|
|
11563
|
-
|
|
11564
|
-
|
|
11565
|
-
|
|
11566
|
-
|
|
11567
|
-
|
|
11568
|
-
|
|
11569
|
-
|
|
11570
|
-
|
|
11571
|
-
|
|
11572
|
-
|
|
11573
|
-
|
|
11574
|
-
|
|
11575
|
-
|
|
11576
|
-
|
|
11577
|
-
|
|
11578
|
-
|
|
11579
|
-
|
|
11580
|
-
|
|
11581
|
-
|
|
11582
|
-
|
|
11583
|
-
|
|
11584
|
-
|
|
11562
|
+
style: {
|
|
11563
|
+
wrapperStyle: {
|
|
11564
|
+
position: "relative",
|
|
11565
|
+
top: "50%",
|
|
11566
|
+
transform: "translateY(-50%)",
|
|
11567
|
+
marginBottom: 0,
|
|
11568
|
+
borderRadius: "12px",
|
|
11569
|
+
fontFamily: "poppins"
|
|
11570
|
+
},
|
|
11571
|
+
componentsBoxStyle: {
|
|
11572
|
+
boxShadow: "0 0 6px 1px rgba(149, 147, 147, 0.25)",
|
|
11573
|
+
flexDirection: "column",
|
|
11574
|
+
overflow: "hidden",
|
|
11575
|
+
flexWrap: "nowrap",
|
|
11576
|
+
width: "100% !important",
|
|
11577
|
+
background: "transparent",
|
|
11578
|
+
borderRadius: "12px",
|
|
11579
|
+
padding: "20px 20px 20px 14px",
|
|
11580
|
+
height: "100%",
|
|
11581
|
+
minHeight: "100px",
|
|
11582
|
+
position: "relative",
|
|
11583
|
+
marginLeft: "0px",
|
|
11584
|
+
"&: hover": {
|
|
11585
|
+
background: `${theme.palette.primary.main}`,
|
|
11586
|
+
color: `${theme.palette.primary.contrastText}`
|
|
11585
11587
|
}
|
|
11586
11588
|
}
|
|
11587
11589
|
},
|
|
11588
|
-
layout: { xs: 12, sm: 12, md:
|
|
11590
|
+
layout: { xs: 12, sm: 12, md: 3, lg: 3 }
|
|
11589
11591
|
},
|
|
11590
11592
|
elements: [
|
|
11591
|
-
{
|
|
11592
|
-
type: "HorizontalLayout",
|
|
11593
|
-
config: {
|
|
11594
|
-
layout: 9
|
|
11595
|
-
},
|
|
11596
|
-
elements: [
|
|
11597
|
-
{
|
|
11598
|
-
type: "WrapperLayout",
|
|
11599
|
-
config: {
|
|
11600
|
-
main: {
|
|
11601
|
-
columnSpacing: 0,
|
|
11602
|
-
gap: 0
|
|
11603
|
-
},
|
|
11604
|
-
wrapperStyle: {
|
|
11605
|
-
background: "transparent",
|
|
11606
|
-
marginBottom: 0
|
|
11607
|
-
},
|
|
11608
|
-
componentsBoxStyle: {
|
|
11609
|
-
flexDirection: "column",
|
|
11610
|
-
flexWrap: "nowrap",
|
|
11611
|
-
width: "100%",
|
|
11612
|
-
height: "inherit",
|
|
11613
|
-
background: "transparent",
|
|
11614
|
-
borderRadius: "0px",
|
|
11615
|
-
paddingRight: 0
|
|
11616
|
-
},
|
|
11617
|
-
layout: 12
|
|
11618
|
-
},
|
|
11619
|
-
elements: [
|
|
11620
|
-
{
|
|
11621
|
-
type: "WrapperLayout",
|
|
11622
|
-
config: {
|
|
11623
|
-
main: {
|
|
11624
|
-
columnSpacing: 0,
|
|
11625
|
-
gap: 0
|
|
11626
|
-
},
|
|
11627
|
-
wrapperStyle: {
|
|
11628
|
-
background: "transparent",
|
|
11629
|
-
marginBottom: 0
|
|
11630
|
-
},
|
|
11631
|
-
componentsBoxStyle: {
|
|
11632
|
-
flexDirection: "row",
|
|
11633
|
-
flexWrap: "nowrap",
|
|
11634
|
-
width: "100%",
|
|
11635
|
-
height: "0",
|
|
11636
|
-
background: "transparent",
|
|
11637
|
-
borderRadius: "0px",
|
|
11638
|
-
marginLeft: "-10px",
|
|
11639
|
-
marginTop: "-8px",
|
|
11640
|
-
justifyContent: "start",
|
|
11641
|
-
position: "relative"
|
|
11642
|
-
},
|
|
11643
|
-
layout: 12
|
|
11644
|
-
},
|
|
11645
|
-
elements: [
|
|
11646
|
-
{
|
|
11647
|
-
type: "Control",
|
|
11648
|
-
scope: "#/properties/programType",
|
|
11649
|
-
config: {
|
|
11650
|
-
main: {
|
|
11651
|
-
heading: ""
|
|
11652
|
-
},
|
|
11653
|
-
style: {
|
|
11654
|
-
color: "black",
|
|
11655
|
-
display: "flex",
|
|
11656
|
-
fontSize: { xs: "24px", md: "28px" },
|
|
11657
|
-
fontWeight: "bold",
|
|
11658
|
-
background: "inherit",
|
|
11659
|
-
justifyContent: "flex-start",
|
|
11660
|
-
width: "auto",
|
|
11661
|
-
margin: "-8px",
|
|
11662
|
-
marginLeft: "-24px",
|
|
11663
|
-
height: 0
|
|
11664
|
-
}
|
|
11665
|
-
},
|
|
11666
|
-
options: {
|
|
11667
|
-
widget: "Box"
|
|
11668
|
-
}
|
|
11669
|
-
},
|
|
11670
|
-
{
|
|
11671
|
-
type: "Control",
|
|
11672
|
-
scope: "#/properties/programType",
|
|
11673
|
-
config: {
|
|
11674
|
-
main: {
|
|
11675
|
-
heading: "5000.00"
|
|
11676
|
-
},
|
|
11677
|
-
style: {
|
|
11678
|
-
color: "black",
|
|
11679
|
-
display: "flex",
|
|
11680
|
-
fontSize: { xs: "24px", md: "25px" },
|
|
11681
|
-
fontWeight: "bold",
|
|
11682
|
-
background: "inherit",
|
|
11683
|
-
justifyContent: "flex-start",
|
|
11684
|
-
width: "auto",
|
|
11685
|
-
margin: "-8px",
|
|
11686
|
-
marginTop: "-6px",
|
|
11687
|
-
position: "absolute",
|
|
11688
|
-
left: "7px",
|
|
11689
|
-
whiteSpace: "nowrap",
|
|
11690
|
-
overflowX: "auto",
|
|
11691
|
-
overflowY: "hidden",
|
|
11692
|
-
scrollbarWidth: "none",
|
|
11693
|
-
msOverflowStyle: "none",
|
|
11694
|
-
maxWidth: "calc(100% + 20px)",
|
|
11695
|
-
"&::-webkit-scrollbar": {
|
|
11696
|
-
display: "none"
|
|
11697
|
-
}
|
|
11698
|
-
}
|
|
11699
|
-
},
|
|
11700
|
-
options: {
|
|
11701
|
-
widget: "Box"
|
|
11702
|
-
}
|
|
11703
|
-
}
|
|
11704
|
-
]
|
|
11705
|
-
},
|
|
11706
|
-
{
|
|
11707
|
-
type: "Control",
|
|
11708
|
-
scope: "#/properties/programType",
|
|
11709
|
-
config: {
|
|
11710
|
-
main: {
|
|
11711
|
-
heading: "Total Earnings"
|
|
11712
|
-
},
|
|
11713
|
-
style: {
|
|
11714
|
-
color: "black",
|
|
11715
|
-
fontSize: "16px",
|
|
11716
|
-
justifyContent: "center",
|
|
11717
|
-
whiteSpace: "nowrap",
|
|
11718
|
-
overflowX: "auto",
|
|
11719
|
-
overflowY: "hidden",
|
|
11720
|
-
scrollbarWidth: "none",
|
|
11721
|
-
msOverflowStyle: "none",
|
|
11722
|
-
background: "inherit",
|
|
11723
|
-
width: "calc(100% + 8px)",
|
|
11724
|
-
margin: "-8px",
|
|
11725
|
-
marginTop: { xs: "16px", md: "20px" },
|
|
11726
|
-
"&::-webkit-scrollbar": {
|
|
11727
|
-
display: "none"
|
|
11728
|
-
}
|
|
11729
|
-
},
|
|
11730
|
-
layout: 12
|
|
11731
|
-
},
|
|
11732
|
-
options: {
|
|
11733
|
-
widget: "Box"
|
|
11734
|
-
}
|
|
11735
|
-
}
|
|
11736
|
-
]
|
|
11737
|
-
}
|
|
11738
|
-
]
|
|
11739
|
-
},
|
|
11740
11593
|
{
|
|
11741
11594
|
type: "Control",
|
|
11742
11595
|
scope: "#/properties/programType",
|
|
@@ -11746,23 +11599,119 @@ function Card(theme) {
|
|
|
11746
11599
|
},
|
|
11747
11600
|
style: {
|
|
11748
11601
|
containerStyle: {
|
|
11749
|
-
|
|
11602
|
+
position: "absolute",
|
|
11603
|
+
color: "inherit",
|
|
11604
|
+
top: "4px",
|
|
11605
|
+
right: "4px",
|
|
11750
11606
|
display: "flex",
|
|
11751
|
-
justifyContent: "end"
|
|
11607
|
+
justifyContent: "flex-end",
|
|
11608
|
+
alignItems: "flex-start"
|
|
11752
11609
|
},
|
|
11753
11610
|
imageStyle: {
|
|
11754
|
-
|
|
11755
|
-
|
|
11756
|
-
|
|
11757
|
-
|
|
11758
|
-
|
|
11611
|
+
color: "inherit",
|
|
11612
|
+
width: "32px",
|
|
11613
|
+
height: "32px",
|
|
11614
|
+
padding: "0px",
|
|
11615
|
+
margin: "0px"
|
|
11759
11616
|
}
|
|
11760
|
-
}
|
|
11761
|
-
layout: 3
|
|
11617
|
+
}
|
|
11762
11618
|
},
|
|
11763
11619
|
options: {
|
|
11764
11620
|
widget: "Image"
|
|
11765
11621
|
}
|
|
11622
|
+
},
|
|
11623
|
+
{
|
|
11624
|
+
type: "Control",
|
|
11625
|
+
scope: "#/properties/programType",
|
|
11626
|
+
config: {
|
|
11627
|
+
main: {
|
|
11628
|
+
heading: "Total Earnings"
|
|
11629
|
+
},
|
|
11630
|
+
style: {
|
|
11631
|
+
color: "inherit",
|
|
11632
|
+
fontSize: "16px",
|
|
11633
|
+
fontWeight: 300,
|
|
11634
|
+
fontFamily: "Poppins",
|
|
11635
|
+
justifyContent: "flex-start",
|
|
11636
|
+
background: "inherit",
|
|
11637
|
+
position: "absolute",
|
|
11638
|
+
top: "8px",
|
|
11639
|
+
left: "12px",
|
|
11640
|
+
display: "flex",
|
|
11641
|
+
maxWidth: "200px",
|
|
11642
|
+
whiteSpace: "nowrap",
|
|
11643
|
+
overflowX: "auto",
|
|
11644
|
+
scrollbarWidth: "none",
|
|
11645
|
+
"&::-webkit-scrollbar": {
|
|
11646
|
+
display: "none"
|
|
11647
|
+
}
|
|
11648
|
+
}
|
|
11649
|
+
},
|
|
11650
|
+
options: {
|
|
11651
|
+
widget: "Box"
|
|
11652
|
+
}
|
|
11653
|
+
},
|
|
11654
|
+
{
|
|
11655
|
+
type: "Control",
|
|
11656
|
+
scope: "#/properties/programType",
|
|
11657
|
+
config: {
|
|
11658
|
+
main: {
|
|
11659
|
+
heading: "5000.00"
|
|
11660
|
+
},
|
|
11661
|
+
style: {
|
|
11662
|
+
color: "inherit",
|
|
11663
|
+
display: "flex",
|
|
11664
|
+
fontSize: { xs: "22px", md: "40px" },
|
|
11665
|
+
fontWeight: 600,
|
|
11666
|
+
background: "inherit",
|
|
11667
|
+
justifyContent: "flex-start",
|
|
11668
|
+
width: "100%",
|
|
11669
|
+
margin: "0px",
|
|
11670
|
+
marginBottom: "4px",
|
|
11671
|
+
marginTop: "8px",
|
|
11672
|
+
lineHeight: "1",
|
|
11673
|
+
maxWidth: "300px",
|
|
11674
|
+
whiteSpace: "nowrap",
|
|
11675
|
+
overflowX: "auto",
|
|
11676
|
+
overflowY: "hidden",
|
|
11677
|
+
scrollbarWidth: "none",
|
|
11678
|
+
"&::-webkit-scrollbar": {
|
|
11679
|
+
display: "none"
|
|
11680
|
+
}
|
|
11681
|
+
}
|
|
11682
|
+
},
|
|
11683
|
+
options: {
|
|
11684
|
+
widget: "Box"
|
|
11685
|
+
}
|
|
11686
|
+
},
|
|
11687
|
+
{
|
|
11688
|
+
type: "Control",
|
|
11689
|
+
scope: "#/properties/programType",
|
|
11690
|
+
config: {
|
|
11691
|
+
main: {
|
|
11692
|
+
heading: "Increased from last month"
|
|
11693
|
+
},
|
|
11694
|
+
style: {
|
|
11695
|
+
color: "inherit",
|
|
11696
|
+
fontSize: "12px",
|
|
11697
|
+
fontWeight: "400",
|
|
11698
|
+
justifyContent: "flex-start",
|
|
11699
|
+
background: "inherit",
|
|
11700
|
+
margin: "0px",
|
|
11701
|
+
paddingLeft: "2px",
|
|
11702
|
+
marginBottom: "8px",
|
|
11703
|
+
maxWidth: "200px",
|
|
11704
|
+
whiteSpace: "nowrap",
|
|
11705
|
+
overflowX: "auto",
|
|
11706
|
+
scrollbarWidth: "none",
|
|
11707
|
+
"&::-webkit-scrollbar": {
|
|
11708
|
+
display: "none"
|
|
11709
|
+
}
|
|
11710
|
+
}
|
|
11711
|
+
},
|
|
11712
|
+
options: {
|
|
11713
|
+
widget: "Box"
|
|
11714
|
+
}
|
|
11766
11715
|
}
|
|
11767
11716
|
]
|
|
11768
11717
|
};
|