@tracktor/design-system 4.17.1 → 4.18.0
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 +7 -6
- package/dist/main.cjs +10 -10
- package/dist/main.js +879 -848
- package/dist/src/components/DataDisplay/Kanban/Kanban.d.ts +2 -2
- package/dist/src/components/DataDisplay/Kanban/utils/ChipStatusKanban.d.ts +17 -0
- package/dist/src/components/DataDisplay/Kanban/utils/EmptyStateOverlay.d.ts +5 -0
- package/dist/src/components/DataDisplay/Kanban/utils/computeKanbanCardHeight.d.ts +3 -0
- package/dist/src/components/DataDisplay/Kanban/utils/config.d.ts +14 -0
- package/dist/src/components/DataDisplay/Kanban/utils/useDragScroll.d.ts +8 -0
- package/dist/src/components/DataDisplay/TimeLine/TimeLine.d.ts +1 -1
- package/package.json +1 -1
- package/dist/src/components/DataDisplay/Kanban/utils.d.ts +0 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
# [Releases](https://github.com/Tracktor/design-system/releases)
|
|
2
2
|
|
|
3
|
-
## v4.
|
|
3
|
+
## v4.18.0
|
|
4
4
|
|
|
5
|
-
###
|
|
6
|
-
####
|
|
7
|
-
-
|
|
8
|
-
|
|
9
|
-
|
|
5
|
+
### Feat
|
|
6
|
+
#### Kanban: Add ReactElement to Subtitle items
|
|
7
|
+
- Add ReactElement to Subtitle items in Kanban component for more flexibility
|
|
8
|
+
|
|
9
|
+
#### Timeline: Add React Element to Subtitle
|
|
10
|
+
- Allow React Element in Subtitle of Timeline component for enhanced customization
|