akfatimeline 1.0.2 → 1.0.4
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/.babelrc +5 -3
- package/CHANGELOG.md +35 -0
- package/dist/Timeline.js +2292 -1
- package/dist/dist/components/Timeline/DragAndDropHandler.js +35 -0
- package/dist/dist/components/Timeline/EventTooltip.js +206 -0
- package/dist/dist/components/Timeline/Indicator.js +30 -0
- package/dist/dist/components/Timeline/MasterHeader.js +55 -0
- package/dist/dist/components/Timeline/Resources.js +53 -0
- package/dist/dist/components/Timeline/ResourcesHeader.js +14 -0
- package/dist/dist/components/Timeline/Timeline.css +534 -0
- package/dist/dist/components/Timeline/Timeline.js +277 -0
- package/dist/dist/components/Timeline/TimelineCell.js +8 -0
- package/dist/dist/components/Timeline/TimelineContent.js +422 -0
- package/dist/dist/components/Timeline/TimelineEvents.js +114 -0
- package/dist/dist/components/Timeline/TimelineHeader.js +43 -0
- package/dist/dist/components/Timeline/TimelineMonthContainer.js +29 -0
- package/dist/dist/components/Timeline/TimelineResources.js +16 -0
- package/dist/dist/hooks/useDragAndDrop.js +80 -0
- package/dist/dist/hooks/useEventDragDrop.js +120 -0
- package/dist/dist/hooks/useExtendEvent.js +28 -0
- package/dist/dist/utils/HorizontalVirtualScroll.js +0 -0
- package/dist/dist/utils/dateUtils.js +36 -0
- package/dist/dist/utils/filterTimelineData.js +21 -0
- package/dist/dist/utils/timelineUtils.js +40 -0
- package/package.json +2 -1
- package/public/index kutuphane /304/261c/304/261n.html" +43 -0
- package/public/index tasarim icin.html +20 -0
- package/src/App.js +161 -154
- package/src/components/Timeline/DatePickerComponent.js +17 -0
- package/src/components/Timeline/EventTooltip.js +1 -1
- package/src/components/Timeline/Indicator.js +1 -2
- package/src/components/Timeline/MasterHeader.js +36 -23
- package/src/components/Timeline/Timeline.css +90 -8
- package/src/components/Timeline/Timeline.js +71 -44
- package/src/components/Timeline/TimelineContent.js +154 -129
- package/src/hooks/useEventDragDrop.js +22 -16
- package/webpack.config.js +25 -7
- package/src/App copy.js +0 -185
- package/src/components/Timeline/TimelineContent copy.js +0 -421
package/.babelrc
CHANGED
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
Tüm önemli değişiklikler bu dosyada belgelenir.
|
|
3
|
+
|
|
4
|
+
## [1.0.4] - 2025-01-XX
|
|
5
|
+
### Added
|
|
6
|
+
- **Event and Temporary Event Styling:**
|
|
7
|
+
- `Event` ve `Geçici Event` stilleri artık `prop` olarak geçirilebiliyor. Bu sayede stil özelleştirmeleri kolaylaştırıldı.
|
|
8
|
+
- **Tooltip Styling:**
|
|
9
|
+
- Tooltip stilleri de `prop` olarak özelleştirmeye açıldı.
|
|
10
|
+
- **Callback Enhancements:**
|
|
11
|
+
- **`TimelineContent` Component:**
|
|
12
|
+
- Drag-and-Drop işlemleri için `handleDropInfo` callback'i eklendi.
|
|
13
|
+
- `onDragInfo`, `onExtendInfo`, ve `onCreateEventInfo` callback'leri destekleniyor.
|
|
14
|
+
- `useEventDragDrop` hook'u yeniden yapılandırıldı; dışa dönük veri aktarımı kolaylaştırıldı.
|
|
15
|
+
- Loglama ve hata ayıklama geliştirmeleri yapıldı.
|
|
16
|
+
- **`useEventDragDrop` Hook:**
|
|
17
|
+
- `handleDrop` fonksiyonuna yeni parametreler ve loglamalar eklendi.
|
|
18
|
+
- `setDropInfo` üzerinden dışarıya bilgi aktarımı sağlandı.
|
|
19
|
+
- **`MasterHeader` Component:**
|
|
20
|
+
- Tarih formatlama `toISOString()` ile güncellendi.
|
|
21
|
+
- `selectedDate` artık doğru zaman dilimine göre formatlanıyor.
|
|
22
|
+
- Tarih seçicide manuel giriş engellendi.
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
- **Tooltip Issue:**
|
|
26
|
+
- Uzatma modundayken açılan gereksiz tooltip sorunu giderildi.
|
|
27
|
+
- **Code Improvements:**
|
|
28
|
+
- Gereksiz uyarılar temizlendi ve kod yeniden düzenlendi.
|
|
29
|
+
- **Performance:**
|
|
30
|
+
- Drag-and-Drop ve Event Extend işlemlerinde daha verimli güncellemeler yapıldı.
|
|
31
|
+
- Gereksiz render çağrıları minimize edildi.
|
|
32
|
+
|
|
33
|
+
### Removed
|
|
34
|
+
- **Manual Date Entry:**
|
|
35
|
+
- Manuel giriş destekli `DatePicker` fonksiyonları devre dışı bırakıldı.
|