@full-ui/headless-calendar 7.0.0-beta.5
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/LICENSE.md +22 -0
- package/README.md +22 -0
- package/cjs/index.cjs +1011 -0
- package/esm/index.d.ts +284 -0
- package/esm/index.js +945 -0
- package/package.json +40 -0
package/LICENSE.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Adam Shaw
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+
a copy of this software and associated documentation files (the
|
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
+
the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be
|
|
14
|
+
included in all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
|
|
2
|
+
# Full UI :: Headless Calendar
|
|
3
|
+
|
|
4
|
+
Headless calendar library by the makers of FullCalendar
|
|
5
|
+
|
|
6
|
+
## Description
|
|
7
|
+
|
|
8
|
+
This library is a higher-level abstraction than a datetime library (like Moment or date-fns), but not high enough to be considered a batteries-included calendar/scheduler library. It gives developers the power to create their own datetime-based UI using a set of convenient utility methods and objects, similar to what Tanstack Table does for data grids.
|
|
9
|
+
|
|
10
|
+
> [!IMPORTANT]
|
|
11
|
+
> If you are a FullCalendar Premium subscriber, and wish to use this library, please reach out to the tech support email you received upon purchase.
|
|
12
|
+
|
|
13
|
+
In its current form, it's being used internally by the `@fullcalendar/core` package. We have ambitions to make it more robust and feature-packed while keeping a small tree-shakeable size. It's functionality is not yet thoroughly document, though for select FullCalendar Premium users, we are offering this as beta software to overcome limitations with FullCalendar's current lack of composability.
|
|
14
|
+
|
|
15
|
+
## High-level API
|
|
16
|
+
|
|
17
|
+
- Date parsing/validation
|
|
18
|
+
- Event object parsing/validation
|
|
19
|
+
- Event object slicing and other kung-fu needed to make event display conform to a variety of DOM structures
|
|
20
|
+
- A little bit of cross-framework magic
|
|
21
|
+
|
|
22
|
+
And more to come!... 👀
|