@daypilot/daypilot-lite-vue 4.7.0 → 4.8.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/README.md +7 -5
- package/daypilot-vue.min.d.ts +2 -1
- package/daypilot-vue.min.js +11 -11
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -37,6 +37,7 @@ Customize the scheduling components using an online [UI Builder](https://builder
|
|
|
37
37
|
* Grid cell customization
|
|
38
38
|
* Built-in XSS protection
|
|
39
39
|
* Localization support
|
|
40
|
+
* Calendar RTL support
|
|
40
41
|
* TypeScript definitions
|
|
41
42
|
* Vue template support
|
|
42
43
|
|
|
@@ -125,7 +126,7 @@ Use the Vue date picker component (Navigator) to change the current date. The da
|
|
|
125
126
|
import { DayPilot, DayPilotCalendar } from '@daypilot/daypilot-lite-vue';
|
|
126
127
|
import { ref, onMounted } from 'vue';
|
|
127
128
|
|
|
128
|
-
const startDate = ref("
|
|
129
|
+
const startDate = ref("2026-02-28");
|
|
129
130
|
const events = ref([]);
|
|
130
131
|
|
|
131
132
|
const calendarRef = ref(null);
|
|
@@ -155,16 +156,16 @@ Use the Vue date picker component (Navigator) to change the current date. The da
|
|
|
155
156
|
events.value = [
|
|
156
157
|
{
|
|
157
158
|
id: 1,
|
|
158
|
-
start: "
|
|
159
|
-
end: "
|
|
159
|
+
start: "2026-02-28T10:00:00",
|
|
160
|
+
end: "2026-02-28T11:00:00",
|
|
160
161
|
text: "Event 1",
|
|
161
162
|
backColor: "#6aa84faa",
|
|
162
163
|
borderColor: "#38761d",
|
|
163
164
|
},
|
|
164
165
|
{
|
|
165
166
|
id: 2,
|
|
166
|
-
start: "
|
|
167
|
-
end: "
|
|
167
|
+
start: "2026-02-28T13:00:00",
|
|
168
|
+
end: "2026-02-28T16:00:00",
|
|
168
169
|
text: "Event 2",
|
|
169
170
|
backColor: "#f1c232aa",
|
|
170
171
|
borderColor: "#bf9000",
|
|
@@ -181,6 +182,7 @@ Use the Vue date picker component (Navigator) to change the current date. The da
|
|
|
181
182
|
|
|
182
183
|
## Documentation
|
|
183
184
|
|
|
185
|
+
* [Vue scheduler with horizontal timeline](https://doc.daypilot.org/scheduler/vue-js/)
|
|
184
186
|
* [Vue weekly calendar](https://doc.daypilot.org/calendar/vue-js/)
|
|
185
187
|
* [Vue monthly calendar](https://doc.daypilot.org/month/vue-js/)
|
|
186
188
|
* [Vue date picker](https://doc.daypilot.org/navigator/vue-js/)
|
package/daypilot-vue.min.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ DayPilot Lite
|
|
|
3
3
|
Copyright (c) 2005 - 2025 Annpoint s.r.o.
|
|
4
4
|
https://www.daypilot.org/
|
|
5
5
|
Licensed under Apache Software License 2.0
|
|
6
|
-
Version: 2025.4.
|
|
6
|
+
Version: 2025.4.750-lite
|
|
7
7
|
*/
|
|
8
8
|
type GlobalDate = Date;
|
|
9
9
|
|
|
@@ -538,6 +538,7 @@ export module DayPilot {
|
|
|
538
538
|
loadingLabelHtml?: string;
|
|
539
539
|
loadingLabelVisible?: boolean;
|
|
540
540
|
locale?: string;
|
|
541
|
+
rtl?: boolean;
|
|
541
542
|
showToolTip?: boolean;
|
|
542
543
|
snapToGrid?: boolean;
|
|
543
544
|
startDate?: DayPilot.Date | string;
|