@masterteam/brand-display 0.0.8 → 0.0.10
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@masterteam/brand-display",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"directory": "../../../dist/masterteam/brand-display",
|
|
6
6
|
"linkDirectory": false,
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"tailwindcss": "^4.2.2",
|
|
21
21
|
"tailwindcss-primeui": "^0.6.1",
|
|
22
22
|
"@ngxs/store": "^20.1.0",
|
|
23
|
-
"@masterteam/components": "^0.0.
|
|
24
|
-
"@masterteam/
|
|
25
|
-
"@masterteam/
|
|
23
|
+
"@masterteam/components": "^0.0.164",
|
|
24
|
+
"@masterteam/forms": "^0.0.73",
|
|
25
|
+
"@masterteam/icons": "^0.0.15"
|
|
26
26
|
},
|
|
27
27
|
"sideEffects": false,
|
|
28
28
|
"exports": {
|
|
@@ -37,6 +37,7 @@ declare class WhiteLabel implements OnInit {
|
|
|
37
37
|
private readonly route;
|
|
38
38
|
selectedTab: _angular_core.WritableSignal<any>;
|
|
39
39
|
ngOnInit(): void;
|
|
40
|
+
readonly isPageLayoutTab: _angular_core.Signal<boolean>;
|
|
40
41
|
tabsList: {
|
|
41
42
|
label: string;
|
|
42
43
|
value: string;
|
|
@@ -88,17 +89,26 @@ interface ContentAreaDisplay {
|
|
|
88
89
|
interface LoginDisplay$1 {
|
|
89
90
|
loginBrandLogo?: string;
|
|
90
91
|
backgroundColor?: string;
|
|
92
|
+
textColor?: string;
|
|
91
93
|
backgroundImage?: any;
|
|
92
94
|
loginBrandImage?: any;
|
|
93
95
|
repeated?: boolean;
|
|
94
96
|
formWizardPosition?: 'start' | 'end' | 'center';
|
|
95
97
|
}
|
|
98
|
+
interface PageLayoutDisplay$1 {
|
|
99
|
+
headerBackgroundColor?: string;
|
|
100
|
+
headerTextColor?: string;
|
|
101
|
+
sidebarBackgroundColor?: string;
|
|
102
|
+
sidebarTextColor?: string;
|
|
103
|
+
contentBackgroundColor?: string;
|
|
104
|
+
}
|
|
96
105
|
interface BrandDisplay {
|
|
97
106
|
main?: MainDisplay$1;
|
|
98
107
|
sidebar?: SidebarDisplay;
|
|
99
108
|
header?: HeaderDisplay;
|
|
100
109
|
contentArea?: ContentAreaDisplay;
|
|
101
110
|
login?: LoginDisplay$1;
|
|
111
|
+
pageLayout?: PageLayoutDisplay$1;
|
|
102
112
|
loginLogo?: string;
|
|
103
113
|
brandLogoWhite?: string;
|
|
104
114
|
}
|
|
@@ -215,6 +225,18 @@ declare class LoginDisplay implements OnInit {
|
|
|
215
225
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LoginDisplay, "mt-login-display", never, {}, {}, never, never, true, never>;
|
|
216
226
|
}
|
|
217
227
|
|
|
228
|
+
declare class PageLayoutDisplay implements OnInit {
|
|
229
|
+
private readonly translocoService;
|
|
230
|
+
private readonly facade;
|
|
231
|
+
private readonly DEFAULT_DISPLAY_DATA;
|
|
232
|
+
brandDisplayData: _angular_core.Signal<BrandDisplay | null>;
|
|
233
|
+
pageLayoutFormControl: any;
|
|
234
|
+
ngOnInit(): void;
|
|
235
|
+
pageLayoutConfig: _angular_core.WritableSignal<DynamicFormConfig>;
|
|
236
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PageLayoutDisplay, never>;
|
|
237
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PageLayoutDisplay, "mt-page-layout-display", never, {}, {}, never, never, true, never>;
|
|
238
|
+
}
|
|
239
|
+
|
|
218
240
|
interface BackgroundStyles {
|
|
219
241
|
'background-color'?: string;
|
|
220
242
|
'background-image'?: string;
|
|
@@ -233,11 +255,13 @@ declare class ManageBrndingService {
|
|
|
233
255
|
readonly sidebarData: _angular_core.Signal<_masterteam_brand_display.SidebarDisplay | undefined>;
|
|
234
256
|
readonly contentAreaData: _angular_core.Signal<_masterteam_brand_display.ContentAreaDisplay | undefined>;
|
|
235
257
|
readonly loginData: _angular_core.Signal<LoginDisplay$1 | undefined>;
|
|
258
|
+
readonly pageLayoutData: _angular_core.Signal<PageLayoutDisplay$1 | undefined>;
|
|
236
259
|
readonly draftMainData: _angular_core.Signal<MainDisplay$1 | undefined>;
|
|
237
260
|
readonly draftHeaderData: _angular_core.Signal<_masterteam_brand_display.HeaderDisplay | undefined>;
|
|
238
261
|
readonly draftSidebarData: _angular_core.Signal<_masterteam_brand_display.SidebarDisplay | undefined>;
|
|
239
262
|
readonly draftContentAreaData: _angular_core.Signal<_masterteam_brand_display.ContentAreaDisplay | undefined>;
|
|
240
263
|
readonly draftLoginData: _angular_core.Signal<LoginDisplay$1 | undefined>;
|
|
264
|
+
readonly draftPageLayoutData: _angular_core.Signal<PageLayoutDisplay$1 | undefined>;
|
|
241
265
|
readonly productBrandLogo: _angular_core.Signal<any>;
|
|
242
266
|
readonly headerBackgroundImage: _angular_core.Signal<any>;
|
|
243
267
|
readonly sidebarBackgroundImage: _angular_core.Signal<any>;
|
|
@@ -306,6 +330,7 @@ declare class PreviewLogin {
|
|
|
306
330
|
private readonly manageBrnding;
|
|
307
331
|
readonly DEFAULT_DISPLAY_DATA: any;
|
|
308
332
|
previewBackgroundColor: _angular_core.Signal<any>;
|
|
333
|
+
previewTextColor: _angular_core.Signal<any>;
|
|
309
334
|
repeated: _angular_core.Signal<any>;
|
|
310
335
|
previewFormPosition: _angular_core.Signal<any>;
|
|
311
336
|
previewLogoSrc: _angular_core.Signal<any>;
|
|
@@ -314,6 +339,24 @@ declare class PreviewLogin {
|
|
|
314
339
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PreviewLogin, "mt-preview-login", never, {}, {}, never, never, true, never>;
|
|
315
340
|
}
|
|
316
341
|
|
|
342
|
+
declare class PreviewLayoutPage {
|
|
343
|
+
private readonly manageBrnding;
|
|
344
|
+
private readonly DEFAULT;
|
|
345
|
+
private readonly draft;
|
|
346
|
+
protected readonly headerBg: _angular_core.Signal<any>;
|
|
347
|
+
protected readonly headerText: _angular_core.Signal<any>;
|
|
348
|
+
protected readonly sidebarBg: _angular_core.Signal<any>;
|
|
349
|
+
protected readonly sidebarText: _angular_core.Signal<any>;
|
|
350
|
+
protected readonly contentBg: _angular_core.Signal<any>;
|
|
351
|
+
protected readonly mockMenuItems: {
|
|
352
|
+
icon: MTIcon;
|
|
353
|
+
label: string;
|
|
354
|
+
count: number;
|
|
355
|
+
}[];
|
|
356
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PreviewLayoutPage, never>;
|
|
357
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PreviewLayoutPage, "mt-preview-layout-page", never, {}, {}, never, never, true, never>;
|
|
358
|
+
}
|
|
359
|
+
|
|
317
360
|
declare class FaviconService {
|
|
318
361
|
private document;
|
|
319
362
|
private httpClient;
|
|
@@ -325,5 +368,5 @@ declare class FaviconService {
|
|
|
325
368
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<FaviconService>;
|
|
326
369
|
}
|
|
327
370
|
|
|
328
|
-
export { BrandDisplay$1 as BrandDisplay, BrandDisplayActionKey, BrandDisplayFacade, BrandDisplayState, ContentArea, FaviconService, GetBrandDisplay, HeaderSidebarDisplay, LoginDisplay, MainDisplay, ManageBrndingService, PreviewBrand, PreviewLogin, UpdateBrandDisplayData, UpdateBrandDisplayDataLocally, WhiteLabel };
|
|
371
|
+
export { BrandDisplay$1 as BrandDisplay, BrandDisplayActionKey, BrandDisplayFacade, BrandDisplayState, ContentArea, FaviconService, GetBrandDisplay, HeaderSidebarDisplay, LoginDisplay, MainDisplay, ManageBrndingService, PageLayoutDisplay, PreviewBrand, PreviewLayoutPage, PreviewLogin, UpdateBrandDisplayData, UpdateBrandDisplayDataLocally, WhiteLabel };
|
|
329
372
|
export type { BackgroundStyles, BrandDisplayStateModel, ColorSettings, ContentAreaDisplay, HeaderDisplay, LogoSettings, SidebarDisplay };
|