@tamagui/input 2.0.0-rc.4 → 2.0.0-rc.40

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 (163) hide show
  1. package/dist/cjs/Input.cjs +165 -153
  2. package/dist/cjs/Input.native.js +255 -257
  3. package/dist/cjs/Input.native.js.map +1 -1
  4. package/dist/cjs/InputNativeProps.cjs +7 -5
  5. package/dist/cjs/InputNativeProps.native.js +7 -5
  6. package/dist/cjs/InputNativeProps.native.js.map +1 -1
  7. package/dist/cjs/TextArea.cjs +15 -13
  8. package/dist/cjs/TextArea.native.js +34 -32
  9. package/dist/cjs/TextArea.native.js.map +1 -1
  10. package/dist/cjs/index.cjs +13 -11
  11. package/dist/cjs/index.native.js +13 -11
  12. package/dist/cjs/index.native.js.map +1 -1
  13. package/dist/cjs/inputTypes.test-d.cjs +125 -0
  14. package/dist/cjs/inputTypes.test-d.native.js +128 -0
  15. package/dist/cjs/inputTypes.test-d.native.js.map +1 -0
  16. package/dist/cjs/shared.cjs +113 -101
  17. package/dist/cjs/shared.native.js +119 -107
  18. package/dist/cjs/shared.native.js.map +1 -1
  19. package/dist/cjs/types.cjs +7 -5
  20. package/dist/cjs/types.native.js +7 -5
  21. package/dist/cjs/types.native.js.map +1 -1
  22. package/dist/cjs/v1/Input.cjs +175 -168
  23. package/dist/cjs/v1/Input.native.js +154 -112
  24. package/dist/cjs/v1/Input.native.js.map +1 -1
  25. package/dist/cjs/v1/TextArea.cjs +15 -13
  26. package/dist/cjs/v1/TextArea.native.js +34 -32
  27. package/dist/cjs/v1/TextArea.native.js.map +1 -1
  28. package/dist/cjs/v1/index.cjs +7 -5
  29. package/dist/cjs/v1/index.native.js +7 -5
  30. package/dist/cjs/v1/index.native.js.map +1 -1
  31. package/dist/cjs/v1/types.cjs +7 -5
  32. package/dist/cjs/v1/types.native.js +7 -5
  33. package/dist/cjs/v1/types.native.js.map +1 -1
  34. package/dist/esm/Input.mjs +134 -124
  35. package/dist/esm/Input.mjs.map +1 -1
  36. package/dist/esm/Input.native.js +225 -229
  37. package/dist/esm/Input.native.js.map +1 -1
  38. package/dist/esm/TextArea.mjs.map +1 -1
  39. package/dist/esm/TextArea.native.js.map +1 -1
  40. package/dist/esm/index.js +4 -7
  41. package/dist/esm/index.js.map +1 -6
  42. package/dist/esm/inputTypes.test-d.mjs +126 -0
  43. package/dist/esm/inputTypes.test-d.mjs.map +1 -0
  44. package/dist/esm/inputTypes.test-d.native.js +126 -0
  45. package/dist/esm/inputTypes.test-d.native.js.map +1 -0
  46. package/dist/esm/shared.mjs +96 -86
  47. package/dist/esm/shared.mjs.map +1 -1
  48. package/dist/esm/shared.native.js +101 -91
  49. package/dist/esm/shared.native.js.map +1 -1
  50. package/dist/esm/v1/Input.mjs +144 -139
  51. package/dist/esm/v1/Input.mjs.map +1 -1
  52. package/dist/esm/v1/Input.native.js +123 -83
  53. package/dist/esm/v1/Input.native.js.map +1 -1
  54. package/dist/jsx/Input.mjs +134 -124
  55. package/dist/jsx/Input.mjs.map +1 -1
  56. package/dist/jsx/Input.native.js +255 -257
  57. package/dist/jsx/Input.native.js.map +1 -1
  58. package/dist/jsx/InputNativeProps.native.js +7 -5
  59. package/dist/jsx/TextArea.mjs.map +1 -1
  60. package/dist/jsx/TextArea.native.js +34 -32
  61. package/dist/jsx/TextArea.native.js.map +1 -1
  62. package/dist/jsx/index.js +4 -7
  63. package/dist/jsx/index.js.map +1 -6
  64. package/dist/jsx/index.native.js +13 -11
  65. package/dist/jsx/inputTypes.test-d.mjs +126 -0
  66. package/dist/jsx/inputTypes.test-d.mjs.map +1 -0
  67. package/dist/jsx/inputTypes.test-d.native.js +128 -0
  68. package/dist/jsx/inputTypes.test-d.native.js.map +1 -0
  69. package/dist/jsx/shared.mjs +96 -86
  70. package/dist/jsx/shared.mjs.map +1 -1
  71. package/dist/jsx/shared.native.js +119 -107
  72. package/dist/jsx/shared.native.js.map +1 -1
  73. package/dist/jsx/types.native.js +7 -5
  74. package/dist/jsx/v1/Input.mjs +144 -139
  75. package/dist/jsx/v1/Input.mjs.map +1 -1
  76. package/dist/jsx/v1/Input.native.js +154 -112
  77. package/dist/jsx/v1/Input.native.js.map +1 -1
  78. package/dist/jsx/v1/TextArea.native.js +34 -32
  79. package/dist/jsx/v1/TextArea.native.js.map +1 -1
  80. package/dist/jsx/v1/index.native.js +7 -5
  81. package/dist/jsx/v1/types.native.js +7 -5
  82. package/package.json +20 -22
  83. package/src/Input.native.tsx +3 -30
  84. package/src/Input.tsx +5 -3
  85. package/src/TextArea.tsx +3 -3
  86. package/src/index.ts +1 -1
  87. package/src/inputTypes.test-d.ts +237 -0
  88. package/src/shared.tsx +3 -0
  89. package/src/types.ts +24 -14
  90. package/types/Input.d.ts +17 -6
  91. package/types/Input.d.ts.map +1 -1
  92. package/types/Input.native.d.ts +15 -6
  93. package/types/Input.native.d.ts.map +1 -1
  94. package/types/TextArea.d.ts +11 -4
  95. package/types/TextArea.d.ts.map +1 -1
  96. package/types/index.d.ts +1 -1
  97. package/types/index.d.ts.map +1 -1
  98. package/types/shared.d.ts +3 -0
  99. package/types/shared.d.ts.map +1 -1
  100. package/types/types.d.ts +14 -4
  101. package/types/types.d.ts.map +1 -1
  102. package/types/v1/Input.d.ts +15 -6
  103. package/types/v1/Input.d.ts.map +1 -1
  104. package/types/v1/Input.native.d.ts +15 -6
  105. package/types/v1/Input.native.d.ts.map +1 -1
  106. package/types/v1/TextArea.d.ts +9 -3
  107. package/types/v1/TextArea.d.ts.map +1 -1
  108. package/dist/cjs/Input.js +0 -143
  109. package/dist/cjs/Input.js.map +0 -6
  110. package/dist/cjs/InputNativeProps.js +0 -14
  111. package/dist/cjs/InputNativeProps.js.map +0 -6
  112. package/dist/cjs/TextArea.js +0 -43
  113. package/dist/cjs/TextArea.js.map +0 -6
  114. package/dist/cjs/index.js +0 -24
  115. package/dist/cjs/index.js.map +0 -6
  116. package/dist/cjs/shared.js +0 -108
  117. package/dist/cjs/shared.js.map +0 -6
  118. package/dist/cjs/types.js +0 -14
  119. package/dist/cjs/types.js.map +0 -6
  120. package/dist/cjs/v1/Input.js +0 -171
  121. package/dist/cjs/v1/Input.js.map +0 -6
  122. package/dist/cjs/v1/TextArea.js +0 -43
  123. package/dist/cjs/v1/TextArea.js.map +0 -6
  124. package/dist/cjs/v1/index.js +0 -16
  125. package/dist/cjs/v1/index.js.map +0 -6
  126. package/dist/cjs/v1/types.js +0 -14
  127. package/dist/cjs/v1/types.js.map +0 -6
  128. package/dist/esm/Input.js +0 -124
  129. package/dist/esm/Input.js.map +0 -6
  130. package/dist/esm/InputNativeProps.js +0 -1
  131. package/dist/esm/InputNativeProps.js.map +0 -6
  132. package/dist/esm/TextArea.js +0 -29
  133. package/dist/esm/TextArea.js.map +0 -6
  134. package/dist/esm/shared.js +0 -96
  135. package/dist/esm/shared.js.map +0 -6
  136. package/dist/esm/types.js +0 -1
  137. package/dist/esm/types.js.map +0 -6
  138. package/dist/esm/v1/Input.js +0 -152
  139. package/dist/esm/v1/Input.js.map +0 -6
  140. package/dist/esm/v1/TextArea.js +0 -29
  141. package/dist/esm/v1/TextArea.js.map +0 -6
  142. package/dist/esm/v1/index.js +0 -3
  143. package/dist/esm/v1/index.js.map +0 -6
  144. package/dist/esm/v1/types.js +0 -1
  145. package/dist/esm/v1/types.js.map +0 -6
  146. package/dist/jsx/Input.js +0 -124
  147. package/dist/jsx/Input.js.map +0 -6
  148. package/dist/jsx/InputNativeProps.js +0 -1
  149. package/dist/jsx/InputNativeProps.js.map +0 -6
  150. package/dist/jsx/TextArea.js +0 -29
  151. package/dist/jsx/TextArea.js.map +0 -6
  152. package/dist/jsx/shared.js +0 -96
  153. package/dist/jsx/shared.js.map +0 -6
  154. package/dist/jsx/types.js +0 -1
  155. package/dist/jsx/types.js.map +0 -6
  156. package/dist/jsx/v1/Input.js +0 -152
  157. package/dist/jsx/v1/Input.js.map +0 -6
  158. package/dist/jsx/v1/TextArea.js +0 -29
  159. package/dist/jsx/v1/TextArea.js.map +0 -6
  160. package/dist/jsx/v1/index.js +0 -3
  161. package/dist/jsx/v1/index.js.map +0 -6
  162. package/dist/jsx/v1/types.js +0 -1
  163. package/dist/jsx/v1/types.js.map +0 -6
