@vxrn/native 1.14.4 → 1.15.0

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.
Files changed (58) hide show
  1. package/.turbo/turbo-build.log +1 -1
  2. package/dist/cjs/color/android.dynamic.types.cjs +7 -5
  3. package/dist/cjs/color/android.dynamic.types.native.js +7 -5
  4. package/dist/cjs/color/android.dynamic.types.native.js.map +1 -1
  5. package/dist/cjs/color/android.material.types.cjs +7 -5
  6. package/dist/cjs/color/android.material.types.native.js +7 -5
  7. package/dist/cjs/color/android.material.types.native.js.map +1 -1
  8. package/dist/cjs/color/index.cjs +52 -47
  9. package/dist/cjs/color/index.native.js +54 -47
  10. package/dist/cjs/color/index.native.js.map +1 -1
  11. package/dist/cjs/color/ios.types.cjs +7 -5
  12. package/dist/cjs/color/ios.types.native.js +7 -5
  13. package/dist/cjs/color/ios.types.native.js.map +1 -1
  14. package/dist/cjs/color/materialColor.cjs +12 -10
  15. package/dist/cjs/color/materialColor.native.js +18 -16
  16. package/dist/cjs/color/materialColor.native.js.map +1 -1
  17. package/dist/cjs/index.cjs +17 -15
  18. package/dist/cjs/index.native.js +17 -15
  19. package/dist/cjs/index.native.js.map +1 -1
  20. package/dist/cjs/menu/index.cjs +12 -10
  21. package/dist/cjs/menu/index.native.js +16 -14
  22. package/dist/cjs/menu/index.native.js.map +1 -1
  23. package/dist/cjs/menu/types.cjs +7 -5
  24. package/dist/cjs/menu/types.native.js +7 -5
  25. package/dist/cjs/menu/types.native.js.map +1 -1
  26. package/dist/cjs/split-view/index.cjs +12 -10
  27. package/dist/cjs/split-view/index.native.js +12 -10
  28. package/dist/cjs/split-view/index.native.js.map +1 -1
  29. package/dist/cjs/split-view/split-view.cjs +59 -43
  30. package/dist/cjs/split-view/split-view.native.js +64 -48
  31. package/dist/cjs/split-view/split-view.native.js.map +1 -1
  32. package/dist/cjs/toolbar/index.cjs +12 -10
  33. package/dist/cjs/toolbar/index.native.js +15 -13
  34. package/dist/cjs/toolbar/index.native.js.map +1 -1
  35. package/dist/cjs/toolbar/types.cjs +7 -5
  36. package/dist/cjs/toolbar/types.native.js +7 -5
  37. package/dist/cjs/toolbar/types.native.js.map +1 -1
  38. package/dist/cjs/zoom/index.cjs +12 -10
  39. package/dist/cjs/zoom/index.native.js +28 -23
  40. package/dist/cjs/zoom/index.native.js.map +1 -1
  41. package/dist/cjs/zoom/types.cjs +7 -5
  42. package/dist/cjs/zoom/types.native.js +7 -5
  43. package/dist/cjs/zoom/types.native.js.map +1 -1
  44. package/dist/esm/color/index.mjs +37 -34
  45. package/dist/esm/color/index.mjs.map +1 -1
  46. package/dist/esm/color/index.native.js +39 -34
  47. package/dist/esm/color/index.native.js.map +1 -1
  48. package/dist/esm/color/materialColor.native.js +2 -2
  49. package/dist/esm/color/materialColor.native.js.map +1 -1
  50. package/dist/esm/menu/index.native.js +2 -2
  51. package/dist/esm/menu/index.native.js.map +1 -1
  52. package/dist/esm/split-view/split-view.mjs +32 -18
  53. package/dist/esm/split-view/split-view.mjs.map +1 -1
  54. package/dist/esm/split-view/split-view.native.js +37 -23
  55. package/dist/esm/split-view/split-view.native.js.map +1 -1
  56. package/dist/esm/zoom/index.native.js +14 -11
  57. package/dist/esm/zoom/index.native.js.map +1 -1
  58. package/package.json +2 -2
@@ -1,2 +1,2 @@
1
1
  $ tamagui-build
2
- built @vxrn/native in 3173 ms
2
+ built @vxrn/native in 1544 ms
@@ -3,14 +3,16 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
3
  var __getOwnPropNames = Object.getOwnPropertyNames;
4
4
  var __hasOwnProp = Object.prototype.hasOwnProperty;
5
5
  var __copyProps = (to, from, except, desc) => {
6
- if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
7
- get: () => from[key],
8
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
9
- });
6
+ if (from && typeof from === "object" || typeof from === "function") {
7
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
8
+ get: () => from[key],
9
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
10
+ });
11
+ }
10
12
  return to;
11
13
  };
12
14
  var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
13
- value: !0
15
+ value: true
14
16
  }), mod);
