jasmincss 1.0.8 → 1.0.10
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/JASMINCSS-GUIDE.md +1 -1
- package/dist/index.js +8 -0
- package/dist/index.mjs +8 -0
- package/dist/jasmin.css +8 -0
- package/dist/jasmin.min.css +1 -1
- package/dist/plugins/jasmin-loader.js +8 -0
- package/dist/plugins/jasmin-loader.mjs +8 -0
- package/dist/plugins/nextjs.js +8 -0
- package/dist/plugins/nextjs.mjs +8 -0
- package/dist/plugins/vite.js +8 -0
- package/dist/plugins/vite.mjs +8 -0
- package/package.json +1 -1
- package/src/cli/init.js +8 -2
- package/src/components/accordion.js +2 -0
- package/src/components/carousel.js +3 -1
- package/src/core/base.js +8 -0
package/JASMINCSS-GUIDE.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -14563,6 +14563,14 @@ a {
|
|
|
14563
14563
|
|
|
14564
14564
|
button, [role="button"] {
|
|
14565
14565
|
cursor: pointer;
|
|
14566
|
+
appearance: none;
|
|
14567
|
+
-webkit-appearance: none;
|
|
14568
|
+
background: transparent;
|
|
14569
|
+
border: none;
|
|
14570
|
+
}
|
|
14571
|
+
|
|
14572
|
+
button:focus {
|
|
14573
|
+
outline: none;
|
|
14566
14574
|
}
|
|
14567
14575
|
|
|
14568
14576
|
:disabled {
|
package/dist/index.mjs
CHANGED
|
@@ -14520,6 +14520,14 @@ a {
|
|
|
14520
14520
|
|
|
14521
14521
|
button, [role="button"] {
|
|
14522
14522
|
cursor: pointer;
|
|
14523
|
+
appearance: none;
|
|
14524
|
+
-webkit-appearance: none;
|
|
14525
|
+
background: transparent;
|
|
14526
|
+
border: none;
|
|
14527
|
+
}
|
|
14528
|
+
|
|
14529
|
+
button:focus {
|
|
14530
|
+
outline: none;
|
|
14523
14531
|
}
|
|
14524
14532
|
|
|
14525
14533
|
:disabled {
|
package/dist/jasmin.css
CHANGED