Skip to content

Commit 3ec5b65

Browse files
committed
(feature) Theming component
1 parent 110d167 commit 3ec5b65

File tree

10 files changed

+1833
-578
lines changed

10 files changed

+1833
-578
lines changed

.stylelintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**/*.min.css

.stylelintrc.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"extends": "stylelint-config-standard",
3+
"plugins": [
4+
"stylelint-scss",
5+
"stylelint-order"
6+
],
7+
"rules": {
8+
"color-hex-case": "upper",
9+
"string-quotes": "single",
10+
"no-empty-source": null,
11+
"unit-case": "lower",
12+
"property-case": "lower",
13+
"property-no-vendor-prefix": true,
14+
"value-no-vendor-prefix": true,
15+
"at-rule-no-unknown": null,
16+
"order/order": [
17+
"custom-properties",
18+
"declarations"
19+
],
20+
"no-descending-specificity": null
21+
}
22+
}

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,13 @@ Vue.component('vue-input-ui', VueInputUi);
6060
| hint* | String | no | - | |
6161
| error** | Boolean | no | false | |
6262
| dark | Boolean | no | false | |
63+
| dark-color (4) | String (hex) | no | #424242 |
6364
| disabled | Boolean | no | false | |
6465
| required | Boolean | no | false | |
6566
| readonly | Boolean | no | false | |
6667
| clearable | Boolean | no | false | |
6768
| loader | Boolean | no | false | |
69+
| border-radius | Number | no | 4 |
6870

6971
## Contribution
7072

0 commit comments

Comments
 (0)