@abp/ng.theme.basic 9.3.0-rc.2 → 9.3.0-rc.4
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/fesm2022/abp-ng.theme.basic-testing.mjs +4 -4
- package/fesm2022/abp-ng.theme.basic-testing.mjs.map +1 -1
- package/fesm2022/abp-ng.theme.basic.mjs +52 -52
- package/fesm2022/abp-ng.theme.basic.mjs.map +1 -1
- package/index.d.ts +218 -5
- package/package.json +3 -3
- package/testing/index.d.ts +12 -5
- package/lib/components/account-layout/account-layout.component.d.ts +0 -13
- package/lib/components/account-layout/auth-wrapper/auth-wrapper.component.d.ts +0 -8
- package/lib/components/account-layout/tenant-box/tenant-box.component.d.ts +0 -8
- package/lib/components/application-layout/application-layout.component.d.ts +0 -11
- package/lib/components/empty-layout/empty-layout.component.d.ts +0 -7
- package/lib/components/index.d.ts +0 -12
- package/lib/components/logo/logo.component.d.ts +0 -9
- package/lib/components/nav-items/current-user.component.d.ts +0 -21
- package/lib/components/nav-items/languages.component.d.ts +0 -16
- package/lib/components/nav-items/nav-items.component.d.ts +0 -10
- package/lib/components/page-alert-container/page-alert-container.component.d.ts +0 -8
- package/lib/components/routes/routes.component.d.ts +0 -17
- package/lib/components/validation-error/validation-error.component.d.ts +0 -9
- package/lib/constants/styles.d.ts +0 -2
- package/lib/enums/components.d.ts +0 -10
- package/lib/enums/index.d.ts +0 -2
- package/lib/enums/user-menu-items.d.ts +0 -4
- package/lib/handlers/index.d.ts +0 -1
- package/lib/handlers/lazy-style.handler.d.ts +0 -23
- package/lib/models/index.d.ts +0 -1
- package/lib/models/layout.d.ts +0 -11
- package/lib/providers/index.d.ts +0 -4
- package/lib/providers/nav-item.provider.d.ts +0 -2
- package/lib/providers/styles.provider.d.ts +0 -3
- package/lib/providers/theme-basic-config.provider.d.ts +0 -1
- package/lib/providers/user-menu.provider.d.ts +0 -3
- package/lib/services/layout.service.d.ts +0 -18
- package/lib/theme-basic.module.d.ts +0 -31
- package/lib/tokens/index.d.ts +0 -1
- package/lib/tokens/lazy-styles.token.d.ts +0 -2
- package/public-api.d.ts +0 -7
- package/testing/lib/theme-basic-testing.module.d.ts +0 -9
- package/testing/public-api.d.ts +0 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,218 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { ChangeDetectorRef, AfterViewInit, TrackByFunction, Renderer2, QueryList, ElementRef, Injector, TemplateRef, ModuleWithProviders, InjectionToken } from '@angular/core';
|
|
3
|
+
import * as _abp_ng_core from '@abp/ng.core';
|
|
4
|
+
import { SubscriptionService, RouterEvents, eLayoutType, ApplicationInfo, EnvironmentService, CurrentUserDto, AuthService, ConfigStateService, SessionStateService, LanguageInfo, RoutesService, TreeNode, ABP, DomInsertionService, ReplaceableComponentsService } from '@abp/ng.core';
|
|
5
|
+
import { AuthWrapperService, TenantBoxService } from '@abp/ng.account.core';
|
|
6
|
+
import { UserMenuService, UserMenu, NavItemsService, NavItem, PageAlertService, LocaleDirection } from '@abp/ng.theme.shared';
|
|
7
|
+
import { Observable } from 'rxjs';
|
|
8
|
+
import { ValidationErrorComponent as ValidationErrorComponent$1, Validation } from '@ngx-validate/core';
|
|
9
|
+
|
|
10
|
+
declare const enum eThemeBasicComponents {
|
|
11
|
+
ApplicationLayout = "Theme.ApplicationLayoutComponent",
|
|
12
|
+
AccountLayout = "Theme.AccountLayoutComponent",
|
|
13
|
+
EmptyLayout = "Theme.EmptyLayoutComponent",
|
|
14
|
+
Logo = "Theme.LogoComponent",
|
|
15
|
+
Routes = "Theme.RoutesComponent",
|
|
16
|
+
NavItems = "Theme.NavItemsComponent",
|
|
17
|
+
CurrentUser = "Theme.CurrentUserComponent",
|
|
18
|
+
Languages = "Theme.LanguagesComponent"
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
declare const enum eUserMenuItems {
|
|
22
|
+
MyAccount = "UserMenu.MyAccount",
|
|
23
|
+
Logout = "UserMenu.Logout"
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
declare class LayoutService {
|
|
27
|
+
private subscription;
|
|
28
|
+
private cdRef;
|
|
29
|
+
isCollapsed: boolean;
|
|
30
|
+
smallScreen: boolean;
|
|
31
|
+
logoComponentKey: eThemeBasicComponents;
|
|
32
|
+
routesComponentKey: eThemeBasicComponents;
|
|
33
|
+
navItemsComponentKey: eThemeBasicComponents;
|
|
34
|
+
constructor(subscription: SubscriptionService, cdRef: ChangeDetectorRef, routerEvents: RouterEvents);
|
|
35
|
+
private checkWindowWidth;
|
|
36
|
+
subscribeWindowSize(): void;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutService, never>;
|
|
38
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LayoutService>;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
declare class AccountLayoutComponent implements AfterViewInit {
|
|
42
|
+
service: LayoutService;
|
|
43
|
+
static type: eLayoutType;
|
|
44
|
+
authWrapperKey: string;
|
|
45
|
+
constructor(service: LayoutService);
|
|
46
|
+
ngAfterViewInit(): void;
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccountLayoutComponent, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AccountLayoutComponent, "abp-layout-account", never, {}, {}, never, never, true, never>;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
declare class AuthWrapperComponent {
|
|
52
|
+
service: AuthWrapperService;
|
|
53
|
+
constructor(service: AuthWrapperService);
|
|
54
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthWrapperComponent, never>;
|
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AuthWrapperComponent, "abp-auth-wrapper", never, {}, {}, never, ["*"], true, never>;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
declare class TenantBoxComponent {
|
|
59
|
+
service: TenantBoxService;
|
|
60
|
+
constructor(service: TenantBoxService);
|
|
61
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TenantBoxComponent, never>;
|
|
62
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TenantBoxComponent, "abp-tenant-box", never, {}, {}, never, never, true, never>;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
declare class ApplicationLayoutComponent implements AfterViewInit {
|
|
66
|
+
readonly service: LayoutService;
|
|
67
|
+
static type: eLayoutType;
|
|
68
|
+
ngAfterViewInit(): void;
|
|
69
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationLayoutComponent, never>;
|
|
70
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ApplicationLayoutComponent, "abp-layout-application", never, {}, {}, never, never, true, never>;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
declare class EmptyLayoutComponent {
|
|
74
|
+
static type: eLayoutType;
|
|
75
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EmptyLayoutComponent, never>;
|
|
76
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EmptyLayoutComponent, "abp-layout-empty", never, {}, {}, never, never, true, never>;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
declare class LogoComponent {
|
|
80
|
+
private environment;
|
|
81
|
+
get appInfo(): ApplicationInfo;
|
|
82
|
+
constructor(environment: EnvironmentService);
|
|
83
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LogoComponent, never>;
|
|
84
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LogoComponent, "abp-logo", never, {}, {}, never, never, true, never>;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
declare class CurrentUserComponent {
|
|
88
|
+
readonly navigateToManageProfile: () => void;
|
|
89
|
+
readonly userMenu: UserMenuService;
|
|
90
|
+
private authService;
|
|
91
|
+
private configState;
|
|
92
|
+
private sessionState;
|
|
93
|
+
currentUser$: Observable<CurrentUserDto>;
|
|
94
|
+
selectedTenant$: Observable<_abp_ng_core.CurrentTenantDto>;
|
|
95
|
+
trackByFn: TrackByFunction<UserMenu>;
|
|
96
|
+
get smallScreen(): boolean;
|
|
97
|
+
constructor(navigateToManageProfile: () => void, userMenu: UserMenuService, authService: AuthService, configState: ConfigStateService, sessionState: SessionStateService);
|
|
98
|
+
navigateToLogin(): void;
|
|
99
|
+
logout(): void;
|
|
100
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CurrentUserComponent, never>;
|
|
101
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CurrentUserComponent, "abp-current-user", never, {}, {}, never, never, true, never>;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
declare class LanguagesComponent {
|
|
105
|
+
private sessionState;
|
|
106
|
+
private configState;
|
|
107
|
+
get smallScreen(): boolean;
|
|
108
|
+
languages$: Observable<LanguageInfo[]>;
|
|
109
|
+
get defaultLanguage$(): Observable<string>;
|
|
110
|
+
get dropdownLanguages$(): Observable<LanguageInfo[]>;
|
|
111
|
+
get selectedLangCulture(): string;
|
|
112
|
+
constructor(sessionState: SessionStateService, configState: ConfigStateService);
|
|
113
|
+
onChangeLang(cultureName: string): void;
|
|
114
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LanguagesComponent, never>;
|
|
115
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LanguagesComponent, "abp-languages", never, {}, {}, never, never, true, never>;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
declare class NavItemsComponent {
|
|
119
|
+
readonly navItems: NavItemsService;
|
|
120
|
+
trackByFn: TrackByFunction<NavItem>;
|
|
121
|
+
constructor(navItems: NavItemsService);
|
|
122
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavItemsComponent, never>;
|
|
123
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavItemsComponent, "abp-nav-items", never, {}, {}, never, never, true, never>;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
declare class PageAlertContainerComponent {
|
|
127
|
+
service: PageAlertService;
|
|
128
|
+
constructor(service: PageAlertService);
|
|
129
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PageAlertContainerComponent, never>;
|
|
130
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageAlertContainerComponent, "abp-page-alert-container", never, {}, {}, never, never, true, never>;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
declare class RoutesComponent {
|
|
134
|
+
readonly routesService: RoutesService;
|
|
135
|
+
protected renderer: Renderer2;
|
|
136
|
+
smallScreen?: boolean;
|
|
137
|
+
childrenContainers: QueryList<ElementRef<HTMLDivElement>>;
|
|
138
|
+
rootDropdownExpand: {
|
|
139
|
+
[key: string]: boolean;
|
|
140
|
+
};
|
|
141
|
+
trackByFn: TrackByFunction<TreeNode<ABP.Route>>;
|
|
142
|
+
isDropdown(node: TreeNode<ABP.Route>): boolean;
|
|
143
|
+
closeDropdown(): void;
|
|
144
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RoutesComponent, never>;
|
|
145
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RoutesComponent, "abp-routes", never, { "smallScreen": { "alias": "smallScreen"; "required": false; }; }, {}, never, never, true, never>;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
declare class ValidationErrorComponent extends ValidationErrorComponent$1 {
|
|
149
|
+
get abpErrors(): (Validation.Error & {
|
|
150
|
+
interpoliteParams?: string[];
|
|
151
|
+
})[];
|
|
152
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ValidationErrorComponent, never>;
|
|
153
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ValidationErrorComponent, "abp-validation-error", never, {}, {}, never, never, true, never>;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
declare const BOOTSTRAP = "bootstrap-{{dir}}.min.css";
|
|
157
|
+
declare class LazyStyleHandler {
|
|
158
|
+
private lazyLoad;
|
|
159
|
+
private styles;
|
|
160
|
+
private _dir;
|
|
161
|
+
readonly loaded: Map<string, HTMLLinkElement>;
|
|
162
|
+
set dir(dir: LocaleDirection);
|
|
163
|
+
get dir(): LocaleDirection;
|
|
164
|
+
constructor(injector: Injector);
|
|
165
|
+
private getHrefFromLink;
|
|
166
|
+
private getLoadedBootstrap;
|
|
167
|
+
private listenToDirectionChanges;
|
|
168
|
+
private setLazyLoad;
|
|
169
|
+
private setStyles;
|
|
170
|
+
private switchCSS;
|
|
171
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LazyStyleHandler, never>;
|
|
172
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LazyStyleHandler>;
|
|
173
|
+
}
|
|
174
|
+
declare function createLazyStyleHref(style: string, dir: string): string;
|
|
175
|
+
declare function initLazyStyleHandler(injector: Injector): () => LazyStyleHandler;
|
|
176
|
+
|
|
177
|
+
declare namespace Layout {
|
|
178
|
+
interface State {
|
|
179
|
+
navigationElements: NavigationElement[];
|
|
180
|
+
}
|
|
181
|
+
interface NavigationElement {
|
|
182
|
+
name: string;
|
|
183
|
+
element: TemplateRef<any>;
|
|
184
|
+
order?: number;
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
declare const BASIC_THEME_NAV_ITEM_PROVIDERS: i0.EnvironmentProviders[];
|
|
189
|
+
declare function configureNavItems(): void;
|
|
190
|
+
|
|
191
|
+
declare const BASIC_THEME_STYLES_PROVIDERS: i0.EnvironmentProviders[];
|
|
192
|
+
declare function configureStyles(domInsertion: DomInsertionService, replaceableComponents: ReplaceableComponentsService): () => void;
|
|
193
|
+
|
|
194
|
+
declare const BASIC_THEME_USER_MENU_PROVIDERS: i0.EnvironmentProviders[];
|
|
195
|
+
declare function configureUserMenu(injector: Injector): () => void;
|
|
196
|
+
|
|
197
|
+
declare function provideThemeBasicConfig(): i0.EnvironmentProviders;
|
|
198
|
+
|
|
199
|
+
declare const LAYOUTS: (typeof AccountLayoutComponent | typeof EmptyLayoutComponent)[];
|
|
200
|
+
declare const THEME_BASIC_COMPONENTS: (typeof LogoComponent | typeof RoutesComponent | typeof NavItemsComponent | typeof TenantBoxComponent | typeof AuthWrapperComponent | typeof PageAlertContainerComponent | typeof AccountLayoutComponent | typeof EmptyLayoutComponent | typeof CurrentUserComponent | typeof LanguagesComponent | typeof ValidationErrorComponent)[];
|
|
201
|
+
declare class BaseThemeBasicModule {
|
|
202
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseThemeBasicModule, never>;
|
|
203
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BaseThemeBasicModule, never, [typeof ApplicationLayoutComponent, typeof AccountLayoutComponent, typeof EmptyLayoutComponent, typeof ValidationErrorComponent, typeof LogoComponent, typeof NavItemsComponent, typeof RoutesComponent, typeof CurrentUserComponent, typeof LanguagesComponent, typeof PageAlertContainerComponent, typeof AuthWrapperComponent, typeof TenantBoxComponent], [typeof ApplicationLayoutComponent, typeof AccountLayoutComponent, typeof EmptyLayoutComponent, typeof ValidationErrorComponent, typeof LogoComponent, typeof NavItemsComponent, typeof RoutesComponent, typeof CurrentUserComponent, typeof LanguagesComponent, typeof PageAlertContainerComponent, typeof AuthWrapperComponent, typeof TenantBoxComponent]>;
|
|
204
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BaseThemeBasicModule>;
|
|
205
|
+
}
|
|
206
|
+
declare class ThemeBasicModule {
|
|
207
|
+
/**
|
|
208
|
+
* @deprecated forRoot method is deprecated, use `provideThemeBasicConfig` *function* for config settings.
|
|
209
|
+
*/
|
|
210
|
+
static forRoot(): ModuleWithProviders<ThemeBasicModule>;
|
|
211
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ThemeBasicModule, never>;
|
|
212
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ThemeBasicModule, never, [typeof BaseThemeBasicModule], [typeof BaseThemeBasicModule]>;
|
|
213
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ThemeBasicModule>;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
declare const LAZY_STYLES: InjectionToken<string[]>;
|
|
217
|
+
|
|
218
|
+
export { AccountLayoutComponent, ApplicationLayoutComponent, AuthWrapperComponent, BASIC_THEME_NAV_ITEM_PROVIDERS, BASIC_THEME_STYLES_PROVIDERS, BASIC_THEME_USER_MENU_PROVIDERS, BOOTSTRAP, BaseThemeBasicModule, CurrentUserComponent, EmptyLayoutComponent, LAYOUTS, LAZY_STYLES, LanguagesComponent, Layout, LazyStyleHandler, LogoComponent, NavItemsComponent, PageAlertContainerComponent, RoutesComponent, THEME_BASIC_COMPONENTS, TenantBoxComponent, ThemeBasicModule, ValidationErrorComponent, configureNavItems, configureStyles, configureUserMenu, createLazyStyleHref, eThemeBasicComponents, eUserMenuItems, initLazyStyleHandler, provideThemeBasicConfig };
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abp/ng.theme.basic",
|
|
3
|
-
"version": "9.3.0-rc.
|
|
3
|
+
"version": "9.3.0-rc.4",
|
|
4
4
|
"homepage": "https://abp.io",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/abpframework/abp.git"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@abp/ng.account.core": "~9.3.0-rc.
|
|
11
|
-
"@abp/ng.theme.shared": "~9.3.0-rc.
|
|
10
|
+
"@abp/ng.account.core": "~9.3.0-rc.4",
|
|
11
|
+
"@abp/ng.theme.shared": "~9.3.0-rc.4",
|
|
12
12
|
"tslib": "^2.0.0"
|
|
13
13
|
},
|
|
14
14
|
"publishConfig": {
|
package/testing/index.d.ts
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { ModuleWithProviders } from '@angular/core';
|
|
3
|
+
import * as i1 from '@abp/ng.theme.basic';
|
|
4
|
+
|
|
5
|
+
declare class ThemeBasicTestingModule {
|
|
6
|
+
static withConfig(): ModuleWithProviders<ThemeBasicTestingModule>;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ThemeBasicTestingModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ThemeBasicTestingModule, never, [typeof i1.BaseThemeBasicModule], [typeof i1.BaseThemeBasicModule]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ThemeBasicTestingModule>;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export { ThemeBasicTestingModule };
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit } from '@angular/core';
|
|
2
|
-
import { eLayoutType } from '@abp/ng.core';
|
|
3
|
-
import { LayoutService } from '../../services/layout.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class AccountLayoutComponent implements AfterViewInit {
|
|
6
|
-
service: LayoutService;
|
|
7
|
-
static type: eLayoutType;
|
|
8
|
-
authWrapperKey: string;
|
|
9
|
-
constructor(service: LayoutService);
|
|
10
|
-
ngAfterViewInit(): void;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AccountLayoutComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AccountLayoutComponent, "abp-layout-account", never, {}, {}, never, never, true, never>;
|
|
13
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { AuthWrapperService } from '@abp/ng.account.core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AuthWrapperComponent {
|
|
4
|
-
service: AuthWrapperService;
|
|
5
|
-
constructor(service: AuthWrapperService);
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AuthWrapperComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AuthWrapperComponent, "abp-auth-wrapper", never, {}, {}, never, ["*"], true, never>;
|
|
8
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { TenantBoxService } from '@abp/ng.account.core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class TenantBoxComponent {
|
|
4
|
-
service: TenantBoxService;
|
|
5
|
-
constructor(service: TenantBoxService);
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TenantBoxComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TenantBoxComponent, "abp-tenant-box", never, {}, {}, never, never, true, never>;
|
|
8
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { eLayoutType } from '@abp/ng.core';
|
|
2
|
-
import { AfterViewInit } from '@angular/core';
|
|
3
|
-
import { LayoutService } from '../../services/layout.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class ApplicationLayoutComponent implements AfterViewInit {
|
|
6
|
-
readonly service: LayoutService;
|
|
7
|
-
static type: eLayoutType;
|
|
8
|
-
ngAfterViewInit(): void;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationLayoutComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ApplicationLayoutComponent, "abp-layout-application", never, {}, {}, never, never, true, never>;
|
|
11
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { eLayoutType } from '@abp/ng.core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class EmptyLayoutComponent {
|
|
4
|
-
static type: eLayoutType;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EmptyLayoutComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EmptyLayoutComponent, "abp-layout-empty", never, {}, {}, never, never, true, never>;
|
|
7
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export * from './account-layout/account-layout.component';
|
|
2
|
-
export * from './account-layout/auth-wrapper/auth-wrapper.component';
|
|
3
|
-
export * from './account-layout/tenant-box/tenant-box.component';
|
|
4
|
-
export * from './application-layout/application-layout.component';
|
|
5
|
-
export * from './empty-layout/empty-layout.component';
|
|
6
|
-
export * from './logo/logo.component';
|
|
7
|
-
export * from './nav-items/current-user.component';
|
|
8
|
-
export * from './nav-items/languages.component';
|
|
9
|
-
export * from './nav-items/nav-items.component';
|
|
10
|
-
export * from './page-alert-container/page-alert-container.component';
|
|
11
|
-
export * from './routes/routes.component';
|
|
12
|
-
export * from './validation-error/validation-error.component';
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { ApplicationInfo, EnvironmentService } from '@abp/ng.core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class LogoComponent {
|
|
4
|
-
private environment;
|
|
5
|
-
get appInfo(): ApplicationInfo;
|
|
6
|
-
constructor(environment: EnvironmentService);
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LogoComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LogoComponent, "abp-logo", never, {}, {}, never, never, true, never>;
|
|
9
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { AuthService, ConfigStateService, CurrentUserDto, SessionStateService } from '@abp/ng.core';
|
|
2
|
-
import { UserMenu, UserMenuService } from '@abp/ng.theme.shared';
|
|
3
|
-
import { TrackByFunction } from '@angular/core';
|
|
4
|
-
import { Observable } from 'rxjs';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class CurrentUserComponent {
|
|
7
|
-
readonly navigateToManageProfile: () => void;
|
|
8
|
-
readonly userMenu: UserMenuService;
|
|
9
|
-
private authService;
|
|
10
|
-
private configState;
|
|
11
|
-
private sessionState;
|
|
12
|
-
currentUser$: Observable<CurrentUserDto>;
|
|
13
|
-
selectedTenant$: Observable<import("@abp/ng.core").CurrentTenantDto>;
|
|
14
|
-
trackByFn: TrackByFunction<UserMenu>;
|
|
15
|
-
get smallScreen(): boolean;
|
|
16
|
-
constructor(navigateToManageProfile: () => void, userMenu: UserMenuService, authService: AuthService, configState: ConfigStateService, sessionState: SessionStateService);
|
|
17
|
-
navigateToLogin(): void;
|
|
18
|
-
logout(): void;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CurrentUserComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CurrentUserComponent, "abp-current-user", never, {}, {}, never, never, true, never>;
|
|
21
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { ConfigStateService, LanguageInfo, SessionStateService } from '@abp/ng.core';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class LanguagesComponent {
|
|
5
|
-
private sessionState;
|
|
6
|
-
private configState;
|
|
7
|
-
get smallScreen(): boolean;
|
|
8
|
-
languages$: Observable<LanguageInfo[]>;
|
|
9
|
-
get defaultLanguage$(): Observable<string>;
|
|
10
|
-
get dropdownLanguages$(): Observable<LanguageInfo[]>;
|
|
11
|
-
get selectedLangCulture(): string;
|
|
12
|
-
constructor(sessionState: SessionStateService, configState: ConfigStateService);
|
|
13
|
-
onChangeLang(cultureName: string): void;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LanguagesComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LanguagesComponent, "abp-languages", never, {}, {}, never, never, true, never>;
|
|
16
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { NavItem, NavItemsService } from '@abp/ng.theme.shared';
|
|
2
|
-
import { TrackByFunction } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class NavItemsComponent {
|
|
5
|
-
readonly navItems: NavItemsService;
|
|
6
|
-
trackByFn: TrackByFunction<NavItem>;
|
|
7
|
-
constructor(navItems: NavItemsService);
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NavItemsComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NavItemsComponent, "abp-nav-items", never, {}, {}, never, never, true, never>;
|
|
10
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { PageAlertService } from '@abp/ng.theme.shared';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class PageAlertContainerComponent {
|
|
4
|
-
service: PageAlertService;
|
|
5
|
-
constructor(service: PageAlertService);
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PageAlertContainerComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PageAlertContainerComponent, "abp-page-alert-container", never, {}, {}, never, never, true, never>;
|
|
8
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { ABP, RoutesService, TreeNode } from '@abp/ng.core';
|
|
2
|
-
import { ElementRef, QueryList, Renderer2, TrackByFunction } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class RoutesComponent {
|
|
5
|
-
readonly routesService: RoutesService;
|
|
6
|
-
protected renderer: Renderer2;
|
|
7
|
-
smallScreen?: boolean;
|
|
8
|
-
childrenContainers: QueryList<ElementRef<HTMLDivElement>>;
|
|
9
|
-
rootDropdownExpand: {
|
|
10
|
-
[key: string]: boolean;
|
|
11
|
-
};
|
|
12
|
-
trackByFn: TrackByFunction<TreeNode<ABP.Route>>;
|
|
13
|
-
isDropdown(node: TreeNode<ABP.Route>): boolean;
|
|
14
|
-
closeDropdown(): void;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RoutesComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RoutesComponent, "abp-routes", never, { "smallScreen": { "alias": "smallScreen"; "required": false; }; }, {}, never, never, true, never>;
|
|
17
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Validation, ValidationErrorComponent as ErrorComponent } from '@ngx-validate/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ValidationErrorComponent extends ErrorComponent {
|
|
4
|
-
get abpErrors(): (Validation.Error & {
|
|
5
|
-
interpoliteParams?: string[];
|
|
6
|
-
})[];
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ValidationErrorComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ValidationErrorComponent, "abp-validation-error", never, {}, {}, never, never, true, never>;
|
|
9
|
-
}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: "\n.content-header-title {\n font-size: 24px;\n}\n.entry-row {\n margin-bottom: 15px;\n}\n#main-navbar-tools a.dropdown-toggle {\n text-decoration: none;\n color: #fff;\n}\n.navbar .dropdown-submenu {\n position: relative;\n}\n.navbar .dropdown-menu {\n margin: 0;\n padding: 0;\n}\n.navbar .dropdown-menu a {\n font-size: .9em;\n padding: 10px 15px;\n display: block;\n min-width: 210px;\n text-align: left;\n border-radius: 0.25rem;\n min-height: 44px;\n}\n[dir=rtl] .navbar .dropdown-menu a {\n text-align: right!important;\n}\n.navbar .dropdown-submenu a::after {\n transform: rotate(-90deg);\n position: absolute;\n right: 16px;\n top: 18px;\n}\n[dir=rtl] .navbar .dropdown-submenu a::after {\n transform: rotate(90deg);\n left: 16px;\n right: auto;\n top: 20px;\n}\n.navbar .dropdown-submenu .dropdown-menu {\n top: 0;\n left: 100%;\n}\n/* work around for rtl. Track https://github.com/ng-bootstrap/ng-bootstrap/issues/4100 issue */\n[dir=rtl] .navbar .dropdown-submenu .dropdown-menu {\n top: 0;\n right: 100%;\n}\n.card-header .btn {\n padding: 2px 6px;\n}\n.card-header h5 {\n margin: 0;\n}\n.container > .card {\n box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;\n}\n@media screen and (min-width: 992px) {\n .navbar .dropdown:hover > .dropdown-menu {\n display: block;\n }\n\n .navbar .dropdown-submenu:hover > .dropdown-menu {\n display: block;\n }\n}\n.input-validation-error {\n border-color: #dc3545;\n}\n.field-validation-error {\n font-size: 0.8em;\n}\n.ui-table .ui-table-tbody > tr.empty-row > div.empty-row-content {\n border: 1px solid #c8c8c8;\n }\n.abp-loading {\n background: rgba(0, 0, 0, 0.05);\n}\n.modal-backdrop {\nbackground-color: rgba(0, 0, 0, 0.6);\n}\n\n.confirmation .confirmation-backdrop {\n\t background: rgba(0, 0, 0, 0.7) !important;\n}\n .confirmation .confirmation-dialog {\n\t border: none;\n\t border-radius: 10px;\n\t background-color: #fff;\n\t box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.5);\n}\n .confirmation .confirmation-dialog .icon-container .icon {\n\t stroke: #fff;\n\t color: #fff;\n}\n .confirmation .confirmation-dialog .icon-container.info .icon {\n\t stroke: #2f96b4;\n\t color: #2f96b4;\n}\n .confirmation .confirmation-dialog .icon-container.success .icon {\n\t stroke: #51a351;\n\t color: #51a351;\n}\n .confirmation .confirmation-dialog .icon-container.warning .icon {\n\t stroke: #f89406;\n\t color: #f89406;\n}\n .confirmation .confirmation-dialog .icon-container.error .icon {\n\t stroke: #bd362f;\n\t color: #bd362f;\n}\n .confirmation .confirmation-dialog .content .title {\n\t color: #222;\n}\n .confirmation .confirmation-dialog .content .message {\n\t color: #777;\n}\n .confirmation .confirmation-dialog .footer {\n\t background: transparent;\n}\n .confirmation .confirmation-dialog .footer .confirmation-button {\n\t background-color: #eee;\n\t color: #777;\n}\n .confirmation .confirmation-dialog .footer .confirmation-button:hover, .confirmation .confirmation-dialog .footer .confirmation-button:focus, .confirmation .confirmation-dialog .footer .confirmation-button:active {\n\t background-color: #bbb;\n}\n .confirmation .confirmation-dialog .footer .confirmation-button--confirm {\n\t background-color: #2f96b4;\n\t color: #fff;\n}\n .confirmation .confirmation-dialog .footer .confirmation-button--confirm:hover {\n\t background-color: #2e819b;\n}\n.ui-table .pagination-wrapper {\n background-color: #f4f4f4;\n border: 1px solid #c8c8c8;\n}\n.bordered .datatable-body-row {\n border-top: 1px solid #eee;\n margin-top: -1px;\n}\n.breadcrumb {\n background-color: transparent;\n padding: 0.27rem;\n}\n\n.abp-md-form {\n max-width: 540px;\n }\n";
|
|
2
|
-
export default _default;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export declare const enum eThemeBasicComponents {
|
|
2
|
-
ApplicationLayout = "Theme.ApplicationLayoutComponent",
|
|
3
|
-
AccountLayout = "Theme.AccountLayoutComponent",
|
|
4
|
-
EmptyLayout = "Theme.EmptyLayoutComponent",
|
|
5
|
-
Logo = "Theme.LogoComponent",
|
|
6
|
-
Routes = "Theme.RoutesComponent",
|
|
7
|
-
NavItems = "Theme.NavItemsComponent",
|
|
8
|
-
CurrentUser = "Theme.CurrentUserComponent",
|
|
9
|
-
Languages = "Theme.LanguagesComponent"
|
|
10
|
-
}
|
package/lib/enums/index.d.ts
DELETED
package/lib/handlers/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './lazy-style.handler';
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { LocaleDirection } from '@abp/ng.theme.shared';
|
|
2
|
-
import { Injector } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare const BOOTSTRAP = "bootstrap-{{dir}}.min.css";
|
|
5
|
-
export declare class LazyStyleHandler {
|
|
6
|
-
private lazyLoad;
|
|
7
|
-
private styles;
|
|
8
|
-
private _dir;
|
|
9
|
-
readonly loaded: Map<string, HTMLLinkElement>;
|
|
10
|
-
set dir(dir: LocaleDirection);
|
|
11
|
-
get dir(): LocaleDirection;
|
|
12
|
-
constructor(injector: Injector);
|
|
13
|
-
private getHrefFromLink;
|
|
14
|
-
private getLoadedBootstrap;
|
|
15
|
-
private listenToDirectionChanges;
|
|
16
|
-
private setLazyLoad;
|
|
17
|
-
private setStyles;
|
|
18
|
-
private switchCSS;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LazyStyleHandler, never>;
|
|
20
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<LazyStyleHandler>;
|
|
21
|
-
}
|
|
22
|
-
export declare function createLazyStyleHref(style: string, dir: string): string;
|
|
23
|
-
export declare function initLazyStyleHandler(injector: Injector): () => LazyStyleHandler;
|
package/lib/models/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './layout';
|
package/lib/models/layout.d.ts
DELETED
package/lib/providers/index.d.ts
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import { DomInsertionService, ReplaceableComponentsService } from '@abp/ng.core';
|
|
2
|
-
export declare const BASIC_THEME_STYLES_PROVIDERS: import("@angular/core").EnvironmentProviders[];
|
|
3
|
-
export declare function configureStyles(domInsertion: DomInsertionService, replaceableComponents: ReplaceableComponentsService): () => void;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function provideThemeBasicConfig(): import("@angular/core").EnvironmentProviders;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { RouterEvents, SubscriptionService } from '@abp/ng.core';
|
|
2
|
-
import { ChangeDetectorRef } from '@angular/core';
|
|
3
|
-
import { eThemeBasicComponents } from '../enums';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class LayoutService {
|
|
6
|
-
private subscription;
|
|
7
|
-
private cdRef;
|
|
8
|
-
isCollapsed: boolean;
|
|
9
|
-
smallScreen: boolean;
|
|
10
|
-
logoComponentKey: eThemeBasicComponents;
|
|
11
|
-
routesComponentKey: eThemeBasicComponents;
|
|
12
|
-
navItemsComponentKey: eThemeBasicComponents;
|
|
13
|
-
constructor(subscription: SubscriptionService, cdRef: ChangeDetectorRef, routerEvents: RouterEvents);
|
|
14
|
-
private checkWindowWidth;
|
|
15
|
-
subscribeWindowSize(): void;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutService, never>;
|
|
17
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<LayoutService>;
|
|
18
|
-
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
-
import { AccountLayoutComponent, AuthWrapperComponent, TenantBoxComponent, EmptyLayoutComponent, LogoComponent, CurrentUserComponent, LanguagesComponent, NavItemsComponent, PageAlertContainerComponent, RoutesComponent, ValidationErrorComponent } from './components';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "./components/application-layout/application-layout.component";
|
|
5
|
-
import * as i2 from "./components/account-layout/account-layout.component";
|
|
6
|
-
import * as i3 from "./components/empty-layout/empty-layout.component";
|
|
7
|
-
import * as i4 from "./components/validation-error/validation-error.component";
|
|
8
|
-
import * as i5 from "./components/logo/logo.component";
|
|
9
|
-
import * as i6 from "./components/nav-items/nav-items.component";
|
|
10
|
-
import * as i7 from "./components/routes/routes.component";
|
|
11
|
-
import * as i8 from "./components/nav-items/current-user.component";
|
|
12
|
-
import * as i9 from "./components/nav-items/languages.component";
|
|
13
|
-
import * as i10 from "./components/page-alert-container/page-alert-container.component";
|
|
14
|
-
import * as i11 from "./components/account-layout/auth-wrapper/auth-wrapper.component";
|
|
15
|
-
import * as i12 from "./components/account-layout/tenant-box/tenant-box.component";
|
|
16
|
-
export declare const LAYOUTS: (typeof AccountLayoutComponent | typeof EmptyLayoutComponent)[];
|
|
17
|
-
export declare const THEME_BASIC_COMPONENTS: (typeof LogoComponent | typeof RoutesComponent | typeof NavItemsComponent | typeof TenantBoxComponent | typeof AuthWrapperComponent | typeof PageAlertContainerComponent | typeof AccountLayoutComponent | typeof EmptyLayoutComponent | typeof CurrentUserComponent | typeof LanguagesComponent | typeof ValidationErrorComponent)[];
|
|
18
|
-
export declare class BaseThemeBasicModule {
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BaseThemeBasicModule, never>;
|
|
20
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BaseThemeBasicModule, never, [typeof i1.ApplicationLayoutComponent, typeof i2.AccountLayoutComponent, typeof i3.EmptyLayoutComponent, typeof i4.ValidationErrorComponent, typeof i5.LogoComponent, typeof i6.NavItemsComponent, typeof i7.RoutesComponent, typeof i8.CurrentUserComponent, typeof i9.LanguagesComponent, typeof i10.PageAlertContainerComponent, typeof i11.AuthWrapperComponent, typeof i12.TenantBoxComponent], [typeof i1.ApplicationLayoutComponent, typeof i2.AccountLayoutComponent, typeof i3.EmptyLayoutComponent, typeof i4.ValidationErrorComponent, typeof i5.LogoComponent, typeof i6.NavItemsComponent, typeof i7.RoutesComponent, typeof i8.CurrentUserComponent, typeof i9.LanguagesComponent, typeof i10.PageAlertContainerComponent, typeof i11.AuthWrapperComponent, typeof i12.TenantBoxComponent]>;
|
|
21
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<BaseThemeBasicModule>;
|
|
22
|
-
}
|
|
23
|
-
export declare class ThemeBasicModule {
|
|
24
|
-
/**
|
|
25
|
-
* @deprecated forRoot method is deprecated, use `provideThemeBasicConfig` *function* for config settings.
|
|
26
|
-
*/
|
|
27
|
-
static forRoot(): ModuleWithProviders<ThemeBasicModule>;
|
|
28
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ThemeBasicModule, never>;
|
|
29
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ThemeBasicModule, never, [typeof BaseThemeBasicModule], [typeof BaseThemeBasicModule]>;
|
|
30
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ThemeBasicModule>;
|
|
31
|
-
}
|
package/lib/tokens/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './lazy-styles.token';
|
package/public-api.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@abp/ng.theme.basic";
|
|
4
|
-
export declare class ThemeBasicTestingModule {
|
|
5
|
-
static withConfig(): ModuleWithProviders<ThemeBasicTestingModule>;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ThemeBasicTestingModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ThemeBasicTestingModule, never, [typeof i1.BaseThemeBasicModule], [typeof i1.BaseThemeBasicModule]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ThemeBasicTestingModule>;
|
|
9
|
-
}
|
package/testing/public-api.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './lib/theme-basic-testing.module';
|