@tolle_/tolle-ui 0.0.13-beta → 0.0.15-beta

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.
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DropdownItemComponent {
3
+ class: string;
4
+ protected readonly cn: (c1: string, c2: string) => string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownItemComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownItemComponent, "tolle-dropdown-item", never, { "class": { "alias": "class"; "required": false; }; }, {}, never, ["*"], true, never>;
7
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DropdownLabelComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownLabelComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownLabelComponent, "tolle-dropdown-label", never, {}, {}, never, ["*"], true, never>;
5
+ }
@@ -0,0 +1,7 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DropdownMenuComponent {
4
+ templateRef: TemplateRef<any>;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownMenuComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownMenuComponent, "tolle-dropdown-menu", never, {}, {}, never, ["*"], true, never>;
7
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DropdownSeparatorComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownSeparatorComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownSeparatorComponent, "tolle-dropdown-separator", never, {}, {}, never, never, true, never>;
5
+ }
@@ -0,0 +1,19 @@
1
+ import { ElementRef, OnDestroy, ViewContainerRef } from '@angular/core';
2
+ import { DropdownMenuComponent } from './dropdown-menu.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DropdownTriggerDirective implements OnDestroy {
5
+ private el;
6
+ private vcr;
7
+ menu: DropdownMenuComponent;
8
+ private cleanup?;
9
+ private isOpen;
10
+ private menuElement?;
11
+ constructor(el: ElementRef, vcr: ViewContainerRef);
12
+ toggle(): void;
13
+ private open;
14
+ private close;
15
+ private outsideClick;
16
+ ngOnDestroy(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownTriggerDirective, never>;
18
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownTriggerDirective, "[tolleDropdownTrigger]", never, { "menu": { "alias": "tolleDropdownTrigger"; "required": false; }; }, {}, never, never, true, never>;
19
+ }
@@ -0,0 +1,12 @@
1
+ import { ToastService, Toast, ToastPosition } from './toast.service';
2
+ import { cn } from './utils/cn';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ToastContainerComponent {
5
+ toastService: ToastService;
6
+ position: ToastPosition;
7
+ toasts$: import("rxjs").Observable<Toast[]>;
8
+ get positionClasses(): string;
9
+ protected cn: typeof cn;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToastContainerComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToastContainerComponent, "tolle-toaster", never, { "position": { "alias": "position"; "required": false; }; }, {}, never, never, true, never>;
12
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolle_/tolle-ui",
3
- "version": "0.0.13-beta",
3
+ "version": "0.0.15-beta",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/public-api.d.ts CHANGED
@@ -12,6 +12,7 @@ export * from './lib/skeleton.component';
12
12
  export * from './lib/checkbox.component';
13
13
  export * from './lib/tooltip.directive';
14
14
  export * from './lib/toast.service';
15
+ export * from './lib/toaster.component';
15
16
  export * from './lib/tolle-config';
16
17
  export * from './lib/multi-select.component';
17
18
  export * from './lib/calendar.component';
@@ -31,3 +32,8 @@ export * from './lib/button-group.component';
31
32
  export * from './lib/date-range-picker.component';
32
33
  export * from './lib/range-calendar.component';
33
34
  export * from './lib/theme.service';
35
+ export * from './lib/dropdown-item.component';
36
+ export * from './lib/dropdown-label.component';
37
+ export * from './lib/dropdown-menu.component';
38
+ export * from './lib/dropdown-separator.component';
39
+ export * from './lib/dropdown-trigger.directive';