simpo-component-library 3.6.507 → 3.6.512

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.
Files changed (32) hide show
  1. package/esm2022/lib/ecommerce/sections/featured-category/featured-category.component.mjs +3 -3
  2. package/esm2022/lib/ecommerce/sections/featured-category/featured-collection.component.mjs +3 -3
  3. package/esm2022/lib/ecommerce/sections/new-collection/new-collection.component.mjs +3 -3
  4. package/esm2022/lib/ecommerce/sections/product-desc/product-desc.component.mjs +8 -3
  5. package/esm2022/lib/ecommerce/sections/product-list/product-list.component.mjs +3 -3
  6. package/esm2022/lib/ecommerce/sections/returns-calculator/returns-calculator.component.mjs +5 -5
  7. package/esm2022/lib/ecommerce/sections/small-product-listing/small-product-listing.component.mjs +3 -3
  8. package/esm2022/lib/ecommerce/sections/verify-payment/verify-payment.component.mjs +1 -47
  9. package/esm2022/lib/sections/appointment-form/appointment-form.component.mjs +28 -27
  10. package/esm2022/lib/sections/header-section/header-section.component.mjs +3 -3
  11. package/esm2022/lib/sections/recent-blog-post-section/recent-blog-post-section.component.mjs +3 -3
  12. package/esm2022/lib/services/rest.service.mjs +1 -4
  13. package/esm2022/public-api.mjs +1 -2
  14. package/fesm2022/simpo-component-library.mjs +50 -575
  15. package/fesm2022/simpo-component-library.mjs.map +1 -1
  16. package/lib/ecommerce/sections/product-desc/product-desc.component.d.ts +3 -2
  17. package/lib/ecommerce/sections/schemes/schemes.component.d.ts +1 -1
  18. package/lib/ecommerce/sections/verify-payment/verify-payment.component.d.ts +0 -2
  19. package/lib/sections/appointment-form/appointment-form.component.d.ts +1 -3
  20. package/lib/sections/pricing-section/pricing-section.component.d.ts +1 -1
  21. package/lib/services/rest.service.d.ts +0 -1
  22. package/package.json +1 -1
  23. package/public-api.d.ts +0 -1
  24. package/simpo-component-library-3.6.512.tgz +0 -0
  25. package/src/lib/styles/global-styles.css +2 -2
  26. package/esm2022/lib/directive/letters-only.directive.mjs +0 -28
  27. package/esm2022/lib/directive/numbers-only.directive.mjs +0 -28
  28. package/esm2022/lib/sections/appointment-form/appointment-booking/appointment-booking/appointment-booking.component.mjs +0 -453
  29. package/lib/directive/letters-only.directive.d.ts +0 -9
  30. package/lib/directive/numbers-only.directive.d.ts +0 -9
  31. package/lib/sections/appointment-form/appointment-booking/appointment-booking/appointment-booking.component.d.ts +0 -82
  32. package/simpo-component-library-3.6.507.tgz +0 -0
@@ -1,9 +0,0 @@
1
- import { ElementRef } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class LettersOnlyDirective {
4
- private el;
5
- constructor(el: ElementRef);
6
- onInputChange(event: Event): void;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<LettersOnlyDirective, never>;
8
- static ɵdir: i0.ɵɵDirectiveDeclaration<LettersOnlyDirective, "[simpoLettersOnly]", never, {}, {}, never, never, true, never>;
9
- }
@@ -1,9 +0,0 @@
1
- import { ElementRef } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class NumbersOnlyDirective {
4
- private el;
5
- constructor(el: ElementRef);
6
- onInputChange(event: Event): void;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<NumbersOnlyDirective, never>;
8
- static ɵdir: i0.ɵɵDirectiveDeclaration<NumbersOnlyDirective, "[simpoNumbersOnly]", never, {}, {}, never, never, true, never>;
9
- }
@@ -1,82 +0,0 @@
1
- import { RestService } from '../../../../services/rest.service';
2
- import { EventsService } from '../../../../services/events.service';
3
- import { Router } from '@angular/router';
4
- import { BannerContentModel, BannerSectionModel } from '../../appointment-form.model';
5
- import { BackgroundModel, BannerStylesModel } from '../../../../styles/style.model';
6
- import { MessageService } from 'primeng/api';
7
- import * as i0 from "@angular/core";
8
- export declare class AppointmentBookingComponent {
9
- private restService;
10
- private _eventService;
11
- private readonly router;
12
- private readonly messageService;
13
- constructor(restService: RestService, _eventService: EventsService, router: Router, messageService: MessageService);
14
- data?: BannerSectionModel;
15
- index?: number;
16
- content?: BannerContentModel;
17
- edit?: boolean;
18
- delete?: boolean;
19
- customClass?: string;
20
- nextComponentColor?: BackgroundModel;
21
- styles?: BannerStylesModel;
22
- ngOnInit(): void;
23
- screenWidth: number;
24
- getScreenSize(): void;
25
- closeOnOutsideClick(): void;
26
- accessedTabs: {
27
- serviceListing: boolean;
28
- locationListing: boolean;
29
- staffListing: boolean;
30
- };
31
- businessName: string;
32
- businessId: string;
33
- activeButton: boolean;
34
- selectedTab: string;
35
- barWidth: string;
36
- showCancellationPolicy: boolean;
37
- showReducingPolicy: boolean;
38
- selectedService: any;
39
- selectedLocation: any;
40
- Object: ObjectConstructor;
41
- showCalendar: boolean;
42
- selectedDate: Date | null;
43
- selectedDateStr: string;
44
- userDetails: {
45
- name: string;
46
- email: string;
47
- mobileNumber: string;
48
- };
49
- dateFilter: (d: Date | null) => boolean;
50
- toggleCalendar(event?: Event): void;
51
- onDateSelected(date: any): void;
52
- private formatDate;
53
- selectService(service: any): void;
54
- selectLocation(location: any): void;
55
- selectedStaff: any;
56
- selectStaff(staff: any): void;
57
- nextStep(): void;
58
- previousStep(): void;
59
- serviceData: any[];
60
- getAllServices(): void;
61
- locationData: any[];
62
- getAllLocations(): void;
63
- staffPayload: any;
64
- staffData: any[];
65
- getAllStaff(): void;
66
- convertTo24Hour(time: string): string;
67
- slotsPayload: any;
68
- locationTiming: any[];
69
- loader: boolean;
70
- getAvailableSlots(): void;
71
- selectedTime: any;
72
- selectTimeSlot(time: any): void;
73
- checkRequiredValues(): void;
74
- appointmentPayload: any;
75
- checkPayment(): void;
76
- apiStatus: boolean;
77
- createAppointment(): void;
78
- paymentBookingAppointment(): void;
79
- goBack(): void;
80
- static ɵfac: i0.ɵɵFactoryDeclaration<AppointmentBookingComponent, never>;
81
- static ɵcmp: i0.ɵɵComponentDeclaration<AppointmentBookingComponent, "simpo-appointment-booking", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
82
- }
Binary file