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,100 @@
|
|
|
1
|
+
import { ChartThemeDataSetColors } from "./service/theme/chart-theme.model";
|
|
2
|
+
export declare const CHART_DEFAULTS: {
|
|
3
|
+
OPTIONS: import("chart.js/types/utils")._DeepPartialObject<import("chart.js").CoreChartOptions<keyof import("chart.js").ChartTypeRegistry> & import("chart.js").ElementChartOptions<keyof import("chart.js").ChartTypeRegistry> & import("chart.js").PluginChartOptions<keyof import("chart.js").ChartTypeRegistry> & import("chart.js").DatasetChartOptions<keyof import("chart.js").ChartTypeRegistry> & import("chart.js").ScaleChartOptions<keyof import("chart.js").ChartTypeRegistry>> | undefined;
|
|
4
|
+
OPTIONS_NOT_LINES: import("chart.js/types/utils")._DeepPartialObject<import("chart.js").CoreChartOptions<keyof import("chart.js").ChartTypeRegistry> & import("chart.js").ElementChartOptions<keyof import("chart.js").ChartTypeRegistry> & import("chart.js").PluginChartOptions<keyof import("chart.js").ChartTypeRegistry> & import("chart.js").DatasetChartOptions<keyof import("chart.js").ChartTypeRegistry> & import("chart.js").ScaleChartOptions<keyof import("chart.js").ChartTypeRegistry>> | undefined;
|
|
5
|
+
OPTIONS_RADIAL: import("chart.js/types/utils")._DeepPartialObject<import("chart.js").CoreChartOptions<keyof import("chart.js").ChartTypeRegistry> & import("chart.js").ElementChartOptions<keyof import("chart.js").ChartTypeRegistry> & import("chart.js").PluginChartOptions<keyof import("chart.js").ChartTypeRegistry> & import("chart.js").DatasetChartOptions<keyof import("chart.js").ChartTypeRegistry> & import("chart.js").ScaleChartOptions<keyof import("chart.js").ChartTypeRegistry>> | undefined;
|
|
6
|
+
COLORS: ChartThemeDataSetColors[];
|
|
7
|
+
HALF_TRANSPARENT_COLORS: ChartThemeDataSetColors[];
|
|
8
|
+
THEME: {
|
|
9
|
+
DEFAULT: {
|
|
10
|
+
scales: {
|
|
11
|
+
x: {
|
|
12
|
+
grid: {
|
|
13
|
+
color: string;
|
|
14
|
+
};
|
|
15
|
+
ticks: {
|
|
16
|
+
color: string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
y: {
|
|
20
|
+
grid: {
|
|
21
|
+
color: string;
|
|
22
|
+
};
|
|
23
|
+
ticks: {
|
|
24
|
+
color: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
r: {
|
|
28
|
+
angleLines: {
|
|
29
|
+
color: string;
|
|
30
|
+
};
|
|
31
|
+
grid: {
|
|
32
|
+
color: string;
|
|
33
|
+
};
|
|
34
|
+
ticks: {
|
|
35
|
+
color: string;
|
|
36
|
+
backdropColor: string;
|
|
37
|
+
};
|
|
38
|
+
pointLabels: {
|
|
39
|
+
color: string;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
plugins: {
|
|
44
|
+
legend: {
|
|
45
|
+
labels: {
|
|
46
|
+
color: string;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
title: {
|
|
50
|
+
color: string;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
DARK: {
|
|
55
|
+
scales: {
|
|
56
|
+
x: {
|
|
57
|
+
grid: {
|
|
58
|
+
color: string;
|
|
59
|
+
};
|
|
60
|
+
ticks: {
|
|
61
|
+
color: string;
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
y: {
|
|
65
|
+
grid: {
|
|
66
|
+
color: string;
|
|
67
|
+
};
|
|
68
|
+
ticks: {
|
|
69
|
+
color: string;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
r: {
|
|
73
|
+
angleLines: {
|
|
74
|
+
color: string;
|
|
75
|
+
};
|
|
76
|
+
grid: {
|
|
77
|
+
color: string;
|
|
78
|
+
};
|
|
79
|
+
ticks: {
|
|
80
|
+
color: string;
|
|
81
|
+
backdropColor: string;
|
|
82
|
+
};
|
|
83
|
+
pointLabels: {
|
|
84
|
+
color: string;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
plugins: {
|
|
89
|
+
legend: {
|
|
90
|
+
labels: {
|
|
91
|
+
color: string;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
title: {
|
|
95
|
+
color: string;
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ChartDataset, ChartType } from 'chart.js';
|
|
2
|
+
import { ChartOptionModel } from '../../chart-option.model';
|
|
3
|
+
import { ChartThemeDataSetColors } from '../theme/chart-theme.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ChartSettingsService {
|
|
6
|
+
getDefaultOptions(type: ChartType): any;
|
|
7
|
+
getDefaultChartOptions(type: ChartType): ChartOptionModel;
|
|
8
|
+
setDatasetStyles(type: ChartType, datasets: ChartDataset[], colors?: ChartThemeDataSetColors[]): void;
|
|
9
|
+
private setDefaultDatasetStyles;
|
|
10
|
+
private setBackgroundDatasetStyles;
|
|
11
|
+
private replaceColors;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChartSettingsService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ChartSettingsService>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ChartConfiguration } from "chart.js";
|
|
2
|
+
export interface ChartThemeModel {
|
|
3
|
+
options?: ChartConfiguration['options'];
|
|
4
|
+
dataSetColors?: ChartThemeDataSetColors[];
|
|
5
|
+
}
|
|
6
|
+
export interface ChartThemeDataSetColors {
|
|
7
|
+
backgroundColor?: string;
|
|
8
|
+
hoverBackgroundColor?: string;
|
|
9
|
+
borderColor?: string;
|
|
10
|
+
hoverBorderColor?: string;
|
|
11
|
+
pointBackgroundColor?: string;
|
|
12
|
+
pointHoverBackgroundColor?: string;
|
|
13
|
+
pointBorderColor?: string;
|
|
14
|
+
pointHoverBorderColor?: string;
|
|
15
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ChartThemeModel } from './chart-theme.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ChartThemeService {
|
|
4
|
+
private model;
|
|
5
|
+
private colorsSubject;
|
|
6
|
+
colors$: import("rxjs").Observable<ChartThemeModel>;
|
|
7
|
+
setColors(model: ChartThemeModel): void;
|
|
8
|
+
getColors(): ChartThemeModel;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChartThemeService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ChartThemeService>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
export { TabsComponent } from '../components/tabs/tabs.component';
|
|
2
|
+
export { ITabModel } from '../components/tabs/models/tab.model';
|
|
3
|
+
export { TabsTemplate } from '../components/tabs/tabs-template.enum';
|
|
4
|
+
export { TabLabelLineComponent } from '../components/tabs/parts/labels/tab-label-line/tab-label-line.component';
|
|
5
|
+
export { TabLabelIconComponent } from '../components/tabs/parts/labels/tab-label-icon/tab-label-icon.component';
|
|
6
|
+
export { TabLabelIconSliderComponent } from './tabs/parts/sliders/tab-label-icon/tab-label-icon-slider.component';
|
|
7
|
+
export { TabLabelLineSliderComponent } from './tabs/parts/sliders/tab-label-line/tab-label-line-slider.component';
|
|
8
|
+
export { SideMenuComponent } from './menu/side/side-menu.component';
|
|
9
|
+
export { ISideMenuModel, ISideMenuItemModel, SideMenuItemType } from './menu/side/side-menu.model';
|
|
10
|
+
export { DropdownMenuComponent } from './menu/dropdown/dropdown-menu.component';
|
|
11
|
+
export { IDropdownMenuItemModel } from './menu/dropdown/parts/item/dropdown-menu-item.model';
|
|
12
|
+
export { NavigationMenuComponent } from './menu/navigation/navigation-menu.component';
|
|
13
|
+
export { INavigationMenuItemModel } from './menu/navigation/parts/item/navigation-menu-item.model';
|
|
14
|
+
export { StarsComponent } from './stars/stars.component';
|
|
15
|
+
export { AvatarComponent } from './avatar/avatar.component';
|
|
16
|
+
export { AvatarBadgeComponent } from './avatar/parts/badge/avatar-badge.component';
|
|
17
|
+
export { IAvatarDataModel } from './avatar/models/avatar-data.model';
|
|
18
|
+
export { IAvatarProgressModel } from './avatar/models/avatar-progress.model';
|
|
19
|
+
export { AvatarBadgePosition } from './avatar/parts/badge/avatar-badge-position.enum';
|
|
20
|
+
export { ProgressLineComponent } from './progress/line/progress-line.component';
|
|
21
|
+
export { ProgressSemiCircleComponent } from './progress/semi-circle/progress-semi-circle.component';
|
|
22
|
+
export { ProgressCircleComponent } from './progress/circle/progress-circle.component';
|
|
23
|
+
export { ITagModel } from './tags/parts/tag/tag.model';
|
|
24
|
+
export { TagsComponent } from './tags/tags.component';
|
|
25
|
+
export { SliderComponent } from './slider/slider.component';
|
|
26
|
+
export { SliderType } from './slider/slider-type.enum';
|
|
27
|
+
export { ISliderItemModel } from './slider/parts/item/slider-item.model';
|
|
28
|
+
export { TimelineComponent } from './timeline/timeline.component';
|
|
29
|
+
export { ITimelineItemModel } from './timeline/parts/item/timeline-item.model';
|
|
30
|
+
export { TimelineItemPosition } from './timeline/parts/item/timeline-item-position.enum';
|
|
31
|
+
export { NotificationComponent } from './notification/notification.component';
|
|
32
|
+
export { NotificationType } from './notification/enums/notification-type.enum';
|
|
33
|
+
export { NotificationTemplate } from './notification/enums/notification-template.enum';
|
|
34
|
+
export { INotificationContentModel } from './notification/parts/content/notification-content.model';
|
|
35
|
+
export { ChartComponent } from './chart/chart.component';
|
|
36
|
+
export { ChartThemeService } from './chart/service/theme/chart-theme.service';
|
|
37
|
+
export { ChartThemeModel } from './chart/service/theme/chart-theme.model';
|
|
38
|
+
export { ChartOptionModel } from './chart/chart-option.model';
|
|
39
|
+
export { TableComponent } from './table/table.component';
|
|
40
|
+
export { ITableDataModel, ITableModel } from './table/models/table.model';
|
|
41
|
+
export { ITablePaginationModel } from './table/models/table-pagination.model';
|
|
42
|
+
export { TableDataType } from './table/enums/table-data-type.enum';
|
|
43
|
+
export { TableTemplate } from './table/enums/table-template.enum';
|
|
44
|
+
export { ITableSelectEvent } from './table/service/select/table-select.event';
|
|
45
|
+
export { DefaultTableColumnComponent } from './table/parts/columns/default/default-table-column.component';
|
|
46
|
+
export { IDefaultTableColumnModel } from './table/parts/columns/table-column.model';
|
|
47
|
+
export { SelectableTableColumnComponent } from './table/parts/columns/selectable/selectable-table-column.component';
|
|
48
|
+
export { ColumnsToggleComponent } from './table/parts/toggle/columns-toggle.component';
|
|
49
|
+
export { DefaultTableRowComponent } from './table/parts/content/rows/default/default-table-row.component';
|
|
50
|
+
export { ExpandedTableRowComponent } from './table/parts/content/rows/expanded/expanded-table-row.component';
|
|
51
|
+
export { ExpandedTableRowTemplate } from './table/parts/content/rows/expanded/expanded-table-row-template.enum';
|
|
52
|
+
export { DefaultTableCardComponent } from './table/parts/content/cards/default/default-table-card.component';
|
|
53
|
+
export { CarouselComponent } from './carousel/carousel.component';
|
|
54
|
+
export { CarouselSlideDirective } from './carousel/directive/carousel-slide.directive';
|
|
55
|
+
export { CarouselOptionsModel } from './carousel/models/options.model';
|
|
56
|
+
export { CarouselSlideEvent } from './carousel/models/slide.model';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { AfterContentInit, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { ClickOutsideEvent, Position, ResizeService } from 'ngx-sfc-common';
|
|
3
|
+
import { IDropdownMenuItemModel } from './parts/item/dropdown-menu-item.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class DropdownMenuComponent implements OnDestroy, OnInit, AfterContentInit {
|
|
6
|
+
private resizeService;
|
|
7
|
+
private window;
|
|
8
|
+
items: IDropdownMenuItemModel[];
|
|
9
|
+
icon?: string;
|
|
10
|
+
label?: string;
|
|
11
|
+
hideOnClick: boolean;
|
|
12
|
+
hideOnClickOutside: boolean;
|
|
13
|
+
bordered: boolean;
|
|
14
|
+
position: Position[];
|
|
15
|
+
open: boolean;
|
|
16
|
+
selected: EventEmitter<IDropdownMenuItemModel>;
|
|
17
|
+
private _position;
|
|
18
|
+
private _resizeSubscription?;
|
|
19
|
+
get showDots(): boolean;
|
|
20
|
+
constructor(resizeService: ResizeService, window: Window);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
ngAfterContentInit(): void;
|
|
23
|
+
ngOnDestroy(): void;
|
|
24
|
+
onClick(item: IDropdownMenuItemModel): void;
|
|
25
|
+
onClickOutside(event: ClickOutsideEvent): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownMenuComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownMenuComponent, "sfc-dropdown-menu", never, { "items": "items"; "icon": "icon"; "label": "label"; "hideOnClick": "hideOnClick"; "hideOnClickOutside": "hideOnClickOutside"; "bordered": "bordered"; "position": "position"; "open": "open"; }, { "selected": "selected"; }, never, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IDropdownMenuItemModel } from './dropdown-menu-item.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DropdownMenuItemComponent {
|
|
4
|
+
item: IDropdownMenuItemModel;
|
|
5
|
+
click(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownMenuItemComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownMenuItemComponent, "sfc-dropdown-menu-item", never, { "item": "item"; }, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { INavigationMenuItemModel } from './parts/item/navigation-menu-item.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class NavigationMenuComponent {
|
|
5
|
+
items: INavigationMenuItemModel[];
|
|
6
|
+
selected: EventEmitter<INavigationMenuItemModel>;
|
|
7
|
+
onClick(item: INavigationMenuItemModel): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationMenuComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavigationMenuComponent, "sfc-navigation-menu", never, { "items": "items"; }, { "selected": "selected"; }, never, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { INavigationMenuItemModel } from './navigation-menu-item.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class NavigationMenuItemComponent {
|
|
4
|
+
item: INavigationMenuItemModel;
|
|
5
|
+
get active(): boolean;
|
|
6
|
+
click(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationMenuItemComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavigationMenuItemComponent, "sfc-navigation-menu-item", never, { "item": "item"; }, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SideMenuHeaderComponent implements OnInit {
|
|
4
|
+
private readonly DEFAULT_MENU_HEADER_TEXT;
|
|
5
|
+
label: string;
|
|
6
|
+
open: boolean;
|
|
7
|
+
toggle: EventEmitter<void>;
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SideMenuHeaderComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SideMenuHeaderComponent, "sfc-side-menu-header", never, { "label": "label"; "open": "open"; }, { "toggle": "toggle"; }, never, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { ISideMenuItemModel } from '../../../side-menu.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SideMenuItemContentComponent {
|
|
5
|
+
private readonly ANGLE_UP_ICON;
|
|
6
|
+
private readonly ANGLE_DOWM_ICON;
|
|
7
|
+
item: ISideMenuItemModel;
|
|
8
|
+
active: boolean;
|
|
9
|
+
open: boolean;
|
|
10
|
+
openParent: boolean;
|
|
11
|
+
hasChildren: boolean;
|
|
12
|
+
selectItem: EventEmitter<ISideMenuItemModel>;
|
|
13
|
+
onClick(): void;
|
|
14
|
+
get expandIcon(): "fa fa-angle-up" | "fa fa-angle-down";
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SideMenuItemContentComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SideMenuItemContentComponent, "sfc-side-menu-item-content", never, { "item": "item"; "active": "active"; "open": "open"; "openParent": "openParent"; "hasChildren": "hasChildren"; }, { "selectItem": "selectItem"; }, never, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { ISideMenuItemModel } from '../../side-menu.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SideMenuItemComponent implements OnInit {
|
|
5
|
+
item: ISideMenuItemModel;
|
|
6
|
+
open: boolean;
|
|
7
|
+
selectItem: EventEmitter<ISideMenuItemModel>;
|
|
8
|
+
openParent: boolean;
|
|
9
|
+
private get hasActiveChild();
|
|
10
|
+
hasChildren(item: ISideMenuItemModel): boolean;
|
|
11
|
+
isActive(item: ISideMenuItemModel): boolean;
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
onParentClick(item: ISideMenuItemModel): void;
|
|
14
|
+
onChildClick(item: ISideMenuItemModel, child: ISideMenuItemModel): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SideMenuItemComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SideMenuItemComponent, "sfc-side-menu-item", never, { "item": "item"; "open": "open"; }, { "selectItem": "selectItem"; }, never, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class SideMenuTitleComponent {
|
|
3
|
+
label: string;
|
|
4
|
+
open: boolean;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SideMenuTitleComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SideMenuTitleComponent, "sfc-side-menu-title", never, { "label": "label"; "open": "open"; }, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { ISideMenuItemModel, ISideMenuModel, SideMenuItemType } from './side-menu.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SideMenuComponent {
|
|
5
|
+
SideMenuItemType: typeof SideMenuItemType;
|
|
6
|
+
model: ISideMenuModel;
|
|
7
|
+
selected: EventEmitter<ISideMenuItemModel>;
|
|
8
|
+
get open(): boolean;
|
|
9
|
+
set open(value: boolean);
|
|
10
|
+
onItemSelect(item: ISideMenuItemModel): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SideMenuComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SideMenuComponent, "sfc-side-menu", never, { "model": "model"; }, { "selected": "selected"; }, never, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export interface ISideMenuModel {
|
|
2
|
+
open: boolean;
|
|
3
|
+
items: ISideMenuItemModel[];
|
|
4
|
+
}
|
|
5
|
+
export interface ISideMenuItemModel {
|
|
6
|
+
active: boolean;
|
|
7
|
+
label: string;
|
|
8
|
+
icon: string;
|
|
9
|
+
type: SideMenuItemType;
|
|
10
|
+
items?: ISideMenuItemModel[];
|
|
11
|
+
}
|
|
12
|
+
export declare enum SideMenuItemType {
|
|
13
|
+
Item = "item",
|
|
14
|
+
Title = "title"
|
|
15
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export { SideMenuHeaderComponent } from './menu/side/parts/header/side-menu-header.component';
|
|
2
|
+
export { SideMenuItemContentComponent } from './menu/side/parts/item/content/side-menu-item-content.component';
|
|
3
|
+
export { SideMenuItemComponent } from './menu/side/parts/item/side-menu-item.component';
|
|
4
|
+
export { SideMenuTitleComponent } from './menu/side/parts/title/side-menu-title.component';
|
|
5
|
+
export { DropdownMenuItemComponent } from './menu/dropdown/parts/item/dropdown-menu-item.component';
|
|
6
|
+
export { NavigationMenuItemComponent } from './menu/navigation/parts/item/navigation-menu-item.component';
|
|
7
|
+
export { TagComponent } from './tags/parts/tag/tag.component';
|
|
8
|
+
export { SliderItemComponent } from './slider/parts/item/slider-item.component';
|
|
9
|
+
export { SliderButtonComponent } from './slider/parts/button/slider-button.component';
|
|
10
|
+
export { SliderPaginationComponent } from './slider/parts/pagination/slider-pagination.component';
|
|
11
|
+
export { TimelineItemComponent } from './timeline/parts/item/timeline-item.component';
|
|
12
|
+
export { NotificationContentComponent } from './notification/parts/content/notification-content.component';
|
|
13
|
+
export { CarouselStageComponent } from './carousel/parts/stage/carousel-stage.component';
|
|
14
|
+
export { CarouselSlideDirective } from './carousel/directive/carousel-slide.directive';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { EventEmitter, OnInit, QueryList, TemplateRef } from '@angular/core';
|
|
2
|
+
import { TemplateReferenceDirective } from 'ngx-sfc-common';
|
|
3
|
+
import { INotificationAutoCloseModel } from './notification-auto-close.model';
|
|
4
|
+
import { NotificationTemplate } from './enums/notification-template.enum';
|
|
5
|
+
import { NotificationType } from './enums/notification-type.enum';
|
|
6
|
+
import { INotificationContentModel } from './parts/content/notification-content.model';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class NotificationComponent implements OnInit {
|
|
9
|
+
private readonly AUTO_CLOSE_INTERVAL_DEFAULT;
|
|
10
|
+
readonly DESTROY_HOST_INTERVAL = 500;
|
|
11
|
+
NotificationTemplate: typeof NotificationTemplate;
|
|
12
|
+
showClose: boolean;
|
|
13
|
+
autoCloseModel: INotificationAutoCloseModel;
|
|
14
|
+
type: NotificationType;
|
|
15
|
+
model: INotificationContentModel;
|
|
16
|
+
content?: TemplateRef<any>;
|
|
17
|
+
closed: EventEmitter<void>;
|
|
18
|
+
buttonClicked: EventEmitter<void>;
|
|
19
|
+
templates: QueryList<TemplateReferenceDirective> | undefined;
|
|
20
|
+
destroy: boolean;
|
|
21
|
+
show: boolean;
|
|
22
|
+
ngOnInit(): void;
|
|
23
|
+
close(): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationComponent, "sfc-notification", never, { "showClose": "showClose"; "autoCloseModel": "autoCloseModel"; "type": "type"; "model": "model"; "content": "content"; }, { "closed": "closed"; "buttonClicked": "buttonClicked"; }, ["templates"], never>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { ButtonType } from 'ngx-sfc-common';
|
|
3
|
+
import { NotificationType } from '../../enums/notification-type.enum';
|
|
4
|
+
import { INotificationContentModel } from './notification-content.model';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class NotificationContentComponent {
|
|
7
|
+
ButtonType: typeof ButtonType;
|
|
8
|
+
type: NotificationType;
|
|
9
|
+
model: INotificationContentModel;
|
|
10
|
+
buttonClicked: EventEmitter<void>;
|
|
11
|
+
get showImage(): boolean;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationContentComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationContentComponent, "sfc-notification-content", never, { "type": "type"; "model": "model"; }, { "buttonClicked": "buttonClicked"; }, never, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ProgressBaseComponent } from '../progress.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ProgressCircleComponent extends ProgressBaseComponent {
|
|
4
|
+
get reversed(): boolean;
|
|
5
|
+
get transformRotate(): string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressCircleComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressCircleComponent, "sfc-progress-circle", never, {}, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ProgressBaseComponent } from '../progress.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ProgressLineComponent extends ProgressBaseComponent implements OnInit {
|
|
5
|
+
total: number;
|
|
6
|
+
labelStart?: string;
|
|
7
|
+
labelEnd?: string;
|
|
8
|
+
hideEnd: boolean;
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
get label(): string;
|
|
11
|
+
get progressStyles(): {
|
|
12
|
+
width: string;
|
|
13
|
+
backgroundColor: string;
|
|
14
|
+
};
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressLineComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressLineComponent, "sfc-progress-line", never, { "total": "total"; "labelStart": "labelStart"; "labelEnd": "labelEnd"; "hideEnd": "hideEnd"; }, {}, never, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare abstract class ProgressBaseComponent {
|
|
3
|
+
progress: number;
|
|
4
|
+
background?: string;
|
|
5
|
+
getColor: (value: number) => string;
|
|
6
|
+
getDefaultColor(value: number): string;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBaseComponent, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ProgressBaseComponent, never, never, { "progress": "progress"; "background": "background"; "getColor": "getColor"; }, {}, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ProgressBaseComponent } from '../progress.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ProgressSemiCircleComponent extends ProgressBaseComponent implements OnInit {
|
|
5
|
+
limits: boolean;
|
|
6
|
+
min: number;
|
|
7
|
+
max: number;
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
get barStyles(): {
|
|
10
|
+
transform: string;
|
|
11
|
+
borderBottomColor: string;
|
|
12
|
+
borderRightColor: string;
|
|
13
|
+
};
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressSemiCircleComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressSemiCircleComponent, "sfc-progress-semi-circle", never, { "limits": "limits"; "min": "min"; "max": "max"; }, {}, never, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SliderButtonType } from './slider-button-type.enum';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SliderButtonComponent {
|
|
4
|
+
private readonly ICON_NEXT;
|
|
5
|
+
private readonly ICON_PREVIOUS;
|
|
6
|
+
type: SliderButtonType;
|
|
7
|
+
active: boolean;
|
|
8
|
+
get icon(): string;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SliderButtonComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SliderButtonComponent, "sfc-slider-button", never, { "type": "type"; "active": "active"; }, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ISliderItemModel } from './slider-item.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SliderItemComponent {
|
|
4
|
+
model: ISliderItemModel;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SliderItemComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SliderItemComponent, "sfc-slider-item", never, { "model": "model"; }, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SliderPaginationComponent {
|
|
4
|
+
count: number;
|
|
5
|
+
index: number;
|
|
6
|
+
selected: EventEmitter<number>;
|
|
7
|
+
get items(): Array<any>;
|
|
8
|
+
selectItem(index: number): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SliderPaginationComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SliderPaginationComponent, "sfc-slider-pagination", never, { "count": "count"; "index": "index"; }, { "selected": "selected"; }, never, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { SliderService } from '../slider/slider.service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SliderAutomaticService {
|
|
4
|
+
private sliderService;
|
|
5
|
+
private readonly AUTOMATIC_INTERVAL_MS;
|
|
6
|
+
/**
|
|
7
|
+
* Interval reference (for stop if required)
|
|
8
|
+
*/
|
|
9
|
+
private autoSlider;
|
|
10
|
+
pause: boolean;
|
|
11
|
+
constructor(sliderService: SliderService);
|
|
12
|
+
start(): void;
|
|
13
|
+
stop(): void;
|
|
14
|
+
toggle(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SliderAutomaticService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SliderAutomaticService>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { SliderMoveType } from './slider-move-type.enum';
|
|
3
|
+
import { ISliderMoveModel } from './slider-move.model';
|
|
4
|
+
export declare class SliderService {
|
|
5
|
+
private index;
|
|
6
|
+
private moveSubject;
|
|
7
|
+
private move$;
|
|
8
|
+
model$: Observable<ISliderMoveModel>;
|
|
9
|
+
init(count$: Observable<number>): void;
|
|
10
|
+
move(type: SliderMoveType): void;
|
|
11
|
+
select(index: number): void;
|
|
12
|
+
}
|