Skip to content

Commit 05c541e

Browse files
committed
Merge branch 'release/0.3.4'
2 parents 1658809 + 2f1c294 commit 05c541e

11 files changed

+52
-52
lines changed

dist/craftui.cjs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ var script$3 = {
475475
default: null
476476
},
477477
value: {
478-
type: String,
478+
type: String | Number,
479479
default: null
480480
}
481481
},

dist/craftui.css

+42-42
Original file line numberDiff line numberDiff line change
@@ -1014,48 +1014,6 @@ body.rtl .c-radio input {
10141014
font-size: .875rem;
10151015
}
10161016

1017-
.c-textbox .wrapper {
1018-
position: relative;
1019-
}
1020-
1021-
.c-textbox .wrapper input.c-textbox.w-full {
1022-
width: 100%;
1023-
}
1024-
1025-
.c-textbox .wrapper .text-red-dark {
1026-
color: #cc1f1a;
1027-
}
1028-
1029-
.c-textbox .wrapper .max {
1030-
margin-top: .5rem;
1031-
}
1032-
1033-
body.ltr .c-textbox .wrapper .max {
1034-
padding-right: .25rem;
1035-
}
1036-
1037-
body.rtl .c-textbox .wrapper .max {
1038-
padding-left: .25rem;
1039-
}
1040-
1041-
.c-textbox .wrapper .max.floating {
1042-
position: absolute;
1043-
font-size: .75rem;
1044-
text-align: right;
1045-
}
1046-
1047-
.c-textbox .wrapper .max.text-grey {
1048-
color: #b8c2cc;
1049-
}
1050-
1051-
.c-textbox .wrapper .max.text-orange {
1052-
color: #f6993f;
1053-
}
1054-
1055-
.c-textbox .wrapper .max.text-red {
1056-
color: #e3342f;
1057-
}
1058-
10591017
.c-spinner {
10601018
display: inline-block;
10611019
}
@@ -1107,3 +1065,45 @@ body.rtl .c-textbox .wrapper .max {
11071065
transform: rotate(1turn);
11081066
}
11091067
}
1068+
1069+
.c-textbox .wrapper {
1070+
position: relative;
1071+
}
1072+
1073+
.c-textbox .wrapper input.c-textbox.w-full {
1074+
width: 100%;
1075+
}
1076+
1077+
.c-textbox .wrapper .text-red-dark {
1078+
color: #cc1f1a;
1079+
}
1080+
1081+
.c-textbox .wrapper .max {
1082+
margin-top: .5rem;
1083+
}
1084+
1085+
body.ltr .c-textbox .wrapper .max {
1086+
padding-right: .25rem;
1087+
}
1088+
1089+
body.rtl .c-textbox .wrapper .max {
1090+
padding-left: .25rem;
1091+
}
1092+
1093+
.c-textbox .wrapper .max.floating {
1094+
position: absolute;
1095+
font-size: .75rem;
1096+
text-align: right;
1097+
}
1098+
1099+
.c-textbox .wrapper .max.text-grey {
1100+
color: #b8c2cc;
1101+
}
1102+
1103+
.c-textbox .wrapper .max.text-orange {
1104+
color: #f6993f;
1105+
}
1106+
1107+
.c-textbox .wrapper .max.text-red {
1108+
color: #e3342f;
1109+
}

dist/craftui.es.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ var script$3 = {
471471
default: null
472472
},
473473
value: {
474-
type: String,
474+
type: String | Number,
475475
default: null
476476
}
477477
},

dist/craftui.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@
477477
default: null
478478
},
479479
value: {
480-
type: String,
480+
type: String | Number,
481481
default: null
482482
}
483483
},

dist/craftui.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/craftui.min.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/craftui.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/craftui.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pixelandtonic/craftui",
3-
"version": "0.3.3",
3+
"version": "0.3.4",
44
"main": "dist/craftui.js",
55
"unpkg": "dist/craftui.min.js",
66
"module": "dist/craftui.es.js",

src/components/Dropdown.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
default: null,
4848
},
4949
value: {
50-
type: String,
50+
type: String | Number,
5151
default: null,
5252
},
5353
},

0 commit comments

Comments
 (0)