qstd 0.2.22 → 0.2.24

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qstd",
3
- "version": "0.2.22",
3
+ "version": "0.2.24",
4
4
  "description": "Standard Block component and utilities library with Panda CSS",
5
5
  "author": "malin1",
6
6
  "license": "MIT",
@@ -796,6 +796,10 @@
796
796
  background: var(--colors-blue-500);
797
797
  }
798
798
 
799
+ .bg_white {
800
+ background: var(--colors-white);
801
+ }
802
+
799
803
  .bg_none {
800
804
  background: none;
801
805
  }
@@ -808,10 +812,6 @@
808
812
  background: #d1d5db !important;
809
813
  }
810
814
 
811
- .bg_white {
812
- background: var(--colors-white);
813
- }
814
-
815
815
  .bg_rgba\(20\,20\,20\,0\.95\) {
816
816
  background: rgba(20,20,20,0.95);
817
817
  }
@@ -1211,6 +1211,35 @@
1211
1211
  box-shadow: 0 0 0 6px rgba(0,0,0,.08);
1212
1212
  }
1213
1213
 
1214
+ .op_0\.5 {
1215
+ opacity: 0.5;
1216
+ }
1217
+
1218
+ .op_1 {
1219
+ opacity: 1;
1220
+ }
1221
+
1222
+ .ai_center {
1223
+ align-items: center;
1224
+ }
1225
+
1226
+ .tch-a_none {
1227
+ touch-action: none;
1228
+ }
1229
+
1230
+ .cursor_grab {
1231
+ cursor: grab;
1232
+ }
1233
+
1234
+ .size_24 {
1235
+ width: 24px;
1236
+ height: 24px;
1237
+ }
1238
+
1239
+ .bx-sh_0_2px_8px_rgba\(0\,0\,0\,0\.25\) {
1240
+ box-shadow: 0 2px 8px rgba(0,0,0,0.25);
1241
+ }
1242
+
1214
1243
  .type_spring {
1215
1244
  type: spring;
1216
1245
  }
@@ -1223,10 +1252,6 @@
1223
1252
  damping: 30px;
1224
1253
  }
1225
1254
 
1226
- .ai_center {
1227
- align-items: center;
1228
- }
1229
-
1230
1255
  .jc_center {
1231
1256
  justify-content: center;
1232
1257
  }