@symbo.ls/uikit 2.11.189 → 2.11.192
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/index.cjs.js +76 -43
- package/dist/index.cjs.js.map +2 -2
- package/package.json +2 -2
package/dist/index.cjs.js
CHANGED
|
@@ -9427,6 +9427,7 @@ __export(domql_exports, {
|
|
|
9427
9427
|
UnitValueWithTitle: () => UnitValueWithTitle,
|
|
9428
9428
|
UploadButton: () => UploadButton,
|
|
9429
9429
|
UploadButtonWithIcon: () => UploadButtonWithIcon,
|
|
9430
|
+
UploadIcon: () => UploadIcon,
|
|
9430
9431
|
UploadImage: () => UploadImage,
|
|
9431
9432
|
UploadLabel: () => UploadLabel,
|
|
9432
9433
|
UploadLabel2: () => UploadLabel2,
|
|
@@ -12534,7 +12535,7 @@ var Input = {
|
|
|
12534
12535
|
props: {
|
|
12535
12536
|
border: "none",
|
|
12536
12537
|
type: "input",
|
|
12537
|
-
|
|
12538
|
+
theme: "tertiary",
|
|
12538
12539
|
fontSize: "A",
|
|
12539
12540
|
round: "C",
|
|
12540
12541
|
lineHeight: 1,
|
|
@@ -12776,16 +12777,9 @@ var Select = {
|
|
|
12776
12777
|
var Field = {
|
|
12777
12778
|
extend: IconText,
|
|
12778
12779
|
props: {
|
|
12779
|
-
minWidth: "G",
|
|
12780
|
-
maxWidth: "G",
|
|
12781
|
-
minHeight: "C+X",
|
|
12782
12780
|
align: "center flex-start",
|
|
12783
12781
|
gap: "Y+W",
|
|
12784
12782
|
boxSizing: "border-box",
|
|
12785
|
-
padding: "- Z+W",
|
|
12786
|
-
round: "Y+W",
|
|
12787
|
-
border: "1px solid #3F3F43",
|
|
12788
|
-
overflow: "hidden",
|
|
12789
12783
|
position: "relative",
|
|
12790
12784
|
Button: {
|
|
12791
12785
|
padding: "0",
|
|
@@ -12795,15 +12789,18 @@ var Field = {
|
|
|
12795
12789
|
}
|
|
12796
12790
|
},
|
|
12797
12791
|
Input: {
|
|
12798
|
-
padding: "
|
|
12792
|
+
padding: "- Z+W",
|
|
12793
|
+
round: "Y+W",
|
|
12794
|
+
border: "1px solid #3F3F43",
|
|
12795
|
+
minWidth: "G",
|
|
12796
|
+
maxWidth: "100%",
|
|
12797
|
+
minHeight: "C+X",
|
|
12798
|
+
width: "100%",
|
|
12799
12799
|
background: "transparent",
|
|
12800
|
-
round: "0",
|
|
12801
12800
|
color: "white",
|
|
12802
12801
|
fontFamily: "avenir",
|
|
12803
12802
|
placeholder: "Placeholder",
|
|
12804
12803
|
flex: "1",
|
|
12805
|
-
minHeight: "100%",
|
|
12806
|
-
outline: "none !important",
|
|
12807
12804
|
fontWeight: "400"
|
|
12808
12805
|
}
|
|
12809
12806
|
};
|
|
@@ -12865,12 +12862,7 @@ var NumberField = {
|
|
|
12865
12862
|
minWidth: "D+Y2",
|
|
12866
12863
|
maxWidth: "D+Y2",
|
|
12867
12864
|
minHeight: "D+Y2",
|
|
12868
|
-
padding: "0"
|
|
12869
|
-
style: {
|
|
12870
|
-
"input[type=number]::-webkit-inner-spin-button": {
|
|
12871
|
-
"-webkit-appearance": " none"
|
|
12872
|
-
}
|
|
12873
|
-
}
|
|
12865
|
+
padding: "0"
|
|
12874
12866
|
},
|
|
12875
12867
|
Input: null,
|
|
12876
12868
|
NumberInput: {
|
|
@@ -12878,10 +12870,12 @@ var NumberField = {
|
|
|
12878
12870
|
placeholder: "0",
|
|
12879
12871
|
boxSize: "100% 100%",
|
|
12880
12872
|
textAlign: "center",
|
|
12881
|
-
|
|
12873
|
+
round: "0",
|
|
12882
12874
|
background: "transparent",
|
|
12883
|
-
|
|
12884
|
-
|
|
12875
|
+
color: "white",
|
|
12876
|
+
"::-webkit-inner-spin-button": {
|
|
12877
|
+
"-webkit-appearance": " none"
|
|
12878
|
+
}
|
|
12885
12879
|
}
|
|
12886
12880
|
};
|
|
12887
12881
|
|
|
@@ -15281,29 +15275,25 @@ var ResetPassword = {
|
|
|
15281
15275
|
Content: {
|
|
15282
15276
|
extend: CommonForm,
|
|
15283
15277
|
props: { gap: "B1" },
|
|
15284
|
-
...[
|
|
15285
|
-
{
|
|
15286
|
-
|
|
15287
|
-
|
|
15288
|
-
|
|
15289
|
-
},
|
|
15290
|
-
{
|
|
15291
|
-
|
|
15292
|
-
|
|
15293
|
-
|
|
15294
|
-
Icon: { props: { name: "info" } },
|
|
15295
|
-
text: "8 character minimum"
|
|
15296
|
-
}
|
|
15297
|
-
},
|
|
15298
|
-
{
|
|
15299
|
-
Title: { text: "Confirm new password" },
|
|
15300
|
-
Field: {},
|
|
15301
|
-
Hint: {
|
|
15302
|
-
Icon: { props: { name: "info" } },
|
|
15303
|
-
text: "8 character minimum"
|
|
15304
|
-
}
|
|
15278
|
+
...[{
|
|
15279
|
+
Title: { text: "Old password" },
|
|
15280
|
+
Field: {},
|
|
15281
|
+
Hint: null
|
|
15282
|
+
}, {
|
|
15283
|
+
Title: { text: "New password" },
|
|
15284
|
+
Field: {},
|
|
15285
|
+
Hint: {
|
|
15286
|
+
Icon: { props: { name: "info" } },
|
|
15287
|
+
text: "8 character minimum"
|
|
15305
15288
|
}
|
|
15306
|
-
|
|
15289
|
+
}, {
|
|
15290
|
+
Title: { text: "Confirm new password" },
|
|
15291
|
+
Field: {},
|
|
15292
|
+
Hint: {
|
|
15293
|
+
Icon: { props: { name: "info" } },
|
|
15294
|
+
text: "8 character minimum"
|
|
15295
|
+
}
|
|
15296
|
+
}]
|
|
15307
15297
|
},
|
|
15308
15298
|
Footer: {
|
|
15309
15299
|
props: { justifyContent: "flex-end" },
|
|
@@ -15601,6 +15591,49 @@ var UploadImage = {
|
|
|
15601
15591
|
fontSize: "D"
|
|
15602
15592
|
}
|
|
15603
15593
|
};
|
|
15594
|
+
var UploadIcon = {
|
|
15595
|
+
extend: [Focusable, Flex],
|
|
15596
|
+
tag: "label",
|
|
15597
|
+
props: {
|
|
15598
|
+
position: "relative",
|
|
15599
|
+
theme: "tertiary",
|
|
15600
|
+
flow: "column",
|
|
15601
|
+
align: "center center",
|
|
15602
|
+
round: "A",
|
|
15603
|
+
cursor: "pointer",
|
|
15604
|
+
border: "1.6px, dashed, white 0.1",
|
|
15605
|
+
padding: "B B2"
|
|
15606
|
+
},
|
|
15607
|
+
Input: {
|
|
15608
|
+
props: {
|
|
15609
|
+
type: "file",
|
|
15610
|
+
position: "absolute",
|
|
15611
|
+
inset: "0 0 0 0",
|
|
15612
|
+
opacity: "0",
|
|
15613
|
+
visibility: "hidden"
|
|
15614
|
+
}
|
|
15615
|
+
},
|
|
15616
|
+
Icon: {
|
|
15617
|
+
props: {
|
|
15618
|
+
name: "upload",
|
|
15619
|
+
fontSize: "B",
|
|
15620
|
+
opacity: ".2"
|
|
15621
|
+
}
|
|
15622
|
+
},
|
|
15623
|
+
P: {
|
|
15624
|
+
props: {
|
|
15625
|
+
text: " or click and upload from your computer",
|
|
15626
|
+
flexFlow: "column",
|
|
15627
|
+
flexAlign: "center center",
|
|
15628
|
+
opacity: ".22",
|
|
15629
|
+
margin: "0"
|
|
15630
|
+
},
|
|
15631
|
+
Span: {
|
|
15632
|
+
text: "Drag and drop your font file",
|
|
15633
|
+
display: "block"
|
|
15634
|
+
}
|
|
15635
|
+
}
|
|
15636
|
+
};
|
|
15604
15637
|
|
|
15605
15638
|
// Upload/UploadButton.js
|
|
15606
15639
|
var UploadButton = {
|