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.
- package/CHANGELOG.md +26 -0
- package/dist/bundle.css +1 -1
- package/dist/bundle.js +8 -8
- package/dist/components/Modal/tests/Modal.stories.d.ts +3 -7
- package/dist/components/Modal/tests/Modal.stories.js +5 -22
- package/dist/components/Text/Text.module.css +1 -1
- package/dist/components/TextField/TextField.js +10 -2
- package/dist/components/TextField/TextField.module.css +1 -1
- package/dist/components/TextField/TextField.types.d.ts +5 -1
- package/dist/components/TextField/tests/TextField.stories.js +11 -5
- package/dist/hooks/useOnClickOutside.js +0 -2
- package/package.json +1 -1
- package/dist/components/DropdownMenu/tests/DropdownMenu.test.stories.d.ts +0 -21
- package/dist/components/DropdownMenu/tests/DropdownMenu.test.stories.js +0 -11
- package/dist/components/Link/tests/Link.test.stories.d.ts +0 -17
- package/dist/components/Link/tests/Link.test.stories.js +0 -11
- package/dist/components/Loader/tests/Loader.test.stories.d.ts +0 -13
- package/dist/components/Loader/tests/Loader.test.stories.js +0 -11
- package/dist/components/Table/tests/Table.test.stories.d.ts +0 -19
- package/dist/components/Table/tests/Table.test.stories.js +0 -11
- package/dist/components/TextField/tests/TextField.test.stories.d.ts +0 -15
- package/dist/components/TextField/tests/TextField.test.stories.js +0 -11
- package/dist/components/Timeline/tests/Timeline.test.stories.d.ts +0 -15
- package/dist/components/Timeline/tests/Timeline.test.stories.js +0 -11
- package/dist/components/Tooltip/tests/Tooltip.test.stories.d.ts +0 -13
- 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
|
|