@instructure/ui-react-utils 8.53.2 → 8.53.3-pr-snapshot-8

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 (59) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/es/__new-tests__/ComponentIdentifier.test.js +77 -0
  3. package/es/__new-tests__/DeterministicIdContext.test.js +89 -0
  4. package/es/__new-tests__/callRenderProp.test.js +121 -0
  5. package/es/__new-tests__/deprecated.test.js +223 -0
  6. package/es/__new-tests__/experimental.test.js +94 -0
  7. package/es/__new-tests__/getInteraction.test.js +117 -0
  8. package/es/__new-tests__/hack.test.js +66 -0
  9. package/es/__new-tests__/omitProps.test.js +91 -0
  10. package/es/__new-tests__/passthroughProps.test.js +100 -0
  11. package/es/__new-tests__/pickProps.test.js +95 -0
  12. package/es/__new-tests__/safeCloneElement.test.js +86 -0
  13. package/lib/__new-tests__/ComponentIdentifier.test.js +80 -0
  14. package/lib/__new-tests__/DeterministicIdContext.test.js +91 -0
  15. package/lib/__new-tests__/callRenderProp.test.js +123 -0
  16. package/lib/__new-tests__/deprecated.test.js +227 -0
  17. package/lib/__new-tests__/experimental.test.js +98 -0
  18. package/lib/__new-tests__/getInteraction.test.js +119 -0
  19. package/lib/__new-tests__/hack.test.js +70 -0
  20. package/lib/__new-tests__/omitProps.test.js +94 -0
  21. package/lib/__new-tests__/passthroughProps.test.js +102 -0
  22. package/lib/__new-tests__/pickProps.test.js +98 -0
  23. package/lib/__new-tests__/safeCloneElement.test.js +89 -0
  24. package/package.json +9 -8
  25. package/src/__new-tests__/ComponentIdentifier.test.tsx +105 -0
  26. package/src/__new-tests__/DeterministicIdContext.test.tsx +126 -0
  27. package/src/__new-tests__/callRenderProp.test.tsx +136 -0
  28. package/src/__new-tests__/deprecated.test.tsx +357 -0
  29. package/src/__new-tests__/experimental.test.tsx +138 -0
  30. package/src/__new-tests__/getInteraction.test.tsx +119 -0
  31. package/src/__new-tests__/hack.test.tsx +90 -0
  32. package/src/__new-tests__/omitProps.test.tsx +113 -0
  33. package/src/__new-tests__/passthroughProps.test.tsx +100 -0
  34. package/src/__new-tests__/pickProps.test.tsx +111 -0
  35. package/src/__new-tests__/safeCloneElement.test.tsx +95 -0
  36. package/tsconfig.build.json +0 -3
  37. package/tsconfig.build.tsbuildinfo +1 -1
  38. package/types/__new-tests__/ComponentIdentifier.test.d.ts +2 -0
  39. package/types/__new-tests__/ComponentIdentifier.test.d.ts.map +1 -0
  40. package/types/__new-tests__/DeterministicIdContext.test.d.ts +2 -0
  41. package/types/__new-tests__/DeterministicIdContext.test.d.ts.map +1 -0
  42. package/types/__new-tests__/callRenderProp.test.d.ts +2 -0
  43. package/types/__new-tests__/callRenderProp.test.d.ts.map +1 -0
  44. package/types/__new-tests__/deprecated.test.d.ts +2 -0
  45. package/types/__new-tests__/deprecated.test.d.ts.map +1 -0
  46. package/types/__new-tests__/experimental.test.d.ts +2 -0
  47. package/types/__new-tests__/experimental.test.d.ts.map +1 -0
  48. package/types/__new-tests__/getInteraction.test.d.ts +2 -0
  49. package/types/__new-tests__/getInteraction.test.d.ts.map +1 -0
  50. package/types/__new-tests__/hack.test.d.ts +2 -0
  51. package/types/__new-tests__/hack.test.d.ts.map +1 -0
  52. package/types/__new-tests__/omitProps.test.d.ts +2 -0
  53. package/types/__new-tests__/omitProps.test.d.ts.map +1 -0
  54. package/types/__new-tests__/passthroughProps.test.d.ts +2 -0
  55. package/types/__new-tests__/passthroughProps.test.d.ts.map +1 -0
  56. package/types/__new-tests__/pickProps.test.d.ts +2 -0
  57. package/types/__new-tests__/pickProps.test.d.ts.map +1 -0
  58. package/types/__new-tests__/safeCloneElement.test.d.ts +2 -0
  59. package/types/__new-tests__/safeCloneElement.test.d.ts.map +1 -0
