calendar-2k 1.0.10 → 1.0.12
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 +2 -2
- package/build/Calendar2kModule.d.ts +2 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -201,9 +201,9 @@ disableDate={(date) => date.toDateString() === new Date("2025-12-25").toDateStri
|
|
|
201
201
|
If **calendar-2k** saved you time, consider buying me a coffee! ☕
|
|
202
202
|
Your support helps me maintain this project and build more free open-source tools. 🙏
|
|
203
203
|
|
|
204
|
-
### 💛 Donate via
|
|
204
|
+
### 💛 Donate via Orange Money (Madagascar)
|
|
205
205
|
|
|
206
|
-
> Send your donation directly to my
|
|
206
|
+
> Send your donation directly to my Orange Money number:
|
|
207
207
|
>
|
|
208
208
|
> **📱 +261 37 654 4250**
|
|
209
209
|
>
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { NativeModule } from "expo";
|
|
2
2
|
import { Calendar2kModuleEvents } from "./Calendar2k.types";
|
|
3
|
-
declare class Calendar2kModule extends NativeModule<Calendar2kModuleEvents> {
|
|
4
|
-
}
|
|
3
|
+
declare class Calendar2kModule extends NativeModule<Calendar2kModuleEvents> {}
|
|
5
4
|
declare const _default: Calendar2kModule;
|
|
6
5
|
export default _default;
|
|
7
|
-
export * from "./Calendar2k.types";
|
|
6
|
+
export * from "./Calendar2k.types.d";
|
|
8
7
|
export { default as Calendar2kView } from "./Calendar2kView";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "calendar-2k",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
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": "build/Calendar2kView.js",
|
|
6
6
|
"types": "build/Calendar2k.types.d.ts",
|