@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.
@@ -1,6 +1,5 @@
1
- import { __require as r } from "../node_modules/.pnpm/use-sync-external-store@1.5.0_react@19.1.0/node_modules/use-sync-external-store/shim/index.js";
2
- var i = r();
1
+ var r = {};
3
2
  export {
4
- i as s
3
+ r as __exports
5
4
  };
6
5
  //# sourceMappingURL=index2.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index2.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;"}
1
+ {"version":3,"file":"index2.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
@@ -1,5 +1,6 @@
1
- var r = {};
1
+ import { __require as r } from "../node_modules/.pnpm/use-sync-external-store@1.5.0_react@19.1.0/node_modules/use-sync-external-store/shim/index.js";
2
+ var i = r();
2
3
  export {
3
- r as __exports
4
+ i as s
4
5
  };
5
6
  //# sourceMappingURL=index3.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index3.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
1
+ {"version":3,"file":"index3.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;"}
@@ -1,4 +1,4 @@
1
- import { s as r } from "../../../../../../../_virtual/index2.js";
1
+ import { s as r } from "../../../../../../../_virtual/index3.js";
2
2
  function s() {
3
3
  return r.useSyncExternalStore(
4
4
  e,
@@ -1,4 +1,4 @@
1
- import { __exports as i } from "../../../../../_virtual/index3.js";
1
+ import { __exports as i } from "../../../../../_virtual/index2.js";
2
2
  var c;
3
3
  function d() {
4
4
  if (c) return i;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@shopify/shop-minis-react",
3
3
  "license": "SEE LICENSE IN LICENSE.txt",
4
- "version": "0.0.12",
4
+ "version": "0.0.13",
5
5
  "sideEffects": false,
6
6
  "type": "module",
7
7
  "engines": {
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: -moz-none;
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 {