reshaped 3.8.0-canary.10 → 3.8.0-canary.12

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 (26) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/dist/bundle.css +1 -1
  3. package/dist/bundle.js +8 -8
  4. package/dist/components/Modal/tests/Modal.stories.d.ts +3 -7
  5. package/dist/components/Modal/tests/Modal.stories.js +5 -22
  6. package/dist/components/Text/Text.module.css +1 -1
  7. package/dist/components/TextField/TextField.js +10 -2
  8. package/dist/components/TextField/TextField.module.css +1 -1
  9. package/dist/components/TextField/TextField.types.d.ts +5 -1
  10. package/dist/components/TextField/tests/TextField.stories.js +11 -5
  11. package/dist/hooks/useOnClickOutside.js +0 -2
  12. package/package.json +1 -1
  13. package/dist/components/DropdownMenu/tests/DropdownMenu.test.stories.d.ts +0 -21
  14. package/dist/components/DropdownMenu/tests/DropdownMenu.test.stories.js +0 -11
  15. package/dist/components/Link/tests/Link.test.stories.d.ts +0 -17
  16. package/dist/components/Link/tests/Link.test.stories.js +0 -11
  17. package/dist/components/Loader/tests/Loader.test.stories.d.ts +0 -13
  18. package/dist/components/Loader/tests/Loader.test.stories.js +0 -11
  19. package/dist/components/Table/tests/Table.test.stories.d.ts +0 -19
  20. package/dist/components/Table/tests/Table.test.stories.js +0 -11
  21. package/dist/components/TextField/tests/TextField.test.stories.d.ts +0 -15
  22. package/dist/components/TextField/tests/TextField.test.stories.js +0 -11
  23. package/dist/components/Timeline/tests/Timeline.test.stories.d.ts +0 -15
  24. package/dist/components/Timeline/tests/Timeline.test.stories.js +0 -11
  25. package/dist/components/Tooltip/tests/Tooltip.test.stories.d.ts +0 -13
  26. package/dist/components/Tooltip/tests/Tooltip.test.stories.js +0 -11
package/CHANGELOG.md CHANGED
@@ -1,3 +1,29 @@
1
+ ## 3.8.0-canary.12
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **Text:** fixed text css reset ([f6526ef](https://github.com/reshaped-ui/reshaped/commit/f6526ef1865280c93688deacbb2b50f7ecf8b459))
7
+
8
+
9
+ ### Features
10
+
11
+ * **TextField:** startSlotPadding and endSlotPadding support ([#464](https://github.com/reshaped-ui/reshaped/issues/464)) ([2f33180](https://github.com/reshaped-ui/reshaped/commit/2f33180630773ebd119fa65575b2ff6c437d7970))
12
+
13
+ ## 3.8.0-canary.11
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * **useOnClickOutside:** removed pointerType check blocking ios17 execution ([2f4ec1d](https://github.com/reshaped-ui/reshaped/commit/2f4ec1d8e3aa53fb7107050950c6895559c41e1e))
19
+ * **useScrollLock:** fixed reset conflict when using container on ios ([#459](https://github.com/reshaped-ui/reshaped/issues/459)) ([d13c364](https://github.com/reshaped-ui/reshaped/commit/d13c364ee719e6a8b78d4f38167d802220b3e9a6))
20
+
21
+
22
+ ### Features
23
+
24
+ * **Flyout:** exposed TriggerAttributes types ([#458](https://github.com/reshaped-ui/reshaped/issues/458)) ([b5230ed](https://github.com/reshaped-ui/reshaped/commit/b5230edecc7aac21a8a866b7f7101e1f87f4a213))
25
+ * **Text:** added low priority css reset for global styles ([#460](https://github.com/reshaped-ui/reshaped/issues/460)) ([04090ec](https://github.com/reshaped-ui/reshaped/commit/04090ec23285e05975a24e0f2e6789d25aa96de1))
26
+
1
27
  ## 3.8.0-canary.10
2
28
 
3
29