@@ -0,0 +1,2 @@
1
+ import '@testing-library/jest-dom';
2
+ //# sourceMappingURL=ComponentIdentifier.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ComponentIdentifier.test.d.ts","sourceRoot":"","sources":["../../src/__new-tests__/ComponentIdentifier.test.tsx"],"names":[],"mappings":"AA4BA,OAAO,2BAA2B,CAAA"}
@@ -0,0 +1,2 @@
1
+ import '@testing-library/jest-dom';
2
+ //# sourceMappingURL=DeterministicIdContext.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DeterministicIdContext.test.d.ts","sourceRoot":"","sources":["../../src/__new-tests__/DeterministicIdContext.test.tsx"],"names":[],"mappings":"AA2BA,OAAO,2BAA2B,CAAA"}
@@ -0,0 +1,2 @@
1
+ import '@testing-library/jest-dom';
2
+ //# sourceMappingURL=callRenderProp.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"callRenderProp.test.d.ts","sourceRoot":"","sources":["../../src/__new-tests__/callRenderProp.test.tsx"],"names":[],"mappings":"AA4BA,OAAO,2BAA2B,CAAA"}
@@ -0,0 +1,2 @@
1
+ import '@testing-library/jest-dom';
2
+ //# sourceMappingURL=deprecated.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"deprecated.test.d.ts","sourceRoot":"","sources":["../../src/__new-tests__/deprecated.test.tsx"],"names":[],"mappings":"AA4BA,OAAO,2BAA2B,CAAA"}
@@ -0,0 +1,2 @@
1
+ import '@testing-library/jest-dom';
2
+ //# sourceMappingURL=experimental.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"experimental.test.d.ts","sourceRoot":"","sources":["../../src/__new-tests__/experimental.test.tsx"],"names":[],"mappings":"AA4BA,OAAO,2BAA2B,CAAA"}
@@ -0,0 +1,2 @@
1
+ import '@testing-library/jest-dom';
2
+ //# sourceMappingURL=getInteraction.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getInteraction.test.d.ts","sourceRoot":"","sources":["../../src/__new-tests__/getInteraction.test.tsx"],"names":[],"mappings":"AAwBA,OAAO,2BAA2B,CAAA"}
@@ -0,0 +1,2 @@
1
+ import '@testing-library/jest-dom';
2
+ //# sourceMappingURL=hack.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hack.test.d.ts","sourceRoot":"","sources":["../../src/__new-tests__/hack.test.tsx"],"names":[],"mappings":"AA4BA,OAAO,2BAA2B,CAAA"}
@@ -0,0 +1,2 @@
1
+ import '@testing-library/jest-dom';
2
+ //# sourceMappingURL=omitProps.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"omitProps.test.d.ts","sourceRoot":"","sources":["../../src/__new-tests__/omitProps.test.tsx"],"names":[],"mappings":"AAyBA,OAAO,2BAA2B,CAAA"}
@@ -0,0 +1,2 @@
1
+ import '@testing-library/jest-dom';
2
+ //# sourceMappingURL=passthroughProps.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"passthroughProps.test.d.ts","sourceRoot":"","sources":["../../src/__new-tests__/passthroughProps.test.tsx"],"names":[],"mappings":"AAwBA,OAAO,2BAA2B,CAAA"}
@@ -0,0 +1,2 @@
1
+ import '@testing-library/jest-dom';
2
+ //# sourceMappingURL=pickProps.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pickProps.test.d.ts","sourceRoot":"","sources":["../../src/__new-tests__/pickProps.test.tsx"],"names":[],"mappings":"AAyBA,OAAO,2BAA2B,CAAA"}
@@ -0,0 +1,2 @@
1
+ import '@testing-library/jest-dom';
2
+ //# sourceMappingURL=safeCloneElement.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"safeCloneElement.test.d.ts","sourceRoot":"","sources":["../../src/__new-tests__/safeCloneElement.test.tsx"],"names":[],"mappings":"AA4BA,OAAO,2BAA2B,CAAA"}