@ieeesa-npm/tenants 0.4.4 → 0.4.6
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/package.json
CHANGED
|
@@ -1,44 +1,37 @@
|
|
|
1
|
-
<div *ngIf="basicInfo" class="ieeesa-tenant-basic-info d-flex flex-start flex-column">
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
class="ieeesa-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
<
|
|
35
|
-
|
|
36
|
-
</
|
|
37
|
-
|
|
38
|
-
<span class="ieeesa-body-color-sm-14 mb-0">{{
|
|
39
|
-
basicDetailTexts.domainURL
|
|
40
|
-
}}</span>
|
|
41
|
-
<p class="ieeesa-title-sm-16">{{ basicInfo.appDomainUrl }}</p>
|
|
42
|
-
<span class="ieeesa-body-color-sm-14 mb-0">{{ basicDetailTexts.type }}</span>
|
|
43
|
-
<p class="ieeesa-body-md-16">{{ selectedAppTypeLabel }}</p>
|
|
44
|
-
</div>
|
|
1
|
+
<div *ngIf="basicInfo" class="ieeesa-tenant-basic-info d-flex flex-start flex-column sample-tenant">
|
|
2
|
+
<p class="ieeesa-body-color-sm-14 mb-0">{{ basicDetailTexts.title }}</p>
|
|
3
|
+
<p class="ieeesa-body-md-16">{{ basicInfo.appTitle }}</p>
|
|
4
|
+
<p class="ieeesa-body-color-sm-14 mb-2">{{ basicDetailTexts.logo }}</p>
|
|
5
|
+
<ng-container>
|
|
6
|
+
<ieeesa-image-preview class="pb-3" [imageUrl]="imageUrl"></ieeesa-image-preview>
|
|
7
|
+
</ng-container>
|
|
8
|
+
<span class="ieeesa-body-color-sm-14 mb-0">{{
|
|
9
|
+
basicDetailTexts.heading
|
|
10
|
+
}}</span>
|
|
11
|
+
<p class="ieeesa-title-sm-16">{{ basicInfo.appHeading }}</p>
|
|
12
|
+
<span class="ieeesa-body-color-sm-14 mb-0">{{
|
|
13
|
+
basicDetailTexts.description
|
|
14
|
+
}}</span>
|
|
15
|
+
<p class="ieeesa-title-sm-16 me-4">{{ basicInfo.appDescription }}</p>
|
|
16
|
+
<span class="ieeesa-body-color-sm-14 mb-2">{{
|
|
17
|
+
basicDetailTexts.bgColor
|
|
18
|
+
}}</span>
|
|
19
|
+
<p class="ieeesa-tenant-basic-info__bgColor" [ngStyle]="{ 'background-color': basicInfo.backgroundColor }"></p>
|
|
20
|
+
<span class="ieeesa-body-color-sm-14 mb-0">{{
|
|
21
|
+
basicDetailTexts.helpLink
|
|
22
|
+
}}</span>
|
|
23
|
+
<p class="ieeesa-title-sm-16">{{ basicInfo.appHelpLink }}</p>
|
|
24
|
+
<span class="ieeesa-body-color-sm-14 mb-0">{{
|
|
25
|
+
basicDetailTexts.listOfFeatures
|
|
26
|
+
}}</span>
|
|
27
|
+
<ul [ngClass]="isMobileView ? '' : 'd-flex gap-5'">
|
|
28
|
+
<li class="ieeesa-body-md-16" *ngFor="let feature of basicInfo.features">
|
|
29
|
+
{{ feature?.featureName }}
|
|
30
|
+
</li>
|
|
31
|
+
</ul>
|
|
32
|
+
<span class="ieeesa-body-color-sm-14 mb-0">{{basicDetailTexts.domainURL}}
|
|
33
|
+
</span>
|
|
34
|
+
<p class="ieeesa-title-sm-16">{{ basicInfo.appDomainUrl }}</p>
|
|
35
|
+
<span class="ieeesa-body-color-sm-14 mb-0">{{ basicDetailTexts.type }}</span>
|
|
36
|
+
<p class="ieeesa-body-md-16">{{ selectedAppTypeLabel }}</p>
|
|
37
|
+
</div>
|