calendar-2k 1.0.0 → 1.0.2

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/README.md CHANGED
@@ -187,15 +187,32 @@ disableDate={(date) => date.toDateString() === new Date("2025-12-25").toDateStri
187
187
 
188
188
  ## Platform Support
189
189
 
190
- | Platform | Supported |
191
- | -------- | -------------- |
192
- | iOS | ✅ |
193
- | Android | ✅ |
194
- | Expo Go | ✅ |
195
- | Web | 🚧 Coming soon |
190
+ | Platform | Supported |
191
+ | -------- | --------- |
192
+ | iOS | ✅ |
193
+ | Android | ✅ |
194
+ | Expo Go | ✅ |
195
+ | Web | |
196
196
 
197
197
  ---
198
198
 
199
+ ## Support & Donation
200
+
201
+ If **calendar-2k** saved you time, consider buying me a coffee! ☕
202
+ Your support helps me maintain this project and build more free open-source tools. 🙏
203
+
204
+ ### 💛 Donate via MVola (Madagascar)
205
+
206
+ > Send your donation directly to my MVola number:
207
+ >
208
+ > **📱 +261 34 688 1474**
209
+ >
210
+ > _Any amount is deeply appreciated!_ 🤝
211
+
212
+ ---
213
+
214
+ ⭐ You can also support for free by **starring the repo** — it helps a lot!
215
+
199
216
  ## License
200
217
 
201
218
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "calendar-2k",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "The fastest fully customizable Expo date & time picker, written in TypeScript, supporting Expo Go, single date, time, date range, time range, datetime range selection, flexible date disabling, and dynamic color theming for iOS and Android.",
5
5
  "main": "Calendar2kView.js",
6
6
  "types": "build/Calendar2k.types.ts",
@@ -16,9 +16,9 @@ export default function ArrowButton({
16
16
  const source = () => {
17
17
  switch (direction) {
18
18
  case "right":
19
- return require("@/components/MyCalendar/assets/images/chevron-right.png");
19
+ return require("../assets/images/chevron-right.png");
20
20
  case "left":
21
- return require("@/components/MyCalendar/assets/images/chevron-left.png");
21
+ return require("../assets/images/chevron-left.png");
22
22
  }
23
23
  };
24
24
 
@@ -8,10 +8,10 @@ export default function Icon({ color, mode }: Props) {
8
8
  const source = () => {
9
9
  switch (mode) {
10
10
  case "time":
11
- return require("@/components/MyCalendar/assets/images/clock.png");
11
+ return require("../assets/images/clock.png");
12
12
 
13
13
  default:
14
- return require("@/components/MyCalendar/assets/images/calendar.png");
14
+ return require("../assets/images/calendar.png");
15
15
  }
16
16
  };
17
17
 
@@ -6,7 +6,7 @@ type Props = {
6
6
  export default function SwipeIcon({ color }: Props) {
7
7
  return (
8
8
  <Image
9
- source={require("@/components/MyCalendar/assets/images/swipe.png")}
9
+ source={require("../assets/images/swipe.png")}
10
10
  style={{ width: 30, height: 30, tintColor: color }}
11
11
  />
12
12
  );
File without changes