akfatimeline 1.1.1 → 1.2.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 +32 -0
- package/package.json +55 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,38 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
Tüm önemli değişiklikler bu dosyada belgelenir.
|
|
3
3
|
|
|
4
|
+
## [1.2.0] - 2025-01-XX
|
|
5
|
+
|
|
6
|
+
### Changed
|
|
7
|
+
- **Package.json Export Yapısı İyileştirildi:**
|
|
8
|
+
- `main` ve `module` field'ları `src/library.js` olarak güncellendi
|
|
9
|
+
- Daha detaylı `exports` field'ı eklendi
|
|
10
|
+
- Her component için ayrı export path'leri eklendi:
|
|
11
|
+
- `akfatimeline/Timeline` - Ana Timeline component
|
|
12
|
+
- `akfatimeline/DailyView` - Daily View component
|
|
13
|
+
- `akfatimeline/ContextMenu` - Context Menu component
|
|
14
|
+
- `akfatimeline/EventDetailModal` - Event Detail Modal component
|
|
15
|
+
- `akfatimeline/EventIcon` - Event Icon component
|
|
16
|
+
- `akfatimeline/EventBadge` - Event Badge component
|
|
17
|
+
- `akfatimeline/LoadingSpinner` - Loading Spinner component
|
|
18
|
+
- `akfatimeline/AutocompleteSelect` - Autocomplete Select component
|
|
19
|
+
- CSS import için kısayol: `akfatimeline/css`
|
|
20
|
+
- **Import Kolaylığı:**
|
|
21
|
+
- Artık sadece `import Timeline from 'akfatimeline'` yeterli
|
|
22
|
+
- CSS için: `import 'akfatimeline/css'` veya `import 'akfatimeline/components/Timeline/Timeline.css'`
|
|
23
|
+
- Named exports: `import { DailyView, ContextMenu } from 'akfatimeline'`
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
- Vite ve diğer modern bundler'larla uyumluluk sorunları düzeltildi
|
|
27
|
+
- ES module import sorunları çözüldü
|
|
28
|
+
- Default export sorunları giderildi
|
|
29
|
+
|
|
30
|
+
## [1.1.1] - 2024-12-XX
|
|
31
|
+
|
|
32
|
+
### Fixed
|
|
33
|
+
- Build sırasındaki orphan modules uyarıları giderildi
|
|
34
|
+
- Webpack config optimizasyonları
|
|
35
|
+
|
|
4
36
|
## [1.1.0] - 2024-12-XX
|
|
5
37
|
|
|
6
38
|
### Added
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "akfatimeline",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "A customizable timeline component for React applications",
|
|
5
|
-
"main": "
|
|
6
|
-
"module": "src/library.js",
|
|
5
|
+
"main": "./src/library.js",
|
|
6
|
+
"module": "./src/library.js",
|
|
7
|
+
"types": "./src/library.js",
|
|
7
8
|
"files": [
|
|
8
9
|
"dist",
|
|
9
10
|
"src",
|
|
@@ -12,11 +13,61 @@
|
|
|
12
13
|
],
|
|
13
14
|
"exports": {
|
|
14
15
|
".": {
|
|
16
|
+
"types": "./src/library.js",
|
|
15
17
|
"import": "./src/library.js",
|
|
16
18
|
"require": "./dist/Timeline.js",
|
|
17
19
|
"default": "./src/library.js"
|
|
18
20
|
},
|
|
19
|
-
"./
|
|
21
|
+
"./css": "./src/components/Timeline/Timeline.css",
|
|
22
|
+
"./components/Timeline/Timeline.css": "./src/components/Timeline/Timeline.css",
|
|
23
|
+
"./Timeline": {
|
|
24
|
+
"types": "./src/components/Timeline/Timeline.js",
|
|
25
|
+
"import": "./src/components/Timeline/Timeline.js",
|
|
26
|
+
"require": "./dist/components/Timeline/Timeline.js",
|
|
27
|
+
"default": "./src/components/Timeline/Timeline.js"
|
|
28
|
+
},
|
|
29
|
+
"./DailyView": {
|
|
30
|
+
"types": "./src/components/Timeline/DailyView.js",
|
|
31
|
+
"import": "./src/components/Timeline/DailyView.js",
|
|
32
|
+
"require": "./dist/components/Timeline/DailyView.js",
|
|
33
|
+
"default": "./src/components/Timeline/DailyView.js"
|
|
34
|
+
},
|
|
35
|
+
"./ContextMenu": {
|
|
36
|
+
"types": "./src/components/Timeline/ContextMenu.js",
|
|
37
|
+
"import": "./src/components/Timeline/ContextMenu.js",
|
|
38
|
+
"require": "./dist/components/Timeline/ContextMenu.js",
|
|
39
|
+
"default": "./src/components/Timeline/ContextMenu.js"
|
|
40
|
+
},
|
|
41
|
+
"./EventDetailModal": {
|
|
42
|
+
"types": "./src/components/Timeline/EventDetailModal.js",
|
|
43
|
+
"import": "./src/components/Timeline/EventDetailModal.js",
|
|
44
|
+
"require": "./dist/components/Timeline/EventDetailModal.js",
|
|
45
|
+
"default": "./src/components/Timeline/EventDetailModal.js"
|
|
46
|
+
},
|
|
47
|
+
"./EventIcon": {
|
|
48
|
+
"types": "./src/components/Timeline/EventIcon.js",
|
|
49
|
+
"import": "./src/components/Timeline/EventIcon.js",
|
|
50
|
+
"require": "./dist/components/Timeline/EventIcon.js",
|
|
51
|
+
"default": "./src/components/Timeline/EventIcon.js"
|
|
52
|
+
},
|
|
53
|
+
"./EventBadge": {
|
|
54
|
+
"types": "./src/components/Timeline/EventBadge.js",
|
|
55
|
+
"import": "./src/components/Timeline/EventBadge.js",
|
|
56
|
+
"require": "./dist/components/Timeline/EventBadge.js",
|
|
57
|
+
"default": "./src/components/Timeline/EventBadge.js"
|
|
58
|
+
},
|
|
59
|
+
"./LoadingSpinner": {
|
|
60
|
+
"types": "./src/components/Timeline/LoadingSpinner.js",
|
|
61
|
+
"import": "./src/components/Timeline/LoadingSpinner.js",
|
|
62
|
+
"require": "./dist/components/Timeline/LoadingSpinner.js",
|
|
63
|
+
"default": "./src/components/Timeline/LoadingSpinner.js"
|
|
64
|
+
},
|
|
65
|
+
"./AutocompleteSelect": {
|
|
66
|
+
"types": "./src/components/Timeline/AutocompleteSelect.js",
|
|
67
|
+
"import": "./src/components/Timeline/AutocompleteSelect.js",
|
|
68
|
+
"require": "./dist/components/Timeline/AutocompleteSelect.js",
|
|
69
|
+
"default": "./src/components/Timeline/AutocompleteSelect.js"
|
|
70
|
+
}
|
|
20
71
|
},
|
|
21
72
|
"dependencies": {
|
|
22
73
|
"react": "^19.2.3",
|