tent-lib 0.0.1 → 0.0.2
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/components/atomic/badge/badge.component.mjs +16 -5
- package/esm2022/lib/components/atomic/button/button.component.mjs +54 -6
- package/esm2022/lib/components/atomic/datepicker/datepicker.component.mjs +75 -5
- package/esm2022/lib/components/atomic/dropdown/dropdown.component.mjs +80 -5
- package/esm2022/lib/components/atomic/input/input.component.mjs +3 -3
- package/esm2022/lib/components/core/advantages/advantages.component.mjs +52 -5
- package/esm2022/lib/components/core/cards-2col/cards-2col.component.mjs +12 -0
- package/esm2022/lib/components/core/cards-3col/cards-3col.component.mjs +56 -0
- package/esm2022/lib/components/core/destination-info/destination-info.component.mjs +4 -3
- package/esm2022/lib/components/core/footer-a/footer-a.component.mjs +23 -3
- package/esm2022/lib/components/core/footer-b/footer-b.component.mjs +4 -3
- package/esm2022/lib/components/core/footer-static/footer-static.component.mjs +12 -3
- package/esm2022/lib/components/core/guests-popup/guests-popup.component.mjs +155 -0
- package/esm2022/lib/components/core/header/header.component.mjs +33 -6
- package/esm2022/lib/components/core/header-mobile/header-mobile.component.mjs +30 -6
- package/esm2022/lib/components/core/hotel-services/hotel-services.component.mjs +4 -3
- package/esm2022/lib/components/core/hotel-slider/hotel-slider.component.mjs +28 -3
- package/esm2022/lib/components/core/motor/motor.component.mjs +111 -6
- package/esm2022/lib/components/core/offer/offer.component.mjs +5 -3
- package/esm2022/lib/components/core/offer-banner/offer-banner.component.mjs +12 -5
- package/esm2022/lib/components/core/offer-slider/offer-slider.component.mjs +37 -3
- package/esm2022/lib/components/core/rooms-slider/rooms-slider.component.mjs +29 -3
- package/esm2022/lib/components/core/top-module/top-module.component.mjs +71 -6
- package/esm2022/public-api.mjs +3 -4
- package/fesm2022/tent-lib.mjs +798 -81
- package/fesm2022/tent-lib.mjs.map +1 -1
- package/lib/components/atomic/badge/badge.component.d.ts +4 -1
- package/lib/components/atomic/button/button.component.d.ts +21 -1
- package/lib/components/atomic/datepicker/datepicker.component.d.ts +21 -2
- package/lib/components/atomic/dropdown/dropdown.component.d.ts +27 -2
- package/lib/components/atomic/input/input.component.d.ts +1 -1
- package/lib/components/core/advantages/advantages.component.d.ts +6 -1
- package/lib/components/core/cards-2col/cards-2col.component.d.ts +5 -0
- package/lib/components/core/cards-3col/cards-3col.component.d.ts +9 -0
- package/lib/components/core/destination-info/destination-info.component.d.ts +1 -1
- package/lib/components/core/footer-a/footer-a.component.d.ts +9 -1
- package/lib/components/core/footer-b/footer-b.component.d.ts +1 -1
- package/lib/components/core/footer-static/footer-static.component.d.ts +2 -1
- package/lib/components/core/guests-popup/guests-popup.component.d.ts +21 -0
- package/lib/components/core/header/header.component.d.ts +6 -1
- package/lib/components/core/header-mobile/header-mobile.component.d.ts +5 -1
- package/lib/components/core/hotel-services/hotel-services.component.d.ts +1 -1
- package/lib/components/core/hotel-slider/hotel-slider.component.d.ts +3 -1
- package/lib/components/core/motor/motor.component.d.ts +35 -2
- package/lib/components/core/offer/offer.component.d.ts +1 -1
- package/lib/components/core/offer-banner/offer-banner.component.d.ts +3 -1
- package/lib/components/core/offer-slider/offer-slider.component.d.ts +3 -1
- package/lib/components/core/rooms-slider/rooms-slider.component.d.ts +3 -1
- package/lib/components/core/top-module/top-module.component.d.ts +12 -2
- package/package.json +3 -2
- package/public-api.d.ts +2 -3
- package/esm2022/lib/components/atomic/text/text.component.mjs +0 -11
- package/esm2022/lib/components/core/card/card.component.mjs +0 -11
- package/esm2022/lib/components/core/simple-card/simple-card.component.mjs +0 -11
- package/lib/components/atomic/text/text.component.d.ts +0 -5
- package/lib/components/core/card/card.component.d.ts +0 -5
- package/lib/components/core/simple-card/simple-card.component.d.ts +0 -5
|
@@ -1,5 +1,10 @@
|
|
|
1
|
+
import { CarouselComponent, OwlOptions } from 'ngx-owl-carousel-o';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class AdvantagesComponent {
|
|
4
|
+
carousel: CarouselComponent;
|
|
5
|
+
sliderOptions: OwlOptions;
|
|
6
|
+
prevClick(): void;
|
|
7
|
+
nextClick(): void;
|
|
3
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdvantagesComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdvantagesComponent, "
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdvantagesComponent, "tent-advantages", never, {}, {}, never, never, true, never>;
|
|
5
10
|
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class Cards2colComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Cards2colComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Cards2colComponent, "tent-cards-2col", never, {}, {}, never, never, true, never>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { OwlOptions } from 'ngx-owl-carousel-o';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class Cards3colComponent {
|
|
4
|
+
collapsed: boolean;
|
|
5
|
+
sliderOptions: OwlOptions;
|
|
6
|
+
toggleCollapse(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Cards3colComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Cards3colComponent, "tent-cards-3col", never, {}, {}, never, never, true, never>;
|
|
9
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class DestinationInfoComponent {
|
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<DestinationInfoComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DestinationInfoComponent, "
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DestinationInfoComponent, "tent-destination-info", never, {}, {}, never, never, true, never>;
|
|
5
5
|
}
|
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class FooterAComponent {
|
|
3
|
+
collapsed1: boolean;
|
|
4
|
+
collapsed2: boolean;
|
|
5
|
+
collapsed3: boolean;
|
|
6
|
+
collapsed4: boolean;
|
|
7
|
+
toggleCollapse1(): void;
|
|
8
|
+
toggleCollapse2(): void;
|
|
9
|
+
toggleCollapse3(): void;
|
|
10
|
+
toggleCollapse4(): void;
|
|
3
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<FooterAComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FooterAComponent, "
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FooterAComponent, "tent-footer-a", never, {}, {}, never, never, true, never>;
|
|
5
13
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class FooterBComponent {
|
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<FooterBComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FooterBComponent, "
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FooterBComponent, "tent-footer-b", never, {}, {}, never, never, true, never>;
|
|
5
5
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class FooterStaticComponent {
|
|
3
|
+
scrollClicked(): void;
|
|
3
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<FooterStaticComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FooterStaticComponent, "
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FooterStaticComponent, "tent-footer-static", never, {}, {}, never, never, true, never>;
|
|
5
6
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { DropdownOption } from '../../atomic/dropdown/dropdown.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class GuestsPopupComponent {
|
|
5
|
+
appliedData: EventEmitter<number>;
|
|
6
|
+
adultsOptions: DropdownOption[];
|
|
7
|
+
kidsOptions: DropdownOption[];
|
|
8
|
+
ageOptions: DropdownOption[];
|
|
9
|
+
babysOptions: DropdownOption[];
|
|
10
|
+
kids?: number[];
|
|
11
|
+
applied: boolean;
|
|
12
|
+
kidsOption: DropdownOption;
|
|
13
|
+
adultsOption: DropdownOption;
|
|
14
|
+
babysOption: DropdownOption;
|
|
15
|
+
kidsChange(option: DropdownOption, kids?: boolean): void;
|
|
16
|
+
babysChange(option: DropdownOption): void;
|
|
17
|
+
adultsChange(option: DropdownOption): void;
|
|
18
|
+
applyData(): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GuestsPopupComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GuestsPopupComponent, "tent-guests-popup", never, {}, { "appliedData": "appliedData"; }, never, never, true, never>;
|
|
21
|
+
}
|
|
@@ -1,5 +1,10 @@
|
|
|
1
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class HeaderComponent {
|
|
4
|
+
private readonly dialog;
|
|
5
|
+
scrolled?: boolean;
|
|
6
|
+
constructor(dialog: MatDialog);
|
|
7
|
+
openMotor(): void;
|
|
3
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "tent-header", never, { "scrolled": { "alias": "scrolled"; "required": false; }; }, {}, never, never, true, never>;
|
|
5
10
|
}
|
|
@@ -1,5 +1,9 @@
|
|
|
1
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class HeaderMobileComponent {
|
|
4
|
+
private readonly dialog;
|
|
5
|
+
constructor(dialog: MatDialog);
|
|
6
|
+
openMotor(): void;
|
|
3
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderMobileComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderMobileComponent, "
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderMobileComponent, "tent-header-mobile", never, {}, {}, never, never, true, never>;
|
|
5
9
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class HotelServicesComponent {
|
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<HotelServicesComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HotelServicesComponent, "
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HotelServicesComponent, "tent-hotel-services", never, {}, {}, never, never, true, never>;
|
|
5
5
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
import { OwlOptions } from 'ngx-owl-carousel-o';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class HotelSliderComponent {
|
|
4
|
+
sliderOptions: OwlOptions;
|
|
3
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<HotelSliderComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HotelSliderComponent, "
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HotelSliderComponent, "tent-hotel-slider", never, {}, {}, never, never, true, never>;
|
|
5
7
|
}
|
|
@@ -1,5 +1,38 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { DropdownOption } from '../../atomic/dropdown/dropdown.component';
|
|
1
4
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class MotorComponent {
|
|
5
|
+
export declare class MotorComponent implements OnInit {
|
|
6
|
+
private readonly formBuilder;
|
|
7
|
+
date: {
|
|
8
|
+
value: Date[];
|
|
9
|
+
title: string;
|
|
10
|
+
icon: string;
|
|
11
|
+
};
|
|
12
|
+
modal: boolean;
|
|
13
|
+
title: string;
|
|
14
|
+
subtitle: string;
|
|
15
|
+
submit: EventEmitter<any>;
|
|
16
|
+
close: EventEmitter<void>;
|
|
17
|
+
motorForm: FormGroup;
|
|
18
|
+
dialogVisible: boolean;
|
|
19
|
+
dialogReady: boolean;
|
|
20
|
+
guestsValue: string;
|
|
21
|
+
options: DropdownOption[];
|
|
22
|
+
constructor(formBuilder: FormBuilder);
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
btnClicked(): void;
|
|
25
|
+
togglePopup(): void;
|
|
26
|
+
closeDialog(): void;
|
|
27
|
+
closeModal(): void;
|
|
28
|
+
toggleMotorDialogReady(): void;
|
|
29
|
+
guestsChange(totalGuests: number): void;
|
|
3
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<MotorComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MotorComponent, "
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MotorComponent, "tent-motor", never, { "date": { "alias": "date"; "required": false; }; "modal": { "alias": "modal"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; }, { "submit": "submit"; "close": "close"; }, never, never, true, never>;
|
|
32
|
+
}
|
|
33
|
+
export interface motorInput {
|
|
34
|
+
title: string;
|
|
35
|
+
icon: string;
|
|
36
|
+
placeholder?: string;
|
|
37
|
+
value: string;
|
|
5
38
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class OfferComponent {
|
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<OfferComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OfferComponent, "
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OfferComponent, "tent-offer", never, {}, {}, never, never, true, never>;
|
|
5
5
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class OfferBannerComponent {
|
|
4
|
+
closeClick: EventEmitter<void>;
|
|
3
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<OfferBannerComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OfferBannerComponent, "
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OfferBannerComponent, "tent-offer-banner", never, {}, { "closeClick": "closeClick"; }, never, never, true, never>;
|
|
5
7
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
import { OwlOptions } from 'ngx-owl-carousel-o';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class OfferSliderComponent {
|
|
4
|
+
sliderOptions: OwlOptions;
|
|
3
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<OfferSliderComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OfferSliderComponent, "
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OfferSliderComponent, "tent-offer-slider", never, {}, {}, never, never, true, never>;
|
|
5
7
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
import { OwlOptions } from 'ngx-owl-carousel-o';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class RoomsSliderComponent {
|
|
4
|
+
sliderOptions: OwlOptions;
|
|
3
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<RoomsSliderComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RoomsSliderComponent, "
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RoomsSliderComponent, "tent-rooms-slider", never, {}, {}, never, never, true, never>;
|
|
5
7
|
}
|
|
@@ -1,5 +1,15 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, Renderer2 } from '@angular/core';
|
|
2
|
+
import { OwlOptions, CarouselComponent } from 'ngx-owl-carousel-o';
|
|
1
3
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class TopModuleComponent {
|
|
4
|
+
export declare class TopModuleComponent implements AfterViewInit {
|
|
5
|
+
private readonly renderer;
|
|
6
|
+
carousel: CarouselComponent;
|
|
7
|
+
nav: ElementRef;
|
|
8
|
+
sliderOptions: OwlOptions;
|
|
9
|
+
constructor(renderer: Renderer2);
|
|
10
|
+
ngAfterViewInit(): void;
|
|
11
|
+
prevClick(): void;
|
|
12
|
+
nextClick(): void;
|
|
3
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<TopModuleComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TopModuleComponent, "
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TopModuleComponent, "tent-top-module", never, {}, {}, never, never, true, never>;
|
|
5
15
|
}
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tent-lib",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^17.0.0",
|
|
6
6
|
"@angular/core": "^17.0.0",
|
|
7
|
-
"@angular/material": "^17.0.2"
|
|
7
|
+
"@angular/material": "^17.0.2",
|
|
8
|
+
"ngx-owl-carousel-o": "^17.0.0"
|
|
8
9
|
},
|
|
9
10
|
"dependencies": {
|
|
10
11
|
"tslib": "^2.3.0"
|
package/public-api.d.ts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
export * from './lib/components/atomic/button/button.component';
|
|
2
|
-
export * from './lib/components/atomic/text/text.component';
|
|
3
2
|
export * from './lib/components/atomic/datepicker/datepicker.component';
|
|
4
3
|
export * from './lib/components/atomic/dropdown/dropdown.component';
|
|
5
4
|
export * from './lib/components/atomic/input/input.component';
|
|
6
5
|
export * from './lib/components/atomic/badge/badge.component';
|
|
7
6
|
export * from './lib/components/core/advantages/advantages.component';
|
|
8
|
-
export * from './lib/components/core/
|
|
7
|
+
export * from './lib/components/core/cards-2col/cards-2col.component';
|
|
9
8
|
export * from './lib/components/core/destination-info/destination-info.component';
|
|
10
9
|
export * from './lib/components/core/footer-a/footer-a.component';
|
|
11
10
|
export * from './lib/components/core/footer-b/footer-b.component';
|
|
@@ -19,7 +18,7 @@ export * from './lib/components/core/offer/offer.component';
|
|
|
19
18
|
export * from './lib/components/core/offer-banner/offer-banner.component';
|
|
20
19
|
export * from './lib/components/core/offer-slider/offer-slider.component';
|
|
21
20
|
export * from './lib/components/core/rooms-slider/rooms-slider.component';
|
|
22
|
-
export * from './lib/components/core/
|
|
21
|
+
export * from './lib/components/core/cards-3col/cards-3col.component';
|
|
23
22
|
export * from './lib/components/core/top-module/top-module.component';
|
|
24
23
|
export * from './lib/interfaces/atomic/button.interface';
|
|
25
24
|
export * from './lib/interfaces/atomic/datepicker.interface';
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class TextComponent {
|
|
4
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: TextComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: TextComponent, isStandalone: true, selector: "lib-text", ngImport: i0, template: "<p>text works!</p>\n", styles: [""] }); }
|
|
6
|
-
}
|
|
7
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: TextComponent, decorators: [{
|
|
8
|
-
type: Component,
|
|
9
|
-
args: [{ selector: 'lib-text', standalone: true, imports: [], template: "<p>text works!</p>\n" }]
|
|
10
|
-
}] });
|
|
11
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90ZW50L3NyYy9saWIvY29tcG9uZW50cy9hdG9taWMvdGV4dC90ZXh0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RlbnQvc3JjL2xpYi9jb21wb25lbnRzL2F0b21pYy90ZXh0L3RleHQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFTMUMsTUFBTSxPQUFPLGFBQWE7OEdBQWIsYUFBYTtrR0FBYixhQUFhLG9FQ1QxQixzQkFDQTs7MkZEUWEsYUFBYTtrQkFQekIsU0FBUzsrQkFDRSxVQUFVLGNBQ1IsSUFBSSxXQUNQLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbGliLXRleHQnLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbXSxcbiAgdGVtcGxhdGVVcmw6ICcuL3RleHQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybDogJy4vdGV4dC5jb21wb25lbnQuc2Nzcydcbn0pXG5leHBvcnQgY2xhc3MgVGV4dENvbXBvbmVudCB7XG5cbn1cbiIsIjxwPnRleHQgd29ya3MhPC9wPlxuIl19
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class CardComponent {
|
|
4
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: CardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: CardComponent, isStandalone: true, selector: "lib-card", ngImport: i0, template: "<p>card works!</p>\n", styles: [""] }); }
|
|
6
|
-
}
|
|
7
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: CardComponent, decorators: [{
|
|
8
|
-
type: Component,
|
|
9
|
-
args: [{ selector: 'lib-card', standalone: true, imports: [], template: "<p>card works!</p>\n" }]
|
|
10
|
-
}] });
|
|
11
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FyZC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90ZW50L3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2NhcmQvY2FyZC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90ZW50L3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2NhcmQvY2FyZC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQVMxQyxNQUFNLE9BQU8sYUFBYTs4R0FBYixhQUFhO2tHQUFiLGFBQWEsb0VDVDFCLHNCQUNBOzsyRkRRYSxhQUFhO2tCQVB6QixTQUFTOytCQUNFLFVBQVUsY0FDUixJQUFJLFdBQ1AsRUFBRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdsaWItY2FyZCcsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtdLFxuICB0ZW1wbGF0ZVVybDogJy4vY2FyZC5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsOiAnLi9jYXJkLmNvbXBvbmVudC5zY3NzJ1xufSlcbmV4cG9ydCBjbGFzcyBDYXJkQ29tcG9uZW50IHtcblxufVxuIiwiPHA+Y2FyZCB3b3JrcyE8L3A+XG4iXX0=
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class SimpleCardComponent {
|
|
4
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: SimpleCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.0", type: SimpleCardComponent, isStandalone: true, selector: "lib-simple-card", ngImport: i0, template: "<p>simple-card works!</p>\n", styles: [""] }); }
|
|
6
|
-
}
|
|
7
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.0", ngImport: i0, type: SimpleCardComponent, decorators: [{
|
|
8
|
-
type: Component,
|
|
9
|
-
args: [{ selector: 'lib-simple-card', standalone: true, imports: [], template: "<p>simple-card works!</p>\n" }]
|
|
10
|
-
}] });
|
|
11
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2ltcGxlLWNhcmQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdGVudC9zcmMvbGliL2NvbXBvbmVudHMvY29yZS9zaW1wbGUtY2FyZC9zaW1wbGUtY2FyZC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90ZW50L3NyYy9saWIvY29tcG9uZW50cy9jb3JlL3NpbXBsZS1jYXJkL3NpbXBsZS1jYXJkLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBUzFDLE1BQU0sT0FBTyxtQkFBbUI7OEdBQW5CLG1CQUFtQjtrR0FBbkIsbUJBQW1CLDJFQ1RoQyw2QkFDQTs7MkZEUWEsbUJBQW1CO2tCQVAvQixTQUFTOytCQUNFLGlCQUFpQixjQUNmLElBQUksV0FDUCxFQUFFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2xpYi1zaW1wbGUtY2FyZCcsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtdLFxuICB0ZW1wbGF0ZVVybDogJy4vc2ltcGxlLWNhcmQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybDogJy4vc2ltcGxlLWNhcmQuY29tcG9uZW50LnNjc3MnXG59KVxuZXhwb3J0IGNsYXNzIFNpbXBsZUNhcmRDb21wb25lbnQge1xuXG59XG4iLCI8cD5zaW1wbGUtY2FyZCB3b3JrcyE8L3A+XG4iXX0=
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class SimpleCardComponent {
|
|
3
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SimpleCardComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SimpleCardComponent, "lib-simple-card", never, {}, {}, never, never, true, never>;
|
|
5
|
-
}
|