simpo-component-library 1.4.250 → 1.4.252
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/esm2022/lib/ecommerce/sections/authenticate-user/authenticate-user.component.mjs +15 -5
- package/esm2022/lib/ecommerce/sections/cart/cart.component.mjs +5 -3
- package/esm2022/lib/ecommerce/sections/featured-products/featured-products.component.mjs +4 -4
- package/esm2022/lib/ecommerce/sections/product-desc/product-desc.component.mjs +6 -4
- package/esm2022/lib/ecommerce/sections/product-list/product-list.component.mjs +3 -3
- package/esm2022/lib/ecommerce/sections/user-profile/user-profile.component.mjs +8 -6
- package/esm2022/lib/ecommerce/sections/verify-payment/verify-payment.component.mjs +6 -4
- package/esm2022/lib/ecommerce/sections/whislist/whislist.component.mjs +3 -3
- package/esm2022/lib/sections/contact-us/contact-us.component.mjs +3 -3
- package/esm2022/lib/sections/footer-section/footer-section.component.mjs +3 -3
- package/esm2022/lib/sections/navbar-section/navbar-section.component.mjs +3 -3
- package/esm2022/lib/sections/testimonial-section/testimonial-section.component.mjs +3 -3
- package/esm2022/lib/sections/video-section/video-section.component.mjs +11 -3
- package/esm2022/lib/services/rest.service.mjs +7 -7
- package/fesm2022/simpo-component-library.mjs +54 -36
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/ecommerce/sections/authenticate-user/authenticate-user.component.d.ts +5 -1
- package/lib/sections/video-section/video-section.component.d.ts +4 -2
- package/package.json +1 -1
- package/simpo-component-library-1.4.251.tgz +0 -0
- package/simpo-component-library-1.4.252.tgz +0 -0
@@ -10,6 +10,7 @@ import BaseSection from '../../../sections/BaseSection';
|
|
10
10
|
import { MessageService } from 'primeng/api';
|
11
11
|
import * as i0 from "@angular/core";
|
12
12
|
interface AuthenticateSectionModel {
|
13
|
+
id: string;
|
13
14
|
content: AuthenticateContentModel;
|
14
15
|
styles: StylesModel;
|
15
16
|
action: ActionModel;
|
@@ -28,6 +29,9 @@ export declare class AuthenticateUserComponent extends BaseSection implements On
|
|
28
29
|
private readonly _eventService;
|
29
30
|
private readonly messageService;
|
30
31
|
data?: AuthenticateSectionModel;
|
32
|
+
index?: number;
|
33
|
+
edit?: boolean;
|
34
|
+
delete?: boolean;
|
31
35
|
isLoading: boolean;
|
32
36
|
otpData: undefined[];
|
33
37
|
otpString: string;
|
@@ -47,6 +51,6 @@ export declare class AuthenticateUserComponent extends BaseSection implements On
|
|
47
51
|
get isMobileValid(): boolean;
|
48
52
|
get isMobile(): boolean;
|
49
53
|
static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticateUserComponent, [{ optional: true; }, null, null, null, null, { optional: true; }, null, null]>;
|
50
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AuthenticateUserComponent, "simpo-authenticate-user", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, true, never>;
|
54
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AuthenticateUserComponent, "simpo-authenticate-user", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; }, {}, never, never, true, never>;
|
51
55
|
}
|
52
56
|
export {};
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import { ElementRef } from '@angular/core';
|
1
|
+
import { ElementRef, SimpleChanges } from '@angular/core';
|
2
2
|
import { videoSectionContentModel, videoSectionModel, videoSectionStyleModel } from './video-section.model';
|
3
|
-
import { DomSanitizer } from '@angular/platform-browser';
|
3
|
+
import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';
|
4
4
|
import { EventsService } from './../../services/events.service';
|
5
5
|
import BaseSection from '../BaseSection';
|
6
6
|
import { SPACING } from '../../styles/index';
|
@@ -17,6 +17,8 @@ export declare class VideoSectionComponent extends BaseSection {
|
|
17
17
|
videoLink: string;
|
18
18
|
content?: videoSectionContentModel;
|
19
19
|
style?: videoSectionStyleModel;
|
20
|
+
ngOnChanges(changes: SimpleChanges): void;
|
21
|
+
safeVideoUrl: SafeResourceUrl;
|
20
22
|
ngOnInit(): void;
|
21
23
|
youTubeIdFromLink(url: string): string | undefined;
|
22
24
|
get getVideoLink(): string;
|
package/package.json
CHANGED
Binary file
|
Binary file
|