@recursyve/nice-ui-kit.v2 13.2.0-beta.110 → 13.2.0-beta.112
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/date-range-picker/components/header/header.component.mjs +57 -0
- package/esm2020/lib/components/date-range-picker/components/range-preset/range-preset.component.mjs +107 -0
- package/esm2020/lib/components/date-range-picker/date-range-picker.component.mjs +74 -0
- package/esm2020/lib/components/date-range-picker/date-range-picker.module.mjs +58 -0
- package/esm2020/lib/components/date-range-picker/index.mjs +2 -0
- package/esm2020/lib/components/date-range-picker/providers/date-range-picker.service.mjs +17 -0
- package/esm2020/lib/components/date-range-picker/public-api.mjs +3 -0
- package/esm2020/lib/components/navigation/directives/show-hint.directive.mjs +164 -0
- package/esm2020/lib/components/navigation/navigation.module.mjs +9 -3
- package/esm2020/lib/components/navigation/navigation.types.mjs +1 -1
- package/esm2020/lib/components/navigation/pipes/should-show-hint.pipe.mjs +32 -0
- package/esm2020/lib/components/navigation/providers/hint.resolver.mjs +3 -0
- package/esm2020/lib/components/navigation/vertical/components/basic/basic.component.mjs +6 -4
- package/esm2020/lib/components/navigation/vertical/components/collapsable/collapsable.component.mjs +5 -4
- package/esm2020/lib/components/public-api.mjs +2 -1
- package/fesm2015/recursyve-nice-ui-kit.v2.mjs +4203 -3748
- package/fesm2015/recursyve-nice-ui-kit.v2.mjs.map +1 -1
- package/fesm2020/recursyve-nice-ui-kit.v2.mjs +4292 -3841
- package/fesm2020/recursyve-nice-ui-kit.v2.mjs.map +1 -1
- package/lib/components/date-range-picker/components/header/header.component.d.ts +20 -0
- package/lib/components/date-range-picker/components/range-preset/range-preset.component.d.ts +23 -0
- package/lib/components/date-range-picker/date-range-picker.component.d.ts +26 -0
- package/lib/components/date-range-picker/date-range-picker.module.d.ts +18 -0
- package/lib/components/date-range-picker/index.d.ts +1 -0
- package/lib/components/date-range-picker/providers/date-range-picker.service.d.ts +8 -0
- package/lib/components/date-range-picker/public-api.d.ts +2 -0
- package/lib/components/navigation/directives/show-hint.directive.d.ts +34 -0
- package/lib/components/navigation/navigation.module.d.ts +12 -10
- package/lib/components/navigation/navigation.types.d.ts +6 -0
- package/lib/components/navigation/pipes/should-show-hint.pipe.d.ts +12 -0
- package/lib/components/navigation/providers/hint.resolver.d.ts +4 -0
- package/lib/components/public-api.d.ts +1 -0
- package/package.json +1 -1
- package/src/lib/components/date-range-picker/date-range-picker.theme.scss +47 -0
- package/src/lib/components/navigation/vertical/styles/appearances/default.theme.scss +38 -0
- package/src/lib/nice.theme.scss +2 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnDestroy } from "@angular/core";
|
|
2
|
+
import { DateAdapter, MatDateFormats } from "@angular/material/core";
|
|
3
|
+
import { MatCalendar } from "@angular/material/datepicker";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class HeaderComponent<D> implements OnDestroy {
|
|
6
|
+
private calendar;
|
|
7
|
+
private dateAdapter;
|
|
8
|
+
private dateFormats;
|
|
9
|
+
private readonly destroy$;
|
|
10
|
+
toggled: boolean;
|
|
11
|
+
constructor(calendar: MatCalendar<D>, dateAdapter: DateAdapter<D>, dateFormats: MatDateFormats, cdr: ChangeDetectorRef);
|
|
12
|
+
get periodLabel(): string;
|
|
13
|
+
previousClicked(mode: "month" | "year"): void;
|
|
14
|
+
nextClicked(mode: "month" | "year"): void;
|
|
15
|
+
private changeDate;
|
|
16
|
+
clickOptions(): void;
|
|
17
|
+
ngOnDestroy(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent<any>, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent<any>, "ng-component", never, {}, {}, never, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { DateAdapter } from "@angular/material/core";
|
|
2
|
+
import { MatDateRangePicker } from "@angular/material/datepicker";
|
|
3
|
+
import { NiceDateRangePickerServiceService } from "../../providers/date-range-picker.service";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
declare const customPresets: string[];
|
|
6
|
+
declare type CustomPreset = typeof customPresets[number];
|
|
7
|
+
export declare class RangePresetComponent<D> {
|
|
8
|
+
private dateAdapter;
|
|
9
|
+
private picker;
|
|
10
|
+
private service;
|
|
11
|
+
readonly customPresets: string[];
|
|
12
|
+
readonly allowClear$: import("rxjs").BehaviorSubject<boolean>;
|
|
13
|
+
constructor(dateAdapter: DateAdapter<D>, picker: MatDateRangePicker<D>, service: NiceDateRangePickerServiceService);
|
|
14
|
+
clearRange(): void;
|
|
15
|
+
selectRange(rangeName: CustomPreset): void;
|
|
16
|
+
private calculateDateRange;
|
|
17
|
+
private calculateMonth;
|
|
18
|
+
private calculateWeek;
|
|
19
|
+
private get today();
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RangePresetComponent<any>, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RangePresetComponent<any>, "nice-range-preset", never, {}, {}, never, never>;
|
|
22
|
+
}
|
|
23
|
+
export {};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { ControlValueAccessor, FormGroup } from "@angular/forms";
|
|
3
|
+
import { HeaderComponent } from "./components/header/header.component";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export interface NiceDateRangePickerValue {
|
|
6
|
+
from: Date;
|
|
7
|
+
to: Date;
|
|
8
|
+
}
|
|
9
|
+
export declare class NiceDateRangePickerComponent implements OnInit, ControlValueAccessor {
|
|
10
|
+
readonly HeaderComponent: typeof HeaderComponent;
|
|
11
|
+
private picker;
|
|
12
|
+
min: Date;
|
|
13
|
+
max: Date;
|
|
14
|
+
nowIsMax: boolean;
|
|
15
|
+
allowClear: boolean;
|
|
16
|
+
formGroup: FormGroup;
|
|
17
|
+
now: Date;
|
|
18
|
+
value: NiceDateRangePickerValue;
|
|
19
|
+
private propage;
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
writeValue(value: NiceDateRangePickerValue): void;
|
|
22
|
+
registerOnChange(fn: (value: NiceDateRangePickerValue) => void): void;
|
|
23
|
+
registerOnTouched(fn: any): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NiceDateRangePickerComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NiceDateRangePickerComponent, "nice-date-range-picker", never, { "min": "min"; "max": "max"; "nowIsMax": "nowIsMax"; "allowClear": "allowClear"; }, {}, never, never>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./date-range-picker.component";
|
|
3
|
+
import * as i2 from "./components/range-preset/range-preset.component";
|
|
4
|
+
import * as i3 from "./components/header/header.component";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@angular/material/datepicker";
|
|
7
|
+
import * as i6 from "@angular/material/form-field";
|
|
8
|
+
import * as i7 from "@angular/material/card";
|
|
9
|
+
import * as i8 from "@angular/material/button";
|
|
10
|
+
import * as i9 from "@angular/material/icon";
|
|
11
|
+
import * as i10 from "@ngx-translate/core";
|
|
12
|
+
import * as i11 from "@angular/forms";
|
|
13
|
+
import * as i12 from "../../pipes/pipes.module";
|
|
14
|
+
export declare class NiceDateRangePickerModule {
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NiceDateRangePickerModule, never>;
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NiceDateRangePickerModule, [typeof i1.NiceDateRangePickerComponent, typeof i2.RangePresetComponent, typeof i3.HeaderComponent], [typeof i4.CommonModule, typeof i5.MatDatepickerModule, typeof i6.MatFormFieldModule, typeof i7.MatCardModule, typeof i8.MatButtonModule, typeof i9.MatIconModule, typeof i10.TranslateModule, typeof i11.ReactiveFormsModule, typeof i12.NicePipesModule], [typeof i1.NiceDateRangePickerComponent]>;
|
|
17
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NiceDateRangePickerModule>;
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./public-api";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BehaviorSubject } from "rxjs";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class NiceDateRangePickerServiceService {
|
|
4
|
+
allowClear$: BehaviorSubject<boolean>;
|
|
5
|
+
setAllowClear(allowClear: boolean): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NiceDateRangePickerServiceService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<NiceDateRangePickerServiceService>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { Overlay } from "@angular/cdk/overlay";
|
|
2
|
+
import { Platform } from "@angular/cdk/platform";
|
|
3
|
+
import { AfterViewInit, ElementRef, NgZone, OnDestroy, ViewContainerRef } from "@angular/core";
|
|
4
|
+
import { NiceNavigationItem } from "../navigation.types";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class NiceShowHintDirective implements AfterViewInit, OnDestroy {
|
|
7
|
+
private _overlay;
|
|
8
|
+
private _elementRef;
|
|
9
|
+
private _viewContainerRef;
|
|
10
|
+
private _ngZone;
|
|
11
|
+
private _platform;
|
|
12
|
+
shouldShow: boolean;
|
|
13
|
+
item: NiceNavigationItem;
|
|
14
|
+
private _pointerExitEventsInitialized;
|
|
15
|
+
private _portal;
|
|
16
|
+
private _hintInstance;
|
|
17
|
+
private _overlayRef;
|
|
18
|
+
private readonly _passiveListeners;
|
|
19
|
+
private readonly unsubscribeAll$;
|
|
20
|
+
constructor(_overlay: Overlay, _elementRef: ElementRef<HTMLElement>, _viewContainerRef: ViewContainerRef, _ngZone: NgZone, _platform: Platform);
|
|
21
|
+
ngAfterViewInit(): void;
|
|
22
|
+
ngOnDestroy(): void;
|
|
23
|
+
show(): void;
|
|
24
|
+
hide(): void;
|
|
25
|
+
private _createOverlay;
|
|
26
|
+
private _detach;
|
|
27
|
+
private _isHintVisible;
|
|
28
|
+
private _setupPointerEnterEventsIfNeeded;
|
|
29
|
+
private _setupPointerExitEventsIfNeeded;
|
|
30
|
+
private _platformSupportsMouseEvents;
|
|
31
|
+
private _addListeners;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NiceShowHintDirective, never>;
|
|
33
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NiceShowHintDirective, "[niceShowHint]", never, { "shouldShow": "shouldShow"; "item": "item"; }, {}, never>;
|
|
34
|
+
}
|
|
@@ -12,17 +12,19 @@ import * as i10 from "./vertical/components/divider/divider.component";
|
|
|
12
12
|
import * as i11 from "./vertical/components/group/group.component";
|
|
13
13
|
import * as i12 from "./vertical/components/spacer/spacer.component";
|
|
14
14
|
import * as i13 from "./vertical/vertical.component";
|
|
15
|
-
import * as i14 from "
|
|
16
|
-
import * as i15 from "
|
|
17
|
-
import * as i16 from "@angular/
|
|
18
|
-
import * as i17 from "@angular/
|
|
19
|
-
import * as i18 from "@angular/material/
|
|
20
|
-
import * as i19 from "@angular/material/
|
|
21
|
-
import * as i20 from "@angular/material/
|
|
22
|
-
import * as i21 from "
|
|
23
|
-
import * as i22 from "@
|
|
15
|
+
import * as i14 from "./pipes/should-show-hint.pipe";
|
|
16
|
+
import * as i15 from "./directives/show-hint.directive";
|
|
17
|
+
import * as i16 from "@angular/common";
|
|
18
|
+
import * as i17 from "@angular/router";
|
|
19
|
+
import * as i18 from "@angular/material/button";
|
|
20
|
+
import * as i19 from "@angular/material/divider";
|
|
21
|
+
import * as i20 from "@angular/material/icon";
|
|
22
|
+
import * as i21 from "@angular/material/menu";
|
|
23
|
+
import * as i22 from "@angular/material/tooltip";
|
|
24
|
+
import * as i23 from "../../directives/scrollbar/scrollbar.module";
|
|
25
|
+
import * as i24 from "@ngx-translate/core";
|
|
24
26
|
export declare class NiceNavigationModule {
|
|
25
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<NiceNavigationModule, never>;
|
|
26
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NiceNavigationModule, [typeof i1.NiceNavigationComponent, typeof i2.NiceHorizontalNavigationBasicItemComponent, typeof i3.NiceHorizontalNavigationBranchItemComponent, typeof i4.NiceHorizontalNavigationDividerItemComponent, typeof i5.NiceHorizontalNavigationSpacerItemComponent, typeof i6.NiceHorizontalNavigationComponent, typeof i7.NiceVerticalNavigationAsideItemComponent, typeof i8.NiceVerticalNavigationBasicItemComponent, typeof i9.NiceVerticalNavigationCollapsableItemComponent, typeof i10.NiceVerticalNavigationDividerItemComponent, typeof i11.NiceVerticalNavigationGroupItemComponent, typeof i12.NiceVerticalNavigationSpacerItemComponent, typeof i13.NiceVerticalNavigationComponent], [typeof
|
|
28
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NiceNavigationModule, [typeof i1.NiceNavigationComponent, typeof i2.NiceHorizontalNavigationBasicItemComponent, typeof i3.NiceHorizontalNavigationBranchItemComponent, typeof i4.NiceHorizontalNavigationDividerItemComponent, typeof i5.NiceHorizontalNavigationSpacerItemComponent, typeof i6.NiceHorizontalNavigationComponent, typeof i7.NiceVerticalNavigationAsideItemComponent, typeof i8.NiceVerticalNavigationBasicItemComponent, typeof i9.NiceVerticalNavigationCollapsableItemComponent, typeof i10.NiceVerticalNavigationDividerItemComponent, typeof i11.NiceVerticalNavigationGroupItemComponent, typeof i12.NiceVerticalNavigationSpacerItemComponent, typeof i13.NiceVerticalNavigationComponent, typeof i14.NiceShouldShowHintPipe, typeof i15.NiceShowHintDirective], [typeof i16.CommonModule, typeof i17.RouterModule, typeof i18.MatButtonModule, typeof i19.MatDividerModule, typeof i20.MatIconModule, typeof i21.MatMenuModule, typeof i22.MatTooltipModule, typeof i23.NiceScrollbarModule, typeof i24.TranslateModule], [typeof i6.NiceHorizontalNavigationComponent, typeof i13.NiceVerticalNavigationComponent]>;
|
|
27
29
|
static ɵinj: i0.ɵɵInjectorDeclaration<NiceNavigationModule>;
|
|
28
30
|
}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { Type } from "@angular/core";
|
|
2
|
+
import { NavigationHintResolver } from "./providers/hint.resolver";
|
|
1
3
|
export declare type IconType = "fontawesome" | "material" | "svg";
|
|
2
4
|
export interface NiceNavigationItem {
|
|
3
5
|
id?: string;
|
|
@@ -28,6 +30,10 @@ export interface NiceNavigationItem {
|
|
|
28
30
|
};
|
|
29
31
|
children?: NiceNavigationItem[];
|
|
30
32
|
meta?: any;
|
|
33
|
+
hint?: {
|
|
34
|
+
resolver: Type<NavigationHintResolver>;
|
|
35
|
+
component: Type<any>;
|
|
36
|
+
};
|
|
31
37
|
}
|
|
32
38
|
export declare type NiceVerticalNavigationAppearance = "default" | "compact" | "dense" | "thin";
|
|
33
39
|
export declare type NiceVerticalNavigationMode = "over" | "side";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Injector, PipeTransform } from "@angular/core";
|
|
2
|
+
import { Observable } from "rxjs";
|
|
3
|
+
import { NiceNavigationItem } from "../navigation.types";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class NiceShouldShowHintPipe implements PipeTransform {
|
|
6
|
+
private injector;
|
|
7
|
+
constructor(injector: Injector);
|
|
8
|
+
transform(value: NiceNavigationItem | NiceNavigationItem[]): Observable<boolean>;
|
|
9
|
+
private transformHint;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NiceShouldShowHintPipe, never>;
|
|
11
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<NiceShouldShowHintPipe, "niceShouldShowHint">;
|
|
12
|
+
}
|
package/package.json
CHANGED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
@use "@angular/material" as mat;
|
|
2
|
+
|
|
3
|
+
@mixin nice-date-picker-theme($theme) {
|
|
4
|
+
$accent: map-get($theme, accent);
|
|
5
|
+
$background: map-get($theme, background);
|
|
6
|
+
$foreground: map-get($theme, foreground);
|
|
7
|
+
|
|
8
|
+
mat-calendar {
|
|
9
|
+
.mat-calendar-body-in-range::before {
|
|
10
|
+
background: mat.get-color-from-palette($accent, 0.2) !important;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
nice-date-range-picker {
|
|
15
|
+
.from-to {
|
|
16
|
+
@apply flex;
|
|
17
|
+
|
|
18
|
+
color: map-get($foreground, text);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.nice-date-picker-container {
|
|
22
|
+
@apply flex justify-center items-center;
|
|
23
|
+
|
|
24
|
+
.nice-date-picker-header {
|
|
25
|
+
@apply mr-3;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.separator {
|
|
30
|
+
@apply px-3;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
nice-range-preset {
|
|
35
|
+
background-color: map-get($background, background);
|
|
36
|
+
|
|
37
|
+
button {
|
|
38
|
+
.mat-button-focus-overlay {
|
|
39
|
+
background: mat.get-color-from-palette($accent) !important;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.mat-button:hover:not(.mat-button-disabled) .mat-button-focus-overlay {
|
|
44
|
+
opacity: 0.2 !important;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -240,6 +240,14 @@
|
|
|
240
240
|
opacity: 0.4;
|
|
241
241
|
}
|
|
242
242
|
|
|
243
|
+
.nice-vertical-navigation-item-icon-wrapper {
|
|
244
|
+
position: relative;
|
|
245
|
+
|
|
246
|
+
.nice-vertical-navigation-hint {
|
|
247
|
+
display: none;
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
|
|
243
251
|
.nice-vertical-navigation-item-icon {
|
|
244
252
|
margin-right: 16px;
|
|
245
253
|
|
|
@@ -254,6 +262,20 @@
|
|
|
254
262
|
}
|
|
255
263
|
|
|
256
264
|
.nice-vertical-navigation-item-title-wrapper {
|
|
265
|
+
.nice-vertical-navigation-item-title {
|
|
266
|
+
position: relative;
|
|
267
|
+
|
|
268
|
+
span {
|
|
269
|
+
padding: 16px;
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.nice-vertical-navigation-hint {
|
|
274
|
+
width: 8px;
|
|
275
|
+
height: 8px;
|
|
276
|
+
top: -4px;
|
|
277
|
+
right: 4px
|
|
278
|
+
}
|
|
257
279
|
|
|
258
280
|
.nice-vertical-navigation-item-subtitle {
|
|
259
281
|
font-size: 11px;
|
|
@@ -481,6 +503,9 @@
|
|
|
481
503
|
nice-vertical-navigation-basic-item,
|
|
482
504
|
nice-vertical-navigation-collapsable-item,
|
|
483
505
|
nice-vertical-navigation-group-item {
|
|
506
|
+
.nice-vertical-navigation-hint {
|
|
507
|
+
@apply absolute h-2 w-2 rounded-full bg-accent;
|
|
508
|
+
}
|
|
484
509
|
|
|
485
510
|
.nice-vertical-navigation-item-wrapper {
|
|
486
511
|
|
|
@@ -602,4 +627,17 @@
|
|
|
602
627
|
}
|
|
603
628
|
}
|
|
604
629
|
}
|
|
630
|
+
|
|
631
|
+
nice-vertical-navigation {
|
|
632
|
+
&.nice-vertical-navigation-appearance-dense:not(.nice-vertical-navigation-hover) {
|
|
633
|
+
.nice-vertical-navigation-hint {
|
|
634
|
+
display: block !important;
|
|
635
|
+
|
|
636
|
+
width: 8px;
|
|
637
|
+
height: 8px;
|
|
638
|
+
top: -4px;
|
|
639
|
+
right: 8px
|
|
640
|
+
}
|
|
641
|
+
}
|
|
642
|
+
}
|
|
605
643
|
}
|
package/src/lib/nice.theme.scss
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
@import "./components/assets-carousel/assets-carousel.theme";
|
|
9
9
|
@import "./components/base-form/base-form.theme";
|
|
10
10
|
@import "./components/card/card.theme";
|
|
11
|
+
@import "components/date-range-picker/date-range-picker.theme";
|
|
11
12
|
@import "./components/drawer/drawer.theme";
|
|
12
13
|
@import "./components/horizontal-stepper/horizontal-stepper.theme";
|
|
13
14
|
@import "./components/navigation/horizontal/horizontal.theme";
|
|
@@ -21,6 +22,7 @@
|
|
|
21
22
|
@include nice-assets-carousel-theme($theme);
|
|
22
23
|
@include nice-base-form-theme($theme);
|
|
23
24
|
@include nice-card-theme($theme);
|
|
25
|
+
@include nice-date-picker-theme($theme);
|
|
24
26
|
@include nice-drawer-theme($theme);
|
|
25
27
|
@include nice-horizontal-stepper-theme($theme);
|
|
26
28
|
@include nice-toggle-button-group-theme($theme);
|