reshaped 3.1.2 → 3.1.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.
- package/CHANGELOG.md +5 -2
- package/dist/bundle.css +1 -1
- package/dist/bundle.js +11 -11
- package/dist/components/Actionable/Actionable.js +3 -1
- package/dist/components/Pagination/PaginationControlled.js +3 -2
- package/dist/components/Pagination/tests/Pagination.stories.js +3 -0
- package/dist/components/Text/Text.js +3 -1
- package/dist/components/Text/Text.module.css +1 -1
- package/dist/components/View/View.js +3 -1
- package/dist/components/View/View.types.d.ts +1 -1
- package/dist/components/View/tests/View.stories.js +4 -0
- package/dist/components/_private/Flyout/Flyout.types.d.ts +2 -0
- package/dist/components/_private/Flyout/FlyoutControlled.js +15 -6
- package/dist/components/_private/Flyout/FlyoutTrigger.js +2 -1
- package/dist/components/_private/Flyout/useFlyout.d.ts +5 -1
- package/dist/components/_private/Flyout/useFlyout.js +20 -6
- package/dist/styles/textAlign/index.d.ts +3 -0
- package/dist/styles/textAlign/index.js +10 -0
- package/dist/styles/textAlign/textAlign.module.css +1 -0
- package/dist/styles/types.d.ts +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
-
Overlay: blurred
|
2
|
-
|
3
1
|
3.2.0
|
2
|
+
|
3
|
+
- Pagination: Fixed truncation for total < 8
|
4
|
+
- PinField, source: Updated keyboard tests
|
5
|
+
- Flyout: Correctly calculate position for scaled down triggers
|
6
|
+
- Flyout: Using vanilla event listeners on trigger, you can pass additional custom handlers yourself
|