@coreui/angular-pro 5.0.0-alpha.5 → 5.0.0-alpha.7
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/LICENSE +2 -3
- package/README.md +2 -2
- package/esm2022/lib/avatar/avatar.component.mjs +5 -6
- package/esm2022/lib/backdrop/backdrop.service.mjs +2 -2
- package/esm2022/lib/carousel/carousel/carousel.component.mjs +58 -60
- package/esm2022/lib/date-range-picker/date-range-picker/date-range-picker.component.mjs +7 -4
- package/esm2022/lib/header/header/header.component.mjs +4 -4
- package/esm2022/lib/multi-select/multi-select/multi-select.component.mjs +10 -10
- package/esm2022/lib/navbar/navbar.component.mjs +2 -2
- package/esm2022/lib/offcanvas/offcanvas/offcanvas.component.mjs +4 -4
- package/esm2022/lib/popover/popover.directive.mjs +19 -21
- package/esm2022/lib/services/intersection.service.mjs +29 -12
- package/esm2022/lib/sidebar/public_api.mjs +3 -3
- package/esm2022/lib/sidebar/sidebar/sidebar.component.mjs +11 -12
- package/esm2022/lib/sidebar/sidebar-toggler/sidebar-toggler.directive.mjs +39 -0
- package/esm2022/lib/sidebar/sidebar.module.mjs +6 -6
- package/esm2022/lib/smart-table/smart-table.type.mjs +1 -1
- package/esm2022/lib/toast/toast/toast.component.mjs +5 -5
- package/esm2022/lib/tooltip/tooltip.directive.mjs +16 -17
- package/esm2022/lib/utilities/public_api.mjs +4 -3
- package/esm2022/lib/utilities/shadow-on-scroll.directive.mjs +48 -0
- package/esm2022/lib/utilities/utilities.module.mjs +5 -29
- package/fesm2022/coreui-angular-pro.mjs +267 -232
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/lib/avatar/avatar.component.d.ts +1 -1
- package/lib/carousel/carousel/carousel.component.d.ts +9 -10
- package/lib/multi-select/multi-select/multi-select.component.d.ts +8 -8
- package/lib/popover/popover.directive.d.ts +1 -1
- package/lib/services/intersection.service.d.ts +7 -9
- package/lib/sidebar/public_api.d.ts +2 -2
- package/lib/sidebar/sidebar-toggler/sidebar-toggler.directive.d.ts +9 -0
- package/lib/sidebar/sidebar.module.d.ts +2 -2
- package/lib/smart-table/smart-table.type.d.ts +2 -0
- package/lib/toast/toast/toast.component.d.ts +1 -1
- package/lib/tooltip/tooltip.directive.d.ts +1 -1
- package/lib/utilities/public_api.d.ts +3 -2
- package/lib/utilities/shadow-on-scroll.directive.d.ts +8 -0
- package/lib/utilities/utilities.module.d.ts +7 -6
- package/package.json +3 -3
- package/esm2022/lib/sidebar/sidebar-toggler/sidebar-toggler.component.mjs +0 -36
- package/lib/sidebar/sidebar-toggler/sidebar-toggler.component.d.ts +0 -8
|
@@ -37,5 +37,5 @@ export declare class AvatarComponent {
|
|
|
37
37
|
get statusClass(): any;
|
|
38
38
|
get hostClasses(): any;
|
|
39
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "c-avatar", never, { "color": { "alias": "color"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "size": { "alias": "size"; "required": false; }; "src": { "alias": "src"; "required": false; }; "status": { "alias": "status"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; }, {}, never, ["*"], true, [{ directive: typeof i1.TextColorDirective; inputs: { "cTextColor": "textColor"; }; outputs: {}; }]>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "c-avatar", never, { "color": { "alias": "color"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "size": { "alias": "size"; "required": false; }; "src": { "alias": "src"; "required": false; }; "status": { "alias": "status"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; }, {}, never, ["*", "*"], true, [{ directive: typeof i1.TextColorDirective; inputs: { "cTextColor": "textColor"; }; outputs: {}; }]>;
|
|
41
41
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AfterContentInit, ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { IntersectionService } from '../../services
|
|
3
|
-
import { ListenersService } from '../../services
|
|
2
|
+
import { IntersectionService } from '../../services';
|
|
3
|
+
import { ListenersService } from '../../services';
|
|
4
4
|
import { Triggers } from '../../coreui.types';
|
|
5
5
|
import { CarouselState } from '../carousel-state';
|
|
6
6
|
import { CarouselService } from '../carousel.service';
|
|
@@ -8,6 +8,7 @@ import { CarouselConfig } from '../carousel.config';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "../../shared/theme.directive";
|
|
10
10
|
export declare class CarouselComponent implements OnInit, OnDestroy, AfterContentInit {
|
|
11
|
+
#private;
|
|
11
12
|
private config;
|
|
12
13
|
private hostElement;
|
|
13
14
|
private carouselService;
|
|
@@ -64,22 +65,20 @@ export declare class CarouselComponent implements OnInit, OnDestroy, AfterConten
|
|
|
64
65
|
* @type number
|
|
65
66
|
*/
|
|
66
67
|
itemChange: EventEmitter<number>;
|
|
67
|
-
|
|
68
|
+
get hostClasses(): any;
|
|
68
69
|
private timerId;
|
|
69
|
-
private intersectingSubscription?;
|
|
70
70
|
private activeItemInterval;
|
|
71
71
|
private swipeSubscription?;
|
|
72
|
-
get hostClasses(): any;
|
|
73
|
-
private _visible;
|
|
74
|
-
get visible(): boolean;
|
|
75
|
-
set visible(value: boolean);
|
|
76
72
|
ngOnInit(): void;
|
|
77
73
|
ngOnDestroy(): void;
|
|
78
74
|
ngAfterContentInit(): void;
|
|
79
|
-
setTimer(): void;
|
|
80
|
-
resetTimer(): void;
|
|
81
75
|
private setListeners;
|
|
82
76
|
private clearListeners;
|
|
77
|
+
set visible(value: boolean);
|
|
78
|
+
get visible(): boolean;
|
|
79
|
+
private _visible;
|
|
80
|
+
setTimer(): void;
|
|
81
|
+
resetTimer(): void;
|
|
83
82
|
private carouselStateSubscribe;
|
|
84
83
|
private intersectionServiceSubscribe;
|
|
85
84
|
private swipeSubscribe;
|
|
@@ -13,7 +13,7 @@ interface IPluralMap {
|
|
|
13
13
|
[k: string]: string;
|
|
14
14
|
}
|
|
15
15
|
export declare const observeReferenceModifier: Modifier<string, any>;
|
|
16
|
-
export declare class MultiSelectComponent<
|
|
16
|
+
export declare class MultiSelectComponent<TValue extends string | number> implements IMultiSelect<TValue>, ControlValueAccessor, AfterViewInit, OnChanges, OnDestroy, OnInit {
|
|
17
17
|
#private;
|
|
18
18
|
private elementRef;
|
|
19
19
|
private renderer;
|
|
@@ -29,10 +29,10 @@ export declare class MultiSelectComponent<T extends string | number> implements
|
|
|
29
29
|
readonly userOptionsArray$: BehaviorSubject<IOption[]>;
|
|
30
30
|
readonly optionsSelected$: BehaviorSubject<IOption[]>;
|
|
31
31
|
readonly optionsSelected: Map<any, IOption>;
|
|
32
|
-
readonly value$: BehaviorSubject<
|
|
32
|
+
readonly value$: BehaviorSubject<TValue[]>;
|
|
33
33
|
onChange: (value: any) => void;
|
|
34
34
|
onTouched: () => void;
|
|
35
|
-
writeValue(value:
|
|
35
|
+
writeValue(value: TValue | TValue[]): void;
|
|
36
36
|
registerOnChange(fn: any): void;
|
|
37
37
|
registerOnTouched(fn: any): void;
|
|
38
38
|
setDisabledState(isDisabled: boolean): void;
|
|
@@ -185,15 +185,15 @@ export declare class MultiSelectComponent<T extends string | number> implements
|
|
|
185
185
|
size?: 'sm' | 'lg';
|
|
186
186
|
/**
|
|
187
187
|
* Initial value of multi-select
|
|
188
|
-
* @type
|
|
188
|
+
* @type TValue | TValue[]
|
|
189
189
|
*/
|
|
190
|
-
set value(value:
|
|
191
|
-
get value():
|
|
190
|
+
set value(value: TValue | TValue[]);
|
|
191
|
+
get value(): TValue | TValue[];
|
|
192
192
|
/**
|
|
193
193
|
* Emits valueChange
|
|
194
|
-
* @type
|
|
194
|
+
* @type TValue | TValue[]
|
|
195
195
|
*/
|
|
196
|
-
readonly valueChange: EventEmitter<
|
|
196
|
+
readonly valueChange: EventEmitter<TValue | TValue[]>;
|
|
197
197
|
/**
|
|
198
198
|
* Toggle visual validation feedback.
|
|
199
199
|
* @type boolean | undefined
|
|
@@ -5,6 +5,7 @@ import { ListenersService } from '../services/listeners.service';
|
|
|
5
5
|
import { IntersectionService } from '../services';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class PopoverDirective implements OnChanges, OnDestroy, OnInit, AfterViewInit {
|
|
8
|
+
#private;
|
|
8
9
|
private document;
|
|
9
10
|
private renderer;
|
|
10
11
|
private hostElement;
|
|
@@ -44,7 +45,6 @@ export declare class PopoverDirective implements OnChanges, OnDestroy, OnInit, A
|
|
|
44
45
|
private popoverRef;
|
|
45
46
|
private popperInstance;
|
|
46
47
|
private _popperOptions;
|
|
47
|
-
private intersectingSubscription?;
|
|
48
48
|
constructor(document: Document, renderer: Renderer2, hostElement: ElementRef, viewContainerRef: ViewContainerRef, listenersService: ListenersService, changeDetectorRef: ChangeDetectorRef, intersectionService: IntersectionService);
|
|
49
49
|
ngAfterViewInit(): void;
|
|
50
50
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnDestroy } from '@angular/core';
|
|
1
|
+
import { ElementRef, OnDestroy } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export interface IIntersectionObserverInit {
|
|
4
4
|
root?: Element | null;
|
|
@@ -6,15 +6,13 @@ export interface IIntersectionObserverInit {
|
|
|
6
6
|
threshold?: number | number[];
|
|
7
7
|
}
|
|
8
8
|
export declare class IntersectionService implements OnDestroy {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
intersecting$: import("rxjs").Observable<
|
|
12
|
-
private intersectionObserver;
|
|
13
|
-
private hostElement;
|
|
9
|
+
#private;
|
|
10
|
+
platformId: Object;
|
|
11
|
+
readonly intersecting$: import("rxjs").Observable<any>;
|
|
14
12
|
private defaultObserverOptions;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
13
|
+
hostElementRefs: Map<ElementRef, IntersectionObserver | null>;
|
|
14
|
+
createIntersectionObserver(hostElement: ElementRef, observerOptions?: IIntersectionObserverInit): void;
|
|
15
|
+
unobserve(elementRef: ElementRef): void;
|
|
18
16
|
ngOnDestroy(): void;
|
|
19
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<IntersectionService, never>;
|
|
20
18
|
static ɵprov: i0.ɵɵInjectableDeclaration<IntersectionService>;
|
|
@@ -2,8 +2,8 @@ export { SidebarComponent } from './sidebar/sidebar.component';
|
|
|
2
2
|
export { SidebarService } from './sidebar.service';
|
|
3
3
|
export { SidebarBrandComponent } from './sidebar-brand/sidebar-brand.component';
|
|
4
4
|
export { SidebarToggleDirective } from './sidebar-toggle/sidebar-toggle.directive';
|
|
5
|
-
export {
|
|
5
|
+
export { SidebarTogglerDirective } from './sidebar-toggler/sidebar-toggler.directive';
|
|
6
6
|
export { SidebarHeaderComponent } from './sidebar-header/sidebar-header.component';
|
|
7
7
|
export { SidebarFooterComponent } from './sidebar-footer/sidebar-footer.component';
|
|
8
|
-
export { SidebarNavComponent, INavData } from './sidebar-nav';
|
|
8
|
+
export { SidebarNavComponent, INavData, SidebarNavHelper } from './sidebar-nav';
|
|
9
9
|
export { SidebarModule } from './sidebar.module';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "../sidebar-toggle/sidebar-toggle.directive";
|
|
3
|
+
export declare class SidebarTogglerDirective {
|
|
4
|
+
role: string;
|
|
5
|
+
sidebarTogglerClass: boolean;
|
|
6
|
+
get getStyles(): any;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarTogglerDirective, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SidebarTogglerDirective, "[cSidebarToggler]", never, { "role": { "alias": "role"; "required": false; }; }, {}, never, never, true, [{ directive: typeof i1.SidebarToggleDirective; inputs: { "cSidebarToggle": "cSidebarToggler"; "toggle": "toggle"; }; outputs: {}; }]>;
|
|
9
|
+
}
|
|
@@ -13,9 +13,9 @@ import * as i11 from "./sidebar-nav/sidebar-nav-link.component";
|
|
|
13
13
|
import * as i12 from "./sidebar-nav/sidebar-nav-link.pipe";
|
|
14
14
|
import * as i13 from "./sidebar-nav/sidebar-nav-title.component";
|
|
15
15
|
import * as i14 from "./sidebar-toggle/sidebar-toggle.directive";
|
|
16
|
-
import * as i15 from "./sidebar-toggler/sidebar-toggler.
|
|
16
|
+
import * as i15 from "./sidebar-toggler/sidebar-toggler.directive";
|
|
17
17
|
export declare class SidebarModule {
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarModule, never>;
|
|
19
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SidebarModule, never, [typeof i1.SidebarComponent, typeof i2.SidebarBrandComponent, typeof i3.SidebarFooterComponent, typeof i4.SidebarHeaderComponent, typeof i5.SidebarNavComponent, typeof i6.SidebarNavBadgePipe, typeof i7.SidebarNavDividerComponent, typeof i5.SidebarNavGroupComponent, typeof i8.SidebarNavIconPipe, typeof i9.SidebarNavItemClassPipe, typeof i10.SidebarNavLabelComponent, typeof i11.SidebarNavLinkComponent, typeof i11.SidebarNavLinkContentComponent, typeof i12.SidebarNavLinkPipe, typeof i13.SidebarNavTitleComponent, typeof i14.SidebarToggleDirective, typeof i15.
|
|
19
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SidebarModule, never, [typeof i1.SidebarComponent, typeof i2.SidebarBrandComponent, typeof i3.SidebarFooterComponent, typeof i4.SidebarHeaderComponent, typeof i5.SidebarNavComponent, typeof i6.SidebarNavBadgePipe, typeof i7.SidebarNavDividerComponent, typeof i5.SidebarNavGroupComponent, typeof i8.SidebarNavIconPipe, typeof i9.SidebarNavItemClassPipe, typeof i10.SidebarNavLabelComponent, typeof i11.SidebarNavLinkComponent, typeof i11.SidebarNavLinkContentComponent, typeof i12.SidebarNavLinkPipe, typeof i13.SidebarNavTitleComponent, typeof i14.SidebarToggleDirective, typeof i15.SidebarTogglerDirective], [typeof i1.SidebarComponent, typeof i14.SidebarToggleDirective, typeof i15.SidebarTogglerDirective, typeof i2.SidebarBrandComponent, typeof i5.SidebarNavComponent, typeof i4.SidebarHeaderComponent, typeof i3.SidebarFooterComponent]>;
|
|
20
20
|
static ɵinj: i0.ɵɵInjectorDeclaration<SidebarModule>;
|
|
21
21
|
}
|
|
@@ -5,6 +5,7 @@ import { ListenersService } from '../services/listeners.service';
|
|
|
5
5
|
import { IntersectionService } from '../services';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class TooltipDirective implements OnChanges, OnDestroy, OnInit, AfterViewInit {
|
|
8
|
+
#private;
|
|
8
9
|
private document;
|
|
9
10
|
private renderer;
|
|
10
11
|
private hostElement;
|
|
@@ -44,7 +45,6 @@ export declare class TooltipDirective implements OnChanges, OnDestroy, OnInit, A
|
|
|
44
45
|
private tooltipRef;
|
|
45
46
|
private popperInstance;
|
|
46
47
|
private _popperOptions;
|
|
47
|
-
private intersectingSubscription?;
|
|
48
48
|
constructor(document: Document, renderer: Renderer2, hostElement: ElementRef, viewContainerRef: ViewContainerRef, listenersService: ListenersService, changeDetectorRef: ChangeDetectorRef, intersectionService: IntersectionService);
|
|
49
49
|
ngAfterViewInit(): void;
|
|
50
50
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
export { AlignDirective } from './align.directive';
|
|
1
2
|
export { BgColorDirective } from './bg-color.directive';
|
|
2
3
|
export { BorderDirective } from './border.directive';
|
|
3
|
-
export { TextColorDirective } from './text-color.directive';
|
|
4
4
|
export { RoundedDirective } from './rounded.directive';
|
|
5
|
-
export {
|
|
5
|
+
export { ShadowOnScrollDirective } from './shadow-on-scroll.directive';
|
|
6
|
+
export { TextColorDirective } from './text-color.directive';
|
|
6
7
|
export { UtilitiesModule } from './utilities.module';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ShadowOnScrollDirective {
|
|
3
|
+
#private;
|
|
4
|
+
constructor();
|
|
5
|
+
set cShadowOnScroll(value: 'sm' | 'lg' | 'none' | boolean);
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ShadowOnScrollDirective, never>;
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ShadowOnScrollDirective, "[cShadowOnScroll]", never, { "cShadowOnScroll": { "alias": "cShadowOnScroll"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./
|
|
3
|
-
import * as i2 from "./
|
|
4
|
-
import * as i3 from "./
|
|
5
|
-
import * as i4 from "./
|
|
6
|
-
import * as i5 from "./
|
|
2
|
+
import * as i1 from "./align.directive";
|
|
3
|
+
import * as i2 from "./bg-color.directive";
|
|
4
|
+
import * as i3 from "./border.directive";
|
|
5
|
+
import * as i4 from "./rounded.directive";
|
|
6
|
+
import * as i5 from "./shadow-on-scroll.directive";
|
|
7
|
+
import * as i6 from "./text-color.directive";
|
|
7
8
|
export declare class UtilitiesModule {
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<UtilitiesModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<UtilitiesModule, never, [typeof i1.
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UtilitiesModule, never, [typeof i1.AlignDirective, typeof i2.BgColorDirective, typeof i3.BorderDirective, typeof i4.RoundedDirective, typeof i5.ShadowOnScrollDirective, typeof i6.TextColorDirective], [typeof i1.AlignDirective, typeof i2.BgColorDirective, typeof i3.BorderDirective, typeof i4.RoundedDirective, typeof i5.ShadowOnScrollDirective, typeof i6.TextColorDirective]>;
|
|
10
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<UtilitiesModule>;
|
|
11
12
|
}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.0.0-alpha.
|
|
3
|
+
"version": "5.0.0-alpha.7",
|
|
4
4
|
"description": "CoreUI Pro Components Library for Angular",
|
|
5
|
-
"copyright": "Copyright
|
|
5
|
+
"copyright": "Copyright 2024 creativeLabs Łukasz Holeczek",
|
|
6
6
|
"homepage": "https://coreui.io/angular",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "creativeLabs Łukasz Holeczek",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@angular/forms": "^17.0.0",
|
|
30
30
|
"@angular/router": "^17.0.0",
|
|
31
31
|
"@coreui/coreui-pro": "~5.0.0-rc.1",
|
|
32
|
-
"@coreui/icons-angular": "~4.7.3 ||
|
|
32
|
+
"@coreui/icons-angular": "~4.7.3 || ^5.0.0",
|
|
33
33
|
"rxjs": "^7.8.1"
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { Component, HostBinding, Input } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class SidebarTogglerComponent {
|
|
4
|
-
constructor() {
|
|
5
|
-
this.role = 'button';
|
|
6
|
-
this.sidebarTogglerClass = true;
|
|
7
|
-
}
|
|
8
|
-
get getStyles() {
|
|
9
|
-
return {
|
|
10
|
-
appearance: 'button',
|
|
11
|
-
'align-items': 'flex-start',
|
|
12
|
-
};
|
|
13
|
-
}
|
|
14
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: SidebarTogglerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
15
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.8", type: SidebarTogglerComponent, isStandalone: true, selector: "c-sidebar-toggler", inputs: { role: "role" }, host: { properties: { "attr.role": "this.role", "class.sidebar-toggler": "this.sidebarTogglerClass", "style": "this.getStyles" } }, ngImport: i0, template: ``, isInline: true }); }
|
|
16
|
-
}
|
|
17
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: SidebarTogglerComponent, decorators: [{
|
|
18
|
-
type: Component,
|
|
19
|
-
args: [{
|
|
20
|
-
selector: 'c-sidebar-toggler',
|
|
21
|
-
template: ``,
|
|
22
|
-
standalone: true
|
|
23
|
-
}]
|
|
24
|
-
}], propDecorators: { role: [{
|
|
25
|
-
type: HostBinding,
|
|
26
|
-
args: ['attr.role']
|
|
27
|
-
}, {
|
|
28
|
-
type: Input
|
|
29
|
-
}], sidebarTogglerClass: [{
|
|
30
|
-
type: HostBinding,
|
|
31
|
-
args: ['class.sidebar-toggler']
|
|
32
|
-
}], getStyles: [{
|
|
33
|
-
type: HostBinding,
|
|
34
|
-
args: ['style']
|
|
35
|
-
}] } });
|
|
36
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2lkZWJhci10b2dnbGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NvcmV1aS1hbmd1bGFyL3NyYy9saWIvc2lkZWJhci9zaWRlYmFyLXRvZ2dsZXIvc2lkZWJhci10b2dnbGVyLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFdBQVcsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBTzlELE1BQU0sT0FBTyx1QkFBdUI7SUFMcEM7UUFRVyxTQUFJLEdBQUcsUUFBUSxDQUFDO1FBRWEsd0JBQW1CLEdBQUcsSUFBSSxDQUFDO0tBVWxFO0lBUkMsSUFDSSxTQUFTO1FBQ1gsT0FBTztZQUNMLFVBQVUsRUFBRSxRQUFRO1lBQ3BCLGFBQWEsRUFBRSxZQUFZO1NBQzVCLENBQUM7SUFDSixDQUFDOzhHQWJVLHVCQUF1QjtrR0FBdkIsdUJBQXVCLDJPQUh4QixFQUFFOzsyRkFHRCx1QkFBdUI7a0JBTG5DLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLG1CQUFtQjtvQkFDN0IsUUFBUSxFQUFFLEVBQUU7b0JBQ1osVUFBVSxFQUFFLElBQUk7aUJBQ2pCOzhCQUlVLElBQUk7c0JBRFosV0FBVzt1QkFBQyxXQUFXOztzQkFDdkIsS0FBSztnQkFFZ0MsbUJBQW1CO3NCQUF4RCxXQUFXO3VCQUFDLHVCQUF1QjtnQkFHaEMsU0FBUztzQkFEWixXQUFXO3VCQUFDLE9BQU8iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEhvc3RCaW5kaW5nLCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdjLXNpZGViYXItdG9nZ2xlcicsXG4gIHRlbXBsYXRlOiBgYCxcbiAgc3RhbmRhbG9uZTogdHJ1ZVxufSlcbmV4cG9ydCBjbGFzcyBTaWRlYmFyVG9nZ2xlckNvbXBvbmVudCB7XG5cbiAgQEhvc3RCaW5kaW5nKCdhdHRyLnJvbGUnKVxuICBASW5wdXQoKSByb2xlID0gJ2J1dHRvbic7XG5cbiAgQEhvc3RCaW5kaW5nKCdjbGFzcy5zaWRlYmFyLXRvZ2dsZXInKSBzaWRlYmFyVG9nZ2xlckNsYXNzID0gdHJ1ZTtcblxuICBASG9zdEJpbmRpbmcoJ3N0eWxlJylcbiAgZ2V0IGdldFN0eWxlcygpOiBhbnkge1xuICAgIHJldHVybiB7XG4gICAgICBhcHBlYXJhbmNlOiAnYnV0dG9uJyxcbiAgICAgICdhbGlnbi1pdGVtcyc6ICdmbGV4LXN0YXJ0JyxcbiAgICB9O1xuICB9XG5cbn1cbiJdfQ==
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class SidebarTogglerComponent {
|
|
3
|
-
role: string;
|
|
4
|
-
sidebarTogglerClass: boolean;
|
|
5
|
-
get getStyles(): any;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarTogglerComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarTogglerComponent, "c-sidebar-toggler", never, { "role": { "alias": "role"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
-
}
|