15
17
  var android_dynamic_types_exports = {};
16
18
  module.exports = __toCommonJS(android_dynamic_types_exports);
@@ -5,14 +5,16 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
6
6
  var __hasOwnProp = Object.prototype.hasOwnProperty;
7
7
  var __copyProps = (to, from, except, desc) => {
8
- if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
9
- get: () => from[key],
10
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
11
- });
8
+ if (from && typeof from === "object" || typeof from === "function") {
9
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
10
+ get: () => from[key],
11
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
12
+ });
13
+ }
12
14
  return to;
13
15
  };
14
16
  var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
15
- value: !0
17
+ value: true
16
18
  }), mod);
17
19
  var android_dynamic_types_exports = {};
18
20
  module.exports = __toCommonJS(android_dynamic_types_exports);
@@ -1 +1 @@
1
- {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","android_dynamic_types_exports"],"sources":["../../../src/color/android.dynamic.types.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,6BAAA","ignoreList":[]}
1
+ {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","android_dynamic_types_exports"],"sources":["../../../src/color/android.dynamic.types.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,6BAAA","ignoreList":[]}
@@ -3,14 +3,16 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
3
  var __getOwnPropNames = Object.getOwnPropertyNames;
4
4
  var __hasOwnProp = Object.prototype.hasOwnProperty;
5
5
  var __copyProps = (to, from, except, desc) => {
6
- if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
7
- get: () => from[key],
8
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
9
- });
6
+ if (from && typeof from === "object" || typeof from === "function") {
7
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
8
+ get: () => from[key],
9
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
10
+ });
11
+ }
10
12
  return to;
11
13
  };
12
14
  var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
13
- value: !0
15
+ value: true
14
16
  }), mod);
15
17
  var android_material_types_exports = {};
16
18
  module.exports = __toCommonJS(android_material_types_exports);
@@ -5,14 +5,16 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
6
6
  var __hasOwnProp = Object.prototype.hasOwnProperty;
7
7
  var __copyProps = (to, from, except, desc) => {
8
- if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
9
- get: () => from[key],
10
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
11
- });
8
+ if (from && typeof from === "object" || typeof from === "function") {
9
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
10
+ get: () => from[key],
11
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
12
+ });
13
+ }
12
14
  return to;
13
15
  };
14
16
  var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
15
- value: !0
17
+ value: true
16
18
  }), mod);
17
19
  var android_material_types_exports = {};
18
20
  module.exports = __toCommonJS(android_material_types_exports);
@@ -1 +1 @@
1
- {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","android_material_types_exports"],"sources":["../../../src/color/android.material.types.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,8BAAA","ignoreList":[]}
1
+ {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","android_material_types_exports"],"sources":["../../../src/color/android.material.types.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,8BAAA","ignoreList":[]}
@@ -3,64 +3,69 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
3
  var __getOwnPropNames = Object.getOwnPropertyNames;
4
4
  var __hasOwnProp = Object.prototype.hasOwnProperty;
5
5
  var __export = (target, all) => {
6
- for (var name in all) __defProp(target, name, {
7
- get: all[name],
8
- enumerable: !0
9
- });
10
- },
11
- __copyProps = (to, from, except, desc) => {
12
- if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
6
+ for (var name in all) __defProp(target, name, {
7
+ get: all[name],
8
+ enumerable: true
9
+ });
10
+ };
11
+ var __copyProps = (to, from, except, desc) => {
12
+ if (from && typeof from === "object" || typeof from === "function") {
13
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
13
14
  get: () => from[key],
14
15
  enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
15
16
  });
16
- return to;
17
- },
18
- __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
17
+ }
18
+ return to;
19
+ };
20
+ var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
19
21
  var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
20
- value: !0
22
+ value: true
21
23
  }), mod);
22
24
  var color_exports = {};
23
25
  __export(color_exports, {
24
26
  Color: () => Color
25
27
  });
26
28
  module.exports = __toCommonJS(color_exports);
27
- var import_react_native = require("react-native-web"),
28
- import_materialColor = require("./materialColor.cjs");
29
+ var import_react_native = require("react-native-web");
30
+ var import_materialColor = require("./materialColor.cjs");
29
31
  __reExport(color_exports, require("./android.dynamic.types"), module.exports);
30
32
  __reExport(color_exports, require("./android.material.types"), module.exports);
31
33
  __reExport(color_exports, require("./ios.types"), module.exports);
