@osovitny/anatoly 2.14.4 → 2.14.5
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/esm2020/lib/data/data.module.mjs +2 -2
- package/esm2020/lib/data/services/emails-api.service.mjs +2 -2
- package/esm2020/lib/ui/components/base-edit.component.mjs +2 -2
- package/esm2020/lib/ui/components/base.component.mjs +3 -3
- package/esm2020/lib/ui/components/billing/buyaccess-button.component.mjs +4 -4
- package/esm2020/lib/ui/components/billing/subscribe-plan-button.component.mjs +2 -2
- package/esm2020/lib/ui/components/billing/upgrade-plan-button.component.mjs +3 -3
- package/esm2020/lib/ui/components/html-editor/base-html-editor.component.mjs +2 -2
- package/esm2020/lib/ui/components/loading/loading.component.mjs +3 -3
- package/esm2020/lib/ui/forms/contact-us/contact-us.mjs +5 -5
- package/fesm2015/osovitny-anatoly.mjs +72 -84
- package/fesm2015/osovitny-anatoly.mjs.map +1 -1
- package/fesm2020/osovitny-anatoly.mjs +72 -84
- package/fesm2020/osovitny-anatoly.mjs.map +1 -1
- package/lib/data/services/emails-api.service.d.ts +1 -1
- package/lib/ui/components/base.component.d.ts +1 -1
- package/lib/ui/components/billing/buyaccess-button.component.d.ts +2 -2
- package/lib/ui/components/billing/subscribe-plan-button.component.d.ts +1 -1
- package/lib/ui/components/billing/upgrade-plan-button.component.d.ts +1 -1
- package/lib/ui/components/loading/loading.component.d.ts +1 -1
- package/lib/ui/forms/contact-us/contact-us.d.ts +4 -4
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { HttpClient } from "@angular/common/http";
|
|
2
|
-
import { BaseApiService } from "
|
|
2
|
+
import { BaseApiService } from "../base/base-api.service";
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class EmailsApiService extends BaseApiService {
|
|
5
5
|
protected http: HttpClient;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { AppContextService } from '
|
|
3
|
-
import { BillingApiService } from '
|
|
2
|
+
import { AppContextService } from '../../../core/services/appcontext.service';
|
|
3
|
+
import { BillingApiService } from '../../../data/services/billing-api.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class BuyAccessButtonComponent implements OnInit {
|
|
6
6
|
private appContext;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnInit } from "@angular/core";
|
|
2
|
-
import { AppContextService } from "
|
|
2
|
+
import { AppContextService } from "../../../core/services/appcontext.service";
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class SubscribePlanButtonComponent implements OnInit {
|
|
5
5
|
private appcontext;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { LoadingService } from '
|
|
2
|
+
import { LoadingService } from '../../../core/services/loading.service';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class LoadingComponent implements OnInit, OnDestroy {
|
|
5
5
|
private loadingService;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { FormBuilder } from '@angular/forms';
|
|
3
3
|
import { ReCaptcha2Component } from 'ngx-captcha';
|
|
4
|
-
import { AppContextService } from "
|
|
5
|
-
import { NotificationService } from "
|
|
6
|
-
import { EmailsApiService } from '
|
|
7
|
-
import { BaseEditComponent } from "
|
|
4
|
+
import { AppContextService } from "../../../core/services/appcontext.service";
|
|
5
|
+
import { NotificationService } from "../../../core/notifications/services/notification-service";
|
|
6
|
+
import { EmailsApiService } from '../../../data/services/emails-api.service';
|
|
7
|
+
import { BaseEditComponent } from "../../../ui/components/base-edit.component";
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare class ContactUsForm extends BaseEditComponent implements OnInit {
|
|
10
10
|
private fb;
|