@pecb-ui/components 1.1.22 → 1.1.24

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/index.d.ts CHANGED
@@ -285,7 +285,7 @@ declare class PaginationComponent {
285
285
  }
286
286
 
287
287
  type TableSize = 'sm' | 'md' | 'lg';
288
- type TableVariant = 'default' | 'striped' | 'bordered';
288
+ type TableVariant = 'default' | 'plain' | 'striped' | 'bordered';
289
289
  /**
290
290
  * Defines built-in column types
291
291
  */
@@ -388,7 +388,11 @@ declare class TableComponent {
388
388
  */
389
389
  size: _angular_core.InputSignal<TableSize>;
390
390
  /**
391
- * Visual variant of the table
391
+ * Visual variant of the table.
392
+ * - `default`: divided rows with a subtle zebra tint on even rows
393
+ * - `plain`: divided rows on a flat white surface (no zebra)
394
+ * - `striped`: zebra rows
395
+ * - `bordered`: every cell outlined
392
396
  * @default 'default'
393
397
  */
394
398
  variant: _angular_core.InputSignal<TableVariant>;
@@ -2557,7 +2561,7 @@ type MetricsCardVariation = '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8';
2557
2561
  type MetricsCardType = 'data+cta' | 'data-only';
2558
2562
  type MetricsCardOrientation = 'left-aligned' | 'center';
2559
2563
  type MetricsCardBadgeStatus = 'success' | 'warning' | 'error' | 'info';
2560
- type MetricsCardSize = 'md' | 'lg';
2564
+ type MetricsCardSize = 'md' | 'lg' | 'xl';
2561
2565
  type MetricsCardIconPosition = 'start' | 'end';
2562
2566
  type MetricsCardIconBg = 'white' | 'gray' | 'pending' | 'success' | 'error' | 'info' | 'purple';
2563
2567
  declare class MetricsCardComponent {
@@ -2689,6 +2693,13 @@ declare class BadgeComponent {
2689
2693
  label: _angular_core.InputSignal<string>;
2690
2694
  /** Whether to show the label text (for variant='status') */
2691
2695
  showLabel: _angular_core.InputSignal<boolean>;
2696
+ /**
2697
+ * Optional hint for the dot-less pills (variant='soft' | 'solid' | 'inverse'):
2698
+ * renders a small info glyph inside the pill that shows this text in a tooltip.
2699
+ */
2700
+ hint: _angular_core.InputSignal<string>;
2701
+ /** Aria-label of the hint glyph (variant='soft' | 'solid' | 'inverse'); defaults to the hint text. */
2702
+ hintAriaLabel: _angular_core.InputSignal<string>;
2692
2703
  /** Ribbon color (for variant='ribbon') */
2693
2704
  ribbonColor: _angular_core.InputSignal<RibbonColor>;
2694
2705
  /** Ribbon/badge text (for variant='ribbon') */
@@ -2702,16 +2713,20 @@ declare class BadgeComponent {
2702
2713
  /** Status label — uses explicit label or falls back to status name */
2703
2714
  statusLabel: _angular_core.Signal<string>;
2704
2715
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<BadgeComponent, never>;
2705
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<BadgeComponent, "pecb-badge", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "count": { "alias": "count"; "required": false; "isSignal": true; }; "maxCount": { "alias": "maxCount"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "showLabel": { "alias": "showLabel"; "required": false; "isSignal": true; }; "ribbonColor": { "alias": "ribbonColor"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "notificationAriaLabel": { "alias": "notificationAriaLabel"; "required": false; "isSignal": true; }; "notificationsLabel": { "alias": "notificationsLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2716
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<BadgeComponent, "pecb-badge", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "count": { "alias": "count"; "required": false; "isSignal": true; }; "maxCount": { "alias": "maxCount"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "showLabel": { "alias": "showLabel"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "hintAriaLabel": { "alias": "hintAriaLabel"; "required": false; "isSignal": true; }; "ribbonColor": { "alias": "ribbonColor"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "notificationAriaLabel": { "alias": "notificationAriaLabel"; "required": false; "isSignal": true; }; "notificationsLabel": { "alias": "notificationsLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2706
2717
  }
2707
2718
 
2708
2719
  /** Status pill colour. */
2709
- type CredentialCardTone = 'success' | 'warning' | 'error' | 'neutral';
2720
+ type CredentialCardTone = 'success' | 'warning' | 'error' | 'info' | 'neutral';
2710
2721
  /** Label/value row in the body (e.g. Issued / Expires). */
2711
2722
  interface CredentialCardMetaRow {
2712
2723
  label: string;
2713
2724
  value: string;
2725
+ /** When set the value renders as a text button and (metaAction) emits this id on click. */
2726
+ actionId?: string;
2714
2727
  }
2728
+ /** Head tile style: tone-tinted glyph tile, or a plain (self-coloured) 44px artwork. */
2729
+ type CredentialCardIconVariant = 'tinted' | 'plain';
2715
2730
  /** Progress line: label + counter over a bar with a "+" action (e.g. earned credits, paid fees). */
2716
2731
  interface CredentialCardProgress {
2717
2732
  /** Echoed back on (progressAction) */
@@ -2758,6 +2773,14 @@ declare class CredentialCardComponent {
2758
2773
  /** Raw SVG for the emblem tile; a rosette glyph is used when empty */
2759
2774
  icon: _angular_core.InputSignal<string>;
2760
2775
  /** Status pill text; pill hidden when empty */
2776
+ /** Muted line under the title (e.g. an id · duration) */
2777
+ subtitle: _angular_core.InputSignal<string>;
2778
+ /** Small label beside the head tile (e.g. the record type) */
2779
+ iconLabel: _angular_core.InputSignal<string>;
2780
+ /** `tinted` = tone-tinted tile around a stroke glyph; `plain` = the icon SVG is shown as-is (44px artwork) */
2781
+ iconVariant: _angular_core.InputSignal<CredentialCardIconVariant>;
2782
+ /** Footer button text size: `sm` 12px (default), `md` 14px */
2783
+ actionsSize: _angular_core.InputSignal<"sm" | "md">;
2761
2784
  statusLabel: _angular_core.InputSignal<string>;
2762
2785
  /** Label/value rows (Issued, Expires, ...) — label left, value right */
2763
2786
  metaRows: _angular_core.InputSignal<CredentialCardMetaRow[]>;
@@ -2779,6 +2802,8 @@ declare class CredentialCardComponent {
2779
2802
  progressAction: _angular_core.OutputEmitterRef<string>;
2780
2803
  /** A footer action clicked — emits the action id */
2781
2804
  actionClick: _angular_core.OutputEmitterRef<string>;
2805
+ /** Emits the row's actionId when a clickable meta value is pressed */
2806
+ metaAction: _angular_core.OutputEmitterRef<string>;
2782
2807
  /** The centered link clicked */
2783
2808
  linkClick: _angular_core.OutputEmitterRef<void>;
2784
2809
  readonly plusIcon: _angular_platform_browser.SafeHtml;
@@ -2790,7 +2815,7 @@ declare class CredentialCardComponent {
2790
2815
  actionClass(action: CredentialCardAction): string;
2791
2816
  safeSvg(svg: string | undefined): _angular_platform_browser.SafeHtml | null;
2792
2817
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CredentialCardComponent, never>;
2793
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<CredentialCardComponent, "pecb-credential-card", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "tone": { "alias": "tone"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "statusLabel": { "alias": "statusLabel"; "required": false; "isSignal": true; }; "metaRows": { "alias": "metaRows"; "required": false; "isSignal": true; }; "progressRows": { "alias": "progressRows"; "required": false; "isSignal": true; }; "noticeText": { "alias": "noticeText"; "required": false; "isSignal": true; }; "noticeTone": { "alias": "noticeTone"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "actionsLayout": { "alias": "actionsLayout"; "required": false; "isSignal": true; }; "linkLabel": { "alias": "linkLabel"; "required": false; "isSignal": true; }; "footnote": { "alias": "footnote"; "required": false; "isSignal": true; }; }, { "progressAction": "progressAction"; "actionClick": "actionClick"; "linkClick": "linkClick"; }, never, never, true, never>;
2818
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<CredentialCardComponent, "pecb-credential-card", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "tone": { "alias": "tone"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "iconLabel": { "alias": "iconLabel"; "required": false; "isSignal": true; }; "iconVariant": { "alias": "iconVariant"; "required": false; "isSignal": true; }; "actionsSize": { "alias": "actionsSize"; "required": false; "isSignal": true; }; "statusLabel": { "alias": "statusLabel"; "required": false; "isSignal": true; }; "metaRows": { "alias": "metaRows"; "required": false; "isSignal": true; }; "progressRows": { "alias": "progressRows"; "required": false; "isSignal": true; }; "noticeText": { "alias": "noticeText"; "required": false; "isSignal": true; }; "noticeTone": { "alias": "noticeTone"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "actionsLayout": { "alias": "actionsLayout"; "required": false; "isSignal": true; }; "linkLabel": { "alias": "linkLabel"; "required": false; "isSignal": true; }; "footnote": { "alias": "footnote"; "required": false; "isSignal": true; }; }, { "progressAction": "progressAction"; "actionClick": "actionClick"; "metaAction": "metaAction"; "linkClick": "linkClick"; }, never, never, true, never>;
2794
2819
  }
2795
2820
 
2796
2821
  /** Action button rendered under the preview-card description. */
@@ -3105,6 +3130,39 @@ declare class RecordCardComponent {
3105
3130
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<RecordCardComponent, "pecb-record-card", never, { "iconSvg": { "alias": "iconSvg"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "emphasis": { "alias": "emphasis"; "required": false; "isSignal": true; }; "fields": { "alias": "fields"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "emptyValue": { "alias": "emptyValue"; "required": false; "isSignal": true; }; }, {}, never, ["[recordActions]", "*"], true, never>;
3106
3131
  }
3107
3132
 
3133
+ /** One "label: value" entry of the card's footer row (e.g. debit / credit). */
3134
+ interface BalanceCardEntry {
3135
+ label: string;
3136
+ value: string;
3137
+ }
3138
+ /**
3139
+ * Currency balance card: a small code chip (e.g. "USD"), a headline row
3140
+ * "label · value" above a divider, then a footer row of label/value entries
3141
+ * spread across the card (debit / credit style).
3142
+ *
3143
+ * All values are pre-formatted strings — the consumer decides the number and
3144
+ * currency formatting.
3145
+ *
3146
+ * @example
3147
+ * <pecb-balance-card code="USD" label="Balance" value="-$26,950.90"
3148
+ * [entries]="[{label: 'Debit', value: '$27,180.85'}, {label: 'Credit', value: '$309.95'}]">
3149
+ * </pecb-balance-card>
3150
+ */
3151
+ declare class BalanceCardComponent {
3152
+ /** Chip text (currency code). Hidden when empty. */
3153
+ code: _angular_core.InputSignal<string>;
3154
+ /** Headline label (left). */
3155
+ label: _angular_core.InputSignal<string>;
3156
+ /** Headline value (right), pre-formatted. */
3157
+ value: _angular_core.InputSignal<string>;
3158
+ /** Footer entries rendered "label: value", spread across the row. */
3159
+ entries: _angular_core.InputSignal<BalanceCardEntry[]>;
3160
+ /** Separator between an entry's label and value. */
3161
+ separator: _angular_core.InputSignal<string>;
3162
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<BalanceCardComponent, never>;
3163
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<BalanceCardComponent, "pecb-balance-card", never, { "code": { "alias": "code"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "entries": { "alias": "entries"; "required": false; "isSignal": true; }; "separator": { "alias": "separator"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
3164
+ }
3165
+
3108
3166
  interface SegmentedControlOption {
3109
3167
  label: string;
3110
3168
  value: unknown;
@@ -7394,6 +7452,8 @@ declare const PECB_CUSTOM_ICONS: Record<string, string>;
7394
7452
  * | xl | 24px |
7395
7453
  * | 2xl | 32px |
7396
7454
  */
7455
+ /** Track packing for `columns="auto"`. */
7456
+ type GridAutoFlow = 'fit' | 'fill';
7397
7457
  type GridGap = 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
7398
7458
  /**
7399
7459
  * Predefined padding sizes mapped to the PECB spacing tokens.
@@ -7451,6 +7511,14 @@ declare class GridComponent {
7451
7511
  * Accepts any CSS length value. Defaults to '200px'.
7452
7512
  */
7453
7513
  minChildWidth: _angular_core.InputSignal<string>;
7514
+ /**
7515
+ * How `columns="auto"` packs tracks (CSS `auto-fit` vs `auto-fill`):
7516
+ * - `fit` (default): empty tracks collapse, so a short last row stretches its items
7517
+ * - `fill`: tracks stay reserved, so items keep their column width — a lone card stays
7518
+ * one column wide instead of spanning the row (card grids whose column count must
7519
+ * follow the container's own width, e.g. next to a sidebar)
7520
+ */
7521
+ autoFlow: _angular_core.InputSignal<GridAutoFlow>;
7454
7522
  /** Gap between all grid items (row and column). Overridden by rowGap / columnGap. */
7455
7523
  gap: _angular_core.InputSignal<GridGap>;
7456
7524
  /** Row gap — overrides `gap` for the vertical axis */
@@ -7474,7 +7542,7 @@ declare class GridComponent {
7474
7542
  '--pecb-grid-min-child-width'?: undefined;
7475
7543
  }>;
7476
7544
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridComponent, never>;
7477
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<GridComponent, "pecb-grid", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "minChildWidth": { "alias": "minChildWidth"; "required": false; "isSignal": true; }; "gap": { "alias": "gap"; "required": false; "isSignal": true; }; "rowGap": { "alias": "rowGap"; "required": false; "isSignal": true; }; "columnGap": { "alias": "columnGap"; "required": false; "isSignal": true; }; "padding": { "alias": "padding"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "verticalAlign": { "alias": "verticalAlign"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
7545
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<GridComponent, "pecb-grid", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "minChildWidth": { "alias": "minChildWidth"; "required": false; "isSignal": true; }; "autoFlow": { "alias": "autoFlow"; "required": false; "isSignal": true; }; "gap": { "alias": "gap"; "required": false; "isSignal": true; }; "rowGap": { "alias": "rowGap"; "required": false; "isSignal": true; }; "columnGap": { "alias": "columnGap"; "required": false; "isSignal": true; }; "padding": { "alias": "padding"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "verticalAlign": { "alias": "verticalAlign"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
7478
7546
  }
7479
7547
  declare class GridItemComponent {
7480
7548
  /** Number of columns this item should span */
@@ -8197,6 +8265,7 @@ type SearchMode = 'none' | 'simple' | 'advanced';
8197
8265
  * ```
8198
8266
  */
8199
8267
  declare class GeneralComponent {
8268
+ private readonly sanitizer;
8200
8269
  /** Unique element ID */
8201
8270
  id: _angular_core.InputSignal<string>;
8202
8271
  /** Whether the toolbar has action buttons */
@@ -8233,6 +8302,9 @@ declare class GeneralComponent {
8233
8302
  ariaLabel: _angular_core.InputSignal<string>;
8234
8303
  /** Accessible label for the advanced search toggle button. */
8235
8304
  advancedSearchToggleAriaLabel: _angular_core.InputSignal<string>;
8305
+ /** Optional inline SVG replacing the default sliders glyph of the advanced search toggle. */
8306
+ advancedSearchToggleIcon: _angular_core.InputSignal<string>;
8307
+ readonly safeAdvancedSearchToggleIcon: _angular_core.Signal<_angular_platform_browser.SafeHtml | null>;
8236
8308
  /** Whether a search bar is present */
8237
8309
  hasSearch: _angular_core.Signal<boolean>;
8238
8310
  /** Whether any button (projected or built-in) is visible */
@@ -8253,7 +8325,7 @@ declare class GeneralComponent {
8253
8325
  layoutMode: _angular_core.Signal<"flat" | "banner">;
8254
8326
  onAdvancedSearchToggle(): void;
8255
8327
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GeneralComponent, never>;
8256
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<GeneralComponent, "pecb-general", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "hasButtons": { "alias": "hasButtons"; "required": false; "isSignal": true; }; "showPrimaryBtn": { "alias": "showPrimaryBtn"; "required": false; "isSignal": true; }; "showSecondaryBtn": { "alias": "showSecondaryBtn"; "required": false; "isSignal": true; }; "showSecondaryBtn2": { "alias": "showSecondaryBtn2"; "required": false; "isSignal": true; }; "hasTabs": { "alias": "hasTabs"; "required": false; "isSignal": true; }; "hasBanner": { "alias": "hasBanner"; "required": false; "isSignal": true; }; "profileImage": { "alias": "profileImage"; "required": false; "isSignal": true; }; "profileName": { "alias": "profileName"; "required": false; "isSignal": true; }; "profileEmail": { "alias": "profileEmail"; "required": false; "isSignal": true; }; "profileId": { "alias": "profileId"; "required": false; "isSignal": true; }; "profileRoles": { "alias": "profileRoles"; "required": false; "isSignal": true; }; "hasBackButton": { "alias": "hasBackButton"; "required": false; "isSignal": true; }; "searchMode": { "alias": "searchMode"; "required": false; "isSignal": true; }; "advancedSearchOpen": { "alias": "advancedSearchOpen"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "advancedSearchToggleAriaLabel": { "alias": "advancedSearchToggleAriaLabel"; "required": false; "isSignal": true; }; }, { "advancedSearchToggle": "advancedSearchToggle"; }, never, ["[toolbarBackButton]", "[toolbarButtons]", "[toolbarPrimaryBtn]", "[toolbarSecondaryBtn]", "[toolbarSecondaryBtn2]", "[toolbarBanner]", "[toolbarTabs]", "[toolbarSearch]", "[toolbarAdvancedSearch]"], true, never>;
8328
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<GeneralComponent, "pecb-general", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "hasButtons": { "alias": "hasButtons"; "required": false; "isSignal": true; }; "showPrimaryBtn": { "alias": "showPrimaryBtn"; "required": false; "isSignal": true; }; "showSecondaryBtn": { "alias": "showSecondaryBtn"; "required": false; "isSignal": true; }; "showSecondaryBtn2": { "alias": "showSecondaryBtn2"; "required": false; "isSignal": true; }; "hasTabs": { "alias": "hasTabs"; "required": false; "isSignal": true; }; "hasBanner": { "alias": "hasBanner"; "required": false; "isSignal": true; }; "profileImage": { "alias": "profileImage"; "required": false; "isSignal": true; }; "profileName": { "alias": "profileName"; "required": false; "isSignal": true; }; "profileEmail": { "alias": "profileEmail"; "required": false; "isSignal": true; }; "profileId": { "alias": "profileId"; "required": false; "isSignal": true; }; "profileRoles": { "alias": "profileRoles"; "required": false; "isSignal": true; }; "hasBackButton": { "alias": "hasBackButton"; "required": false; "isSignal": true; }; "searchMode": { "alias": "searchMode"; "required": false; "isSignal": true; }; "advancedSearchOpen": { "alias": "advancedSearchOpen"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "advancedSearchToggleAriaLabel": { "alias": "advancedSearchToggleAriaLabel"; "required": false; "isSignal": true; }; "advancedSearchToggleIcon": { "alias": "advancedSearchToggleIcon"; "required": false; "isSignal": true; }; }, { "advancedSearchToggle": "advancedSearchToggle"; }, never, ["[toolbarBackButton]", "[toolbarButtons]", "[toolbarPrimaryBtn]", "[toolbarSecondaryBtn]", "[toolbarSecondaryBtn2]", "[toolbarBanner]", "[toolbarTabs]", "[toolbarSearch]", "[toolbarAdvancedSearch]"], true, never>;
8257
8329
  }
8258
8330
 
8259
8331
  type ContentStyle = 'card' | 'transparent' | 'white';
@@ -10331,5 +10403,5 @@ declare class CourseCardComponent {
10331
10403
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<CourseCardComponent, "pecb-course-card", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconSrc": { "alias": "iconSrc"; "required": false; "isSignal": true; }; "iconSvg": { "alias": "iconSvg"; "required": false; "isSignal": true; }; "iconLabel": { "alias": "iconLabel"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "statusLabel": { "alias": "statusLabel"; "required": false; "isSignal": true; }; "statusTone": { "alias": "statusTone"; "required": false; "isSignal": true; }; "metaRows": { "alias": "metaRows"; "required": false; "isSignal": true; }; "progress": { "alias": "progress"; "required": false; "isSignal": true; }; "noteText": { "alias": "noteText"; "required": false; "isSignal": true; }; "noteTone": { "alias": "noteTone"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "actionsLayout": { "alias": "actionsLayout"; "required": false; "isSignal": true; }; "dimmed": { "alias": "dimmed"; "required": false; "isSignal": true; }; }, { "actionClick": "actionClick"; }, never, ["*"], true, never>;
10332
10404
  }
10333
10405
 
10334
- export { APP_HEADER_TRANSLATIONS, APP_SHELL_LOCALES, APP_SIDEBAR_MENU_ICONS, APP_SIDEBAR_MENU_TRANSLATIONS, APP_SIDEBAR_TRANSLATIONS, AccordionItemComponent, AccordionSmallComponent, ActionItemComponent, AddButtonComponent, AdminHeaderComponent, AdminHeaderFieldTemplateDirective, AffixComponent, AlertComponent, AnchorComponent, AppHeaderComponent, AppSidebarComponent, ApplicationStatusBarComponent, AuditorStatusComponent, AuthorDateTimeComponent, BackToTopComponent, BadgeComponent, BlurDirective, BottomSheetComponent, BreadcrumbsComponent, ButtonComponent, ButtonGroupComponent, ButtonGroupItemComponent, CancelUpdateButtonsComponent, CardBodyComponent, CardComponent, CardFooterComponent, CardHeaderComponent, CertificateUploadBarComponent, CheckDeleteIconComponent, CheckboxComponent, CheckboxDisplayComponent, CodeInputComponent, CodeSnippetComponent, ColorPaletteComponent, ConfirmationComponent, ContentTypeTagComponent, CourseCardComponent, CourseContentPanelComponent, CoursePlayerComponent, CourseTileComponent, CredentialCardComponent, DEFAULT_APP_HEADER_LABELS, DEFAULT_APP_SIDEBAR_LABELS, DEFAULT_APP_SIDEBAR_LANGUAGES, DEFAULT_APP_SIDEBAR_MENU, DEFAULT_APP_SIDEBAR_ROLES, DEFAULT_COURSE_CONTENT_PANEL_LABELS, DEFAULT_LANGUAGES, DEFAULT_SLIDE_VIEWER_KEY_MAP, DEFAULT_SLIDE_VIEWER_LABELS, DEFAULT_SLIDE_VIEWER_TOOLS, DEFAULT_SLIDE_VIEWER_ZOOM_STEPS, DEFAULT_TAG_INPUT_SEPARATORS, DEFAULT_VIDEO_PLAYER_LABELS, DEFAULT_VIDEO_PLAYER_RATES, DashboardGridComponent, DatepickerComponent, DividerComponent, DropdownComponent, EMPTY_STATE_MAX_BUTTONS, EditButtonComponent, EditCoverPhotoComponent, EmptyStateComponent, ExpandableRowTableComponent, FieldComponent, FileUploadComponent, FilterColumnsComponent, FloatButtonComponent, FloatButtonItemComponent, FormSectionCardComponent, FullscreenModalComponent, FullscreenModalContentDirective, FullscreenModalFooterDirective, FullscreenModalHeaderDirective, GeneralComponent, GridComponent, GridItemComponent, HeaderActionsComponent, HeaderComponent, HeaderDividerComponent, HeaderLanguageComponent, HeaderSearchComponent, HeaderUserComponent, HierarchicalTableComponent, HorizontalStepsComponent, HubCardComponent, HubCardGridComponent, IconComponent, IconRegistry, IconTagComponent, InformationBoxComponent, InputComponent, LanguageDropdownComponent, LinkButtonComponent, ListItemComponent, LoadingService, MediaComponent, MessageBubbleComponent, MessageItemComponent, MetricsCardComponent, MiniIconButtonComponent, NestedTableComponent, NoResultsComponent, NoteSidebarItemComponent, NotesPanelComponent, NotificationService, NotificationStatusLinkComponent, OptionCardComponent, OutlinedFieldComponent, PECB_COLOR_PALETTE, PECB_CUSTOM_ICONS, PECB_FONT_STYLES, PECB_ICONS, PECB_TYPE_SCALE, PaginationComponent, PaymentPlanCardComponent, PaymentScheduleCardComponent, PaymentSummaryComponent, PeriodPaymentModalComponent, PreviewCardComponent, PriceMethodComponent, ProfileComponent, ProfileElementsCardComponent, ProfileGroupComponent, ProgressArcComponent, ProgressBarComponent, ProgressCircleComponent, ProjectLayoutComponent, QuantitySelectorComponent, QuestionTypeTagComponent, RadioComponent, RadioDisplayComponent, RatingNumberComponent, ReasonForReturnComponent, RecordCardComponent, RequestSentByComponent, RequestStatusBarComponent, ResultPageComponent, RightModalComponent, RightModalContentDirective, RightModalFooterDirective, RightModalHeaderDirective, SegmentedControlComponent, ShadowDirective, SidebarComponent, SkeletonComponent, SlidePointsComponent, SlideViewerComponent, SlideViewerDayDirective, SlideViewerThumbnailDirective, SpacerComponent, SpinnerComponent, StandardsPdfCardComponent, StatisticsCardComponent, StatusBannerComponent, StatusComponent, StepperComponent, TabComponent, TableComponent, TagComponent, TagInputComponent, TagSelectComponent, TestimonialComponent, TextFormFieldComponent, TextareaComponent, ThemeService, TimelineComponent, ToggleComponent, ToolbarBarComponent, TooltipComponent, TooltipDirective, TourComponent, TranscriptLineComponent, TypographyComponent, UserWithEmailComponent, VerifyChecklistComponent, VideoPlayerComponent, VideoUploadBarComponent, VirtualTableComponent, addClass, announceToScreenReader, appHeaderLabels, appSidebarLabels, appSidebarMenu, appSidebarRoles, capitalize, clampSlidePage, closestElement, copyToClipboard, courseModuleStats, courseProgress, createAuthError, createAuthorizationError, createConfigError, createError, createNetworkError, createValidationError, disableBodyScroll, escapeHtml, findCourseLesson, findCourseModule, formatCount, formatCourseDuration, formatCourseTime, formatErrorForLog, formatErrorMessage, formatVideoTime, generateLinkedIds, generateUniqueId, getAriaCurrent, getButtonAriaAttributes, getComputedStyleValue, getDialogAriaAttributes, getFocusableElements, getInitials, getInputAriaAttributes, getOptionAriaAttributes, getProgressAriaAttributes, getScrollParent, getTabAriaAttributes, getVisuallyHiddenStyles, handleError, hasClass, isBlank, isBrowser, isElementVisible, isNotBlank, isPecbError, isRecoverableError, matchesSelector, parseLessonPartTitle, pluralize, prefersHighContrast, prefersReducedMotion, registerErrorHandler, removeClass, resolveAppShellLocale, resolveLessonStatus, scrollIntoView, slugify, stripHtml, toCamelCase, toKebabCase, toPascalCase, toSnakeCase, toggleClass, trapFocus, truncate, tryAsync, trySync, wrapError };
10335
- export type { AccordionVariant, ActionItemPriority, AddButtonVariant, AdminHeaderAction, AdminHeaderActionType, AdminHeaderBadgeVariant, AdminHeaderField, AdminHeaderFieldType, AdminHeaderMetadata, AdminHeaderMetadataType, AdminHeaderProfile, AffixPosition, AlertType, AlertVariant, Alignment, AnchorDirection, AnchorItem, AnchorLevel, AnimationTiming, AppHeaderAction, AppHeaderChip, AppHeaderChipTone, AppHeaderLabels, AppHeaderNotification, AppShellLocale, AppShellTranslations, AppSidebarLabels, AppSidebarMenuItem, AppSidebarMenuOption, AppSidebarMenuOptionChange, AppSidebarMenuStrings, AppSidebarNavGroup, AppSidebarNavItem, AppSidebarProduct, AppSidebarRouterLink, AppSidebarUser, AppStatusColor, AriaAttributes, AriaLive, AriaRole, AuditorStatusType, BadgeSize, BadgeStatus, BadgeVariant, BlurSize, BreadcrumbItem, BreadcrumbSeparator, Breakpoint, ButtonGroupIconMode, ButtonGroupItemPosition, ButtonIconStyle, ButtonShape, ButtonSize, ButtonVariant, CalendarDay, Callback, CardElevation, CardRadius, CardRole, CheckDeleteType, CheckboxDisplayState, CheckboxLabelPosition, ClosableWithHooks, CodeInputDirection, CodeInputState, CodeSnippetTheme, CodeSnippetVariant, ColorPaletteGroup, ColorPaletteItem, ColorVariant, Colorable, ColumnOption, ComponentSize, ConfirmationIconType, ContentStyle, ContentTagDisplay, ContentTagType, CourseCardAction, CourseCardMetaRow, CourseCardNoteTone, CourseCardProgress, CourseCardTone, CourseContentPanelAccent, CourseContentPanelDensity, CourseContentPanelLabels, CourseContentPanelLayout, CourseContentPanelTab, CourseLesson, CourseLessonRunView, CourseLessonStatus, CourseLessonType, CourseLessonView, CourseModule, CourseModuleStats, CourseModuleView, CoursePlayerPanelPosition, CourseProgressStats, CourseTimelineRow, CourseTranscriptCue, CourseTranscriptRow, CredentialCardAction, CredentialCardMetaRow, CredentialCardProgress, CredentialCardTone, CustomIconName, DashboardGridGap, DashboardGridLayout, DatepickerSize, Direction, Disableable, DividerType, DropdownOption, DropdownSize, EditButtonVariant, ElevationLevel, EmptyStateButton, EmptyStateIconTheme, ErrorCategory, ErrorHandler, ErrorOptions, ErrorSeverity, EventHandler, ExpandableRowColumn, ExpandableRowPageEvent, ExpandableRowProgressConfig, ExtendedColorVariant, FieldItem, FieldStyle, FileUploadEvent, FileUploadState, FileUploadVariant, FilterColumnsActiveTab, FilterColumnsApplyEvent, FilterField, FilterFieldType, FilterState, FloatButtonAction, FloatButtonPosition, Focusable, FormControlBase, GridAlign, GridColumns, GridGap, GridItemSpan, GridPadding, GridVerticalAlign, HeaderActionButton, HeaderLanguageOption, HeaderSearchCategory, HeaderSearchType, HierarchicalTableAction, HierarchicalTableColumn, HierarchicalTablePageEvent, HubCardSize, IconColor, IconName, IconShape, IconSize, IconTagType, InformationBoxVariant, InputSize, InputType, LanguageDisplayMode, LanguageOption, LinkButtonType, Loadable, LoadingState, MarkedDate, MediaGroup, MediaItem, MediaSize, MediaType, MenuItem, MessageBubbleType, MessageDirection, MessageItemStatus, MetricsCardBadgeStatus, MetricsCardIconBg, MetricsCardIconPosition, MetricsCardOrientation, MetricsCardSize, MetricsCardType, MetricsCardVariation, MiniIconAction, NestedTableCellType, NestedTableChildContext, NestedTableChildRow, NestedTableChip, NestedTableColumn, NestedTableGroup, NestedTableProgress, NestedTableRow, NonNullableProps, NoteGroup, NoteItem, NoteSidebarPosition, NoteSidebarState, Notification, NotificationConfig, NotificationPosition, NotificationStatusType, NotificationType, OptionalProps, Orientation, OverlayComponent, PageChangeEvent, PaginationSize, PaginationState, PaginationVariant, PaymentScheduleCardAction, PaymentScheduleCardMeta, PaymentScheduleCardPeriod, PaymentScheduleCardTone, PaymentSummaryRow, PdfCardVariant, PecbError, PecbTableColumn, PecbTableColumnComponent, PecbTableColumnType, PeriodPaymentModalPeriod, Position, PreviewCardAction, ProfileBadge, ProfileGroupItem, ProfileGroupSize, ProfileIndicator, ProfileSize, ProfileType, ProgressArcSize, ProgressBarSize, ProgressCircleSize, ProgressType, QuestionTagDisplay, QuestionTagType, QuizType, RadioDisplayState, RadioLabelPosition, RadioVariant, RadiusScale, RatingStyle, RecordCardField, RequestStatusIconType, RequireProps, ResultPageAction, ResultPageIcon, RibbonColor, RightModalPosition, RightModalSize, SearchMode, SegmentedControlOption, SegmentedControlTone, SelectableItem, ShadowHardSize, ShadowSize, ShadowSoftSize, ShadowType, SidebarMenuItem, SidebarSection, Size, Sizeable, SkeletonShape, SkeletonSize, SkeletonType, SlideViewerDay, SlideViewerDayContext, SlideViewerKeyAction, SlideViewerKeyMap, SlideViewerLabels, SlideViewerMoveEvent, SlideViewerPageEvent, SlideViewerSearchEvent, SlideViewerSidebarPosition, SlideViewerSlide, SlideViewerThumbnailContext, SlideViewerTool, SlideViewerToolEvent, SortState, SpacerSize, SpacingScale, StateVariant, StatisticsIconColor, StatusBannerChip, StatusBannerChipVariant, StatusBannerTone, StatusColor, StatusSize, StatusType, StatusVariant, StepItem, StepOrder, StepState, StepperDirection, StepperSize, StepperTailStyle, StepperType, TabItem, TabSize, TabStyle, TableAction, TableColumn, TableRowActionEvent, TableSelectionEvent, TableSize, TableSortEvent, TableStatusConfig, TableUserConfig, TableVariant, TagAction, TagAppearance, TagSelectOption, TagStyle, Templatable, TestimonialData, TestimonialVariant, TextFormFieldType, ThemeConfig, ThemeMode, ThemeVariables, TimelineItem, TimelineTone, ToggleLabelPosition, ToggleSize, ToolbarButton, ToolbarTab, ToolbarVariant, TooltipPointerPosition, TooltipTheme, TourIndicatorType, TourPlacement, TourStep, TourType, TranscriptLineState, TreeNode, TypographyScaleEntry, TypographyStyleEntry, UploadedFile, Validatable, ValidationError, ValidationState, VerifyChecklistItem, VerifyItemStatus, VideoPlayerError, VideoPlayerLabels, VideoPlayerPreload, VideoPlayerSource, VideoPlayerTimeEvent, VideoPlayerTrack, VirtualTableColumn, VirtualTablePageEvent, VirtualTableProgressConfig };
10406
+ export { APP_HEADER_TRANSLATIONS, APP_SHELL_LOCALES, APP_SIDEBAR_MENU_ICONS, APP_SIDEBAR_MENU_TRANSLATIONS, APP_SIDEBAR_TRANSLATIONS, AccordionItemComponent, AccordionSmallComponent, ActionItemComponent, AddButtonComponent, AdminHeaderComponent, AdminHeaderFieldTemplateDirective, AffixComponent, AlertComponent, AnchorComponent, AppHeaderComponent, AppSidebarComponent, ApplicationStatusBarComponent, AuditorStatusComponent, AuthorDateTimeComponent, BackToTopComponent, BadgeComponent, BalanceCardComponent, BlurDirective, BottomSheetComponent, BreadcrumbsComponent, ButtonComponent, ButtonGroupComponent, ButtonGroupItemComponent, CancelUpdateButtonsComponent, CardBodyComponent, CardComponent, CardFooterComponent, CardHeaderComponent, CertificateUploadBarComponent, CheckDeleteIconComponent, CheckboxComponent, CheckboxDisplayComponent, CodeInputComponent, CodeSnippetComponent, ColorPaletteComponent, ConfirmationComponent, ContentTypeTagComponent, CourseCardComponent, CourseContentPanelComponent, CoursePlayerComponent, CourseTileComponent, CredentialCardComponent, DEFAULT_APP_HEADER_LABELS, DEFAULT_APP_SIDEBAR_LABELS, DEFAULT_APP_SIDEBAR_LANGUAGES, DEFAULT_APP_SIDEBAR_MENU, DEFAULT_APP_SIDEBAR_ROLES, DEFAULT_COURSE_CONTENT_PANEL_LABELS, DEFAULT_LANGUAGES, DEFAULT_SLIDE_VIEWER_KEY_MAP, DEFAULT_SLIDE_VIEWER_LABELS, DEFAULT_SLIDE_VIEWER_TOOLS, DEFAULT_SLIDE_VIEWER_ZOOM_STEPS, DEFAULT_TAG_INPUT_SEPARATORS, DEFAULT_VIDEO_PLAYER_LABELS, DEFAULT_VIDEO_PLAYER_RATES, DashboardGridComponent, DatepickerComponent, DividerComponent, DropdownComponent, EMPTY_STATE_MAX_BUTTONS, EditButtonComponent, EditCoverPhotoComponent, EmptyStateComponent, ExpandableRowTableComponent, FieldComponent, FileUploadComponent, FilterColumnsComponent, FloatButtonComponent, FloatButtonItemComponent, FormSectionCardComponent, FullscreenModalComponent, FullscreenModalContentDirective, FullscreenModalFooterDirective, FullscreenModalHeaderDirective, GeneralComponent, GridComponent, GridItemComponent, HeaderActionsComponent, HeaderComponent, HeaderDividerComponent, HeaderLanguageComponent, HeaderSearchComponent, HeaderUserComponent, HierarchicalTableComponent, HorizontalStepsComponent, HubCardComponent, HubCardGridComponent, IconComponent, IconRegistry, IconTagComponent, InformationBoxComponent, InputComponent, LanguageDropdownComponent, LinkButtonComponent, ListItemComponent, LoadingService, MediaComponent, MessageBubbleComponent, MessageItemComponent, MetricsCardComponent, MiniIconButtonComponent, NestedTableComponent, NoResultsComponent, NoteSidebarItemComponent, NotesPanelComponent, NotificationService, NotificationStatusLinkComponent, OptionCardComponent, OutlinedFieldComponent, PECB_COLOR_PALETTE, PECB_CUSTOM_ICONS, PECB_FONT_STYLES, PECB_ICONS, PECB_TYPE_SCALE, PaginationComponent, PaymentPlanCardComponent, PaymentScheduleCardComponent, PaymentSummaryComponent, PeriodPaymentModalComponent, PreviewCardComponent, PriceMethodComponent, ProfileComponent, ProfileElementsCardComponent, ProfileGroupComponent, ProgressArcComponent, ProgressBarComponent, ProgressCircleComponent, ProjectLayoutComponent, QuantitySelectorComponent, QuestionTypeTagComponent, RadioComponent, RadioDisplayComponent, RatingNumberComponent, ReasonForReturnComponent, RecordCardComponent, RequestSentByComponent, RequestStatusBarComponent, ResultPageComponent, RightModalComponent, RightModalContentDirective, RightModalFooterDirective, RightModalHeaderDirective, SegmentedControlComponent, ShadowDirective, SidebarComponent, SkeletonComponent, SlidePointsComponent, SlideViewerComponent, SlideViewerDayDirective, SlideViewerThumbnailDirective, SpacerComponent, SpinnerComponent, StandardsPdfCardComponent, StatisticsCardComponent, StatusBannerComponent, StatusComponent, StepperComponent, TabComponent, TableComponent, TagComponent, TagInputComponent, TagSelectComponent, TestimonialComponent, TextFormFieldComponent, TextareaComponent, ThemeService, TimelineComponent, ToggleComponent, ToolbarBarComponent, TooltipComponent, TooltipDirective, TourComponent, TranscriptLineComponent, TypographyComponent, UserWithEmailComponent, VerifyChecklistComponent, VideoPlayerComponent, VideoUploadBarComponent, VirtualTableComponent, addClass, announceToScreenReader, appHeaderLabels, appSidebarLabels, appSidebarMenu, appSidebarRoles, capitalize, clampSlidePage, closestElement, copyToClipboard, courseModuleStats, courseProgress, createAuthError, createAuthorizationError, createConfigError, createError, createNetworkError, createValidationError, disableBodyScroll, escapeHtml, findCourseLesson, findCourseModule, formatCount, formatCourseDuration, formatCourseTime, formatErrorForLog, formatErrorMessage, formatVideoTime, generateLinkedIds, generateUniqueId, getAriaCurrent, getButtonAriaAttributes, getComputedStyleValue, getDialogAriaAttributes, getFocusableElements, getInitials, getInputAriaAttributes, getOptionAriaAttributes, getProgressAriaAttributes, getScrollParent, getTabAriaAttributes, getVisuallyHiddenStyles, handleError, hasClass, isBlank, isBrowser, isElementVisible, isNotBlank, isPecbError, isRecoverableError, matchesSelector, parseLessonPartTitle, pluralize, prefersHighContrast, prefersReducedMotion, registerErrorHandler, removeClass, resolveAppShellLocale, resolveLessonStatus, scrollIntoView, slugify, stripHtml, toCamelCase, toKebabCase, toPascalCase, toSnakeCase, toggleClass, trapFocus, truncate, tryAsync, trySync, wrapError };
10407
+ export type { AccordionVariant, ActionItemPriority, AddButtonVariant, AdminHeaderAction, AdminHeaderActionType, AdminHeaderBadgeVariant, AdminHeaderField, AdminHeaderFieldType, AdminHeaderMetadata, AdminHeaderMetadataType, AdminHeaderProfile, AffixPosition, AlertType, AlertVariant, Alignment, AnchorDirection, AnchorItem, AnchorLevel, AnimationTiming, AppHeaderAction, AppHeaderChip, AppHeaderChipTone, AppHeaderLabels, AppHeaderNotification, AppShellLocale, AppShellTranslations, AppSidebarLabels, AppSidebarMenuItem, AppSidebarMenuOption, AppSidebarMenuOptionChange, AppSidebarMenuStrings, AppSidebarNavGroup, AppSidebarNavItem, AppSidebarProduct, AppSidebarRouterLink, AppSidebarUser, AppStatusColor, AriaAttributes, AriaLive, AriaRole, AuditorStatusType, BadgeSize, BadgeStatus, BadgeVariant, BalanceCardEntry, BlurSize, BreadcrumbItem, BreadcrumbSeparator, Breakpoint, ButtonGroupIconMode, ButtonGroupItemPosition, ButtonIconStyle, ButtonShape, ButtonSize, ButtonVariant, CalendarDay, Callback, CardElevation, CardRadius, CardRole, CheckDeleteType, CheckboxDisplayState, CheckboxLabelPosition, ClosableWithHooks, CodeInputDirection, CodeInputState, CodeSnippetTheme, CodeSnippetVariant, ColorPaletteGroup, ColorPaletteItem, ColorVariant, Colorable, ColumnOption, ComponentSize, ConfirmationIconType, ContentStyle, ContentTagDisplay, ContentTagType, CourseCardAction, CourseCardMetaRow, CourseCardNoteTone, CourseCardProgress, CourseCardTone, CourseContentPanelAccent, CourseContentPanelDensity, CourseContentPanelLabels, CourseContentPanelLayout, CourseContentPanelTab, CourseLesson, CourseLessonRunView, CourseLessonStatus, CourseLessonType, CourseLessonView, CourseModule, CourseModuleStats, CourseModuleView, CoursePlayerPanelPosition, CourseProgressStats, CourseTimelineRow, CourseTranscriptCue, CourseTranscriptRow, CredentialCardAction, CredentialCardIconVariant, CredentialCardMetaRow, CredentialCardProgress, CredentialCardTone, CustomIconName, DashboardGridGap, DashboardGridLayout, DatepickerSize, Direction, Disableable, DividerType, DropdownOption, DropdownSize, EditButtonVariant, ElevationLevel, EmptyStateButton, EmptyStateIconTheme, ErrorCategory, ErrorHandler, ErrorOptions, ErrorSeverity, EventHandler, ExpandableRowColumn, ExpandableRowPageEvent, ExpandableRowProgressConfig, ExtendedColorVariant, FieldItem, FieldStyle, FileUploadEvent, FileUploadState, FileUploadVariant, FilterColumnsActiveTab, FilterColumnsApplyEvent, FilterField, FilterFieldType, FilterState, FloatButtonAction, FloatButtonPosition, Focusable, FormControlBase, GridAlign, GridAutoFlow, GridColumns, GridGap, GridItemSpan, GridPadding, GridVerticalAlign, HeaderActionButton, HeaderLanguageOption, HeaderSearchCategory, HeaderSearchType, HierarchicalTableAction, HierarchicalTableColumn, HierarchicalTablePageEvent, HubCardSize, IconColor, IconName, IconShape, IconSize, IconTagType, InformationBoxVariant, InputSize, InputType, LanguageDisplayMode, LanguageOption, LinkButtonType, Loadable, LoadingState, MarkedDate, MediaGroup, MediaItem, MediaSize, MediaType, MenuItem, MessageBubbleType, MessageDirection, MessageItemStatus, MetricsCardBadgeStatus, MetricsCardIconBg, MetricsCardIconPosition, MetricsCardOrientation, MetricsCardSize, MetricsCardType, MetricsCardVariation, MiniIconAction, NestedTableCellType, NestedTableChildContext, NestedTableChildRow, NestedTableChip, NestedTableColumn, NestedTableGroup, NestedTableProgress, NestedTableRow, NonNullableProps, NoteGroup, NoteItem, NoteSidebarPosition, NoteSidebarState, Notification, NotificationConfig, NotificationPosition, NotificationStatusType, NotificationType, OptionalProps, Orientation, OverlayComponent, PageChangeEvent, PaginationSize, PaginationState, PaginationVariant, PaymentScheduleCardAction, PaymentScheduleCardMeta, PaymentScheduleCardPeriod, PaymentScheduleCardTone, PaymentSummaryRow, PdfCardVariant, PecbError, PecbTableColumn, PecbTableColumnComponent, PecbTableColumnType, PeriodPaymentModalPeriod, Position, PreviewCardAction, ProfileBadge, ProfileGroupItem, ProfileGroupSize, ProfileIndicator, ProfileSize, ProfileType, ProgressArcSize, ProgressBarSize, ProgressCircleSize, ProgressType, QuestionTagDisplay, QuestionTagType, QuizType, RadioDisplayState, RadioLabelPosition, RadioVariant, RadiusScale, RatingStyle, RecordCardField, RequestStatusIconType, RequireProps, ResultPageAction, ResultPageIcon, RibbonColor, RightModalPosition, RightModalSize, SearchMode, SegmentedControlOption, SegmentedControlTone, SelectableItem, ShadowHardSize, ShadowSize, ShadowSoftSize, ShadowType, SidebarMenuItem, SidebarSection, Size, Sizeable, SkeletonShape, SkeletonSize, SkeletonType, SlideViewerDay, SlideViewerDayContext, SlideViewerKeyAction, SlideViewerKeyMap, SlideViewerLabels, SlideViewerMoveEvent, SlideViewerPageEvent, SlideViewerSearchEvent, SlideViewerSidebarPosition, SlideViewerSlide, SlideViewerThumbnailContext, SlideViewerTool, SlideViewerToolEvent, SortState, SpacerSize, SpacingScale, StateVariant, StatisticsIconColor, StatusBannerChip, StatusBannerChipVariant, StatusBannerTone, StatusColor, StatusSize, StatusType, StatusVariant, StepItem, StepOrder, StepState, StepperDirection, StepperSize, StepperTailStyle, StepperType, TabItem, TabSize, TabStyle, TableAction, TableColumn, TableRowActionEvent, TableSelectionEvent, TableSize, TableSortEvent, TableStatusConfig, TableUserConfig, TableVariant, TagAction, TagAppearance, TagSelectOption, TagStyle, Templatable, TestimonialData, TestimonialVariant, TextFormFieldType, ThemeConfig, ThemeMode, ThemeVariables, TimelineItem, TimelineTone, ToggleLabelPosition, ToggleSize, ToolbarButton, ToolbarTab, ToolbarVariant, TooltipPointerPosition, TooltipTheme, TourIndicatorType, TourPlacement, TourStep, TourType, TranscriptLineState, TreeNode, TypographyScaleEntry, TypographyStyleEntry, UploadedFile, Validatable, ValidationError, ValidationState, VerifyChecklistItem, VerifyItemStatus, VideoPlayerError, VideoPlayerLabels, VideoPlayerPreload, VideoPlayerSource, VideoPlayerTimeEvent, VideoPlayerTrack, VirtualTableColumn, VirtualTablePageEvent, VirtualTableProgressConfig };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pecb-ui/components",
3
- "version": "1.1.22",
3
+ "version": "1.1.24",
4
4
  "description": "Professional Angular UI Components Library with TypeScript and SCSS by PECB",
5
5
  "author": "PECB",
6
6
  "license": "MIT",