@brandup/ui-kit 1.0.7 → 1.0.9

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/README.md CHANGED
@@ -78,8 +78,6 @@ Default root styles for `<svg>` tag.
78
78
 
79
79
  ```
80
80
  --svg-size: 20px;
81
- --svg-width: var(--svg-size);
82
- --svg-height: var(--svg-size);
83
81
  --svg-fill: var(--text-color);
84
82
  --svg-stroke: none;
85
83
  ```
@@ -111,6 +109,7 @@ Styles for:
111
109
  - input[type=url]
112
110
  - input[type=date]
113
111
  - input[type=datetime]
112
+ - input[type=datetime-local]
114
113
  - input[type=time]
115
114
  - input[type=file]
116
115
  - input[type=number]
package/package.json CHANGED
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "type": "module",
24
24
  "license": "Apache-2.0",
25
- "version": "1.0.7",
25
+ "version": "1.0.9",
26
26
  "main": "source/index.ts",
27
27
  "types": "source/index.ts",
28
28
  "dependencies": {
@@ -27,8 +27,6 @@
27
27
 
28
28
  // svg
29
29
  --svg-size: 20px;
30
- --svg-width: var(--svg-size);
31
- --svg-height: var(--svg-size);
32
30
  --svg-fill: var(--text-color);
33
31
  --svg-stroke: none;
34
32
 
@@ -99,8 +97,8 @@ h5 {
99
97
 
100
98
  svg {
101
99
  display: block;
102
- width: var(--svg-width);
103
- height: var(--svg-height);
100
+ width: var(--svg-size);
101
+ height: var(---svg-size);
104
102
  fill: var(--svg-fill);
105
103
  stroke: var(--svg-stroke);
106
104
  }
@@ -78,6 +78,7 @@ input[type=search],
78
78
  input[type=url],
79
79
  input[type=date],
80
80
  input[type=datetime],
81
+ input[type=datetime-local],
81
82
  input[type=time],
82
83
  input[type=number],
83
84
  input[type=file],