pdm-ui-kit 0.1.49 → 0.1.50
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/esm2020/lib/components/alert-dialog/alert-dialog.component.mjs +24 -6
- package/esm2020/lib/components/context-menu/context-menu.component.mjs +15 -7
- package/esm2020/lib/components/drawer/drawer.component.mjs +25 -4
- package/esm2020/lib/components/dropdown-menu/dropdown-menu.component.mjs +4 -2
- package/esm2020/lib/components/menubar/menubar.component.mjs +37 -6
- package/esm2020/lib/components/popover/popover.component.mjs +15 -9
- package/esm2020/lib/components/select/select.component.mjs +4 -2
- package/esm2020/lib/components/sheet/sheet.component.mjs +25 -4
- package/esm2020/lib/overlay/pdm-outside-click.directive.mjs +86 -0
- package/esm2020/lib/pdm-ui-kit.module.mjs +5 -1
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/pdm-ui-kit.mjs +228 -32
- package/fesm2015/pdm-ui-kit.mjs.map +1 -1
- package/fesm2020/pdm-ui-kit.mjs +226 -32
- package/fesm2020/pdm-ui-kit.mjs.map +1 -1
- package/lib/components/alert-dialog/alert-dialog.component.d.ts +9 -1
- package/lib/components/context-menu/context-menu.component.d.ts +6 -3
- package/lib/components/drawer/drawer.component.d.ts +7 -1
- package/lib/components/menubar/menubar.component.d.ts +10 -2
- package/lib/components/popover/popover.component.d.ts +6 -3
- package/lib/components/sheet/sheet.component.d.ts +7 -1
- package/lib/overlay/pdm-outside-click.directive.d.ts +40 -0
- package/lib/pdm-ui-kit.module.d.ts +25 -24
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -9,13 +9,21 @@ export declare class PdmAlertDialogComponent {
|
|
|
9
9
|
confirmText: string;
|
|
10
10
|
cancelText: string;
|
|
11
11
|
className: string;
|
|
12
|
+
/** Close when the ESC key is pressed. Default: `true`. */
|
|
13
|
+
closeOnEsc: boolean;
|
|
12
14
|
openChange: EventEmitter<boolean>;
|
|
13
15
|
confirm: EventEmitter<void>;
|
|
14
16
|
cancel: EventEmitter<void>;
|
|
17
|
+
/**
|
|
18
|
+
* Returns `true` when at least one consumer listens to `openChange`.
|
|
19
|
+
* - **Controlled** (has observers): parent manages `open` via two-way binding → only emit.
|
|
20
|
+
* - **Uncontrolled** (no observers): we own the `open` state → mutate it locally.
|
|
21
|
+
*/
|
|
22
|
+
private get isControlled();
|
|
15
23
|
onTriggerClick(): void;
|
|
16
24
|
onCancel(): void;
|
|
17
25
|
onConfirm(): void;
|
|
18
26
|
onEsc(): void;
|
|
19
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<PdmAlertDialogComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PdmAlertDialogComponent, "pdm-alert-dialog", never, { "open": "open"; "showTrigger": "showTrigger"; "triggerText": "triggerText"; "title": "title"; "description": "description"; "confirmText": "confirmText"; "cancelText": "cancelText"; "className": "className"; }, { "openChange": "openChange"; "confirm": "confirm"; "cancel": "cancel"; }, never, never, false>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmAlertDialogComponent, "pdm-alert-dialog", never, { "open": "open"; "showTrigger": "showTrigger"; "triggerText": "triggerText"; "title": "title"; "description": "description"; "confirmText": "confirmText"; "cancelText": "cancelText"; "className": "className"; "closeOnEsc": "closeOnEsc"; }, { "openChange": "openChange"; "confirm": "confirm"; "cancel": "cancel"; }, never, never, false>;
|
|
21
29
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter } from '@angular/core';
|
|
1
|
+
import { ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { PdmMenuItem } from '../dropdown-menu/dropdown-menu.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export interface PdmContextMenuItem extends PdmMenuItem {
|
|
5
5
|
checked?: boolean;
|
|
6
6
|
selectedDot?: boolean;
|
|
7
7
|
}
|
|
8
|
-
export declare class PdmContextMenuComponent {
|
|
8
|
+
export declare class PdmContextMenuComponent implements OnInit, OnDestroy {
|
|
9
9
|
private readonly elementRef;
|
|
10
10
|
items: PdmContextMenuItem[];
|
|
11
11
|
className: string;
|
|
@@ -16,11 +16,14 @@ export declare class PdmContextMenuComponent {
|
|
|
16
16
|
open: boolean;
|
|
17
17
|
x: number;
|
|
18
18
|
y: number;
|
|
19
|
+
private boundPointerDown;
|
|
19
20
|
constructor(elementRef: ElementRef<HTMLElement>);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
ngOnDestroy(): void;
|
|
20
23
|
onContextMenu(event: MouseEvent): void;
|
|
21
24
|
select(item: PdmContextMenuItem): void;
|
|
22
25
|
onEsc(): void;
|
|
23
|
-
|
|
26
|
+
private onDocumentPointerDown;
|
|
24
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<PdmContextMenuComponent, never>;
|
|
25
28
|
static ɵcmp: i0.ɵɵComponentDeclaration<PdmContextMenuComponent, "pdm-context-menu", never, { "items": "items"; "className": "className"; "triggerLabel": "triggerLabel"; "width": "width"; "height": "height"; }, { "itemSelect": "itemSelect"; }, never, never, false>;
|
|
26
29
|
}
|
|
@@ -20,13 +20,19 @@ export declare class PdmDrawerComponent {
|
|
|
20
20
|
usernameLabel: string;
|
|
21
21
|
usernameValue: string;
|
|
22
22
|
responsivePrimaryLabel: string;
|
|
23
|
+
/** Close when the ESC key is pressed. Default: `true`. */
|
|
24
|
+
closeOnEsc: boolean;
|
|
25
|
+
/** Close when the backdrop is clicked. Default: `true`. */
|
|
26
|
+
closeOnBackdropClick: boolean;
|
|
23
27
|
openChange: EventEmitter<boolean>;
|
|
24
28
|
primaryAction: EventEmitter<void>;
|
|
25
29
|
secondaryAction: EventEmitter<void>;
|
|
26
30
|
bars: number[];
|
|
31
|
+
onEsc(): void;
|
|
32
|
+
onBackdropClick(): void;
|
|
27
33
|
close(): void;
|
|
28
34
|
onPrimaryAction(): void;
|
|
29
35
|
onSecondaryAction(): void;
|
|
30
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<PdmDrawerComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PdmDrawerComponent, "pdm-drawer", never, { "open": "open"; "variant": "variant"; "className": "className"; "title": "title"; "description": "description"; "value": "value"; "unit": "unit"; "decrementLabel": "decrementLabel"; "incrementLabel": "incrementLabel"; "primaryLabel": "primaryLabel"; "secondaryLabel": "secondaryLabel"; "profileTitle": "profileTitle"; "profileDescription": "profileDescription"; "nameLabel": "nameLabel"; "nameValue": "nameValue"; "usernameLabel": "usernameLabel"; "usernameValue": "usernameValue"; "responsivePrimaryLabel": "responsivePrimaryLabel"; "bars": "bars"; }, { "openChange": "openChange"; "primaryAction": "primaryAction"; "secondaryAction": "secondaryAction"; }, never, never, false>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmDrawerComponent, "pdm-drawer", never, { "open": "open"; "variant": "variant"; "className": "className"; "title": "title"; "description": "description"; "value": "value"; "unit": "unit"; "decrementLabel": "decrementLabel"; "incrementLabel": "incrementLabel"; "primaryLabel": "primaryLabel"; "secondaryLabel": "secondaryLabel"; "profileTitle": "profileTitle"; "profileDescription": "profileDescription"; "nameLabel": "nameLabel"; "nameValue": "nameValue"; "usernameLabel": "usernameLabel"; "usernameValue": "usernameValue"; "responsivePrimaryLabel": "responsivePrimaryLabel"; "closeOnEsc": "closeOnEsc"; "closeOnBackdropClick": "closeOnBackdropClick"; "bars": "bars"; }, { "openChange": "openChange"; "primaryAction": "primaryAction"; "secondaryAction": "secondaryAction"; }, never, never, false>;
|
|
32
38
|
}
|
|
@@ -1,18 +1,26 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { PdmMenuItem } from '../dropdown-menu/dropdown-menu.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export interface PdmMenubarItem {
|
|
5
5
|
label: string;
|
|
6
6
|
items: PdmMenuItem[];
|
|
7
7
|
}
|
|
8
|
-
export declare class PdmMenubarComponent {
|
|
8
|
+
export declare class PdmMenubarComponent implements OnInit, OnDestroy {
|
|
9
|
+
private readonly elementRef;
|
|
10
|
+
private readonly cdr;
|
|
9
11
|
menus: PdmMenubarItem[];
|
|
10
12
|
className: string;
|
|
11
13
|
itemSelect: EventEmitter<string>;
|
|
12
14
|
openIndex: number;
|
|
15
|
+
private boundPointerDown;
|
|
16
|
+
constructor(elementRef: ElementRef<HTMLElement>, cdr: ChangeDetectorRef);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
ngOnDestroy(): void;
|
|
19
|
+
onEsc(): void;
|
|
13
20
|
toggle(index: number): void;
|
|
14
21
|
select(value: string): void;
|
|
15
22
|
selectItem(item: PdmMenuItem): void;
|
|
23
|
+
private onDocumentPointerDown;
|
|
16
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<PdmMenubarComponent, never>;
|
|
17
25
|
static ɵcmp: i0.ɵɵComponentDeclaration<PdmMenubarComponent, "pdm-menubar", never, { "menus": "menus"; "className": "className"; }, { "itemSelect": "itemSelect"; }, never, never, false>;
|
|
18
26
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ChangeDetectorRef, ElementRef, EventEmitter } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class PdmPopoverComponent {
|
|
3
|
+
export declare class PdmPopoverComponent implements OnInit, OnDestroy {
|
|
4
4
|
private readonly elementRef;
|
|
5
5
|
private readonly cdr;
|
|
6
6
|
private _open;
|
|
@@ -13,14 +13,17 @@ export declare class PdmPopoverComponent {
|
|
|
13
13
|
private anchorRef?;
|
|
14
14
|
private triggerRef?;
|
|
15
15
|
private panelRef?;
|
|
16
|
+
private boundPointerDown;
|
|
16
17
|
constructor(elementRef: ElementRef<HTMLElement>, cdr: ChangeDetectorRef);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
ngOnDestroy(): void;
|
|
17
20
|
set open(value: boolean);
|
|
18
21
|
get open(): boolean;
|
|
19
22
|
get panelClasses(): string[];
|
|
20
23
|
toggle(): void;
|
|
21
24
|
onEsc(): void;
|
|
22
|
-
onDocumentClick(event: MouseEvent): void;
|
|
23
25
|
onViewportChange(): void;
|
|
26
|
+
private onDocumentPointerDown;
|
|
24
27
|
private schedulePanelPlacementUpdate;
|
|
25
28
|
private updatePanelPlacement;
|
|
26
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<PdmPopoverComponent, never>;
|
|
@@ -5,9 +5,15 @@ export declare class PdmSheetComponent {
|
|
|
5
5
|
open: boolean;
|
|
6
6
|
side: PdmSheetSide;
|
|
7
7
|
className: string;
|
|
8
|
+
/** Close when the ESC key is pressed. Default: `true`. */
|
|
9
|
+
closeOnEsc: boolean;
|
|
10
|
+
/** Close when the backdrop is clicked. Default: `true`. */
|
|
11
|
+
closeOnBackdropClick: boolean;
|
|
8
12
|
openChange: EventEmitter<boolean>;
|
|
13
|
+
onEsc(): void;
|
|
14
|
+
onBackdropClick(): void;
|
|
9
15
|
close(): void;
|
|
10
16
|
get panelClass(): string;
|
|
11
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<PdmSheetComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PdmSheetComponent, "pdm-sheet", never, { "open": "open"; "side": "side"; "className": "className"; }, { "openChange": "openChange"; }, never, ["*"], false>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmSheetComponent, "pdm-sheet", never, { "open": "open"; "side": "side"; "className": "className"; "closeOnEsc": "closeOnEsc"; "closeOnBackdropClick": "closeOnBackdropClick"; }, { "openChange": "openChange"; }, never, ["*"], false>;
|
|
13
19
|
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* Emits `(pdmOutsideClick)` whenever a `pointerdown` event fires outside the host element.
|
|
5
|
+
*
|
|
6
|
+
* Uses the CAPTURE phase so it intercepts clicks even when inner elements call
|
|
7
|
+
* `stopPropagation()` (e.g. CDK overlay panels).
|
|
8
|
+
*
|
|
9
|
+
* SSR-safe: no listener is registered when running on the server.
|
|
10
|
+
*
|
|
11
|
+
* @example
|
|
12
|
+
* ```html
|
|
13
|
+
* <div [pdmOutsideClick]
|
|
14
|
+
* (pdmOutsideClick)="close()"
|
|
15
|
+
* [pdmOutsideClickDisabled]="!open">
|
|
16
|
+
* </div>
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
export declare class PdmOutsideClickDirective implements OnInit, OnDestroy {
|
|
20
|
+
private readonly elementRef;
|
|
21
|
+
private readonly document;
|
|
22
|
+
/** When `true`, the outside-click listener is inactive. */
|
|
23
|
+
pdmOutsideClickDisabled: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* Additional elements to exclude from the "outside" check.
|
|
26
|
+
* Useful when the trigger lives outside the host (e.g. a menubar button
|
|
27
|
+
* that opens a floating panel bound to a different root element).
|
|
28
|
+
*/
|
|
29
|
+
pdmOutsideClickExclude: Array<HTMLElement | ElementRef<HTMLElement>>;
|
|
30
|
+
/** Fires when a `pointerdown` lands outside the host (and excluded elements). */
|
|
31
|
+
readonly pdmOutsideClick: EventEmitter<PointerEvent>;
|
|
32
|
+
private readonly isBrowser;
|
|
33
|
+
private boundHandler;
|
|
34
|
+
constructor(elementRef: ElementRef<HTMLElement>, document: Document, platformId: object);
|
|
35
|
+
ngOnInit(): void;
|
|
36
|
+
ngOnDestroy(): void;
|
|
37
|
+
private onPointerDown;
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PdmOutsideClickDirective, never>;
|
|
39
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PdmOutsideClickDirective, "[pdmOutsideClick]", never, { "pdmOutsideClickDisabled": "pdmOutsideClickDisabled"; "pdmOutsideClickExclude": "pdmOutsideClickExclude"; }, { "pdmOutsideClick": "pdmOutsideClick"; }, never, never, false>;
|
|
40
|
+
}
|
|
@@ -36,31 +36,32 @@ import * as i34 from "./components/label/label.component";
|
|
|
36
36
|
import * as i35 from "./components/menubar/menubar.component";
|
|
37
37
|
import * as i36 from "./components/native-select/native-select.component";
|
|
38
38
|
import * as i37 from "./components/navigation-menu/navigation-menu.component";
|
|
39
|
-
import * as i38 from "./
|
|
40
|
-
import * as i39 from "./components/
|
|
41
|
-
import * as i40 from "./components/
|
|
42
|
-
import * as i41 from "./components/
|
|
43
|
-
import * as i42 from "./components/
|
|
44
|
-
import * as i43 from "./components/
|
|
45
|
-
import * as i44 from "./components/select/select
|
|
46
|
-
import * as i45 from "./components/
|
|
47
|
-
import * as i46 from "./components/
|
|
48
|
-
import * as i47 from "./components/
|
|
49
|
-
import * as i48 from "./components/
|
|
50
|
-
import * as i49 from "./components/
|
|
51
|
-
import * as i50 from "./components/
|
|
52
|
-
import * as i51 from "./components/
|
|
53
|
-
import * as i52 from "./components/
|
|
54
|
-
import * as i53 from "./components/
|
|
55
|
-
import * as i54 from "./components/
|
|
56
|
-
import * as i55 from "./components/
|
|
57
|
-
import * as i56 from "./components/
|
|
58
|
-
import * as i57 from "./components/toggle
|
|
59
|
-
import * as i58 from "./components/
|
|
60
|
-
import * as i59 from "
|
|
61
|
-
import * as i60 from "@angular/
|
|
39
|
+
import * as i38 from "./overlay/pdm-outside-click.directive";
|
|
40
|
+
import * as i39 from "./components/pagination/pagination.component";
|
|
41
|
+
import * as i40 from "./components/popover/popover.component";
|
|
42
|
+
import * as i41 from "./components/progress/progress.component";
|
|
43
|
+
import * as i42 from "./components/radio-group/radio-group.component";
|
|
44
|
+
import * as i43 from "./components/scroll-area/scroll-area.component";
|
|
45
|
+
import * as i44 from "./components/select/select.component";
|
|
46
|
+
import * as i45 from "./components/select/select-option.directive";
|
|
47
|
+
import * as i46 from "./components/separator/separator.component";
|
|
48
|
+
import * as i47 from "./components/sheet/sheet.component";
|
|
49
|
+
import * as i48 from "./components/sidebar/sidebar.component";
|
|
50
|
+
import * as i49 from "./components/skeleton/skeleton.component";
|
|
51
|
+
import * as i50 from "./components/slider/slider.component";
|
|
52
|
+
import * as i51 from "./components/sonner/sonner.component";
|
|
53
|
+
import * as i52 from "./components/spinner/spinner.component";
|
|
54
|
+
import * as i53 from "./components/switch/switch.component";
|
|
55
|
+
import * as i54 from "./components/table/table.component";
|
|
56
|
+
import * as i55 from "./components/tabs/tabs.component";
|
|
57
|
+
import * as i56 from "./components/textarea/textarea.component";
|
|
58
|
+
import * as i57 from "./components/toggle/toggle.component";
|
|
59
|
+
import * as i58 from "./components/toggle-group/toggle-group.component";
|
|
60
|
+
import * as i59 from "./components/tooltip/tooltip.component";
|
|
61
|
+
import * as i60 from "@angular/common";
|
|
62
|
+
import * as i61 from "@angular/cdk/overlay";
|
|
62
63
|
export declare class PdmUiKitModule {
|
|
63
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<PdmUiKitModule, never>;
|
|
64
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PdmUiKitModule, [typeof i1.PdmAccordionComponent, typeof i2.PdmAlertComponent, typeof i3.PdmAlertDialogComponent, typeof i4.PdmAspectRatioComponent, typeof i5.PdmAvatarComponent, typeof i6.PdmBadgeComponent, typeof i7.PdmBreadcrumbComponent, typeof i8.PdmButtonGroupComponent, typeof i9.PdmButtonComponent, typeof i10.PdmCalendarComponent, typeof i11.PdmCarouselComponent, typeof i12.PdmCardComponent, typeof i13.PdmChartComponent, typeof i14.PdmCheckboxComponent, typeof i15.PdmCollapsibleComponent, typeof i16.PdmComboboxComponent, typeof i17.PdmCommandComponent, typeof i18.PdmContextMenuComponent, typeof i19.PdmDataTableComponent, typeof i20.PdmDatePickerComponent, typeof i21.PdmDialogComponent, typeof i22.PdmDropdownMenuComponent, typeof i23.PdmDrawerComponent, typeof i24.PdmEmptyComponent, typeof i25.PdmFieldComponent, typeof i26.PdmHoverCardComponent, typeof i27.PdmIconComponent, typeof i28.PdmItemComponent, typeof i29.PdmInputComponent, typeof i30.PdmInputPasswordComponent, typeof i31.PdmInputGroupComponent, typeof i32.PdmInputOtpComponent, typeof i33.PdmKbdComponent, typeof i34.PdmLabelComponent, typeof i35.PdmMenubarComponent, typeof i36.PdmNativeSelectComponent, typeof i37.PdmNavigationMenuComponent, typeof i38.
|
|
65
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PdmUiKitModule, [typeof i1.PdmAccordionComponent, typeof i2.PdmAlertComponent, typeof i3.PdmAlertDialogComponent, typeof i4.PdmAspectRatioComponent, typeof i5.PdmAvatarComponent, typeof i6.PdmBadgeComponent, typeof i7.PdmBreadcrumbComponent, typeof i8.PdmButtonGroupComponent, typeof i9.PdmButtonComponent, typeof i10.PdmCalendarComponent, typeof i11.PdmCarouselComponent, typeof i12.PdmCardComponent, typeof i13.PdmChartComponent, typeof i14.PdmCheckboxComponent, typeof i15.PdmCollapsibleComponent, typeof i16.PdmComboboxComponent, typeof i17.PdmCommandComponent, typeof i18.PdmContextMenuComponent, typeof i19.PdmDataTableComponent, typeof i20.PdmDatePickerComponent, typeof i21.PdmDialogComponent, typeof i22.PdmDropdownMenuComponent, typeof i23.PdmDrawerComponent, typeof i24.PdmEmptyComponent, typeof i25.PdmFieldComponent, typeof i26.PdmHoverCardComponent, typeof i27.PdmIconComponent, typeof i28.PdmItemComponent, typeof i29.PdmInputComponent, typeof i30.PdmInputPasswordComponent, typeof i31.PdmInputGroupComponent, typeof i32.PdmInputOtpComponent, typeof i33.PdmKbdComponent, typeof i34.PdmLabelComponent, typeof i35.PdmMenubarComponent, typeof i36.PdmNativeSelectComponent, typeof i37.PdmNavigationMenuComponent, typeof i38.PdmOutsideClickDirective, typeof i39.PdmPaginationComponent, typeof i40.PdmPopoverComponent, typeof i41.PdmProgressComponent, typeof i42.PdmRadioGroupComponent, typeof i43.PdmScrollAreaComponent, typeof i44.PdmSelectComponent, typeof i45.PdmSelectOptionDirective, typeof i46.PdmSeparatorComponent, typeof i47.PdmSheetComponent, typeof i48.PdmSidebarComponent, typeof i49.PdmSkeletonComponent, typeof i50.PdmSliderComponent, typeof i51.PdmSonnerComponent, typeof i52.PdmSpinnerComponent, typeof i53.PdmSwitchComponent, typeof i54.PdmTableComponent, typeof i55.PdmTabsComponent, typeof i56.PdmTextareaComponent, typeof i57.PdmToggleComponent, typeof i58.PdmToggleGroupComponent, typeof i59.PdmTooltipComponent], [typeof i60.CommonModule, typeof i61.OverlayModule], [typeof i1.PdmAccordionComponent, typeof i2.PdmAlertComponent, typeof i3.PdmAlertDialogComponent, typeof i4.PdmAspectRatioComponent, typeof i5.PdmAvatarComponent, typeof i6.PdmBadgeComponent, typeof i7.PdmBreadcrumbComponent, typeof i8.PdmButtonGroupComponent, typeof i9.PdmButtonComponent, typeof i10.PdmCalendarComponent, typeof i11.PdmCarouselComponent, typeof i12.PdmCardComponent, typeof i13.PdmChartComponent, typeof i14.PdmCheckboxComponent, typeof i15.PdmCollapsibleComponent, typeof i16.PdmComboboxComponent, typeof i17.PdmCommandComponent, typeof i18.PdmContextMenuComponent, typeof i19.PdmDataTableComponent, typeof i20.PdmDatePickerComponent, typeof i21.PdmDialogComponent, typeof i22.PdmDropdownMenuComponent, typeof i23.PdmDrawerComponent, typeof i24.PdmEmptyComponent, typeof i25.PdmFieldComponent, typeof i26.PdmHoverCardComponent, typeof i27.PdmIconComponent, typeof i28.PdmItemComponent, typeof i29.PdmInputComponent, typeof i30.PdmInputPasswordComponent, typeof i31.PdmInputGroupComponent, typeof i32.PdmInputOtpComponent, typeof i33.PdmKbdComponent, typeof i34.PdmLabelComponent, typeof i35.PdmMenubarComponent, typeof i36.PdmNativeSelectComponent, typeof i37.PdmNavigationMenuComponent, typeof i38.PdmOutsideClickDirective, typeof i39.PdmPaginationComponent, typeof i40.PdmPopoverComponent, typeof i41.PdmProgressComponent, typeof i42.PdmRadioGroupComponent, typeof i43.PdmScrollAreaComponent, typeof i44.PdmSelectComponent, typeof i45.PdmSelectOptionDirective, typeof i46.PdmSeparatorComponent, typeof i47.PdmSheetComponent, typeof i48.PdmSidebarComponent, typeof i49.PdmSkeletonComponent, typeof i50.PdmSliderComponent, typeof i51.PdmSonnerComponent, typeof i52.PdmSpinnerComponent, typeof i53.PdmSwitchComponent, typeof i54.PdmTableComponent, typeof i55.PdmTabsComponent, typeof i56.PdmTextareaComponent, typeof i57.PdmToggleComponent, typeof i58.PdmToggleGroupComponent, typeof i59.PdmTooltipComponent]>;
|
|
65
66
|
static ɵinj: i0.ɵɵInjectorDeclaration<PdmUiKitModule>;
|
|
66
67
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './lib/pdm-ui-kit.module';
|
|
2
2
|
export * from './lib/overlay/pdm-overlay-options';
|
|
3
3
|
export * from './lib/overlay/create-flexible-position-strategy';
|
|
4
|
+
export * from './lib/overlay/pdm-outside-click.directive';
|
|
4
5
|
export * from './lib/components/accordion/accordion.component';
|
|
5
6
|
export * from './lib/components/alert/alert.component';
|
|
6
7
|
export * from './lib/components/alert-dialog/alert-dialog.component';
|