@htmlbricks/hb-calendar-appointments 0.68.1 → 0.68.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/manifest.json +45 -3
- package/package.json +1 -1
package/manifest.json
CHANGED
|
@@ -193,15 +193,16 @@
|
|
|
193
193
|
"examples": [
|
|
194
194
|
{
|
|
195
195
|
"name": "CalendarWithEvents",
|
|
196
|
+
"description": "Sample appointments on the current and adjacent month.",
|
|
196
197
|
"data": {
|
|
197
198
|
"events": [
|
|
198
199
|
{
|
|
199
|
-
"date": "2026-03-
|
|
200
|
+
"date": "2026-03-30T20:41:28.920Z",
|
|
200
201
|
"id": "test",
|
|
201
202
|
"label": "thetest"
|
|
202
203
|
},
|
|
203
204
|
{
|
|
204
|
-
"date": "2026-02-
|
|
205
|
+
"date": "2026-02-28T21:41:28.920Z",
|
|
205
206
|
"id": "test2",
|
|
206
207
|
"label": "thetest start",
|
|
207
208
|
"color": "red"
|
|
@@ -211,9 +212,50 @@
|
|
|
211
212
|
},
|
|
212
213
|
{
|
|
213
214
|
"name": "TotallyEmpty",
|
|
215
|
+
"description": "No rows; header and navigation still available.",
|
|
214
216
|
"data": {
|
|
215
217
|
"events": []
|
|
216
218
|
}
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"name": "noHeader",
|
|
222
|
+
"description": "Agenda list without the month navigation chrome.",
|
|
223
|
+
"data": {
|
|
224
|
+
"events": [
|
|
225
|
+
{
|
|
226
|
+
"date": "2026-03-30T20:41:28.920Z",
|
|
227
|
+
"id": "test",
|
|
228
|
+
"label": "thetest"
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"date": "2026-02-28T21:41:28.920Z",
|
|
232
|
+
"id": "test2",
|
|
233
|
+
"label": "thetest start",
|
|
234
|
+
"color": "red"
|
|
235
|
+
}
|
|
236
|
+
],
|
|
237
|
+
"disable_header": true
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"name": "withSelectedDay",
|
|
242
|
+
"description": "Pre-selected calendar day alongside event data.",
|
|
243
|
+
"data": {
|
|
244
|
+
"events": [
|
|
245
|
+
{
|
|
246
|
+
"date": "2026-03-30T20:41:28.920Z",
|
|
247
|
+
"id": "test",
|
|
248
|
+
"label": "thetest"
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"date": "2026-02-28T21:41:28.920Z",
|
|
252
|
+
"id": "test2",
|
|
253
|
+
"label": "thetest start",
|
|
254
|
+
"color": "red"
|
|
255
|
+
}
|
|
256
|
+
],
|
|
257
|
+
"selected": "2026-03-30T20:41:28.920Z"
|
|
258
|
+
}
|
|
217
259
|
}
|
|
218
260
|
],
|
|
219
261
|
"iifeIntegrity": "sha384-doZ9H3NE/BKHfrXSODrTV778ONbmyX8yDCLTya16DTlM4Ati941qCmpMY4UKbtED",
|
|
@@ -237,5 +279,5 @@
|
|
|
237
279
|
"size": {},
|
|
238
280
|
"iifePath": "main.iife.js",
|
|
239
281
|
"repoName": "@htmlbricks/hb-calendar-appointments",
|
|
240
|
-
"version": "0.68.
|
|
282
|
+
"version": "0.68.2"
|
|
241
283
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@htmlbricks/hb-calendar-appointments",
|
|
3
|
-
"version": "0.68.
|
|
3
|
+
"version": "0.68.2",
|
|
4
4
|
"contributors": [],
|
|
5
5
|
"description": "Month agenda view: events for the current month are grouped by calendar day and listed chronologically with weekday, day number, time, and colored markers. Optional header with month navigation; changing month or selecting a day dispatches `changeCalendarDate`, `changeSelectedDate`, and clicking a row dispatches `calendarEventClick`. Uses Italian public holidays metadata and accepts `events` as JSON.",
|
|
6
6
|
"licenses": [
|