@borisj74/bv-ds 0.1.3 → 0.1.4

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/dist/index.cjs CHANGED
@@ -6117,6 +6117,97 @@ function ButtonUtility({
6117
6117
  ) : null
6118
6118
  ] });
6119
6119
  }
6120
+ var dotClasses = {
6121
+ neutral: "bg-utility-neutral-500",
6122
+ brand: "bg-utility-brand-500",
6123
+ emerald: "bg-utility-emerald-500",
6124
+ blue: "bg-utility-blue-500",
6125
+ indigo: "bg-utility-indigo-500",
6126
+ purple: "bg-utility-purple-500",
6127
+ pink: "bg-utility-pink-500",
6128
+ orange: "bg-utility-orange-500",
6129
+ amber: "bg-utility-amber-500"
6130
+ };
6131
+ var filledClasses = {
6132
+ neutral: "bg-utility-neutral-50 border-utility-neutral-200 text-utility-neutral-700",
6133
+ brand: "bg-utility-brand-50 border-utility-brand-200 text-utility-brand-700",
6134
+ emerald: "bg-utility-emerald-50 border-utility-emerald-200 text-utility-emerald-700",
6135
+ blue: "bg-utility-blue-50 border-utility-blue-200 text-utility-blue-700",
6136
+ indigo: "bg-utility-indigo-50 border-utility-indigo-200 text-utility-indigo-700",
6137
+ purple: "bg-utility-purple-50 border-utility-purple-200 text-utility-purple-700",
6138
+ pink: "bg-utility-pink-50 border-utility-pink-200 text-utility-pink-700",
6139
+ orange: "bg-utility-orange-50 border-utility-orange-200 text-utility-orange-700",
6140
+ amber: "bg-utility-amber-50 border-utility-amber-200 text-utility-amber-700"
6141
+ };
6142
+ var filledHoverClasses = {
6143
+ neutral: "bg-utility-neutral-100",
6144
+ brand: "bg-utility-brand-100",
6145
+ emerald: "bg-utility-emerald-100",
6146
+ blue: "bg-utility-blue-100",
6147
+ indigo: "bg-utility-indigo-100",
6148
+ purple: "bg-utility-purple-100",
6149
+ pink: "bg-utility-pink-100",
6150
+ orange: "bg-utility-orange-100",
6151
+ amber: "bg-utility-amber-100"
6152
+ };
6153
+ var timeClasses = {
6154
+ neutral: "text-utility-neutral-600",
6155
+ brand: "text-utility-brand-600",
6156
+ emerald: "text-utility-emerald-600",
6157
+ blue: "text-utility-blue-600",
6158
+ indigo: "text-utility-indigo-600",
6159
+ purple: "text-utility-purple-600",
6160
+ pink: "text-utility-pink-600",
6161
+ orange: "text-utility-orange-600",
6162
+ amber: "text-utility-amber-600"
6163
+ };
6164
+ function CalendarEvent({
6165
+ title,
6166
+ time: time2,
6167
+ color: color2 = "neutral",
6168
+ filled = false,
6169
+ breakpoint = "desktop",
6170
+ state = "default",
6171
+ className
6172
+ }) {
6173
+ if (breakpoint === "mobile") {
6174
+ return /* @__PURE__ */ jsxRuntime.jsx(
6175
+ "span",
6176
+ {
6177
+ className: clsx_default("inline-block size-2 rounded-full", dotClasses[color2], className),
6178
+ role: "img",
6179
+ "aria-label": time2 ? `${title}, ${time2}` : title
6180
+ }
6181
+ );
6182
+ }
6183
+ return /* @__PURE__ */ jsxRuntime.jsxs(
6184
+ "div",
6185
+ {
6186
+ className: clsx_default(
6187
+ "flex w-full items-center gap-md rounded-sm border px-md py-xs font-body text-xs",
6188
+ filled ? clsx_default(filledClasses[color2], state === "hover" && filledHoverClasses[color2]) : clsx_default(
6189
+ "border-border-secondary bg-bg-primary text-text-secondary",
6190
+ state === "hover" && "bg-bg-primary-hover"
6191
+ ),
6192
+ className
6193
+ ),
6194
+ children: [
6195
+ /* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx_default("size-2 shrink-0 rounded-full", dotClasses[color2]), "aria-hidden": true }),
6196
+ /* @__PURE__ */ jsxRuntime.jsx("span", { className: "truncate font-semibold", children: title }),
6197
+ time2 ? /* @__PURE__ */ jsxRuntime.jsx(
6198
+ "span",
6199
+ {
6200
+ className: clsx_default(
6201
+ "ml-auto shrink-0 font-normal",
6202
+ filled ? timeClasses[color2] : "text-text-tertiary"
6203
+ ),
6204
+ children: time2
6205
+ }
6206
+ ) : null
6207
+ ]
6208
+ }
6209
+ );
6210
+ }
6120
6211
  function PlusIcon2() {
6121
6212
  return /* @__PURE__ */ jsxRuntime.jsx("svg", { viewBox: "0 0 20 20", fill: "none", className: "size-4", "aria-hidden": true, children: /* @__PURE__ */ jsxRuntime.jsx(
6122
6213
  "path",
@@ -6131,19 +6222,26 @@ function PlusIcon2() {
6131
6222
  }
6132
6223
  function CalendarCell({
6133
6224
  date: date2,
6225
+ events,
6134
6226
  children,
6135
6227
  moreCount,
6136
- muted = false,
6228
+ isToday,
6229
+ isSelected = false,
6230
+ isDisabled,
6137
6231
  current = false,
6232
+ muted = false,
6233
+ breakpoint = "desktop",
6138
6234
  onAdd,
6139
6235
  className
6140
6236
  }) {
6237
+ const today = isToday ?? current;
6238
+ const disabled = isDisabled ?? muted;
6141
6239
  return /* @__PURE__ */ jsxRuntime.jsxs(
6142
6240
  "div",
6143
6241
  {
6144
6242
  className: clsx_default(
6145
6243
  "group relative flex min-h-[120px] flex-col gap-xs bg-bg-primary p-md font-body",
6146
- muted && "bg-bg-secondary",
6244
+ disabled && "bg-bg-secondary",
6147
6245
  className
6148
6246
  ),
6149
6247
  children: [
@@ -6151,12 +6249,31 @@ function CalendarCell({
6151
6249
  "span",
6152
6250
  {
6153
6251
  className: clsx_default(
6154
- "text-xs font-semibold",
6155
- current ? "text-text-brand-secondary" : muted ? "text-text-quaternary" : "text-text-secondary"
6252
+ "flex size-6 items-center justify-center text-xs font-semibold",
6253
+ today ? "rounded-full bg-bg-brand-solid text-white" : isSelected ? "rounded-full bg-bg-secondary text-text-secondary" : disabled ? "text-text-quaternary" : "text-text-secondary"
6156
6254
  ),
6157
6255
  children: date2
6158
6256
  }
6159
6257
  ),
6258
+ events && events.length > 0 ? /* @__PURE__ */ jsxRuntime.jsx(
6259
+ "div",
6260
+ {
6261
+ className: clsx_default(
6262
+ breakpoint === "mobile" ? "flex flex-row flex-wrap gap-xxs" : "flex flex-col gap-xs"
6263
+ ),
6264
+ children: events.map((ev, i) => /* @__PURE__ */ jsxRuntime.jsx(
6265
+ CalendarEvent,
6266
+ {
6267
+ title: ev.title,
6268
+ time: ev.time,
6269
+ color: ev.color,
6270
+ filled: true,
6271
+ breakpoint
6272
+ },
6273
+ i
6274
+ ))
6275
+ }
6276
+ ) : null,
6160
6277
  children ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-col gap-xs", children }) : null,
6161
6278
  moreCount && moreCount > 0 ? /* @__PURE__ */ jsxRuntime.jsxs("span", { className: "text-xs font-medium text-text-tertiary", children: [
6162
6279
  moreCount,
@@ -6176,6 +6293,13 @@ function CalendarCell({
6176
6293
  }
6177
6294
  );
6178
6295
  }
6296
+ var heightClasses = {
6297
+ empty: "h-[48px]",
6298
+ "30min": "h-[48px]",
6299
+ "60min": "h-[96px]",
6300
+ "90min": "h-[144px]",
6301
+ "120min": "h-[192px]"
6302
+ };
6179
6303
  function PlusIcon3() {
6180
6304
  return /* @__PURE__ */ jsxRuntime.jsx("svg", { viewBox: "0 0 20 20", fill: "none", className: "size-4", "aria-hidden": true, children: /* @__PURE__ */ jsxRuntime.jsx(
6181
6305
  "path",
@@ -6189,6 +6313,8 @@ function PlusIcon3() {
6189
6313
  ) });
6190
6314
  }
6191
6315
  function CalendarCellDayWeekView({
6316
+ type,
6317
+ state = "default",
6192
6318
  children,
6193
6319
  onAdd,
6194
6320
  muted = false,
@@ -6198,8 +6324,9 @@ function CalendarCellDayWeekView({
6198
6324
  "div",
6199
6325
  {
6200
6326
  className: clsx_default(
6201
- "group relative min-h-[64px] border-b border-border-secondary p-xs font-body",
6202
- muted ? "bg-bg-secondary" : "bg-bg-primary",
6327
+ "group relative border-b border-border-secondary p-xs font-body transition-colors hover:bg-bg-secondary",
6328
+ type ? heightClasses[type] : "min-h-[64px]",
6329
+ muted ? "bg-bg-secondary" : state === "hover" ? "bg-bg-secondary" : "bg-bg-primary",
6203
6330
  className
6204
6331
  ),
6205
6332
  children: [
@@ -6221,16 +6348,20 @@ function CalendarCellDayWeekView({
6221
6348
  function CalendarColumnHeader({
6222
6349
  weekday,
6223
6350
  date: date2,
6351
+ type,
6224
6352
  current = false,
6225
6353
  orientation = "vertical",
6354
+ breakpoint = "desktop",
6226
6355
  className
6227
6356
  }) {
6357
+ const state = type ?? (current ? "selected" : "default");
6228
6358
  return /* @__PURE__ */ jsxRuntime.jsxs(
6229
6359
  "div",
6230
6360
  {
6231
6361
  className: clsx_default(
6232
6362
  "flex items-center justify-center gap-md py-md font-body",
6233
6363
  orientation === "vertical" && "flex-col gap-xs",
6364
+ breakpoint === "desktop" && "w-[160px]",
6234
6365
  className
6235
6366
  ),
6236
6367
  children: [
@@ -6240,9 +6371,11 @@ function CalendarColumnHeader({
6240
6371
  {
6241
6372
  className: clsx_default(
6242
6373
  "flex items-center justify-center text-xs font-semibold",
6243
- current ? "size-6 rounded-full bg-bg-brand-solid text-white" : "text-text-secondary"
6374
+ state === "selected" && "size-6 rounded-full bg-bg-brand-solid text-white",
6375
+ state === "today" && "border-b-2 border-border-brand pb-xxs text-text-brand-secondary",
6376
+ state === "default" && "text-text-secondary"
6244
6377
  ),
6245
- "aria-current": current ? "date" : void 0,
6378
+ "aria-current": state !== "default" ? "date" : void 0,
6246
6379
  children: date2
6247
6380
  }
6248
6381
  )
@@ -6265,51 +6398,6 @@ function CalendarDateIcon({ month, day, className }) {
6265
6398
  }
6266
6399
  );
6267
6400
  }
6268
- var dotClasses = {
6269
- neutral: "bg-utility-neutral-500",
6270
- brand: "bg-utility-brand-500",
6271
- emerald: "bg-utility-emerald-500",
6272
- blue: "bg-utility-blue-500",
6273
- indigo: "bg-utility-indigo-500",
6274
- purple: "bg-utility-purple-500",
6275
- pink: "bg-utility-pink-500",
6276
- orange: "bg-utility-orange-500",
6277
- amber: "bg-utility-amber-500"
6278
- };
6279
- var filledClasses = {
6280
- neutral: "bg-utility-neutral-100 text-utility-neutral-700",
6281
- brand: "bg-utility-brand-100 text-utility-brand-700",
6282
- emerald: "bg-utility-emerald-100 text-utility-emerald-700",
6283
- blue: "bg-utility-blue-100 text-utility-blue-700",
6284
- indigo: "bg-utility-indigo-100 text-utility-indigo-700",
6285
- purple: "bg-utility-purple-100 text-utility-purple-700",
6286
- pink: "bg-utility-pink-100 text-utility-pink-700",
6287
- orange: "bg-utility-orange-100 text-utility-orange-700",
6288
- amber: "bg-utility-amber-100 text-utility-amber-700"
6289
- };
6290
- function CalendarEvent({
6291
- title,
6292
- time: time2,
6293
- color: color2 = "neutral",
6294
- filled = false,
6295
- className
6296
- }) {
6297
- return /* @__PURE__ */ jsxRuntime.jsxs(
6298
- "div",
6299
- {
6300
- className: clsx_default(
6301
- "flex w-full items-center gap-md rounded-sm px-md py-xs font-body text-xs",
6302
- filled ? filledClasses[color2] : "border border-border-secondary bg-bg-primary text-text-secondary",
6303
- className
6304
- ),
6305
- children: [
6306
- /* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx_default("size-2 shrink-0 rounded-full", dotClasses[color2]), "aria-hidden": true }),
6307
- /* @__PURE__ */ jsxRuntime.jsx("span", { className: "truncate font-semibold", children: title }),
6308
- time2 ? /* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx_default("ml-auto shrink-0 font-normal", !filled && "text-text-tertiary"), children: time2 }) : null
6309
- ]
6310
- }
6311
- );
6312
- }
6313
6401
  var accentClasses = {
6314
6402
  neutral: "border-l-utility-neutral-500",
6315
6403
  brand: "border-l-utility-brand-500",
@@ -6376,11 +6464,13 @@ function CalendarEventDayWeekView({
6376
6464
  function CalendarHeader({
6377
6465
  title,
6378
6466
  range: range6,
6467
+ supportingText,
6379
6468
  badge,
6380
6469
  dateIcon,
6381
6470
  actions,
6382
6471
  className
6383
6472
  }) {
6473
+ const subtitle = range6 ?? supportingText;
6384
6474
  return /* @__PURE__ */ jsxRuntime.jsxs(
6385
6475
  "div",
6386
6476
  {
@@ -6396,7 +6486,7 @@ function CalendarHeader({
6396
6486
  /* @__PURE__ */ jsxRuntime.jsx("h2", { className: "text-lg font-bold text-text-primary", children: title }),
6397
6487
  badge
6398
6488
  ] }),
6399
- range6 ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-sm text-text-tertiary", children: range6 }) : null
6489
+ subtitle ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-sm text-text-tertiary", children: subtitle }) : null
6400
6490
  ] })
6401
6491
  ] }),
6402
6492
  actions ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center gap-md", children: actions }) : null
@@ -6404,7 +6494,7 @@ function CalendarHeader({
6404
6494
  }
6405
6495
  );
6406
6496
  }
6407
- function CalendarRowLabel({ label, className }) {
6497
+ function CalendarRowLabel({ label, time: time2, className }) {
6408
6498
  return /* @__PURE__ */ jsxRuntime.jsx(
6409
6499
  "div",
6410
6500
  {
@@ -6412,7 +6502,7 @@ function CalendarRowLabel({ label, className }) {
6412
6502
  "pr-md text-right text-xs font-medium text-text-quaternary font-body",
6413
6503
  className
6414
6504
  ),
6415
- children: label
6505
+ children: time2 ?? label
6416
6506
  }
6417
6507
  );
6418
6508
  }
@@ -6422,15 +6512,17 @@ var Label = ({ time: time2 }) => /* @__PURE__ */ jsxRuntime.jsx("span", { classN
6422
6512
  function CalendarTimemarker({
6423
6513
  time: time2,
6424
6514
  align = "left",
6515
+ breakpoint = "desktop",
6425
6516
  className
6426
6517
  }) {
6518
+ const showLabel = breakpoint === "desktop";
6427
6519
  return /* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx_default("flex w-full items-center gap-xs font-body", className), children: align === "center" ? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
6428
6520
  /* @__PURE__ */ jsxRuntime.jsx(Dot, {}),
6429
6521
  /* @__PURE__ */ jsxRuntime.jsx(Line, {}),
6430
- /* @__PURE__ */ jsxRuntime.jsx(Label, { time: time2 }),
6522
+ showLabel ? /* @__PURE__ */ jsxRuntime.jsx(Label, { time: time2 }) : null,
6431
6523
  /* @__PURE__ */ jsxRuntime.jsx(Line, {})
6432
6524
  ] }) : /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
6433
- /* @__PURE__ */ jsxRuntime.jsx(Label, { time: time2 }),
6525
+ showLabel ? /* @__PURE__ */ jsxRuntime.jsx(Label, { time: time2 }) : null,
6434
6526
  /* @__PURE__ */ jsxRuntime.jsx(Dot, {}),
6435
6527
  /* @__PURE__ */ jsxRuntime.jsx(Line, {})
6436
6528
  ] }) });
@@ -6455,10 +6547,19 @@ function Chevron2() {
6455
6547
  function CalendarViewDropdown({
6456
6548
  value,
6457
6549
  onChange,
6550
+ onSelect,
6551
+ open: openProp,
6552
+ onOpenChange,
6458
6553
  options = DEFAULT_OPTIONS,
6459
6554
  className
6460
6555
  }) {
6461
- const [open, setOpen] = React28.useState(false);
6556
+ const [internalOpen, setInternalOpen] = React28.useState(false);
6557
+ const isControlled = openProp !== void 0;
6558
+ const open = isControlled ? openProp : internalOpen;
6559
+ const setOpen = (next) => {
6560
+ if (!isControlled) setInternalOpen(next);
6561
+ onOpenChange?.(next);
6562
+ };
6462
6563
  const selected = options.find((o) => o.value === value) ?? options[0];
6463
6564
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx_default("relative inline-block font-body", className), children: [
6464
6565
  /* @__PURE__ */ jsxRuntime.jsxs(
@@ -6467,7 +6568,7 @@ function CalendarViewDropdown({
6467
6568
  type: "button",
6468
6569
  "aria-haspopup": "listbox",
6469
6570
  "aria-expanded": open,
6470
- onClick: () => setOpen((v) => !v),
6571
+ onClick: () => setOpen(!open),
6471
6572
  className: "inline-flex items-center gap-md rounded-md border border-border-primary bg-bg-primary px-lg py-md text-sm font-semibold text-text-secondary shadow-skeuomorphic transition-colors hover:bg-bg-primary-hover focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-border-brand focus-visible:ring-offset-2 focus-visible:ring-offset-bg-primary",
6472
6573
  children: [
6473
6574
  selected.label,
@@ -6488,6 +6589,7 @@ function CalendarViewDropdown({
6488
6589
  type: "button",
6489
6590
  onClick: () => {
6490
6591
  onChange?.(opt.value);
6592
+ onSelect?.(opt.value);
6491
6593
  setOpen(false);
6492
6594
  },
6493
6595
  className: "flex w-full items-center gap-md rounded-sm px-md py-xs text-sm font-medium text-text-secondary transition-colors hover:bg-bg-primary-hover",
package/dist/index.d.cts CHANGED
@@ -313,25 +313,73 @@ interface ButtonUtilityProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement
313
313
  }
314
314
  declare function ButtonUtility({ icon, label, size, variant, tooltip, className, ...rest }: ButtonUtilityProps): react.JSX.Element;
315
315
 
316
+ type CalendarEventColor = "neutral" | "brand" | "emerald" | "blue" | "indigo" | "purple" | "pink" | "orange" | "amber";
317
+ type CalendarEventBreakpoint = "desktop" | "mobile";
318
+ type CalendarEventState = "default" | "hover";
319
+ interface CalendarEventProps {
320
+ /** Event title. */
321
+ title: string;
322
+ /** Optional time label (e.g. "9:00 AM"). */
323
+ time?: string;
324
+ color?: CalendarEventColor;
325
+ /** Filled colour-fill style vs the subtle white style. */
326
+ filled?: boolean;
327
+ /** Desktop renders the full chip; mobile collapses to an 8px dot. */
328
+ breakpoint?: CalendarEventBreakpoint;
329
+ /** `hover` darkens the fill one shade (filled chips only). */
330
+ state?: CalendarEventState;
331
+ className?: string;
332
+ }
333
+ declare function CalendarEvent({ title, time, color, filled, breakpoint, state, className, }: CalendarEventProps): react.JSX.Element;
334
+
335
+ type CalendarCellBreakpoint = "desktop" | "mobile";
336
+ interface CalendarCellEvent {
337
+ title: string;
338
+ time?: string;
339
+ color?: CalendarEventColor;
340
+ }
316
341
  interface CalendarCellProps {
317
342
  /** Day-of-month number. */
318
343
  date: string | number;
344
+ /**
345
+ * Declarative events for this day — rendered as filled `CalendarEvent`
346
+ * chips (collapsed to dots on mobile). Use `children` instead for full
347
+ * control over each chip.
348
+ */
349
+ events?: CalendarCellEvent[];
319
350
  /** Event chips for this day — typically `CalendarEvent` instances. */
320
351
  children?: ReactNode;
321
352
  /** "+N more" overflow count shown beneath the events. */
322
353
  moreCount?: number;
354
+ /** Today — date number in a brand-solid circle. */
355
+ isToday?: boolean;
356
+ /** Selected day — date number in a secondary-fill circle. */
357
+ isSelected?: boolean;
323
358
  /** Other-month / disabled styling. */
324
- muted?: boolean;
325
- /** Marks today (date number in brand). */
359
+ isDisabled?: boolean;
360
+ /** Legacy alias for `isToday`. */
326
361
  current?: boolean;
362
+ /** Legacy alias for `isDisabled`. */
363
+ muted?: boolean;
364
+ /** Desktop renders full chips; mobile collapses chips to dots. */
365
+ breakpoint?: CalendarCellBreakpoint;
327
366
  /** Renders a hover "+" add button bottom-right. */
328
367
  onAdd?: () => void;
329
368
  className?: string;
330
369
  }
331
370
  /** A single day cell in the month grid. Composes CalendarEvent chips. */
332
- declare function CalendarCell({ date, children, moreCount, muted, current, onAdd, className, }: CalendarCellProps): react.JSX.Element;
371
+ declare function CalendarCell({ date, events, children, moreCount, isToday, isSelected, isDisabled, current, muted, breakpoint, onAdd, className, }: CalendarCellProps): react.JSX.Element;
333
372
 
373
+ type CalendarTimeslotType = "empty" | "30min" | "60min" | "90min" | "120min";
374
+ type CalendarTimeslotState = "default" | "hover";
334
375
  interface CalendarCellDayWeekViewProps {
376
+ /**
377
+ * Slot duration — drives the row height (empty/30min → 48px, 60min → 96px,
378
+ * 90min → 144px, 120min → 192px). Omit to keep the auto min-height.
379
+ */
380
+ type?: CalendarTimeslotType;
381
+ /** `hover` tints the slot (also rendered via CSS :hover). */
382
+ state?: CalendarTimeslotState;
335
383
  /** Event block(s) occupying the slot — typically CalendarEventDayWeekView. */
336
384
  children?: ReactNode;
337
385
  /** Renders a hover "+" add button bottom-right. */
@@ -341,20 +389,29 @@ interface CalendarCellDayWeekViewProps {
341
389
  className?: string;
342
390
  }
343
391
  /** A time-slot cell in day/week view. Holds CalendarEventDayWeekView blocks. */
344
- declare function CalendarCellDayWeekView({ children, onAdd, muted, className, }: CalendarCellDayWeekViewProps): react.JSX.Element;
392
+ declare function CalendarCellDayWeekView({ type, state, children, onAdd, muted, className, }: CalendarCellDayWeekViewProps): react.JSX.Element;
345
393
 
346
394
  type CalendarColumnHeaderOrientation = "horizontal" | "vertical";
395
+ type CalendarColumnHeaderType = "default" | "selected" | "today";
396
+ type CalendarBreakpoint = "desktop" | "mobile";
347
397
  interface CalendarColumnHeaderProps {
348
398
  /** Weekday label (e.g. "Mon"). */
349
399
  weekday: string;
350
400
  /** Date number. */
351
401
  date: string | number;
352
- /** Active day — renders the date in a brand-solid circle. */
402
+ /**
403
+ * Cell state. `selected` → brand-solid circle behind the date; `today` →
404
+ * brand text + brand underline. Takes precedence over `current` when set.
405
+ */
406
+ type?: CalendarColumnHeaderType;
407
+ /** Legacy boolean — equivalent to `type="selected"`. Kept for back-compat. */
353
408
  current?: boolean;
354
409
  orientation?: CalendarColumnHeaderOrientation;
410
+ /** Desktop fixes the column to 160px; mobile lets it size to content. */
411
+ breakpoint?: CalendarBreakpoint;
355
412
  className?: string;
356
413
  }
357
- declare function CalendarColumnHeader({ weekday, date, current, orientation, className, }: CalendarColumnHeaderProps): react.JSX.Element;
414
+ declare function CalendarColumnHeader({ weekday, date, type, current, orientation, breakpoint, className, }: CalendarColumnHeaderProps): react.JSX.Element;
358
415
 
359
416
  interface CalendarDateIconProps {
360
417
  /** Short month label (e.g. "JAN"). Rendered uppercase. */
@@ -365,19 +422,6 @@ interface CalendarDateIconProps {
365
422
  }
366
423
  declare function CalendarDateIcon({ month, day, className }: CalendarDateIconProps): react.JSX.Element;
367
424
 
368
- type CalendarEventColor = "neutral" | "brand" | "emerald" | "blue" | "indigo" | "purple" | "pink" | "orange" | "amber";
369
- interface CalendarEventProps {
370
- /** Event title. */
371
- title: string;
372
- /** Optional time label (e.g. "9:00 AM"). */
373
- time?: string;
374
- color?: CalendarEventColor;
375
- /** Filled colour-fill style vs the subtle white style. */
376
- filled?: boolean;
377
- className?: string;
378
- }
379
- declare function CalendarEvent({ title, time, color, filled, className, }: CalendarEventProps): react.JSX.Element;
380
-
381
425
  interface CalendarEventDayWeekViewProps {
382
426
  title: string;
383
427
  time?: string;
@@ -393,6 +437,8 @@ interface CalendarHeaderProps {
393
437
  title: string;
394
438
  /** Date range subtitle, e.g. "Jan 1, 2027 – Jan 31, 2027". */
395
439
  range?: string;
440
+ /** Alias for `range` — Batch-36 prop name. `range` wins if both set. */
441
+ supportingText?: string;
396
442
  /** Badge beside the title (e.g. a PillBadge "Week 1"). */
397
443
  badge?: ReactNode;
398
444
  /** Leading date chip — typically a CalendarDateIcon. */
@@ -402,25 +448,30 @@ interface CalendarHeaderProps {
402
448
  className?: string;
403
449
  }
404
450
  /** Top bar of the calendar composite. A layout shell — drop controls into `actions`. */
405
- declare function CalendarHeader({ title, range, badge, dateIcon, actions, className, }: CalendarHeaderProps): react.JSX.Element;
451
+ declare function CalendarHeader({ title, range, supportingText, badge, dateIcon, actions, className, }: CalendarHeaderProps): react.JSX.Element;
406
452
 
407
453
  interface CalendarRowLabelProps {
408
454
  /** Time label for the row gutter (e.g. "9 AM"). */
409
- label: string;
455
+ label?: string;
456
+ /** Alias for `label` — Batch-36 prop name. One of the two is required. */
457
+ time?: string;
410
458
  className?: string;
411
459
  }
412
460
  /** Left-gutter time label aligned to the top of a day/week-view row. */
413
- declare function CalendarRowLabel({ label, className }: CalendarRowLabelProps): react.JSX.Element;
461
+ declare function CalendarRowLabel({ label, time, className }: CalendarRowLabelProps): react.JSX.Element;
414
462
 
415
463
  type CalendarTimemarkerAlign = "left" | "center";
464
+ type CalendarTimemarkerBreakpoint = "desktop" | "mobile";
416
465
  interface CalendarTimemarkerProps {
417
466
  /** Time label (e.g. "2:20 PM"). */
418
467
  time: string;
419
468
  /** Label position: leading, or centered between two line halves. */
420
469
  align?: CalendarTimemarkerAlign;
470
+ /** Desktop shows the time label; mobile collapses to dot + line only. */
471
+ breakpoint?: CalendarTimemarkerBreakpoint;
421
472
  className?: string;
422
473
  }
423
- declare function CalendarTimemarker({ time, align, className, }: CalendarTimemarkerProps): react.JSX.Element;
474
+ declare function CalendarTimemarker({ time, align, breakpoint, className, }: CalendarTimemarkerProps): react.JSX.Element;
424
475
 
425
476
  type CalendarView = "day" | "week" | "month";
426
477
  interface CalendarViewOption {
@@ -431,10 +482,16 @@ interface CalendarViewOption {
431
482
  interface CalendarViewDropdownProps {
432
483
  value: CalendarView;
433
484
  onChange?: (value: CalendarView) => void;
485
+ /** Alias for `onChange` — Batch-36 prop name. Both fire on selection. */
486
+ onSelect?: (value: CalendarView) => void;
487
+ /** Controlled open state. Omit to let the component manage its own. */
488
+ open?: boolean;
489
+ /** Fires whenever the menu wants to open/close (controlled or not). */
490
+ onOpenChange?: (open: boolean) => void;
434
491
  options?: CalendarViewOption[];
435
492
  className?: string;
436
493
  }
437
- declare function CalendarViewDropdown({ value, onChange, options, className, }: CalendarViewDropdownProps): react.JSX.Element;
494
+ declare function CalendarViewDropdown({ value, onChange, onSelect, open: openProp, onOpenChange, options, className, }: CalendarViewDropdownProps): react.JSX.Element;
438
495
 
439
496
  interface CardHeaderProps {
440
497
  /** Card section title. */
@@ -2789,4 +2846,4 @@ declare namespace index {
2789
2846
  export { index_BoxIllustration as BoxIllustration, index_CloudIllustration as CloudIllustration, index_CreditCardIllustration as CreditCardIllustration, index_DocumentsIllustration as DocumentsIllustration };
2790
2847
  }
2791
2848
 
2792
- export { ActivityFeed, type ActivityFeedDivider, type ActivityFeedProps, ActivityGauge, type ActivityGaugeLegend, type ActivityGaugeProps, type ActivityGaugeSeries, type ActivityGaugeSize, AdvancedFilterBar, type AdvancedFilterBarProps, Alert, type AlertAction, type AlertColor, type AlertProps, type AlertSize, Avatar, AvatarAddButton, type AvatarAddButtonProps, type AvatarAddButtonSize, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, type AvatarGroupSize, AvatarLabelGroup, type AvatarLabelGroupProps, type AvatarLabelGroupSize, AvatarProfilePhoto, type AvatarProfilePhotoProps, type AvatarProfilePhotoSize, type AvatarProps, type AvatarSize, BadgeCloseX, type BadgeCloseXProps, type BadgeCloseXShape, type BadgeColor, type BadgeCommonProps, BadgeGroup, type BadgeGroupBadgePosition, type BadgeGroupProps, type BadgeGroupSize, type BadgeGroupType, type BadgeSize, BreadcrumbButtonBase, type BreadcrumbButtonBaseProps, type BreadcrumbButtonType, Breadcrumbs, type BreadcrumbsDivider, type BreadcrumbsProps, Button, ButtonCloseX, type ButtonCloseXProps, type ButtonCloseXSize, ButtonDestructive, type ButtonDestructiveHierarchy, type ButtonDestructiveProps, type ButtonDestructiveSize, ButtonGroup, type ButtonGroupProps, ButtonGroupSegment, type ButtonGroupSegmentProps, type ButtonGroupSegmentSize, type ButtonProps, ButtonUtility, type ButtonUtilityProps, type ButtonUtilitySize, type ButtonUtilityVariant, CalendarCell, CalendarCellDayWeekView, type CalendarCellDayWeekViewProps, type CalendarCellProps, CalendarColumnHeader, type CalendarColumnHeaderOrientation, type CalendarColumnHeaderProps, CalendarDateIcon, type CalendarDateIconProps, CalendarEvent, type CalendarEventColor, CalendarEventDayWeekView, type CalendarEventDayWeekViewProps, type CalendarEventProps, CalendarHeader, type CalendarHeaderProps, CalendarRowLabel, type CalendarRowLabelProps, CalendarTimemarker, type CalendarTimemarkerAlign, type CalendarTimemarkerProps, type CalendarView, CalendarViewDropdown, type CalendarViewDropdownProps, type CalendarViewOption, CardHeader, type CardHeaderProps, CarouselArrow, type CarouselArrowDirection, type CarouselArrowProps, type CarouselArrowSize, CarouselImage, type CarouselImageProps, Change, type ChangeProps, type ChangeTrend, type ChangeType, ChartLegend, type ChartLegendItem, type ChartLegendPosition, type ChartLegendProps, ChartMarker, type ChartMarkerLine, type ChartMarkerProps, ChartMini, type ChartMiniDatum, type ChartMiniProps, type ChartMiniTrend, type ChartSeries, type ChartStyle, ChartTooltip, type ChartTooltipPayloadItem, type ChartTooltipProps, type CheckControlSize, Checkbox, type CheckboxProps, CodeSnippet, type CodeSnippetProps, CodeSnippetTabs, type CodeSnippetTabsProps, ColorBadge, type ColorBadgeProps, CommandBar, CommandBarFooter, type CommandBarFooterHint, type CommandBarFooterProps, CommandBarMenuSection, type CommandBarMenuSectionProps, CommandBarNavigationIcon, type CommandBarNavigationIconProps, type CommandBarProps, CommandDropdownMenuItem, type CommandDropdownMenuItemProps, CommandInput, type CommandInputProps, CommandShortcut, type CommandShortcutProps, ContentDivider, type ContentDividerProps, type ContentDividerStyle, type ContentDividerType, ContentFeatureText, type ContentFeatureTextProps, type ContentFeatureTextSize, ContentHeading, type ContentHeadingProps, type ContentHeadingSize, ContentParagraph, type ContentParagraphProps, type ContentParagraphSize, ContentQuote, type ContentQuoteAlign, type ContentQuoteProps, type ContentQuoteSize, ContentRule, type ContentRuleProps, type ContentRuleSize, ContextMenu, type ContextMenuProps, type ContextMenuState, DatePickerCell, type DatePickerCellProps, type DatePickerCellType, DatePickerListItem, type DatePickerListItemProps, DatePickerMenu, type DatePickerMenuProps, DropdownAccountListItem, type DropdownAccountListItemProps, DropdownMenuFooter, type DropdownMenuFooterProps, type DropdownMenuFooterType, DropdownMenuHeader, type DropdownMenuHeaderProps, type DropdownMenuHeaderType, DropdownMenuItemInsetIcon, type DropdownMenuItemInsetIconProps, type DropdownMenuItemInsetIconType, DropdownMenuListItem, type DropdownMenuListItemProps, EmptyState, type EmptyStateProps, type EmptyStateSize, FeaturedIcon, type FeaturedIconColor, type FeaturedIconProps, type FeaturedIconSize, type FeaturedIconTheme, FeedItemBase, type FeedItemBaseProps, type FeedItemSize, FileUpload, FileUploadBase, type FileUploadBaseProps, FileUploadItemBase, type FileUploadItemBaseProps, type FileUploadItemIconType, type FileUploadItemStatus, type FileUploadItemType, type FileUploadProps, FilterBar, type FilterBarProps, FilterTabs, type FilterTabsProps, FiltersDropdownMenu, type FiltersDropdownMenuProps, FiltersSlideoutMenu, type FiltersSlideoutMenuProps, type HeaderNavItem, HeaderNavigation, type HeaderNavigationProps, type HeaderNavigationType, HelpIcon, type HelpIconProps, InputField, type InputFieldProps, type InputFieldSize, type InputFieldType, LeadingInputField, type LeadingInputFieldProps, LineAndBarChart, type LineAndBarChartProps, LinkMessage, type LinkMessageProps, type LinkMessageType, LoadingIndicator, type LoadingIndicatorProps, type LoadingIndicatorSize, type LoadingIndicatorStyle, MediaMessage, type MediaMessageProps, type MediaMessageType, MegaInputFieldBase, type MegaInputFieldBaseProps, type MegaInputFieldBaseSize, Message, MessageAction, MessageActionButton, type MessageActionButtonProps, MessageActionPanel, type MessageActionPanelProps, type MessageActionProps, type MessageActionType, type MessageBubbleTone, type MessageProps, MessageReaction, type MessageReactionProps, type MessageStatus, MessageStatusIcon, type MessageStatusIconProps, type MessageType, MetricItem, type MetricItemProps, Modal, ModalActions, type ModalActionsProps, type ModalActionsType, ModalHeader, type ModalHeaderProps, type ModalHeaderType, type ModalProps, type ModalSize, ModernBadge, type ModernBadgeProps, MultiSelect, type MultiSelectOption, type MultiSelectProps, NavAccountCard, type NavAccountCardBreakpoint, NavAccountCardMenuItem, type NavAccountCardMenuItemProps, type NavAccountCardMenuItemType, type NavAccountCardProps, type NavAccountCardVariant, NavButton, type NavButtonProps, NavFeaturedCard, type NavFeaturedCardProps, NavItemBase, type NavItemBaseProps, NavItemDropdownBase, type NavItemDropdownBaseProps, NavMenuButton, type NavMenuButtonProps, Notification, type NotificationProps, type NotificationVariant, NumberInput, type NumberInputLayout, type NumberInputProps, PageHeader, type PageHeaderProps, type PageHeaderStyle, Pagination, PaginationButtonGroupBase, type PaginationButtonGroupBaseProps, type PaginationButtonGroupType, PaginationCards, type PaginationCardsProps, type PaginationCardsVariant, PaginationDotGroup, type PaginationDotGroupProps, PaginationDotIndicator, type PaginationDotIndicatorProps, type PaginationDotSize, type PaginationDotVariant, PaginationNumberBase, type PaginationNumberBaseProps, type PaginationNumberShape, type PaginationProps, type PaginationType, PieChart, type PieChartProps, type PieChartSize, type PieSlice, PillBadge, type PillBadgeProps, ProgressBar, type ProgressBarLabel, type ProgressBarProps, ProgressCircle, type ProgressCircleProps, type ProgressCircleShape, type ProgressCircleSize, RadarChart, type RadarChartProps, type RadarLegendPosition, Radio, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupItemSize, type RadioGroupItemType, type RadioGroupProps, type RadioProps, SectionFooter, type SectionFooterProps, type SectionFooterType, SectionHeader, type SectionHeaderProps, SectionLabel, type SectionLabelProps, type SectionLabelSize, Select, SelectMenuItem, type SelectMenuItemProps, type SelectMenuItemSize, type SelectProps, type SelectSize, type SelectType, SidebarNavigation, type SidebarNavigationProps, type SidebarNavigationType, SlideOutMenuHeader, type SlideOutMenuHeaderProps, SlideoutMenu, type SlideoutMenuProps, type SlideoutMenuSide, type SlideoutMenuSize, Slider, type SliderLabel, type SliderProps, type SocialBrand, SocialButton, type SocialButtonProps, type SocialButtonSize, type SocialButtonTheme, StatusIcon, type StatusIconProps, type StatusIconType, StepBase, type StepBaseProps, StepIconBase, type StepIconBaseProps, type StepIconSize, type StepIconType, type StepOrientation, type StepStatus, TabButtonBase, type TabButtonBaseProps, type TabButtonSize, type TabButtonType, type TabItem, TableCell, type TableCellProps, type TableCellSize, TableHeaderCell, type TableHeaderCellProps, type TableHeaderCellSize, TableHeaderLabel, type TableHeaderLabelArrow, type TableHeaderLabelProps, Tabs, type TabsOrientation, type TabsProps, Tag, type TagProps, type TagSize, TagsInputField, type TagsInputFieldProps, type TagsInputVariant, TextEditorToolbar, TextEditorToolbarDivider, type TextEditorToolbarProps, TextEditorTooltip, type TextEditorTooltipProps, TextareaInputField, type TextareaInputFieldProps, Toggle, type ToggleProps, type ToggleSize, type ToggleType, Tooltip, type TooltipArrow, type TooltipProps, TrailingInputField, type TrailingInputFieldProps, type TreeNode, TreeView, TreeViewConnector, type TreeViewConnectorProps, type TreeViewConnectorSize, type TreeViewConnectorType, TreeViewItem, type TreeViewItemProps, type TreeViewItemSize, type TreeViewProps, type UseContextMenuReturn, type VerificationCodeDigits, VerificationCodeInput, type VerificationCodeInputProps, type VerificationCodeSize, index as illustrations, useContextMenu };
2849
+ export { ActivityFeed, type ActivityFeedDivider, type ActivityFeedProps, ActivityGauge, type ActivityGaugeLegend, type ActivityGaugeProps, type ActivityGaugeSeries, type ActivityGaugeSize, AdvancedFilterBar, type AdvancedFilterBarProps, Alert, type AlertAction, type AlertColor, type AlertProps, type AlertSize, Avatar, AvatarAddButton, type AvatarAddButtonProps, type AvatarAddButtonSize, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, type AvatarGroupSize, AvatarLabelGroup, type AvatarLabelGroupProps, type AvatarLabelGroupSize, AvatarProfilePhoto, type AvatarProfilePhotoProps, type AvatarProfilePhotoSize, type AvatarProps, type AvatarSize, BadgeCloseX, type BadgeCloseXProps, type BadgeCloseXShape, type BadgeColor, type BadgeCommonProps, BadgeGroup, type BadgeGroupBadgePosition, type BadgeGroupProps, type BadgeGroupSize, type BadgeGroupType, type BadgeSize, BreadcrumbButtonBase, type BreadcrumbButtonBaseProps, type BreadcrumbButtonType, Breadcrumbs, type BreadcrumbsDivider, type BreadcrumbsProps, Button, ButtonCloseX, type ButtonCloseXProps, type ButtonCloseXSize, ButtonDestructive, type ButtonDestructiveHierarchy, type ButtonDestructiveProps, type ButtonDestructiveSize, ButtonGroup, type ButtonGroupProps, ButtonGroupSegment, type ButtonGroupSegmentProps, type ButtonGroupSegmentSize, type ButtonProps, ButtonUtility, type ButtonUtilityProps, type ButtonUtilitySize, type ButtonUtilityVariant, type CalendarBreakpoint, CalendarCell, type CalendarCellBreakpoint, CalendarCellDayWeekView, type CalendarCellDayWeekViewProps, type CalendarCellEvent, type CalendarCellProps, CalendarColumnHeader, type CalendarColumnHeaderOrientation, type CalendarColumnHeaderProps, type CalendarColumnHeaderType, CalendarDateIcon, type CalendarDateIconProps, CalendarEvent, type CalendarEventBreakpoint, type CalendarEventColor, CalendarEventDayWeekView, type CalendarEventDayWeekViewProps, type CalendarEventProps, type CalendarEventState, CalendarHeader, type CalendarHeaderProps, CalendarRowLabel, type CalendarRowLabelProps, CalendarTimemarker, type CalendarTimemarkerAlign, type CalendarTimemarkerBreakpoint, type CalendarTimemarkerProps, type CalendarTimeslotState, type CalendarTimeslotType, type CalendarView, CalendarViewDropdown, type CalendarViewDropdownProps, type CalendarViewOption, CardHeader, type CardHeaderProps, CarouselArrow, type CarouselArrowDirection, type CarouselArrowProps, type CarouselArrowSize, CarouselImage, type CarouselImageProps, Change, type ChangeProps, type ChangeTrend, type ChangeType, ChartLegend, type ChartLegendItem, type ChartLegendPosition, type ChartLegendProps, ChartMarker, type ChartMarkerLine, type ChartMarkerProps, ChartMini, type ChartMiniDatum, type ChartMiniProps, type ChartMiniTrend, type ChartSeries, type ChartStyle, ChartTooltip, type ChartTooltipPayloadItem, type ChartTooltipProps, type CheckControlSize, Checkbox, type CheckboxProps, CodeSnippet, type CodeSnippetProps, CodeSnippetTabs, type CodeSnippetTabsProps, ColorBadge, type ColorBadgeProps, CommandBar, CommandBarFooter, type CommandBarFooterHint, type CommandBarFooterProps, CommandBarMenuSection, type CommandBarMenuSectionProps, CommandBarNavigationIcon, type CommandBarNavigationIconProps, type CommandBarProps, CommandDropdownMenuItem, type CommandDropdownMenuItemProps, CommandInput, type CommandInputProps, CommandShortcut, type CommandShortcutProps, ContentDivider, type ContentDividerProps, type ContentDividerStyle, type ContentDividerType, ContentFeatureText, type ContentFeatureTextProps, type ContentFeatureTextSize, ContentHeading, type ContentHeadingProps, type ContentHeadingSize, ContentParagraph, type ContentParagraphProps, type ContentParagraphSize, ContentQuote, type ContentQuoteAlign, type ContentQuoteProps, type ContentQuoteSize, ContentRule, type ContentRuleProps, type ContentRuleSize, ContextMenu, type ContextMenuProps, type ContextMenuState, DatePickerCell, type DatePickerCellProps, type DatePickerCellType, DatePickerListItem, type DatePickerListItemProps, DatePickerMenu, type DatePickerMenuProps, DropdownAccountListItem, type DropdownAccountListItemProps, DropdownMenuFooter, type DropdownMenuFooterProps, type DropdownMenuFooterType, DropdownMenuHeader, type DropdownMenuHeaderProps, type DropdownMenuHeaderType, DropdownMenuItemInsetIcon, type DropdownMenuItemInsetIconProps, type DropdownMenuItemInsetIconType, DropdownMenuListItem, type DropdownMenuListItemProps, EmptyState, type EmptyStateProps, type EmptyStateSize, FeaturedIcon, type FeaturedIconColor, type FeaturedIconProps, type FeaturedIconSize, type FeaturedIconTheme, FeedItemBase, type FeedItemBaseProps, type FeedItemSize, FileUpload, FileUploadBase, type FileUploadBaseProps, FileUploadItemBase, type FileUploadItemBaseProps, type FileUploadItemIconType, type FileUploadItemStatus, type FileUploadItemType, type FileUploadProps, FilterBar, type FilterBarProps, FilterTabs, type FilterTabsProps, FiltersDropdownMenu, type FiltersDropdownMenuProps, FiltersSlideoutMenu, type FiltersSlideoutMenuProps, type HeaderNavItem, HeaderNavigation, type HeaderNavigationProps, type HeaderNavigationType, HelpIcon, type HelpIconProps, InputField, type InputFieldProps, type InputFieldSize, type InputFieldType, LeadingInputField, type LeadingInputFieldProps, LineAndBarChart, type LineAndBarChartProps, LinkMessage, type LinkMessageProps, type LinkMessageType, LoadingIndicator, type LoadingIndicatorProps, type LoadingIndicatorSize, type LoadingIndicatorStyle, MediaMessage, type MediaMessageProps, type MediaMessageType, MegaInputFieldBase, type MegaInputFieldBaseProps, type MegaInputFieldBaseSize, Message, MessageAction, MessageActionButton, type MessageActionButtonProps, MessageActionPanel, type MessageActionPanelProps, type MessageActionProps, type MessageActionType, type MessageBubbleTone, type MessageProps, MessageReaction, type MessageReactionProps, type MessageStatus, MessageStatusIcon, type MessageStatusIconProps, type MessageType, MetricItem, type MetricItemProps, Modal, ModalActions, type ModalActionsProps, type ModalActionsType, ModalHeader, type ModalHeaderProps, type ModalHeaderType, type ModalProps, type ModalSize, ModernBadge, type ModernBadgeProps, MultiSelect, type MultiSelectOption, type MultiSelectProps, NavAccountCard, type NavAccountCardBreakpoint, NavAccountCardMenuItem, type NavAccountCardMenuItemProps, type NavAccountCardMenuItemType, type NavAccountCardProps, type NavAccountCardVariant, NavButton, type NavButtonProps, NavFeaturedCard, type NavFeaturedCardProps, NavItemBase, type NavItemBaseProps, NavItemDropdownBase, type NavItemDropdownBaseProps, NavMenuButton, type NavMenuButtonProps, Notification, type NotificationProps, type NotificationVariant, NumberInput, type NumberInputLayout, type NumberInputProps, PageHeader, type PageHeaderProps, type PageHeaderStyle, Pagination, PaginationButtonGroupBase, type PaginationButtonGroupBaseProps, type PaginationButtonGroupType, PaginationCards, type PaginationCardsProps, type PaginationCardsVariant, PaginationDotGroup, type PaginationDotGroupProps, PaginationDotIndicator, type PaginationDotIndicatorProps, type PaginationDotSize, type PaginationDotVariant, PaginationNumberBase, type PaginationNumberBaseProps, type PaginationNumberShape, type PaginationProps, type PaginationType, PieChart, type PieChartProps, type PieChartSize, type PieSlice, PillBadge, type PillBadgeProps, ProgressBar, type ProgressBarLabel, type ProgressBarProps, ProgressCircle, type ProgressCircleProps, type ProgressCircleShape, type ProgressCircleSize, RadarChart, type RadarChartProps, type RadarLegendPosition, Radio, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupItemSize, type RadioGroupItemType, type RadioGroupProps, type RadioProps, SectionFooter, type SectionFooterProps, type SectionFooterType, SectionHeader, type SectionHeaderProps, SectionLabel, type SectionLabelProps, type SectionLabelSize, Select, SelectMenuItem, type SelectMenuItemProps, type SelectMenuItemSize, type SelectProps, type SelectSize, type SelectType, SidebarNavigation, type SidebarNavigationProps, type SidebarNavigationType, SlideOutMenuHeader, type SlideOutMenuHeaderProps, SlideoutMenu, type SlideoutMenuProps, type SlideoutMenuSide, type SlideoutMenuSize, Slider, type SliderLabel, type SliderProps, type SocialBrand, SocialButton, type SocialButtonProps, type SocialButtonSize, type SocialButtonTheme, StatusIcon, type StatusIconProps, type StatusIconType, StepBase, type StepBaseProps, StepIconBase, type StepIconBaseProps, type StepIconSize, type StepIconType, type StepOrientation, type StepStatus, TabButtonBase, type TabButtonBaseProps, type TabButtonSize, type TabButtonType, type TabItem, TableCell, type TableCellProps, type TableCellSize, TableHeaderCell, type TableHeaderCellProps, type TableHeaderCellSize, TableHeaderLabel, type TableHeaderLabelArrow, type TableHeaderLabelProps, Tabs, type TabsOrientation, type TabsProps, Tag, type TagProps, type TagSize, TagsInputField, type TagsInputFieldProps, type TagsInputVariant, TextEditorToolbar, TextEditorToolbarDivider, type TextEditorToolbarProps, TextEditorTooltip, type TextEditorTooltipProps, TextareaInputField, type TextareaInputFieldProps, Toggle, type ToggleProps, type ToggleSize, type ToggleType, Tooltip, type TooltipArrow, type TooltipProps, TrailingInputField, type TrailingInputFieldProps, type TreeNode, TreeView, TreeViewConnector, type TreeViewConnectorProps, type TreeViewConnectorSize, type TreeViewConnectorType, TreeViewItem, type TreeViewItemProps, type TreeViewItemSize, type TreeViewProps, type UseContextMenuReturn, type VerificationCodeDigits, VerificationCodeInput, type VerificationCodeInputProps, type VerificationCodeSize, index as illustrations, useContextMenu };