akfatimeline 2.2.7 → 2.2.9

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/dist/Timeline.js CHANGED
@@ -6311,7 +6311,7 @@ const Timeline_Timeline_Timeline = _ref => {
6311
6311
  minZoomLevel: minZoomLevel,
6312
6312
  maxZoomLevel: maxZoomLevel,
6313
6313
  zoomStep: zoomStep,
6314
- showDefaultButtons: showDefaultHeaderButtons,
6314
+ showDefaultHeaderButtons: showDefaultHeaderButtons,
6315
6315
  customButtons: customHeaderButtons,
6316
6316
  onCustomButtonClick: handleCustomDateChange
6317
6317
  })), /*#__PURE__*/external_react_default().createElement("div", {
@@ -494,7 +494,7 @@ const Timeline = ({
494
494
  minZoomLevel={minZoomLevel}
495
495
  maxZoomLevel={maxZoomLevel}
496
496
  zoomStep={zoomStep}
497
- showDefaultButtons={showDefaultHeaderButtons}
497
+ showDefaultHeaderButtons={showDefaultHeaderButtons}
498
498
  customButtons={customHeaderButtons}
499
499
  onCustomButtonClick={handleCustomDateChange}
500
500
  />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akfatimeline",
3
- "version": "2.2.7",
3
+ "version": "2.2.9",
4
4
  "description": "A customizable timeline component for React applications with disableDates, custom header buttons, and past date protection features",
5
5
  "main": "./src/library.js",
6
6
  "module": "./src/library.js",
@@ -494,7 +494,7 @@ const Timeline = ({
494
494
  minZoomLevel={minZoomLevel}
495
495
  maxZoomLevel={maxZoomLevel}
496
496
  zoomStep={zoomStep}
497
- showDefaultButtons={showDefaultHeaderButtons}
497
+ showDefaultHeaderButtons={showDefaultHeaderButtons}
498
498
  customButtons={customHeaderButtons}
499
499
  onCustomButtonClick={handleCustomDateChange}
500
500
  />
package/src/library.js CHANGED
@@ -23,4 +23,5 @@ export {
23
23
 
24
24
  // CSS dosyası package.json'da exports altında tanımlı
25
25
  // Kullanım: import 'akfatimeline/components/Timeline/Timeline.css'
26
+ import "./components/Timeline/Timeline.css";
26
27