@elliemae/ds-props-helpers 3.0.0-next.2 → 3.0.0-next.3

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 (173) hide show
  1. package/dist/cjs/defaultProps/index.js +28 -0
  2. package/dist/cjs/defaultProps/index.js.map +7 -0
  3. package/dist/cjs/defaultProps/useMemoMergePropsWithDefault.js +62 -0
  4. package/dist/cjs/defaultProps/useMemoMergePropsWithDefault.js.map +7 -0
  5. package/dist/cjs/getProps/index.js +37 -0
  6. package/dist/cjs/getProps/index.js.map +7 -0
  7. package/dist/cjs/globalProps/constants.js +397 -0
  8. package/dist/cjs/globalProps/constants.js.map +7 -0
  9. package/dist/cjs/globalProps/globalAttributesPropTypes.js +398 -0
  10. package/dist/cjs/globalProps/globalAttributesPropTypes.js.map +7 -0
  11. package/dist/cjs/globalProps/index.js +29 -0
  12. package/dist/cjs/globalProps/index.js.map +7 -0
  13. package/dist/cjs/globalProps/useGetGlobalAttributes.js +56 -0
  14. package/dist/cjs/globalProps/useGetGlobalAttributes.js.map +7 -0
  15. package/dist/cjs/index.js +34 -0
  16. package/dist/cjs/index.js.map +7 -0
  17. package/dist/cjs/propTypes/PropTypes.js +149 -0
  18. package/dist/cjs/propTypes/PropTypes.js.map +7 -0
  19. package/dist/cjs/propTypes/customPropTypes.js +38 -0
  20. package/dist/cjs/propTypes/customPropTypes.js.map +7 -0
  21. package/dist/cjs/propTypes/describe.js +81 -0
  22. package/dist/cjs/propTypes/describe.js.map +7 -0
  23. package/dist/cjs/propTypes/describeConversions.js +96 -0
  24. package/dist/cjs/propTypes/describeConversions.js.map +7 -0
  25. package/dist/cjs/propTypes/describeGuards.js +49 -0
  26. package/dist/cjs/propTypes/describeGuards.js.map +7 -0
  27. package/dist/cjs/propTypes/index.js +37 -0
  28. package/dist/cjs/propTypes/index.js.map +7 -0
  29. package/dist/cjs/propTypes/toTypescript.js +154 -0
  30. package/dist/cjs/propTypes/toTypescript.js.map +7 -0
  31. package/dist/cjs/propTypes/types.js +27 -0
  32. package/dist/cjs/propTypes/types.js.map +7 -0
  33. package/dist/cjs/tests/globalProps/TestComponent.js +54 -0
  34. package/dist/cjs/tests/globalProps/TestComponent.js.map +7 -0
  35. package/dist/cjs/tests/validation/test.schema.js +67 -0
  36. package/dist/cjs/tests/validation/test.schema.js.map +7 -0
  37. package/dist/cjs/tests/xstyledProps/TestComponent.js +60 -0
  38. package/dist/cjs/tests/xstyledProps/TestComponent.js.map +7 -0
  39. package/dist/cjs/useDeprecateComponent/index.js +40 -0
  40. package/dist/cjs/useDeprecateComponent/index.js.map +7 -0
  41. package/dist/cjs/validation/errorTemplates.js +48 -0
  42. package/dist/cjs/validation/errorTemplates.js.map +7 -0
  43. package/dist/cjs/validation/index.js +30 -0
  44. package/dist/cjs/validation/index.js.map +7 -0
  45. package/dist/cjs/validation/typescriptGuards.js +65 -0
  46. package/dist/cjs/validation/typescriptGuards.js.map +7 -0
  47. package/dist/cjs/validation/typescriptParsers.js +76 -0
  48. package/dist/cjs/validation/typescriptParsers.js.map +7 -0
  49. package/dist/cjs/validation/typescriptValidator.js +171 -0
  50. package/dist/cjs/validation/typescriptValidator.js.map +7 -0
  51. package/dist/cjs/validation/validator.js +55 -0
  52. package/dist/cjs/validation/validator.js.map +7 -0
  53. package/dist/cjs/xstyledProps/constants.js +88 -0
  54. package/dist/cjs/xstyledProps/constants.js.map +7 -0
  55. package/dist/cjs/xstyledProps/index.js +29 -0
  56. package/dist/cjs/xstyledProps/index.js.map +7 -0
  57. package/dist/cjs/xstyledProps/useGetXstyledProps.js +48 -0
  58. package/dist/cjs/xstyledProps/useGetXstyledProps.js.map +7 -0
  59. package/dist/cjs/xstyledProps/xstyledPropTypes.js +92 -0
  60. package/dist/cjs/xstyledProps/xstyledPropTypes.js.map +7 -0
  61. package/dist/esm/defaultProps/index.js +3 -0
  62. package/dist/esm/defaultProps/index.js.map +7 -0
  63. package/dist/esm/defaultProps/useMemoMergePropsWithDefault.js +35 -0
  64. package/dist/esm/defaultProps/useMemoMergePropsWithDefault.js.map +7 -0
  65. package/dist/esm/getProps/index.js +8 -0
  66. package/dist/esm/getProps/index.js.map +7 -0
  67. package/dist/esm/globalProps/constants.js +368 -0
  68. package/dist/esm/globalProps/constants.js.map +7 -0
  69. package/dist/esm/globalProps/globalAttributesPropTypes.js +369 -0
  70. package/dist/esm/globalProps/globalAttributesPropTypes.js.map +7 -0
  71. package/dist/esm/globalProps/index.js +4 -0
  72. package/dist/esm/globalProps/index.js.map +7 -0
  73. package/dist/esm/globalProps/useGetGlobalAttributes.js +27 -0
  74. package/dist/esm/globalProps/useGetGlobalAttributes.js.map +7 -0
  75. package/dist/esm/index.js +9 -0
  76. package/dist/esm/index.js.map +7 -0
  77. package/dist/esm/propTypes/PropTypes.js +122 -0
  78. package/dist/esm/propTypes/PropTypes.js.map +7 -0
  79. package/dist/esm/propTypes/customPropTypes.js +9 -0
  80. package/dist/esm/propTypes/customPropTypes.js.map +7 -0
  81. package/dist/esm/propTypes/describe.js +52 -0
  82. package/dist/esm/propTypes/describe.js.map +7 -0
  83. package/dist/esm/propTypes/describeConversions.js +76 -0
  84. package/dist/esm/propTypes/describeConversions.js.map +7 -0
  85. package/dist/esm/propTypes/describeGuards.js +20 -0
  86. package/dist/esm/propTypes/describeGuards.js.map +7 -0
  87. package/dist/esm/propTypes/index.js +8 -0
  88. package/dist/esm/propTypes/index.js.map +7 -0
  89. package/dist/esm/propTypes/toTypescript.js +127 -0
  90. package/dist/esm/propTypes/toTypescript.js.map +7 -0
  91. package/dist/esm/propTypes/types.js +2 -0
  92. package/dist/esm/propTypes/types.js.map +7 -0
  93. package/dist/esm/tests/globalProps/TestComponent.js +27 -0
  94. package/dist/esm/tests/globalProps/TestComponent.js.map +7 -0
  95. package/dist/esm/tests/validation/test.schema.js +38 -0
  96. package/dist/esm/tests/validation/test.schema.js.map +7 -0
  97. package/dist/esm/tests/xstyledProps/TestComponent.js +33 -0
  98. package/dist/esm/tests/xstyledProps/TestComponent.js.map +7 -0
  99. package/dist/esm/useDeprecateComponent/index.js +11 -0
  100. package/dist/esm/useDeprecateComponent/index.js.map +7 -0
  101. package/dist/esm/validation/errorTemplates.js +19 -0
  102. package/dist/esm/validation/errorTemplates.js.map +7 -0
  103. package/dist/esm/validation/index.js +5 -0
  104. package/dist/esm/validation/index.js.map +7 -0
  105. package/dist/esm/validation/typescriptGuards.js +36 -0
  106. package/dist/esm/validation/typescriptGuards.js.map +7 -0
  107. package/dist/esm/validation/typescriptParsers.js +47 -0
  108. package/dist/esm/validation/typescriptParsers.js.map +7 -0
  109. package/dist/esm/validation/typescriptValidator.js +153 -0
  110. package/dist/esm/validation/typescriptValidator.js.map +7 -0
  111. package/dist/esm/validation/validator.js +26 -0
  112. package/dist/esm/validation/validator.js.map +7 -0
  113. package/dist/esm/xstyledProps/constants.js +59 -0
  114. package/dist/esm/xstyledProps/constants.js.map +7 -0
  115. package/dist/esm/xstyledProps/index.js +4 -0
  116. package/dist/esm/xstyledProps/index.js.map +7 -0
  117. package/dist/esm/xstyledProps/useGetXstyledProps.js +19 -0
  118. package/dist/esm/xstyledProps/useGetXstyledProps.js.map +7 -0
  119. package/dist/esm/xstyledProps/xstyledPropTypes.js +63 -0
  120. package/dist/esm/xstyledProps/xstyledPropTypes.js.map +7 -0
  121. package/package.json +91 -45
  122. package/cjs/defaultProps/index.js +0 -9
  123. package/cjs/defaultProps/useMemoMergePropsWithDefault.js +0 -48
  124. package/cjs/getProps/index.js +0 -20
  125. package/cjs/globalProps/constants.js +0 -15
  126. package/cjs/globalProps/globalAttributesPropTypes.js +0 -372
  127. package/cjs/globalProps/index.js +0 -11
  128. package/cjs/globalProps/useGetGlobalAttributes.js +0 -36
  129. package/cjs/index.js +0 -24
  130. package/cjs/validation/errorTemplates.js +0 -16
  131. package/cjs/validation/index.js +0 -15
  132. package/cjs/validation/typescriptGuards.js +0 -36
  133. package/cjs/validation/typescriptParsers.js +0 -45
  134. package/cjs/validation/typescriptValidator.js +0 -207
  135. package/cjs/validation/validator.js +0 -36
  136. package/esm/defaultProps/index.js +0 -1
  137. package/esm/defaultProps/useMemoMergePropsWithDefault.js +0 -39
  138. package/esm/getProps/index.js +0 -15
  139. package/esm/globalProps/constants.js +0 -11
  140. package/esm/globalProps/globalAttributesPropTypes.js +0 -368
  141. package/esm/globalProps/index.js +0 -2
  142. package/esm/globalProps/useGetGlobalAttributes.js +0 -32
  143. package/esm/index.js +0 -7
  144. package/esm/validation/errorTemplates.js +0 -11
  145. package/esm/validation/index.js +0 -3
  146. package/esm/validation/typescriptGuards.js +0 -23
  147. package/esm/validation/typescriptParsers.js +0 -41
  148. package/esm/validation/typescriptValidator.js +0 -202
  149. package/esm/validation/validator.js +0 -32
  150. package/types/defaultProps/index.d.ts +0 -1
  151. package/types/defaultProps/useMemoMergePropsWithDefault.d.ts +0 -1
  152. package/types/getProps/index.d.ts +0 -2
  153. package/types/globalProps/constants.d.ts +0 -3
  154. package/types/globalProps/globalAttributesPropTypes.d.ts +0 -2169
  155. package/types/globalProps/index.d.ts +0 -2
  156. package/types/globalProps/useGetGlobalAttributes.d.ts +0 -5
  157. package/types/index.d.ts +0 -4
  158. package/types/tests/any.validation.test.d.ts +0 -1
  159. package/types/tests/array.validation.test.d.ts +0 -1
  160. package/types/tests/boolean.validation.test.d.ts +0 -1
  161. package/types/tests/function.validation.test.d.ts +0 -1
  162. package/types/tests/number.validation.test.d.ts +0 -1
  163. package/types/tests/object.validation.test.d.ts +0 -1
  164. package/types/tests/schema.validation.test.d.ts +0 -1
  165. package/types/tests/string.validation.test.d.ts +0 -1
  166. package/types/tests/test.schema.d.ts +0 -1
  167. package/types/tests/union.validation.test.d.ts +0 -1
  168. package/types/validation/errorTemplates.d.ts +0 -2
  169. package/types/validation/index.d.ts +0 -3
  170. package/types/validation/typescriptGuards.d.ts +0 -12
  171. package/types/validation/typescriptParsers.d.ts +0 -1
  172. package/types/validation/typescriptValidator.d.ts +0 -15
  173. package/types/validation/validator.d.ts +0 -1
