@symphony-talent/component-library 1.9.0 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/atoms/atoms.module.mjs +3 -11
- package/esm2020/lib/atoms/button/button.component.mjs +3 -3
- package/esm2020/lib/atoms/filter-area/filter-area.component.mjs +1 -1
- package/esm2020/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.mjs +1 -1
- package/esm2020/lib/atoms/grid/framework/contact-activity-score/{contact-activity-score.component.module.mjs → contact-activity-score.module.mjs} +1 -1
- package/esm2020/lib/atoms/grid/framework/framework.module.mjs +2 -2
- package/esm2020/lib/atoms/grid/grid.component.mjs +5 -6
- package/esm2020/lib/atoms/grid/grid.model.mjs +1 -1
- package/esm2020/lib/atoms/h1/h1.component.mjs +1 -1
- package/esm2020/lib/atoms/h3/h3.component.mjs +1 -1
- package/esm2020/lib/atoms/h4/h4.component.mjs +1 -1
- package/esm2020/lib/atoms/icon/icon.component.mjs +1 -1
- package/esm2020/lib/atoms/input-checkbox/input-checkbox.model.mjs +2 -0
- package/esm2020/lib/atoms/input-radio/input-radio.component.mjs +1 -1
- package/esm2020/lib/atoms/input-text/input-text.component.mjs +5 -3
- package/esm2020/lib/atoms/paragraph/paragraph.component.mjs +1 -1
- package/esm2020/lib/atoms/pill/pill.component.mjs +2 -2
- package/esm2020/lib/atoms/sfx-loader/sfx-loader.component.mjs +1 -1
- package/esm2020/lib/atoms/sfx-page-loader/sfx-page-loader.component.mjs +1 -1
- package/esm2020/lib/atoms/sfx-progress-bar/sfx-progress-bar.component.mjs +1 -1
- package/esm2020/lib/atoms/task-icon/task-icon.component.mjs +1 -1
- package/esm2020/lib/atoms/two-column-filter-area/two-column-filter-area.component.mjs +1 -1
- package/esm2020/lib/design-guide/icon-explorer/icon-explorer.component.mjs +1 -1
- package/esm2020/lib/design-guide/typography/typography.component.mjs +31 -0
- package/esm2020/lib/design-guide/typography/typography.model.mjs +2 -0
- package/esm2020/lib/design-guide/typography/typography.module.mjs +46 -0
- package/esm2020/lib/molecules/card/card.component.mjs +28 -0
- package/esm2020/lib/molecules/card/card.model.mjs +2 -0
- package/esm2020/lib/molecules/card/card.module.mjs +22 -0
- package/esm2020/lib/molecules/molecules.module.mjs +4 -26
- package/esm2020/lib/molecules/note/note.component.mjs +1 -1
- package/esm2020/lib/molecules/pills/pills.component.mjs +3 -3
- package/esm2020/lib/molecules/task/task.component.mjs +1 -1
- package/esm2020/lib/organisms/card-list/card-list.component.mjs +23 -0
- package/esm2020/lib/organisms/card-list/card-list.module.mjs +19 -0
- package/esm2020/lib/organisms/note-list/note-list.component.mjs +1 -1
- package/esm2020/lib/organisms/organisms.module.mjs +40 -0
- package/esm2020/lib/organisms/task-list/task-list.component.mjs +1 -1
- package/esm2020/lib/pages/events-settings-page/events-settings-page.component.mjs +8 -9
- package/esm2020/lib/pages/events-settings-page/events-settings-page.model.mjs +1 -1
- package/esm2020/lib/pages/setting-list-page/setting-list-page.component.mjs +33 -0
- package/esm2020/lib/pages/setting-list-page/setting-list-page.model.mjs +2 -0
- package/esm2020/lib/pages/setting-list-page/setting-list-page.module.mjs +46 -0
- package/esm2020/lib/templates/admin-list/admin-list.component.mjs +1 -1
- package/esm2020/lib/templates/placeholder/placeholder.component.mjs +1 -1
- package/esm2020/lib/templates/setting-list-template/setting-list-template.component.mjs +12 -0
- package/esm2020/lib/templates/setting-list-template/setting-list-template.module.mjs +28 -0
- package/esm2020/projects/component-library/lib/atoms/atoms.module.mjs +3 -11
- package/esm2020/projects/component-library/lib/atoms/button/button.component.mjs +3 -3
- package/esm2020/projects/component-library/lib/atoms/filter-area/filter-area.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/atoms/grid/framework/contact-activity-score/{contact-activity-score.component.module.mjs → contact-activity-score.module.mjs} +1 -1
- package/esm2020/projects/component-library/lib/atoms/grid/framework/framework.module.mjs +2 -2
- package/esm2020/projects/component-library/lib/atoms/grid/grid.component.mjs +5 -6
- package/esm2020/projects/component-library/lib/atoms/grid/grid.model.mjs +1 -1
- package/esm2020/projects/component-library/lib/atoms/h1/h1.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/atoms/h3/h3.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/atoms/h4/h4.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/atoms/icon/icon.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/atoms/input-checkbox/input-checkbox.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/atoms/input-radio/input-radio.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/atoms/input-text/input-text.component.mjs +5 -3
- package/esm2020/projects/component-library/lib/atoms/paragraph/paragraph.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/atoms/pill/pill.component.mjs +2 -2
- package/esm2020/projects/component-library/lib/atoms/sfx-loader/sfx-loader.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/atoms/sfx-page-loader/sfx-page-loader.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/atoms/sfx-progress-bar/sfx-progress-bar.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/atoms/task-icon/task-icon.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/atoms/two-column-filter-area/two-column-filter-area.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/design-guide/icon-explorer/icon-explorer.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/design-guide/typography/typography.component.mjs +31 -0
- package/esm2020/projects/component-library/lib/design-guide/typography/typography.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/design-guide/typography/typography.module.mjs +46 -0
- package/esm2020/projects/component-library/lib/molecules/card/card.component.mjs +28 -0
- package/esm2020/projects/component-library/lib/molecules/card/card.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/molecules/card/card.module.mjs +22 -0
- package/esm2020/projects/component-library/lib/molecules/molecules.module.mjs +4 -26
- package/esm2020/projects/component-library/lib/molecules/note/note.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/molecules/pills/pills.component.mjs +3 -3
- package/esm2020/projects/component-library/lib/molecules/task/task.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/organisms/card-list/card-list.component.mjs +23 -0
- package/esm2020/projects/component-library/lib/organisms/card-list/card-list.module.mjs +19 -0
- package/esm2020/projects/component-library/lib/organisms/note-list/note-list.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/organisms/organisms.module.mjs +40 -0
- package/esm2020/projects/component-library/lib/organisms/task-list/task-list.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/pages/events-settings-page/events-settings-page.component.mjs +8 -9
- package/esm2020/projects/component-library/lib/pages/events-settings-page/events-settings-page.model.mjs +1 -1
- package/esm2020/projects/component-library/lib/pages/setting-list-page/setting-list-page.component.mjs +33 -0
- package/esm2020/projects/component-library/lib/pages/setting-list-page/setting-list-page.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/pages/setting-list-page/setting-list-page.module.mjs +46 -0
- package/esm2020/projects/component-library/lib/templates/admin-list/admin-list.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/templates/placeholder/placeholder.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/templates/setting-list-template/setting-list-template.component.mjs +12 -0
- package/esm2020/projects/component-library/lib/templates/setting-list-template/setting-list-template.module.mjs +28 -0
- package/esm2020/projects/component-library/public-api.mjs +50 -42
- package/esm2020/public-api.mjs +50 -42
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +1228 -1000
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +1228 -1000
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +1228 -1000
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +1228 -1000
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/atoms/atoms.module.d.ts +22 -24
- package/lib/atoms/grid/framework/contact-activity-score/{contact-activity-score.component.module.d.ts → contact-activity-score.module.d.ts} +0 -0
- package/lib/atoms/grid/framework/framework.module.d.ts +1 -1
- package/lib/atoms/grid/grid.component.d.ts +2 -6
- package/lib/atoms/grid/grid.model.d.ts +1 -0
- package/lib/atoms/input-checkbox/input-checkbox.model.d.ts +5 -0
- package/lib/atoms/input-text/input-text.component.d.ts +2 -1
- package/lib/design-guide/typography/typography.component.d.ts +9 -0
- package/lib/design-guide/typography/typography.model.d.ts +9 -0
- package/lib/design-guide/typography/typography.module.d.ts +14 -0
- package/lib/molecules/card/card.component.d.ts +11 -0
- package/lib/molecules/card/card.model.d.ts +6 -0
- package/lib/molecules/card/card.module.d.ts +12 -0
- package/lib/molecules/molecules.module.d.ts +4 -6
- package/lib/organisms/card-list/card-list.component.d.ts +11 -0
- package/lib/organisms/card-list/card-list.module.d.ts +9 -0
- package/lib/organisms/organisms.module.d.ts +12 -0
- package/lib/pages/events-settings-page/events-settings-page.component.d.ts +1 -1
- package/lib/pages/events-settings-page/events-settings-page.model.d.ts +0 -1
- package/lib/pages/setting-list-page/setting-list-page.component.d.ts +15 -0
- package/lib/pages/setting-list-page/setting-list-page.model.d.ts +6 -0
- package/lib/pages/setting-list-page/setting-list-page.module.d.ts +14 -0
- package/lib/templates/setting-list-template/setting-list-template.component.d.ts +6 -0
- package/lib/templates/setting-list-template/setting-list-template.module.d.ts +9 -0
- package/package.json +1 -1
- package/projects/component-library/global-assets/fonts/neuzeit-grotesk-t-ot-black-condensed_32179-webfont.woff +0 -0
- package/projects/component-library/global-assets/fonts/neuzeit-grotesk-t-ot-black-condensed_32179-webfont.woff2 +0 -0
- package/projects/component-library/global-assets/fonts/neuzeit-grotesk-t-ot-black-extra-condensed_32180-webfont.woff +0 -0
- package/projects/component-library/global-assets/fonts/neuzeit-grotesk-t-ot-black-extra-condensed_32180-webfont.woff2 +0 -0
- package/projects/component-library/global-assets/fonts/neuzeitgro-bla-webfont.woff +0 -0
- package/projects/component-library/global-assets/fonts/neuzeitgro-bla-webfont.woff2 +0 -0
- package/projects/component-library/global-assets/fonts/neuzeitgro-bol-webfont.woff +0 -0
- package/projects/component-library/global-assets/fonts/neuzeitgro-bol-webfont.woff2 +0 -0
- package/projects/component-library/global-assets/fonts/neuzeitgro-lig-webfont.woff +0 -0
- package/projects/component-library/global-assets/fonts/neuzeitgro-lig-webfont.woff2 +0 -0
- package/projects/component-library/global-assets/fonts/neuzeitgro-reg-webfont.woff +0 -0
- package/projects/component-library/global-assets/fonts/neuzeitgro-reg-webfont.woff2 +0 -0
- package/projects/component-library/global-assets/iconography/library-fonts/library-icons.eot +0 -0
- package/projects/component-library/global-assets/iconography/library-fonts/library-icons.svg +81 -0
- package/projects/component-library/global-assets/iconography/library-fonts/library-icons.ttf +0 -0
- package/projects/component-library/global-assets/iconography/library-fonts/library-icons.woff +0 -0
- package/projects/component-library/global-assets/iconography/library-icons.css +241 -0
- package/projects/component-library/global-assets/iconography/sfxiconsV1.json +1127 -0
- package/projects/component-library/global-assets/spacing.scss +290 -0
- package/projects/component-library/global.scss +784 -0
- package/projects/component-library/lib/atoms/atoms.module.d.ts +22 -24
- package/projects/component-library/lib/atoms/grid/framework/contact-activity-score/{contact-activity-score.component.module.d.ts → contact-activity-score.module.d.ts} +0 -0
- package/projects/component-library/lib/atoms/grid/framework/framework.module.d.ts +1 -1
- package/projects/component-library/lib/atoms/grid/grid.component.d.ts +2 -6
- package/projects/component-library/lib/atoms/grid/grid.model.d.ts +1 -0
- package/projects/component-library/lib/atoms/input-checkbox/input-checkbox.model.d.ts +5 -0
- package/projects/component-library/lib/atoms/input-text/input-text.component.d.ts +2 -1
- package/projects/component-library/lib/design-guide/typography/typography.component.d.ts +9 -0
- package/projects/component-library/lib/design-guide/typography/typography.model.d.ts +9 -0
- package/projects/component-library/lib/design-guide/typography/typography.module.d.ts +14 -0
- package/projects/component-library/lib/molecules/card/card.component.d.ts +11 -0
- package/projects/component-library/lib/molecules/card/card.model.d.ts +6 -0
- package/projects/component-library/lib/molecules/card/card.module.d.ts +12 -0
- package/projects/component-library/lib/molecules/molecules.module.d.ts +4 -6
- package/projects/component-library/lib/organisms/card-list/card-list.component.d.ts +11 -0
- package/projects/component-library/lib/organisms/card-list/card-list.module.d.ts +9 -0
- package/projects/component-library/lib/organisms/organisms.module.d.ts +12 -0
- package/projects/component-library/lib/pages/events-settings-page/events-settings-page.component.d.ts +1 -1
- package/projects/component-library/lib/pages/events-settings-page/events-settings-page.model.d.ts +0 -1
- package/projects/component-library/lib/pages/setting-list-page/setting-list-page.component.d.ts +15 -0
- package/projects/component-library/lib/pages/setting-list-page/setting-list-page.model.d.ts +6 -0
- package/projects/component-library/lib/pages/setting-list-page/setting-list-page.module.d.ts +14 -0
- package/projects/component-library/lib/templates/setting-list-template/setting-list-template.component.d.ts +6 -0
- package/projects/component-library/lib/templates/setting-list-template/setting-list-template.module.d.ts +9 -0
- package/projects/component-library/public-api.d.ts +49 -41
- package/public-api.d.ts +49 -41
- package/esm2020/lib/design-guide/color-swatch-collection/color-swatch-collection.component.mjs +0 -16
- package/esm2020/lib/design-guide/color-swatch-collection/color-swatch-collection.module.mjs +0 -19
- package/esm2020/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.component.mjs +0 -16
- package/esm2020/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.module.mjs +0 -19
- package/lib/design-guide/color-swatch-collection/color-swatch-collection.component.d.ts +0 -8
- package/lib/design-guide/color-swatch-collection/color-swatch-collection.module.d.ts +0 -9
- package/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.component.d.ts +0 -8
- package/projects/component-library/lib/design-guide/color-swatch-collection/color-swatch-collection.module.d.ts +0 -9
|
@@ -3,31 +3,29 @@ import * as i1 from "./button/button.module";
|
|
|
3
3
|
import * as i2 from "./contextual-menu/contextual-menu.module";
|
|
4
4
|
import * as i3 from "./avatar/avatar.module";
|
|
5
5
|
import * as i4 from "./pill/pill.module";
|
|
6
|
-
import * as i5 from "./
|
|
7
|
-
import * as i6 from "./
|
|
8
|
-
import * as i7 from "./
|
|
9
|
-
import * as i8 from "./
|
|
10
|
-
import * as i9 from "./
|
|
11
|
-
import * as i10 from "./
|
|
12
|
-
import * as i11 from "./
|
|
13
|
-
import * as i12 from "./
|
|
14
|
-
import * as i13 from "./
|
|
15
|
-
import * as i14 from "./
|
|
16
|
-
import * as i15 from "./
|
|
17
|
-
import * as i16 from "./
|
|
18
|
-
import * as i17 from "./input-
|
|
19
|
-
import * as i18 from "./input-
|
|
20
|
-
import * as i19 from "./
|
|
21
|
-
import * as i20 from "./
|
|
22
|
-
import * as i21 from "./grid/
|
|
23
|
-
import * as i22 from "./
|
|
24
|
-
import * as i23 from "./
|
|
25
|
-
import * as i24 from "./
|
|
26
|
-
import * as i25 from "./sfx-
|
|
27
|
-
import * as i26 from "./sfx-page-loader/sfx-page-loader.module";
|
|
28
|
-
import * as i27 from "./sfx-progress-bar/sfx-progress-bar.module";
|
|
6
|
+
import * as i5 from "./h1/h1.module";
|
|
7
|
+
import * as i6 from "./h2/h2.module";
|
|
8
|
+
import * as i7 from "./h3/h3.module";
|
|
9
|
+
import * as i8 from "./h4/h4.module";
|
|
10
|
+
import * as i9 from "./h5/h5.module";
|
|
11
|
+
import * as i10 from "./paragraph/paragraph.module";
|
|
12
|
+
import * as i11 from "./icon/icon.module";
|
|
13
|
+
import * as i12 from "./icon-wrapper/icon-wrapper.module";
|
|
14
|
+
import * as i13 from "./filter-area/filter-area.module";
|
|
15
|
+
import * as i14 from "./two-column-filter-area/two-column-filter-area.module";
|
|
16
|
+
import * as i15 from "./input-radio/input-radio.module";
|
|
17
|
+
import * as i16 from "./input-checkbox/input-checkbox.module";
|
|
18
|
+
import * as i17 from "./input-text/input-text.module";
|
|
19
|
+
import * as i18 from "./input-dropdown/input-dropdown.module";
|
|
20
|
+
import * as i19 from "./grid/grid.module";
|
|
21
|
+
import * as i20 from "./grid/framework/contact-activity-score/contact-activity-score.module";
|
|
22
|
+
import * as i21 from "./grid/framework/relevance-score/relevance-score.component.module";
|
|
23
|
+
import * as i22 from "./toaster-alert/toaster-alert.module";
|
|
24
|
+
import * as i23 from "./sfx-loader/sfx-loader.module";
|
|
25
|
+
import * as i24 from "./sfx-page-loader/sfx-page-loader.module";
|
|
26
|
+
import * as i25 from "./sfx-progress-bar/sfx-progress-bar.module";
|
|
29
27
|
export declare class AtomsModule {
|
|
30
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<AtomsModule, never>;
|
|
31
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AtomsModule, never, never, [typeof i1.ButtonModule, typeof i2.ContextualMenuModule, typeof i3.AvatarModule, typeof i4.PillModule, typeof i5.
|
|
29
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AtomsModule, never, never, [typeof i1.ButtonModule, typeof i2.ContextualMenuModule, typeof i3.AvatarModule, typeof i4.PillModule, typeof i5.H1Module, typeof i6.H2Module, typeof i7.H3Module, typeof i8.H4Module, typeof i9.H5Module, typeof i10.ParagraphModule, typeof i11.IconModule, typeof i12.IconWrapperModule, typeof i13.FilterAreaModule, typeof i14.TwoColumnFilterAreaModule, typeof i15.InputRadioModule, typeof i16.InputCheckboxModule, typeof i17.InputTextModule, typeof i18.InputDropdownModule, typeof i19.GridModule, typeof i20.ContactActivityScoreModule, typeof i21.RelevanceScoreModule, typeof i22.ToasterAlertModule, typeof i23.SfxLoaderModule, typeof i24.SfxPageLoaderModule, typeof i25.SfxProgressBarModule]>;
|
|
32
30
|
static ɵinj: i0.ɵɵInjectorDeclaration<AtomsModule>;
|
|
33
31
|
}
|
|
File without changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./contact-activity-score/contact-activity-score.
|
|
2
|
+
import * as i1 from "./contact-activity-score/contact-activity-score.module";
|
|
3
3
|
import * as i2 from "./relevance-score/relevance-score.component.module";
|
|
4
4
|
import * as i3 from "./grid-toggle-cell-renderer/grid-toggle-cell-renderer.module";
|
|
5
5
|
import * as i4 from "./event-settings-more-options/event-settings-more-options.module";
|
|
@@ -3,17 +3,13 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class GridComponent {
|
|
4
4
|
columnDefs: ColDef[];
|
|
5
5
|
rowData: any[];
|
|
6
|
+
onGridReadyFunction: any;
|
|
6
7
|
getRowHeight: () => number;
|
|
7
8
|
rowHeightPage: number;
|
|
8
9
|
gridHeight: number;
|
|
9
10
|
frameworkComponents: any;
|
|
10
11
|
constructor();
|
|
11
|
-
onGridReady(gridReadyEvent: {
|
|
12
|
-
api: {
|
|
13
|
-
sizeColumnsToFit: () => void;
|
|
14
|
-
};
|
|
15
|
-
}): void;
|
|
16
12
|
getFrameworkComponents(): any;
|
|
17
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GridComponent, "symphony-grid", never, { "columnDefs": "columnDefs"; "rowData": "rowData"; }, {}, never, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GridComponent, "symphony-grid", never, { "columnDefs": "columnDefs"; "rowData": "rowData"; "onGridReadyFunction": "onGridReadyFunction"; }, {}, never, never>;
|
|
19
15
|
}
|
|
@@ -6,6 +6,7 @@ export declare class InputTextComponent implements OnInit, OnDestroy {
|
|
|
6
6
|
icon: string;
|
|
7
7
|
label: string;
|
|
8
8
|
isInverse: boolean;
|
|
9
|
+
noMargin: boolean;
|
|
9
10
|
textChange: EventEmitter<string>;
|
|
10
11
|
textChange$: Subject<string>;
|
|
11
12
|
textChangeSubscription: Subscription;
|
|
@@ -14,5 +15,5 @@ export declare class InputTextComponent implements OnInit, OnDestroy {
|
|
|
14
15
|
ngOnDestroy(): void;
|
|
15
16
|
onTextChange(event: any): void;
|
|
16
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextComponent, "symphony-input-text", never, { "placeholder": "placeholder"; "icon": "icon"; "label": "label"; "isInverse": "isInverse"; }, { "textChange": "textChange"; }, never, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextComponent, "symphony-input-text", never, { "placeholder": "placeholder"; "icon": "icon"; "label": "label"; "isInverse": "isInverse"; "noMargin": "noMargin"; }, { "textChange": "textChange"; }, never, never>;
|
|
18
19
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { TypographyModel } from './typography.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TypographyComponent {
|
|
4
|
+
title: string;
|
|
5
|
+
typographyModel: Partial<TypographyModel>;
|
|
6
|
+
constructor();
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TypographyComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TypographyComponent, "symphony-typography", never, { "title": "title"; "typographyModel": "typographyModel"; }, {}, never, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./typography.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../atoms/h2/h2.module";
|
|
5
|
+
import * as i4 from "../../atoms/h3/h3.module";
|
|
6
|
+
import * as i5 from "../../atoms/h4/h4.module";
|
|
7
|
+
import * as i6 from "../../atoms/h1/h1.module";
|
|
8
|
+
import * as i7 from "../../atoms/paragraph/paragraph.module";
|
|
9
|
+
import * as i8 from "../../atoms/h5/h5.module";
|
|
10
|
+
export declare class TypographyModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TypographyModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TypographyModule, [typeof i1.TypographyComponent], [typeof i2.CommonModule, typeof i3.H2Module, typeof i4.H3Module, typeof i5.H4Module, typeof i6.H1Module, typeof i7.ParagraphModule, typeof i8.H5Module], [typeof i1.TypographyComponent]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TypographyModule>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { CardModel } from './card.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CardComponent {
|
|
5
|
+
cardModel: Partial<CardModel>;
|
|
6
|
+
clicked: EventEmitter<CardModel>;
|
|
7
|
+
constructor();
|
|
8
|
+
onClick(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "symphony-card", never, { "cardModel": "cardModel"; }, { "clicked": "clicked"; }, never, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./card.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../atoms/icon/icon.module";
|
|
5
|
+
import * as i4 from "../../atoms/h4/h4.module";
|
|
6
|
+
import * as i5 from "../../atoms/h5/h5.module";
|
|
7
|
+
import * as i6 from "../../atoms/paragraph/paragraph.module";
|
|
8
|
+
export declare class CardModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CardModule, [typeof i1.CardComponent], [typeof i2.CommonModule, typeof i3.IconModule, typeof i4.H4Module, typeof i5.H5Module, typeof i6.ParagraphModule], [typeof i1.CardComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CardModule>;
|
|
12
|
+
}
|
|
@@ -3,13 +3,11 @@ import * as i1 from "@angular/common";
|
|
|
3
3
|
import * as i2 from "../atoms/avatar/avatar.module";
|
|
4
4
|
import * as i3 from "../atoms/contextual-menu/contextual-menu.module";
|
|
5
5
|
import * as i4 from "./pills/pills.module";
|
|
6
|
-
import * as i5 from "./
|
|
7
|
-
import * as i6 from "./
|
|
8
|
-
import * as i7 from "./
|
|
9
|
-
import * as i8 from "./breadcrumb/breadcrumb.module";
|
|
10
|
-
import * as i9 from "./note/note.module";
|
|
6
|
+
import * as i5 from "./color-swatch/color-swatch.module";
|
|
7
|
+
import * as i6 from "./icon-swatch/icon-swatch.module";
|
|
8
|
+
import * as i7 from "./breadcrumb/breadcrumb.module";
|
|
11
9
|
export declare class MoleculesModule {
|
|
12
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<MoleculesModule, never>;
|
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MoleculesModule, never, [typeof i1.CommonModule, typeof i2.AvatarModule, typeof i3.ContextualMenuModule, typeof i4.PillsModule, typeof i5.
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MoleculesModule, never, [typeof i1.CommonModule, typeof i2.AvatarModule, typeof i3.ContextualMenuModule, typeof i4.PillsModule, typeof i5.ColorSwatchModule, typeof i6.IconSwatchModule, typeof i7.BreadcrumbModule], [typeof i4.PillsModule, typeof i7.BreadcrumbModule]>;
|
|
14
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<MoleculesModule>;
|
|
15
13
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { CardModel } from '../../molecules/card/card.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CardListComponent {
|
|
5
|
+
cardList: CardModel[];
|
|
6
|
+
cardClicked: EventEmitter<any>;
|
|
7
|
+
constructor();
|
|
8
|
+
onCardClick(card: CardModel): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardListComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardListComponent, "symphony-card-list", never, { "cardList": "cardList"; }, { "cardClicked": "cardClicked"; }, never, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./card-list.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../molecules/card/card.module";
|
|
5
|
+
export declare class CardListModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardListModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CardListModule, [typeof i1.CardListComponent], [typeof i2.CommonModule, typeof i3.CardModule], [typeof i1.CardListComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CardListModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./note-list/note-list.module";
|
|
4
|
+
import * as i3 from "./task-list/task-list.module";
|
|
5
|
+
import * as i4 from "../design-guide/typography/typography.module";
|
|
6
|
+
import * as i5 from "../design-guide/icon-explorer/icon-explorer.module";
|
|
7
|
+
import * as i6 from "./card-list/card-list.module";
|
|
8
|
+
export declare class OrganismsModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrganismsModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<OrganismsModule, never, [typeof i1.CommonModule, typeof i2.NoteListModule, typeof i3.TaskListModule, typeof i4.TypographyModule, typeof i5.IconExplorerModule, typeof i6.CardListModule], never>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<OrganismsModule>;
|
|
12
|
+
}
|
|
@@ -13,5 +13,5 @@ export declare class EventsSettingsPageComponent {
|
|
|
13
13
|
gridActionsSelect(selection: string): void;
|
|
14
14
|
onAddButtonClick(): void;
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<EventsSettingsPageComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EventsSettingsPageComponent, "symphony-events-settings-page", never, { "model": "model"; }, { "keywordSearchChange": "keywordSearchChange"; "gridActionsSelectedOption": "gridActionsSelectedOption"; "addButtonClicked": "addButtonClicked"; }, never,
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EventsSettingsPageComponent, "symphony-events-settings-page", never, { "model": "model"; }, { "keywordSearchChange": "keywordSearchChange"; "gridActionsSelectedOption": "gridActionsSelectedOption"; "addButtonClicked": "addButtonClicked"; }, never, ["filter-one"]>;
|
|
17
17
|
}
|
package/projects/component-library/lib/pages/setting-list-page/setting-list-page.component.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { CardModel } from '../../molecules/card/card.model';
|
|
3
|
+
import { SettingsListPageModel } from './setting-list-page.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SettingListPageComponent implements OnInit {
|
|
6
|
+
model: SettingsListPageModel;
|
|
7
|
+
cardClicked: EventEmitter<any>;
|
|
8
|
+
filteredCardList: CardModel[];
|
|
9
|
+
constructor();
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
keywordSearch(keyword: string): void;
|
|
12
|
+
onCardClick(card: CardModel): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SettingListPageComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SettingListPageComponent, "symphony-setting-list-page", never, { "model": "model"; }, { "cardClicked": "cardClicked"; }, never, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./setting-list-page.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../templates/placeholder/placeholder.module";
|
|
5
|
+
import * as i4 from "../../templates/setting-list-template/setting-list-template.module";
|
|
6
|
+
import * as i5 from "../../atoms/h3/h3.module";
|
|
7
|
+
import * as i6 from "../../atoms/paragraph/paragraph.module";
|
|
8
|
+
import * as i7 from "../../atoms/input-text/input-text.module";
|
|
9
|
+
import * as i8 from "../../organisms/card-list/card-list.module";
|
|
10
|
+
export declare class SettingListPageModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SettingListPageModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SettingListPageModule, [typeof i1.SettingListPageComponent], [typeof i2.CommonModule, typeof i3.PlaceholderModule, typeof i4.SettingListTemplateModule, typeof i5.H3Module, typeof i6.ParagraphModule, typeof i7.InputTextModule, typeof i8.CardListModule], [typeof i1.SettingListPageComponent]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SettingListPageModule>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class SettingListTemplateComponent {
|
|
3
|
+
constructor();
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SettingListTemplateComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SettingListTemplateComponent, "symphony-setting-list-template", never, {}, {}, never, ["[page-title]", "[List-title]", "[filter-input]", "[card-list]"]>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./setting-list-template.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../placeholder/placeholder.module";
|
|
5
|
+
export declare class SettingListTemplateModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SettingListTemplateModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SettingListTemplateModule, [typeof i1.SettingListTemplateComponent], [typeof i2.CommonModule, typeof i3.PlaceholderModule], [typeof i1.SettingListTemplateComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SettingListTemplateModule>;
|
|
9
|
+
}
|
|
@@ -2,49 +2,59 @@ export * from './lib/atoms/avatar/avatar.component';
|
|
|
2
2
|
export * from './lib/atoms/avatar/avatar.module';
|
|
3
3
|
export * from './lib/atoms/button/button.component';
|
|
4
4
|
export * from './lib/atoms/button/button.module';
|
|
5
|
-
export * from './lib/atoms/
|
|
6
|
-
export * from './lib/atoms/
|
|
7
|
-
export * from './lib/atoms/
|
|
8
|
-
export * from './lib/atoms/
|
|
9
|
-
export * from './lib/atoms/
|
|
10
|
-
export * from './lib/atoms/
|
|
11
|
-
export * from './lib/atoms/
|
|
5
|
+
export * from './lib/atoms/contextual-menu/contextual-menu.component';
|
|
6
|
+
export * from './lib/atoms/contextual-menu/contextual-menu.module';
|
|
7
|
+
export * from './lib/atoms/contextual-menu/contextual-menu.model';
|
|
8
|
+
export * from './lib/atoms/filter-area/filter-area.component';
|
|
9
|
+
export * from './lib/atoms/filter-area/filter-area.module';
|
|
10
|
+
export * from './lib/atoms/grid/grid.component';
|
|
11
|
+
export * from './lib/atoms/grid/grid.module';
|
|
12
|
+
export * from './lib/atoms/grid/grid.model';
|
|
13
|
+
export * from './lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component';
|
|
14
|
+
export * from './lib/atoms/grid/framework/contact-activity-score/contact-activity-score.module';
|
|
15
|
+
export * from './lib/atoms/grid/framework/contact-activity-score/contact-activity-score.model';
|
|
16
|
+
export * from './lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.component';
|
|
17
|
+
export * from './lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.module';
|
|
18
|
+
export * from './lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.model';
|
|
19
|
+
export * from './lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.component';
|
|
20
|
+
export * from './lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.module';
|
|
21
|
+
export * from './lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.model';
|
|
22
|
+
export * from './lib/atoms/grid/framework/relevance-score/relevance-score.component';
|
|
23
|
+
export * from './lib/atoms/grid/framework/relevance-score/relevance-score.component.module';
|
|
24
|
+
export * from './lib/atoms/grid/framework/framework.module';
|
|
25
|
+
export * from './lib/atoms/h1/h1.component';
|
|
26
|
+
export * from './lib/atoms/h1/h1.module';
|
|
12
27
|
export * from './lib/atoms/h2/h2.component';
|
|
13
28
|
export * from './lib/atoms/h2/h2.module';
|
|
14
29
|
export * from './lib/atoms/h3/h3.component';
|
|
15
30
|
export * from './lib/atoms/h3/h3.module';
|
|
16
31
|
export * from './lib/atoms/h4/h4.component';
|
|
17
32
|
export * from './lib/atoms/h4/h4.module';
|
|
18
|
-
export * from './lib/atoms/h1/h1.component';
|
|
19
|
-
export * from './lib/atoms/h1/h1.module';
|
|
20
|
-
export * from './lib/atoms/paragraph/paragraph.component';
|
|
21
|
-
export * from './lib/atoms/paragraph/paragraph.module';
|
|
22
33
|
export * from './lib/atoms/h5/h5.component';
|
|
23
34
|
export * from './lib/atoms/h5/h5.module';
|
|
35
|
+
export * from './lib/atoms/paragraph/paragraph.component';
|
|
36
|
+
export * from './lib/atoms/paragraph/paragraph.module';
|
|
24
37
|
export * from './lib/atoms/icon/icon.component';
|
|
25
38
|
export * from './lib/atoms/icon/icon.module';
|
|
39
|
+
export * from './lib/atoms/icon/icon.enum';
|
|
26
40
|
export * from './lib/atoms/icon-wrapper/icon-wrapper.component';
|
|
27
41
|
export * from './lib/atoms/icon-wrapper/icon-wrapper.module';
|
|
28
42
|
export * from './lib/atoms/input-checkbox/input-checkbox.component';
|
|
29
43
|
export * from './lib/atoms/input-checkbox/input-checkbox.module';
|
|
44
|
+
export * from './lib/atoms/input-checkbox/input-checkbox.model';
|
|
45
|
+
export * from './lib/atoms/input-dropdown/input-dropdown.component';
|
|
46
|
+
export * from './lib/atoms/input-dropdown/input-dropdown.module';
|
|
47
|
+
export * from './lib/atoms/input-dropdown/input-dropdown-list.model';
|
|
48
|
+
export * from './lib/atoms/input-dropdown/input-dropdown-list-item.model';
|
|
30
49
|
export * from './lib/atoms/input-radio/input-radio.component';
|
|
31
50
|
export * from './lib/atoms/input-radio/input-radio.module';
|
|
32
51
|
export * from './lib/atoms/input-text/input-text.component';
|
|
33
52
|
export * from './lib/atoms/input-text/input-text.module';
|
|
34
|
-
export * from './lib/atoms/
|
|
35
|
-
export * from './lib/atoms/
|
|
36
|
-
export * from './lib/atoms/
|
|
37
|
-
export * from './lib/atoms/
|
|
38
|
-
export * from './lib/atoms/
|
|
39
|
-
export * from './lib/atoms/filter-area/filter-area.module';
|
|
40
|
-
export * from './lib/atoms/two-column-filter-area/two-column-filter-area.component';
|
|
41
|
-
export * from './lib/atoms/two-column-filter-area/two-column-filter-area.module';
|
|
42
|
-
export * from './lib/atoms/grid/grid.component';
|
|
43
|
-
export * from './lib/atoms/grid/grid.module';
|
|
44
|
-
export * from './lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component';
|
|
45
|
-
export * from './lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.module';
|
|
46
|
-
export * from './lib/atoms/grid/framework/relevance-score/relevance-score.component';
|
|
47
|
-
export * from './lib/atoms/grid/framework/relevance-score/relevance-score.component.module';
|
|
53
|
+
export * from './lib/atoms/input-toggle/input-toggle.component';
|
|
54
|
+
export * from './lib/atoms/input-toggle/input-toggle.module';
|
|
55
|
+
export * from './lib/atoms/pill/pill.module';
|
|
56
|
+
export * from './lib/atoms/pill/pill.component';
|
|
57
|
+
export * from './lib/atoms/pill/pill.model';
|
|
48
58
|
export * from './lib/atoms/sfx-loader/sfx-loader.component';
|
|
49
59
|
export * from './lib/atoms/sfx-loader/sfx-loader.module';
|
|
50
60
|
export * from './lib/atoms/sfx-page-loader/sfx-page-loader.component';
|
|
@@ -53,27 +63,25 @@ export * from './lib/atoms/sfx-progress-bar/sfx-progress-bar.component';
|
|
|
53
63
|
export * from './lib/atoms/sfx-progress-bar/sfx-progress-bar.module';
|
|
54
64
|
export * from './lib/atoms/toaster-alert/toaster-alert.component';
|
|
55
65
|
export * from './lib/atoms/toaster-alert/toaster-alert.module';
|
|
66
|
+
export * from './lib/atoms/toaster-alert/toaster-alert.model';
|
|
67
|
+
export * from './lib/atoms/two-column-filter-area/two-column-filter-area.component';
|
|
68
|
+
export * from './lib/atoms/two-column-filter-area/two-column-filter-area.module';
|
|
56
69
|
export * from './lib/atoms/atoms.module';
|
|
57
70
|
export * from './lib/molecules/breadcrumb/breadcrumb.component';
|
|
58
71
|
export * from './lib/molecules/breadcrumb/breadcrumb.module';
|
|
59
|
-
export * from './lib/molecules/
|
|
60
|
-
export * from './lib/molecules/
|
|
61
|
-
export * from './lib/molecules/
|
|
62
|
-
export * from './lib/molecules/
|
|
63
|
-
export * from './lib/molecules/note/note.component';
|
|
64
|
-
export * from './lib/molecules/note/note.module';
|
|
72
|
+
export * from './lib/molecules/breadcrumb/breadcrumb.model';
|
|
73
|
+
export * from './lib/molecules/card/card.component';
|
|
74
|
+
export * from './lib/molecules/card/card.module';
|
|
75
|
+
export * from './lib/molecules/card/card.model';
|
|
65
76
|
export * from './lib/molecules/pills/pills.component';
|
|
66
77
|
export * from './lib/molecules/pills/pills.module';
|
|
67
|
-
export * from './lib/molecules/task/task.component';
|
|
68
|
-
export * from './lib/molecules/task/task.module';
|
|
69
78
|
export * from './lib/molecules/molecules.module';
|
|
70
|
-
export * from './lib/organisms/
|
|
71
|
-
export * from './lib/organisms/
|
|
72
|
-
export * from './lib/organisms/
|
|
73
|
-
export * from './lib/organisms/note-list/note-list.module';
|
|
79
|
+
export * from './lib/organisms/card-list/card-list.component';
|
|
80
|
+
export * from './lib/organisms/card-list/card-list.module';
|
|
81
|
+
export * from './lib/organisms/organisms.module';
|
|
74
82
|
export * from './lib/pages/events-settings-page/events-settings-page.component';
|
|
75
83
|
export * from './lib/pages/events-settings-page/events-settings-page.module';
|
|
76
|
-
export * from './lib/
|
|
77
|
-
export * from './lib/
|
|
78
|
-
export * from './lib/
|
|
79
|
-
export * from './lib/
|
|
84
|
+
export * from './lib/pages/events-settings-page/events-settings-page.model';
|
|
85
|
+
export * from './lib/pages/setting-list-page/setting-list-page.component';
|
|
86
|
+
export * from './lib/pages/setting-list-page/setting-list-page.module';
|
|
87
|
+
export * from './lib/pages/setting-list-page/setting-list-page.model';
|
package/public-api.d.ts
CHANGED
|
@@ -2,49 +2,59 @@ export * from './lib/atoms/avatar/avatar.component';
|
|
|
2
2
|
export * from './lib/atoms/avatar/avatar.module';
|
|
3
3
|
export * from './lib/atoms/button/button.component';
|
|
4
4
|
export * from './lib/atoms/button/button.module';
|
|
5
|
-
export * from './lib/atoms/
|
|
6
|
-
export * from './lib/atoms/
|
|
7
|
-
export * from './lib/atoms/
|
|
8
|
-
export * from './lib/atoms/
|
|
9
|
-
export * from './lib/atoms/
|
|
10
|
-
export * from './lib/atoms/
|
|
11
|
-
export * from './lib/atoms/
|
|
5
|
+
export * from './lib/atoms/contextual-menu/contextual-menu.component';
|
|
6
|
+
export * from './lib/atoms/contextual-menu/contextual-menu.module';
|
|
7
|
+
export * from './lib/atoms/contextual-menu/contextual-menu.model';
|
|
8
|
+
export * from './lib/atoms/filter-area/filter-area.component';
|
|
9
|
+
export * from './lib/atoms/filter-area/filter-area.module';
|
|
10
|
+
export * from './lib/atoms/grid/grid.component';
|
|
11
|
+
export * from './lib/atoms/grid/grid.module';
|
|
12
|
+
export * from './lib/atoms/grid/grid.model';
|
|
13
|
+
export * from './lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component';
|
|
14
|
+
export * from './lib/atoms/grid/framework/contact-activity-score/contact-activity-score.module';
|
|
15
|
+
export * from './lib/atoms/grid/framework/contact-activity-score/contact-activity-score.model';
|
|
16
|
+
export * from './lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.component';
|
|
17
|
+
export * from './lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.module';
|
|
18
|
+
export * from './lib/atoms/grid/framework/event-settings-more-options/event-settings-more-options.model';
|
|
19
|
+
export * from './lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.component';
|
|
20
|
+
export * from './lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.module';
|
|
21
|
+
export * from './lib/atoms/grid/framework/grid-toggle-cell-renderer/grid-toggle-cell-renderer.model';
|
|
22
|
+
export * from './lib/atoms/grid/framework/relevance-score/relevance-score.component';
|
|
23
|
+
export * from './lib/atoms/grid/framework/relevance-score/relevance-score.component.module';
|
|
24
|
+
export * from './lib/atoms/grid/framework/framework.module';
|
|
25
|
+
export * from './lib/atoms/h1/h1.component';
|
|
26
|
+
export * from './lib/atoms/h1/h1.module';
|
|
12
27
|
export * from './lib/atoms/h2/h2.component';
|
|
13
28
|
export * from './lib/atoms/h2/h2.module';
|
|
14
29
|
export * from './lib/atoms/h3/h3.component';
|
|
15
30
|
export * from './lib/atoms/h3/h3.module';
|
|
16
31
|
export * from './lib/atoms/h4/h4.component';
|
|
17
32
|
export * from './lib/atoms/h4/h4.module';
|
|
18
|
-
export * from './lib/atoms/h1/h1.component';
|
|
19
|
-
export * from './lib/atoms/h1/h1.module';
|
|
20
|
-
export * from './lib/atoms/paragraph/paragraph.component';
|
|
21
|
-
export * from './lib/atoms/paragraph/paragraph.module';
|
|
22
33
|
export * from './lib/atoms/h5/h5.component';
|
|
23
34
|
export * from './lib/atoms/h5/h5.module';
|
|
35
|
+
export * from './lib/atoms/paragraph/paragraph.component';
|
|
36
|
+
export * from './lib/atoms/paragraph/paragraph.module';
|
|
24
37
|
export * from './lib/atoms/icon/icon.component';
|
|
25
38
|
export * from './lib/atoms/icon/icon.module';
|
|
39
|
+
export * from './lib/atoms/icon/icon.enum';
|
|
26
40
|
export * from './lib/atoms/icon-wrapper/icon-wrapper.component';
|
|
27
41
|
export * from './lib/atoms/icon-wrapper/icon-wrapper.module';
|
|
28
42
|
export * from './lib/atoms/input-checkbox/input-checkbox.component';
|
|
29
43
|
export * from './lib/atoms/input-checkbox/input-checkbox.module';
|
|
44
|
+
export * from './lib/atoms/input-checkbox/input-checkbox.model';
|
|
45
|
+
export * from './lib/atoms/input-dropdown/input-dropdown.component';
|
|
46
|
+
export * from './lib/atoms/input-dropdown/input-dropdown.module';
|
|
47
|
+
export * from './lib/atoms/input-dropdown/input-dropdown-list.model';
|
|
48
|
+
export * from './lib/atoms/input-dropdown/input-dropdown-list-item.model';
|
|
30
49
|
export * from './lib/atoms/input-radio/input-radio.component';
|
|
31
50
|
export * from './lib/atoms/input-radio/input-radio.module';
|
|
32
51
|
export * from './lib/atoms/input-text/input-text.component';
|
|
33
52
|
export * from './lib/atoms/input-text/input-text.module';
|
|
34
|
-
export * from './lib/atoms/
|
|
35
|
-
export * from './lib/atoms/
|
|
36
|
-
export * from './lib/atoms/
|
|
37
|
-
export * from './lib/atoms/
|
|
38
|
-
export * from './lib/atoms/
|
|
39
|
-
export * from './lib/atoms/filter-area/filter-area.module';
|
|
40
|
-
export * from './lib/atoms/two-column-filter-area/two-column-filter-area.component';
|
|
41
|
-
export * from './lib/atoms/two-column-filter-area/two-column-filter-area.module';
|
|
42
|
-
export * from './lib/atoms/grid/grid.component';
|
|
43
|
-
export * from './lib/atoms/grid/grid.module';
|
|
44
|
-
export * from './lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component';
|
|
45
|
-
export * from './lib/atoms/grid/framework/contact-activity-score/contact-activity-score.component.module';
|
|
46
|
-
export * from './lib/atoms/grid/framework/relevance-score/relevance-score.component';
|
|
47
|
-
export * from './lib/atoms/grid/framework/relevance-score/relevance-score.component.module';
|
|
53
|
+
export * from './lib/atoms/input-toggle/input-toggle.component';
|
|
54
|
+
export * from './lib/atoms/input-toggle/input-toggle.module';
|
|
55
|
+
export * from './lib/atoms/pill/pill.module';
|
|
56
|
+
export * from './lib/atoms/pill/pill.component';
|
|
57
|
+
export * from './lib/atoms/pill/pill.model';
|
|
48
58
|
export * from './lib/atoms/sfx-loader/sfx-loader.component';
|
|
49
59
|
export * from './lib/atoms/sfx-loader/sfx-loader.module';
|
|
50
60
|
export * from './lib/atoms/sfx-page-loader/sfx-page-loader.component';
|
|
@@ -53,27 +63,25 @@ export * from './lib/atoms/sfx-progress-bar/sfx-progress-bar.component';
|
|
|
53
63
|
export * from './lib/atoms/sfx-progress-bar/sfx-progress-bar.module';
|
|
54
64
|
export * from './lib/atoms/toaster-alert/toaster-alert.component';
|
|
55
65
|
export * from './lib/atoms/toaster-alert/toaster-alert.module';
|
|
66
|
+
export * from './lib/atoms/toaster-alert/toaster-alert.model';
|
|
67
|
+
export * from './lib/atoms/two-column-filter-area/two-column-filter-area.component';
|
|
68
|
+
export * from './lib/atoms/two-column-filter-area/two-column-filter-area.module';
|
|
56
69
|
export * from './lib/atoms/atoms.module';
|
|
57
70
|
export * from './lib/molecules/breadcrumb/breadcrumb.component';
|
|
58
71
|
export * from './lib/molecules/breadcrumb/breadcrumb.module';
|
|
59
|
-
export * from './lib/molecules/
|
|
60
|
-
export * from './lib/molecules/
|
|
61
|
-
export * from './lib/molecules/
|
|
62
|
-
export * from './lib/molecules/
|
|
63
|
-
export * from './lib/molecules/note/note.component';
|
|
64
|
-
export * from './lib/molecules/note/note.module';
|
|
72
|
+
export * from './lib/molecules/breadcrumb/breadcrumb.model';
|
|
73
|
+
export * from './lib/molecules/card/card.component';
|
|
74
|
+
export * from './lib/molecules/card/card.module';
|
|
75
|
+
export * from './lib/molecules/card/card.model';
|
|
65
76
|
export * from './lib/molecules/pills/pills.component';
|
|
66
77
|
export * from './lib/molecules/pills/pills.module';
|
|
67
|
-
export * from './lib/molecules/task/task.component';
|
|
68
|
-
export * from './lib/molecules/task/task.module';
|
|
69
78
|
export * from './lib/molecules/molecules.module';
|
|
70
|
-
export * from './lib/organisms/
|
|
71
|
-
export * from './lib/organisms/
|
|
72
|
-
export * from './lib/organisms/
|
|
73
|
-
export * from './lib/organisms/note-list/note-list.module';
|
|
79
|
+
export * from './lib/organisms/card-list/card-list.component';
|
|
80
|
+
export * from './lib/organisms/card-list/card-list.module';
|
|
81
|
+
export * from './lib/organisms/organisms.module';
|
|
74
82
|
export * from './lib/pages/events-settings-page/events-settings-page.component';
|
|
75
83
|
export * from './lib/pages/events-settings-page/events-settings-page.module';
|
|
76
|
-
export * from './lib/
|
|
77
|
-
export * from './lib/
|
|
78
|
-
export * from './lib/
|
|
79
|
-
export * from './lib/
|
|
84
|
+
export * from './lib/pages/events-settings-page/events-settings-page.model';
|
|
85
|
+
export * from './lib/pages/setting-list-page/setting-list-page.component';
|
|
86
|
+
export * from './lib/pages/setting-list-page/setting-list-page.module';
|
|
87
|
+
export * from './lib/pages/setting-list-page/setting-list-page.model';
|