@symphony-talent/component-library 4.122.0 → 4.124.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/icon/icon.enum.mjs +2 -1
- package/esm2020/lib/design-guide/icon-explorer/icon-explorer.helper.mjs +7 -1
- package/esm2020/lib/organisms/invoice-area/invoice-area.component.mjs +3 -3
- package/esm2020/lib/pages/sms-usage-report-page/sms-usage-report-page.component.mjs +30 -0
- package/esm2020/lib/pages/sms-usage-report-page/sms-usage-report-page.component.model.mjs +2 -0
- package/esm2020/lib/pages/sms-usage-report-page/sms-usage-report-page.module.mjs +58 -0
- package/esm2020/projects/component-library/lib/atoms/icon/icon.enum.mjs +2 -1
- package/esm2020/projects/component-library/lib/design-guide/icon-explorer/icon-explorer.helper.mjs +7 -1
- package/esm2020/projects/component-library/lib/organisms/invoice-area/invoice-area.component.mjs +3 -3
- package/esm2020/projects/component-library/lib/pages/sms-usage-report-page/sms-usage-report-page.component.mjs +30 -0
- package/esm2020/projects/component-library/lib/pages/sms-usage-report-page/sms-usage-report-page.component.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/pages/sms-usage-report-page/sms-usage-report-page.module.mjs +58 -0
- package/esm2020/projects/component-library/public-api.mjs +4 -1
- package/esm2020/public-api.mjs +4 -1
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +74 -3
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +74 -3
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +74 -3
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +74 -3
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/atoms/icon/icon.enum.d.ts +2 -1
- package/lib/pages/sms-usage-report-page/sms-usage-report-page.component.d.ts +12 -0
- package/lib/pages/sms-usage-report-page/sms-usage-report-page.component.model.d.ts +11 -0
- package/lib/pages/sms-usage-report-page/sms-usage-report-page.module.d.ts +17 -0
- package/package.json +1 -1
- 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 +1 -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 +8 -5
- package/projects/component-library/global-assets/iconography/{sfx-icons-v5.json → sfx-icons-v6.json} +50 -23
- package/projects/component-library/lib/atoms/icon/icon.enum.d.ts +2 -1
- package/projects/component-library/lib/pages/sms-usage-report-page/sms-usage-report-page.component.d.ts +12 -0
- package/projects/component-library/lib/pages/sms-usage-report-page/sms-usage-report-page.component.model.d.ts +11 -0
- package/projects/component-library/lib/pages/sms-usage-report-page/sms-usage-report-page.module.d.ts +17 -0
- package/projects/component-library/public-api.d.ts +3 -0
- package/public-api.d.ts +3 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { SmsUsageReportModel } from './sms-usage-report-page.component.model';
|
|
3
|
+
import { SettingDetailNavigationModel } from '../../molecules/settings-detail-navigation-item/settings-detail-navigation-item.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SmsUsageReportPageComponent {
|
|
6
|
+
model: SmsUsageReportModel;
|
|
7
|
+
detailNavigationClicked: EventEmitter<SettingDetailNavigationModel>;
|
|
8
|
+
constructor();
|
|
9
|
+
onDetailNavigationClick(event: SettingDetailNavigationModel): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmsUsageReportPageComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SmsUsageReportPageComponent, "symphony-sms-usage-report-page", never, { "model": "model"; }, { "detailNavigationClicked": "detailNavigationClicked"; }, never, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { BreadcrumbModel } from '../../molecules/breadcrumb/breadcrumb.model';
|
|
2
|
+
import { SettingDetailNavigationModel } from '../../molecules/settings-detail-navigation-item/settings-detail-navigation-item.model';
|
|
3
|
+
import { InvoiceAreaModel } from '../../organisms/invoice-area/invoice-area.model';
|
|
4
|
+
export interface SmsUsageReportModel {
|
|
5
|
+
pageTitle: string;
|
|
6
|
+
breadcrumbs: BreadcrumbModel[];
|
|
7
|
+
navigationList: SettingDetailNavigationModel[];
|
|
8
|
+
invoiceAreaModel: Partial<InvoiceAreaModel>;
|
|
9
|
+
totalSmsSent: String;
|
|
10
|
+
totalSmsSentAllTime: String;
|
|
11
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./sms-usage-report-page.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../organisms/settings-detail-navigation-list/settings-detail-navigation-list.module";
|
|
5
|
+
import * as i4 from "../../templates/setting-details/setting-details-template.module";
|
|
6
|
+
import * as i5 from "../../molecules/breadcrumb/breadcrumb.module";
|
|
7
|
+
import * as i6 from "../../atoms/h3/h3.module";
|
|
8
|
+
import * as i7 from "../../organisms/invoice-area/invoice-area.module";
|
|
9
|
+
import * as i8 from "../../molecules/invoice-line-item/invoice-line-item.module";
|
|
10
|
+
import * as i9 from "../../atoms/h4/h4.module";
|
|
11
|
+
import * as i10 from "../../atoms/h5/h5.module";
|
|
12
|
+
import * as i11 from "../../atoms/paragraph/paragraph.module";
|
|
13
|
+
export declare class SmsUsageReportPageModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmsUsageReportPageModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SmsUsageReportPageModule, [typeof i1.SmsUsageReportPageComponent], [typeof i2.CommonModule, typeof i3.SettingsDetailNavigationListModule, typeof i4.SettingDetailsTemplateModule, typeof i5.BreadcrumbModule, typeof i6.H3Module, typeof i7.InvoiceAreaModule, typeof i8.InvoiceLineItemModule, typeof i9.H4Module, typeof i10.H5Module, typeof i11.ParagraphModule], [typeof i1.SmsUsageReportPageComponent]>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SmsUsageReportPageModule>;
|
|
17
|
+
}
|
package/package.json
CHANGED
package/projects/component-library/global-assets/iconography/library-fonts/library-icons.eot
CHANGED
|
Binary file
|
package/projects/component-library/global-assets/iconography/library-fonts/library-icons.svg
CHANGED
|
@@ -99,4 +99,5 @@
|
|
|
99
99
|
<glyph unicode="" glyph-name="economics" horiz-adv-x="910" d="M796.444 46.7h-682.667c-30.176 0-59.116-11.662-80.453-32.421s-33.325-48.919-33.325-78.279h910.222c0 29.36-11.986 57.52-33.326 78.279s-50.278 32.421-80.452 32.421zM198.542 174.012c-17.831-19.974-27.719-45.5-27.875-71.959h568.889c-0.154 26.459-10.047 51.985-27.876 71.959 60.103 36.324 109.807 86.824 144.509 146.813 34.708 59.989 53.294 127.528 54.033 196.365 0 117.44-47.946 230.072-133.296 313.115s-201.114 129.696-321.815 129.696c-120.703 0-236.463-46.653-321.812-129.696s-133.299-195.674-133.299-313.115c0.741-68.837 19.325-136.375 54.031-196.365s84.411-110.49 144.51-146.813zM455.111 461.838c-22.632 0-44.337-8.748-60.34-24.318s-24.993-36.688-24.993-58.708c0 22.019-8.99 43.137-24.993 58.708s-37.709 24.318-60.34 24.318c22.632 0 44.337 8.748 60.34 24.319s24.993 36.688 24.993 58.708c0-22.020 8.99-43.138 24.993-58.708s37.709-24.319 60.34-24.319zM216.177 821.622c0-20.353 4.12-40.507 12.125-59.31s19.738-35.889 34.53-50.281c14.791-14.391 32.351-25.808 51.677-33.596s40.041-11.797 60.959-11.797c-42.246 0-82.763-16.328-112.635-45.393s-46.655-68.486-46.655-109.591c0 41.104-16.782 80.526-46.655 109.591s-70.387 45.393-112.634 45.393c20.918 0 41.631 4.008 60.956 11.797s36.886 19.205 51.677 33.596c14.791 14.392 26.524 31.477 34.529 50.281s12.125 38.957 12.125 59.31z" />
|
|
100
100
|
<glyph unicode="" glyph-name="upload" d="M853.333 49.778v-113.778h-682.667v113.778h682.667zM512 903.111l341.333-314.596-84.594-77.938-196.949 181.476v-585.387h-119.524v585.387l-197.006-181.476-84.594 77.938 341.333 314.596z" />
|
|
101
101
|
<glyph unicode="" glyph-name="user" d="M512 391.111c265.216 0 483.499-199.168 512-455.111h-1024c28.501 255.943 246.727 455.111 512 455.111zM512 277.333c-0.345 0.001-0.754 0.002-1.163 0.002-158.295 0-295.135-91.862-360.119-225.185l-1.044-2.372h724.594c-66.011 135.694-202.841 227.557-361.127 227.557-0.421 0-0.842-0.001-1.263-0.002h0.065zM512 960c158.151 0 286.265-127.317 286.265-284.444s-128.114-284.444-286.265-284.444c-158.151 0-286.322 127.317-286.322 284.444s128.171 284.444 286.322 284.444zM512 846.222c-94.72 0-171.804-76.572-171.804-170.667s77.084-170.667 171.804-170.667c94.663 0 171.804 76.572 171.804 170.667s-77.198 170.667-171.804 170.667z" />
|
|
102
|
+
<glyph unicode="" glyph-name="analytics-new" d="M1005.614 861.228c23.131 21.262 24.644 57.25 3.385 80.382-21.265 23.131-57.253 24.647-80.384 3.384l-286.8-263.623-251.415 97.773c-17.794 6.92-37.874 4.452-53.463-6.571l-312.889-221.235c-25.654-18.139-31.746-53.64-13.607-79.294s53.64-31.746 79.294-13.607l287.923 203.582 255.947-99.535c20.218-7.862 43.145-3.542 59.119 11.138l312.889 287.605zM853.339 21.328c0-47.127 38.201-85.333 85.333-85.333 47.127 0 85.333 38.207 85.333 85.333v568.891c0 47.128-38.207 85.333-85.333 85.333-47.132 0-85.333-38.205-85.333-85.333v-568.891zM284.448 21.328c0-47.127 38.205-85.333 85.333-85.333s85.333 38.207 85.333 85.333v420.98c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333v-420.98zM0.003 21.328c0-47.127 38.205-85.333 85.333-85.333s85.333 38.207 85.333 85.333v174.615c0 47.127-38.205 85.333-85.333 85.333s-85.333-38.207-85.333-85.333v-174.615zM654.228-64.006c-47.132 0-85.333 38.207-85.333 85.333v322.526c0 47.127 38.201 85.334 85.333 85.334 47.127 0 85.333-38.207 85.333-85.334v-322.526c0-47.127-38.207-85.333-85.333-85.333z" />
|
|
102
103
|
</font></defs></svg>
|
package/projects/component-library/global-assets/iconography/library-fonts/library-icons.ttf
CHANGED
|
Binary file
|
package/projects/component-library/global-assets/iconography/library-fonts/library-icons.woff
CHANGED
|
Binary file
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: 'library-icons';
|
|
3
|
-
src: url('library-fonts/library-icons.eot?
|
|
4
|
-
src: url('library-fonts/library-icons.eot?
|
|
5
|
-
url('library-fonts/library-icons.ttf?
|
|
6
|
-
url('library-fonts/library-icons.woff?
|
|
7
|
-
url('library-fonts/library-icons.svg?
|
|
3
|
+
src: url('library-fonts/library-icons.eot?f1aeou');
|
|
4
|
+
src: url('library-fonts/library-icons.eot?f1aeou#iefix') format('embedded-opentype'),
|
|
5
|
+
url('library-fonts/library-icons.ttf?f1aeou') format('truetype'),
|
|
6
|
+
url('library-fonts/library-icons.woff?f1aeou') format('woff'),
|
|
7
|
+
url('library-fonts/library-icons.svg?f1aeou#library-icons') format('svg');
|
|
8
8
|
font-weight: normal;
|
|
9
9
|
font-style: normal;
|
|
10
10
|
font-display: block;
|
|
@@ -301,3 +301,6 @@
|
|
|
301
301
|
.si-user:before {
|
|
302
302
|
content: "\e95b";
|
|
303
303
|
}
|
|
304
|
+
.si-analytics-new:before {
|
|
305
|
+
content: "\e95c";
|
|
306
|
+
}
|
package/projects/component-library/global-assets/iconography/{sfx-icons-v5.json → sfx-icons-v6.json}
RENAMED
|
@@ -558,15 +558,20 @@
|
|
|
558
558
|
"order": 481,
|
|
559
559
|
"name": "user",
|
|
560
560
|
"prevSize": 32
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"order": 513,
|
|
564
|
+
"name": "analytics-new",
|
|
565
|
+
"prevSize": 32
|
|
561
566
|
}
|
|
562
567
|
],
|
|
563
568
|
"metadata": {
|
|
564
569
|
"name": "sfx icons",
|
|
565
570
|
"importSize": {
|
|
566
|
-
"width":
|
|
567
|
-
"height":
|
|
571
|
+
"width": 18,
|
|
572
|
+
"height": 18
|
|
568
573
|
},
|
|
569
|
-
"iconsHash":
|
|
574
|
+
"iconsHash": 1004087600
|
|
570
575
|
},
|
|
571
576
|
"height": 1024,
|
|
572
577
|
"prevSize": 32,
|
|
@@ -576,6 +581,7 @@
|
|
|
576
581
|
"M825.805 91.356v-6.467c0-31.419-25.468-56.889-56.887-56.889h-712.029c-31.419 0-56.889 25.47-56.889 56.889v4.259l414.667 259.712 411.138-257.504zM825.805 225.608l-380.941 238.593c-18.47 11.567-41.925 11.567-60.394 0l-384.47-240.802v316.603c0 31.415 25.47 56.887 56.889 56.887h712.029c31.42 0 56.887-25.472 56.887-56.887v-314.394z",
|
|
577
582
|
"M165.333 699.401h715.699c12.655 0 24.789-5.197 33.737-14.443 8.951-9.246 13.978-21.786 13.978-34.863v-394.428c25.306 0 49.579 10.389 67.477 28.881 17.894 18.492 27.947 43.573 27.947 69.726v394.428c0 26.155-10.052 51.234-27.947 69.726-17.899 18.496-42.172 28.885-67.477 28.885h-95.428v147.908l-190.852-147.908h-381.706c-25.309 0-49.581-10.389-67.477-28.885-17.896-18.492-27.95-43.571-27.95-69.726v-49.301z"
|
|
578
583
|
],
|
|
584
|
+
"width": 1067,
|
|
579
585
|
"attrs": [
|
|
580
586
|
{
|
|
581
587
|
"fill": "rgb(130, 145, 159)"
|
|
@@ -584,11 +590,6 @@
|
|
|
584
590
|
"fill": "rgb(130, 145, 159)"
|
|
585
591
|
}
|
|
586
592
|
],
|
|
587
|
-
"width": 1067,
|
|
588
|
-
"grid": 0,
|
|
589
|
-
"tags": [
|
|
590
|
-
"email-sms-default"
|
|
591
|
-
],
|
|
592
593
|
"colorPermutations": {
|
|
593
594
|
"130145159125525525515172961832621": [
|
|
594
595
|
{
|
|
@@ -599,7 +600,11 @@
|
|
|
599
600
|
}
|
|
600
601
|
]
|
|
601
602
|
},
|
|
602
|
-
"
|
|
603
|
+
"tags": [
|
|
604
|
+
"email-sms-default"
|
|
605
|
+
],
|
|
606
|
+
"defaultCode": 59649,
|
|
607
|
+
"grid": 0
|
|
603
608
|
},
|
|
604
609
|
{
|
|
605
610
|
"paths": [
|
|
@@ -618,10 +623,6 @@
|
|
|
618
623
|
"fill": "rgb(51, 72, 96)"
|
|
619
624
|
}
|
|
620
625
|
],
|
|
621
|
-
"grid": 0,
|
|
622
|
-
"tags": [
|
|
623
|
-
"assign-to-actions"
|
|
624
|
-
],
|
|
625
626
|
"colorPermutations": {
|
|
626
627
|
"130145159125525525515172961832621": [
|
|
627
628
|
{
|
|
@@ -635,7 +636,11 @@
|
|
|
635
636
|
}
|
|
636
637
|
]
|
|
637
638
|
},
|
|
638
|
-
"
|
|
639
|
+
"tags": [
|
|
640
|
+
"assign-to-actions"
|
|
641
|
+
],
|
|
642
|
+
"defaultCode": 59650,
|
|
643
|
+
"grid": 0
|
|
639
644
|
},
|
|
640
645
|
{
|
|
641
646
|
"paths": [
|
|
@@ -645,6 +650,7 @@
|
|
|
645
650
|
"M950.645 109.929h-133.961v133.96h133.961v-133.96zM956.767 0.214c57.212 0 103.592 46.38 103.592 103.592v146.205c0 57.212-46.38 103.591-103.592 103.591h-146.205c-57.212 0-103.593-46.38-103.593-103.591v-146.205c0-57.213 46.381-103.592 103.593-103.592h146.205z",
|
|
646
651
|
"M316.812 109.714h-133.96v133.96h133.96v-133.96zM322.934 0c57.212 0 103.592 46.38 103.592 103.592v146.205c0 57.212-46.38 103.591-103.592 103.591h-146.205c-57.212 0-103.592-46.38-103.592-103.591v-146.205c0-57.213 46.38-103.592 103.592-103.592h146.205z"
|
|
647
652
|
],
|
|
653
|
+
"width": 1097,
|
|
648
654
|
"attrs": [
|
|
649
655
|
{
|
|
650
656
|
"fill": "rgb(51, 72, 96)"
|
|
@@ -662,11 +668,6 @@
|
|
|
662
668
|
"fill": "rgb(51, 72, 96)"
|
|
663
669
|
}
|
|
664
670
|
],
|
|
665
|
-
"width": 1097,
|
|
666
|
-
"grid": 0,
|
|
667
|
-
"tags": [
|
|
668
|
-
"qr-code"
|
|
669
|
-
],
|
|
670
671
|
"colorPermutations": {
|
|
671
672
|
"130145159125525525515172961832621": [
|
|
672
673
|
{
|
|
@@ -686,7 +687,11 @@
|
|
|
686
687
|
}
|
|
687
688
|
]
|
|
688
689
|
},
|
|
689
|
-
"
|
|
690
|
+
"tags": [
|
|
691
|
+
"qr-code"
|
|
692
|
+
],
|
|
693
|
+
"defaultCode": 59648,
|
|
694
|
+
"grid": 0
|
|
690
695
|
},
|
|
691
696
|
{
|
|
692
697
|
"paths": [
|
|
@@ -1849,6 +1854,28 @@
|
|
|
1849
1854
|
],
|
|
1850
1855
|
"defaultCode": 59739,
|
|
1851
1856
|
"grid": 0
|
|
1857
|
+
},
|
|
1858
|
+
{
|
|
1859
|
+
"paths": [
|
|
1860
|
+
"M1005.614 98.772c23.131-21.262 24.644-57.25 3.385-80.382-21.265-23.131-57.253-24.647-80.384-3.384l-286.8 263.623-251.415-97.773c-17.794-6.92-37.874-4.452-53.463 6.571l-312.889 221.235c-25.654 18.139-31.746 53.64-13.607 79.294s53.64 31.746 79.294 13.607l287.923-203.582 255.947 99.535c20.218 7.862 43.145 3.542 59.119-11.138l312.889-287.605zM853.339 938.672c0 47.127 38.201 85.333 85.333 85.333 47.127 0 85.333-38.207 85.333-85.333v-568.891c0-47.128-38.207-85.333-85.333-85.333-47.132 0-85.333 38.205-85.333 85.333v568.891zM284.448 938.672c0 47.127 38.205 85.333 85.333 85.333s85.333-38.207 85.333-85.333v-420.98c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333v420.98zM0.003 938.672c0 47.127 38.205 85.333 85.333 85.333s85.333-38.207 85.333-85.333v-174.615c0-47.127-38.205-85.333-85.333-85.333s-85.333 38.207-85.333 85.333v174.615zM654.228 1024.006c-47.132 0-85.333-38.207-85.333-85.333v-322.526c0-47.127 38.201-85.334 85.333-85.334 47.127 0 85.333 38.207 85.333 85.334v322.526c0 47.127-38.207 85.333-85.333 85.333z"
|
|
1861
|
+
],
|
|
1862
|
+
"attrs": [
|
|
1863
|
+
{
|
|
1864
|
+
"fill": "rgb(51, 72, 96)"
|
|
1865
|
+
}
|
|
1866
|
+
],
|
|
1867
|
+
"grid": 0,
|
|
1868
|
+
"tags": [
|
|
1869
|
+
"analytics-BETA"
|
|
1870
|
+
],
|
|
1871
|
+
"colorPermutations": {
|
|
1872
|
+
"130145159125525525515172961832621": [
|
|
1873
|
+
{
|
|
1874
|
+
"f": 1
|
|
1875
|
+
}
|
|
1876
|
+
]
|
|
1877
|
+
},
|
|
1878
|
+
"defaultCode": 59740
|
|
1852
1879
|
}
|
|
1853
1880
|
],
|
|
1854
1881
|
"colorThemes": [
|
|
@@ -1898,9 +1925,9 @@
|
|
|
1898
1925
|
"whitespace": 50
|
|
1899
1926
|
},
|
|
1900
1927
|
"embed": false,
|
|
1901
|
-
"
|
|
1902
|
-
"
|
|
1903
|
-
"
|
|
1928
|
+
"ie7": false,
|
|
1929
|
+
"noie8": false,
|
|
1930
|
+
"showSelector": true
|
|
1904
1931
|
},
|
|
1905
1932
|
"imagePref": {
|
|
1906
1933
|
"prefix": "icon-",
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { SmsUsageReportModel } from './sms-usage-report-page.component.model';
|
|
3
|
+
import { SettingDetailNavigationModel } from '../../molecules/settings-detail-navigation-item/settings-detail-navigation-item.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SmsUsageReportPageComponent {
|
|
6
|
+
model: SmsUsageReportModel;
|
|
7
|
+
detailNavigationClicked: EventEmitter<SettingDetailNavigationModel>;
|
|
8
|
+
constructor();
|
|
9
|
+
onDetailNavigationClick(event: SettingDetailNavigationModel): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmsUsageReportPageComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SmsUsageReportPageComponent, "symphony-sms-usage-report-page", never, { "model": "model"; }, { "detailNavigationClicked": "detailNavigationClicked"; }, never, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { BreadcrumbModel } from '../../molecules/breadcrumb/breadcrumb.model';
|
|
2
|
+
import { SettingDetailNavigationModel } from '../../molecules/settings-detail-navigation-item/settings-detail-navigation-item.model';
|
|
3
|
+
import { InvoiceAreaModel } from '../../organisms/invoice-area/invoice-area.model';
|
|
4
|
+
export interface SmsUsageReportModel {
|
|
5
|
+
pageTitle: string;
|
|
6
|
+
breadcrumbs: BreadcrumbModel[];
|
|
7
|
+
navigationList: SettingDetailNavigationModel[];
|
|
8
|
+
invoiceAreaModel: Partial<InvoiceAreaModel>;
|
|
9
|
+
totalSmsSent: String;
|
|
10
|
+
totalSmsSentAllTime: String;
|
|
11
|
+
}
|
package/projects/component-library/lib/pages/sms-usage-report-page/sms-usage-report-page.module.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./sms-usage-report-page.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../organisms/settings-detail-navigation-list/settings-detail-navigation-list.module";
|
|
5
|
+
import * as i4 from "../../templates/setting-details/setting-details-template.module";
|
|
6
|
+
import * as i5 from "../../molecules/breadcrumb/breadcrumb.module";
|
|
7
|
+
import * as i6 from "../../atoms/h3/h3.module";
|
|
8
|
+
import * as i7 from "../../organisms/invoice-area/invoice-area.module";
|
|
9
|
+
import * as i8 from "../../molecules/invoice-line-item/invoice-line-item.module";
|
|
10
|
+
import * as i9 from "../../atoms/h4/h4.module";
|
|
11
|
+
import * as i10 from "../../atoms/h5/h5.module";
|
|
12
|
+
import * as i11 from "../../atoms/paragraph/paragraph.module";
|
|
13
|
+
export declare class SmsUsageReportPageModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmsUsageReportPageModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SmsUsageReportPageModule, [typeof i1.SmsUsageReportPageComponent], [typeof i2.CommonModule, typeof i3.SettingsDetailNavigationListModule, typeof i4.SettingDetailsTemplateModule, typeof i5.BreadcrumbModule, typeof i6.H3Module, typeof i7.InvoiceAreaModule, typeof i8.InvoiceLineItemModule, typeof i9.H4Module, typeof i10.H5Module, typeof i11.ParagraphModule], [typeof i1.SmsUsageReportPageComponent]>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SmsUsageReportPageModule>;
|
|
17
|
+
}
|
|
@@ -298,5 +298,8 @@ export * from './lib/pages/settings-license-management/settings-license-manageme
|
|
|
298
298
|
export * from './lib/pages/settings-license-management/settings-license-management.module';
|
|
299
299
|
export * from './lib/molecules/input-limited-text/input-limited-text.component';
|
|
300
300
|
export * from './lib/molecules/input-limited-text/input-limited-text.module';
|
|
301
|
+
export * from './lib/pages/sms-usage-report-page/sms-usage-report-page.component';
|
|
302
|
+
export * from './lib/pages/sms-usage-report-page/sms-usage-report-page.component.model';
|
|
303
|
+
export * from './lib/pages/sms-usage-report-page/sms-usage-report-page.module';
|
|
301
304
|
export * from './lib/pipe/trim-id.pipe';
|
|
302
305
|
export * from './lib/pipe/pipe.module';
|
package/public-api.d.ts
CHANGED
|
@@ -298,5 +298,8 @@ export * from './lib/pages/settings-license-management/settings-license-manageme
|
|
|
298
298
|
export * from './lib/pages/settings-license-management/settings-license-management.module';
|
|
299
299
|
export * from './lib/molecules/input-limited-text/input-limited-text.component';
|
|
300
300
|
export * from './lib/molecules/input-limited-text/input-limited-text.module';
|
|
301
|
+
export * from './lib/pages/sms-usage-report-page/sms-usage-report-page.component';
|
|
302
|
+
export * from './lib/pages/sms-usage-report-page/sms-usage-report-page.component.model';
|
|
303
|
+
export * from './lib/pages/sms-usage-report-page/sms-usage-report-page.module';
|
|
301
304
|
export * from './lib/pipe/trim-id.pipe';
|
|
302
305
|
export * from './lib/pipe/pipe.module';
|