32
34
  const iosColor = new Proxy({}, {
33
- get() {
34
- return null;
35
- }
36
- }),
37
- androidMaterialColor = new Proxy({}, {
38
- get(_, prop) {
39
- return import_react_native.Platform.OS === "android" ? (0, import_materialColor.Material3Color)(prop) : null;
40
- }
41
- }),
42
- androidDynamicColor = new Proxy({}, {
43
- get(_, prop) {
44
- return import_react_native.Platform.OS === "android" ? (0, import_materialColor.Material3DynamicColor)(prop) : null;
45
- }
46
- }),
47
- androidColor = new Proxy({
48
- get material() {
49
- return androidMaterialColor;
50
- },
51
- get dynamic() {
52
- return androidDynamicColor;
53
- }
54
- }, {
55
- get(target, prop) {
56
- return prop in target ? target[prop] : null;
57
- }
58
- }),
59
- Color = {
60
- get ios() {
61
- return iosColor;
62
- },
63
- get android() {
64
- return androidColor;
65
- }
66
- };
35
+ get() {
36
+ return null;
37
+ }
38
+ });
39
+ const androidMaterialColor = new Proxy({}, {
40
+ get(_, prop) {
41
+ if (import_react_native.Platform.OS === "android") return (0, import_materialColor.Material3Color)(prop);
42
+ return null;
43
+ }
44
+ });
45
+ const androidDynamicColor = new Proxy({}, {
46
+ get(_, prop) {
47
+ if (import_react_native.Platform.OS === "android") return (0, import_materialColor.Material3DynamicColor)(prop);
48
+ return null;
49
+ }
50
+ });
51
+ const androidColor = new Proxy({
52
+ get material() {
53
+ return androidMaterialColor;
54
+ },
55
+ get dynamic() {
56
+ return androidDynamicColor;
57
+ }
58
+ }, {
59
+ get(target, prop) {
60
+ if (prop in target) return target[prop];
61
+ return null;
62
+ }
63
+ });
64
+ const Color = {
65
+ get ios() {
66
+ return iosColor;
67
+ },
68
+ get android() {
69
+ return androidColor;
70
+ }
71
+ };
@@ -5,65 +5,72 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
6
6
  var __hasOwnProp = Object.prototype.hasOwnProperty;
7
7
  var __export = (target, all) => {
8
- for (var name in all) __defProp(target, name, {
9
- get: all[name],
10
- enumerable: !0
11
- });
12
- },
13
- __copyProps = (to, from, except, desc) => {
14
- if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
8
+ for (var name in all) __defProp(target, name, {
9
+ get: all[name],
10
+ enumerable: true
11
+ });
12
+ };
13
+ var __copyProps = (to, from, except, desc) => {
14
+ if (from && typeof from === "object" || typeof from === "function") {
15
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
15
16
  get: () => from[key],
16
17
  enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
17
18
  });
18
- return to;
19
- },
20
- __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
19
+ }
20
+ return to;
21
+ };
22
+ var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
21
23
  var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
22
- value: !0
24
+ value: true
23
25
  }), mod);
24
26
  var index_native_exports = {};
25
27
  __export(index_native_exports, {
26
28
  Color: () => Color
27
29
  });
28
30
  module.exports = __toCommonJS(index_native_exports);
29
- var import_react_native = require("react-native"),
30
- import_materialColor = require("./materialColor.native.js");
31
+ var import_react_native = require("react-native");
32
+ var import_materialColor = require("./materialColor.native.js");
31
33
  __reExport(index_native_exports, require("./android.dynamic.types"), module.exports);
32
34
  __reExport(index_native_exports, require("./android.material.types"), module.exports);
33
35
  __reExport(index_native_exports, require("./ios.types"), module.exports);
