@htmlbricks/hb-calendar-events 0.71.36 → 0.71.37

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
@@ -68,7 +68,6 @@ From **`types/webcomponent.type.d.ts`**. In plain HTML, **attributes are strings
68
68
  | Name | Type (authoring) | Role |
69
69
  |------|------------------|------|
70
70
  | `id` | `string` (optional) | Optional identifier; coerced to `""` when missing in `$effect`. |
71
- | `style` | `string` (optional) | Standard host inline style passthrough (Svelte / element `style`). |
72
71
  | `date` | `Date` (optional) | Month anchor; default start of **current** month. Prefer a real `Date` instance. |
73
72
  | `events` | `IEvent[]` or JSON **string** | Events to show as chips; optional. Parsed from string when needed. |
74
73
  | `selected` | `Date` or parseable **string** (optional) | Highlights the matching day (including padding months). |
@@ -146,7 +145,7 @@ Authoring types for consumers and wrappers live in:
146
145
  `src/wc/calendar-events/types/webcomponent.type.d.ts`
147
146
 
148
147
  - **`IEvent`** — one calendar entry (date, label, id, optional link/icon/color).
149
- - **`Component`** — props: `id`, `style`, `date`, `events`, `selected`, `disable_header`.
148
+ - **`Component`** — props: `id`, `date`, `events`, `selected`, `disable_header`.
150
149
  - **`Events`** — maps custom event names to their `detail` shapes: `calendarEventClick`, `changeCalendarDate`, `changeSelectedDate`.
151
150
 
152
151
  After a full web-component build, generated DOM / Svelte element typings may also list this tag under `types/html-elements.d.ts` and `types/svelte-elements.d.ts` in the package output.
package/manifest.json CHANGED
@@ -81,9 +81,6 @@
81
81
  "selected": {
82
82
  "format": "date-time",
83
83
  "type": "string"
84
- },
85
- "style": {
86
- "type": "string"
87
84
  }
88
85
  },
89
86
  "type": "object"
@@ -251,12 +248,12 @@
251
248
  "data": {
252
249
  "events": [
253
250
  {
254
- "date": "2026-04-17T00:13:27.147Z",
251
+ "date": "2026-04-17T00:28:07.320Z",
255
252
  "id": "test",
256
253
  "label": "thetest"
257
254
  },
258
255
  {
259
- "date": "2026-03-31T00:13:27.147Z",
256
+ "date": "2026-03-31T00:28:07.320Z",
260
257
  "id": "test2",
261
258
  "label": "thetest start",
262
259
  "color": "red"
@@ -277,12 +274,12 @@
277
274
  "data": {
278
275
  "events": [
279
276
  {
280
- "date": "2026-04-17T00:13:27.147Z",
277
+ "date": "2026-04-17T00:28:07.320Z",
281
278
  "id": "test",
282
279
  "label": "thetest"
283
280
  },
284
281
  {
285
- "date": "2026-03-31T00:13:27.147Z",
282
+ "date": "2026-03-31T00:28:07.320Z",
286
283
  "id": "test2",
287
284
  "label": "thetest start",
288
285
  "color": "red"
@@ -312,5 +309,5 @@
312
309
  "size": {},
313
310
  "iifePath": "main.iife.js",
314
311
  "repoName": "@htmlbricks/hb-calendar-events",
315
- "version": "0.71.36"
312
+ "version": "0.71.37"
316
313
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@htmlbricks/hb-calendar-events",
3
- "version": "0.71.36",
3
+ "version": "0.71.37",
4
4
  "contributors": [],
5
5
  "description": "Classic month grid (7-day week header and variable rows) with selectable cells, “today” styling, and event chips inside each day. Supports adjacent-month padding cells, Italian holidays, JSON `events`, and the same navigation/selection events as the appointments calendar (`changeCalendarDate`, `changeSelectedDate`, `calendarEventClick`).",
6
6
  "licenses": [
@@ -24,9 +24,6 @@
24
24
  "selected": {
25
25
  "format": "date-time",
26
26
  "type": "string"
27
- },
28
- "style": {
29
- "type": "string"
30
27
  }
31
28
  },
32
29
  "type": "object"
@@ -8,7 +8,6 @@ export interface IEvent {
8
8
  }
9
9
  export type Component = {
10
10
  id?: string;
11
- style?: string;
12
11
  date?: Date;
13
12
  events?: IEvent[];
14
13
  selected?: Date;