@coreui/angular-pro 5.0.0-alpha.6 → 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/esm2022/lib/avatar/avatar.component.mjs +5 -6
- package/esm2022/lib/header/header/header.component.mjs +4 -4
- package/esm2022/lib/sidebar/public_api.mjs +2 -2
- package/esm2022/lib/sidebar/sidebar-toggler/sidebar-toggler.directive.mjs +39 -0
- package/esm2022/lib/sidebar/sidebar.module.mjs +6 -6
- 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 +108 -85
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/lib/avatar/avatar.component.d.ts +1 -1
- package/lib/sidebar/public_api.d.ts +1 -1
- package/lib/sidebar/sidebar-toggler/sidebar-toggler.directive.d.ts +9 -0
- package/lib/sidebar/sidebar.module.d.ts +2 -2
- 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 +2 -2
- package/esm2022/lib/sidebar/sidebar-toggler/sidebar-toggler.component.mjs +0 -36
- package/lib/sidebar/sidebar-toggler/sidebar-toggler.component.d.ts +0 -8
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Directive, Input, ElementRef, inject, Renderer2, booleanAttribute, NgModule, HostBinding, Injectable, Component, EventEmitter, Output, ContentChildren, HostListener,
|
|
2
|
+
import { Directive, Input, ElementRef, inject, Renderer2, booleanAttribute, NgModule, HostBinding, Injectable, Component, EventEmitter, Output, ContentChildren, HostListener, DestroyRef, signal, effect, RendererFactory2, Pipe, computed, numberAttribute, ViewChildren, PLATFORM_ID, Inject, ViewChild, forwardRef, Optional, ContentChild, ChangeDetectionStrategy, NgZone, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
3
3
|
import { coerceBooleanProperty, coerceNumberProperty } from '@angular/cdk/coercion';
|
|
4
4
|
import * as i3 from '@angular/common';
|
|
5
|
-
import { NgTemplateOutlet, NgIf,
|
|
5
|
+
import { NgTemplateOutlet, NgIf, DOCUMENT, NgClass, NgForOf, AsyncPipe, NgStyle, NgSwitch, NgSwitchCase, NgSwitchDefault, isPlatformServer, CommonModule, formatDate, I18nPluralPipe, isPlatformBrowser, JsonPipe } from '@angular/common';
|
|
6
6
|
import * as i1 from '@angular/animations';
|
|
7
7
|
import { animate, animation, style, useAnimation, state, transition, trigger, query, group } from '@angular/animations';
|
|
8
|
-
import {
|
|
8
|
+
import { takeUntilDestroyed, toSignal } from '@angular/core/rxjs-interop';
|
|
9
|
+
import { fromEvent, Subject, BehaviorSubject, Observable, skip, distinctUntilChanged as distinctUntilChanged$1, map as map$1, debounceTime as debounceTime$1 } from 'rxjs';
|
|
9
10
|
import * as i1$1 from '@angular/router';
|
|
10
11
|
import { RouterModule, NavigationEnd, RouterLink } from '@angular/router';
|
|
11
|
-
import { takeUntilDestroyed, toSignal } from '@angular/core/rxjs-interop';
|
|
12
12
|
import { filter, tap, distinctUntilChanged, take, finalize, withLatestFrom, zipWith, debounceTime, map, delay, combineLatestWith } from 'rxjs/operators';
|
|
13
13
|
import * as i1$2 from '@angular/cdk/a11y';
|
|
14
14
|
import { FocusMonitor, A11yModule, FocusKeyManager } from '@angular/cdk/a11y';
|
|
@@ -979,6 +979,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImpor
|
|
|
979
979
|
}]
|
|
980
980
|
}] });
|
|
981
981
|
|
|
982
|
+
class AlignDirective {
|
|
983
|
+
get hostClasses() {
|
|
984
|
+
return {
|
|
985
|
+
[`align-${this.align}`]: !!this.align,
|
|
986
|
+
};
|
|
987
|
+
}
|
|
988
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: AlignDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
989
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: AlignDirective, isStandalone: true, selector: "[cAlign]", inputs: { align: ["cAlign", "align"] }, host: { properties: { "class": "this.hostClasses" } }, ngImport: i0 }); }
|
|
990
|
+
}
|
|
991
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: AlignDirective, decorators: [{
|
|
992
|
+
type: Directive,
|
|
993
|
+
args: [{
|
|
994
|
+
selector: '[cAlign]',
|
|
995
|
+
standalone: true
|
|
996
|
+
}]
|
|
997
|
+
}], propDecorators: { align: [{
|
|
998
|
+
type: Input,
|
|
999
|
+
args: ['cAlign']
|
|
1000
|
+
}], hostClasses: [{
|
|
1001
|
+
type: HostBinding,
|
|
1002
|
+
args: ['class']
|
|
1003
|
+
}] } });
|
|
1004
|
+
|
|
982
1005
|
class BgColorDirective {
|
|
983
1006
|
get hostClasses() {
|
|
984
1007
|
return {
|
|
@@ -1076,37 +1099,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImpor
|
|
|
1076
1099
|
args: ['class']
|
|
1077
1100
|
}] } });
|
|
1078
1101
|
|
|
1079
|
-
class TextColorDirective {
|
|
1080
|
-
get hostClasses() {
|
|
1081
|
-
const color = this.color;
|
|
1082
|
-
return {
|
|
1083
|
-
[`text-${color}`]: !!color
|
|
1084
|
-
};
|
|
1085
|
-
}
|
|
1086
|
-
constructor() {
|
|
1087
|
-
/**
|
|
1088
|
-
* Set text-color of element
|
|
1089
|
-
* @type TextColors
|
|
1090
|
-
*/
|
|
1091
|
-
this.color = '';
|
|
1092
|
-
}
|
|
1093
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: TextColorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1094
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: TextColorDirective, isStandalone: true, selector: "[cTextColor]", inputs: { color: ["cTextColor", "color"] }, host: { properties: { "class": "this.hostClasses" } }, ngImport: i0 }); }
|
|
1095
|
-
}
|
|
1096
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: TextColorDirective, decorators: [{
|
|
1097
|
-
type: Directive,
|
|
1098
|
-
args: [{
|
|
1099
|
-
selector: '[cTextColor]',
|
|
1100
|
-
standalone: true
|
|
1101
|
-
}]
|
|
1102
|
-
}], ctorParameters: () => [], propDecorators: { color: [{
|
|
1103
|
-
type: Input,
|
|
1104
|
-
args: ['cTextColor']
|
|
1105
|
-
}], hostClasses: [{
|
|
1106
|
-
type: HostBinding,
|
|
1107
|
-
args: ['class']
|
|
1108
|
-
}] } });
|
|
1109
|
-
|
|
1110
1102
|
class RoundedDirective {
|
|
1111
1103
|
constructor() {
|
|
1112
1104
|
/**
|
|
@@ -1171,59 +1163,90 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImpor
|
|
|
1171
1163
|
args: ['class']
|
|
1172
1164
|
}] } });
|
|
1173
1165
|
|
|
1174
|
-
class
|
|
1166
|
+
class ShadowOnScrollDirective {
|
|
1167
|
+
#destroyRef = inject(DestroyRef);
|
|
1168
|
+
#document = inject(DOCUMENT);
|
|
1169
|
+
#elementRef = inject(ElementRef);
|
|
1170
|
+
#scrolled = signal(this.#document.documentElement.scrollTop > 0);
|
|
1171
|
+
#scrollEffect = effect(() => {
|
|
1172
|
+
this.#elementRef.nativeElement.classList.toggle(this.#shadowClass, this.#scrolled());
|
|
1173
|
+
});
|
|
1174
|
+
#observable;
|
|
1175
|
+
#shadowClass = 'shadow-sm';
|
|
1176
|
+
constructor() {
|
|
1177
|
+
this.#destroyRef.onDestroy(() => {
|
|
1178
|
+
this.#scrollEffect?.destroy();
|
|
1179
|
+
});
|
|
1180
|
+
}
|
|
1181
|
+
set cShadowOnScroll(value) {
|
|
1182
|
+
this.#scrolled.set(false);
|
|
1183
|
+
if (value) {
|
|
1184
|
+
this.#shadowClass = value === true ? 'shadow' : `shadow-${value}`;
|
|
1185
|
+
this.#observable = fromEvent(this.#document, 'scroll')
|
|
1186
|
+
.pipe(takeUntilDestroyed(this.#destroyRef))
|
|
1187
|
+
.subscribe(scrolled => {
|
|
1188
|
+
this.#scrolled.set(this.#document.documentElement.scrollTop > 0);
|
|
1189
|
+
});
|
|
1190
|
+
}
|
|
1191
|
+
else {
|
|
1192
|
+
this.#observable?.unsubscribe();
|
|
1193
|
+
}
|
|
1194
|
+
}
|
|
1195
|
+
;
|
|
1196
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ShadowOnScrollDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1197
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: ShadowOnScrollDirective, isStandalone: true, selector: "[cShadowOnScroll]", inputs: { cShadowOnScroll: "cShadowOnScroll" }, ngImport: i0 }); }
|
|
1198
|
+
}
|
|
1199
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ShadowOnScrollDirective, decorators: [{
|
|
1200
|
+
type: Directive,
|
|
1201
|
+
args: [{
|
|
1202
|
+
selector: '[cShadowOnScroll]',
|
|
1203
|
+
standalone: true
|
|
1204
|
+
}]
|
|
1205
|
+
}], ctorParameters: () => [], propDecorators: { cShadowOnScroll: [{
|
|
1206
|
+
type: Input
|
|
1207
|
+
}] } });
|
|
1208
|
+
|
|
1209
|
+
class TextColorDirective {
|
|
1175
1210
|
get hostClasses() {
|
|
1211
|
+
const color = this.color;
|
|
1176
1212
|
return {
|
|
1177
|
-
[`
|
|
1213
|
+
[`text-${color}`]: !!color
|
|
1178
1214
|
};
|
|
1179
1215
|
}
|
|
1180
|
-
|
|
1181
|
-
|
|
1216
|
+
constructor() {
|
|
1217
|
+
/**
|
|
1218
|
+
* Set text-color of element
|
|
1219
|
+
* @type TextColors
|
|
1220
|
+
*/
|
|
1221
|
+
this.color = '';
|
|
1222
|
+
}
|
|
1223
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: TextColorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1224
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: TextColorDirective, isStandalone: true, selector: "[cTextColor]", inputs: { color: ["cTextColor", "color"] }, host: { properties: { "class": "this.hostClasses" } }, ngImport: i0 }); }
|
|
1182
1225
|
}
|
|
1183
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type:
|
|
1226
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: TextColorDirective, decorators: [{
|
|
1184
1227
|
type: Directive,
|
|
1185
1228
|
args: [{
|
|
1186
|
-
selector: '[
|
|
1229
|
+
selector: '[cTextColor]',
|
|
1187
1230
|
standalone: true
|
|
1188
1231
|
}]
|
|
1189
|
-
}], propDecorators: {
|
|
1232
|
+
}], ctorParameters: () => [], propDecorators: { color: [{
|
|
1190
1233
|
type: Input,
|
|
1191
|
-
args: ['
|
|
1234
|
+
args: ['cTextColor']
|
|
1192
1235
|
}], hostClasses: [{
|
|
1193
1236
|
type: HostBinding,
|
|
1194
1237
|
args: ['class']
|
|
1195
1238
|
}] } });
|
|
1196
1239
|
|
|
1240
|
+
const UTILITY_DIRECTIVES = [AlignDirective, BgColorDirective, BorderDirective, RoundedDirective, ShadowOnScrollDirective, TextColorDirective];
|
|
1197
1241
|
class UtilitiesModule {
|
|
1198
1242
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: UtilitiesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1199
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.0.8", ngImport: i0, type: UtilitiesModule, imports: [BgColorDirective,
|
|
1200
|
-
BorderDirective,
|
|
1201
|
-
RoundedDirective,
|
|
1202
|
-
TextColorDirective,
|
|
1203
|
-
AlignDirective], exports: [BgColorDirective,
|
|
1204
|
-
BorderDirective,
|
|
1205
|
-
RoundedDirective,
|
|
1206
|
-
TextColorDirective,
|
|
1207
|
-
AlignDirective] }); }
|
|
1243
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.0.8", ngImport: i0, type: UtilitiesModule, imports: [AlignDirective, BgColorDirective, BorderDirective, RoundedDirective, ShadowOnScrollDirective, TextColorDirective], exports: [AlignDirective, BgColorDirective, BorderDirective, RoundedDirective, ShadowOnScrollDirective, TextColorDirective] }); }
|
|
1208
1244
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: UtilitiesModule }); }
|
|
1209
1245
|
}
|
|
1210
1246
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: UtilitiesModule, decorators: [{
|
|
1211
1247
|
type: NgModule,
|
|
1212
1248
|
args: [{
|
|
1213
|
-
imports: [
|
|
1214
|
-
BgColorDirective,
|
|
1215
|
-
BorderDirective,
|
|
1216
|
-
RoundedDirective,
|
|
1217
|
-
TextColorDirective,
|
|
1218
|
-
AlignDirective
|
|
1219
|
-
],
|
|
1220
|
-
exports: [
|
|
1221
|
-
BgColorDirective,
|
|
1222
|
-
BorderDirective,
|
|
1223
|
-
RoundedDirective,
|
|
1224
|
-
TextColorDirective,
|
|
1225
|
-
AlignDirective
|
|
1226
|
-
]
|
|
1249
|
+
imports: [...UTILITY_DIRECTIVES], exports: [...UTILITY_DIRECTIVES]
|
|
1227
1250
|
}]
|
|
1228
1251
|
}] });
|
|
1229
1252
|
|
|
@@ -1250,17 +1273,16 @@ class AvatarComponent {
|
|
|
1250
1273
|
};
|
|
1251
1274
|
}
|
|
1252
1275
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: AvatarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1253
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
1276
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.0.8", type: AvatarComponent, isStandalone: true, selector: "c-avatar", inputs: { color: "color", shape: "shape", size: "size", src: "src", status: "status", textColor: "textColor" }, host: { properties: { "class": "this.hostClasses" } }, hostDirectives: [{ directive: TextColorDirective, inputs: ["cTextColor", "textColor"] }], ngImport: i0, template: "<ng-container>\n <ng-container *ngTemplateOutlet=\"defaultImageTemplate\"></ng-container>\n @if (!!status) {\n <span [ngClass]=\"statusClass\"></span>\n }\n</ng-container>\n\n<ng-template #defaultImageTemplate>\n @if (!!src) {\n <img [src]=\"src\" class=\"avatar-img\" />\n } @else {\n <ng-content></ng-content>\n }\n <ng-template #imageContent>\n <ng-content></ng-content>\n </ng-template>\n</ng-template>\n", dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] }); }
|
|
1254
1277
|
}
|
|
1255
1278
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: AvatarComponent, decorators: [{
|
|
1256
1279
|
type: Component,
|
|
1257
1280
|
args: [{ selector: 'c-avatar', standalone: true, imports: [
|
|
1258
1281
|
NgTemplateOutlet,
|
|
1259
|
-
NgClass
|
|
1260
|
-
NgIf
|
|
1282
|
+
NgClass
|
|
1261
1283
|
], hostDirectives: [{
|
|
1262
1284
|
directive: TextColorDirective, inputs: ['cTextColor: textColor']
|
|
1263
|
-
}], template: "<ng-container>\n <ng-container *ngTemplateOutlet=\"defaultImageTemplate\"></ng-container>\n
|
|
1285
|
+
}], template: "<ng-container>\n <ng-container *ngTemplateOutlet=\"defaultImageTemplate\"></ng-container>\n @if (!!status) {\n <span [ngClass]=\"statusClass\"></span>\n }\n</ng-container>\n\n<ng-template #defaultImageTemplate>\n @if (!!src) {\n <img [src]=\"src\" class=\"avatar-img\" />\n } @else {\n <ng-content></ng-content>\n }\n <ng-template #imageContent>\n <ng-content></ng-content>\n </ng-template>\n</ng-template>\n" }]
|
|
1264
1286
|
}], ctorParameters: () => [], propDecorators: { color: [{
|
|
1265
1287
|
type: Input
|
|
1266
1288
|
}], shape: [{
|
|
@@ -8759,11 +8781,11 @@ class HeaderComponent {
|
|
|
8759
8781
|
};
|
|
8760
8782
|
}
|
|
8761
8783
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: HeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8762
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
8784
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.0.8", type: HeaderComponent, isStandalone: true, selector: "c-header, [c-header]", inputs: { container: "container", position: "position", role: "role" }, host: { properties: { "attr.role": "this.role", "class": "this.getClasses" } }, ngImport: i0, template: "@if (!!container) {\n <div [ngClass]=\"headerClasses\">\n <ng-content />\n </div>\n} @else {\n <ng-content />\n}\n", dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] }); }
|
|
8763
8785
|
}
|
|
8764
8786
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: HeaderComponent, decorators: [{
|
|
8765
8787
|
type: Component,
|
|
8766
|
-
args: [{ selector: 'c-header, [c-header]', standalone: true, imports: [NgClass
|
|
8788
|
+
args: [{ selector: 'c-header, [c-header]', standalone: true, imports: [NgClass], template: "@if (!!container) {\n <div [ngClass]=\"headerClasses\">\n <ng-content />\n </div>\n} @else {\n <ng-content />\n}\n" }]
|
|
8767
8789
|
}], propDecorators: { container: [{
|
|
8768
8790
|
type: Input
|
|
8769
8791
|
}], position: [{
|
|
@@ -13550,7 +13572,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImpor
|
|
|
13550
13572
|
args: ['click', ['$event']]
|
|
13551
13573
|
}] } });
|
|
13552
13574
|
|
|
13553
|
-
class
|
|
13575
|
+
class SidebarTogglerDirective {
|
|
13554
13576
|
constructor() {
|
|
13555
13577
|
this.role = 'button';
|
|
13556
13578
|
this.sidebarTogglerClass = true;
|
|
@@ -13559,17 +13581,18 @@ class SidebarTogglerComponent {
|
|
|
13559
13581
|
return {
|
|
13560
13582
|
appearance: 'button',
|
|
13561
13583
|
'align-items': 'flex-start',
|
|
13584
|
+
cursor: 'pointer'
|
|
13562
13585
|
};
|
|
13563
13586
|
}
|
|
13564
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type:
|
|
13565
|
-
static { this.ɵ
|
|
13587
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: SidebarTogglerDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
13588
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.8", type: SidebarTogglerDirective, isStandalone: true, selector: "[cSidebarToggler]", inputs: { role: "role" }, host: { properties: { "attr.role": "this.role", "class.sidebar-toggler": "this.sidebarTogglerClass", "style": "this.getStyles" } }, hostDirectives: [{ directive: SidebarToggleDirective, inputs: ["cSidebarToggle", "cSidebarToggler", "toggle", "toggle"] }], ngImport: i0 }); }
|
|
13566
13589
|
}
|
|
13567
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type:
|
|
13568
|
-
type:
|
|
13590
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: SidebarTogglerDirective, decorators: [{
|
|
13591
|
+
type: Directive,
|
|
13569
13592
|
args: [{
|
|
13570
|
-
selector: '
|
|
13571
|
-
|
|
13572
|
-
|
|
13593
|
+
selector: '[cSidebarToggler]',
|
|
13594
|
+
standalone: true,
|
|
13595
|
+
hostDirectives: [{ directive: SidebarToggleDirective, inputs: ['cSidebarToggle: cSidebarToggler', 'toggle'] }]
|
|
13573
13596
|
}]
|
|
13574
13597
|
}], propDecorators: { role: [{
|
|
13575
13598
|
type: HostBinding,
|
|
@@ -14232,9 +14255,9 @@ class SidebarModule {
|
|
|
14232
14255
|
SidebarNavLinkPipe,
|
|
14233
14256
|
SidebarNavTitleComponent,
|
|
14234
14257
|
SidebarToggleDirective,
|
|
14235
|
-
|
|
14258
|
+
SidebarTogglerDirective], exports: [SidebarComponent,
|
|
14236
14259
|
SidebarToggleDirective,
|
|
14237
|
-
|
|
14260
|
+
SidebarTogglerDirective,
|
|
14238
14261
|
SidebarBrandComponent,
|
|
14239
14262
|
SidebarNavComponent,
|
|
14240
14263
|
SidebarHeaderComponent,
|
|
@@ -14267,12 +14290,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImpor
|
|
|
14267
14290
|
SidebarNavLinkPipe,
|
|
14268
14291
|
SidebarNavTitleComponent,
|
|
14269
14292
|
SidebarToggleDirective,
|
|
14270
|
-
|
|
14293
|
+
SidebarTogglerDirective
|
|
14271
14294
|
],
|
|
14272
14295
|
exports: [
|
|
14273
14296
|
SidebarComponent,
|
|
14274
14297
|
SidebarToggleDirective,
|
|
14275
|
-
|
|
14298
|
+
SidebarTogglerDirective,
|
|
14276
14299
|
SidebarBrandComponent,
|
|
14277
14300
|
SidebarNavComponent,
|
|
14278
14301
|
SidebarHeaderComponent,
|
|
@@ -17221,5 +17244,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImpor
|
|
|
17221
17244
|
* Generated bundle index. Do not edit.
|
|
17222
17245
|
*/
|
|
17223
17246
|
|
|
17224
|
-
export { AccordionButtonDirective, AccordionComponent, AccordionItemComponent, AccordionModule, AlertComponent, AlertHeadingDirective, AlertLinkDirective, AlertModule, AlignDirective, AvatarComponent, AvatarModule, BackdropService, BadgeComponent, BadgeModule, BgColorDirective, BorderDirective, BreadcrumbComponent, BreadcrumbItemComponent, BreadcrumbModule, BreadcrumbRouterComponent, BreadcrumbRouterService, BreakpointInfix, ButtonCloseDirective, ButtonDirective, ButtonGroupComponent, ButtonGroupModule, ButtonModule, ButtonToolbarComponent, CalendarComponent, CalendarModule, CalendarMonthComponent, CalendarNavigationComponent, CalloutComponent, CalloutModule, CardBodyComponent, CardComponent, CardFooterComponent, CardGroupComponent, CardHeaderActionsComponent, CardHeaderComponent, CardImgDirective, CardImgOverlayComponent, CardLinkDirective, CardModule, CardSubtitleDirective, CardTextDirective, CardTitleDirective, CarouselCaptionComponent, CarouselComponent, CarouselConfig, CarouselControlComponent, CarouselIndicatorsComponent, CarouselInnerComponent, CarouselItemComponent, CarouselModule, ClassToggleService, ColComponent, ColDirective, CollapseDirective, CollapseModule, ContainerComponent, DatePickerComponent, DatePickerModule, DateRangePickerComponent, DateRangePickerModule, DropdownCloseDirective, DropdownComponent, DropdownDividerDirective, DropdownHeaderDirective, DropdownItemDirective, DropdownItemPlainDirective, DropdownMenuDirective, DropdownModule, DropdownService, DropdownToggleDirective, ElementCoverComponent, ElementCoverModule, FooterComponent, FooterModule, FormCheckComponent, FormCheckInputDirective, FormCheckLabelDirective, FormControlDirective, FormDirective, FormFeedbackComponent, FormFloatingDirective, FormLabelDirective, FormModule, FormSelectDirective, FormTextDirective, GridModule, GutterDirective, HeaderBrandComponent, HeaderComponent, HeaderDividerComponent, HeaderModule, HeaderNavComponent, HeaderTextComponent, HeaderTogglerDirective, HtmlAttributesDirective, ImgDirective, ImgModule, InputGroupComponent, InputGroupTextDirective, IntersectionService, ListGroupDirective, ListGroupItemDirective, ListGroupModule, ListenersService, LoadingButtonComponent, LoadingButtonModule, ModalBodyComponent, ModalComponent, ModalContentComponent, ModalDialogComponent, ModalFooterComponent, ModalHeaderComponent, ModalModule, ModalService, ModalTitleDirective, ModalToggleDirective, MultiSelectComponent, MultiSelectModule, MultiSelectOptgroupComponent, MultiSelectOptgroupLabelComponent, MultiSelectOptionComponent, NavComponent, NavItemComponent, NavLinkDirective, NavModule, NavbarBrandDirective, NavbarComponent, NavbarModule, NavbarNavComponent, NavbarTextComponent, NavbarTogglerDirective, OffcanvasBodyComponent, OffcanvasComponent, OffcanvasHeaderComponent, OffcanvasModule, OffcanvasService, OffcanvasTitleDirective, OffcanvasToggleDirective, PageItemComponent, PageItemDirective, PageLinkDirective, PaginationComponent, PaginationModule, PlaceholderAnimationDirective, PlaceholderDirective, PlaceholderModule, PopoverComponent, PopoverDirective, PopoverModule, ProgressBarComponent, ProgressComponent, ProgressModule, RoundedDirective, RowComponent, RowDirective, SharedModule, SidebarBrandComponent, SidebarComponent, SidebarFooterComponent, SidebarHeaderComponent, SidebarModule, SidebarNavComponent, SidebarNavHelper, SidebarService, SidebarToggleDirective,
|
|
17247
|
+
export { AccordionButtonDirective, AccordionComponent, AccordionItemComponent, AccordionModule, AlertComponent, AlertHeadingDirective, AlertLinkDirective, AlertModule, AlignDirective, AvatarComponent, AvatarModule, BackdropService, BadgeComponent, BadgeModule, BgColorDirective, BorderDirective, BreadcrumbComponent, BreadcrumbItemComponent, BreadcrumbModule, BreadcrumbRouterComponent, BreadcrumbRouterService, BreakpointInfix, ButtonCloseDirective, ButtonDirective, ButtonGroupComponent, ButtonGroupModule, ButtonModule, ButtonToolbarComponent, CalendarComponent, CalendarModule, CalendarMonthComponent, CalendarNavigationComponent, CalloutComponent, CalloutModule, CardBodyComponent, CardComponent, CardFooterComponent, CardGroupComponent, CardHeaderActionsComponent, CardHeaderComponent, CardImgDirective, CardImgOverlayComponent, CardLinkDirective, CardModule, CardSubtitleDirective, CardTextDirective, CardTitleDirective, CarouselCaptionComponent, CarouselComponent, CarouselConfig, CarouselControlComponent, CarouselIndicatorsComponent, CarouselInnerComponent, CarouselItemComponent, CarouselModule, ClassToggleService, ColComponent, ColDirective, CollapseDirective, CollapseModule, ContainerComponent, DatePickerComponent, DatePickerModule, DateRangePickerComponent, DateRangePickerModule, DropdownCloseDirective, DropdownComponent, DropdownDividerDirective, DropdownHeaderDirective, DropdownItemDirective, DropdownItemPlainDirective, DropdownMenuDirective, DropdownModule, DropdownService, DropdownToggleDirective, ElementCoverComponent, ElementCoverModule, FooterComponent, FooterModule, FormCheckComponent, FormCheckInputDirective, FormCheckLabelDirective, FormControlDirective, FormDirective, FormFeedbackComponent, FormFloatingDirective, FormLabelDirective, FormModule, FormSelectDirective, FormTextDirective, GridModule, GutterDirective, HeaderBrandComponent, HeaderComponent, HeaderDividerComponent, HeaderModule, HeaderNavComponent, HeaderTextComponent, HeaderTogglerDirective, HtmlAttributesDirective, ImgDirective, ImgModule, InputGroupComponent, InputGroupTextDirective, IntersectionService, ListGroupDirective, ListGroupItemDirective, ListGroupModule, ListenersService, LoadingButtonComponent, LoadingButtonModule, ModalBodyComponent, ModalComponent, ModalContentComponent, ModalDialogComponent, ModalFooterComponent, ModalHeaderComponent, ModalModule, ModalService, ModalTitleDirective, ModalToggleDirective, MultiSelectComponent, MultiSelectModule, MultiSelectOptgroupComponent, MultiSelectOptgroupLabelComponent, MultiSelectOptionComponent, NavComponent, NavItemComponent, NavLinkDirective, NavModule, NavbarBrandDirective, NavbarComponent, NavbarModule, NavbarNavComponent, NavbarTextComponent, NavbarTogglerDirective, OffcanvasBodyComponent, OffcanvasComponent, OffcanvasHeaderComponent, OffcanvasModule, OffcanvasService, OffcanvasTitleDirective, OffcanvasToggleDirective, PageItemComponent, PageItemDirective, PageLinkDirective, PaginationComponent, PaginationModule, PlaceholderAnimationDirective, PlaceholderDirective, PlaceholderModule, PopoverComponent, PopoverDirective, PopoverModule, ProgressBarComponent, ProgressComponent, ProgressModule, RoundedDirective, RowComponent, RowDirective, ShadowOnScrollDirective, SharedModule, SidebarBrandComponent, SidebarComponent, SidebarFooterComponent, SidebarHeaderComponent, SidebarModule, SidebarNavComponent, SidebarNavHelper, SidebarService, SidebarToggleDirective, SidebarTogglerDirective, SmartPaginationComponent, SmartPaginationModule, SmartTableComponent, SmartTableFilterComponent, SmartTableModule, SpinnerComponent, SpinnerModule, TabContentComponent, TabContentRefDirective, TabPaneComponent, TabService, TableActiveDirective, TableColorDirective, TableDirective, TableModule, TabsModule, TemplateIdDirective, TextColorDirective, ThemeDirective, TimePickerComponent, TimePickerModule, ToastBodyComponent, ToastCloseDirective, ToastComponent, ToastHeaderComponent, ToastModule, ToasterComponent, ToasterHostDirective, ToasterPlacement, ToasterService, TooltipComponent, TooltipDirective, TooltipModule, UtilitiesModule, WidgetModule, WidgetStatAComponent, WidgetStatBComponent, WidgetStatCComponent, WidgetStatDComponent, WidgetStatEComponent, WidgetStatFComponent };
|
|
17225
17248
|
//# sourceMappingURL=coreui-angular-pro.mjs.map
|