Skip to content

Commit

Permalink
Merge branch 'release/0.3.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamindavid committed Sep 2, 2019
2 parents 6a60424 + 5ac0953 commit 8206c7b
Show file tree
Hide file tree
Showing 11 changed files with 3,597 additions and 3,246 deletions.
7 changes: 7 additions & 0 deletions dist/craftui.cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -1028,6 +1028,13 @@ var script$8 = {
}
}
},
watch: {
value: function value(newVal) {
if (this.$refs.input.value !== newVal) {
this.$refs.input.value = newVal;
}
}
},
props: {
autocapitalize: {
type: Boolean,
Expand Down
30 changes: 15 additions & 15 deletions dist/craftui.css
Original file line number Diff line number Diff line change
Expand Up @@ -606,6 +606,14 @@ Keep it light, don't import Tailwind’s utilities.
@tailwind utilities;
*/

body.ltr .c-checkbox input {
margin-right: .5rem;
}

body.rtl .c-checkbox input {
margin-left: .5rem;
}

.c-btn,
a.c-btn,
button.c-btn {
Expand Down Expand Up @@ -999,14 +1007,19 @@ body.rtl .c-lightswitch .c-lightswitch-input label .slider:before {
cursor: default;
}

body.ltr .c-checkbox input {
body.ltr .c-radio input {
margin-right: .5rem;
}

body.rtl .c-checkbox input {
body.rtl .c-radio input {
margin-left: .5rem;
}

.c-radio .instructions {
color: #8795a1;
font-size: .875rem;
}

.c-spinner {
display: inline-block;
}
Expand Down Expand Up @@ -1059,19 +1072,6 @@ body.rtl .c-checkbox input {
}
}

body.ltr .c-radio input {
margin-right: .5rem;
}

body.rtl .c-radio input {
margin-left: .5rem;
}

.c-radio .instructions {
color: #8795a1;
font-size: .875rem;
}

.c-textbox .wrapper {
position: relative;
}
Expand Down
7 changes: 7 additions & 0 deletions dist/craftui.es.js
Original file line number Diff line number Diff line change
Expand Up @@ -1024,6 +1024,13 @@ var script$8 = {
}
}
},
watch: {
value: function value(newVal) {
if (this.$refs.input.value !== newVal) {
this.$refs.input.value = newVal;
}
}
},
props: {
autocapitalize: {
type: Boolean,
Expand Down
7 changes: 7 additions & 0 deletions dist/craftui.js
Original file line number Diff line number Diff line change
Expand Up @@ -1030,6 +1030,13 @@
}
}
},
watch: {
value: function value(newVal) {
if (this.$refs.input.value !== newVal) {
this.$refs.input.value = newVal;
}
}
},
props: {
autocapitalize: {
type: Boolean,
Expand Down
6 changes: 3 additions & 3 deletions dist/craftui.min.css

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

Loading

0 comments on commit 8206c7b

Please sign in to comment.