34
36
  var iosColor = new Proxy({}, {
35
- get(_, prop) {
36
- return import_react_native.Platform.OS === "ios" ? (0, import_react_native.PlatformColor)(prop) : null;
37
- }
38
- }),
39
- androidMaterialColor = new Proxy({}, {
40
- get(_, prop) {
41
- return import_react_native.Platform.OS === "android" ? (0, import_materialColor.Material3Color)(prop) : null;
42
- }
43
- }),
44
- androidDynamicColor = new Proxy({}, {
45
- get(_, prop) {
46
- return import_react_native.Platform.OS === "android" ? (0, import_materialColor.Material3DynamicColor)(prop) : null;
47
- }
48
- }),
49
- androidColor = new Proxy({
50
- get material() {
51
- return androidMaterialColor;
52
- },
53
- get dynamic() {
54
- return androidDynamicColor;
55
- }
56
- }, {
57
- get(target, prop) {
58
- return prop in target ? target[prop] : import_react_native.Platform.OS === "android" ? (0, import_react_native.PlatformColor)("@android:color/" + prop) : null;
59
- }
60
- }),
61
- Color = {
62
- get ios() {
63
- return iosColor;
64
- },
65
- get android() {
66
- return androidColor;
67
- }
68
- };
37
+ get(_, prop) {
38
+ if (import_react_native.Platform.OS === "ios") return (0, import_react_native.PlatformColor)(prop);
39
+ return null;
40
+ }
41
+ });
42
+ var androidMaterialColor = new Proxy({}, {
43
+ get(_, prop) {
44
+ if (import_react_native.Platform.OS === "android") return (0, import_materialColor.Material3Color)(prop);
45
+ return null;
46
+ }
47
+ });
48
+ var androidDynamicColor = new Proxy({}, {
49
+ get(_, prop) {
50
+ if (import_react_native.Platform.OS === "android") return (0, import_materialColor.Material3DynamicColor)(prop);
51
+ return null;
52
+ }
53
+ });
54
+ var androidColor = new Proxy({
55
+ get material() {
56
+ return androidMaterialColor;
57
+ },
58
+ get dynamic() {
59
+ return androidDynamicColor;
60
+ }
61
+ }, {
62
+ get(target, prop) {
63
+ if (prop in target) return target[prop];
64
+ if (import_react_native.Platform.OS === "android") return (0, import_react_native.PlatformColor)("@android:color/" + prop);
65
+ return null;
66
+ }
67
+ });
68
+ var Color = {
69
+ get ios() {
70
+ return iosColor;
71
+ },
72
+ get android() {
73
+ return androidColor;
74
+ }
75
+ };
69
76
  //# sourceMappingURL=index.native.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["index_native_exports","__export","Color","module","exports","__toCommonJS","import_react_native","require","import_materialColor","__reExport","iosColor","Proxy","get","_","prop","Platform","OS","PlatformColor","androidMaterialColor","Material3Color","androidDynamicColor","Material3DynamicColor","androidColor","material","dynamic","target","ios","android"],"sources":["../../../src/color/index.native.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,oBAAA;AAAAC,QAAA,CAAAD,oBAAA;EAAAE,KAAA,EAAAA,CAAA,KAAAA;AAAA;AAAAC,MAAA,CAAAC,OAAA,GAAAC,YAAA,CAAAL,oBAAA;AACA,IAAAM,mBAAA,GAAwCC,OAAA;EACxCC,oBAAA,GAAsDD,OAAA;AACtDE,UAAA,CAAAT,oBAAA,EAAcO,OAAA,6BAHdJ,MAAA,CAAAC,OAAA;AAIAK,UAAA,CAAAT,oBAAA,EAAcO,OAAA,8BAJdJ,MAAA,CAAAC,OAAA;AAKAK,UAAA,CAAAT,oBAAA,EAAcO,OAAA,iBALdJ,MAAA,CAAAC,OAAA;AAMA,IAAIM,QAAA,GAAW,IAAIC,KAAA,CAAM,CAAC,GAAG;IACzBC,IAAKC,CAAA,EAAGC,IAAA,EAAM;MACV,OAAIR,mBAAA,CAAAS,QAAA,CAASC,EAAA,KAAO,YAAcV,mBAAA,CAAAW,aAAA,EAAcH,IAAI,IAC7C;IACX;EACJ,CAAC;EACGI,oBAAA,GAAuB,IAAIP,KAAA,CAAM,CAAC,GAAG;IACrCC,IAAKC,CAAA,EAAGC,IAAA,EAAM;MACV,OAAIR,mBAAA,CAAAS,QAAA,CAASC,EAAA,KAAO,gBAAkBR,oBAAA,CAAAW,cAAA,EAAeL,IAAI,IAClD;IACX;EACJ,CAAC;EACGM,mBAAA,GAAsB,IAAIT,KAAA,CAAM,CAAC,GAAG;IACpCC,IAAKC,CAAA,EAAGC,IAAA,EAAM;MACV,OAAIR,mBAAA,CAAAS,QAAA,CAASC,EAAA,KAAO,gBAAkBR,oBAAA,CAAAa,qBAAA,EAAsBP,IAAI,IACzD;IACX;EACJ,CAAC;EACGQ,YAAA,GAAe,IAAIX,KAAA,CAAM;IACzB,IAAIY,SAAA,EAAY;MACZ,OAAOL,oBAAA;IACX;IACA,IAAIM,QAAA,EAAW;MACX,OAAOJ,mBAAA;IACX;EACJ,GAAG;IACCR,IAAKa,MAAA,EAAQX,IAAA,EAAM;MACf,OAAIA,IAAA,IAAQW,MAAA,GAAeA,MAAA,CAAOX,IAAI,IAClCR,mBAAA,CAAAS,QAAA,CAASC,EAAA,KAAO,gBAAkBV,mBAAA,CAAAW,aAAA,EAAc,oBAAoBH,IAAI,IACrE;IACX;EACJ,CAAC;EACUZ,KAAA,GAAQ;IACf,IAAIwB,IAAA,EAAO;MACP,OAAOhB,QAAA;IACX;IACA,IAAIiB,QAAA,EAAW;MACX,OAAOL,YAAA;IACX;EACJ","ignoreList":[]}