@@ -0,0 +1,65 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __reExport = (target, module2, copyDefault, desc) => {
13
+ if (module2 && typeof module2 === "object" || typeof module2 === "function") {
14
+ for (let key of __getOwnPropNames(module2))
15
+ if (!__hasOwnProp.call(target, key) && (copyDefault || key !== "default"))
16
+ __defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
17
+ }
18
+ return target;
19
+ };
20
+ var __toESM = (module2, isNodeMode) => {
21
+ return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", !isNodeMode && module2 && module2.__esModule ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
22
+ };
23
+ var __toCommonJS = /* @__PURE__ */ ((cache) => {
24
+ return (module2, temp) => {
25
+ return cache && cache.get(module2) || (temp = __reExport(__markAsModule({}), module2, 1), cache && cache.set(module2, temp), temp);
26
+ };
27
+ })(typeof WeakMap !== "undefined" ? /* @__PURE__ */ new WeakMap() : 0);
28
+ var typescriptGuards_exports = {};
29
+ __export(typescriptGuards_exports, {
30
+ isArray: () => isArray,
31
+ isFunction: () => isFunction,
32
+ isJSXorNode: () => isJSXorNode,
33
+ isNull: () => isNull,
34
+ isObject: () => isObject,
35
+ isPrimitiveType: () => isPrimitiveType,
36
+ isSomethingWithParenthesis: () => isSomethingWithParenthesis,
37
+ isString: () => isString,
38
+ isUndefined: () => isUndefined,
39
+ isUnion: () => isUnion
40
+ });
41
+ var React = __toESM(require("react"));
42
+ const isPrimitiveType = (format) => ["string", "number", "boolean"].includes(format);
43
+ const isUndefined = (format) => format === '"undefined"';
44
+ const isNull = (format) => format === '"null"';
45
+ const isUnion = (format) => {
46
+ let depth = 0;
47
+ let satisfies = false;
48
+ format.split("").forEach((char) => {
49
+ if (["{", "("].includes(char))
50
+ depth += 1;
51
+ else if (["}", ")"].includes(char))
52
+ depth -= 1;
53
+ else if (char === "|" && depth === 0)
54
+ satisfies = true;
55
+ });
56
+ return satisfies;
57
+ };
58
+ const isString = (format) => !isUnion(format) && format[0] === '"' && format.slice(-1) === '"';
59
+ const isArray = (format) => !isUnion(format) && format.slice(-2) === "[]";
60
+ const isObject = (format) => format === "object" || !isUnion(format) && format[0] === "{" && format.slice(-1) === "}";
61
+ const isFunction = (format) => !isUnion(format) && format === "((...args: any[]) => any)";
62
+ const isJSXorNode = (format) => !isUnion(format) && ["React.ReactNode", "JSX.Element"].includes(format);
63
+ const isSomethingWithParenthesis = (format) => !isUnion(format) && format[0] === "(" && format.slice(-1) === ")";
64
+ module.exports = __toCommonJS(typescriptGuards_exports);
65
+ //# sourceMappingURL=typescriptGuards.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/validation/typescriptGuards.ts", "../../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["type GuardFn = (format: string) => boolean;\n\nexport const isPrimitiveType: GuardFn = (format) => ['string', 'number', 'boolean'].includes(format);\nexport const isUndefined: GuardFn = (format) => format === '\"undefined\"';\nexport const isNull: GuardFn = (format) => format === '\"null\"';\nexport const isUnion: GuardFn = (format) => {\n let depth = 0;\n let satisfies = false;\n format.split('').forEach((char) => {\n if (['{', '('].includes(char)) depth += 1;\n else if (['}', ')'].includes(char)) depth -= 1;\n else if (char === '|' && depth === 0) satisfies = true;\n });\n return satisfies;\n};\n\nexport const isString: GuardFn = (format) => !isUnion(format) && format[0] === '\"' && format.slice(-1) === '\"';\n\nexport const isArray: GuardFn = (format) => !isUnion(format) && format.slice(-2) === '[]';\n\nexport const isObject: GuardFn = (format) =>\n format === 'object' || (!isUnion(format) && format[0] === '{' && format.slice(-1) === '}');\n\nexport const isFunction: GuardFn = (format) => !isUnion(format) && format === '((...args: any[]) => any)';\n\nexport const isJSXorNode: GuardFn = (format) => !isUnion(format) && ['React.ReactNode', 'JSX.Element'].includes(format);\n\nexport const isSomethingWithParenthesis: GuardFn = (format) =>\n !isUnion(format) && format[0] === '(' && format.slice(-1) === ')';\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADEhB,MAAM,kBAA2B,CAAC,WAAW,CAAC,UAAU,UAAU,WAAW,SAAS;AACtF,MAAM,cAAuB,CAAC,WAAW,WAAW;AACpD,MAAM,SAAkB,CAAC,WAAW,WAAW;AAC/C,MAAM,UAAmB,CAAC,WAAW;AAC1C,MAAI,QAAQ;AACZ,MAAI,YAAY;AAChB,SAAO,MAAM,IAAI,QAAQ,CAAC,SAAS;AACjC,QAAI,CAAC,KAAK,KAAK,SAAS;AAAO,eAAS;AAAA,aAC/B,CAAC,KAAK,KAAK,SAAS;AAAO,eAAS;AAAA,aACpC,SAAS,OAAO,UAAU;AAAG,kBAAY;AAAA;AAEpD,SAAO;AAAA;AAGF,MAAM,WAAoB,CAAC,WAAW,CAAC,QAAQ,WAAW,OAAO,OAAO,OAAO,OAAO,MAAM,QAAQ;AAEpG,MAAM,UAAmB,CAAC,WAAW,CAAC,QAAQ,WAAW,OAAO,MAAM,QAAQ;AAE9E,MAAM,WAAoB,CAAC,WAChC,WAAW,YAAa,CAAC,QAAQ,WAAW,OAAO,OAAO,OAAO,OAAO,MAAM,QAAQ;AAEjF,MAAM,aAAsB,CAAC,WAAW,CAAC,QAAQ,WAAW,WAAW;AAEvE,MAAM,cAAuB,CAAC,WAAW,CAAC,QAAQ,WAAW,CAAC,mBAAmB,eAAe,SAAS;AAEzG,MAAM,6BAAsC,CAAC,WAClD,CAAC,QAAQ,WAAW,OAAO,OAAO,OAAO,OAAO,MAAM,QAAQ;",
6
+ "names": []
7
+ }
@@ -0,0 +1,76 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __reExport = (target, module2, copyDefault, desc) => {
13
+ if (module2 && typeof module2 === "object" || typeof module2 === "function") {
14
+ for (let key of __getOwnPropNames(module2))
15
+ if (!__hasOwnProp.call(target, key) && (copyDefault || key !== "default"))
16
+ __defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
17
+ }
18
+ return target;
19
+ };
20
+ var __toESM = (module2, isNodeMode) => {
21
+ return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", !isNodeMode && module2 && module2.__esModule ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
22
+ };
23
+ var __toCommonJS = /* @__PURE__ */ ((cache) => {
24
+ return (module2, temp) => {
25
+ return cache && cache.get(module2) || (temp = __reExport(__markAsModule({}), module2, 1), cache && cache.set(module2, temp), temp);
26
+ };
27
+ })(typeof WeakMap !== "undefined" ? /* @__PURE__ */ new WeakMap() : 0);
28
+ var typescriptParsers_exports = {};
29
+ __export(typescriptParsers_exports, {
30
+ typescriptObjectParser: () => typescriptObjectParser
31
+ });
32
+ var React = __toESM(require("react"));
33
+ const typescriptObjectParser = (format) => {
34
+ const keyValuePairs = [];
35
+ let lastKey = "";
36
+ let lastValue = "";
37
+ let shouldAppendToKey = true;
38
+ const pushPair = () => {
39
+ if (lastKey)
40
+ keyValuePairs.push([lastKey, lastValue]);
41
+ lastKey = "";
42
+ lastValue = "";
43
+ shouldAppendToKey = true;
44
+ };
45
+ let depth = 0;
46
+ format.split("").forEach((char) => {
47
+ if (char === "{") {
48
+ depth += 1;
49
+ if (depth > 1)
50
+ lastValue += char;
51
+ } else if (char === "}") {
52
+ if (depth > 1)
53
+ lastValue += char;
54
+ depth -= 1;
55
+ if (depth === 1)
56
+ pushPair();
57
+ } else if (char === ":") {
58
+ shouldAppendToKey = false;
59
+ if (depth > 1)
60
+ lastValue += char;
61
+ } else if (char === ",") {
62
+ if (depth === 1)
63
+ pushPair();
64
+ else
65
+ lastValue += char;
66
+ } else if (char === " ") {
67
+ } else if (shouldAppendToKey)
68
+ lastKey += char;
69
+ else
70
+ lastValue += char;
71
+ });
72
+ pushPair();
73
+ return keyValuePairs;
74
+ };
75
+ module.exports = __toCommonJS(typescriptParsers_exports);
76
+ //# sourceMappingURL=typescriptParsers.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/validation/typescriptParsers.ts", "../../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["/* eslint-disable complexity */\nexport const typescriptObjectParser = (format: string): [string, string][] => {\n const keyValuePairs: [string, string][] = [];\n\n // State of the algorithm\n let lastKey = '';\n let lastValue = '';\n let shouldAppendToKey = true;\n\n const pushPair = () => {\n if (lastKey) keyValuePairs.push([lastKey, lastValue]);\n lastKey = '';\n lastValue = '';\n shouldAppendToKey = true;\n };\n\n // Complex -- but working -- logic\n let depth = 0;\n format.split('').forEach((char) => {\n if (char === '{') {\n depth += 1;\n if (depth > 1) lastValue += char;\n } else if (char === '}') {\n if (depth > 1) lastValue += char;\n depth -= 1;\n if (depth === 1) pushPair();\n } else if (char === ':') {\n shouldAppendToKey = false;\n if (depth > 1) lastValue += char;\n } else if (char === ',') {\n if (depth === 1) pushPair();\n else lastValue += char;\n } else if (char === ' ') {\n // Do nothing\n } else if (shouldAppendToKey) lastKey += char;\n else lastValue += char;\n });\n pushPair();\n\n return keyValuePairs;\n};\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADChB,MAAM,yBAAyB,CAAC,WAAuC;AAC5E,QAAM,gBAAoC;AAG1C,MAAI,UAAU;AACd,MAAI,YAAY;AAChB,MAAI,oBAAoB;AAExB,QAAM,WAAW,MAAM;AACrB,QAAI;AAAS,oBAAc,KAAK,CAAC,SAAS;AAC1C,cAAU;AACV,gBAAY;AACZ,wBAAoB;AAAA;AAItB,MAAI,QAAQ;AACZ,SAAO,MAAM,IAAI,QAAQ,CAAC,SAAS;AACjC,QAAI,SAAS,KAAK;AAChB,eAAS;AACT,UAAI,QAAQ;AAAG,qBAAa;AAAA,eACnB,SAAS,KAAK;AACvB,UAAI,QAAQ;AAAG,qBAAa;AAC5B,eAAS;AACT,UAAI,UAAU;AAAG;AAAA,eACR,SAAS,KAAK;AACvB,0BAAoB;AACpB,UAAI,QAAQ;AAAG,qBAAa;AAAA,eACnB,SAAS,KAAK;AACvB,UAAI,UAAU;AAAG;AAAA;AACZ,qBAAa;AAAA,eACT,SAAS,KAAK;AAAA,eAEd;AAAmB,iBAAW;AAAA;AACpC,mBAAa;AAAA;AAEpB;AAEA,SAAO;AAAA;",
6
+ "names": []
7
+ }
@@ -0,0 +1,171 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __reExport = (target, module2, copyDefault, desc) => {
13
+ if (module2 && typeof module2 === "object" || typeof module2 === "function") {
14
+ for (let key of __getOwnPropNames(module2))
15
+ if (!__hasOwnProp.call(target, key) && (copyDefault || key !== "default"))
16
+ __defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
17
+ }
18
+ return target;
19
+ };
20
+ var __toESM = (module2, isNodeMode) => {
21
+ return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", !isNodeMode && module2 && module2.__esModule ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
22
+ };
23
+ var __toCommonJS = /* @__PURE__ */ ((cache) => {
24
+ return (module2, temp) => {
25
+ return cache && cache.get(module2) || (temp = __reExport(__markAsModule({}), module2, 1), cache && cache.set(module2, temp), temp);
26
+ };
27
+ })(typeof WeakMap !== "undefined" ? /* @__PURE__ */ new WeakMap() : 0);
28
+ var typescriptValidator_exports = {};
29
+ __export(typescriptValidator_exports, {
30
+ useValidateTypescriptPropTypes: () => useValidateTypescriptPropTypes,
31
+ validateTypescriptPropTypesImplementation: () => validateTypescriptPropTypesImplementation
32
+ });
33
+ var React = __toESM(require("react"));
34
+ var import_react = require("react");
35
+ var import_propTypes = require("../propTypes");
36
+ var import_errorTemplates = require("./errorTemplates");
37
+ var import_typescriptGuards = require("./typescriptGuards");
38
+ var import_typescriptParsers = require("./typescriptParsers");
39
+ const validateUndefined = (schemaName, key, value, format) => {
40
+ if (value !== void 0 || value === "undefined") {
41
+ (0, import_errorTemplates.throwTypeError)(schemaName, key, value, format);
42
+ }
43
+ };
44
+ const validateNull = (schemaName, key, value, format) => {
45
+ if (value !== null || value === "null") {
46
+ (0, import_errorTemplates.throwTypeError)(schemaName, key, value, format);
47
+ }
48
+ };
49
+ const validatePrimitiveType = (schemaName, key, value, format) => {
50
+ if (typeof value !== format) {
51
+ (0, import_errorTemplates.throwTypeError)(schemaName, key, value, format);
52
+ }
53
+ };
54
+ const validateString = (schemaName, key, value, format) => {
55
+ if (value !== format.slice(1, -1)) {
56
+ (0, import_errorTemplates.throwTypeError)(schemaName, key, value, format);
57
+ }
58
+ };
59
+ const validateArray = (schemaName, key, value, format, validationsMemo, nextValidationsMemo) => {
60
+ if (!Array.isArray(value)) {
61
+ (0, import_errorTemplates.throwTypeError)(schemaName, key, value, format);
62
+ }
63
+ value.forEach((val, index) => {
64
+ validateValueWithFormat(schemaName, `${key}[${index}]`, val, format.slice(0, -2), validationsMemo, nextValidationsMemo);
65
+ });
66
+ };
67
+ function isObjectType(value) {
68
+ return !(typeof value !== "object" || Array.isArray(value));
69
+ }
70
+ const validateObject = (schemaName, key, value, format, validationsMemo, nextValidationsMemo) => {
71
+ const valuesIsObject = isObjectType(value);
72
+ if (!valuesIsObject) {
73
+ (0, import_errorTemplates.throwTypeError)(schemaName, key, value, format);
74
+ return;
75
+ }
76
+ if (format === "object")
77
+ return;
78
+ const keyValuePairs = (0, import_typescriptParsers.typescriptObjectParser)(format);
79
+ keyValuePairs.forEach(([objectKey, objectValue]) => {
80
+ const trueKey = objectKey.slice(-1) === "?" ? objectKey.slice(0, -1) : objectKey;
81
+ if (trueKey === objectKey && !(trueKey in value)) {
82
+ (0, import_errorTemplates.throwRequiredError)(schemaName, key);
83
+ }
84
+ if (trueKey in value) {
85
+ validateValueWithFormat(schemaName, `${key}[${trueKey}]`, value[trueKey], objectValue, validationsMemo, nextValidationsMemo);
86
+ }
87
+ });
88
+ };
89
+ const validateUnion = (schemaName, key, value, format, validationsMemo, nextValidationsMemo) => {
90
+ const possibilities = format.split(/\s?\|\s?/);
91
+ const errors = [];
92
+ possibilities.forEach((possibility) => {
93
+ try {
94
+ validateValueWithFormat(schemaName, key, value, possibility, validationsMemo, nextValidationsMemo);
95
+ } catch (e) {
96
+ errors.push(e);
97
+ }
98
+ });
99
+ if (errors.length === possibilities.length) {
100
+ (0, import_errorTemplates.throwTypeError)(schemaName, key, value, format);
101
+ }
102
+ };
103
+ const validateFunction = (schemaName, key, value, format) => {
104
+ if (typeof value !== "function") {
105
+ (0, import_errorTemplates.throwTypeError)(schemaName, key, value, format);
106
+ }
107
+ };
108
+ function isJSXElement(value) {
109
+ return value === null || typeof value === "object" && value !== null && "$$typeof" in value;
110
+ }
111
+ const validateJSXorNode = (schemaName, key, value, format) => {
112
+ const valueIsJSX = isJSXElement(value);
113
+ if (format === "JSX.Element" && !valueIsJSX) {
114
+ (0, import_errorTemplates.throwTypeError)(schemaName, key, value, format);
115
+ }
116
+ };
117
+ const validateValueWithFormat = (schemaName, key, value, format, validationsMemo, nextValidationsMemo) => {
118
+ nextValidationsMemo[value] = format;
119
+ if (value in validationsMemo) {
120
+ return;
121
+ }
122
+ if ((0, import_typescriptGuards.isUndefined)(format)) {
123
+ validateUndefined(schemaName, key, value, format, validationsMemo, nextValidationsMemo);
124
+ } else if ((0, import_typescriptGuards.isNull)(format)) {
125
+ validateNull(schemaName, key, value, format, validationsMemo, nextValidationsMemo);
126
+ } else if ((0, import_typescriptGuards.isPrimitiveType)(format)) {
127
+ validatePrimitiveType(schemaName, key, value, format, validationsMemo, nextValidationsMemo);
128
+ } else if ((0, import_typescriptGuards.isUnion)(format)) {
129
+ validateUnion(schemaName, key, value, format, validationsMemo, nextValidationsMemo);
130
+ } else if ((0, import_typescriptGuards.isString)(format)) {
131
+ validateString(schemaName, key, value, format, validationsMemo, nextValidationsMemo);
132
+ } else if ((0, import_typescriptGuards.isArray)(format)) {
133
+ validateArray(schemaName, key, value, format, validationsMemo, nextValidationsMemo);
134
+ } else if ((0, import_typescriptGuards.isObject)(format)) {
135
+ validateObject(schemaName, key, value, format, validationsMemo, nextValidationsMemo);
136
+ } else if ((0, import_typescriptGuards.isFunction)(format)) {
137
+ validateFunction(schemaName, key, value, format, validationsMemo, nextValidationsMemo);
138
+ } else if ((0, import_typescriptGuards.isJSXorNode)(format)) {
139
+ validateJSXorNode(schemaName, key, value, format, validationsMemo, nextValidationsMemo);
140
+ } else if ((0, import_typescriptGuards.isSomethingWithParenthesis)(format)) {
141
+ validateValueWithFormat(schemaName, key, value, format.slice(1, -1), validationsMemo, nextValidationsMemo);
142
+ }
143
+ };
144
+ const validateTypescriptPropTypesImplementation = (props, schema, validationsMemo = {}, nextValidationsMemo = {}) => {
145
+ const { properties, name: schemaName } = schema;
146
+ properties.forEach((property) => {
147
+ const { name, format, required } = property;
148
+ if (required && !(name in props)) {
149
+ (0, import_errorTemplates.throwRequiredError)(schema.name, name);
150
+ }
151
+ if (name in props && (props[name] !== void 0 || required)) {
152
+ validateValueWithFormat(schemaName, name, props[name], format, validationsMemo, nextValidationsMemo);
153
+ }
154
+ });
155
+ };
156
+ const useValidateTypescriptPropTypes = (props, propTypes) => {
157
+ const [validationsMemo, setValidationsMemo] = (0, import_react.useState)({});
158
+ const ComponentWithSchema = (0, import_react.useMemo)(() => {
159
+ const Component = () => {
160
+ };
161
+ return (0, import_propTypes.describe)(Component);
162
+ }, []);
163
+ ComponentWithSchema.propTypes = propTypes;
164
+ (0, import_react.useMemo)(() => {
165
+ const nextValidationsMemo = {};
166
+ validateTypescriptPropTypesImplementation(props, ComponentWithSchema.toTypescript(), validationsMemo, nextValidationsMemo);
167
+ setValidationsMemo(nextValidationsMemo);
168
+ }, [props]);
169
+ };
170
+ module.exports = __toCommonJS(typescriptValidator_exports);
171
+ //# sourceMappingURL=typescriptValidator.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/validation/typescriptValidator.ts", "../../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["/* eslint-disable complexity */\n/* eslint-disable max-lines */\n/* eslint-disable max-params */\nimport React, { PropsWithChildren, useMemo, useState } from 'react';\nimport { describe } from '../propTypes';\nimport { throwRequiredError, throwTypeError } from './errorTemplates';\nimport {\n isArray,\n isFunction,\n isJSXorNode,\n isObject,\n isPrimitiveType,\n isSomethingWithParenthesis,\n isString,\n isUnion,\n isUndefined,\n isNull,\n} from './typescriptGuards';\nimport { typescriptObjectParser } from './typescriptParsers';\n\ninterface TypescriptSchema {\n description: string;\n name: string;\n properties: { name: string; description: string; defaultValue?: unknown; format: string; required?: boolean }[];\n}\n\ntype ValidatorFn = (\n schemaName: string,\n key: string,\n value: unknown,\n format: string,\n validationsMemo: Record<symbol, string>,\n nextValidationsMemo: Record<symbol, string>,\n) => void;\n\n// =============================================================================\n// Atom Validators\n// =============================================================================\n\n// This functions will validate something from the data\n// and optionally recursively apply `validateValueWithFormat`\n// in smaller parts\n\nconst validateUndefined: ValidatorFn = (schemaName, key, value, format) => {\n if (value !== undefined || value === 'undefined') {\n throwTypeError(schemaName, key, value, format);\n }\n};\nconst validateNull: ValidatorFn = (schemaName, key, value, format) => {\n if (value !== null || value === 'null') {\n throwTypeError(schemaName, key, value, format);\n }\n};\nconst validatePrimitiveType: ValidatorFn = (schemaName, key, value, format) => {\n if (typeof value !== format) {\n throwTypeError(schemaName, key, value, format);\n }\n};\n\nconst validateString: ValidatorFn = (schemaName, key, value, format) => {\n if (value !== format.slice(1, -1)) {\n throwTypeError(schemaName, key, value, format);\n }\n};\n\nconst validateArray: ValidatorFn = (schemaName, key, value, format, validationsMemo, nextValidationsMemo) => {\n // Check that we have an array\n if (!Array.isArray(value)) {\n throwTypeError(schemaName, key, value, format);\n }\n\n // Check that each element inside satisfies the format\n (value as unknown[]).forEach((val, index) => {\n // this is a recursive func, we need to invoke it before it's defined.\n // eslint-disable-next-line @typescript-eslint/no-use-before-define\n validateValueWithFormat(\n schemaName,\n `${key}[${index}]`,\n val,\n format.slice(0, -2),\n validationsMemo,\n nextValidationsMemo,\n );\n });\n};\nfunction isObjectType(value: unknown | Record<string, unknown>): value is Record<string, unknown> {\n return !(typeof value !== 'object' || Array.isArray(value));\n}\nconst validateObject: ValidatorFn = (schemaName, key, value, format, validationsMemo, nextValidationsMemo) => {\n const valuesIsObject = isObjectType(value);\n // Check that we have an object\n if (!valuesIsObject) {\n throwTypeError(schemaName, key, value, format);\n return;\n }\n\n if (format === 'object') return;\n\n const keyValuePairs = typescriptObjectParser(format);\n // Now we have the key - value pairs\n // Each key could either be required or not\n // Just recursively check the object\n\n keyValuePairs.forEach(([objectKey, objectValue]) => {\n const trueKey = objectKey.slice(-1) === '?' ? objectKey.slice(0, -1) : objectKey;\n\n if (trueKey === objectKey && !(trueKey in value)) {\n throwRequiredError(schemaName, key);\n }\n\n if (trueKey in value) {\n // this is a recursive func, we need to invoke it before it's defined.\n // eslint-disable-next-line @typescript-eslint/no-use-before-define\n validateValueWithFormat(\n schemaName,\n `${key}[${trueKey}]`,\n value[trueKey],\n objectValue,\n validationsMemo,\n nextValidationsMemo,\n );\n }\n });\n};\n\nconst validateUnion: ValidatorFn = (schemaName, key, value, format, validationsMemo, nextValidationsMemo) => {\n const possibilities = format.split(/\\s?\\|\\s?/);\n\n const errors = [];\n\n possibilities.forEach((possibility) => {\n try {\n // this is a recursive func, we need to invoke it before it's defined.\n // eslint-disable-next-line @typescript-eslint/no-use-before-define\n validateValueWithFormat(schemaName, key, value, possibility, validationsMemo, nextValidationsMemo);\n } catch (e) {\n errors.push(e);\n }\n });\n\n if (errors.length === possibilities.length) {\n throwTypeError(schemaName, key, value, format);\n }\n};\n\nconst validateFunction: ValidatorFn = (schemaName, key, value, format) => {\n // Check that we have a function\n if (typeof value !== 'function') {\n throwTypeError(schemaName, key, value, format);\n }\n};\n\nfunction isJSXElement(value: unknown | JSX.Element): value is JSX.Element {\n return value === null || (typeof value === 'object' && value !== null && '$$typeof' in value);\n}\nconst validateJSXorNode: ValidatorFn = (schemaName, key, value, format) => {\n const valueIsJSX = isJSXElement(value);\n if (format === 'JSX.Element' && !valueIsJSX) {\n throwTypeError(schemaName, key, value, format);\n }\n};\n\n// =============================================================================\n// Schema validator\n// =============================================================================\n\nconst validateValueWithFormat: ValidatorFn = (schemaName, key, value, format, validationsMemo, nextValidationsMemo) => {\n nextValidationsMemo[value as symbol] = format;\n\n if ((value as symbol) in validationsMemo) {\n // We already validated this value on this format\n return;\n }\n\n if (isUndefined(format)) {\n validateUndefined(schemaName, key, value, format, validationsMemo, nextValidationsMemo);\n } else if (isNull(format)) {\n validateNull(schemaName, key, value, format, validationsMemo, nextValidationsMemo);\n } else if (isPrimitiveType(format)) {\n validatePrimitiveType(schemaName, key, value, format, validationsMemo, nextValidationsMemo);\n } else if (isUnion(format)) {\n validateUnion(schemaName, key, value, format, validationsMemo, nextValidationsMemo);\n } else if (isString(format)) {\n validateString(schemaName, key, value, format, validationsMemo, nextValidationsMemo);\n } else if (isArray(format)) {\n validateArray(schemaName, key, value, format, validationsMemo, nextValidationsMemo);\n } else if (isObject(format)) {\n validateObject(schemaName, key, value, format, validationsMemo, nextValidationsMemo);\n } else if (isFunction(format)) {\n validateFunction(schemaName, key, value, format, validationsMemo, nextValidationsMemo);\n } else if (isJSXorNode(format)) {\n validateJSXorNode(schemaName, key, value, format, validationsMemo, nextValidationsMemo);\n } else if (isSomethingWithParenthesis(format)) {\n validateValueWithFormat(schemaName, key, value, format.slice(1, -1), validationsMemo, nextValidationsMemo);\n }\n};\n\nexport const validateTypescriptPropTypesImplementation = (\n props: PropsWithChildren<Record<string, unknown>>,\n schema: TypescriptSchema,\n validationsMemo: Record<string, string> = {},\n nextValidationsMemo: Record<string, string> = {},\n): void => {\n const { properties, name: schemaName } = schema;\n\n properties.forEach((property) => {\n const { name, format, required } = property;\n\n if (required && !(name in props)) {\n throwRequiredError(schema.name, name);\n }\n\n if (name in props && (props[name] !== undefined || required)) {\n validateValueWithFormat(schemaName, name, props[name], format, validationsMemo, nextValidationsMemo);\n }\n });\n};\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport const useValidateTypescriptPropTypes = <T = Record<string, any>>(\n props: PropsWithChildren<T>,\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n propTypes: any,\n): void => {\n const [validationsMemo, setValidationsMemo] = useState({});\n\n // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment\n const ComponentWithSchema = useMemo(() => {\n const Component = () => {};\n\n // eslint-disable-next-line @typescript-eslint/no-unsafe-return, @typescript-eslint/no-unsafe-call\n return describe(Component);\n }, []);\n\n // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-assignment\n ComponentWithSchema.propTypes = propTypes;\n\n useMemo(() => {\n const nextValidationsMemo = {};\n\n validateTypescriptPropTypesImplementation(\n props,\n // eslint-disable-next-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call\n ComponentWithSchema.toTypescript(),\n validationsMemo,\n nextValidationsMemo,\n );\n setValidationsMemo(nextValidationsMemo);\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [props]);\n};\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": "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",
6
+ "names": []
7
+ }
@@ -0,0 +1,55 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __reExport = (target, module2, copyDefault, desc) => {
13
+ if (module2 && typeof module2 === "object" || typeof module2 === "function") {
14
+ for (let key of __getOwnPropNames(module2))
15
+ if (!__hasOwnProp.call(target, key) && (copyDefault || key !== "default"))
16
+ __defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
17
+ }
18
+ return target;
19
+ };
20
+ var __toESM = (module2, isNodeMode) => {
21
+ return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", !isNodeMode && module2 && module2.__esModule ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
22
+ };
23
+ var __toCommonJS = /* @__PURE__ */ ((cache) => {
24
+ return (module2, temp) => {
25
+ return cache && cache.get(module2) || (temp = __reExport(__markAsModule({}), module2, 1), cache && cache.set(module2, temp), temp);
26
+ };
27
+ })(typeof WeakMap !== "undefined" ? /* @__PURE__ */ new WeakMap() : 0);
28
+ var validator_exports = {};
29
+ __export(validator_exports, {
30
+ useValidatePropTypes: () => useValidatePropTypes
31
+ });
32
+ var React = __toESM(require("react"));
33
+ var import_errorTemplates = require("./errorTemplates");
34
+ const useValidatePropTypes = (props, schema) => {
35
+ schema.properties.forEach((property) => {
36
+ const propertyName = property.name;
37
+ const currentProp = props[propertyName];
38
+ const currentPropTypeOf = typeof currentProp;
39
+ const currentFormat = property.format;
40
+ let isValidReactElement = false;
41
+ if (property.required && !Object.prototype.hasOwnProperty.call(props, property.name)) {
42
+ (0, import_errorTemplates.throwRequiredError)(schema.name, property.name);
43
+ }
44
+ if (currentPropTypeOf !== "undefined" && currentProp !== null) {
45
+ if (currentPropTypeOf === "object" && Object.prototype.hasOwnProperty.call(currentProp, "$$typeof") && (currentFormat.includes("node") || currentFormat.includes("element"))) {
46
+ isValidReactElement = true;
47
+ }
48
+ if (!currentFormat.includes(currentPropTypeOf) && !currentFormat.includes(currentProp) && !isValidReactElement) {
49
+ (0, import_errorTemplates.throwTypeError)(schema.name, propertyName, currentProp, currentFormat);
50
+ }
51
+ }
52
+ });
53
+ };
54
+ module.exports = __toCommonJS(validator_exports);
55
+ //# sourceMappingURL=validator.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/validation/validator.ts", "../../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["/* eslint-disable complexity */\n/* eslint-disable @typescript-eslint/explicit-module-boundary-types */\nimport { throwRequiredError, throwTypeError } from './errorTemplates';\n\nexport const useValidatePropTypes = (props: Record<string, unknown>, schema): void => {\n schema.properties.forEach((property) => {\n const propertyName = property.name;\n const currentProp = props[propertyName];\n const currentPropTypeOf = typeof currentProp;\n // eslint-disable-next-line max-len\n const currentFormat = property.format; // this is csv representing types e.g.: \"string\"/\"string,number\"/\"[object],string\"\n let isValidReactElement = false;\n // this depends on react desc definition\n if (property.required && !Object.prototype.hasOwnProperty.call(props, property.name)) {\n throwRequiredError(schema.name, property.name);\n }\n if (currentPropTypeOf !== 'undefined' && currentProp !== null) {\n if (\n currentPropTypeOf === 'object' &&\n Object.prototype.hasOwnProperty.call(currentProp, '$$typeof') &&\n (currentFormat.includes('node') || currentFormat.includes('element'))\n ) {\n isValidReactElement = true;\n }\n\n if (!currentFormat.includes(currentPropTypeOf) && !currentFormat.includes(currentProp) && !isValidReactElement) {\n throwTypeError(schema.name, propertyName, currentProp, currentFormat);\n }\n }\n });\n};\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADEvB,4BAAmD;AAE5C,MAAM,uBAAuB,CAAC,OAAgC,WAAiB;AACpF,SAAO,WAAW,QAAQ,CAAC,aAAa;AACtC,UAAM,eAAe,SAAS;AAC9B,UAAM,cAAc,MAAM;AAC1B,UAAM,oBAAoB,OAAO;AAEjC,UAAM,gBAAgB,SAAS;AAC/B,QAAI,sBAAsB;AAE1B,QAAI,SAAS,YAAY,CAAC,OAAO,UAAU,eAAe,KAAK,OAAO,SAAS,OAAO;AACpF,oDAAmB,OAAO,MAAM,SAAS;AAAA;AAE3C,QAAI,sBAAsB,eAAe,gBAAgB,MAAM;AAC7D,UACE,sBAAsB,YACtB,OAAO,UAAU,eAAe,KAAK,aAAa,eACjD,eAAc,SAAS,WAAW,cAAc,SAAS,aAC1D;AACA,8BAAsB;AAAA;AAGxB,UAAI,CAAC,cAAc,SAAS,sBAAsB,CAAC,cAAc,SAAS,gBAAgB,CAAC,qBAAqB;AAC9G,kDAAe,OAAO,MAAM,cAAc,aAAa;AAAA;AAAA;AAAA;AAAA;",
6
+ "names": []
7
+ }
@@ -0,0 +1,88 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __reExport = (target, module2, copyDefault, desc) => {
13
+ if (module2 && typeof module2 === "object" || typeof module2 === "function") {
14
+ for (let key of __getOwnPropNames(module2))
15
+ if (!__hasOwnProp.call(target, key) && (copyDefault || key !== "default"))
16
+ __defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
17
+ }
18
+ return target;
19
+ };
20
+ var __toESM = (module2, isNodeMode) => {
21
+ return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", !isNodeMode && module2 && module2.__esModule ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
22
+ };
23
+ var __toCommonJS = /* @__PURE__ */ ((cache) => {
24
+ return (module2, temp) => {
25
+ return cache && cache.get(module2) || (temp = __reExport(__markAsModule({}), module2, 1), cache && cache.set(module2, temp), temp);
26
+ };
27
+ })(typeof WeakMap !== "undefined" ? /* @__PURE__ */ new WeakMap() : 0);
28
+ var constants_exports = {};
29
+ __export(constants_exports, {
30
+ layoutKeys: () => layoutKeys,
31
+ xstyledKeys: () => xstyledKeys
32
+ });
33
+ var React = __toESM(require("react"));
34
+ const marginKeys = [
35
+ "margin",
36
+ "marginTop",
37
+ "marginRight",
38
+ "marginBottom",
39
+ "marginLeft",
40
+ "m",
41
+ "mt",
42
+ "mr",
43
+ "mb",
44
+ "ml",
45
+ "mx",
46
+ "my"
47
+ ];
48
+ const paddingKeys = [
49
+ "padding",
50
+ "p",
51
+ "paddingTop",
52
+ "pt",
53
+ "paddingRight",
54
+ "pr",
55
+ "paddingBottom",
56
+ "pb",
57
+ "paddingLeft",
58
+ "pl",
59
+ "px",
60
+ "py"
61
+ ];
62
+ const spaceKeys = ["spaceY", "spaceX", "spaceXReverse", "spaceYReverse"];
63
+ const widthKeys = ["w", "maxWidth", "maxW", "minWidth", "minW"];
64
+ const heightKeys = ["h", "maxHeight", "maxH", "minHeight", "minH"];
65
+ const maskSizeKeys = ["maskSize"];
66
+ const spacingKeys = [...marginKeys, ...paddingKeys, ...spaceKeys];
67
+ const sizingKeys = [...widthKeys, ...heightKeys, ...maskSizeKeys];
68
+ const layoutKeys = [
69
+ "display",
70
+ "float",
71
+ "boxSizing",
72
+ "container",
73
+ "overflow",
74
+ "overflowX",
75
+ "overflowY",
76
+ "zIndex",
77
+ "position",
78
+ "top",
79
+ "right",
80
+ "bottom",
81
+ "left",
82
+ "visibility",
83
+ "overscrollBehavior",
84
+ "objectFit"
85
+ ];
86
+ const xstyledKeys = Object.fromEntries([...spacingKeys, ...sizingKeys, ...layoutKeys].map((item) => [item, true]));
87
+ module.exports = __toCommonJS(constants_exports);
88
+ //# sourceMappingURL=constants.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/xstyledProps/constants.tsx", "../../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["const marginKeys = [\n 'margin',\n 'marginTop',\n 'marginRight',\n 'marginBottom',\n 'marginLeft',\n 'm',\n 'mt',\n 'mr',\n 'mb',\n 'ml',\n 'mx',\n 'my',\n];\n\nconst paddingKeys = [\n 'padding',\n 'p',\n 'paddingTop',\n 'pt',\n 'paddingRight',\n 'pr',\n 'paddingBottom',\n 'pb',\n 'paddingLeft',\n 'pl',\n 'px',\n 'py',\n];\n\nconst spaceKeys = ['spaceY', 'spaceX', 'spaceXReverse', 'spaceYReverse'];\n\nconst widthKeys = ['w', 'maxWidth', 'maxW', 'minWidth', 'minW'];\n\nconst heightKeys = ['h', 'maxHeight', 'maxH', 'minHeight', 'minH'];\n\nconst maskSizeKeys = ['maskSize'];\n\nconst spacingKeys = [...marginKeys, ...paddingKeys, ...spaceKeys];\nconst sizingKeys = [...widthKeys, ...heightKeys, ...maskSizeKeys];\nexport const layoutKeys = [\n 'display',\n 'float',\n 'boxSizing',\n 'container',\n 'overflow',\n 'overflowX',\n 'overflowY',\n 'zIndex',\n 'position',\n 'top',\n 'right',\n 'bottom',\n 'left',\n 'visibility',\n 'overscrollBehavior',\n 'objectFit',\n];\n\nexport const xstyledKeys = Object.fromEntries(\n [...spacingKeys, ...sizingKeys, ...layoutKeys].map((item) => [item, true]),\n) as Record<string, true>;\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,MAAM,aAAa;AAAA,EACjB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA;AAGF,MAAM,cAAc;AAAA,EAClB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA;AAGF,MAAM,YAAY,CAAC,UAAU,UAAU,iBAAiB;AAExD,MAAM,YAAY,CAAC,KAAK,YAAY,QAAQ,YAAY;AAExD,MAAM,aAAa,CAAC,KAAK,aAAa,QAAQ,aAAa;AAE3D,MAAM,eAAe,CAAC;AAEtB,MAAM,cAAc,CAAC,GAAG,YAAY,GAAG,aAAa,GAAG;AACvD,MAAM,aAAa,CAAC,GAAG,WAAW,GAAG,YAAY,GAAG;AAC7C,MAAM,aAAa;AAAA,EACxB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA;AAGK,MAAM,cAAc,OAAO,YAChC,CAAC,GAAG,aAAa,GAAG,YAAY,GAAG,YAAY,IAAI,CAAC,SAAS,CAAC,MAAM;",
6
+ "names": []
7
+ }
@@ -0,0 +1,29 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
8
+ var __reExport = (target, module2, copyDefault, desc) => {
9
+ if (module2 && typeof module2 === "object" || typeof module2 === "function") {
10
+ for (let key of __getOwnPropNames(module2))
11
+ if (!__hasOwnProp.call(target, key) && (copyDefault || key !== "default"))
12
+ __defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
13
+ }
14
+ return target;
15
+ };
16
+ var __toESM = (module2, isNodeMode) => {
17
+ return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", !isNodeMode && module2 && module2.__esModule ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
18
+ };
19
+ var __toCommonJS = /* @__PURE__ */ ((cache) => {
20
+ return (module2, temp) => {
21
+ return cache && cache.get(module2) || (temp = __reExport(__markAsModule({}), module2, 1), cache && cache.set(module2, temp), temp);
22
+ };
23
+ })(typeof WeakMap !== "undefined" ? /* @__PURE__ */ new WeakMap() : 0);
24
+ var xstyledProps_exports = {};
25
+ var React = __toESM(require("react"));
26
+ __reExport(xstyledProps_exports, require("./useGetXstyledProps"));
27
+ __reExport(xstyledProps_exports, require("./xstyledPropTypes"));
28
+ module.exports = __toCommonJS(xstyledProps_exports);
29
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/xstyledProps/index.ts", "../../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["export * from './useGetXstyledProps';\nexport * from './xstyledPropTypes';\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;AAAA;ACAA,YAAuB;ADAvB,iCAAc;AACd,iCAAc;",
6
+ "names": []
7
+ }
@@ -0,0 +1,48 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __reExport = (target, module2, copyDefault, desc) => {
13
+ if (module2 && typeof module2 === "object" || typeof module2 === "function") {
14
+ for (let key of __getOwnPropNames(module2))
15
+ if (!__hasOwnProp.call(target, key) && (copyDefault || key !== "default"))
16
+ __defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
17
+ }
18
+ return target;
19
+ };
20
+ var __toESM = (module2, isNodeMode) => {
21
+ return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", !isNodeMode && module2 && module2.__esModule ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
22
+ };
23
+ var __toCommonJS = /* @__PURE__ */ ((cache) => {
24
+ return (module2, temp) => {
25
+ return cache && cache.get(module2) || (temp = __reExport(__markAsModule({}), module2, 1), cache && cache.set(module2, temp), temp);
26
+ };
27
+ })(typeof WeakMap !== "undefined" ? /* @__PURE__ */ new WeakMap() : 0);
28
+ var useGetXstyledProps_exports = {};
29
+ __export(useGetXstyledProps_exports, {
30
+ useGetXstyledProps: () => useGetXstyledProps
31
+ });
32
+ var React = __toESM(require("react"));
33
+ var import_react = require("react");
34
+ var import_constants = require("./constants");
35
+ const useGetXstyledProps = (props) => {
36
+ const componentXstyledProps = (0, import_react.useMemo)(() => {
37
+ const xstyledPropsObject = {};
38
+ Object.entries(props).forEach(([key, value]) => {
39
+ if (key in import_constants.xstyledKeys) {
40
+ xstyledPropsObject[key] = value;
41
+ }
42
+ });
43
+ return xstyledPropsObject;
44
+ }, [props]);
45
+ return componentXstyledProps;
46
+ };
47
+ module.exports = __toCommonJS(useGetXstyledProps_exports);
48
+ //# sourceMappingURL=useGetXstyledProps.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/xstyledProps/useGetXstyledProps.tsx", "../../../../../scripts/build/transpile/react-shim.js"],
4
+ "sourcesContent": ["import { useMemo } from 'react';\nimport type { SizingProps, SpaceProps, LayoutProps } from '@xstyled/styled-components';\nimport { xstyledKeys } from './constants';\n\nexport type XstyledProps = SpaceProps & SizingProps & LayoutProps;\n\ntype PropsWithXstyled<T> = T & XstyledProps;\n\nexport const useGetXstyledProps = <T,>(props: PropsWithXstyled<T>): XstyledProps => {\n const componentXstyledProps = useMemo(() => {\n const xstyledPropsObject: Record<string, unknown> = {};\n Object.entries(props).forEach(([key, value]) => {\n if (key in xstyledKeys) {\n xstyledPropsObject[key] = value;\n }\n });\n return xstyledPropsObject;\n }, [props]);\n\n return componentXstyledProps as XstyledProps;\n};\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,mBAAwB;AAExB,uBAA4B;AAMrB,MAAM,qBAAqB,CAAK,UAA6C;AAClF,QAAM,wBAAwB,0BAAQ,MAAM;AAC1C,UAAM,qBAA8C;AACpD,WAAO,QAAQ,OAAO,QAAQ,CAAC,CAAC,KAAK,WAAW;AAC9C,UAAI,OAAO,8BAAa;AACtB,2BAAmB,OAAO;AAAA;AAAA;AAG9B,WAAO;AAAA,KACN,CAAC;AAEJ,SAAO;AAAA;",
6
+ "names": []
7
+ }