@osovitny/anatoly 3.20.34 → 3.20.36
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/osovitny-anatoly.mjs +24 -12
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/index.d.ts +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -191,13 +191,12 @@ declare class SubscribePlanButtonComponent implements OnInit {
|
|
|
191
191
|
declare function getAppSettingsById(id: any): any;
|
|
192
192
|
declare function getAppSettingsByName(name: any): any;
|
|
193
193
|
interface ICurrentApp {
|
|
194
|
-
|
|
194
|
+
id: number;
|
|
195
195
|
root: string;
|
|
196
196
|
one: any;
|
|
197
197
|
oneUrl: string;
|
|
198
198
|
}
|
|
199
199
|
declare function getCurrentApp(): ICurrentApp;
|
|
200
|
-
declare const AppSettings: any;
|
|
201
200
|
|
|
202
201
|
declare function getAppCoreSettings(): any;
|
|
203
202
|
declare function resetAppCoreSettings(): void;
|
|
@@ -322,10 +321,11 @@ declare enum ModerationStatus {
|
|
|
322
321
|
declare class GoServiceBase {
|
|
323
322
|
protected route: ActivatedRoute;
|
|
324
323
|
protected router: Router;
|
|
324
|
+
private initialized;
|
|
325
325
|
protected isDevMode: boolean;
|
|
326
326
|
protected currentApp: ICurrentApp;
|
|
327
327
|
constructor(route: ActivatedRoute, router: Router);
|
|
328
|
-
private
|
|
328
|
+
private ensureInitialized;
|
|
329
329
|
navigate(commands: any[], extras?: NavigationExtras, reload?: boolean): void;
|
|
330
330
|
getHomeUrl(): string;
|
|
331
331
|
locationReload(): void;
|
|
@@ -2083,5 +2083,5 @@ declare class AnatolyModule {
|
|
|
2083
2083
|
static ɵinj: i0.ɵɵInjectorDeclaration<AnatolyModule>;
|
|
2084
2084
|
}
|
|
2085
2085
|
|
|
2086
|
-
export { AReplacerDirective, AddressComponent, AdminGuard, Alerts, AnatolyBillingModule, AnatolyCoreModule, AnatolyDataModule, AnatolyHttpInterceptor, AnatolyIAMModule, AnatolyIAMPagesModule, AnatolyModule, AnatolyUIModule, ApiServiceBase, ApiUrl, AppContextService, AppCoreSettings, AppName,
|
|
2086
|
+
export { AReplacerDirective, AddressComponent, AdminGuard, Alerts, AnatolyBillingModule, AnatolyCoreModule, AnatolyDataModule, AnatolyHttpInterceptor, AnatolyIAMModule, AnatolyIAMPagesModule, AnatolyModule, AnatolyUIModule, ApiServiceBase, ApiUrl, AppContextService, AppCoreSettings, AppName, AppVersion, AppsGoServiceBase, AuthService, AuthenticationGuard, BillingService, BillingUtils, BraintreeDialog, BrowserService, BuyAccessButtonComponent, CardBodyComponent, CardComponent, CardFooterComponent, CardHeaderComponent, CheckIconComponent, ClientApps, CompanyComponent, ComponentBase, ContactUsDialog, ContactUsForm, ControlPanelComponent, Convert, Copy2ClipboardComponent, CoreApiService, CountryDropdownlist, CurrenciesApiService, CurrenciesStorageService, DOM, DataPagerComponent, DataViewType, DateConvert, DefaultEditorOptions, DialogBase, DigitalMarketingService, DiscountCodeStatus, DiscountCodeType, EditComponentBase, EditPageBase, EmailsApiService, EnumEditComponentBase, FeatureWillBeReadyComponent, FileSizePipe, FormValidationSummaryComponent, GABillingEvents, GAEvents, GlobalErrorHandler, GoServiceBase, GoogleAnalyticsService, GridEditServiceBase, GridReadServiceBase, Guid, HoveringDirective, HtmlEditorComponent, HtmlEditorComponentBase, IdleService, ImageReplacerDirective, InjectorInstance, IsDevMode, IsProdMode, ItemValidationSummaryComponent, L10nUtils, LanguageDropdownlist, ListBase, LoadingComponent, LoadingService, LocalStorageService, LocalizationModule, LocalizationService, LocalizePipe, LoggingService, MSALUtils, Mode, ModerationStatus, ModerationStatusDropdownlist, NativeElementDirective, NoMobileSupportComponent, NodataComponent, NotificationService, OrderSummaryComponent, PageBase, PageSpinnerComponent, PagedPageBase, PayPalComponent, PayPalScriptService, PaymentMethod, PaymentMethodsComponent, PaymentOptionsComponent, PaymentStage, PaymentType, PaymentsApiService, PaymentsService, PaypalButtonComponent, PaypalSubscribeButtonComponent, PromoCodesApiService, PublishStatus, PublishStatusDropdownlist, QSUtils, ReplaceTextPipe, SafeHtmlPipe, ScriptService, SessionStorageService, SignInButtonComponent, SignOutButtonComponent, SignUpButtonComponent, StarterGuard, StarterService, Stopwatch, StripeDialog, Subs, SubscribePlanButtonComponent, SubscriptionProvider, SubscriptionsApiService, TimezoneDropdownlist, TransactionsApiService, UrlSlugComponent, Utils, ValidationSummaryComponent, XmlFormatter, YouAgreeToOurTermsComponent, dateFormats, dateTimeFormats, formatUrl, getAppCoreSettings, getAppSettingsById, getAppSettingsByName, getCurrentApp, getLocalizationInjector, is, resetAppCoreSettings, throwIfAlreadyLoaded, timeFormats, translateLoaderFactory };
|
|
2087
2087
|
export type { ICurrentApp, INotification };
|