@shopify/shop-minis-react 0.0.12 → 0.0.13
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/dist/_virtual/index2.js +2 -3
- package/dist/_virtual/index2.js.map +1 -1
- package/dist/_virtual/index3.js +3 -2
- package/dist/_virtual/index3.js.map +1 -1
- package/dist/node_modules/.pnpm/@radix-ui_react-use-is-hydrated@0.1.0_@types_react@19.1.6_react@19.1.0/node_modules/@radix-ui/react-use-is-hydrated/dist/index.js +1 -1
- package/dist/node_modules/.pnpm/querystringify@2.2.0/node_modules/querystringify/index.js +1 -1
- package/package.json +1 -1
- package/src/base.css +10 -1
package/dist/_virtual/index2.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index2.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index2.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
package/dist/_virtual/index3.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index3.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index3.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;"}
|
package/package.json
CHANGED
package/src/base.css
CHANGED
|
@@ -251,11 +251,20 @@ body {
|
|
|
251
251
|
/* Disable text selection */
|
|
252
252
|
body {
|
|
253
253
|
-webkit-user-select: none;
|
|
254
|
-
-moz-user-select:
|
|
254
|
+
-moz-user-select: none;
|
|
255
255
|
-ms-user-select: none;
|
|
256
256
|
user-select: none;
|
|
257
257
|
}
|
|
258
258
|
|
|
259
|
+
/* Re-enable text selection for input fields */
|
|
260
|
+
input,
|
|
261
|
+
textarea {
|
|
262
|
+
-webkit-user-select: text;
|
|
263
|
+
-moz-user-select: text;
|
|
264
|
+
-ms-user-select: text;
|
|
265
|
+
user-select: text;
|
|
266
|
+
}
|
|
267
|
+
|
|
259
268
|
/* Disable image drag */
|
|
260
269
|
img,
|
|
261
270
|
.no-drag {
|