1
+ {"version":3,"names":["index_native_exports","__export","Color","module","exports","__toCommonJS","import_react_native","require","import_materialColor","__reExport","iosColor","Proxy","get","_","prop","Platform","OS","PlatformColor","androidMaterialColor","Material3Color","androidDynamicColor","Material3DynamicColor","androidColor","material","dynamic","target","ios","android"],"sources":["../../../src/color/index.native.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,oBAAA;AAAAC,QAAA,CAAAD,oBAAA;EAAAE,KAAA,EAAAA,CAAA,KAAAA;AAAA;AAAAC,MAAA,CAAAC,OAAA,GAAAC,YAAA,CAAAL,oBAAA;AACA,IAAAM,mBAAA,GAAwCC,OAAA;AACxC,IAAAC,oBAAA,GAAsDD,OAAA;AACtDE,UAAA,CAAAT,oBAAA,EAAcO,OAAA,6BAHdJ,MAAA,CAAAC,OAAA;AAIAK,UAAA,CAAAT,oBAAA,EAAcO,OAAA,8BAJdJ,MAAA,CAAAC,OAAA;AAKAK,UAAA,CAAAT,oBAAA,EAAcO,OAAA,iBALdJ,MAAA,CAAAC,OAAA;AAMA,IAAIM,QAAA,GAAW,IAAIC,KAAA,CAAM,CAAC,GAAG;EACzBC,IAAKC,CAAA,EAAGC,IAAA,EAAM;IACV,IAAIR,mBAAA,CAAAS,QAAA,CAASC,EAAA,KAAO,OAAO,WAAOV,mBAAA,CAAAW,aAAA,EAAcH,IAAI;IACpD,OAAO;EACX;AACJ,CAAC;AACD,IAAII,oBAAA,GAAuB,IAAIP,KAAA,CAAM,CAAC,GAAG;EACrCC,IAAKC,CAAA,EAAGC,IAAA,EAAM;IACV,IAAIR,mBAAA,CAAAS,QAAA,CAASC,EAAA,KAAO,WAAW,WAAOR,oBAAA,CAAAW,cAAA,EAAeL,IAAI;IACzD,OAAO;EACX;AACJ,CAAC;AACD,IAAIM,mBAAA,GAAsB,IAAIT,KAAA,CAAM,CAAC,GAAG;EACpCC,IAAKC,CAAA,EAAGC,IAAA,EAAM;IACV,IAAIR,mBAAA,CAAAS,QAAA,CAASC,EAAA,KAAO,WAAW,WAAOR,oBAAA,CAAAa,qBAAA,EAAsBP,IAAI;IAChE,OAAO;EACX;AACJ,CAAC;AACD,IAAIQ,YAAA,GAAe,IAAIX,KAAA,CAAM;EACzB,IAAIY,SAAA,EAAY;IACZ,OAAOL,oBAAA;EACX;EACA,IAAIM,QAAA,EAAW;IACX,OAAOJ,mBAAA;EACX;AACJ,GAAG;EACCR,IAAKa,MAAA,EAAQX,IAAA,EAAM;IACf,IAAIA,IAAA,IAAQW,MAAA,EAAQ,OAAOA,MAAA,CAAOX,IAAI;IACtC,IAAIR,mBAAA,CAAAS,QAAA,CAASC,EAAA,KAAO,WAAW,WAAOV,mBAAA,CAAAW,aAAA,EAAc,oBAAoBH,IAAI;IAC5E,OAAO;EACX;AACJ,CAAC;AACM,IAAIZ,KAAA,GAAQ;EACf,IAAIwB,IAAA,EAAO;IACP,OAAOhB,QAAA;EACX;EACA,IAAIiB,QAAA,EAAW;IACX,OAAOL,YAAA;EACX;AACJ","ignoreList":[]}
@@ -3,14 +3,16 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
3
  var __getOwnPropNames = Object.getOwnPropertyNames;
4
4
  var __hasOwnProp = Object.prototype.hasOwnProperty;
5
5
  var __copyProps = (to, from, except, desc) => {
6
- if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
7
- get: () => from[key],
8
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
9
- });
6
+ if (from && typeof from === "object" || typeof from === "function") {
7
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
8
+ get: () => from[key],
9
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
10
+ });
11
+ }
10
12
  return to;
11
13
  };
12
14
  var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
13
- value: !0
15
+ value: true
14
16
  }), mod);
15
17
  var ios_types_exports = {};
16
18
  module.exports = __toCommonJS(ios_types_exports);
@@ -5,14 +5,16 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
6
6
  var __hasOwnProp = Object.prototype.hasOwnProperty;
7
7
  var __copyProps = (to, from, except, desc) => {
8
- if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
9
- get: () => from[key],
10
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
11
- });
8
+ if (from && typeof from === "object" || typeof from === "function") {
9
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
10
+ get: () => from[key],
11
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
12
+ });
13
+ }
12
14
  return to;
13
15
  };
14
16
  var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
15
- value: !0
17
+ value: true
16
18
  }), mod);
17
19
  var ios_types_exports = {};
18
20
  module.exports = __toCommonJS(ios_types_exports);
