ngx-sfc-components 0.0.1
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/README.md +685 -0
- package/esm2020/lib/components/avatar/avatar.component.mjs +83 -0
- package/esm2020/lib/components/avatar/avatar.constants.mjs +9 -0
- package/esm2020/lib/components/avatar/models/avatar-data.model.mjs +2 -0
- package/esm2020/lib/components/avatar/models/avatar-image.model.mjs +14 -0
- package/esm2020/lib/components/avatar/models/avatar-progress.model.mjs +2 -0
- package/esm2020/lib/components/avatar/parts/badge/avatar-badge-position.enum.mjs +12 -0
- package/esm2020/lib/components/avatar/parts/badge/avatar-badge.component.mjs +88 -0
- package/esm2020/lib/components/avatar/parts/badge/avatar-badge.constants.mjs +5 -0
- package/esm2020/lib/components/carousel/carousel.component.mjs +230 -0
- package/esm2020/lib/components/carousel/carousel.enum.mjs +33 -0
- package/esm2020/lib/components/carousel/directive/carousel-slide.directive.mjs +31 -0
- package/esm2020/lib/components/carousel/models/dom.model.mjs +2 -0
- package/esm2020/lib/components/carousel/models/navigation.model.mjs +2 -0
- package/esm2020/lib/components/carousel/models/options.model.mjs +2 -0
- package/esm2020/lib/components/carousel/models/slide.model.mjs +3 -0
- package/esm2020/lib/components/carousel/parts/stage/carousel-stage.component.mjs +83 -0
- package/esm2020/lib/components/carousel/parts/stage/carousel-stage.model.mjs +2 -0
- package/esm2020/lib/components/carousel/service/animate/carousel-animate.service.mjs +86 -0
- package/esm2020/lib/components/carousel/service/autoplay/carousel-autoplay.service.mjs +129 -0
- package/esm2020/lib/components/carousel/service/carousel/carousel-service.constants.mjs +44 -0
- package/esm2020/lib/components/carousel/service/carousel/carousel-service.enum.mjs +14 -0
- package/esm2020/lib/components/carousel/service/carousel/carousel-service.model.mjs +2 -0
- package/esm2020/lib/components/carousel/service/carousel/carousel.service.mjs +697 -0
- package/esm2020/lib/components/carousel/service/lazy/carousel-lazy-load.service.mjs +59 -0
- package/esm2020/lib/components/carousel/service/navigation/carousel-navigation.service.mjs +211 -0
- package/esm2020/lib/components/chart/chart-option.model.mjs +2 -0
- package/esm2020/lib/components/chart/chart.component.mjs +124 -0
- package/esm2020/lib/components/chart/chart.constants.mjs +95 -0
- package/esm2020/lib/components/chart/service/settings/chart-settings.service.mjs +87 -0
- package/esm2020/lib/components/chart/service/theme/chart-theme.model.mjs +2 -0
- package/esm2020/lib/components/chart/service/theme/chart-theme.service.mjs +25 -0
- package/esm2020/lib/components/index.mjs +40 -0
- package/esm2020/lib/components/menu/dropdown/dropdown-menu.component.mjs +86 -0
- package/esm2020/lib/components/menu/dropdown/parts/item/dropdown-menu-item.component.mjs +26 -0
- package/esm2020/lib/components/menu/dropdown/parts/item/dropdown-menu-item.model.mjs +2 -0
- package/esm2020/lib/components/menu/navigation/navigation-menu.component.mjs +26 -0
- package/esm2020/lib/components/menu/navigation/parts/item/navigation-menu-item.component.mjs +31 -0
- package/esm2020/lib/components/menu/navigation/parts/item/navigation-menu-item.model.mjs +2 -0
- package/esm2020/lib/components/menu/side/parts/header/side-menu-header.component.mjs +31 -0
- package/esm2020/lib/components/menu/side/parts/item/content/side-menu-item-content.component.mjs +56 -0
- package/esm2020/lib/components/menu/side/parts/item/side-menu-item.component.mjs +81 -0
- package/esm2020/lib/components/menu/side/parts/title/side-menu-title.component.mjs +24 -0
- package/esm2020/lib/components/menu/side/side-menu.component.mjs +47 -0
- package/esm2020/lib/components/menu/side/side-menu.model.mjs +6 -0
- package/esm2020/lib/components/no-export-index.mjs +15 -0
- package/esm2020/lib/components/notification/enums/notification-template.enum.mjs +5 -0
- package/esm2020/lib/components/notification/enums/notification-type.enum.mjs +7 -0
- package/esm2020/lib/components/notification/notification-auto-close.model.mjs +2 -0
- package/esm2020/lib/components/notification/notification.component.mjs +67 -0
- package/esm2020/lib/components/notification/parts/content/notification-content.component.mjs +33 -0
- package/esm2020/lib/components/notification/parts/content/notification-content.model.mjs +2 -0
- package/esm2020/lib/components/progress/circle/progress-circle.component.mjs +23 -0
- package/esm2020/lib/components/progress/line/progress-line.component.mjs +40 -0
- package/esm2020/lib/components/progress/progress-color.enum.mjs +13 -0
- package/esm2020/lib/components/progress/progress.component.mjs +50 -0
- package/esm2020/lib/components/progress/semi-circle/progress-semi-circle.component.mjs +42 -0
- package/esm2020/lib/components/slider/parts/button/slider-button-type.enum.mjs +6 -0
- package/esm2020/lib/components/slider/parts/button/slider-button.component.mjs +34 -0
- package/esm2020/lib/components/slider/parts/item/slider-item.component.mjs +17 -0
- package/esm2020/lib/components/slider/parts/item/slider-item.model.mjs +2 -0
- package/esm2020/lib/components/slider/parts/pagination/slider-pagination.component.mjs +29 -0
- package/esm2020/lib/components/slider/service/automatic/slider-automatic.service.mjs +35 -0
- package/esm2020/lib/components/slider/service/slider/slider-move-type.enum.mjs +7 -0
- package/esm2020/lib/components/slider/service/slider/slider-move.event.mjs +2 -0
- package/esm2020/lib/components/slider/service/slider/slider-move.model.mjs +2 -0
- package/esm2020/lib/components/slider/service/slider/slider.service.mjs +40 -0
- package/esm2020/lib/components/slider/slider-type.enum.mjs +6 -0
- package/esm2020/lib/components/slider/slider.component.mjs +116 -0
- package/esm2020/lib/components/stars/star-type.enum.mjs +9 -0
- package/esm2020/lib/components/stars/stars.component.mjs +42 -0
- package/esm2020/lib/components/table/enums/table-data-type.enum.mjs +6 -0
- package/esm2020/lib/components/table/enums/table-template.enum.mjs +7 -0
- package/esm2020/lib/components/table/models/table-pagination.model.mjs +2 -0
- package/esm2020/lib/components/table/models/table.model.mjs +2 -0
- package/esm2020/lib/components/table/parts/columns/default/default-table-column.component.mjs +24 -0
- package/esm2020/lib/components/table/parts/columns/selectable/selectable-table-column.component.mjs +30 -0
- package/esm2020/lib/components/table/parts/columns/table-column-type.enum.mjs +8 -0
- package/esm2020/lib/components/table/parts/columns/table-column.model.mjs +2 -0
- package/esm2020/lib/components/table/parts/content/base-default-table-content.component.mjs +74 -0
- package/esm2020/lib/components/table/parts/content/cards/default/default-table-card.component.mjs +14 -0
- package/esm2020/lib/components/table/parts/content/rows/default/default-table-row.component.mjs +28 -0
- package/esm2020/lib/components/table/parts/content/rows/expanded/expanded-table-row-template.enum.mjs +6 -0
- package/esm2020/lib/components/table/parts/content/rows/expanded/expanded-table-row.component.mjs +42 -0
- package/esm2020/lib/components/table/parts/content/rows/expanded/expanded-table-row.model.mjs +2 -0
- package/esm2020/lib/components/table/parts/toggle/columns-toggle.component.mjs +33 -0
- package/esm2020/lib/components/table/parts/toggle/columns-toggle.constants.mjs +11 -0
- package/esm2020/lib/components/table/parts/toggle/service/columns-toggle.service.mjs +34 -0
- package/esm2020/lib/components/table/service/select/table-select.event.mjs +2 -0
- package/esm2020/lib/components/table/service/select/table-select.service.mjs +24 -0
- package/esm2020/lib/components/table/table.component.mjs +250 -0
- package/esm2020/lib/components/table/table.constants.mjs +11 -0
- package/esm2020/lib/components/tabs/models/tab.model.mjs +2 -0
- package/esm2020/lib/components/tabs/models/tabs-view.model.mjs +2 -0
- package/esm2020/lib/components/tabs/parts/labels/tab-label-content-base.component.mjs +29 -0
- package/esm2020/lib/components/tabs/parts/labels/tab-label-icon/tab-label-icon.component.mjs +20 -0
- package/esm2020/lib/components/tabs/parts/labels/tab-label-line/tab-label-line.component.mjs +13 -0
- package/esm2020/lib/components/tabs/parts/sliders/tab-label-icon/tab-label-icon-slider.component.mjs +20 -0
- package/esm2020/lib/components/tabs/parts/sliders/tab-label-line/tab-label-line-slider.component.mjs +20 -0
- package/esm2020/lib/components/tabs/parts/sliders/tab-slider-base.component.mjs +18 -0
- package/esm2020/lib/components/tabs/parts/sliders/tab-slider-context.model.mjs +2 -0
- package/esm2020/lib/components/tabs/service/tab.service.mjs +11 -0
- package/esm2020/lib/components/tabs/tabs-template.enum.mjs +7 -0
- package/esm2020/lib/components/tabs/tabs.component.mjs +69 -0
- package/esm2020/lib/components/tags/parts/tag/tag.component.mjs +18 -0
- package/esm2020/lib/components/tags/parts/tag/tag.model.mjs +2 -0
- package/esm2020/lib/components/tags/tags.component.mjs +18 -0
- package/esm2020/lib/components/timeline/parts/item/timeline-item-position.enum.mjs +6 -0
- package/esm2020/lib/components/timeline/parts/item/timeline-item.component.mjs +34 -0
- package/esm2020/lib/components/timeline/parts/item/timeline-item.model.mjs +2 -0
- package/esm2020/lib/components/timeline/timeline.component.mjs +18 -0
- package/esm2020/lib/ngx-sfc-components.module.mjs +208 -0
- package/esm2020/ngx-sfc-components.mjs +5 -0
- package/esm2020/public-api.mjs +6 -0
- package/fesm2015/ngx-sfc-components.mjs +4006 -0
- package/fesm2015/ngx-sfc-components.mjs.map +1 -0
- package/fesm2020/ngx-sfc-components.mjs +3989 -0
- package/fesm2020/ngx-sfc-components.mjs.map +1 -0
- package/lib/components/avatar/avatar.component.d.ts +42 -0
- package/lib/components/avatar/avatar.constants.d.ts +8 -0
- package/lib/components/avatar/models/avatar-data.model.d.ts +6 -0
- package/lib/components/avatar/models/avatar-image.model.d.ts +12 -0
- package/lib/components/avatar/models/avatar-progress.model.d.ts +4 -0
- package/lib/components/avatar/parts/badge/avatar-badge-position.enum.d.ts +10 -0
- package/lib/components/avatar/parts/badge/avatar-badge.component.d.ts +14 -0
- package/lib/components/avatar/parts/badge/avatar-badge.constants.d.ts +4 -0
- package/lib/components/carousel/carousel.component.d.ts +62 -0
- package/lib/components/carousel/carousel.enum.d.ts +26 -0
- package/lib/components/carousel/directive/carousel-slide.directive.d.ts +13 -0
- package/lib/components/carousel/models/dom.model.d.ts +7 -0
- package/lib/components/carousel/models/navigation.model.d.ts +17 -0
- package/lib/components/carousel/models/options.model.d.ts +40 -0
- package/lib/components/carousel/models/slide.model.d.ts +28 -0
- package/lib/components/carousel/parts/stage/carousel-stage.component.d.ts +30 -0
- package/lib/components/carousel/parts/stage/carousel-stage.model.d.ts +7 -0
- package/lib/components/carousel/service/animate/carousel-animate.service.d.ts +17 -0
- package/lib/components/carousel/service/autoplay/carousel-autoplay.service.d.ts +29 -0
- package/lib/components/carousel/service/carousel/carousel-service.constants.d.ts +5 -0
- package/lib/components/carousel/service/carousel/carousel-service.enum.d.ts +9 -0
- package/lib/components/carousel/service/carousel/carousel-service.model.d.ts +21 -0
- package/lib/components/carousel/service/carousel/carousel.service.d.ts +92 -0
- package/lib/components/carousel/service/lazy/carousel-lazy-load.service.d.ts +14 -0
- package/lib/components/carousel/service/navigation/carousel-navigation.service.d.ts +28 -0
- package/lib/components/chart/chart-option.model.d.ts +9 -0
- package/lib/components/chart/chart.component.d.ts +38 -0
- package/lib/components/chart/chart.constants.d.ts +100 -0
- package/lib/components/chart/service/settings/chart-settings.service.d.ts +14 -0
- package/lib/components/chart/service/theme/chart-theme.model.d.ts +15 -0
- package/lib/components/chart/service/theme/chart-theme.service.d.ts +11 -0
- package/lib/components/index.d.ts +56 -0
- package/lib/components/menu/dropdown/dropdown-menu.component.d.ts +28 -0
- package/lib/components/menu/dropdown/parts/item/dropdown-menu-item.component.d.ts +8 -0
- package/lib/components/menu/dropdown/parts/item/dropdown-menu-item.model.d.ts +6 -0
- package/lib/components/menu/navigation/navigation-menu.component.d.ts +10 -0
- package/lib/components/menu/navigation/parts/item/navigation-menu-item.component.d.ts +9 -0
- package/lib/components/menu/navigation/parts/item/navigation-menu-item.model.d.ts +6 -0
- package/lib/components/menu/side/parts/header/side-menu-header.component.d.ts +11 -0
- package/lib/components/menu/side/parts/item/content/side-menu-item-content.component.d.ts +17 -0
- package/lib/components/menu/side/parts/item/side-menu-item.component.d.ts +17 -0
- package/lib/components/menu/side/parts/title/side-menu-title.component.d.ts +7 -0
- package/lib/components/menu/side/side-menu.component.d.ts +13 -0
- package/lib/components/menu/side/side-menu.model.d.ts +15 -0
- package/lib/components/no-export-index.d.ts +14 -0
- package/lib/components/notification/enums/notification-template.enum.d.ts +3 -0
- package/lib/components/notification/enums/notification-type.enum.d.ts +5 -0
- package/lib/components/notification/notification-auto-close.model.d.ts +4 -0
- package/lib/components/notification/notification.component.d.ts +26 -0
- package/lib/components/notification/parts/content/notification-content.component.d.ts +14 -0
- package/lib/components/notification/parts/content/notification-content.model.d.ts +8 -0
- package/lib/components/progress/circle/progress-circle.component.d.ts +8 -0
- package/lib/components/progress/line/progress-line.component.d.ts +17 -0
- package/lib/components/progress/progress-color.enum.d.ts +11 -0
- package/lib/components/progress/progress.component.d.ts +9 -0
- package/lib/components/progress/semi-circle/progress-semi-circle.component.d.ts +16 -0
- package/lib/components/slider/parts/button/slider-button-type.enum.d.ts +4 -0
- package/lib/components/slider/parts/button/slider-button.component.d.ts +11 -0
- package/lib/components/slider/parts/item/slider-item.component.d.ts +7 -0
- package/lib/components/slider/parts/item/slider-item.model.d.ts +5 -0
- package/lib/components/slider/parts/pagination/slider-pagination.component.d.ts +11 -0
- package/lib/components/slider/service/automatic/slider-automatic.service.d.ts +17 -0
- package/lib/components/slider/service/slider/slider-move-type.enum.d.ts +5 -0
- package/lib/components/slider/service/slider/slider-move.event.d.ts +5 -0
- package/lib/components/slider/service/slider/slider-move.model.d.ts +4 -0
- package/lib/components/slider/service/slider/slider.service.d.ts +12 -0
- package/lib/components/slider/slider-type.enum.d.ts +4 -0
- package/lib/components/slider/slider.component.d.ts +45 -0
- package/lib/components/stars/star-type.enum.d.ts +7 -0
- package/lib/components/stars/stars.component.d.ts +11 -0
- package/lib/components/table/enums/table-data-type.enum.d.ts +4 -0
- package/lib/components/table/enums/table-template.enum.d.ts +5 -0
- package/lib/components/table/models/table-pagination.model.d.ts +5 -0
- package/lib/components/table/models/table.model.d.ts +9 -0
- package/lib/components/table/parts/columns/default/default-table-column.component.d.ts +8 -0
- package/lib/components/table/parts/columns/selectable/selectable-table-column.component.d.ts +10 -0
- package/lib/components/table/parts/columns/table-column-type.enum.d.ts +6 -0
- package/lib/components/table/parts/columns/table-column.model.d.ts +11 -0
- package/lib/components/table/parts/content/base-default-table-content.component.d.ts +27 -0
- package/lib/components/table/parts/content/cards/default/default-table-card.component.d.ts +6 -0
- package/lib/components/table/parts/content/rows/default/default-table-row.component.d.ts +10 -0
- package/lib/components/table/parts/content/rows/expanded/expanded-table-row-template.enum.d.ts +4 -0
- package/lib/components/table/parts/content/rows/expanded/expanded-table-row.component.d.ts +16 -0
- package/lib/components/table/parts/content/rows/expanded/expanded-table-row.model.d.ts +11 -0
- package/lib/components/table/parts/toggle/columns-toggle.component.d.ts +13 -0
- package/lib/components/table/parts/toggle/columns-toggle.constants.d.ts +10 -0
- package/lib/components/table/parts/toggle/service/columns-toggle.service.d.ts +15 -0
- package/lib/components/table/service/select/table-select.event.d.ts +4 -0
- package/lib/components/table/service/select/table-select.service.d.ts +11 -0
- package/lib/components/table/table.component.d.ts +74 -0
- package/lib/components/table/table.constants.d.ts +11 -0
- package/lib/components/tabs/models/tab.model.d.ts +7 -0
- package/lib/components/tabs/models/tabs-view.model.d.ts +8 -0
- package/lib/components/tabs/parts/labels/tab-label-content-base.component.d.ts +9 -0
- package/lib/components/tabs/parts/labels/tab-label-icon/tab-label-icon.component.d.ts +9 -0
- package/lib/components/tabs/parts/labels/tab-label-line/tab-label-line.component.d.ts +6 -0
- package/lib/components/tabs/parts/sliders/tab-label-icon/tab-label-icon-slider.component.d.ts +7 -0
- package/lib/components/tabs/parts/sliders/tab-label-line/tab-label-line-slider.component.d.ts +10 -0
- package/lib/components/tabs/parts/sliders/tab-slider-base.component.d.ts +8 -0
- package/lib/components/tabs/parts/sliders/tab-slider-context.model.d.ts +4 -0
- package/lib/components/tabs/service/tab.service.d.ts +6 -0
- package/lib/components/tabs/tabs-template.enum.d.ts +5 -0
- package/lib/components/tabs/tabs.component.d.ts +26 -0
- package/lib/components/tags/parts/tag/tag.component.d.ts +7 -0
- package/lib/components/tags/parts/tag/tag.model.d.ts +4 -0
- package/lib/components/tags/tags.component.d.ts +7 -0
- package/lib/components/timeline/parts/item/timeline-item-position.enum.d.ts +4 -0
- package/lib/components/timeline/parts/item/timeline-item.component.d.ts +11 -0
- package/lib/components/timeline/parts/item/timeline-item.model.d.ts +10 -0
- package/lib/components/timeline/timeline.component.d.ts +7 -0
- package/lib/ngx-sfc-components.module.d.ts +49 -0
- package/ngx-sfc-components.d.ts +5 -0
- package/package.json +50 -0
- package/public-api.d.ts +2 -0
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { AfterViewChecked, AfterViewInit, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { SliderButtonType } from './parts/button/slider-button-type.enum';
|
|
4
|
+
import { ISliderItemModel } from './parts/item/slider-item.model';
|
|
5
|
+
import { SliderAutomaticService } from './service/automatic/slider-automatic.service';
|
|
6
|
+
import { SliderMoveType } from './service/slider/slider-move-type.enum';
|
|
7
|
+
import { SliderService } from './service/slider/slider.service';
|
|
8
|
+
import { SliderType } from './slider-type.enum';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class SliderComponent implements AfterViewInit, AfterViewChecked {
|
|
11
|
+
sliderService: SliderService;
|
|
12
|
+
private automaticService;
|
|
13
|
+
private changeDetector;
|
|
14
|
+
readonly PAUSE_ICON = "fas fa-pause-circle";
|
|
15
|
+
readonly PLAY_ICON = "fas fa-play-circle";
|
|
16
|
+
SliderButtonType: typeof SliderButtonType;
|
|
17
|
+
SliderMoveType: typeof SliderMoveType;
|
|
18
|
+
items: ISliderItemModel[];
|
|
19
|
+
type: SliderType;
|
|
20
|
+
showCount: boolean;
|
|
21
|
+
pagination: boolean;
|
|
22
|
+
private slider;
|
|
23
|
+
private sliderItems;
|
|
24
|
+
/**
|
|
25
|
+
* If active show buttons
|
|
26
|
+
*/
|
|
27
|
+
active: boolean;
|
|
28
|
+
vm$: Observable<any>;
|
|
29
|
+
onEnter(): void;
|
|
30
|
+
onLeave(): void;
|
|
31
|
+
get isAutomatic(): boolean;
|
|
32
|
+
get automaticIcon(): string;
|
|
33
|
+
constructor(sliderService: SliderService, automaticService: SliderAutomaticService, changeDetector: ChangeDetectorRef);
|
|
34
|
+
ngAfterViewInit(): void;
|
|
35
|
+
ngAfterViewChecked(): void;
|
|
36
|
+
getStyles(index: number, count: number): {
|
|
37
|
+
width: string;
|
|
38
|
+
left: string;
|
|
39
|
+
} | null;
|
|
40
|
+
move(type: SliderMoveType): void;
|
|
41
|
+
select(index: number): void;
|
|
42
|
+
toggleAutomatic(): void;
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SliderComponent, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SliderComponent, "sfc-slider", never, { "items": "items"; "type": "type"; "showCount": "showCount"; "pagination": "pagination"; }, {}, never, never>;
|
|
45
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { StarType } from './star-type.enum';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class StarsComponent {
|
|
4
|
+
private readonly DEFAULT_COUNT;
|
|
5
|
+
value: number;
|
|
6
|
+
count: number;
|
|
7
|
+
get stars(): Array<number>;
|
|
8
|
+
getStarType(index: number): StarType;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StarsComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StarsComponent, "sfc-stars", never, { "value": "value"; "count": "count"; }, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IDefaultTableColumnModel } from '../table-column.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DefaultTableColumnComponent {
|
|
4
|
+
model: IDefaultTableColumnModel;
|
|
5
|
+
get active(): boolean;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DefaultTableColumnComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DefaultTableColumnComponent, "sfc-default-table-column", never, { "model": "model"; }, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { TableSelectService } from '../../../service/select/table-select.service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SelectableTableColumnComponent {
|
|
4
|
+
private service;
|
|
5
|
+
selected: boolean;
|
|
6
|
+
selectAll(): void;
|
|
7
|
+
constructor(service: TableSelectService);
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectableTableColumnComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectableTableColumnComponent, "sfc-selectable-table-column", never, { "selected": "selected"; }, {}, never, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ISortingModel } from "ngx-sfc-common";
|
|
2
|
+
import { TableColumnType } from "./table-column-type.enum";
|
|
3
|
+
export interface IDefaultTableColumnModel {
|
|
4
|
+
name: string;
|
|
5
|
+
field: string;
|
|
6
|
+
icon?: string;
|
|
7
|
+
sorting?: ISortingModel;
|
|
8
|
+
}
|
|
9
|
+
export interface IDefaultTableColumnInnerModel extends IDefaultTableColumnModel {
|
|
10
|
+
type?: TableColumnType;
|
|
11
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, EventEmitter, OnDestroy } from "@angular/core";
|
|
2
|
+
import { Position } from "ngx-sfc-common";
|
|
3
|
+
import { Subscription } from "rxjs";
|
|
4
|
+
import { ITableSelectEvent } from "../../service/select/table-select.event";
|
|
5
|
+
import { IDefaultTableColumnInnerModel } from "../columns/table-column.model";
|
|
6
|
+
import { TableColumnType } from "../columns/table-column-type.enum";
|
|
7
|
+
import { ITableModel } from "../../models/table.model";
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare abstract class BaseDefaultTableContentComponent implements AfterViewInit, OnDestroy {
|
|
10
|
+
TableColumnType: typeof TableColumnType;
|
|
11
|
+
model: ITableModel;
|
|
12
|
+
columns: IDefaultTableColumnInnerModel[];
|
|
13
|
+
selectOnClick: boolean;
|
|
14
|
+
position: Position;
|
|
15
|
+
columnWidth: number;
|
|
16
|
+
selected: EventEmitter<ITableSelectEvent>;
|
|
17
|
+
columnCheckmark: ElementRef;
|
|
18
|
+
_columnCheckmarkSubscription: Subscription;
|
|
19
|
+
onContentClick(): void;
|
|
20
|
+
get even(): boolean;
|
|
21
|
+
get pointer(): boolean;
|
|
22
|
+
ngAfterViewInit(): void;
|
|
23
|
+
ngOnDestroy(): void;
|
|
24
|
+
get selectEvent(): ITableSelectEvent;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseDefaultTableContentComponent, never>;
|
|
26
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseDefaultTableContentComponent, never, never, { "model": "model"; "columns": "columns"; "selectOnClick": "selectOnClick"; "position": "position"; "columnWidth": "columnWidth"; }, { "selected": "selected"; }, never>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { BaseDefaultTableContentComponent } from '../../base-default-table-content.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DefaultTableCardComponent extends BaseDefaultTableContentComponent {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DefaultTableCardComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DefaultTableCardComponent, "sfc-default-table-card", never, {}, {}, never, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseDefaultTableContentComponent } from '../../base-default-table-content.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DefaultTableRowComponent extends BaseDefaultTableContentComponent {
|
|
4
|
+
get width(): {
|
|
5
|
+
width: string;
|
|
6
|
+
};
|
|
7
|
+
get contentPosition(): string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DefaultTableRowComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DefaultTableRowComponent, "sfc-default-table-row", never, {}, {}, never, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { QueryList, TemplateRef } from '@angular/core';
|
|
2
|
+
import { TemplateReferenceDirective } from 'ngx-sfc-common';
|
|
3
|
+
import { BaseDefaultTableContentComponent } from '../../base-default-table-content.component';
|
|
4
|
+
import { ExpandedTableRowTemplate } from './expanded-table-row-template.enum';
|
|
5
|
+
import { IExpandedTableRowContextModel } from './expanded-table-row.model';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class ExpandedTableRowComponent extends BaseDefaultTableContentComponent {
|
|
8
|
+
ExpandedTemplate: typeof ExpandedTableRowTemplate;
|
|
9
|
+
expanded: boolean;
|
|
10
|
+
row?: TemplateRef<any>;
|
|
11
|
+
content?: TemplateRef<any>;
|
|
12
|
+
templates: QueryList<TemplateReferenceDirective> | undefined;
|
|
13
|
+
get contextData(): IExpandedTableRowContextModel;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExpandedTableRowComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExpandedTableRowComponent, "sfc-expanded-table-row", never, { "expanded": "expanded"; "row": "row"; "content": "content"; }, {}, ["templates"], never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Position } from "ngx-sfc-common";
|
|
2
|
+
import { ITableModel } from "../../../../models/table.model";
|
|
3
|
+
import { IDefaultTableColumnInnerModel } from "../../../columns/table-column.model";
|
|
4
|
+
export interface IExpandedTableRowContextModel {
|
|
5
|
+
model: ITableModel;
|
|
6
|
+
columns: IDefaultTableColumnInnerModel[];
|
|
7
|
+
columnWidth: number;
|
|
8
|
+
position: Position;
|
|
9
|
+
expanded: boolean;
|
|
10
|
+
even: boolean;
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { ColumnsToggleService } from './service/columns-toggle.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ColumnsToggleComponent implements OnInit {
|
|
6
|
+
private service;
|
|
7
|
+
onToggle(): void;
|
|
8
|
+
vm$: Observable<any>;
|
|
9
|
+
constructor(service: ColumnsToggleService);
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnsToggleComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ColumnsToggleComponent, "sfc-columns-toggle", never, {}, {}, never, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ResizeService } from 'ngx-sfc-common';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ColumnsToggleService {
|
|
5
|
+
private window;
|
|
6
|
+
private resizeService;
|
|
7
|
+
private showColumns;
|
|
8
|
+
private toggleSubject;
|
|
9
|
+
private toggle$;
|
|
10
|
+
constructor(window: Window, resizeService: ResizeService);
|
|
11
|
+
showColumns$: Observable<boolean>;
|
|
12
|
+
toggle(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnsToggleService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ColumnsToggleService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { ITableSelectEvent } from './table-select.event';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TableSelectService {
|
|
5
|
+
private selectSubject;
|
|
6
|
+
select$: Observable<ITableSelectEvent>;
|
|
7
|
+
selectAll(selected: boolean): void;
|
|
8
|
+
select(index: number | null, selected: boolean): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableSelectService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TableSelectService>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { AfterContentChecked, AfterContentInit, AfterViewChecked, AfterViewInit, ChangeDetectorRef, DoCheck, IterableDiffers, OnInit, QueryList, TemplateRef } from '@angular/core';
|
|
2
|
+
import { PaginationService, Position, ResizeService, SortingService, TemplateReferenceDirective } from 'ngx-sfc-common';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { TableColumnType } from './parts/columns/table-column-type.enum';
|
|
5
|
+
import { IDefaultTableColumnModel } from './parts/columns/table-column.model';
|
|
6
|
+
import { ColumnsToggleService } from './parts/toggle/service/columns-toggle.service';
|
|
7
|
+
import { ITableSelectEvent } from './service/select/table-select.event';
|
|
8
|
+
import { TableSelectService } from './service/select/table-select.service';
|
|
9
|
+
import { TableDataType } from './enums/table-data-type.enum';
|
|
10
|
+
import { ITablePaginationModel } from './models/table-pagination.model';
|
|
11
|
+
import { TableConstants } from './table.constants';
|
|
12
|
+
import { TableTemplate } from './enums/table-template.enum';
|
|
13
|
+
import { ITableDataModel } from './models/table.model';
|
|
14
|
+
import * as i0 from "@angular/core";
|
|
15
|
+
export declare class TableComponent implements OnInit, AfterViewInit, AfterContentInit, AfterContentChecked, AfterViewChecked, DoCheck {
|
|
16
|
+
private window;
|
|
17
|
+
private paginationService;
|
|
18
|
+
private selectedService;
|
|
19
|
+
private sortingService;
|
|
20
|
+
private changeDetector;
|
|
21
|
+
private resizeService;
|
|
22
|
+
private columnsToggleService;
|
|
23
|
+
private iterableDiffers;
|
|
24
|
+
TableDataType: typeof TableDataType;
|
|
25
|
+
TableColumnType: typeof TableColumnType;
|
|
26
|
+
TableTemplate: typeof TableTemplate;
|
|
27
|
+
Constants: typeof TableConstants;
|
|
28
|
+
position: Position;
|
|
29
|
+
delimeter: boolean;
|
|
30
|
+
dataType: TableDataType;
|
|
31
|
+
dataToggle: boolean;
|
|
32
|
+
showColumns: boolean;
|
|
33
|
+
pagination: ITablePaginationModel;
|
|
34
|
+
sequence: boolean;
|
|
35
|
+
expanded: boolean;
|
|
36
|
+
selectable: boolean;
|
|
37
|
+
selectOnClick: boolean;
|
|
38
|
+
columnContent?: TemplateRef<any>;
|
|
39
|
+
rowContent?: TemplateRef<any>;
|
|
40
|
+
cardContent?: TemplateRef<any>;
|
|
41
|
+
data: ITableDataModel[];
|
|
42
|
+
set data$(value: Observable<ITableDataModel[]>);
|
|
43
|
+
get data$(): Observable<ITableDataModel[]>;
|
|
44
|
+
private _data$;
|
|
45
|
+
private dataDiffer;
|
|
46
|
+
private dataSubject;
|
|
47
|
+
private dataValue$;
|
|
48
|
+
columns: IDefaultTableColumnModel[];
|
|
49
|
+
private columnsDiffer;
|
|
50
|
+
private columnsSubject;
|
|
51
|
+
private columns$;
|
|
52
|
+
private columnsSorting$;
|
|
53
|
+
private columnWidth$;
|
|
54
|
+
allRowsSelected: boolean;
|
|
55
|
+
vm$: Observable<any>;
|
|
56
|
+
templates: QueryList<TemplateReferenceDirective> | undefined;
|
|
57
|
+
constructor(window: Window, paginationService: PaginationService, selectedService: TableSelectService, sortingService: SortingService, changeDetector: ChangeDetectorRef, resizeService: ResizeService, columnsToggleService: ColumnsToggleService, iterableDiffers: IterableDiffers);
|
|
58
|
+
ngOnInit(): void;
|
|
59
|
+
ngAfterViewInit(): void;
|
|
60
|
+
ngAfterViewChecked(): void;
|
|
61
|
+
ngDoCheck(): void;
|
|
62
|
+
ngAfterContentChecked(): void;
|
|
63
|
+
ngAfterContentInit(): void;
|
|
64
|
+
onDataTypeToggle(): void;
|
|
65
|
+
selectRow(model: ITableSelectEvent): void;
|
|
66
|
+
private getSortingObservable;
|
|
67
|
+
private getColumnWidth;
|
|
68
|
+
private handleSelectionEvent;
|
|
69
|
+
private paginateData;
|
|
70
|
+
private sortData;
|
|
71
|
+
private updateRowSequenceValues;
|
|
72
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
|
|
73
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "sfc-table", never, { "position": "position"; "delimeter": "delimeter"; "dataType": "dataType"; "dataToggle": "dataToggle"; "showColumns": "showColumns"; "pagination": "pagination"; "sequence": "sequence"; "expanded": "expanded"; "selectable": "selectable"; "selectOnClick": "selectOnClick"; "columnContent": "columnContent"; "rowContent": "rowContent"; "cardContent": "cardContent"; "data": "data"; "data$": "data$"; "columns": "columns"; }, {}, ["templates"], never>;
|
|
74
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IDefaultTableColumnInnerModel } from "./parts/columns/table-column.model";
|
|
2
|
+
import { IToggleSwitcherModel } from "ngx-sfc-common";
|
|
3
|
+
export declare class TableConstants {
|
|
4
|
+
static SEQUENCE_COLUMN: IDefaultTableColumnInnerModel;
|
|
5
|
+
static SELECTABLE_COLUMN: IDefaultTableColumnInnerModel;
|
|
6
|
+
static EXPANDED_COLUMN: IDefaultTableColumnInnerModel;
|
|
7
|
+
static TOGGLE_SWITCHER_LEFT_MODEL: IToggleSwitcherModel;
|
|
8
|
+
static TOGGLE_SWITCHER_RIGHT_MODEL: IToggleSwitcherModel;
|
|
9
|
+
static DEFAULT_PAGE: number;
|
|
10
|
+
static DEFAULT_PAGE_SIZE: number;
|
|
11
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ITabSliderContextModel } from "../parts/sliders/tab-slider-context.model";
|
|
2
|
+
import { ITabModel } from "./tab.model";
|
|
3
|
+
export interface ITabsViewModel {
|
|
4
|
+
tabs: ITabModel[];
|
|
5
|
+
selectedTab: ITabModel | null;
|
|
6
|
+
sliderContextData: ITabSliderContextModel;
|
|
7
|
+
tabWidth: number;
|
|
8
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TabLabelContentBase {
|
|
3
|
+
label?: string;
|
|
4
|
+
icon?: string;
|
|
5
|
+
disabled: boolean;
|
|
6
|
+
selected: boolean;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabLabelContentBase, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TabLabelContentBase, never, never, { "label": "label"; "icon": "icon"; "disabled": "disabled"; "selected": "selected"; }, {}, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { TabLabelContentBase } from '../tab-label-content-base.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TabLabelIconComponent extends TabLabelContentBase implements OnInit {
|
|
5
|
+
private readonly TAB_DEFAULT_ICON;
|
|
6
|
+
ngOnInit(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabLabelIconComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabLabelIconComponent, "sfc-tab-label-icon", never, {}, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { TabLabelContentBase } from '../tab-label-content-base.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TabLabelLineComponent extends TabLabelContentBase {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabLabelLineComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabLabelLineComponent, "sfc-tab-label-line", never, {}, {}, never, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { TabSliderBase } from '../tab-slider-base.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TabLabelIconSliderComponent extends TabSliderBase {
|
|
4
|
+
get style(): any;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabLabelIconSliderComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabLabelIconSliderComponent, "sfc-tab-label-icon-slider", never, {}, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { TabSliderBase } from '../tab-slider-base.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TabLabelLineSliderComponent extends TabSliderBase {
|
|
4
|
+
get style(): {
|
|
5
|
+
width: string;
|
|
6
|
+
left: string;
|
|
7
|
+
};
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabLabelLineSliderComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabLabelLineSliderComponent, "sfc-tab-label-line-slider", never, {}, {}, never, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare abstract class TabSliderBase {
|
|
3
|
+
count: number;
|
|
4
|
+
index: number;
|
|
5
|
+
abstract get style(): any;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabSliderBase, never>;
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TabSliderBase, never, never, { "count": "count"; "index": "index"; }, {}, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { OnInit, QueryList, TemplateRef } from '@angular/core';
|
|
2
|
+
import { TemplateReferenceDirective } from 'ngx-sfc-common';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { TabService } from './service/tab.service';
|
|
5
|
+
import { TabsTemplate } from './tabs-template.enum';
|
|
6
|
+
import { ITabsViewModel } from './models/tabs-view.model';
|
|
7
|
+
import { ITabModel } from './models/tab.model';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class TabsComponent implements OnInit {
|
|
10
|
+
private tabService;
|
|
11
|
+
TabsTemplate: typeof TabsTemplate;
|
|
12
|
+
tabs: ITabModel[];
|
|
13
|
+
label?: TemplateRef<any>;
|
|
14
|
+
slider?: TemplateRef<any>;
|
|
15
|
+
body?: TemplateRef<any>;
|
|
16
|
+
templates: QueryList<TemplateReferenceDirective> | undefined;
|
|
17
|
+
vm$?: Observable<ITabsViewModel>;
|
|
18
|
+
private tabsSubject?;
|
|
19
|
+
constructor(tabService: TabService);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
selectTab(tab: ITabModel, index: number): void;
|
|
22
|
+
private getSelectedIndex;
|
|
23
|
+
private updateSelected;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "sfc-tabs", never, { "tabs": "tabs"; "label": "label"; "slider": "slider"; "body": "body"; }, {}, ["templates"], never>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ITagModel } from './tag.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TagComponent {
|
|
4
|
+
model: ITagModel;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TagComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TagComponent, "sfc-tag", never, { "model": "model"; }, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ITagModel } from './parts/tag/tag.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TagsComponent {
|
|
4
|
+
tags: ITagModel[];
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TagsComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TagsComponent, "sfc-tags", never, { "tags": "tags"; }, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { TimelineItemPosition } from './timeline-item-position.enum';
|
|
2
|
+
import { ITimelineItemModel } from './timeline-item.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TimelineItemComponent {
|
|
5
|
+
model: ITimelineItemModel;
|
|
6
|
+
get position(): TimelineItemPosition;
|
|
7
|
+
get period(): boolean;
|
|
8
|
+
get showImage(): boolean;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TimelineItemComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TimelineItemComponent, "sfc-timeline-item", never, { "model": "model"; }, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { TimelineItemPosition } from "./timeline-item-position.enum";
|
|
2
|
+
export interface ITimelineItemModel {
|
|
3
|
+
title: string;
|
|
4
|
+
position?: TimelineItemPosition;
|
|
5
|
+
dateTimeLabel?: string;
|
|
6
|
+
description?: string;
|
|
7
|
+
period?: boolean;
|
|
8
|
+
icon?: string;
|
|
9
|
+
image?: string;
|
|
10
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ITimelineItemModel } from './parts/item/timeline-item.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TimelineComponent {
|
|
4
|
+
items: ITimelineItemModel[];
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TimelineComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TimelineComponent, "sfc-timeline", never, { "items": "items"; }, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/tabs/tabs.component";
|
|
3
|
+
import * as i2 from "./components/tabs/parts/labels/tab-label-line/tab-label-line.component";
|
|
4
|
+
import * as i3 from "./components/tabs/parts/labels/tab-label-icon/tab-label-icon.component";
|
|
5
|
+
import * as i4 from "./components/tabs/parts/sliders/tab-label-line/tab-label-line-slider.component";
|
|
6
|
+
import * as i5 from "./components/tabs/parts/sliders/tab-label-icon/tab-label-icon-slider.component";
|
|
7
|
+
import * as i6 from "./components/menu/side/side-menu.component";
|
|
8
|
+
import * as i7 from "./components/menu/side/parts/header/side-menu-header.component";
|
|
9
|
+
import * as i8 from "./components/menu/side/parts/item/side-menu-item.component";
|
|
10
|
+
import * as i9 from "./components/menu/side/parts/title/side-menu-title.component";
|
|
11
|
+
import * as i10 from "./components/menu/side/parts/item/content/side-menu-item-content.component";
|
|
12
|
+
import * as i11 from "./components/menu/dropdown/dropdown-menu.component";
|
|
13
|
+
import * as i12 from "./components/menu/dropdown/parts/item/dropdown-menu-item.component";
|
|
14
|
+
import * as i13 from "./components/menu/navigation/navigation-menu.component";
|
|
15
|
+
import * as i14 from "./components/menu/navigation/parts/item/navigation-menu-item.component";
|
|
16
|
+
import * as i15 from "./components/stars/stars.component";
|
|
17
|
+
import * as i16 from "./components/avatar/avatar.component";
|
|
18
|
+
import * as i17 from "./components/avatar/parts/badge/avatar-badge.component";
|
|
19
|
+
import * as i18 from "./components/progress/line/progress-line.component";
|
|
20
|
+
import * as i19 from "./components/progress/semi-circle/progress-semi-circle.component";
|
|
21
|
+
import * as i20 from "./components/progress/circle/progress-circle.component";
|
|
22
|
+
import * as i21 from "./components/tags/tags.component";
|
|
23
|
+
import * as i22 from "./components/tags/parts/tag/tag.component";
|
|
24
|
+
import * as i23 from "./components/slider/slider.component";
|
|
25
|
+
import * as i24 from "./components/slider/parts/item/slider-item.component";
|
|
26
|
+
import * as i25 from "./components/slider/parts/button/slider-button.component";
|
|
27
|
+
import * as i26 from "./components/slider/parts/pagination/slider-pagination.component";
|
|
28
|
+
import * as i27 from "./components/timeline/timeline.component";
|
|
29
|
+
import * as i28 from "./components/timeline/parts/item/timeline-item.component";
|
|
30
|
+
import * as i29 from "./components/notification/notification.component";
|
|
31
|
+
import * as i30 from "./components/notification/parts/content/notification-content.component";
|
|
32
|
+
import * as i31 from "./components/chart/chart.component";
|
|
33
|
+
import * as i32 from "./components/table/table.component";
|
|
34
|
+
import * as i33 from "./components/table/parts/columns/default/default-table-column.component";
|
|
35
|
+
import * as i34 from "./components/table/parts/columns/selectable/selectable-table-column.component";
|
|
36
|
+
import * as i35 from "./components/table/parts/toggle/columns-toggle.component";
|
|
37
|
+
import * as i36 from "./components/table/parts/content/rows/default/default-table-row.component";
|
|
38
|
+
import * as i37 from "./components/table/parts/content/rows/expanded/expanded-table-row.component";
|
|
39
|
+
import * as i38 from "./components/table/parts/content/cards/default/default-table-card.component";
|
|
40
|
+
import * as i39 from "./components/carousel/carousel.component";
|
|
41
|
+
import * as i40 from "./components/carousel/parts/stage/carousel-stage.component";
|
|
42
|
+
import * as i41 from "./components/carousel/directive/carousel-slide.directive";
|
|
43
|
+
import * as i42 from "@angular/common";
|
|
44
|
+
import * as i43 from "ngx-sfc-common";
|
|
45
|
+
export declare class NgxSfcComponentsModule {
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgxSfcComponentsModule, never>;
|
|
47
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NgxSfcComponentsModule, [typeof i1.TabsComponent, typeof i2.TabLabelLineComponent, typeof i3.TabLabelIconComponent, typeof i4.TabLabelLineSliderComponent, typeof i5.TabLabelIconSliderComponent, typeof i6.SideMenuComponent, typeof i7.SideMenuHeaderComponent, typeof i8.SideMenuItemComponent, typeof i9.SideMenuTitleComponent, typeof i10.SideMenuItemContentComponent, typeof i11.DropdownMenuComponent, typeof i12.DropdownMenuItemComponent, typeof i13.NavigationMenuComponent, typeof i14.NavigationMenuItemComponent, typeof i15.StarsComponent, typeof i16.AvatarComponent, typeof i17.AvatarBadgeComponent, typeof i18.ProgressLineComponent, typeof i19.ProgressSemiCircleComponent, typeof i20.ProgressCircleComponent, typeof i21.TagsComponent, typeof i22.TagComponent, typeof i23.SliderComponent, typeof i24.SliderItemComponent, typeof i25.SliderButtonComponent, typeof i26.SliderPaginationComponent, typeof i27.TimelineComponent, typeof i28.TimelineItemComponent, typeof i29.NotificationComponent, typeof i30.NotificationContentComponent, typeof i31.ChartComponent, typeof i32.TableComponent, typeof i33.DefaultTableColumnComponent, typeof i34.SelectableTableColumnComponent, typeof i35.ColumnsToggleComponent, typeof i36.DefaultTableRowComponent, typeof i37.ExpandedTableRowComponent, typeof i38.DefaultTableCardComponent, typeof i39.CarouselComponent, typeof i40.CarouselStageComponent, typeof i41.CarouselSlideDirective], [typeof i42.CommonModule, typeof i43.NgxSfcCommonModule], [typeof i1.TabsComponent, typeof i2.TabLabelLineComponent, typeof i3.TabLabelIconComponent, typeof i4.TabLabelLineSliderComponent, typeof i5.TabLabelIconSliderComponent, typeof i6.SideMenuComponent, typeof i11.DropdownMenuComponent, typeof i13.NavigationMenuComponent, typeof i15.StarsComponent, typeof i16.AvatarComponent, typeof i17.AvatarBadgeComponent, typeof i18.ProgressLineComponent, typeof i19.ProgressSemiCircleComponent, typeof i20.ProgressCircleComponent, typeof i21.TagsComponent, typeof i23.SliderComponent, typeof i27.TimelineComponent, typeof i29.NotificationComponent, typeof i31.ChartComponent, typeof i32.TableComponent, typeof i37.ExpandedTableRowComponent, typeof i39.CarouselComponent, typeof i41.CarouselSlideDirective]>;
|
|
48
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NgxSfcComponentsModule>;
|
|
49
|
+
}
|