@lumston/ds-angular 0.0.1 → 0.0.3

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/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@lumston/ds-angular",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Lumston Design System for Angular",
5
5
  "author": "tsanchez",
6
6
  "peerDependencies": {
7
- "@angular/common": "^21.0.0",
8
- "@angular/core": "^21.0.0",
9
- "@angular/platform-browser": "^21.0.0"
7
+ "@angular/common": ">=17.0.0",
8
+ "@angular/core": ">=17.0.0",
9
+ "@angular/platform-browser": ">=17.0.0"
10
10
  },
11
11
  "dependencies": {
12
12
  "tslib": "^2.6.0"
@@ -14,21 +14,23 @@
14
14
  "sideEffects": [
15
15
  "*.css"
16
16
  ],
17
- "module": "fesm2022/lumston-ds-angular.mjs",
18
- "typings": "types/lumston-ds-angular.d.ts",
19
17
  "exports": {
20
- "./package.json": {
21
- "default": "./package.json"
22
- },
23
18
  ".": {
24
19
  "types": "./types/lumston-ds-angular.d.ts",
20
+ "esm2022": "./esm2022/ds-angular.mjs",
21
+ "esm": "./esm2022/ds-angular.mjs",
25
22
  "default": "./fesm2022/lumston-ds-angular.mjs"
26
23
  },
27
24
  "./styles": {
28
25
  "default": "./src/styles/index.css"
29
26
  },
27
+ "./package.json": {
28
+ "default": "./package.json"
29
+ },
30
30
  "./styles/*": {
31
31
  "default": "./src/styles/*"
32
32
  }
33
- }
33
+ },
34
+ "module": "fesm2022/lumston-ds-angular.mjs",
35
+ "typings": "types/lumston-ds-angular.d.ts"
34
36
  }
@@ -66,6 +66,9 @@
66
66
  --ls-modal-z-index: 1000;
67
67
  --ls-modal-backdrop-bg: rgba(0, 0, 0, 0.5);
68
68
 
69
+ /* Menu */
70
+ --ls-menu-z-index: 1001;
71
+
69
72
  /* Gradient */
70
73
  --ls-gradient-start: #ef1262;
71
74
  --ls-gradient-end: #4361ee;
@@ -2,7 +2,7 @@
2
2
 
3
3
  @import './_tokens.css';
4
4
  @import './_base.css';
5
- @import '../inputs/button/button.styles.css';
5
+ /* @import '../inputs/button/button.styles.css';
6
6
  @import '../inputs/checkbox/checkbox.styles.css';
7
7
  @import '../inputs/icon-button/icon-button.styles.css';
8
8
  @import '../inputs/radio-button/radio-button.styles.css';
@@ -23,3 +23,5 @@
23
23
  @import '../overlay/modal/modal.styles.css';
24
24
  @import '../overlay/popover/popover.styles.css';
25
25
  @import '../navigation/pagination/pagination.styles.css';
26
+ @import '../navigation/breadcrumb/breadcrumb.styles.css';
27
+ @import '../overlay/menu/menu.styles.css'; */
@@ -53,7 +53,10 @@ type ButtonSize = 'small' | 'medium' | 'large';
53
53
  type ButtonLoadingIndicator = 'spinner' | (string & {});
54
54
  type ButtonLoadingPosition = 'center' | 'start' | 'end';