@@ -1 +1 @@
1
- {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","ios_types_exports"],"sources":["../../../src/color/ios.types.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,iBAAA","ignoreList":[]}
1
+ {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","ios_types_exports"],"sources":["../../../src/color/ios.types.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,iBAAA","ignoreList":[]}
@@ -3,20 +3,22 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
3
  var __getOwnPropNames = Object.getOwnPropertyNames;
4
4
  var __hasOwnProp = Object.prototype.hasOwnProperty;
5
5
  var __export = (target, all) => {
6
- for (var name in all) __defProp(target, name, {
7
- get: all[name],
8
- enumerable: !0
9
- });
10
- },
11
- __copyProps = (to, from, except, desc) => {
12
- if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
6
+ for (var name in all) __defProp(target, name, {
7
+ get: all[name],
8
+ enumerable: true
9
+ });
10
+ };
11
+ var __copyProps = (to, from, except, desc) => {
12
+ if (from && typeof from === "object" || typeof from === "function") {
13
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
13
14
  get: () => from[key],
14
15
  enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
15
16
  });
16
- return to;
17
- };
17
+ }
18
+ return to;
19
+ };
18
20
  var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
19
- value: !0
21
+ value: true
20
22
  }), mod);
21
23
  var materialColor_exports = {};
22
24
  __export(materialColor_exports, {
@@ -5,20 +5,22 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
6
6
  var __hasOwnProp = Object.prototype.hasOwnProperty;
7
7
  var __export = (target, all) => {
8
- for (var name in all) __defProp(target, name, {
9
- get: all[name],
10
- enumerable: !0
11
- });
12
- },
13
- __copyProps = (to, from, except, desc) => {
14
- if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
8
+ for (var name in all) __defProp(target, name, {
9
+ get: all[name],
10
+ enumerable: true
11
+ });
12
+ };
13
+ var __copyProps = (to, from, except, desc) => {
14
+ if (from && typeof from === "object" || typeof from === "function") {
15
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
15
16
  get: () => from[key],
16
17
  enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
17
18
  });
18
- return to;
19
- };
19
+ }
20
+ return to;
21
+ };
20
22
  var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
21
- value: !0
23
+ value: true
22
24
  }), mod);
23
25
  var materialColor_native_exports = {};
