Skip to content

Commit

Permalink
Merge branch 'release/0.3.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamindavid committed Apr 5, 2019
2 parents 1658809 + 2f1c294 commit 05c541e
Show file tree
Hide file tree
Showing 11 changed files with 52 additions and 52 deletions.
2 changes: 1 addition & 1 deletion dist/craftui.cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ var script$3 = {
default: null
},
value: {
type: String,
type: String | Number,
default: null
}
},
Expand Down
84 changes: 42 additions & 42 deletions dist/craftui.css
Original file line number Diff line number Diff line change
Expand Up @@ -1014,48 +1014,6 @@ body.rtl .c-radio input {
font-size: .875rem;
}

.c-textbox .wrapper {
position: relative;
}

.c-textbox .wrapper input.c-textbox.w-full {
width: 100%;
}

.c-textbox .wrapper .text-red-dark {
color: #cc1f1a;
}

.c-textbox .wrapper .max {
margin-top: .5rem;
}

body.ltr .c-textbox .wrapper .max {
padding-right: .25rem;
}

body.rtl .c-textbox .wrapper .max {
padding-left: .25rem;
}

.c-textbox .wrapper .max.floating {
position: absolute;
font-size: .75rem;
text-align: right;
}

.c-textbox .wrapper .max.text-grey {
color: #b8c2cc;
}

.c-textbox .wrapper .max.text-orange {
color: #f6993f;
}

.c-textbox .wrapper .max.text-red {
color: #e3342f;
}

.c-spinner {
display: inline-block;
}
Expand Down Expand Up @@ -1107,3 +1065,45 @@ body.rtl .c-textbox .wrapper .max {
transform: rotate(1turn);
}
}

.c-textbox .wrapper {
position: relative;
}

.c-textbox .wrapper input.c-textbox.w-full {
width: 100%;
}

.c-textbox .wrapper .text-red-dark {
color: #cc1f1a;
}

.c-textbox .wrapper .max {
margin-top: .5rem;
}

body.ltr .c-textbox .wrapper .max {
padding-right: .25rem;
}

body.rtl .c-textbox .wrapper .max {
padding-left: .25rem;
}

.c-textbox .wrapper .max.floating {
position: absolute;
font-size: .75rem;
text-align: right;
}

.c-textbox .wrapper .max.text-grey {
color: #b8c2cc;
}

.c-textbox .wrapper .max.text-orange {
color: #f6993f;
}

.c-textbox .wrapper .max.text-red {
color: #e3342f;
}
2 changes: 1 addition & 1 deletion dist/craftui.es.js
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ var script$3 = {
default: null
},
value: {
type: String,
type: String | Number,
default: null
}
},
Expand Down
2 changes: 1 addition & 1 deletion dist/craftui.js
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@
default: null
},
value: {
type: String,
type: String | Number,
default: null
}
},
Expand Down
2 changes: 1 addition & 1 deletion dist/craftui.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/craftui.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/craftui.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/craftui.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pixelandtonic/craftui",
"version": "0.3.3",
"version": "0.3.4",
"main": "dist/craftui.js",
"unpkg": "dist/craftui.min.js",
"module": "dist/craftui.es.js",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Dropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
default: null,
},
value: {
type: String,
type: String | Number,
default: null,
},
},
Expand Down

0 comments on commit 05c541e

Please sign in to comment.