@osovitny/anatoly 3.20.38 → 3.20.40
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 +240 -40
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/index.d.ts +46 -7
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import * as i3 from 'ngx-toastr';
|
|
|
7
7
|
import { ToastrService } from 'ngx-toastr';
|
|
8
8
|
import * as i11 from '@progress/kendo-angular-dialog';
|
|
9
9
|
import { DialogThemeColor } from '@progress/kendo-angular-dialog';
|
|
10
|
-
import * as
|
|
10
|
+
import * as i41 from '@angular/forms';
|
|
11
11
|
import { FormGroup, AbstractControl, ValidatorFn, AbstractControlOptions, AsyncValidatorFn, FormControl, FormBuilder, NgControl } from '@angular/forms';
|
|
12
12
|
import { HTMLBeautifyOptions } from 'js-beautify';
|
|
13
13
|
import * as i2$1 from '@angular/router';
|
|
@@ -24,7 +24,7 @@ import { Title, Meta, MetaDefinition, DomSanitizer } from '@angular/platform-bro
|
|
|
24
24
|
import * as i1 from '@angular/common';
|
|
25
25
|
import { Location } from '@angular/common';
|
|
26
26
|
import { SizeProp } from '@fortawesome/fontawesome-svg-core';
|
|
27
|
-
import * as
|
|
27
|
+
import * as i42 from 'ngx-captcha';
|
|
28
28
|
import { ReCaptchaV3Service } from 'ngx-captcha';
|
|
29
29
|
import * as i2$2 from '@fortawesome/angular-fontawesome';
|
|
30
30
|
import { FaIconLibrary } from '@fortawesome/angular-fontawesome';
|
|
@@ -46,7 +46,7 @@ import * as i17 from '@progress/kendo-angular-ripple';
|
|
|
46
46
|
import * as i18 from '@progress/kendo-angular-popup';
|
|
47
47
|
import * as i19 from '@progress/kendo-angular-treeview';
|
|
48
48
|
import * as i20 from '@progress/kendo-angular-tooltip';
|
|
49
|
-
import * as
|
|
49
|
+
import * as i43 from 'angular-froala-wysiwyg';
|
|
50
50
|
|
|
51
51
|
declare class ApiServiceBase {
|
|
52
52
|
protected http: HttpClient;
|
|
@@ -681,6 +681,29 @@ declare class ScriptService {
|
|
|
681
681
|
static ɵprov: i0.ɵɵInjectableDeclaration<ScriptService>;
|
|
682
682
|
}
|
|
683
683
|
|
|
684
|
+
declare class Message2User {
|
|
685
|
+
type: number;
|
|
686
|
+
block: boolean;
|
|
687
|
+
timeout?: number;
|
|
688
|
+
constructor(type: number, block: boolean, timeout?: any);
|
|
689
|
+
}
|
|
690
|
+
interface Message2UserConfig {
|
|
691
|
+
type: number;
|
|
692
|
+
image?: string;
|
|
693
|
+
color?: string;
|
|
694
|
+
title?: string;
|
|
695
|
+
message: string;
|
|
696
|
+
}
|
|
697
|
+
declare class Message2UserService extends BehaviorSubject<Message2User> {
|
|
698
|
+
private configs;
|
|
699
|
+
constructor();
|
|
700
|
+
init(configs: any): void;
|
|
701
|
+
getConfig(type: number): any;
|
|
702
|
+
notify(type: number, block?: boolean, timeout?: any): void;
|
|
703
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Message2UserService, never>;
|
|
704
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<Message2UserService>;
|
|
705
|
+
}
|
|
706
|
+
|
|
684
707
|
declare class DOM {
|
|
685
708
|
private static dir;
|
|
686
709
|
static first(elements: HTMLElement[]): HTMLElement;
|
|
@@ -1765,6 +1788,22 @@ declare class NoMobileSupportComponent extends ComponentBase {
|
|
|
1765
1788
|
static ɵcmp: i0.ɵɵComponentDeclaration<NoMobileSupportComponent, "anatoly-no-mobile-support", never, { "logo": { "alias": "logo"; "required": false; }; }, {}, never, never, false, never>;
|
|
1766
1789
|
}
|
|
1767
1790
|
|
|
1791
|
+
declare class Message2UserComponent extends ComponentBase implements OnInit {
|
|
1792
|
+
private go;
|
|
1793
|
+
private ns;
|
|
1794
|
+
show: boolean;
|
|
1795
|
+
message: any;
|
|
1796
|
+
config: any;
|
|
1797
|
+
constructor(go: GoServiceBase, ns: Message2UserService);
|
|
1798
|
+
ngOnInit(): void;
|
|
1799
|
+
private setDefaults;
|
|
1800
|
+
private setValues;
|
|
1801
|
+
onCloseAndBlock(): void;
|
|
1802
|
+
onClose(): void;
|
|
1803
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Message2UserComponent, never>;
|
|
1804
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Message2UserComponent, "anatoly-message2user", never, {}, {}, never, ["*"], false, never>;
|
|
1805
|
+
}
|
|
1806
|
+
|
|
1768
1807
|
declare class LoadingComponent extends ComponentBase implements OnInit {
|
|
1769
1808
|
private loadingService;
|
|
1770
1809
|
show: boolean;
|
|
@@ -2068,13 +2107,13 @@ declare class KendoModule {
|
|
|
2068
2107
|
|
|
2069
2108
|
declare class AnatolyUIModule {
|
|
2070
2109
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnatolyUIModule, never>;
|
|
2071
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AnatolyUIModule, [typeof CardComponent, typeof CardHeaderComponent, typeof CardBodyComponent, typeof CardFooterComponent, typeof CheckIconComponent, typeof Copy2ClipboardComponent, typeof ControlPanelComponent, typeof DataPagerComponent, typeof CountryDropdownlist, typeof LanguageDropdownlist, typeof ModerationStatusDropdownlist, typeof PublishStatusDropdownlist, typeof TimezoneDropdownlist, typeof HtmlEditorComponent, typeof SignInButtonComponent, typeof SignUpButtonComponent, typeof SignOutButtonComponent, typeof NodataComponent, typeof NoMobileSupportComponent, typeof PageSpinnerComponent, typeof LoadingComponent, typeof UrlSlugComponent, typeof FeatureWillBeReadyComponent, typeof YouAgreeToOurTermsComponent, typeof ContactUsDialog, typeof HoveringDirective, typeof AReplacerDirective, typeof ImageReplacerDirective, typeof NativeElementDirective, typeof AddressComponent, typeof CompanyComponent, typeof ContactUsForm, typeof SafeHtmlPipe, typeof ReplaceTextPipe, typeof FileSizePipe, typeof FormValidationSummaryComponent, typeof ItemValidationSummaryComponent], [typeof i1.CommonModule, typeof i2$1.RouterModule, typeof
|
|
2110
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AnatolyUIModule, [typeof CardComponent, typeof CardHeaderComponent, typeof CardBodyComponent, typeof CardFooterComponent, typeof CheckIconComponent, typeof Copy2ClipboardComponent, typeof ControlPanelComponent, typeof DataPagerComponent, typeof CountryDropdownlist, typeof LanguageDropdownlist, typeof ModerationStatusDropdownlist, typeof PublishStatusDropdownlist, typeof TimezoneDropdownlist, typeof HtmlEditorComponent, typeof SignInButtonComponent, typeof SignUpButtonComponent, typeof SignOutButtonComponent, typeof NodataComponent, typeof NoMobileSupportComponent, typeof Message2UserComponent, typeof PageSpinnerComponent, typeof LoadingComponent, typeof UrlSlugComponent, typeof FeatureWillBeReadyComponent, typeof YouAgreeToOurTermsComponent, typeof ContactUsDialog, typeof HoveringDirective, typeof AReplacerDirective, typeof ImageReplacerDirective, typeof NativeElementDirective, typeof AddressComponent, typeof CompanyComponent, typeof ContactUsForm, typeof SafeHtmlPipe, typeof ReplaceTextPipe, typeof FileSizePipe, typeof FormValidationSummaryComponent, typeof ItemValidationSummaryComponent], [typeof i1.CommonModule, typeof i2$1.RouterModule, typeof i41.ReactiveFormsModule, typeof i41.FormsModule, typeof i42.NgxCaptchaModule, typeof i43.FERootModule, typeof FaModule, typeof KendoModule], [typeof CardComponent, typeof CardHeaderComponent, typeof CardBodyComponent, typeof CardFooterComponent, typeof CheckIconComponent, typeof Copy2ClipboardComponent, typeof ControlPanelComponent, typeof DataPagerComponent, typeof CountryDropdownlist, typeof LanguageDropdownlist, typeof ModerationStatusDropdownlist, typeof PublishStatusDropdownlist, typeof TimezoneDropdownlist, typeof HtmlEditorComponent, typeof SignInButtonComponent, typeof SignUpButtonComponent, typeof SignOutButtonComponent, typeof NodataComponent, typeof NoMobileSupportComponent, typeof Message2UserComponent, typeof PageSpinnerComponent, typeof LoadingComponent, typeof UrlSlugComponent, typeof FeatureWillBeReadyComponent, typeof YouAgreeToOurTermsComponent, typeof ContactUsDialog, typeof HoveringDirective, typeof AReplacerDirective, typeof ImageReplacerDirective, typeof NativeElementDirective, typeof AddressComponent, typeof CompanyComponent, typeof ContactUsForm, typeof SafeHtmlPipe, typeof ReplaceTextPipe, typeof FileSizePipe, typeof FormValidationSummaryComponent, typeof ItemValidationSummaryComponent]>;
|
|
2072
2111
|
static ɵinj: i0.ɵɵInjectorDeclaration<AnatolyUIModule>;
|
|
2073
2112
|
}
|
|
2074
2113
|
|
|
2075
2114
|
declare class AnatolyBillingModule {
|
|
2076
2115
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnatolyBillingModule, never>;
|
|
2077
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AnatolyBillingModule, [typeof BuyAccessButtonComponent, typeof SubscribePlanButtonComponent, typeof OrderSummaryComponent, typeof PaymentMethodsComponent, typeof PaymentOptionsComponent, typeof BraintreeDialog, typeof PaypalButtonComponent, typeof PaypalSubscribeButtonComponent, typeof PayPalComponent, typeof StripeDialog], [typeof i1.CommonModule, typeof
|
|
2116
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AnatolyBillingModule, [typeof BuyAccessButtonComponent, typeof SubscribePlanButtonComponent, typeof OrderSummaryComponent, typeof PaymentMethodsComponent, typeof PaymentOptionsComponent, typeof BraintreeDialog, typeof PaypalButtonComponent, typeof PaypalSubscribeButtonComponent, typeof PayPalComponent, typeof StripeDialog], [typeof i1.CommonModule, typeof i41.ReactiveFormsModule, typeof i41.FormsModule, typeof FaModule, typeof KendoModule, typeof AnatolyUIModule], [typeof BuyAccessButtonComponent, typeof SubscribePlanButtonComponent, typeof OrderSummaryComponent, typeof PaymentMethodsComponent, typeof PaymentOptionsComponent, typeof BraintreeDialog, typeof PaypalButtonComponent, typeof PaypalSubscribeButtonComponent, typeof PayPalComponent, typeof StripeDialog]>;
|
|
2078
2117
|
static ɵinj: i0.ɵɵInjectorDeclaration<AnatolyBillingModule>;
|
|
2079
2118
|
}
|
|
2080
2119
|
|
|
@@ -2086,5 +2125,5 @@ declare class AnatolyModule {
|
|
|
2086
2125
|
static ɵinj: i0.ɵɵInjectorDeclaration<AnatolyModule>;
|
|
2087
2126
|
}
|
|
2088
2127
|
|
|
2089
|
-
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 };
|
|
2090
|
-
export type { ICurrentApp, INotification };
|
|
2128
|
+
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, Message2User, Message2UserComponent, Message2UserService, 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 };
|
|
2129
|
+
export type { ICurrentApp, INotification, Message2UserConfig };
|