55
55
  declare class ButtonComponent {
56
+ private readonly _elementRef;
56
57
  private readonly sanitizer;
58
+ /** Host element of this component. Pass directly as `anchorEl` to overlay components like `ls-menu`. */
59
+ readonly nativeElement: HTMLElement;
57
60
  readonly variant: _angular_core.InputSignal<ButtonVariant>;
58
61
  readonly color: _angular_core.InputSignal<ButtonColor>;
59
62
  readonly size: _angular_core.InputSignal<ButtonSize>;
@@ -450,6 +453,249 @@ declare class AlertComponent {
450
453
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AlertComponent, "ls-alert", never, { "severity": { "alias": "severity"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "closable": { "alias": "closable"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconMapping": { "alias": "iconMapping"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "alertTitle": { "alias": "alertTitle"; "required": false; "isSignal": true; }; "message": { "alias": "message"; "required": false; "isSignal": true; }; }, { "onClose": "onClose"; }, never, never, true, never>;
451
454
  }
452
455
 
456
+ /**
457
+ * Defines an origin point on an element used for menu positioning.
458
+ *
459
+ * Combines a vertical and horizontal anchor designation. Used by both
460
+ * `anchorOrigin` (point on the trigger element) and `transformOrigin`
461
+ * (point on the menu panel) to compute the final panel placement.
462
+ */
463
+ interface MenuOriginPoint {
464
+ vertical: 'top' | 'center' | 'bottom';
465
+ horizontal: 'left' | 'center' | 'right';
466
+ }
467
+ /**
468
+ * Renders an anchored floating menu panel attached to a trigger element.
469
+ *
470
+ * Supports both **controlled** and **directive-driven** open modes:
471
+ * - **Controlled**: bind `[(open)]` and respond to `opened`/`closed` outputs.
472
+ * - **Directive-driven**: apply `lsMenuTriggerFor` to any host element;
473
+ * the directive calls `setAnchorEl()` and `toggle()` automatically.
474
+ *
475
+ * Panel position is derived from the anchor element's bounding rect combined
476
+ * with `anchorOrigin` (attachment point on the trigger) and `transformOrigin`
477
+ * (attachment point on the panel). Position is recomputed each time the
478
+ * panel opens via a `setTimeout(0)` deferral to ensure the panel is measured.
479
+ *
480
+ * When `disablePortal` is `false` (default), the panel uses `position: fixed`
481
+ * for viewport-relative placement. When `true`, it uses `position: absolute`.
482
+ *
483
+ * Keyboard: `Escape` closes the panel; `ArrowDown`/`ArrowUp` move focus
484
+ * between enabled `[role="menuitem"]` elements inside the panel.
485
+ *
486
+ * @example
487
+ * ```html
488
+ * <!-- Controlled -->
489
+ * <ls-menu [(open)]="isOpen" [anchorEl]="triggerEl">
490
+ * <ls-menu-item (itemClick)="onEdit()">Edit</ls-menu-item>
491
+ * </ls-menu>
492
+ *
493
+ * <!-- Directive-driven -->
494
+ * <button [lsMenuTriggerFor]="myMenu">Open</button>
495
+ * <ls-menu #myMenu>
496
+ * <ls-menu-item>Delete</ls-menu-item>
497
+ * </ls-menu>
498
+ * ```
499
+ */
500
+ declare class MenuComponent {
501
+ private readonly _document;
502
+ private readonly _destroyRef;
503
+ /** Controls the visibility of the menu panel. Supports two-way binding. */
504
+ readonly open: _angular_core.ModelSignal<boolean>;
505
+ /**
506
+ * Element used to position the menu panel.
507
+ *
508
+ * Accepts a native DOM element, an `ElementRef`, or any Angular component
509
+ * that exposes a `nativeElement: HTMLElement` property (e.g. `ls-button`).
510
+ * In templates, pass a template reference variable directly:
511
+ * `[anchorEl]="btn"` where `#btn` is on any element or component.
512
+ *
513
+ * When using `lsMenuTriggerFor`, this is set automatically by the directive
514
+ * via `setAnchorEl()`. When using controlled mode, bind directly.
515
+ *
516
+ * @default null
517
+ */
518
+ readonly anchorEl: _angular_core.InputSignal<HTMLElement | ElementRef<HTMLElement> | {
519
+ nativeElement: HTMLElement;
520
+ } | null>;
521
+ /**
522
+ * Defines the attachment point on the anchor element.
523
+ *
524
+ * Combined with `transformOrigin` to compute the panel's `top`/`left`
525
+ * position via `getBoundingClientRect()`.
526
+ *
527
+ * @default { vertical: 'bottom', horizontal: 'left' }
528
+ */
529
+ readonly anchorOrigin: _angular_core.InputSignal<MenuOriginPoint>;
530
+ /**
531
+ * Defines the attachment point on the menu panel surface.
532
+ *
533
+ * The panel is translated so this point aligns with `anchorOrigin`.
534
+ *
535
+ * @default { vertical: 'top', horizontal: 'left' }
536
+ */
537
+ readonly transformOrigin: _angular_core.InputSignal<MenuOriginPoint>;
538
+ /**
539
+ * When `false` (default), the panel uses `position: fixed` for
540
+ * viewport-relative placement. When `true`, uses `position: absolute`
541
+ * and renders relative to the nearest positioned ancestor.
542
+ *
543
+ * @default false
544
+ */
545
+ readonly disablePortal: _angular_core.InputSignal<boolean>;
546
+ /**
547
+ * When `true`, the panel closes automatically after the user activates
548
+ * a `ls-menu-item` (i.e., a `[role="menuitem"]` element) inside it.
549
+ *
550
+ * @default true
551
+ */
552
+ readonly closeOnClick: _angular_core.InputSignal<boolean>;
553
+ /**
554
+ * Emits when the panel's opening animation completes.
555
+ * Does NOT emit when `open` is set programmatically without animation.
556
+ */
557
+ readonly opened: _angular_core.OutputEmitterRef<void>;
558
+ /**
559
+ * Emits when the panel's closing animation completes and the panel
560
+ * is fully hidden. In controlled mode, the host can use this to update
561
+ * state after the transition finishes.
562
+ */
563
+ readonly closed: _angular_core.OutputEmitterRef<void>;
564
+ /**
565
+ * Emits when the user clicks the transparent backdrop behind the panel.
566
+ * The menu closes automatically after this output emits.
567
+ */
568
+ readonly backdropClick: _angular_core.OutputEmitterRef<MouseEvent>;
569
+ private readonly _panelRef;
570
+ protected readonly _isAnimating: _angular_core.WritableSignal<boolean>;
571
+ private _wasOpen;
572
+ private _previouslyFocused;
573
+ private _savedBodyOverflow;
574
+ private _savedBodyPaddingRight;
575
+ private readonly _resolvedAnchorEl;
576
+ private readonly _repositionHandler;
577
+ constructor();
578
+ /** Toggles the panel between open and closed. */
579
+ toggle(): void;
580
+ /**
581
+ * Sets the anchor element used for panel positioning.
582
+ * Called automatically by `MenuTriggerDirective`.
583
+ */
584
+ setAnchorEl(el: HTMLElement | null): void;
585
+ /** Closes the panel without waiting for a user interaction. */
586
+ requestClose(): void;
587
+ protected onBackdropClick(event: MouseEvent): void;
588
+ protected onPanelClick(event: MouseEvent): void;
589
+ protected onAnimationEnd(): void;
590
+ protected onEscape(): void;
591
+ protected onArrowDown(event: Event): void;
592
+ protected onArrowUp(event: Event): void;
593
+ private _computeAndApplyPosition;
594
+ /**
595
+ * Resolves any supported anchor value to a plain `HTMLElement`.
596
+ *
597
+ * Handles: `HTMLElement`, `ElementRef<HTMLElement>`, and objects that expose
598
+ * a `nativeElement: HTMLElement` property (e.g. `ls-button` component refs).
599
+ */
600
+ private _toHTMLElement;
601
+ private _moveFocus;
602
+ private _getScrollbarWidth;
603
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<MenuComponent, never>;
604
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MenuComponent, "ls-menu", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "anchorEl": { "alias": "anchorEl"; "required": false; "isSignal": true; }; "anchorOrigin": { "alias": "anchorOrigin"; "required": false; "isSignal": true; }; "transformOrigin": { "alias": "transformOrigin"; "required": false; "isSignal": true; }; "disablePortal": { "alias": "disablePortal"; "required": false; "isSignal": true; }; "closeOnClick": { "alias": "closeOnClick"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "opened": "opened"; "closed": "closed"; "backdropClick": "backdropClick"; }, never, ["*"], true, never>;
605
+ }
606
+
607
+ /**
608
+ * Interactive item rendered inside an `ls-menu` panel.
609
+ *
610
+ * Renders a `<button role="menuitem">` that projects its label via
611
+ * `<ng-content>`. Visual density, gutters, and a bottom divider are
612
+ * configurable via inputs. When `disabled` is `true`, the item is not
613
+ * interactive and the `itemClick` output will not emit.
614
+ *
615
+ * @example
616
+ * ```html
617
+ * <ls-menu-item [dense]="true" (itemClick)="onEdit($event)">
618
+ * Edit
619
+ * </ls-menu-item>
620
+ * ```
621
+ */
622
+ declare class MenuItemComponent {
623
+ /**
624
+ * Reduces the vertical padding of the item for compact layouts.
625
+ *
626
+ * @default false
627
+ */
628
+ readonly dense: _angular_core.InputSignal<boolean>;
629
+ /**
630
+ * Removes left and right padding when `true`.
631
+ *
632
+ * @default false
633
+ */
634
+ readonly disableGutters: _angular_core.InputSignal<boolean>;
635
+ /**
636
+ * Adds a 1px border at the bottom of the item to act as a visual divider.
637
+ *
638
+ * @default false
639
+ */
640
+ readonly divider: _angular_core.InputSignal<boolean>;
641
+ /**
642
+ * Prevents interaction. Applies disabled styling, sets `aria-disabled="true"`,
643
+ * and suppresses the `itemClick` output.
644
+ *
645
+ * @default false
646
+ */
647
+ readonly disabled: _angular_core.InputSignal<boolean>;
648
+ /**
649
+ * Emits the originating `MouseEvent` when the user activates the item.
650
+ * Does NOT emit when `disabled` is `true`.
651
+ */
652
+ readonly itemClick: _angular_core.OutputEmitterRef<MouseEvent>;
653
+ protected readonly _itemClasses: _angular_core.Signal<string>;
654
+ protected handleClick(event: MouseEvent): void;
655
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<MenuItemComponent, never>;
656
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MenuItemComponent, "ls-menu-item", never, { "dense": { "alias": "dense"; "required": false; "isSignal": true; }; "disableGutters": { "alias": "disableGutters"; "required": false; "isSignal": true; }; "divider": { "alias": "divider"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; }, never, ["*"], true, never>;
657
+ }
658
+
659
+ /**
660
+ * Connects any host element to a `MenuComponent` instance, enabling
661
+ * click-to-toggle behavior without manual open-state management.
662
+ *
663
+ * Sets `anchorEl` on the linked `MenuComponent` to the host element
664
+ * before toggling visibility, so the panel is correctly positioned
665
+ * relative to the trigger. Also applies `aria-haspopup="menu"` to the
666
+ * host for accessibility.
667
+ *
668
+ * @example
669
+ * ```html
670
+ * <button type="button" [lsMenuTriggerFor]="myMenu">Options</button>
671
+ * <ls-menu #myMenu>
672
+ * <ls-menu-item>Delete</ls-menu-item>
673
+ * </ls-menu>
674
+ * ```
675
+ */
676
+ declare class MenuTriggerDirective {
677
+ /**
678
+ * The `MenuComponent` instance this directive controls.
679
+ * Assign a template reference variable of `ls-menu`.
680
+ */
681
+ readonly lsMenuTriggerFor: _angular_core.InputSignal<MenuComponent>;
682
+ private readonly _elementRef;
683
+ protected onClick(): void;
684
+ /**
685
+ * Resolves the first ancestor element that has a real layout box.
686
+ *
687
+ * Angular component hosts commonly use `:host { display: contents }`,
688
+ * which means the element itself has no bounding box and
689
+ * `getBoundingClientRect()` returns all zeros. This method walks down
690
+ * through `display: contents` wrappers until it reaches the first child
691
+ * that participates in layout, so the menu panel is positioned relative
692
+ * to the visible trigger element rather than a phantom box.
693
+ */
694
+ private _resolveAnchorElement;
695
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<MenuTriggerDirective, never>;
696
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MenuTriggerDirective, "[lsMenuTriggerFor]", never, { "lsMenuTriggerFor": { "alias": "lsMenuTriggerFor"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
697
+ }
698
+
453
699
  declare class ModalActionsComponent {
454
700
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ModalActionsComponent, never>;
455
701
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ModalActionsComponent, "ls-modal-actions", never, {}, {}, never, ["*"], true, never>;
@@ -558,23 +804,151 @@ declare class TooltipComponent {
558
804
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<TooltipComponent, "ls-tooltip", never, { "content": { "alias": "content"; "required": true; "isSignal": true; }; "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "backgroundClass": { "alias": "backgroundClass"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
559
805
  }
560
806
 
807
+ /** Controls the visual rendering style of page number items and nav buttons. */
561
808
  type PaginationVariant = 'text' | 'outlined' | 'solid';
809
+ /**
810
+ * Applies the design-token color to the active page item and hover states.
811
+ *
812
+ * - `'primary'` — Brand primary color.
813
+ * - `'secondary'` — Brand secondary color.
814
+ * - `'default'` — Neutral gray, no brand color applied.
815
+ */
562
816
  type PaginationColor = 'primary' | 'secondary' | 'default';
817
+ /** Determines the border-radius style applied uniformly to all page buttons. */
563
818
  type PaginationShape = 'circular' | 'rounded';
819
+ /**
820
+ * Controls the physical dimensions (height, font size, padding) of all
821
+ * buttons in the pagination bar.
822
+ */
564
823
  type PaginationSize = 'small' | 'medium' | 'large';
824
+ /**
825
+ * Renders an accessible pagination bar for navigating a paged data set.
826
+ *
827
+ * Supports both **controlled** and **uncontrolled** modes:
828
+ * - **Controlled**: provide the `page` input and update it in response to
829
+ * the `pageChange` output. The component reflects the external value.
830
+ * - **Uncontrolled**: omit `page`. The component manages its own active
831
+ * page via an internal signal, initialized from `defaultPage`.
832
+ *
833
+ * When the total page count exceeds 5, a 5-item sliding window is rendered
834
+ * centered on the active page. Navigation buttons are rendered inside a
835
+ * `<nav aria-label="pagination">` landmark. Each button receives
836
+ * `aria-current="page"` (active) or `aria-disabled="true"` (boundary/disabled)
837
+ * as appropriate.
838
+ *
839
+ * @example
840
+ * ```html
841
+ * <!-- Uncontrolled -->
842
+ * <ls-pagination [count]="20" (pageChange)="onPage($event)" />
843
+ *
844
+ * <!-- Controlled -->
845
+ * <ls-pagination
846
+ * [count]="20"
847
+ * [page]="currentPage"
848
+ * (pageChange)="currentPage = $event" />
849
+ * ```
850
+ */
565
851
  declare class PaginationComponent implements OnInit {
852
+ /**
853
+ * Total number of pages in the data set.
854
+ *
855
+ * Must be a positive integer ≥ 1. Determines both the upper boundary for
856
+ * navigation and the page window calculation.
857
+ *
858
+ * @default 1
859
+ */
566
860
  readonly count: _angular_core.InputSignal<number>;
861
+ /**
862
+ * Active page index in controlled mode (1-based).
863
+ *
864
+ * When provided, the component reflects this value and does not maintain
865
+ * internal page state. The host is responsible for updating this input in
866
+ * response to `pageChange` emissions. Pass `undefined` to switch to
867
+ * uncontrolled mode.
868
+ *
869
+ * @default undefined
870
+ */
567
871
  readonly page: _angular_core.InputSignal<number | undefined>;
872
+ /**
873
+ * Initial active page used in uncontrolled mode (1-based).
874
+ *
875
+ * Consumed once on `ngOnInit`. Has no effect when `page` is provided.
876
+ *
877
+ * @default 1
878
+ */
568
879
  readonly defaultPage: _angular_core.InputSignal<number>;
880
+ /**
881
+ * Color token applied to the active page item and button hover states.
882
+ *
883
+ * @default 'primary'
884
+ */
569
885
  readonly color: _angular_core.InputSignal<PaginationColor>;
886
+ /**
887
+ * Visual rendering style of page number items and navigation buttons.
888
+ *
889
+ * @default 'outlined'
890
+ */
570
891
  readonly variant: _angular_core.InputSignal<PaginationVariant>;
892
+ /**
893
+ * Border-radius style applied uniformly to all buttons in the bar.
894
+ *
895
+ * @default 'rounded'
896
+ */
571
897
  readonly shape: _angular_core.InputSignal<PaginationShape>;
898
+ /**
899
+ * Physical dimensions (height, font size, padding) of all buttons.
900
+ *
901
+ * @default 'medium'
902
+ */
572
903
  readonly size: _angular_core.InputSignal<PaginationSize>;
904
+ /**
905
+ * Disables all buttons in the pagination bar.
906
+ *
907
+ * When `true`, every button receives `disabled` and
908
+ * `aria-disabled="true"`. The `pageChange` output will not emit.
909
+ *
910
+ * @default false
911
+ */
573
912
  readonly disabled: _angular_core.InputSignal<boolean>;
913
+ /**
914
+ * Renders a "go to first page" button before the previous-page button.
915
+ *
916
+ * The button is automatically disabled and receives `aria-disabled="true"`
917
+ * when the active page is already the first page.
918
+ *
919
+ * @default false
920
+ */
574
921
  readonly showFirstButton: _angular_core.InputSignal<boolean>;
922
+ /**
923
+ * Renders a "go to last page" button after the next-page button.
924
+ *
925
+ * The button is automatically disabled and receives `aria-disabled="true"`
926
+ * when the active page is already the last page.
927
+ *
928
+ * @default false
929
+ */
575
930
  readonly showLastButton: _angular_core.InputSignal<boolean>;
931
+ /**
932
+ * Hides the previous-page navigation button.
933
+ *
934
+ * @default false
935
+ */
576
936
  readonly hidePrevButton: _angular_core.InputSignal<boolean>;
937
+ /**
938
+ * Hides the next-page navigation button.
939
+ *
940
+ * @default false
941
+ */
577
942
  readonly hideNextButton: _angular_core.InputSignal<boolean>;
943
+ /**
944
+ * Emits the target page number (1-based) when the user activates any
945
+ * page item or navigation button.
946
+ *
947
+ * Does NOT emit when `disabled` is `true` or when the user clicks a
948
+ * boundary button that is already at its limit (first/last page).
949
+ * In controlled mode, the host must update the `page` input in response
950
+ * to this event to reflect the navigation in the UI.
951
+ */
578
952
  readonly pageChange: _angular_core.OutputEmitterRef<number>;
579
953
  private readonly _internalPage;
580
954
  protected readonly activePage: _angular_core.Signal<number>;
@@ -590,6 +964,26 @@ declare class PaginationComponent implements OnInit {
590
964
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<PaginationComponent, "ls-pagination", never, { "count": { "alias": "count"; "required": false; "isSignal": true; }; "page": { "alias": "page"; "required": false; "isSignal": true; }; "defaultPage": { "alias": "defaultPage"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "shape": { "alias": "shape"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "showFirstButton": { "alias": "showFirstButton"; "required": false; "isSignal": true; }; "showLastButton": { "alias": "showLastButton"; "required": false; "isSignal": true; }; "hidePrevButton": { "alias": "hidePrevButton"; "required": false; "isSignal": true; }; "hideNextButton": { "alias": "hideNextButton"; "required": false; "isSignal": true; }; }, { "pageChange": "pageChange"; }, never, never, true, never>;
591
965
  }
592
966
 
593
- export { AlertComponent, AvatarComponent, AvatarGroupComponent, BadgeComponent, ButtonComponent, CheckboxComponent, ChipComponent, DropdownComponent, ICON_REGISTRY, IconButtonComponent, IconComponent, LinkComponent, LoaderComponent, LogoComponent, LsDropdownContentDirective, ModalActionsComponent, ModalComponent, ModalContentComponent, ModalStackService, ModalTitleComponent, PaginationComponent, PopoverComponent, ProgressBarComponent, RadioButtonComponent, SliderComponent, SwitchComponent, TagComponent, TextComponent, TooltipComponent };
594
- export type { AlertSeverity, AlertVariant, AvatarColor, AvatarData, AvatarSize, AvatarVariant, BadgeOverlap, BadgePosition, BadgeSeverity, BadgeVariant, ButtonColor, ButtonSize, ButtonVariant, CheckboxColor, CheckboxLabelPlacement, CheckboxSize, ChipColor, ChipSize, ChipVariant, DropdownAlign, DropdownDirection, IconButtonColor, IconButtonSize, IconName, LinkAlign, LinkColor, LinkUnderline, LinkVariant, LoaderColor, LoaderSize, LoaderVariant, LogoSize, ModalMaxWidth, ModalScroll, PaginationColor, PaginationShape, PaginationSize, PaginationVariant, PopoverPlacement, ProgressBarColor, ProgressBarLabelPosition, ProgressBarSize, ProgressBarVariant, RadioButtonColor, RadioButtonLabelPlacement, RadioButtonSize, SliderColor, SliderMark, SliderSize, SliderValueLabelDisplay, SwitchColor, SwitchLabelPlacement, SwitchSize, SwitchVariant, TagColor, TagVariant, TextAlign, TextColor, TextVariant, TooltipBackground, TooltipPlacement };
967
+ interface BreadcrumbItem {
968
+ label: string;
969
+ url?: string;
970
+ icon?: string;
971
+ }
972
+ type BreadcrumbVariant = 'default' | 'arrowed' | 'dotted';
973
+ declare class BreadcrumbComponent {
974
+ readonly items: _angular_core.InputSignal<BreadcrumbItem[]>;
975
+ readonly variant: _angular_core.InputSignal<BreadcrumbVariant>;
976
+ readonly separator: _angular_core.InputSignal<string | TemplateRef<unknown>>;
977
+ readonly color: _angular_core.InputSignal<string>;
978
+ protected readonly _colorStyle: _angular_core.Signal<{
979
+ '--ls-breadcrumb-main-color': string;
980
+ }>;
981
+ protected readonly _classes: _angular_core.Signal<string>;
982
+ protected readonly _isTemplateSeparator: _angular_core.Signal<boolean>;
983
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
984
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<BreadcrumbComponent, "ls-breadcrumb", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "separator": { "alias": "separator"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
985
+ }
986
+
987
+ export { AlertComponent, AvatarComponent, AvatarGroupComponent, BadgeComponent, BreadcrumbComponent, ButtonComponent, CheckboxComponent, ChipComponent, DropdownComponent, ICON_REGISTRY, IconButtonComponent, IconComponent, LinkComponent, LoaderComponent, LogoComponent, LsDropdownContentDirective, MenuComponent, MenuItemComponent, MenuTriggerDirective, ModalActionsComponent, ModalComponent, ModalContentComponent, ModalStackService, ModalTitleComponent, PaginationComponent, PopoverComponent, ProgressBarComponent, RadioButtonComponent, SliderComponent, SwitchComponent, TagComponent, TextComponent, TooltipComponent };
988
+ export type { AlertSeverity, AlertVariant, AvatarColor, AvatarData, AvatarSize, AvatarVariant, BadgeOverlap, BadgePosition, BadgeSeverity, BadgeVariant, BreadcrumbItem, BreadcrumbVariant, ButtonColor, ButtonSize, ButtonVariant, CheckboxColor, CheckboxLabelPlacement, CheckboxSize, ChipColor, ChipSize, ChipVariant, DropdownAlign, DropdownDirection, IconButtonColor, IconButtonSize, IconName, LinkAlign, LinkColor, LinkUnderline, LinkVariant, LoaderColor, LoaderSize, LoaderVariant, LogoSize, MenuOriginPoint, ModalMaxWidth, ModalScroll, PaginationColor, PaginationShape, PaginationSize, PaginationVariant, PopoverPlacement, ProgressBarColor, ProgressBarLabelPosition, ProgressBarSize, ProgressBarVariant, RadioButtonColor, RadioButtonLabelPlacement, RadioButtonSize, SliderColor, SliderMark, SliderSize, SliderValueLabelDisplay, SwitchColor, SwitchLabelPlacement, SwitchSize, SwitchVariant, TagColor, TagVariant, TextAlign, TextColor, TextVariant, TooltipBackground, TooltipPlacement };
595
989
  //# sourceMappingURL=lumston-ds-angular.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"lumston-ds-angular.d.ts","sources":["../../../../libs/ds-angular/src/icon/icon.types.ts","../../../../libs/ds-angular/src/icon/icon.component.ts","../../../../libs/ds-angular/src/icon/icon.registry.ts","../../../../libs/ds-angular/src/dropdown/dropdown.component.ts","../../../../libs/ds-angular/src/dropdown/dropdown-content.directive.ts","../../../../libs/ds-angular/src/dropdown/dropdown.types.ts","../../../../libs/ds-angular/src/inputs/button/button.component.ts","../../../../libs/ds-angular/src/inputs/checkbox/checkbox.component.ts","../../../../libs/ds-angular/src/inputs/icon-button/icon-button.component.ts","../../../../libs/ds-angular/src/inputs/radio-button/radio-button.component.ts","../../../../libs/ds-angular/src/inputs/slider/slider.component.ts","../../../../libs/ds-angular/src/inputs/switch/switch.component.ts","../../../../libs/ds-angular/src/typography/link/link.component.ts","../../../../libs/ds-angular/src/typography/text/text.component.ts","../../../../libs/ds-angular/src/typography/tag/tag.component.ts","../../../../libs/ds-angular/src/data-display/badge/badge.component.ts","../../../../libs/ds-angular/src/data-display/chip/chip.component.ts","../../../../libs/ds-angular/src/media/avatar/avatar.component.ts","../../../../libs/ds-angular/src/media/avatar-group/avatar-group.component.ts","../../../../libs/ds-angular/src/media/logo/logo.component.ts","../../../../libs/ds-angular/src/feedback/progress-bar/progress-bar.component.ts","../../../../libs/ds-angular/src/feedback/loader/loader.component.ts","../../../../libs/ds-angular/src/feedback/alert/alert.component.ts","../../../../libs/ds-angular/src/overlay/modal/modal-actions.component.ts","../../../../libs/ds-angular/src/overlay/modal/modal.component.ts","../../../../libs/ds-angular/src/overlay/modal/modal-content.component.ts","../../../../libs/ds-angular/src/overlay/modal/modal.service.ts","../../../../libs/ds-angular/src/overlay/modal/modal-title.component.ts","../../../../libs/ds-angular/src/overlay/popover/popover.component.ts","../../../../libs/ds-angular/src/overlay/tooltip/tooltip.component.ts","../../../../libs/ds-angular/src/navigation/pagination/pagination.component.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"lumston-ds-angular.d.ts","sources":["../../../../libs/ds-angular/src/icon/icon.types.ts","../../../../libs/ds-angular/src/icon/icon.component.ts","../../../../libs/ds-angular/src/icon/icon.registry.ts","../../../../libs/ds-angular/src/dropdown/dropdown.component.ts","../../../../libs/ds-angular/src/dropdown/dropdown-content.directive.ts","../../../../libs/ds-angular/src/dropdown/dropdown.types.ts","../../../../libs/ds-angular/src/inputs/button/button.component.ts","../../../../libs/ds-angular/src/inputs/checkbox/checkbox.component.ts","../../../../libs/ds-angular/src/inputs/icon-button/icon-button.component.ts","../../../../libs/ds-angular/src/inputs/radio-button/radio-button.component.ts","../../../../libs/ds-angular/src/inputs/slider/slider.component.ts","../../../../libs/ds-angular/src/inputs/switch/switch.component.ts","../../../../libs/ds-angular/src/typography/link/link.component.ts","../../../../libs/ds-angular/src/typography/text/text.component.ts","../../../../libs/ds-angular/src/typography/tag/tag.component.ts","../../../../libs/ds-angular/src/data-display/badge/badge.component.ts","../../../../libs/ds-angular/src/data-display/chip/chip.component.ts","../../../../libs/ds-angular/src/media/avatar/avatar.component.ts","../../../../libs/ds-angular/src/media/avatar-group/avatar-group.component.ts","../../../../libs/ds-angular/src/media/logo/logo.component.ts","../../../../libs/ds-angular/src/feedback/progress-bar/progress-bar.component.ts","../../../../libs/ds-angular/src/feedback/loader/loader.component.ts","../../../../libs/ds-angular/src/feedback/alert/alert.component.ts","../../../../libs/ds-angular/src/overlay/menu/menu.component.ts","../../../../libs/ds-angular/src/overlay/menu/menu-item.component.ts","../../../../libs/ds-angular/src/overlay/menu/menu-trigger.directive.ts","../../../../libs/ds-angular/src/overlay/modal/modal-actions.component.ts","../../../../libs/ds-angular/src/overlay/modal/modal.component.ts","../../../../libs/ds-angular/src/overlay/modal/modal-content.component.ts","../../../../libs/ds-angular/src/overlay/modal/modal.service.ts","../../../../libs/ds-angular/src/overlay/modal/modal-title.component.ts","../../../../libs/ds-angular/src/overlay/popover/popover.component.ts","../../../../libs/ds-angular/src/overlay/tooltip/tooltip.component.ts","../../../../libs/ds-angular/src/navigation/pagination/pagination.component.ts","../../../../libs/ds-angular/src/navigation/breadcrumb/breadcrumb.component.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"names":[],"mappings":"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"}
File without changes