@@ -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 InputNativeProps_exports = {};
18
20
  module.exports = __toCommonJS(InputNativeProps_exports);
@@ -1 +1 @@
1
- {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","InputNativeProps_exports"],"sources":["../../src/InputNativeProps.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,wBAAA","ignoreList":[]}
1
+ {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","InputNativeProps_exports"],"sources":["../../src/InputNativeProps.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,wBAAA","ignoreList":[]}
@@ -3,29 +3,31 @@ 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 TextArea_exports = {};
22
24
  __export(TextArea_exports, {
23
25
  TextArea: () => TextArea
24
26
  });
25
27
  module.exports = __toCommonJS(TextArea_exports);
26
- var import_web = require("@tamagui/web"),
27
- import_Input = require("./Input.cjs"),
28
- import_shared = require("./shared.cjs");
28
+ var import_web = require("@tamagui/web");
29
+ var import_Input = require("./Input.cjs");
30
+ var import_shared = require("./shared.cjs");
29
31
  const TextArea = (0, import_web.styled)(import_Input.Input, {
30
32
  name: "TextArea",
31
33
  render: "textarea",
@@ -5,49 +5,51 @@ 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 TextArea_exports = {};
24
26
  __export(TextArea_exports, {
25
27
  TextArea: () => TextArea
26
28
  });
27
29
  module.exports = __toCommonJS(TextArea_exports);
28
- var import_web = require("@tamagui/web"),
29
- import_Input = require("./Input.native.js"),
30
- import_shared = require("./shared.native.js"),
31
- TextArea = (0, import_web.styled)(import_Input.Input, {
32
- name: "TextArea",
33
- render: "textarea",
34
- // this attribute fixes firefox newline issue
35
- // @ts-ignore
36
- whiteSpace: "pre-wrap",
37
- variants: {
38
- unstyled: {
39
- false: {
40
- height: "auto",
41
- ...import_shared.defaultStyles,
42
- rows: 3
43
- }
44
- },
45
- size: {
46
- "...size": import_shared.textAreaSizeVariant
30
+ var import_web = require("@tamagui/web");
31
+ var import_Input = require("./Input.native.js");
32
+ var import_shared = require("./shared.native.js");
33
+ var TextArea = (0, import_web.styled)(import_Input.Input, {
34
+ name: "TextArea",
35
+ render: "textarea",
36
+ // this attribute fixes firefox newline issue
37
+ // @ts-ignore
38
+ whiteSpace: "pre-wrap",
39
+ variants: {
40
+ unstyled: {
41
+ false: {
42
+ height: "auto",
43
+ ...import_shared.defaultStyles,
44
+ rows: 3
47
45
  }
48
46
  },
49
- defaultVariants: {
50
- unstyled: process.env.TAMAGUI_HEADLESS === "1"
47
+ size: {
48
+ "...size": import_shared.textAreaSizeVariant
51
49
  }
52
- });
50
+ },
51
+ defaultVariants: {
52
+ unstyled: process.env.TAMAGUI_HEADLESS === "1"
53
+ }
54
+ });
53
55
  //# sourceMappingURL=TextArea.native.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","TextArea_exports","__export","TextArea","module","exports","import_web","require","import_Input","import_shared","styled","Input","name","render","whiteSpace","variants","unstyled","false","height","defaultStyles","rows","size","textAreaSizeVariant","defaultVariants","process","env","TAMAGUI_HEADLESS"],"sources":["../../src/TextArea.tsx"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,gBAAA;AAAAC,QAAA,CAAAD,gBAAA;EAAAE,QAAA,EAAAA,CAAA,KAAAA;AAAA;AAAAC,MAAA,CAAAC,OAAA,GAAuBT,YAAA,CAAAK,gBACvB;AASO,IAAAK,UAAM,GAAAC,OAAW,gBAAO;EAAAC,YAAA,GAAAD,OAAO;EAAAE,aAAA,GAAAF,OAAA;EAAAJ,QAAA,OAAAG,UAAA,CAAAI,MAAA,EAAAF,YAAA,CAAAG,KAAA;IACpCC,IAAA,EAAM;IACNC,MAAA,EAAQ;IAAA;IAAA;IAIRC,UAAA,EAAY;IAEZC,QAAA,EAAU;MACRC,QAAA,EAAU;QACRC,KAAA,EAAO;UACLC,MAAA,EAAQ;UACR,GAAGT,aAAA,CAAAU,aAAA;UACHC,IAAA,EAAM;QACR;MACF;MAEAC,IAAA,EAAM;QACJ,WAAWZ,aAAA,CAAAa;MACb;IACF;IAEAC,eAAA,EAAiB;MACfP,QAAA,EAAUQ,OAAA,CAAQC,GAAA,CAAIC,gBAAA,KAAqB;IAC7C;EACF,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","TextArea_exports","__export","TextArea","module","exports","import_web","require","import_Input","import_shared","styled","Input","name","render","whiteSpace","variants","unstyled","false","height","defaultStyles","rows","size","textAreaSizeVariant","defaultVariants","process","env","TAMAGUI_HEADLESS"],"sources":["../../src/TextArea.tsx"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,gBAAA;AAAAC,QAAA,CAAAD,gBAAA;EAAAE,QAAA,EAAAA,CAAA,KAAAA;AAAA;AAAAC,MAAA,CAAAC,OAAA,GAAsCT,YAAA,CAAAK,gBAAA;AACtC,IAAAK,UAAA,GAAAC,OAAsB;AACtB,IAAAC,YAAA,GAAAD,OAAmD;AAM5C,IAAAE,aAAM,GAAAF,OAAW;AAAc,IACpCJ,QAAM,OAAAG,UAAA,CAAAI,MAAA,EAAAF,YAAA,CAAAG,KAAA;EACNC,IAAA,YAAQ;EAAAC,MAAA;EAAA;EAIR;EAEAC,UAAU;EAAAC,QACR;IAAUC,QACR,EAAO;MAAAC,KACL;QACAC,MAAG;QACH,GAAAT,aAAM,CAAAU,aAAA;QACRC,IAAA;MACF;IAEA;IAAMC,IACJ;MACF,WAAAZ,aAAA,CAAAa;IACF;EAEA;EAAiBC,eACL;IACZP,QAAA,EAAAQ,OAAA,CAAAC,GAAA,CAAAC,gBAAA;EACD","ignoreList":[]}
@@ -3,21 +3,23 @@ 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 index_exports = {};
23
25
  __export(index_exports, {
@@ -5,21 +5,23 @@ 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_exports = {};
25
27
  __export(index_exports, {
@@ -1 +1 @@
1
- {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","index_exports","__export","inputSizeVariant","import_shared","textAreaSizeVariant","module","exports","__reExport","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,gBAAA,EAAAA,CAAA,KAAAC,aAAA,CAAAD,gBAAA;EAAAE,mBAAA,EAAAA,CAAA,KAAAD,aAAA,CAAAC;AAAA;AAAAC,MAAA,CAAAC,OAAA,GAAAX,YAAc,CAAAK,aAAA;AACdO,UAAA,CAAAP,aAAA,EAAcQ,OAAA,uBAAAH,MADd,CAAAC,OAAA;AAEAC,UAAA,CAAAP,aAAsD,EAAAQ,OAAA,0BAAAH,MAAA,CAAAC,OAAA","ignoreList":[]}
1
+ {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","index_exports","__export","inputSizeVariant","import_shared","textAreaSizeVariant","module","exports","__reExport","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,gBAAA,EAAAA,CAAA,KAAAC,aAAA,CAAAD,gBAAA;EAAAE,mBAAA,EAAAA,CAAA,KAAAD,aAAA,CAAAC;AAAA;AAAAC,MAAA,CAAAC,OAAA,GAAAX,YAAc,CAAAK,aAAA;AACdO,UAAA,CAAAP,aAAA,EAAcQ,OAAA,uBAAAH,MADd,CAAAC,OAAA;AAEAC,UAAA,CAAAP,aAAsD,EAAAQ,OAAA,0BAAAH,MAAA,CAAAC,OAAA","ignoreList":[]}
@@ -0,0 +1,125 @@
1
+ var import_vitest = require("vitest");
2
+ (0, import_vitest.describe)("Input event handler types", () => {
3
+ (0, import_vitest.test)("onChange event uses HTMLInputElement", () => {
4
+ (0, import_vitest.expectTypeOf)().toMatchTypeOf();
5
+ });
6
+ (0, import_vitest.test)("onFocus event uses HTMLInputElement", () => {
7
+ (0, import_vitest.expectTypeOf)().toMatchTypeOf();
8
+ });
9
+ (0, import_vitest.test)("onBlur event uses HTMLInputElement", () => {
10
+ (0, import_vitest.expectTypeOf)().toMatchTypeOf();
11
+ });
12
+ (0, import_vitest.test)("onKeyDown event uses HTMLInputElement", () => {
13
+ (0, import_vitest.expectTypeOf)().toMatchTypeOf();
14
+ });
15
+ (0, import_vitest.test)("onClick event uses HTMLInputElement", () => {
16
+ (0, import_vitest.expectTypeOf)().toMatchTypeOf();
17
+ });
18
+ (0, import_vitest.test)("onChange event is NOT typed with HTMLDivElement", () => {
19
+ (0, import_vitest.expectTypeOf)().toEqualTypeOf();
20
+ });
21
+ });
22
+ (0, import_vitest.describe)("Input HTML props", () => {
23
+ (0, import_vitest.test)("accepts type prop", () => {
24
+ (0, import_vitest.expectTypeOf)().toHaveProperty("type");
25
+ });
26
+ (0, import_vitest.test)("accepts placeholder prop", () => {
27
+ (0, import_vitest.expectTypeOf)().toHaveProperty("placeholder");
28
+ });
29
+ (0, import_vitest.test)("accepts value prop", () => {
30
+ (0, import_vitest.expectTypeOf)().toHaveProperty("value");
31
+ });
32
+ (0, import_vitest.test)("accepts defaultValue prop", () => {
33
+ (0, import_vitest.expectTypeOf)().toHaveProperty("defaultValue");
34
+ });
35
+ (0, import_vitest.test)("accepts maxLength prop", () => {
36
+ (0, import_vitest.expectTypeOf)().toHaveProperty("maxLength");
37
+ });
38
+ (0, import_vitest.test)("accepts pattern prop", () => {
39
+ (0, import_vitest.expectTypeOf)().toHaveProperty("pattern");
40
+ });
41
+ (0, import_vitest.test)("accepts required prop", () => {
42
+ (0, import_vitest.expectTypeOf)().toHaveProperty("required");
43
+ });
44
+ (0, import_vitest.test)("accepts readOnly prop", () => {
45
+ (0, import_vitest.expectTypeOf)().toHaveProperty("readOnly");
46
+ });
47
+ (0, import_vitest.test)("accepts autoComplete prop", () => {
48
+ (0, import_vitest.expectTypeOf)().toHaveProperty("autoComplete");
49
+ });
50
+ (0, import_vitest.test)("accepts name prop", () => {
51
+ (0, import_vitest.expectTypeOf)().toHaveProperty("name");
52
+ });
53
+ });
54
+ (0, import_vitest.describe)("Input style props", () => {
55
+ (0, import_vitest.test)("accepts padding style prop", () => {
56
+ (0, import_vitest.expectTypeOf)().toHaveProperty("padding");
57
+ });
58
+ (0, import_vitest.test)("accepts backgroundColor style prop", () => {
59
+ (0, import_vitest.expectTypeOf)().toHaveProperty("backgroundColor");
60
+ });
61
+ (0, import_vitest.test)("accepts borderRadius style prop", () => {
62
+ (0, import_vitest.expectTypeOf)().toHaveProperty("borderRadius");
63
+ });
64
+ (0, import_vitest.test)("accepts text style props", () => {
65
+ (0, import_vitest.expectTypeOf)().toHaveProperty("fontSize");
66
+ (0, import_vitest.expectTypeOf)().toHaveProperty("fontWeight");
67
+ (0, import_vitest.expectTypeOf)().toHaveProperty("color");
68
+ });
69
+ (0, import_vitest.test)("accepts size variant", () => {
70
+ (0, import_vitest.expectTypeOf)().toHaveProperty("size");
71
+ });
72
+ (0, import_vitest.test)("accepts unstyled variant", () => {
73
+ (0, import_vitest.expectTypeOf)().toHaveProperty("unstyled");
74
+ });
75
+ });
76
+ (0, import_vitest.describe)("Input cross-platform props", () => {
77
+ (0, import_vitest.test)("autoCorrect accepts boolean and string", () => {
78
+ (0, import_vitest.expectTypeOf)().toMatchTypeOf();
79
+ });
80
+ (0, import_vitest.test)("autoCapitalize accepts native and web values", () => {
81
+ (0, import_vitest.expectTypeOf)().toMatchTypeOf();
82
+ });
83
+ (0, import_vitest.test)("accepts onChangeText callback", () => {
84
+ (0, import_vitest.expectTypeOf)().toHaveProperty("onChangeText");
85
+ (0, import_vitest.expectTypeOf)().toMatchTypeOf();
86
+ });
87
+ (0, import_vitest.test)("accepts onSubmitEditing callback", () => {
88
+ (0, import_vitest.expectTypeOf)().toHaveProperty("onSubmitEditing");
89
+ });
90
+ (0, import_vitest.test)("accepts placeholderTextColor", () => {
91
+ (0, import_vitest.expectTypeOf)().toHaveProperty("placeholderTextColor");
92
+ });
93
+ (0, import_vitest.test)("accepts selection prop", () => {
94
+ (0, import_vitest.expectTypeOf)().toHaveProperty("selection");
95
+ });
96
+ });
97
+ (0, import_vitest.describe)("InputRef type", () => {
98
+ (0, import_vitest.test)("InputRef accepts TextInput", () => {
99
+ const _ref = {};
100
+ });
101
+ (0, import_vitest.test)("InputRef rejects plain HTMLDivElement", () => {
102
+ const _ref = {};
103
+ });
104
+ });
105
+ (0, import_vitest.describe)("TextArea types", () => {
106
+ (0, import_vitest.test)("TextArea has rows prop", () => {
107
+ (0, import_vitest.expectTypeOf)().toHaveProperty("rows");
108
+ });
109
+ (0, import_vitest.test)("TextArea accepts style props", () => {
110
+ (0, import_vitest.expectTypeOf)().toHaveProperty("padding");
111
+ (0, import_vitest.expectTypeOf)().toHaveProperty("fontSize");
112
+ });
113
+ (0, import_vitest.test)("TextArea accepts HTML input props", () => {
114
+ (0, import_vitest.expectTypeOf)().toHaveProperty("placeholder");
115
+ (0, import_vitest.expectTypeOf)().toHaveProperty("value");
116
+ });
117
+ });
118
+ (0, import_vitest.describe)("InputProps derivation", () => {
119
+ (0, import_vitest.test)("InputProps equals GetProps<typeof Input>", () => {
120
+ (0, import_vitest.expectTypeOf)().toEqualTypeOf();
121
+ });
122
+ (0, import_vitest.test)("TextAreaProps equals GetProps<typeof TextArea>", () => {
123
+ (0, import_vitest.expectTypeOf)().toEqualTypeOf();
124
+ });
125
+ });
@@ -0,0 +1,128 @@
1
+ "use strict";
2
+
3
+ var import_vitest = require("vitest");
4
+ (0, import_vitest.describe)("Input event handler types", function () {
5
+ (0, import_vitest.test)("onChange event uses HTMLInputElement", function () {
6
+ (0, import_vitest.expectTypeOf)().toMatchTypeOf();
7
+ });
8
+ (0, import_vitest.test)("onFocus event uses HTMLInputElement", function () {
9
+ (0, import_vitest.expectTypeOf)().toMatchTypeOf();
10
+ });
11
+ (0, import_vitest.test)("onBlur event uses HTMLInputElement", function () {
12
+ (0, import_vitest.expectTypeOf)().toMatchTypeOf();
13
+ });
14
+ (0, import_vitest.test)("onKeyDown event uses HTMLInputElement", function () {
15
+ (0, import_vitest.expectTypeOf)().toMatchTypeOf();
16
+ });
17
+ (0, import_vitest.test)("onClick event uses HTMLInputElement", function () {
18
+ (0, import_vitest.expectTypeOf)().toMatchTypeOf();
19
+ });
20
+ (0, import_vitest.test)("onChange event is NOT typed with HTMLDivElement", function () {
21
+ (0, import_vitest.expectTypeOf)().toEqualTypeOf();
22
+ });
23
+ });
24
+ (0, import_vitest.describe)("Input HTML props", function () {
25
+ (0, import_vitest.test)("accepts type prop", function () {
26
+ (0, import_vitest.expectTypeOf)().toHaveProperty("type");
27
+ });
28
+ (0, import_vitest.test)("accepts placeholder prop", function () {
29
+ (0, import_vitest.expectTypeOf)().toHaveProperty("placeholder");
30
+ });
31
+ (0, import_vitest.test)("accepts value prop", function () {
32
+ (0, import_vitest.expectTypeOf)().toHaveProperty("value");
33
+ });
34
+ (0, import_vitest.test)("accepts defaultValue prop", function () {
35
+ (0, import_vitest.expectTypeOf)().toHaveProperty("defaultValue");
36
+ });
37
+ (0, import_vitest.test)("accepts maxLength prop", function () {
38
+ (0, import_vitest.expectTypeOf)().toHaveProperty("maxLength");
39
+ });
40
+ (0, import_vitest.test)("accepts pattern prop", function () {
41
+ (0, import_vitest.expectTypeOf)().toHaveProperty("pattern");
42
+ });
43
+ (0, import_vitest.test)("accepts required prop", function () {
44
+ (0, import_vitest.expectTypeOf)().toHaveProperty("required");
45
+ });
46
+ (0, import_vitest.test)("accepts readOnly prop", function () {
47
+ (0, import_vitest.expectTypeOf)().toHaveProperty("readOnly");
48
+ });
49
+ (0, import_vitest.test)("accepts autoComplete prop", function () {
50
+ (0, import_vitest.expectTypeOf)().toHaveProperty("autoComplete");
51
+ });
52
+ (0, import_vitest.test)("accepts name prop", function () {
53
+ (0, import_vitest.expectTypeOf)().toHaveProperty("name");
54
+ });
55
+ });
56
+ (0, import_vitest.describe)("Input style props", function () {
57
+ (0, import_vitest.test)("accepts padding style prop", function () {
58
+ (0, import_vitest.expectTypeOf)().toHaveProperty("padding");
59
+ });
60
+ (0, import_vitest.test)("accepts backgroundColor style prop", function () {
61
+ (0, import_vitest.expectTypeOf)().toHaveProperty("backgroundColor");
62
+ });
63
+ (0, import_vitest.test)("accepts borderRadius style prop", function () {
64
+ (0, import_vitest.expectTypeOf)().toHaveProperty("borderRadius");
65
+ });
66
+ (0, import_vitest.test)("accepts text style props", function () {
67
+ (0, import_vitest.expectTypeOf)().toHaveProperty("fontSize");
68
+ (0, import_vitest.expectTypeOf)().toHaveProperty("fontWeight");
69
+ (0, import_vitest.expectTypeOf)().toHaveProperty("color");
70
+ });
71
+ (0, import_vitest.test)("accepts size variant", function () {
72
+ (0, import_vitest.expectTypeOf)().toHaveProperty("size");
73
+ });
74
+ (0, import_vitest.test)("accepts unstyled variant", function () {
75
+ (0, import_vitest.expectTypeOf)().toHaveProperty("unstyled");
76
+ });
77
+ });
78
+ (0, import_vitest.describe)("Input cross-platform props", function () {
79
+ (0, import_vitest.test)("autoCorrect accepts boolean and string", function () {
80
+ (0, import_vitest.expectTypeOf)().toMatchTypeOf();
81
+ });
82
+ (0, import_vitest.test)("autoCapitalize accepts native and web values", function () {
83
+ (0, import_vitest.expectTypeOf)().toMatchTypeOf();
84
+ });
85
+ (0, import_vitest.test)("accepts onChangeText callback", function () {
86
+ (0, import_vitest.expectTypeOf)().toHaveProperty("onChangeText");
87
+ (0, import_vitest.expectTypeOf)().toMatchTypeOf();
88
+ });
89
+ (0, import_vitest.test)("accepts onSubmitEditing callback", function () {
90
+ (0, import_vitest.expectTypeOf)().toHaveProperty("onSubmitEditing");
91
+ });
92
+ (0, import_vitest.test)("accepts placeholderTextColor", function () {
93
+ (0, import_vitest.expectTypeOf)().toHaveProperty("placeholderTextColor");
94
+ });
95
+ (0, import_vitest.test)("accepts selection prop", function () {
96
+ (0, import_vitest.expectTypeOf)().toHaveProperty("selection");
97
+ });
98
+ });
99
+ (0, import_vitest.describe)("InputRef type", function () {
100
+ (0, import_vitest.test)("InputRef accepts TextInput", function () {
101
+ var _ref = {};
102
+ });
103
+ (0, import_vitest.test)("InputRef rejects plain HTMLDivElement", function () {
104
+ var _ref = {};
105
+ });
106
+ });
107
+ (0, import_vitest.describe)("TextArea types", function () {
108
+ (0, import_vitest.test)("TextArea has rows prop", function () {
109
+ (0, import_vitest.expectTypeOf)().toHaveProperty("rows");
110
+ });
111
+ (0, import_vitest.test)("TextArea accepts style props", function () {
112
+ (0, import_vitest.expectTypeOf)().toHaveProperty("padding");
113
+ (0, import_vitest.expectTypeOf)().toHaveProperty("fontSize");
114
+ });
115
+ (0, import_vitest.test)("TextArea accepts HTML input props", function () {
116
+ (0, import_vitest.expectTypeOf)().toHaveProperty("placeholder");
117
+ (0, import_vitest.expectTypeOf)().toHaveProperty("value");
118
+ });
119
+ });
120
+ (0, import_vitest.describe)("InputProps derivation", function () {
121
+ (0, import_vitest.test)("InputProps equals GetProps<typeof Input>", function () {
122
+ (0, import_vitest.expectTypeOf)().toEqualTypeOf();
123
+ });
124
+ (0, import_vitest.test)("TextAreaProps equals GetProps<typeof TextArea>", function () {
125
+ (0, import_vitest.expectTypeOf)().toEqualTypeOf();
126
+ });
127
+ });
128
+ //# sourceMappingURL=inputTypes.test-d.native.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["import_vitest","require","describe","test","expectTypeOf","toMatchTypeOf","toEqualTypeOf","toHaveProperty","_ref"],"sources":["../../src/inputTypes.test-d.ts"],"sourcesContent":[null],"mappings":"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","ignoreList":[]}