vrembem 4.0.0-next.31 → 4.0.0-next.32
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/dev/base.css +3 -3
- package/dev/index.css +3 -3
- package/dev/index.js +2541 -2827
- package/dev/index.js.map +1 -1
- package/dev/index.umd.cjs +2541 -2827
- package/dev/index.umd.cjs.map +1 -1
- package/dist/base.css +1 -1
- package/dist/base.css.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.js +2244 -1539
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +9 -9
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +27 -25
- /package/{index.js → index.ts} +0 -0
package/dev/base.css
CHANGED
|
@@ -105,7 +105,7 @@ button,
|
|
|
105
105
|
[type=button],
|
|
106
106
|
[type=reset],
|
|
107
107
|
[type=submit] {
|
|
108
|
-
appearance:
|
|
108
|
+
appearance: auto;
|
|
109
109
|
}
|
|
110
110
|
|
|
111
111
|
button::-moz-focus-inner,
|
|
@@ -121,7 +121,7 @@ input::placeholder {
|
|
|
121
121
|
}
|
|
122
122
|
|
|
123
123
|
::-webkit-file-upload-button {
|
|
124
|
-
appearance:
|
|
124
|
+
appearance: auto;
|
|
125
125
|
font: inherit;
|
|
126
126
|
}
|
|
127
127
|
|
|
@@ -144,8 +144,8 @@ input::placeholder {
|
|
|
144
144
|
color: var(--vb-code-foreground, var(--vb-foreground-alt));
|
|
145
145
|
font-family: var(--vb-font-family-mono);
|
|
146
146
|
font-size: var(--vb-code-font-size, var(--vb-font-size-sm));
|
|
147
|
+
overflow-wrap: break-word;
|
|
147
148
|
padding: var(--vb-code-padding, 0.125rem 0.375rem);
|
|
148
|
-
word-break: break-word;
|
|
149
149
|
}
|
|
150
150
|
|
|
151
151
|
.h1,
|
package/dev/index.css
CHANGED
|
@@ -105,7 +105,7 @@ button,
|
|
|
105
105
|
[type=button],
|
|
106
106
|
[type=reset],
|
|
107
107
|
[type=submit] {
|
|
108
|
-
appearance:
|
|
108
|
+
appearance: auto;
|
|
109
109
|
}
|
|
110
110
|
|
|
111
111
|
button::-moz-focus-inner,
|
|
@@ -121,7 +121,7 @@ input::placeholder {
|
|
|
121
121
|
}
|
|
122
122
|
|
|
123
123
|
::-webkit-file-upload-button {
|
|
124
|
-
appearance:
|
|
124
|
+
appearance: auto;
|
|
125
125
|
font: inherit;
|
|
126
126
|
}
|
|
127
127
|
|
|
@@ -144,8 +144,8 @@ input::placeholder {
|
|
|
144
144
|
color: var(--vb-code-foreground, var(--vb-foreground-alt));
|
|
145
145
|
font-family: var(--vb-font-family-mono);
|
|
146
146
|
font-size: var(--vb-code-font-size, var(--vb-font-size-sm));
|
|
147
|
+
overflow-wrap: break-word;
|
|
147
148
|
padding: var(--vb-code-padding, 0.125rem 0.375rem);
|
|
148
|
-
word-break: break-word;
|
|
149
149
|
}
|
|
150
150
|
|
|
151
151
|
.h1,
|