@pexip/components 16.12.0 → 16.12.1
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 +28 -0
- package/dist/components.js +1 -1
- package/dist/components.mjs +3176 -3097
- package/dist/style.css +1 -1
- package/dist/types/src/components/elements/BadgeCounter/BadgeCounter.d.ts.map +1 -1
- package/dist/types/src/components/elements/Draggable/Draggable.view.d.ts +10 -0
- package/dist/types/src/components/elements/Draggable/Draggable.view.d.ts.map +1 -1
- package/dist/types/src/components/elements/Panel/Panel.d.ts +2 -0
- package/dist/types/src/components/elements/Panel/Panel.d.ts.map +1 -1
- package/dist/types/src/components/elements/Scrollbars/Scrollbars.d.ts +1 -0
- package/dist/types/src/components/elements/Scrollbars/Scrollbars.d.ts.map +1 -1
- package/dist/types/src/components/elements/Tooltip/CustomTooltip.d.ts +1 -1
- package/dist/types/src/components/elements/Tooltip/CustomTooltip.d.ts.map +1 -1
- package/dist/types/src/components/modules/DropContent/DropContent.d.ts +1 -1
- package/dist/types/src/components/modules/DropContent/DropContent.d.ts.map +1 -1
- package/dist/types/src/components/modules/DropContent/types.d.ts +1 -1
- package/dist/types/src/components/modules/DropContent/types.d.ts.map +1 -1
- package/dist/types/src/components/modules/SectionAccordion/SectionAccordion.d.ts.map +1 -1
- package/dist/types/src/components/modules/Tabs/withTabName.d.ts +1 -1
- package/dist/types/src/components/modules/Tabs/withTabName.d.ts.map +1 -1
- package/dist/types/src/components/modules/Toast/Toast.d.ts +1 -1
- package/dist/types/src/components/modules/Toast/Toast.d.ts.map +1 -1
- package/dist/types/src/components/modules/TransitionContainer/withTransition.d.ts +1 -1
- package/dist/types/src/components/modules/TransitionContainer/withTransition.d.ts.map +1 -1
- package/dist/types/src/index.d.ts +1 -0
- package/dist/types/src/index.d.ts.map +1 -1
- package/dist/types/src/themes/ThemeContext.d.ts +1 -1
- package/dist/types/src/themes/ThemeContext.d.ts.map +1 -1
- package/dist/types/src/utils/testIds.d.ts +1 -0
- package/dist/types/src/utils/testIds.d.ts.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 16.12.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- de0a150e: Typo fix for TagList story
|
|
8
|
+
- 8d493614: add testid to BadgeCounter
|
|
9
|
+
- a9a49f7dce: Fix zero pages calculation in TablePagination.
|
|
10
|
+
- f2f106c3: ### add auto scrolling support for drag and drop
|
|
11
|
+
|
|
12
|
+
- `Draggable` allows an optional `scrollElementRef` that is used to to detect
|
|
13
|
+
the need of auto scrolling.
|
|
14
|
+
- Scrolling speed can be set by `scrollTimer` (default 30 ms).
|
|
15
|
+
- Scroll offset per "scroll step" for auto scrolling can be set by
|
|
16
|
+
`scrollOffset` (default 10 px).
|
|
17
|
+
- `pointerCapture` can be activated for dragged element by `pointerCapture`
|
|
18
|
+
property (default false).
|
|
19
|
+
- `Draggable` allows optional "lock style". Which means the the drag direction
|
|
20
|
+
can be locked horizontal or vertical. That can be set by `LockStyle`
|
|
21
|
+
property. (default `LockStyle.NONE`)
|
|
22
|
+
- `Panel` allows to set the overflow to hidden by `overflowHidden` property.
|
|
23
|
+
- `Panel` suppports a ref to the scrollElement by `scrollElemenRef` property.
|
|
24
|
+
|
|
25
|
+
- 96f3ce8802: Typescript and tests updates after `yarn.lock` file maintenance
|
|
26
|
+
- Updated dependencies [7b29d953]
|
|
27
|
+
- @pexip/utils@16.9.0
|
|
28
|
+
- @pexip/hooks@17.0.1
|
|
29
|
+
- @pexip/signal@16.6.0
|
|
30
|
+
|
|
3
31
|
## 16.12.0
|
|
4
32
|
|
|
5
33
|
### Minor Changes
|