24
26
  __export(materialColor_native_exports, {
@@ -26,18 +28,18 @@ __export(materialColor_native_exports, {
26
28
  Material3DynamicColor: () => Material3DynamicColor
27
29
  });
28
30
  module.exports = __toCommonJS(materialColor_native_exports);
29
- var import_react_native = require("react-native"),
30
- {
31
- VxrnNative
32
- } = import_react_native.NativeModules;
31
+ var import_react_native = require("react-native");
32
+ var {
33
+ VxrnNative
34
+ } = import_react_native.NativeModules;
33
35
  function Material3DynamicColor(name) {
34
36
  if (import_react_native.Platform.OS !== "android" || !VxrnNative) return null;
35
37
  var scheme = import_react_native.Appearance.getColorScheme();
36
- return VxrnNative.Material3DynamicColor(name, scheme ?? "unspecified");
38
+ return VxrnNative.Material3DynamicColor(name, scheme !== null && scheme !== void 0 ? scheme : "unspecified");
37
39
  }
38
40
  function Material3Color(name) {
39
41
  if (import_react_native.Platform.OS !== "android" || !VxrnNative) return null;
40
42
  var scheme = import_react_native.Appearance.getColorScheme();
41
- return VxrnNative.Material3Color(name, scheme ?? "unspecified");
43
+ return VxrnNative.Material3Color(name, scheme !== null && scheme !== void 0 ? scheme : "unspecified");
42
44
  }
43
45
  //# sourceMappingURL=materialColor.native.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["materialColor_native_exports","__export","Material3Color","Material3DynamicColor","module","exports","__toCommonJS","import_react_native","require","VxrnNative","NativeModules","name","Platform","OS","scheme","Appearance","getColorScheme"],"sources":["../../../src/color/materialColor.native.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,4BAAA;AAAAC,QAAA,CAAAD,4BAAA;EAAAE,cAAA,EAAAA,CAAA,KAAAA,cAAA;EAAAC,qBAAA,EAAAA,CAAA,KAAAA;AAAA;AAAAC,MAAA,CAAAC,OAAA,GAAAC,YAAA,CAAAN,4BAAA;AAAA,IAAAO,mBAAA,GAAoDC,OAAA;EAChD;IAAEC;EAAW,IAAIF,mBAAA,CAAAG,aAAA;AACd,SAASP,sBAAsBQ,IAAA,EAAM;EACxC,IAAIJ,mBAAA,CAAAK,QAAA,CAASC,EAAA,KAAO,aAAa,CAACJ,UAAA,EAAY,OAAO;EACrD,IAAIK,MAAA,GAASP,mBAAA,CAAAQ,UAAA,CAAWC,cAAA,CAAe;EACvC,OAAOP,UAAA,CAAWN,qBAAA,CAAsBQ,IAAA,EAAMG,MAAA,IAAgD,aAAa;AAC/G;AACO,SAASZ,eAAeS,IAAA,EAAM;EACjC,IAAIJ,mBAAA,CAAAK,QAAA,CAASC,EAAA,KAAO,aAAa,CAACJ,UAAA,EAAY,OAAO;EACrD,IAAIK,MAAA,GAASP,mBAAA,CAAAQ,UAAA,CAAWC,cAAA,CAAe;EACvC,OAAOP,UAAA,CAAWP,cAAA,CAAeS,IAAA,EAAMG,MAAA,IAAgD,aAAa;AACxG","ignoreList":[]}
1
+ {"version":3,"names":["materialColor_native_exports","__export","Material3Color","Material3DynamicColor","module","exports","__toCommonJS","import_react_native","require","VxrnNative","NativeModules","name","Platform","OS","scheme","Appearance","getColorScheme"],"sources":["../../../src/color/materialColor.native.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,4BAAA;AAAAC,QAAA,CAAAD,4BAAA;EAAAE,cAAA,EAAAA,CAAA,KAAAA,cAAA;EAAAC,qBAAA,EAAAA,CAAA,KAAAA;AAAA;AAAAC,MAAA,CAAAC,OAAA,GAAAC,YAAA,CAAAN,4BAAA;AAAA,IAAAO,mBAAA,GAAoDC,OAAA;AACpD,IAAI;EAAEC;AAAW,IAAIF,mBAAA,CAAAG,aAAA;AACd,SAASP,sBAAsBQ,IAAA,EAAM;EACxC,IAAIJ,mBAAA,CAAAK,QAAA,CAASC,EAAA,KAAO,aAAa,CAACJ,UAAA,EAAY,OAAO;EACrD,IAAIK,MAAA,GAASP,mBAAA,CAAAQ,UAAA,CAAWC,cAAA,CAAe;EACvC,OAAOP,UAAA,CAAWN,qBAAA,CAAsBQ,IAAA,EAAMG,MAAA,KAAW,QAAQA,MAAA,KAAW,SAASA,MAAA,GAAS,aAAa;AAC/G;AACO,SAASZ,eAAeS,IAAA,EAAM;EACjC,IAAIJ,mBAAA,CAAAK,QAAA,CAASC,EAAA,KAAO,aAAa,CAACJ,UAAA,EAAY,OAAO;EACrD,IAAIK,MAAA,GAASP,mBAAA,CAAAQ,UAAA,CAAWC,cAAA,CAAe;EACvC,OAAOP,UAAA,CAAWP,cAAA,CAAeS,IAAA,EAAMG,MAAA,KAAW,QAAQA,MAAA,KAAW,SAASA,MAAA,GAAS,aAAa;AACxG","ignoreList":[]}
@@ -3,20 +3,22 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
3
  var __getOwnPropNames = Object.getOwnPropertyNames;
4
4
  var __hasOwnProp = Object.prototype.hasOwnProperty;
5
5
  var __export = (target, all) => {
6
- for (var name in all) __defProp(target, name, {
7
- get: all[name],
8
- enumerable: !0
9
- });
10
- },
11
- __copyProps = (to, from, except, desc) => {
12
- if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
6
+ for (var name in all) __defProp(target, name, {
7
+ get: all[name],
8
+ enumerable: true
9
+ });
10
+ };
11
+ var __copyProps = (to, from, except, desc) => {
12
+ if (from && typeof from === "object" || typeof from === "function") {
13
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
13
14
  get: () => from[key],
14
15
  enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
15
16
  });
16
- return to;
17
- };
17
+ }
18
+ return to;
19
+ };
18
20
  var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
19
- value: !0
21
+ value: true
20
22
  }), mod);
21
23
  var index_exports = {};
22
24
  __export(index_exports, {
@@ -30,8 +32,8 @@ __export(index_exports, {
30
32
  ZoomTransitionSource: () => import_zoom.ZoomTransitionSource
31
33
  });
32
34
  module.exports = __toCommonJS(index_exports);
33
- var import_color = require("./color/index.cjs"),
34
- import_zoom = require("./zoom/index.cjs"),
35
- import_toolbar = require("./toolbar/index.cjs"),
36
- import_menu = require("./menu/index.cjs"),
37
- import_split_view = require("./split-view/index.cjs");
35
+ var import_color = require("./color/index.cjs");
36
+ var import_zoom = require("./zoom/index.cjs");
37
+ var import_toolbar = require("./toolbar/index.cjs");
38
+ var import_menu = require("./menu/index.cjs");
39
+ var import_split_view = require("./split-view/index.cjs");
@@ -5,20 +5,22 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
6
6
  var __hasOwnProp = Object.prototype.hasOwnProperty;
7
7
  var __export = (target, all) => {
8
- for (var name in all) __defProp(target, name, {
9
- get: all[name],
10
- enumerable: !0
11
- });
12
- },
13
- __copyProps = (to, from, except, desc) => {
14
- if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
8
+ for (var name in all) __defProp(target, name, {
9
+ get: all[name],
10
+ enumerable: true
11
+ });
12
+ };
13
+ var __copyProps = (to, from, except, desc) => {
14
+ if (from && typeof from === "object" || typeof from === "function") {
15
+ for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
15
16
  get: () => from[key],
16
17
  enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
17
18
  });
18
- return to;
19
- };
19
+ }
20
+ return to;
21
+ };
20
22
  var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
21
- value: !0
23
+ value: true
22
24
  }), mod);
23
25
  var index_exports = {};
24
26
  __export(index_exports, {
@@ -32,9 +34,9 @@ __export(index_exports, {
32
34
  ZoomTransitionSource: () => import_zoom.ZoomTransitionSource
33
35
  });
34
36
  module.exports = __toCommonJS(index_exports);
35
- var import_color = require("./color/index.native.js"),
36
- import_zoom = require("./zoom/index.native.js"),
37
- import_toolbar = require("./toolbar/index.native.js"),
38
- import_menu = require("./menu/index.native.js"),
39
- import_split_view = require("./split-view/index.native.js");
37
+ var import_color = require("./color/index.native.js");
38
+ var import_zoom = require("./zoom/index.native.js");
39
+ var import_toolbar = require("./toolbar/index.native.js");
40
+ var import_menu = require("./menu/index.native.js");
41
+ var import_split_view = require("./split-view/index.native.js");
40
42
  //# sourceMappingURL=index.native.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","index_exports","__export","Color","import_color","MenuAction","import_menu","SplitView","import_split_view","ToolbarHost","import_toolbar","ToolbarItem","ZoomTransitionAlignmentRectDetector","import_zoom","ZoomTransitionEnabler","ZoomTransitionSource","module","exports"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,aAAA;AAAAC,QAAA,CAAAD,aAAA;EAAAE,KAAA,EAAAA,CAAA,KAAAC,YAAA,CAAAD,KAAA;EAAAE,UAAA,EAAAA,CAAA,KAAAC,WAAA,CAAAD,UAAA;EAAAE,SAAA,EAAAA,CAAA,KAAAC,iBAAA,CAAAD,SAAA;EAAAE,WAAA,EAAAA,CAAA,KAAAC,cAAA,CAAAD,WAAA;EAAAE,WAAA,EAAAA,CAAA,KAAAD,cAAA,CAAAC,WAAA;EAAAC,mCAAA,EAAAA,CAAA,KAAAC,WAAA,CAAAD,mCAAA;EAAAE,qBAAA,EAAAA,CAAA,KAAAD,WAAA,CAAAC,qBAAA;EAAAC,oBAAA,EAAAA,CAAA,KAAAF,WAAA,CAAAE;AAAA;AAGAC,MAAA,CAAAC,OAAA,GAAArB,YAAsB,CAAAK,aAGtB","ignoreList":[]}
1
+ {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","index_exports","__export","Color","import_color","MenuAction","import_menu","SplitView","import_split_view","ToolbarHost","import_toolbar","ToolbarItem","ZoomTransitionAlignmentRectDetector","import_zoom","ZoomTransitionEnabler","ZoomTransitionSource","module","exports","require"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,aAAA;AAAAC,QAAA,CAAAD,aAAA;EAAAE,KAAA,EAAAA,CAAA,KAAAC,YAAA,CAAAD,KAAA;EAAAE,UAAA,EAAAA,CAAA,KAAAC,WAAA,CAAAD,UAAA;EAAAE,SAAA,EAAAA,CAAA,KAAAC,iBAAA,CAAAD,SAAA;EAAAE,WAAA,EAAAA,CAAA,KAAAC,cAAA,CAAAD,WAAA;EAAAE,WAAA,EAAAA,CAAA,KAAAD,cAAA,CAAAC,WAAA;EAAAC,mCAAA,EAAAA,CAAA,KAAAC,WAAA,CAAAD,mCAAA;EAAAE,qBAAA,EAAAA,CAAA,KAAAD,WAAA,CAAAC,qBAAA;EAAAC,oBAAA,EAAAA,CAAA,KAAAF,WAAA,CAAAE;AAAA;AAGAC,MAAA,CAAAC,OAAA,GAAArB,YAAsB,CAAAK,aAAA;AAGtB,IAAAG,YAAA,GAIOc,OAAA;AAEP,IAAAL,WAAA,GAAAK,OAAyC;AAGzC,IAAAR,cAA2B,GAAAQ,OAAA;AAG3B,IAAAZ,WAAA,GAAAY,OAA0B","ignoreList":[]}