@craftsjs/card 6.0.0 → 6.1.0
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/README.md +39 -14
- package/_craftsjs-card.theme.scss +19 -12
- package/esm2022/lib/card.component.mjs +3 -3
- package/esm2022/lib/card.module.mjs +25 -29
- package/esm2022/lib/components/card-header/card-header.component.mjs +3 -3
- package/esm2022/lib/components/card-header/components/card-header-linear/card-header-linear.component.mjs +3 -3
- package/esm2022/lib/components/card-header/components/card-header-oval/card-header-oval.component.mjs +3 -3
- package/esm2022/lib/directives/card-body.directive.mjs +4 -3
- package/esm2022/lib/directives/card-divider.directive.mjs +4 -3
- package/esm2022/lib/directives/card-footer.directive.mjs +4 -3
- package/esm2022/lib/directives/card-header-mark.directive.mjs +4 -3
- package/esm2022/lib/directives/card-header-subtitle.directive.mjs +4 -3
- package/esm2022/lib/directives/card-title.directive.mjs +4 -3
- package/esm2022/public-api.mjs +2 -2
- package/fesm2022/craftsjs-card.mjs +110 -108
- package/fesm2022/craftsjs-card.mjs.map +1 -1
- package/lib/card.component.d.ts +1 -1
- package/lib/card.module.d.ts +8 -9
- package/lib/components/card-header/card-header.component.d.ts +1 -1
- package/lib/components/card-header/components/card-header-linear/card-header-linear.component.d.ts +1 -1
- package/lib/components/card-header/components/card-header-oval/card-header-oval.component.d.ts +1 -1
- package/lib/directives/card-body.directive.d.ts +1 -1
- package/lib/directives/card-divider.directive.d.ts +1 -1
- package/lib/directives/card-footer.directive.d.ts +1 -1
- package/lib/directives/card-header-mark.directive.d.ts +1 -1
- package/lib/directives/card-header-subtitle.directive.d.ts +1 -1
- package/lib/directives/card-title.directive.d.ts +1 -1
- package/package.json +5 -2
- package/public-api.d.ts +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# craftsjs card
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
CraftsJS Card components and directives for Angular.
|
|
4
4
|
|
|
5
5
|
[See demo](http://addapptables.com/admin/components/cards)
|
|
6
6
|
|
|
@@ -13,6 +13,7 @@ Choose the version corresponding to your Angular version:
|
|
|
13
13
|
|
|
14
14
|
Angular | @craftsjs/card
|
|
15
15
|
----------- | -------------------
|
|
16
|
+
18 | 6.x
|
|
16
17
|
15 | 5.x
|
|
17
18
|
13 | 4.x
|
|
18
19
|
12 | 3.x
|
|
@@ -23,26 +24,49 @@ Choose the version corresponding to your Angular version:
|
|
|
23
24
|
npm i @craftsjs/card --S
|
|
24
25
|
```
|
|
25
26
|
|
|
27
|
+
## Compatibility
|
|
28
|
+
|
|
29
|
+
Current version: 6.1.0 (Compatible with Angular v18)
|
|
30
|
+
|
|
26
31
|
Install peer dependencies
|
|
27
32
|
|
|
28
33
|
```
|
|
29
|
-
npm i
|
|
30
|
-
@craftsjs/core
|
|
31
|
-
@angular/material
|
|
32
|
-
@angular/animations
|
|
33
|
-
@angular/cdk --S
|
|
34
|
+
npm i @craftsjs/core @angular/material @angular/animations @angular/cdk --S
|
|
34
35
|
```
|
|
35
36
|
|
|
36
|
-
## How to use
|
|
37
|
+
## How to use (standalone, Angular 15+/18)
|
|
37
38
|
|
|
38
|
-
- Import the
|
|
39
|
+
- Import the standalone components and directives where you use them:
|
|
39
40
|
|
|
40
41
|
```typescript
|
|
41
|
-
import {
|
|
42
|
-
|
|
43
|
-
|
|
42
|
+
import { Component } from '@angular/core';
|
|
43
|
+
import {
|
|
44
|
+
CardComponent,
|
|
45
|
+
CardHeaderComponent,
|
|
46
|
+
CardHeaderLinearComponent,
|
|
47
|
+
CardHeaderOvalComponent,
|
|
48
|
+
CardBodyDirective,
|
|
49
|
+
CardTitleDirective
|
|
50
|
+
} from '@craftsjs/card';
|
|
51
|
+
import { MatIconModule } from '@angular/material/icon';
|
|
52
|
+
import { MatDividerModule } from '@angular/material/divider';
|
|
53
|
+
|
|
54
|
+
@Component({
|
|
55
|
+
selector: 'app-card-demo',
|
|
56
|
+
standalone: true,
|
|
57
|
+
imports: [
|
|
58
|
+
CardComponent,
|
|
59
|
+
CardHeaderComponent,
|
|
60
|
+
CardHeaderLinearComponent,
|
|
61
|
+
CardHeaderOvalComponent,
|
|
62
|
+
CardBodyDirective,
|
|
63
|
+
CardTitleDirective,
|
|
64
|
+
MatIconModule,
|
|
65
|
+
MatDividerModule
|
|
66
|
+
],
|
|
67
|
+
templateUrl: './card-demo.component.html'
|
|
44
68
|
})
|
|
45
|
-
export class
|
|
69
|
+
export class CardDemoComponent {}
|
|
46
70
|
```
|
|
47
71
|
|
|
48
72
|
simple card
|
|
@@ -80,7 +104,7 @@ Oval card
|
|
|
80
104
|
</craftsjs-card>
|
|
81
105
|
```
|
|
82
106
|
|
|
83
|
-
- Finally,
|
|
107
|
+
- Finally, import the styles into your application
|
|
84
108
|
|
|
85
109
|
```scss
|
|
86
110
|
@import '~@craftsjs/core/craftsjs-grid.theme';
|
|
@@ -109,6 +133,7 @@ body.theme-default {
|
|
|
109
133
|
```
|
|
110
134
|
|
|
111
135
|
- Do not forget to put the theme-default class in the html body
|
|
136
|
+
and ensure Angular Material animations are provided (e.g., in main.ts: provideAnimations()).
|
|
112
137
|
|
|
113
138
|
```html
|
|
114
139
|
<body class="theme-default"></body>
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@use '@angular/material' as mat;
|
|
1
2
|
@mixin box_shadow_header_color($color) {
|
|
2
3
|
box-shadow: 0 4px 20px 0 rgba(0,0,0,.14), 0 7px 10px -5px $color
|
|
3
4
|
}
|
|
@@ -49,9 +50,11 @@
|
|
|
49
50
|
|
|
50
51
|
@mixin card($theme, $variables) {
|
|
51
52
|
|
|
52
|
-
|
|
53
|
-
$
|
|
54
|
-
$
|
|
53
|
+
// Extract Material color config from the provided $theme (M2)
|
|
54
|
+
$color-config: mat.m2-get-color-config($theme);
|
|
55
|
+
$accent: map-get($color-config, accent);
|
|
56
|
+
$background: map-get($color-config, background);
|
|
57
|
+
$foreground: map-get($color-config, foreground);
|
|
55
58
|
|
|
56
59
|
//card
|
|
57
60
|
$card-padding: 12px 0;
|
|
@@ -64,9 +67,10 @@
|
|
|
64
67
|
$card-header-margin: -20px 15px 0 16px;
|
|
65
68
|
$card-header-padding: 20px;
|
|
66
69
|
$card-title-font-weight: 500;
|
|
67
|
-
$
|
|
70
|
+
$accent-hue: default;
|
|
71
|
+
$card-header-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .14), 0 7px 10px -5px mat.m2-get-color-from-palette($accent, $accent-hue);
|
|
68
72
|
$card-header-icon-margin-right: 10px;
|
|
69
|
-
$background-color-header:
|
|
73
|
+
$background-color-header: mat.m2-get-color-from-palette($accent, $accent-hue);
|
|
70
74
|
|
|
71
75
|
// body
|
|
72
76
|
$card-body-padding: 12px 20px 20px;
|
|
@@ -87,7 +91,7 @@
|
|
|
87
91
|
&-header {
|
|
88
92
|
&-oval {
|
|
89
93
|
background-color: $background-color-header;
|
|
90
|
-
color:
|
|
94
|
+
color: mat.m2-get-color-from-palette($accent, default-contrast);
|
|
91
95
|
padding: 20px 15px;
|
|
92
96
|
margin: $card-header-margin;
|
|
93
97
|
border-radius: map-get($variables, border-radius);
|
|
@@ -140,19 +144,22 @@
|
|
|
140
144
|
|
|
141
145
|
@mixin card-color($theme) {
|
|
142
146
|
|
|
143
|
-
|
|
144
|
-
$
|
|
145
|
-
$
|
|
147
|
+
// Extract Material color config from the provided $theme (M2)
|
|
148
|
+
$color-config: mat.m2-get-color-config($theme);
|
|
149
|
+
$accent: map-get($color-config, accent);
|
|
150
|
+
$background: map-get($color-config, background);
|
|
151
|
+
$foreground: map-get($color-config, foreground);
|
|
146
152
|
|
|
147
|
-
$
|
|
148
|
-
|
|
153
|
+
$accent-hue: default;
|
|
154
|
+
$background-color-header: mat.m2-get-color-from-palette($accent, $accent-hue);
|
|
155
|
+
$card-header-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .14), 0 7px 10px -5px mat.m2-get-color-from-palette($accent, $accent-hue);
|
|
149
156
|
|
|
150
157
|
.card {
|
|
151
158
|
background: map-get($background, 'card');
|
|
152
159
|
&-header {
|
|
153
160
|
&-oval {
|
|
154
161
|
background-color: $background-color-header;
|
|
155
|
-
color:
|
|
162
|
+
color: var(--mat-sys-on-primary-container);
|
|
156
163
|
box-shadow: $card-header-box-shadow;
|
|
157
164
|
}
|
|
158
165
|
}
|
|
@@ -2,10 +2,10 @@ import { Component, ViewEncapsulation, ChangeDetectionStrategy } from '@angular/
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export class CardComponent {
|
|
4
4
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CardComponent, selector: "craftsjs-card", host: { classAttribute: "card" }, ngImport: i0, template: "<ng-content></ng-content>\r\n<ng-content select=\"card-footer\"></ng-content>", changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
5
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CardComponent, isStandalone: true, selector: "craftsjs-card", host: { classAttribute: "card" }, ngImport: i0, template: "<ng-content></ng-content>\r\n<ng-content select=\"card-footer\"></ng-content>", changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
6
6
|
}
|
|
7
7
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardComponent, decorators: [{
|
|
8
8
|
type: Component,
|
|
9
|
-
args: [{ selector: 'craftsjs-card', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, host: { class: 'card' }, template: "<ng-content></ng-content>\r\n<ng-content select=\"card-footer\"></ng-content>" }]
|
|
9
|
+
args: [{ selector: 'craftsjs-card', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, host: { class: 'card' }, standalone: true, template: "<ng-content></ng-content>\r\n<ng-content select=\"card-footer\"></ng-content>" }]
|
|
10
10
|
}] });
|
|
11
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FyZC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jcmFmdHNqcy9jYXJkL3NyYy9saWIvY2FyZC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jcmFmdHNqcy9jYXJkL3NyYy9saWIvY2FyZC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLGlCQUFpQixFQUFFLHVCQUF1QixFQUFFLE1BQU0sZUFBZSxDQUFDOztBQVd0RixNQUFNLE9BQU8sYUFBYTsrR0FBYixhQUFhO21HQUFiLGFBQWEsMkdDWDFCLCtFQUM4Qzs7NEZEVWpDLGFBQWE7a0JBUnpCLFNBQVM7K0JBQ0ksZUFBZSxpQkFFVixpQkFBaUIsQ0FBQyxJQUFJLG1CQUNwQix1QkFBdUIsQ0FBQyxNQUFNLFFBQ3pDLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBRSxjQUNYLElBQUkiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIFZpZXdFbmNhcHN1bGF0aW9uLCBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuXHJcbkBDb21wb25lbnQoe1xyXG4gICAgc2VsZWN0b3I6ICdjcmFmdHNqcy1jYXJkJyxcclxuICAgIHRlbXBsYXRlVXJsOiAnLi9jYXJkLmNvbXBvbmVudC5odG1sJyxcclxuICAgIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXHJcbiAgICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcclxuICAgIGhvc3Q6IHsgY2xhc3M6ICdjYXJkJyB9LFxyXG4gICAgc3RhbmRhbG9uZTogdHJ1ZVxyXG59KVxyXG5leHBvcnQgY2xhc3MgQ2FyZENvbXBvbmVudCB7IH1cclxuIiwiPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxyXG48bmctY29udGVudCBzZWxlY3Q9XCJjYXJkLWZvb3RlclwiPjwvbmctY29udGVudD4iXX0=
|
|
@@ -1,69 +1,65 @@
|
|
|
1
1
|
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
2
|
import { CardComponent } from './card.component';
|
|
4
3
|
import { CardHeaderComponent } from './components/card-header/card-header.component';
|
|
5
|
-
import {
|
|
4
|
+
import { CardHeaderLinearComponent } from './components/card-header/components/card-header-linear/card-header-linear.component';
|
|
5
|
+
import { CardHeaderOvalComponent } from './components/card-header/components/card-header-oval/card-header-oval.component';
|
|
6
6
|
import { CardBodyDirective } from './directives/card-body.directive';
|
|
7
|
-
import { CardFooterDirective } from './directives/card-footer.directive';
|
|
8
7
|
import { CardDividerDirective } from './directives/card-divider.directive';
|
|
8
|
+
import { CardFooterDirective } from './directives/card-footer.directive';
|
|
9
9
|
import { CardHeaderMarkDirective } from './directives/card-header-mark.directive';
|
|
10
10
|
import { CardHeaderSubtitleDirective } from './directives/card-header-subtitle.directive';
|
|
11
|
-
import {
|
|
12
|
-
import { CardHeaderLinearComponent } from './components/card-header/components/card-header-linear/card-header-linear.component';
|
|
11
|
+
import { CardTitleDirective } from './directives/card-title.directive';
|
|
13
12
|
import * as i0 from "@angular/core";
|
|
14
13
|
export class CardModule {
|
|
15
14
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
16
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: CardModule,
|
|
15
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: CardModule, imports: [CardComponent,
|
|
17
16
|
CardHeaderComponent,
|
|
18
|
-
|
|
17
|
+
CardHeaderLinearComponent,
|
|
18
|
+
CardHeaderOvalComponent,
|
|
19
19
|
CardBodyDirective,
|
|
20
|
-
CardFooterDirective,
|
|
21
20
|
CardDividerDirective,
|
|
21
|
+
CardFooterDirective,
|
|
22
22
|
CardHeaderMarkDirective,
|
|
23
23
|
CardHeaderSubtitleDirective,
|
|
24
|
-
|
|
25
|
-
CardHeaderLinearComponent], imports: [CommonModule], exports: [CardComponent,
|
|
24
|
+
CardTitleDirective], exports: [CardComponent,
|
|
26
25
|
CardHeaderComponent,
|
|
27
|
-
|
|
26
|
+
CardHeaderLinearComponent,
|
|
27
|
+
CardHeaderOvalComponent,
|
|
28
28
|
CardBodyDirective,
|
|
29
|
-
CardFooterDirective,
|
|
30
29
|
CardDividerDirective,
|
|
31
|
-
|
|
30
|
+
CardFooterDirective,
|
|
32
31
|
CardHeaderMarkDirective,
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardModule
|
|
32
|
+
CardHeaderSubtitleDirective,
|
|
33
|
+
CardTitleDirective] }); }
|
|
34
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardModule }); }
|
|
36
35
|
}
|
|
37
36
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardModule, decorators: [{
|
|
38
37
|
type: NgModule,
|
|
39
38
|
args: [{
|
|
40
39
|
imports: [
|
|
41
|
-
CommonModule
|
|
42
|
-
],
|
|
43
|
-
declarations: [
|
|
44
40
|
CardComponent,
|
|
45
41
|
CardHeaderComponent,
|
|
46
|
-
|
|
42
|
+
CardHeaderLinearComponent,
|
|
43
|
+
CardHeaderOvalComponent,
|
|
47
44
|
CardBodyDirective,
|
|
48
|
-
CardFooterDirective,
|
|
49
45
|
CardDividerDirective,
|
|
46
|
+
CardFooterDirective,
|
|
50
47
|
CardHeaderMarkDirective,
|
|
51
48
|
CardHeaderSubtitleDirective,
|
|
52
|
-
|
|
53
|
-
CardHeaderLinearComponent
|
|
49
|
+
CardTitleDirective
|
|
54
50
|
],
|
|
55
51
|
exports: [
|
|
56
52
|
CardComponent,
|
|
57
53
|
CardHeaderComponent,
|
|
58
|
-
|
|
54
|
+
CardHeaderLinearComponent,
|
|
55
|
+
CardHeaderOvalComponent,
|
|
59
56
|
CardBodyDirective,
|
|
60
|
-
CardFooterDirective,
|
|
61
57
|
CardDividerDirective,
|
|
62
|
-
|
|
58
|
+
CardFooterDirective,
|
|
63
59
|
CardHeaderMarkDirective,
|
|
64
|
-
|
|
65
|
-
|
|
60
|
+
CardHeaderSubtitleDirective,
|
|
61
|
+
CardTitleDirective
|
|
66
62
|
]
|
|
67
63
|
}]
|
|
68
64
|
}] });
|
|
69
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
65
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FyZC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jcmFmdHNqcy9jYXJkL3NyYy9saWIvY2FyZC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDakQsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sZ0RBQWdELENBQUM7QUFDckYsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0scUZBQXFGLENBQUM7QUFDaEksT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0saUZBQWlGLENBQUM7QUFDMUgsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sa0NBQWtDLENBQUM7QUFDckUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0scUNBQXFDLENBQUM7QUFDM0UsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sb0NBQW9DLENBQUM7QUFDekUsT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0seUNBQXlDLENBQUM7QUFDbEYsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0sNkNBQTZDLENBQUM7QUFDMUYsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sbUNBQW1DLENBQUM7O0FBNEJ2RSxNQUFNLE9BQU8sVUFBVTsrR0FBVixVQUFVO2dIQUFWLFVBQVUsWUF4Qm5CLGFBQWE7WUFDYixtQkFBbUI7WUFDbkIseUJBQXlCO1lBQ3pCLHVCQUF1QjtZQUN2QixpQkFBaUI7WUFDakIsb0JBQW9CO1lBQ3BCLG1CQUFtQjtZQUNuQix1QkFBdUI7WUFDdkIsMkJBQTJCO1lBQzNCLGtCQUFrQixhQUdsQixhQUFhO1lBQ2IsbUJBQW1CO1lBQ25CLHlCQUF5QjtZQUN6Qix1QkFBdUI7WUFDdkIsaUJBQWlCO1lBQ2pCLG9CQUFvQjtZQUNwQixtQkFBbUI7WUFDbkIsdUJBQXVCO1lBQ3ZCLDJCQUEyQjtZQUMzQixrQkFBa0I7Z0hBR1QsVUFBVTs7NEZBQVYsVUFBVTtrQkExQnRCLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFO3dCQUNQLGFBQWE7d0JBQ2IsbUJBQW1CO3dCQUNuQix5QkFBeUI7d0JBQ3pCLHVCQUF1Qjt3QkFDdkIsaUJBQWlCO3dCQUNqQixvQkFBb0I7d0JBQ3BCLG1CQUFtQjt3QkFDbkIsdUJBQXVCO3dCQUN2QiwyQkFBMkI7d0JBQzNCLGtCQUFrQjtxQkFDbkI7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLGFBQWE7d0JBQ2IsbUJBQW1CO3dCQUNuQix5QkFBeUI7d0JBQ3pCLHVCQUF1Qjt3QkFDdkIsaUJBQWlCO3dCQUNqQixvQkFBb0I7d0JBQ3BCLG1CQUFtQjt3QkFDbkIsdUJBQXVCO3dCQUN2QiwyQkFBMkI7d0JBQzNCLGtCQUFrQjtxQkFDbkI7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBDYXJkQ29tcG9uZW50IH0gZnJvbSAnLi9jYXJkLmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IENhcmRIZWFkZXJDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvY2FyZC1oZWFkZXIvY2FyZC1oZWFkZXIuY29tcG9uZW50JztcclxuaW1wb3J0IHsgQ2FyZEhlYWRlckxpbmVhckNvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cy9jYXJkLWhlYWRlci9jb21wb25lbnRzL2NhcmQtaGVhZGVyLWxpbmVhci9jYXJkLWhlYWRlci1saW5lYXIuY29tcG9uZW50JztcclxuaW1wb3J0IHsgQ2FyZEhlYWRlck92YWxDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvY2FyZC1oZWFkZXIvY29tcG9uZW50cy9jYXJkLWhlYWRlci1vdmFsL2NhcmQtaGVhZGVyLW92YWwuY29tcG9uZW50JztcclxuaW1wb3J0IHsgQ2FyZEJvZHlEaXJlY3RpdmUgfSBmcm9tICcuL2RpcmVjdGl2ZXMvY2FyZC1ib2R5LmRpcmVjdGl2ZSc7XHJcbmltcG9ydCB7IENhcmREaXZpZGVyRGlyZWN0aXZlIH0gZnJvbSAnLi9kaXJlY3RpdmVzL2NhcmQtZGl2aWRlci5kaXJlY3RpdmUnO1xyXG5pbXBvcnQgeyBDYXJkRm9vdGVyRGlyZWN0aXZlIH0gZnJvbSAnLi9kaXJlY3RpdmVzL2NhcmQtZm9vdGVyLmRpcmVjdGl2ZSc7XHJcbmltcG9ydCB7IENhcmRIZWFkZXJNYXJrRGlyZWN0aXZlIH0gZnJvbSAnLi9kaXJlY3RpdmVzL2NhcmQtaGVhZGVyLW1hcmsuZGlyZWN0aXZlJztcclxuaW1wb3J0IHsgQ2FyZEhlYWRlclN1YnRpdGxlRGlyZWN0aXZlIH0gZnJvbSAnLi9kaXJlY3RpdmVzL2NhcmQtaGVhZGVyLXN1YnRpdGxlLmRpcmVjdGl2ZSc7XHJcbmltcG9ydCB7IENhcmRUaXRsZURpcmVjdGl2ZSB9IGZyb20gJy4vZGlyZWN0aXZlcy9jYXJkLXRpdGxlLmRpcmVjdGl2ZSc7XHJcblxyXG5ATmdNb2R1bGUoe1xyXG4gIGltcG9ydHM6IFtcclxuICAgIENhcmRDb21wb25lbnQsXHJcbiAgICBDYXJkSGVhZGVyQ29tcG9uZW50LFxyXG4gICAgQ2FyZEhlYWRlckxpbmVhckNvbXBvbmVudCxcclxuICAgIENhcmRIZWFkZXJPdmFsQ29tcG9uZW50LFxyXG4gICAgQ2FyZEJvZHlEaXJlY3RpdmUsXHJcbiAgICBDYXJkRGl2aWRlckRpcmVjdGl2ZSxcclxuICAgIENhcmRGb290ZXJEaXJlY3RpdmUsXHJcbiAgICBDYXJkSGVhZGVyTWFya0RpcmVjdGl2ZSxcclxuICAgIENhcmRIZWFkZXJTdWJ0aXRsZURpcmVjdGl2ZSxcclxuICAgIENhcmRUaXRsZURpcmVjdGl2ZVxyXG4gIF0sXHJcbiAgZXhwb3J0czogW1xyXG4gICAgQ2FyZENvbXBvbmVudCxcclxuICAgIENhcmRIZWFkZXJDb21wb25lbnQsXHJcbiAgICBDYXJkSGVhZGVyTGluZWFyQ29tcG9uZW50LFxyXG4gICAgQ2FyZEhlYWRlck92YWxDb21wb25lbnQsXHJcbiAgICBDYXJkQm9keURpcmVjdGl2ZSxcclxuICAgIENhcmREaXZpZGVyRGlyZWN0aXZlLFxyXG4gICAgQ2FyZEZvb3RlckRpcmVjdGl2ZSxcclxuICAgIENhcmRIZWFkZXJNYXJrRGlyZWN0aXZlLFxyXG4gICAgQ2FyZEhlYWRlclN1YnRpdGxlRGlyZWN0aXZlLFxyXG4gICAgQ2FyZFRpdGxlRGlyZWN0aXZlXHJcbiAgXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgQ2FyZE1vZHVsZSB7IH1cclxuIl19
|
|
@@ -2,14 +2,14 @@ import { Component, ViewEncapsulation, ChangeDetectionStrategy, Input } from '@a
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export class CardHeaderComponent {
|
|
4
4
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CardHeaderComponent, selector: "card-header", inputs: { color: "color", classHeaderTitle: "classHeaderTitle" }, host: { classAttribute: "d-flex flex-row flex-wrap card-header" }, ngImport: i0, template: "<ng-content select=\"card-header-oval\"></ng-content>\r\n<ng-content select=\"card-header-linear\"></ng-content>\r\n<div class=\"card-header-subtitle d-flex flex-column\">\r\n <ng-content select=\"card-header-mark\"></ng-content>\r\n <ng-content select=\"card-header-subtitle\"></ng-content>\r\n</div>", changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
5
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CardHeaderComponent, isStandalone: true, selector: "card-header", inputs: { color: "color", classHeaderTitle: "classHeaderTitle" }, host: { classAttribute: "d-flex flex-row flex-wrap card-header" }, ngImport: i0, template: "<ng-content select=\"card-header-oval\"></ng-content>\r\n<ng-content select=\"card-header-linear\"></ng-content>\r\n<div class=\"card-header-subtitle d-flex flex-column\">\r\n <ng-content select=\"card-header-mark\"></ng-content>\r\n <ng-content select=\"card-header-subtitle\"></ng-content>\r\n</div>", changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
6
6
|
}
|
|
7
7
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderComponent, decorators: [{
|
|
8
8
|
type: Component,
|
|
9
9
|
args: [{ selector: 'card-header', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, inputs: ['color'], host: {
|
|
10
10
|
class: 'd-flex flex-row flex-wrap card-header'
|
|
11
|
-
}, template: "<ng-content select=\"card-header-oval\"></ng-content>\r\n<ng-content select=\"card-header-linear\"></ng-content>\r\n<div class=\"card-header-subtitle d-flex flex-column\">\r\n <ng-content select=\"card-header-mark\"></ng-content>\r\n <ng-content select=\"card-header-subtitle\"></ng-content>\r\n</div>" }]
|
|
11
|
+
}, standalone: true, template: "<ng-content select=\"card-header-oval\"></ng-content>\r\n<ng-content select=\"card-header-linear\"></ng-content>\r\n<div class=\"card-header-subtitle d-flex flex-column\">\r\n <ng-content select=\"card-header-mark\"></ng-content>\r\n <ng-content select=\"card-header-subtitle\"></ng-content>\r\n</div>" }]
|
|
12
12
|
}], propDecorators: { classHeaderTitle: [{
|
|
13
13
|
type: Input
|
|
14
14
|
}] } });
|
|
15
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
15
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FyZC1oZWFkZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY3JhZnRzanMvY2FyZC9zcmMvbGliL2NvbXBvbmVudHMvY2FyZC1oZWFkZXIvY2FyZC1oZWFkZXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY3JhZnRzanMvY2FyZC9zcmMvbGliL2NvbXBvbmVudHMvY2FyZC1oZWFkZXIvY2FyZC1oZWFkZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSx1QkFBdUIsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBYTdGLE1BQU0sT0FBTyxtQkFBbUI7K0dBQW5CLG1CQUFtQjttR0FBbkIsbUJBQW1CLDRNQ2JoQyxxVEFLTTs7NEZEUU8sbUJBQW1CO2tCQVgvQixTQUFTOytCQUNJLGFBQWEsaUJBRVIsaUJBQWlCLENBQUMsSUFBSSxtQkFDcEIsdUJBQXVCLENBQUMsTUFBTSxVQUN2QyxDQUFDLE9BQU8sQ0FBQyxRQUNYO3dCQUNGLEtBQUssRUFBRSx1Q0FBdUM7cUJBQ2pELGNBQ1csSUFBSTs4QkFJbEIsZ0JBQWdCO3NCQURmLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIFZpZXdFbmNhcHN1bGF0aW9uLCBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gICAgc2VsZWN0b3I6ICdjYXJkLWhlYWRlcicsXHJcbiAgICB0ZW1wbGF0ZVVybDogJy4vY2FyZC1oZWFkZXIuY29tcG9uZW50Lmh0bWwnLFxyXG4gICAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcclxuICAgIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxyXG4gICAgaW5wdXRzOiBbJ2NvbG9yJ10sXHJcbiAgICBob3N0OiB7XHJcbiAgICAgICAgY2xhc3M6ICdkLWZsZXggZmxleC1yb3cgZmxleC13cmFwIGNhcmQtaGVhZGVyJ1xyXG4gICAgfSxcclxuICAgIHN0YW5kYWxvbmU6IHRydWVcclxufSlcclxuZXhwb3J0IGNsYXNzIENhcmRIZWFkZXJDb21wb25lbnQge1xyXG4gIEBJbnB1dCgpXHJcbiAgY2xhc3NIZWFkZXJUaXRsZTogc3RyaW5nO1xyXG59XHJcbiIsIjxuZy1jb250ZW50IHNlbGVjdD1cImNhcmQtaGVhZGVyLW92YWxcIj48L25nLWNvbnRlbnQ+XHJcbjxuZy1jb250ZW50IHNlbGVjdD1cImNhcmQtaGVhZGVyLWxpbmVhclwiPjwvbmctY29udGVudD5cclxuPGRpdiBjbGFzcz1cImNhcmQtaGVhZGVyLXN1YnRpdGxlIGQtZmxleCBmbGV4LWNvbHVtblwiPlxyXG4gICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiY2FyZC1oZWFkZXItbWFya1wiPjwvbmctY29udGVudD5cclxuICAgIDxuZy1jb250ZW50IHNlbGVjdD1cImNhcmQtaGVhZGVyLXN1YnRpdGxlXCI+PC9uZy1jb250ZW50PlxyXG48L2Rpdj4iXX0=
|
|
@@ -2,12 +2,12 @@ import { Component, ChangeDetectionStrategy } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export class CardHeaderLinearComponent {
|
|
4
4
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderLinearComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CardHeaderLinearComponent, selector: "card-header-linear", host: { classAttribute: "card-header-linear d-flex" }, ngImport: i0, template: "<ng-content select=\"card-title\"></ng-content>", styles: [""], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CardHeaderLinearComponent, isStandalone: true, selector: "card-header-linear", host: { classAttribute: "card-header-linear d-flex" }, ngImport: i0, template: "<ng-content select=\"card-title\"></ng-content>", styles: [""], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6
6
|
}
|
|
7
7
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderLinearComponent, decorators: [{
|
|
8
8
|
type: Component,
|
|
9
9
|
args: [{ selector: 'card-header-linear', host: {
|
|
10
10
|
class: 'card-header-linear d-flex'
|
|
11
|
-
}, changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-content select=\"card-title\"></ng-content>" }]
|
|
11
|
+
}, changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, template: "<ng-content select=\"card-title\"></ng-content>" }]
|
|
12
12
|
}] });
|
|
13
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
13
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FyZC1oZWFkZXItbGluZWFyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NyYWZ0c2pzL2NhcmQvc3JjL2xpYi9jb21wb25lbnRzL2NhcmQtaGVhZGVyL2NvbXBvbmVudHMvY2FyZC1oZWFkZXItbGluZWFyL2NhcmQtaGVhZGVyLWxpbmVhci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jcmFmdHNqcy9jYXJkL3NyYy9saWIvY29tcG9uZW50cy9jYXJkLWhlYWRlci9jb21wb25lbnRzL2NhcmQtaGVhZGVyLWxpbmVhci9jYXJkLWhlYWRlci1saW5lYXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSx1QkFBdUIsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFZbkUsTUFBTSxPQUFPLHlCQUF5QjsrR0FBekIseUJBQXlCO21HQUF6Qix5QkFBeUIscUlDWnRDLGlEQUE2Qzs7NEZEWWhDLHlCQUF5QjtrQkFWckMsU0FBUzsrQkFDSSxvQkFBb0IsUUFHeEI7d0JBQ0YsS0FBSyxFQUFFLDJCQUEyQjtxQkFDckMsbUJBQ2dCLHVCQUF1QixDQUFDLE1BQU0sY0FDbkMsSUFBSSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gICAgc2VsZWN0b3I6ICdjYXJkLWhlYWRlci1saW5lYXInLFxyXG4gICAgdGVtcGxhdGVVcmw6ICcuL2NhcmQtaGVhZGVyLWxpbmVhci5jb21wb25lbnQuaHRtbCcsXHJcbiAgICBzdHlsZVVybHM6IFsnLi9jYXJkLWhlYWRlci1saW5lYXIuY29tcG9uZW50LnNjc3MnXSxcclxuICAgIGhvc3Q6IHtcclxuICAgICAgICBjbGFzczogJ2NhcmQtaGVhZGVyLWxpbmVhciBkLWZsZXgnXHJcbiAgICB9LFxyXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXHJcbiAgICBzdGFuZGFsb25lOiB0cnVlXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBDYXJkSGVhZGVyTGluZWFyQ29tcG9uZW50IHsgfVxyXG4iLCI8bmctY29udGVudCBzZWxlY3Q9XCJjYXJkLXRpdGxlXCI+PC9uZy1jb250ZW50PiJdfQ==
|
|
@@ -12,12 +12,12 @@ export class CardHeaderOvalComponent extends _CardHeaderOvalMixinBase {
|
|
|
12
12
|
super(_elementRef);
|
|
13
13
|
}
|
|
14
14
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderOvalComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
15
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CardHeaderOvalComponent, selector: "card-header-oval", inputs: { color: "color" }, host: { classAttribute: "card-header-oval d-flex" }, usesInheritance: true, ngImport: i0, template: "<ng-content select=\"card-title\"></ng-content>", styles: [""], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
15
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CardHeaderOvalComponent, isStandalone: true, selector: "card-header-oval", inputs: { color: "color" }, host: { classAttribute: "card-header-oval d-flex" }, usesInheritance: true, ngImport: i0, template: "<ng-content select=\"card-title\"></ng-content>", styles: [""], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
16
16
|
}
|
|
17
17
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderOvalComponent, decorators: [{
|
|
18
18
|
type: Component,
|
|
19
19
|
args: [{ selector: 'card-header-oval', host: {
|
|
20
20
|
class: 'card-header-oval d-flex'
|
|
21
|
-
}, inputs: ['color'], changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-content select=\"card-title\"></ng-content>" }]
|
|
21
|
+
}, inputs: ['color'], changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, template: "<ng-content select=\"card-title\"></ng-content>" }]
|
|
22
22
|
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
23
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FyZC1oZWFkZXItb3ZhbC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jcmFmdHNqcy9jYXJkL3NyYy9saWIvY29tcG9uZW50cy9jYXJkLWhlYWRlci9jb21wb25lbnRzL2NhcmQtaGVhZGVyLW92YWwvY2FyZC1oZWFkZXItb3ZhbC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jcmFmdHNqcy9jYXJkL3NyYy9saWIvY29tcG9uZW50cy9jYXJkLWhlYWRlci9jb21wb25lbnRzL2NhcmQtaGVhZGVyLW92YWwvY2FyZC1oZWFkZXItb3ZhbC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFjLHVCQUF1QixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQy9FLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQzs7QUFFdEQsTUFBTSxPQUFPLGtCQUFrQjtJQUM3QixZQUFtQixXQUF1QjtRQUF2QixnQkFBVyxHQUFYLFdBQVcsQ0FBWTtJQUFJLENBQUM7Q0FDaEQ7QUFFRCxNQUFNLENBQUMsTUFBTSx3QkFBd0IsR0FFbkMsVUFBVSxDQUFDLGtCQUFrQixDQUFDLENBQUM7QUFhakMsTUFBTSxPQUFPLHVCQUF3QixTQUFRLHdCQUF3QjtJQUVuRSxZQUFZLFdBQXVCO1FBQ2pDLEtBQUssQ0FBQyxXQUFXLENBQUMsQ0FBQztJQUNyQixDQUFDOytHQUpVLHVCQUF1QjttR0FBdkIsdUJBQXVCLG9MQ3RCcEMsaURBQTZDOzs0RkRzQmhDLHVCQUF1QjtrQkFYbkMsU0FBUzsrQkFDSSxrQkFBa0IsUUFHdEI7d0JBQ0YsS0FBSyxFQUFFLHlCQUF5QjtxQkFDbkMsVUFDTyxDQUFDLE9BQU8sQ0FBQyxtQkFDQSx1QkFBdUIsQ0FBQyxNQUFNLGNBQ25DLElBQUkiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEVsZW1lbnRSZWYsIENoYW5nZURldGVjdGlvblN0cmF0ZWd5IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IG1peGluQ29sb3IgfSBmcm9tICcuLi8uLi8uLi8uLi9taXhpbnMvY29sb3InO1xyXG5cclxuZXhwb3J0IGNsYXNzIENhcmRIZWFkZXJPdmFsQmFzZSB7XHJcbiAgY29uc3RydWN0b3IocHVibGljIF9lbGVtZW50UmVmOiBFbGVtZW50UmVmKSB7IH1cclxufVxyXG5cclxuZXhwb3J0IGNvbnN0IF9DYXJkSGVhZGVyT3ZhbE1peGluQmFzZTpcclxuICB0eXBlb2YgQ2FyZEhlYWRlck92YWxCYXNlID1cclxuICBtaXhpbkNvbG9yKENhcmRIZWFkZXJPdmFsQmFzZSk7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICAgIHNlbGVjdG9yOiAnY2FyZC1oZWFkZXItb3ZhbCcsXHJcbiAgICB0ZW1wbGF0ZVVybDogJy4vY2FyZC1oZWFkZXItb3ZhbC5jb21wb25lbnQuaHRtbCcsXHJcbiAgICBzdHlsZVVybHM6IFsnLi9jYXJkLWhlYWRlci1vdmFsLmNvbXBvbmVudC5zY3NzJ10sXHJcbiAgICBob3N0OiB7XHJcbiAgICAgICAgY2xhc3M6ICdjYXJkLWhlYWRlci1vdmFsIGQtZmxleCdcclxuICAgIH0sXHJcbiAgICBpbnB1dHM6IFsnY29sb3InXSxcclxuICAgIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxyXG4gICAgc3RhbmRhbG9uZTogdHJ1ZVxyXG59KVxyXG5leHBvcnQgY2xhc3MgQ2FyZEhlYWRlck92YWxDb21wb25lbnQgZXh0ZW5kcyBfQ2FyZEhlYWRlck92YWxNaXhpbkJhc2Uge1xyXG5cclxuICBjb25zdHJ1Y3RvcihfZWxlbWVudFJlZjogRWxlbWVudFJlZikge1xyXG4gICAgc3VwZXIoX2VsZW1lbnRSZWYpO1xyXG4gIH1cclxuXHJcbn1cclxuIiwiPG5nLWNvbnRlbnQgc2VsZWN0PVwiY2FyZC10aXRsZVwiPjwvbmctY29udGVudD4iXX0=
|
|
@@ -2,13 +2,14 @@ import { Directive } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export class CardBodyDirective {
|
|
4
4
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardBodyDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardBodyDirective, selector: "card-body, [card-body], [craftsjsCardBody]", host: { classAttribute: "card-body" }, ngImport: i0 }); }
|
|
5
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardBodyDirective, isStandalone: true, selector: "card-body, [card-body], [craftsjsCardBody]", host: { classAttribute: "card-body" }, ngImport: i0 }); }
|
|
6
6
|
}
|
|
7
7
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardBodyDirective, decorators: [{
|
|
8
8
|
type: Directive,
|
|
9
9
|
args: [{
|
|
10
10
|
selector: 'card-body, [card-body], [craftsjsCardBody]',
|
|
11
|
-
host: { class: 'card-body' }
|
|
11
|
+
host: { class: 'card-body' },
|
|
12
|
+
standalone: true
|
|
12
13
|
}]
|
|
13
14
|
}] });
|
|
14
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
15
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FyZC1ib2R5LmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NyYWZ0c2pzL2NhcmQvc3JjL2xpYi9kaXJlY3RpdmVzL2NhcmQtYm9keS5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFPMUMsTUFBTSxPQUFPLGlCQUFpQjsrR0FBakIsaUJBQWlCO21HQUFqQixpQkFBaUI7OzRGQUFqQixpQkFBaUI7a0JBTDdCLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLDRDQUE0QztvQkFDdEQsSUFBSSxFQUFFLEVBQUUsS0FBSyxFQUFFLFdBQVcsRUFBRTtvQkFDNUIsVUFBVSxFQUFFLElBQUk7aUJBQ25CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5ARGlyZWN0aXZlKHtcclxuICAgIHNlbGVjdG9yOiAnY2FyZC1ib2R5LCBbY2FyZC1ib2R5XSwgW2NyYWZ0c2pzQ2FyZEJvZHldJyxcclxuICAgIGhvc3Q6IHsgY2xhc3M6ICdjYXJkLWJvZHknIH0sXHJcbiAgICBzdGFuZGFsb25lOiB0cnVlXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBDYXJkQm9keURpcmVjdGl2ZSB7IH1cclxuIl19
|
|
@@ -2,7 +2,7 @@ import { Directive } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export class CardDividerDirective {
|
|
4
4
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardDividerDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardDividerDirective, selector: "card-divider, [card-divider], [craftsjsCardDivider]", host: { classAttribute: "card-divider" }, ngImport: i0 }); }
|
|
5
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardDividerDirective, isStandalone: true, selector: "card-divider, [card-divider], [craftsjsCardDivider]", host: { classAttribute: "card-divider" }, ngImport: i0 }); }
|
|
6
6
|
}
|
|
7
7
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardDividerDirective, decorators: [{
|
|
8
8
|
type: Directive,
|
|
@@ -10,7 +10,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
10
10
|
selector: 'card-divider, [card-divider], [craftsjsCardDivider]',
|
|
11
11
|
host: {
|
|
12
12
|
class: 'card-divider'
|
|
13
|
-
}
|
|
13
|
+
},
|
|
14
|
+
standalone: true
|
|
14
15
|
}]
|
|
15
16
|
}] });
|
|
16
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FyZC1kaXZpZGVyLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NyYWZ0c2pzL2NhcmQvc3JjL2xpYi9kaXJlY3RpdmVzL2NhcmQtZGl2aWRlci5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFTMUMsTUFBTSxPQUFPLG9CQUFvQjsrR0FBcEIsb0JBQW9CO21HQUFwQixvQkFBb0I7OzRGQUFwQixvQkFBb0I7a0JBUGhDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLHFEQUFxRDtvQkFDL0QsSUFBSSxFQUFFO3dCQUNGLEtBQUssRUFBRSxjQUFjO3FCQUN4QjtvQkFDRCxVQUFVLEVBQUUsSUFBSTtpQkFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbkBEaXJlY3RpdmUoe1xyXG4gICAgc2VsZWN0b3I6ICdjYXJkLWRpdmlkZXIsIFtjYXJkLWRpdmlkZXJdLCBbY3JhZnRzanNDYXJkRGl2aWRlcl0nLFxyXG4gICAgaG9zdDoge1xyXG4gICAgICAgIGNsYXNzOiAnY2FyZC1kaXZpZGVyJ1xyXG4gICAgfSxcclxuICAgIHN0YW5kYWxvbmU6IHRydWVcclxufSlcclxuZXhwb3J0IGNsYXNzIENhcmREaXZpZGVyRGlyZWN0aXZlIHsgfVxyXG4iXX0=
|
|
@@ -2,13 +2,14 @@ import { Directive } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export class CardFooterDirective {
|
|
4
4
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardFooterDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardFooterDirective, selector: "card-footer, [card-footer], [craftsjsCardFooter]", host: { classAttribute: "card-footer" }, ngImport: i0 }); }
|
|
5
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardFooterDirective, isStandalone: true, selector: "card-footer, [card-footer], [craftsjsCardFooter]", host: { classAttribute: "card-footer" }, ngImport: i0 }); }
|
|
6
6
|
}
|
|
7
7
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardFooterDirective, decorators: [{
|
|
8
8
|
type: Directive,
|
|
9
9
|
args: [{
|
|
10
10
|
selector: 'card-footer, [card-footer], [craftsjsCardFooter]',
|
|
11
|
-
host: { class: 'card-footer' }
|
|
11
|
+
host: { class: 'card-footer' },
|
|
12
|
+
standalone: true
|
|
12
13
|
}]
|
|
13
14
|
}] });
|
|
14
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
15
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FyZC1mb290ZXIuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY3JhZnRzanMvY2FyZC9zcmMvbGliL2RpcmVjdGl2ZXMvY2FyZC1mb290ZXIuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBTzFDLE1BQU0sT0FBTyxtQkFBbUI7K0dBQW5CLG1CQUFtQjttR0FBbkIsbUJBQW1COzs0RkFBbkIsbUJBQW1CO2tCQUwvQixTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxrREFBa0Q7b0JBQzVELElBQUksRUFBRSxFQUFFLEtBQUssRUFBRSxhQUFhLEVBQUU7b0JBQzlCLFVBQVUsRUFBRSxJQUFJO2lCQUNuQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuQERpcmVjdGl2ZSh7XHJcbiAgICBzZWxlY3RvcjogJ2NhcmQtZm9vdGVyLCBbY2FyZC1mb290ZXJdLCBbY3JhZnRzanNDYXJkRm9vdGVyXScsXHJcbiAgICBob3N0OiB7IGNsYXNzOiAnY2FyZC1mb290ZXInIH0sXHJcbiAgICBzdGFuZGFsb25lOiB0cnVlXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBDYXJkRm9vdGVyRGlyZWN0aXZlIHsgfVxyXG4iXX0=
|
|
@@ -2,7 +2,7 @@ import { Directive } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export class CardHeaderMarkDirective {
|
|
4
4
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderMarkDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardHeaderMarkDirective, selector: "card-header-mark, [card-header-mark], [craftsjsCardHeaderMark]", host: { classAttribute: "card-header-subtitle-mark" }, ngImport: i0 }); }
|
|
5
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardHeaderMarkDirective, isStandalone: true, selector: "card-header-mark, [card-header-mark], [craftsjsCardHeaderMark]", host: { classAttribute: "card-header-subtitle-mark" }, ngImport: i0 }); }
|
|
6
6
|
}
|
|
7
7
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderMarkDirective, decorators: [{
|
|
8
8
|
type: Directive,
|
|
@@ -10,7 +10,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
10
10
|
selector: 'card-header-mark, [card-header-mark], [craftsjsCardHeaderMark]',
|
|
11
11
|
host: {
|
|
12
12
|
class: 'card-header-subtitle-mark'
|
|
13
|
-
}
|
|
13
|
+
},
|
|
14
|
+
standalone: true
|
|
14
15
|
}]
|
|
15
16
|
}] });
|
|
16
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FyZC1oZWFkZXItbWFyay5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jcmFmdHNqcy9jYXJkL3NyYy9saWIvZGlyZWN0aXZlcy9jYXJkLWhlYWRlci1tYXJrLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQVMxQyxNQUFNLE9BQU8sdUJBQXVCOytHQUF2Qix1QkFBdUI7bUdBQXZCLHVCQUF1Qjs7NEZBQXZCLHVCQUF1QjtrQkFQbkMsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsZ0VBQWdFO29CQUMxRSxJQUFJLEVBQUU7d0JBQ0YsS0FBSyxFQUFFLDJCQUEyQjtxQkFDckM7b0JBQ0QsVUFBVSxFQUFFLElBQUk7aUJBQ25CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5ARGlyZWN0aXZlKHtcclxuICAgIHNlbGVjdG9yOiAnY2FyZC1oZWFkZXItbWFyaywgW2NhcmQtaGVhZGVyLW1hcmtdLCBbY3JhZnRzanNDYXJkSGVhZGVyTWFya10nLFxyXG4gICAgaG9zdDoge1xyXG4gICAgICAgIGNsYXNzOiAnY2FyZC1oZWFkZXItc3VidGl0bGUtbWFyaydcclxuICAgIH0sXHJcbiAgICBzdGFuZGFsb25lOiB0cnVlXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBDYXJkSGVhZGVyTWFya0RpcmVjdGl2ZSB7IH1cclxuIl19
|
|
@@ -2,7 +2,7 @@ import { Directive } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export class CardHeaderSubtitleDirective {
|
|
4
4
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderSubtitleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardHeaderSubtitleDirective, selector: "card-header-subtitle, [card-header-subtitle], [craftsjsCardHeaderSubtitle]", host: { classAttribute: "card-header-subtitle" }, ngImport: i0 }); }
|
|
5
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardHeaderSubtitleDirective, isStandalone: true, selector: "card-header-subtitle, [card-header-subtitle], [craftsjsCardHeaderSubtitle]", host: { classAttribute: "card-header-subtitle" }, ngImport: i0 }); }
|
|
6
6
|
}
|
|
7
7
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderSubtitleDirective, decorators: [{
|
|
8
8
|
type: Directive,
|
|
@@ -10,7 +10,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
10
10
|
selector: 'card-header-subtitle, [card-header-subtitle], [craftsjsCardHeaderSubtitle]',
|
|
11
11
|
host: {
|
|
12
12
|
class: 'card-header-subtitle'
|
|
13
|
-
}
|
|
13
|
+
},
|
|
14
|
+
standalone: true
|
|
14
15
|
}]
|
|
15
16
|
}] });
|
|
16
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FyZC1oZWFkZXItc3VidGl0bGUuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY3JhZnRzanMvY2FyZC9zcmMvbGliL2RpcmVjdGl2ZXMvY2FyZC1oZWFkZXItc3VidGl0bGUuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBUzFDLE1BQU0sT0FBTywyQkFBMkI7K0dBQTNCLDJCQUEyQjttR0FBM0IsMkJBQTJCOzs0RkFBM0IsMkJBQTJCO2tCQVB2QyxTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSw0RUFBNEU7b0JBQ3RGLElBQUksRUFBRTt3QkFDRixLQUFLLEVBQUUsc0JBQXNCO3FCQUNoQztvQkFDRCxVQUFVLEVBQUUsSUFBSTtpQkFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbkBEaXJlY3RpdmUoe1xyXG4gICAgc2VsZWN0b3I6ICdjYXJkLWhlYWRlci1zdWJ0aXRsZSwgW2NhcmQtaGVhZGVyLXN1YnRpdGxlXSwgW2NyYWZ0c2pzQ2FyZEhlYWRlclN1YnRpdGxlXScsXHJcbiAgICBob3N0OiB7XHJcbiAgICAgICAgY2xhc3M6ICdjYXJkLWhlYWRlci1zdWJ0aXRsZSdcclxuICAgIH0sXHJcbiAgICBzdGFuZGFsb25lOiB0cnVlXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBDYXJkSGVhZGVyU3VidGl0bGVEaXJlY3RpdmUgeyB9XHJcbiJdfQ==
|
|
@@ -2,13 +2,14 @@ import { Directive } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export class CardTitleDirective {
|
|
4
4
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardTitleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardTitleDirective, selector: "card-title, [card-title], [craftsjsCardTitle]", host: { classAttribute: "card-header-title" }, ngImport: i0 }); }
|
|
5
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardTitleDirective, isStandalone: true, selector: "card-title, [card-title], [craftsjsCardTitle]", host: { classAttribute: "card-header-title" }, ngImport: i0 }); }
|
|
6
6
|
}
|
|
7
7
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardTitleDirective, decorators: [{
|
|
8
8
|
type: Directive,
|
|
9
9
|
args: [{
|
|
10
10
|
selector: 'card-title, [card-title], [craftsjsCardTitle]',
|
|
11
|
-
host: { class: 'card-header-title' }
|
|
11
|
+
host: { class: 'card-header-title' },
|
|
12
|
+
standalone: true
|
|
12
13
|
}]
|
|
13
14
|
}] });
|
|
14
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
15
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FyZC10aXRsZS5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jcmFmdHNqcy9jYXJkL3NyYy9saWIvZGlyZWN0aXZlcy9jYXJkLXRpdGxlLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQU8xQyxNQUFNLE9BQU8sa0JBQWtCOytHQUFsQixrQkFBa0I7bUdBQWxCLGtCQUFrQjs7NEZBQWxCLGtCQUFrQjtrQkFMOUIsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsK0NBQStDO29CQUN6RCxJQUFJLEVBQUUsRUFBRSxLQUFLLEVBQUUsbUJBQW1CLEVBQUU7b0JBQ3BDLFVBQVUsRUFBRSxJQUFJO2lCQUNuQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuQERpcmVjdGl2ZSh7XHJcbiAgICBzZWxlY3RvcjogJ2NhcmQtdGl0bGUsIFtjYXJkLXRpdGxlXSwgW2NyYWZ0c2pzQ2FyZFRpdGxlXScsXHJcbiAgICBob3N0OiB7IGNsYXNzOiAnY2FyZC1oZWFkZXItdGl0bGUnIH0sXHJcbiAgICBzdGFuZGFsb25lOiB0cnVlXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBDYXJkVGl0bGVEaXJlY3RpdmUgeyB9XHJcbiJdfQ==
|
package/esm2022/public-api.mjs
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
export * from './lib/card.module';
|
|
2
1
|
export * from './lib/card.component';
|
|
3
2
|
export * from './lib/components/card-header/card-header.component';
|
|
4
3
|
export * from './lib/components/card-header/components/card-header-linear/card-header-linear.component';
|
|
@@ -10,4 +9,5 @@ export * from './lib/directives/card-header-mark.directive';
|
|
|
10
9
|
export * from './lib/directives/card-header-subtitle.directive';
|
|
11
10
|
export * from './lib/directives/card-title.directive';
|
|
12
11
|
export * from './lib/mixins/color';
|
|
13
|
-
|
|
12
|
+
export * from './lib/card.module';
|
|
13
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2NyYWZ0c2pzL2NhcmQvc3JjL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLG9EQUFvRCxDQUFDO0FBQ25FLGNBQWMseUZBQXlGLENBQUM7QUFDeEcsY0FBYyxxRkFBcUYsQ0FBQztBQUNwRyxjQUFjLHNDQUFzQyxDQUFDO0FBQ3JELGNBQWMseUNBQXlDLENBQUM7QUFDeEQsY0FBYyx3Q0FBd0MsQ0FBQztBQUN2RCxjQUFjLDZDQUE2QyxDQUFDO0FBQzVELGNBQWMsaURBQWlELENBQUM7QUFDaEUsY0FBYyx1Q0FBdUMsQ0FBQztBQUN0RCxjQUFjLG9CQUFvQixDQUFDO0FBQ25DLGNBQWMsbUJBQW1CLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY2FyZC5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NhcmQtaGVhZGVyL2NhcmQtaGVhZGVyLmNvbXBvbmVudCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2FyZC1oZWFkZXIvY29tcG9uZW50cy9jYXJkLWhlYWRlci1saW5lYXIvY2FyZC1oZWFkZXItbGluZWFyLmNvbXBvbmVudCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2FyZC1oZWFkZXIvY29tcG9uZW50cy9jYXJkLWhlYWRlci1vdmFsL2NhcmQtaGVhZGVyLW92YWwuY29tcG9uZW50JztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvZGlyZWN0aXZlcy9jYXJkLWJvZHkuZGlyZWN0aXZlJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvZGlyZWN0aXZlcy9jYXJkLWRpdmlkZXIuZGlyZWN0aXZlJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvZGlyZWN0aXZlcy9jYXJkLWZvb3Rlci5kaXJlY3RpdmUnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9kaXJlY3RpdmVzL2NhcmQtaGVhZGVyLW1hcmsuZGlyZWN0aXZlJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvZGlyZWN0aXZlcy9jYXJkLWhlYWRlci1zdWJ0aXRsZS5kaXJlY3RpdmUnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9kaXJlY3RpdmVzL2NhcmQtdGl0bGUuZGlyZWN0aXZlJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvbWl4aW5zL2NvbG9yJztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY2FyZC5tb2R1bGUnO1xyXG4iXX0=
|
|
@@ -1,68 +1,98 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { ChangeDetectionStrategy, ViewEncapsulation, Component, Input, Directive, NgModule } from '@angular/core';
|
|
3
|
-
import { CommonModule } from '@angular/common';
|
|
4
3
|
|
|
5
4
|
class CardComponent {
|
|
6
5
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CardComponent, selector: "craftsjs-card", host: { classAttribute: "card" }, ngImport: i0, template: "<ng-content></ng-content>\r\n<ng-content select=\"card-footer\"></ng-content>", changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
6
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CardComponent, isStandalone: true, selector: "craftsjs-card", host: { classAttribute: "card" }, ngImport: i0, template: "<ng-content></ng-content>\r\n<ng-content select=\"card-footer\"></ng-content>", changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
8
7
|
}
|
|
9
8
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardComponent, decorators: [{
|
|
10
9
|
type: Component,
|
|
11
|
-
args: [{ selector: 'craftsjs-card', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, host: { class: 'card' }, template: "<ng-content></ng-content>\r\n<ng-content select=\"card-footer\"></ng-content>" }]
|
|
10
|
+
args: [{ selector: 'craftsjs-card', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, host: { class: 'card' }, standalone: true, template: "<ng-content></ng-content>\r\n<ng-content select=\"card-footer\"></ng-content>" }]
|
|
12
11
|
}] });
|
|
13
12
|
|
|
14
13
|
class CardHeaderComponent {
|
|
15
14
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
16
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CardHeaderComponent, selector: "card-header", inputs: { color: "color", classHeaderTitle: "classHeaderTitle" }, host: { classAttribute: "d-flex flex-row flex-wrap card-header" }, ngImport: i0, template: "<ng-content select=\"card-header-oval\"></ng-content>\r\n<ng-content select=\"card-header-linear\"></ng-content>\r\n<div class=\"card-header-subtitle d-flex flex-column\">\r\n <ng-content select=\"card-header-mark\"></ng-content>\r\n <ng-content select=\"card-header-subtitle\"></ng-content>\r\n</div>", changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
15
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CardHeaderComponent, isStandalone: true, selector: "card-header", inputs: { color: "color", classHeaderTitle: "classHeaderTitle" }, host: { classAttribute: "d-flex flex-row flex-wrap card-header" }, ngImport: i0, template: "<ng-content select=\"card-header-oval\"></ng-content>\r\n<ng-content select=\"card-header-linear\"></ng-content>\r\n<div class=\"card-header-subtitle d-flex flex-column\">\r\n <ng-content select=\"card-header-mark\"></ng-content>\r\n <ng-content select=\"card-header-subtitle\"></ng-content>\r\n</div>", changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
17
16
|
}
|
|
18
17
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderComponent, decorators: [{
|
|
19
18
|
type: Component,
|
|
20
19
|
args: [{ selector: 'card-header', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, inputs: ['color'], host: {
|
|
21
20
|
class: 'd-flex flex-row flex-wrap card-header'
|
|
22
|
-
}, template: "<ng-content select=\"card-header-oval\"></ng-content>\r\n<ng-content select=\"card-header-linear\"></ng-content>\r\n<div class=\"card-header-subtitle d-flex flex-column\">\r\n <ng-content select=\"card-header-mark\"></ng-content>\r\n <ng-content select=\"card-header-subtitle\"></ng-content>\r\n</div>" }]
|
|
21
|
+
}, standalone: true, template: "<ng-content select=\"card-header-oval\"></ng-content>\r\n<ng-content select=\"card-header-linear\"></ng-content>\r\n<div class=\"card-header-subtitle d-flex flex-column\">\r\n <ng-content select=\"card-header-mark\"></ng-content>\r\n <ng-content select=\"card-header-subtitle\"></ng-content>\r\n</div>" }]
|
|
23
22
|
}], propDecorators: { classHeaderTitle: [{
|
|
24
23
|
type: Input
|
|
25
24
|
}] } });
|
|
26
25
|
|
|
27
|
-
class
|
|
28
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type:
|
|
29
|
-
static { this.ɵ
|
|
26
|
+
class CardHeaderLinearComponent {
|
|
27
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderLinearComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
28
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CardHeaderLinearComponent, isStandalone: true, selector: "card-header-linear", host: { classAttribute: "card-header-linear d-flex" }, ngImport: i0, template: "<ng-content select=\"card-title\"></ng-content>", styles: [""], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
30
29
|
}
|
|
31
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type:
|
|
32
|
-
type:
|
|
33
|
-
args: [{
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}]
|
|
30
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderLinearComponent, decorators: [{
|
|
31
|
+
type: Component,
|
|
32
|
+
args: [{ selector: 'card-header-linear', host: {
|
|
33
|
+
class: 'card-header-linear d-flex'
|
|
34
|
+
}, changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, template: "<ng-content select=\"card-title\"></ng-content>" }]
|
|
37
35
|
}] });
|
|
38
36
|
|
|
37
|
+
function mixinColor(base, defaultColor) {
|
|
38
|
+
return class extends base {
|
|
39
|
+
get color() { return this._color; }
|
|
40
|
+
set color(value) {
|
|
41
|
+
const colorPalette = value || defaultColor;
|
|
42
|
+
if (colorPalette !== this._color) {
|
|
43
|
+
if (this._color) {
|
|
44
|
+
this._elementRef.nativeElement.classList.remove(`${this._color}`);
|
|
45
|
+
}
|
|
46
|
+
if (colorPalette) {
|
|
47
|
+
this._elementRef.nativeElement.classList.add(`${colorPalette}`);
|
|
48
|
+
}
|
|
49
|
+
this._color = colorPalette;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
constructor(...args) {
|
|
53
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
|
|
54
|
+
super(...args);
|
|
55
|
+
this.color = defaultColor;
|
|
56
|
+
}
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
class CardHeaderOvalBase {
|
|
61
|
+
constructor(_elementRef) {
|
|
62
|
+
this._elementRef = _elementRef;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
const _CardHeaderOvalMixinBase = mixinColor(CardHeaderOvalBase);
|
|
66
|
+
class CardHeaderOvalComponent extends _CardHeaderOvalMixinBase {
|
|
67
|
+
constructor(_elementRef) {
|
|
68
|
+
super(_elementRef);
|
|
69
|
+
}
|
|
70
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderOvalComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
71
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CardHeaderOvalComponent, isStandalone: true, selector: "card-header-oval", inputs: { color: "color" }, host: { classAttribute: "card-header-oval d-flex" }, usesInheritance: true, ngImport: i0, template: "<ng-content select=\"card-title\"></ng-content>", styles: [""], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
72
|
+
}
|
|
73
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderOvalComponent, decorators: [{
|
|
74
|
+
type: Component,
|
|
75
|
+
args: [{ selector: 'card-header-oval', host: {
|
|
76
|
+
class: 'card-header-oval d-flex'
|
|
77
|
+
}, inputs: ['color'], changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, template: "<ng-content select=\"card-title\"></ng-content>" }]
|
|
78
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
79
|
+
|
|
39
80
|
class CardBodyDirective {
|
|
40
81
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardBodyDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
41
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardBodyDirective, selector: "card-body, [card-body], [craftsjsCardBody]", host: { classAttribute: "card-body" }, ngImport: i0 }); }
|
|
82
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardBodyDirective, isStandalone: true, selector: "card-body, [card-body], [craftsjsCardBody]", host: { classAttribute: "card-body" }, ngImport: i0 }); }
|
|
42
83
|
}
|
|
43
84
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardBodyDirective, decorators: [{
|
|
44
85
|
type: Directive,
|
|
45
86
|
args: [{
|
|
46
87
|
selector: 'card-body, [card-body], [craftsjsCardBody]',
|
|
47
|
-
host: { class: 'card-body' }
|
|
48
|
-
|
|
49
|
-
}] });
|
|
50
|
-
|
|
51
|
-
class CardFooterDirective {
|
|
52
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardFooterDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
53
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardFooterDirective, selector: "card-footer, [card-footer], [craftsjsCardFooter]", host: { classAttribute: "card-footer" }, ngImport: i0 }); }
|
|
54
|
-
}
|
|
55
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardFooterDirective, decorators: [{
|
|
56
|
-
type: Directive,
|
|
57
|
-
args: [{
|
|
58
|
-
selector: 'card-footer, [card-footer], [craftsjsCardFooter]',
|
|
59
|
-
host: { class: 'card-footer' }
|
|
88
|
+
host: { class: 'card-body' },
|
|
89
|
+
standalone: true
|
|
60
90
|
}]
|
|
61
91
|
}] });
|
|
62
92
|
|
|
63
93
|
class CardDividerDirective {
|
|
64
94
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardDividerDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
65
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardDividerDirective, selector: "card-divider, [card-divider], [craftsjsCardDivider]", host: { classAttribute: "card-divider" }, ngImport: i0 }); }
|
|
95
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardDividerDirective, isStandalone: true, selector: "card-divider, [card-divider], [craftsjsCardDivider]", host: { classAttribute: "card-divider" }, ngImport: i0 }); }
|
|
66
96
|
}
|
|
67
97
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardDividerDirective, decorators: [{
|
|
68
98
|
type: Directive,
|
|
@@ -70,13 +100,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
70
100
|
selector: 'card-divider, [card-divider], [craftsjsCardDivider]',
|
|
71
101
|
host: {
|
|
72
102
|
class: 'card-divider'
|
|
73
|
-
}
|
|
103
|
+
},
|
|
104
|
+
standalone: true
|
|
105
|
+
}]
|
|
106
|
+
}] });
|
|
107
|
+
|
|
108
|
+
class CardFooterDirective {
|
|
109
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardFooterDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
110
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardFooterDirective, isStandalone: true, selector: "card-footer, [card-footer], [craftsjsCardFooter]", host: { classAttribute: "card-footer" }, ngImport: i0 }); }
|
|
111
|
+
}
|
|
112
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardFooterDirective, decorators: [{
|
|
113
|
+
type: Directive,
|
|
114
|
+
args: [{
|
|
115
|
+
selector: 'card-footer, [card-footer], [craftsjsCardFooter]',
|
|
116
|
+
host: { class: 'card-footer' },
|
|
117
|
+
standalone: true
|
|
74
118
|
}]
|
|
75
119
|
}] });
|
|
76
120
|
|
|
77
121
|
class CardHeaderMarkDirective {
|
|
78
122
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderMarkDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
79
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardHeaderMarkDirective, selector: "card-header-mark, [card-header-mark], [craftsjsCardHeaderMark]", host: { classAttribute: "card-header-subtitle-mark" }, ngImport: i0 }); }
|
|
123
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardHeaderMarkDirective, isStandalone: true, selector: "card-header-mark, [card-header-mark], [craftsjsCardHeaderMark]", host: { classAttribute: "card-header-subtitle-mark" }, ngImport: i0 }); }
|
|
80
124
|
}
|
|
81
125
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderMarkDirective, decorators: [{
|
|
82
126
|
type: Directive,
|
|
@@ -84,13 +128,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
84
128
|
selector: 'card-header-mark, [card-header-mark], [craftsjsCardHeaderMark]',
|
|
85
129
|
host: {
|
|
86
130
|
class: 'card-header-subtitle-mark'
|
|
87
|
-
}
|
|
131
|
+
},
|
|
132
|
+
standalone: true
|
|
88
133
|
}]
|
|
89
134
|
}] });
|
|
90
135
|
|
|
91
136
|
class CardHeaderSubtitleDirective {
|
|
92
137
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderSubtitleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
93
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardHeaderSubtitleDirective, selector: "card-header-subtitle, [card-header-subtitle], [craftsjsCardHeaderSubtitle]", host: { classAttribute: "card-header-subtitle" }, ngImport: i0 }); }
|
|
138
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardHeaderSubtitleDirective, isStandalone: true, selector: "card-header-subtitle, [card-header-subtitle], [craftsjsCardHeaderSubtitle]", host: { classAttribute: "card-header-subtitle" }, ngImport: i0 }); }
|
|
94
139
|
}
|
|
95
140
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderSubtitleDirective, decorators: [{
|
|
96
141
|
type: Directive,
|
|
@@ -98,116 +143,73 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
98
143
|
selector: 'card-header-subtitle, [card-header-subtitle], [craftsjsCardHeaderSubtitle]',
|
|
99
144
|
host: {
|
|
100
145
|
class: 'card-header-subtitle'
|
|
101
|
-
}
|
|
146
|
+
},
|
|
147
|
+
standalone: true
|
|
102
148
|
}]
|
|
103
149
|
}] });
|
|
104
150
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
set color(value) {
|
|
109
|
-
const colorPalette = value || defaultColor;
|
|
110
|
-
if (colorPalette !== this._color) {
|
|
111
|
-
if (this._color) {
|
|
112
|
-
this._elementRef.nativeElement.classList.remove(`${this._color}`);
|
|
113
|
-
}
|
|
114
|
-
if (colorPalette) {
|
|
115
|
-
this._elementRef.nativeElement.classList.add(`${colorPalette}`);
|
|
116
|
-
}
|
|
117
|
-
this._color = colorPalette;
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
constructor(...args) {
|
|
121
|
-
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
|
|
122
|
-
super(...args);
|
|
123
|
-
this.color = defaultColor;
|
|
124
|
-
}
|
|
125
|
-
};
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
class CardHeaderOvalBase {
|
|
129
|
-
constructor(_elementRef) {
|
|
130
|
-
this._elementRef = _elementRef;
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
const _CardHeaderOvalMixinBase = mixinColor(CardHeaderOvalBase);
|
|
134
|
-
class CardHeaderOvalComponent extends _CardHeaderOvalMixinBase {
|
|
135
|
-
constructor(_elementRef) {
|
|
136
|
-
super(_elementRef);
|
|
137
|
-
}
|
|
138
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderOvalComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
139
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CardHeaderOvalComponent, selector: "card-header-oval", inputs: { color: "color" }, host: { classAttribute: "card-header-oval d-flex" }, usesInheritance: true, ngImport: i0, template: "<ng-content select=\"card-title\"></ng-content>", styles: [""], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
140
|
-
}
|
|
141
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderOvalComponent, decorators: [{
|
|
142
|
-
type: Component,
|
|
143
|
-
args: [{ selector: 'card-header-oval', host: {
|
|
144
|
-
class: 'card-header-oval d-flex'
|
|
145
|
-
}, inputs: ['color'], changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-content select=\"card-title\"></ng-content>" }]
|
|
146
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
147
|
-
|
|
148
|
-
class CardHeaderLinearComponent {
|
|
149
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardHeaderLinearComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
150
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CardHeaderLinearComponent, selector: "card-header-linear", host: { classAttribute: "card-header-linear d-flex" }, ngImport: i0, template: "<ng-content select=\"card-title\"></ng-content>", styles: [""], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
151
|
+
class CardTitleDirective {
|
|
152
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardTitleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
153
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: CardTitleDirective, isStandalone: true, selector: "card-title, [card-title], [craftsjsCardTitle]", host: { classAttribute: "card-header-title" }, ngImport: i0 }); }
|
|
151
154
|
}
|
|
152
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type:
|
|
153
|
-
type:
|
|
154
|
-
args: [{
|
|
155
|
-
|
|
156
|
-
|
|
155
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardTitleDirective, decorators: [{
|
|
156
|
+
type: Directive,
|
|
157
|
+
args: [{
|
|
158
|
+
selector: 'card-title, [card-title], [craftsjsCardTitle]',
|
|
159
|
+
host: { class: 'card-header-title' },
|
|
160
|
+
standalone: true
|
|
161
|
+
}]
|
|
157
162
|
}] });
|
|
158
163
|
|
|
159
164
|
class CardModule {
|
|
160
165
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
161
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: CardModule,
|
|
166
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: CardModule, imports: [CardComponent,
|
|
162
167
|
CardHeaderComponent,
|
|
163
|
-
|
|
168
|
+
CardHeaderLinearComponent,
|
|
169
|
+
CardHeaderOvalComponent,
|
|
164
170
|
CardBodyDirective,
|
|
165
|
-
CardFooterDirective,
|
|
166
171
|
CardDividerDirective,
|
|
172
|
+
CardFooterDirective,
|
|
167
173
|
CardHeaderMarkDirective,
|
|
168
174
|
CardHeaderSubtitleDirective,
|
|
169
|
-
|
|
170
|
-
CardHeaderLinearComponent], imports: [CommonModule], exports: [CardComponent,
|
|
175
|
+
CardTitleDirective], exports: [CardComponent,
|
|
171
176
|
CardHeaderComponent,
|
|
172
|
-
|
|
177
|
+
CardHeaderLinearComponent,
|
|
178
|
+
CardHeaderOvalComponent,
|
|
173
179
|
CardBodyDirective,
|
|
174
|
-
CardFooterDirective,
|
|
175
180
|
CardDividerDirective,
|
|
176
|
-
|
|
181
|
+
CardFooterDirective,
|
|
177
182
|
CardHeaderMarkDirective,
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardModule
|
|
183
|
+
CardHeaderSubtitleDirective,
|
|
184
|
+
CardTitleDirective] }); }
|
|
185
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardModule }); }
|
|
181
186
|
}
|
|
182
187
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CardModule, decorators: [{
|
|
183
188
|
type: NgModule,
|
|
184
189
|
args: [{
|
|
185
190
|
imports: [
|
|
186
|
-
CommonModule
|
|
187
|
-
],
|
|
188
|
-
declarations: [
|
|
189
191
|
CardComponent,
|
|
190
192
|
CardHeaderComponent,
|
|
191
|
-
|
|
193
|
+
CardHeaderLinearComponent,
|
|
194
|
+
CardHeaderOvalComponent,
|
|
192
195
|
CardBodyDirective,
|
|
193
|
-
CardFooterDirective,
|
|
194
196
|
CardDividerDirective,
|
|
197
|
+
CardFooterDirective,
|
|
195
198
|
CardHeaderMarkDirective,
|
|
196
199
|
CardHeaderSubtitleDirective,
|
|
197
|
-
|
|
198
|
-
CardHeaderLinearComponent
|
|
200
|
+
CardTitleDirective
|
|
199
201
|
],
|
|
200
202
|
exports: [
|
|
201
203
|
CardComponent,
|
|
202
204
|
CardHeaderComponent,
|
|
203
|
-
|
|
205
|
+
CardHeaderLinearComponent,
|
|
206
|
+
CardHeaderOvalComponent,
|
|
204
207
|
CardBodyDirective,
|
|
205
|
-
CardFooterDirective,
|
|
206
208
|
CardDividerDirective,
|
|
207
|
-
|
|
209
|
+
CardFooterDirective,
|
|
208
210
|
CardHeaderMarkDirective,
|
|
209
|
-
|
|
210
|
-
|
|
211
|
+
CardHeaderSubtitleDirective,
|
|
212
|
+
CardTitleDirective
|
|
211
213
|
]
|
|
212
214
|
}]
|
|
213
215
|
}] });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"craftsjs-card.mjs","sources":["../../../../projects/craftsjs/card/src/lib/card.component.ts","../../../../projects/craftsjs/card/src/lib/card.component.html","../../../../projects/craftsjs/card/src/lib/components/card-header/card-header.component.ts","../../../../projects/craftsjs/card/src/lib/components/card-header/card-header.component.html","../../../../projects/craftsjs/card/src/lib/directives/card-title.directive.ts","../../../../projects/craftsjs/card/src/lib/directives/card-body.directive.ts","../../../../projects/craftsjs/card/src/lib/directives/card-footer.directive.ts","../../../../projects/craftsjs/card/src/lib/directives/card-divider.directive.ts","../../../../projects/craftsjs/card/src/lib/directives/card-header-mark.directive.ts","../../../../projects/craftsjs/card/src/lib/directives/card-header-subtitle.directive.ts","../../../../projects/craftsjs/card/src/lib/mixins/color.ts","../../../../projects/craftsjs/card/src/lib/components/card-header/components/card-header-oval/card-header-oval.component.ts","../../../../projects/craftsjs/card/src/lib/components/card-header/components/card-header-oval/card-header-oval.component.html","../../../../projects/craftsjs/card/src/lib/components/card-header/components/card-header-linear/card-header-linear.component.ts","../../../../projects/craftsjs/card/src/lib/components/card-header/components/card-header-linear/card-header-linear.component.html","../../../../projects/craftsjs/card/src/lib/card.module.ts","../../../../projects/craftsjs/card/src/craftsjs-card.ts"],"sourcesContent":["import { Component, ViewEncapsulation, ChangeDetectionStrategy } from '@angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'craftsjs-card',\r\n templateUrl: './card.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n changeDetection: ChangeDetectionStrategy.OnPush,\r\n host: { class: 'card' }\r\n})\r\nexport class CardComponent { }\r\n","<ng-content></ng-content>\r\n<ng-content select=\"card-footer\"></ng-content>","import { Component, ViewEncapsulation, ChangeDetectionStrategy, Input } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'card-header',\r\n templateUrl: './card-header.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n changeDetection: ChangeDetectionStrategy.OnPush,\r\n inputs: ['color'],\r\n host: {\r\n class: 'd-flex flex-row flex-wrap card-header'\r\n }\r\n})\r\nexport class CardHeaderComponent {\r\n @Input()\r\n classHeaderTitle: string;\r\n}\r\n","<ng-content select=\"card-header-oval\"></ng-content>\r\n<ng-content select=\"card-header-linear\"></ng-content>\r\n<div class=\"card-header-subtitle d-flex flex-column\">\r\n <ng-content select=\"card-header-mark\"></ng-content>\r\n <ng-content select=\"card-header-subtitle\"></ng-content>\r\n</div>","import { Directive } from '@angular/core';\r\n\r\n@Directive({\r\n selector: 'card-title, [card-title], [craftsjsCardTitle]',\r\n host: { class: 'card-header-title' }\r\n})\r\nexport class CardTitleDirective { }\r\n","import { Directive } from '@angular/core';\r\n\r\n@Directive({\r\n selector: 'card-body, [card-body], [craftsjsCardBody]',\r\n host: { class: 'card-body' }\r\n})\r\nexport class CardBodyDirective { }\r\n","import { Directive } from '@angular/core';\r\n\r\n@Directive({\r\n selector: 'card-footer, [card-footer], [craftsjsCardFooter]',\r\n host: { class: 'card-footer' }\r\n})\r\nexport class CardFooterDirective { }\r\n","import { Directive } from '@angular/core';\r\n\r\n@Directive({\r\n selector: 'card-divider, [card-divider], [craftsjsCardDivider]',\r\n host: {\r\n class: 'card-divider'\r\n }\r\n})\r\nexport class CardDividerDirective { }\r\n","import { Directive } from '@angular/core';\r\n\r\n@Directive({\r\n selector: 'card-header-mark, [card-header-mark], [craftsjsCardHeaderMark]',\r\n host: {\r\n class: 'card-header-subtitle-mark'\r\n }\r\n})\r\nexport class CardHeaderMarkDirective { }\r\n","import { Directive } from '@angular/core';\r\n\r\n@Directive({\r\n selector: 'card-header-subtitle, [card-header-subtitle], [craftsjsCardHeaderSubtitle]',\r\n host: {\r\n class: 'card-header-subtitle'\r\n }\r\n})\r\nexport class CardHeaderSubtitleDirective { }\r\n","import { ElementRef } from '@angular/core';\r\n\r\n\r\nexport interface HasElementRef {\r\n _elementRef: ElementRef;\r\n}\r\n\r\nexport type Constructor<T> = new (...args: any[]) => T;\r\nexport function mixinColor<T extends Constructor<HasElementRef>>(\r\n base: T, defaultColor?: string): T {\r\n return class extends base {\r\n private _color: string;\r\n get color(): string { return this._color; }\r\n set color(value: string) {\r\n const colorPalette = value || defaultColor;\r\n if (colorPalette !== this._color) {\r\n if (this._color) {\r\n this._elementRef.nativeElement.classList.remove(`${this._color}`);\r\n }\r\n if (colorPalette) {\r\n this._elementRef.nativeElement.classList.add(`${colorPalette}`);\r\n }\r\n this._color = colorPalette;\r\n }\r\n }\r\n constructor(...args: any[]) {\r\n // eslint-disable-next-line @typescript-eslint/no-unsafe-argument\r\n super(...args);\r\n this.color = defaultColor;\r\n }\r\n };\r\n}\r\n","import { Component, ElementRef, ChangeDetectionStrategy } from '@angular/core';\r\nimport { mixinColor } from '../../../../mixins/color';\r\n\r\nexport class CardHeaderOvalBase {\r\n constructor(public _elementRef: ElementRef) { }\r\n}\r\n\r\nexport const _CardHeaderOvalMixinBase:\r\n typeof CardHeaderOvalBase =\r\n mixinColor(CardHeaderOvalBase);\r\n\r\n@Component({\r\n selector: 'card-header-oval',\r\n templateUrl: './card-header-oval.component.html',\r\n styleUrls: ['./card-header-oval.component.scss'],\r\n host: {\r\n class: 'card-header-oval d-flex'\r\n },\r\n inputs: ['color'],\r\n changeDetection: ChangeDetectionStrategy.OnPush\r\n})\r\nexport class CardHeaderOvalComponent extends _CardHeaderOvalMixinBase {\r\n\r\n constructor(_elementRef: ElementRef) {\r\n super(_elementRef);\r\n }\r\n\r\n}\r\n","<ng-content select=\"card-title\"></ng-content>","import { Component, ChangeDetectionStrategy } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'card-header-linear',\r\n templateUrl: './card-header-linear.component.html',\r\n styleUrls: ['./card-header-linear.component.scss'],\r\n host: {\r\n class: 'card-header-linear d-flex'\r\n },\r\n changeDetection: ChangeDetectionStrategy.OnPush\r\n})\r\nexport class CardHeaderLinearComponent { }\r\n","<ng-content select=\"card-title\"></ng-content>","import { NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\nimport { CardComponent } from './card.component';\r\nimport { CardHeaderComponent } from './components/card-header/card-header.component';\r\nimport { CardTitleDirective } from './directives/card-title.directive';\r\nimport { CardBodyDirective } from './directives/card-body.directive';\r\nimport { CardFooterDirective } from './directives/card-footer.directive';\r\nimport { CardDividerDirective } from './directives/card-divider.directive';\r\nimport { CardHeaderMarkDirective } from './directives/card-header-mark.directive';\r\nimport { CardHeaderSubtitleDirective } from './directives/card-header-subtitle.directive';\r\nimport { CardHeaderOvalComponent } from './components/card-header/components/card-header-oval/card-header-oval.component';\r\nimport { CardHeaderLinearComponent } from './components/card-header/components/card-header-linear/card-header-linear.component';\r\n\r\n@NgModule({\r\n imports: [\r\n CommonModule\r\n ],\r\n declarations: [\r\n CardComponent,\r\n CardHeaderComponent,\r\n CardTitleDirective,\r\n CardBodyDirective,\r\n CardFooterDirective,\r\n CardDividerDirective,\r\n CardHeaderMarkDirective,\r\n CardHeaderSubtitleDirective,\r\n CardHeaderOvalComponent,\r\n CardHeaderLinearComponent\r\n ],\r\n exports: [\r\n CardComponent,\r\n CardHeaderComponent,\r\n CardTitleDirective,\r\n CardBodyDirective,\r\n CardFooterDirective,\r\n CardDividerDirective,\r\n CardHeaderSubtitleDirective,\r\n CardHeaderMarkDirective,\r\n CardHeaderOvalComponent,\r\n CardHeaderLinearComponent\r\n ]\r\n})\r\nexport class CardModule { }\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"craftsjs-card.mjs","sources":["../../../../projects/craftsjs/card/src/lib/card.component.ts","../../../../projects/craftsjs/card/src/lib/card.component.html","../../../../projects/craftsjs/card/src/lib/components/card-header/card-header.component.ts","../../../../projects/craftsjs/card/src/lib/components/card-header/card-header.component.html","../../../../projects/craftsjs/card/src/lib/components/card-header/components/card-header-linear/card-header-linear.component.ts","../../../../projects/craftsjs/card/src/lib/components/card-header/components/card-header-linear/card-header-linear.component.html","../../../../projects/craftsjs/card/src/lib/mixins/color.ts","../../../../projects/craftsjs/card/src/lib/components/card-header/components/card-header-oval/card-header-oval.component.ts","../../../../projects/craftsjs/card/src/lib/components/card-header/components/card-header-oval/card-header-oval.component.html","../../../../projects/craftsjs/card/src/lib/directives/card-body.directive.ts","../../../../projects/craftsjs/card/src/lib/directives/card-divider.directive.ts","../../../../projects/craftsjs/card/src/lib/directives/card-footer.directive.ts","../../../../projects/craftsjs/card/src/lib/directives/card-header-mark.directive.ts","../../../../projects/craftsjs/card/src/lib/directives/card-header-subtitle.directive.ts","../../../../projects/craftsjs/card/src/lib/directives/card-title.directive.ts","../../../../projects/craftsjs/card/src/lib/card.module.ts","../../../../projects/craftsjs/card/src/craftsjs-card.ts"],"sourcesContent":["import { Component, ViewEncapsulation, ChangeDetectionStrategy } from '@angular/core';\r\n\r\n\r\n@Component({\r\n selector: 'craftsjs-card',\r\n templateUrl: './card.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n changeDetection: ChangeDetectionStrategy.OnPush,\r\n host: { class: 'card' },\r\n standalone: true\r\n})\r\nexport class CardComponent { }\r\n","<ng-content></ng-content>\r\n<ng-content select=\"card-footer\"></ng-content>","import { Component, ViewEncapsulation, ChangeDetectionStrategy, Input } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'card-header',\r\n templateUrl: './card-header.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n changeDetection: ChangeDetectionStrategy.OnPush,\r\n inputs: ['color'],\r\n host: {\r\n class: 'd-flex flex-row flex-wrap card-header'\r\n },\r\n standalone: true\r\n})\r\nexport class CardHeaderComponent {\r\n @Input()\r\n classHeaderTitle: string;\r\n}\r\n","<ng-content select=\"card-header-oval\"></ng-content>\r\n<ng-content select=\"card-header-linear\"></ng-content>\r\n<div class=\"card-header-subtitle d-flex flex-column\">\r\n <ng-content select=\"card-header-mark\"></ng-content>\r\n <ng-content select=\"card-header-subtitle\"></ng-content>\r\n</div>","import { Component, ChangeDetectionStrategy } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'card-header-linear',\r\n templateUrl: './card-header-linear.component.html',\r\n styleUrls: ['./card-header-linear.component.scss'],\r\n host: {\r\n class: 'card-header-linear d-flex'\r\n },\r\n changeDetection: ChangeDetectionStrategy.OnPush,\r\n standalone: true\r\n})\r\nexport class CardHeaderLinearComponent { }\r\n","<ng-content select=\"card-title\"></ng-content>","import { ElementRef } from '@angular/core';\r\n\r\n\r\nexport interface HasElementRef {\r\n _elementRef: ElementRef;\r\n}\r\n\r\nexport type Constructor<T> = new (...args: any[]) => T;\r\nexport function mixinColor<T extends Constructor<HasElementRef>>(\r\n base: T, defaultColor?: string): T {\r\n return class extends base {\r\n private _color: string;\r\n get color(): string { return this._color; }\r\n set color(value: string) {\r\n const colorPalette = value || defaultColor;\r\n if (colorPalette !== this._color) {\r\n if (this._color) {\r\n this._elementRef.nativeElement.classList.remove(`${this._color}`);\r\n }\r\n if (colorPalette) {\r\n this._elementRef.nativeElement.classList.add(`${colorPalette}`);\r\n }\r\n this._color = colorPalette;\r\n }\r\n }\r\n constructor(...args: any[]) {\r\n // eslint-disable-next-line @typescript-eslint/no-unsafe-argument\r\n super(...args);\r\n this.color = defaultColor;\r\n }\r\n };\r\n}\r\n","import { Component, ElementRef, ChangeDetectionStrategy } from '@angular/core';\r\nimport { mixinColor } from '../../../../mixins/color';\r\n\r\nexport class CardHeaderOvalBase {\r\n constructor(public _elementRef: ElementRef) { }\r\n}\r\n\r\nexport const _CardHeaderOvalMixinBase:\r\n typeof CardHeaderOvalBase =\r\n mixinColor(CardHeaderOvalBase);\r\n\r\n@Component({\r\n selector: 'card-header-oval',\r\n templateUrl: './card-header-oval.component.html',\r\n styleUrls: ['./card-header-oval.component.scss'],\r\n host: {\r\n class: 'card-header-oval d-flex'\r\n },\r\n inputs: ['color'],\r\n changeDetection: ChangeDetectionStrategy.OnPush,\r\n standalone: true\r\n})\r\nexport class CardHeaderOvalComponent extends _CardHeaderOvalMixinBase {\r\n\r\n constructor(_elementRef: ElementRef) {\r\n super(_elementRef);\r\n }\r\n\r\n}\r\n","<ng-content select=\"card-title\"></ng-content>","import { Directive } from '@angular/core';\r\n\r\n@Directive({\r\n selector: 'card-body, [card-body], [craftsjsCardBody]',\r\n host: { class: 'card-body' },\r\n standalone: true\r\n})\r\nexport class CardBodyDirective { }\r\n","import { Directive } from '@angular/core';\r\n\r\n@Directive({\r\n selector: 'card-divider, [card-divider], [craftsjsCardDivider]',\r\n host: {\r\n class: 'card-divider'\r\n },\r\n standalone: true\r\n})\r\nexport class CardDividerDirective { }\r\n","import { Directive } from '@angular/core';\r\n\r\n@Directive({\r\n selector: 'card-footer, [card-footer], [craftsjsCardFooter]',\r\n host: { class: 'card-footer' },\r\n standalone: true\r\n})\r\nexport class CardFooterDirective { }\r\n","import { Directive } from '@angular/core';\r\n\r\n@Directive({\r\n selector: 'card-header-mark, [card-header-mark], [craftsjsCardHeaderMark]',\r\n host: {\r\n class: 'card-header-subtitle-mark'\r\n },\r\n standalone: true\r\n})\r\nexport class CardHeaderMarkDirective { }\r\n","import { Directive } from '@angular/core';\r\n\r\n@Directive({\r\n selector: 'card-header-subtitle, [card-header-subtitle], [craftsjsCardHeaderSubtitle]',\r\n host: {\r\n class: 'card-header-subtitle'\r\n },\r\n standalone: true\r\n})\r\nexport class CardHeaderSubtitleDirective { }\r\n","import { Directive } from '@angular/core';\r\n\r\n@Directive({\r\n selector: 'card-title, [card-title], [craftsjsCardTitle]',\r\n host: { class: 'card-header-title' },\r\n standalone: true\r\n})\r\nexport class CardTitleDirective { }\r\n","import { NgModule } from '@angular/core';\r\nimport { CardComponent } from './card.component';\r\nimport { CardHeaderComponent } from './components/card-header/card-header.component';\r\nimport { CardHeaderLinearComponent } from './components/card-header/components/card-header-linear/card-header-linear.component';\r\nimport { CardHeaderOvalComponent } from './components/card-header/components/card-header-oval/card-header-oval.component';\r\nimport { CardBodyDirective } from './directives/card-body.directive';\r\nimport { CardDividerDirective } from './directives/card-divider.directive';\r\nimport { CardFooterDirective } from './directives/card-footer.directive';\r\nimport { CardHeaderMarkDirective } from './directives/card-header-mark.directive';\r\nimport { CardHeaderSubtitleDirective } from './directives/card-header-subtitle.directive';\r\nimport { CardTitleDirective } from './directives/card-title.directive';\r\n\r\n@NgModule({\r\n imports: [\r\n CardComponent,\r\n CardHeaderComponent,\r\n CardHeaderLinearComponent,\r\n CardHeaderOvalComponent,\r\n CardBodyDirective,\r\n CardDividerDirective,\r\n CardFooterDirective,\r\n CardHeaderMarkDirective,\r\n CardHeaderSubtitleDirective,\r\n CardTitleDirective\r\n ],\r\n exports: [\r\n CardComponent,\r\n CardHeaderComponent,\r\n CardHeaderLinearComponent,\r\n CardHeaderOvalComponent,\r\n CardBodyDirective,\r\n CardDividerDirective,\r\n CardFooterDirective,\r\n CardHeaderMarkDirective,\r\n CardHeaderSubtitleDirective,\r\n CardTitleDirective\r\n ]\r\n})\r\nexport class CardModule { }\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
package/lib/card.component.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class CardComponent {
|
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "craftsjs-card", never, {}, {}, never, ["*", "card-footer"],
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "craftsjs-card", never, {}, {}, never, ["*", "card-footer"], true, never>;
|
|
5
5
|
}
|
package/lib/card.module.d.ts
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./card.component";
|
|
3
3
|
import * as i2 from "./components/card-header/card-header.component";
|
|
4
|
-
import * as i3 from "./
|
|
5
|
-
import * as i4 from "./
|
|
6
|
-
import * as i5 from "./directives/card-
|
|
4
|
+
import * as i3 from "./components/card-header/components/card-header-linear/card-header-linear.component";
|
|
5
|
+
import * as i4 from "./components/card-header/components/card-header-oval/card-header-oval.component";
|
|
6
|
+
import * as i5 from "./directives/card-body.directive";
|
|
7
7
|
import * as i6 from "./directives/card-divider.directive";
|
|
8
|
-
import * as i7 from "./directives/card-
|
|
9
|
-
import * as i8 from "./directives/card-header-
|
|
10
|
-
import * as i9 from "./
|
|
11
|
-
import * as i10 from "./
|
|
12
|
-
import * as i11 from "@angular/common";
|
|
8
|
+
import * as i7 from "./directives/card-footer.directive";
|
|
9
|
+
import * as i8 from "./directives/card-header-mark.directive";
|
|
10
|
+
import * as i9 from "./directives/card-header-subtitle.directive";
|
|
11
|
+
import * as i10 from "./directives/card-title.directive";
|
|
13
12
|
export declare class CardModule {
|
|
14
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardModule, never>;
|
|
15
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CardModule, [typeof i1.CardComponent, typeof i2.CardHeaderComponent, typeof i3.
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CardModule, never, [typeof i1.CardComponent, typeof i2.CardHeaderComponent, typeof i3.CardHeaderLinearComponent, typeof i4.CardHeaderOvalComponent, typeof i5.CardBodyDirective, typeof i6.CardDividerDirective, typeof i7.CardFooterDirective, typeof i8.CardHeaderMarkDirective, typeof i9.CardHeaderSubtitleDirective, typeof i10.CardTitleDirective], [typeof i1.CardComponent, typeof i2.CardHeaderComponent, typeof i3.CardHeaderLinearComponent, typeof i4.CardHeaderOvalComponent, typeof i5.CardBodyDirective, typeof i6.CardDividerDirective, typeof i7.CardFooterDirective, typeof i8.CardHeaderMarkDirective, typeof i9.CardHeaderSubtitleDirective, typeof i10.CardTitleDirective]>;
|
|
16
15
|
static ɵinj: i0.ɵɵInjectorDeclaration<CardModule>;
|
|
17
16
|
}
|
|
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class CardHeaderComponent {
|
|
3
3
|
classHeaderTitle: string;
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardHeaderComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CardHeaderComponent, "card-header", never, { "color": { "alias": "color"; "required": false; }; "classHeaderTitle": { "alias": "classHeaderTitle"; "required": false; }; }, {}, never, ["card-header-oval", "card-header-linear", "card-header-mark", "card-header-subtitle"],
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardHeaderComponent, "card-header", never, { "color": { "alias": "color"; "required": false; }; "classHeaderTitle": { "alias": "classHeaderTitle"; "required": false; }; }, {}, never, ["card-header-oval", "card-header-linear", "card-header-mark", "card-header-subtitle"], true, never>;
|
|
6
6
|
}
|
package/lib/components/card-header/components/card-header-linear/card-header-linear.component.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class CardHeaderLinearComponent {
|
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardHeaderLinearComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CardHeaderLinearComponent, "card-header-linear", never, {}, {}, never, ["card-title"],
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardHeaderLinearComponent, "card-header-linear", never, {}, {}, never, ["card-title"], true, never>;
|
|
5
5
|
}
|
package/lib/components/card-header/components/card-header-oval/card-header-oval.component.d.ts
CHANGED
|
@@ -8,5 +8,5 @@ export declare const _CardHeaderOvalMixinBase: typeof CardHeaderOvalBase;
|
|
|
8
8
|
export declare class CardHeaderOvalComponent extends _CardHeaderOvalMixinBase {
|
|
9
9
|
constructor(_elementRef: ElementRef);
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardHeaderOvalComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CardHeaderOvalComponent, "card-header-oval", never, { "color": { "alias": "color"; "required": false; }; }, {}, never, ["card-title"],
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardHeaderOvalComponent, "card-header-oval", never, { "color": { "alias": "color"; "required": false; }; }, {}, never, ["card-title"], true, never>;
|
|
12
12
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class CardBodyDirective {
|
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardBodyDirective, never>;
|
|
4
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CardBodyDirective, "card-body, [card-body], [craftsjsCardBody]", never, {}, {}, never, never,
|
|
4
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CardBodyDirective, "card-body, [card-body], [craftsjsCardBody]", never, {}, {}, never, never, true, never>;
|
|
5
5
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class CardDividerDirective {
|
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardDividerDirective, never>;
|
|
4
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CardDividerDirective, "card-divider, [card-divider], [craftsjsCardDivider]", never, {}, {}, never, never,
|
|
4
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CardDividerDirective, "card-divider, [card-divider], [craftsjsCardDivider]", never, {}, {}, never, never, true, never>;
|
|
5
5
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class CardFooterDirective {
|
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardFooterDirective, never>;
|
|
4
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CardFooterDirective, "card-footer, [card-footer], [craftsjsCardFooter]", never, {}, {}, never, never,
|
|
4
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CardFooterDirective, "card-footer, [card-footer], [craftsjsCardFooter]", never, {}, {}, never, never, true, never>;
|
|
5
5
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class CardHeaderMarkDirective {
|
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardHeaderMarkDirective, never>;
|
|
4
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CardHeaderMarkDirective, "card-header-mark, [card-header-mark], [craftsjsCardHeaderMark]", never, {}, {}, never, never,
|
|
4
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CardHeaderMarkDirective, "card-header-mark, [card-header-mark], [craftsjsCardHeaderMark]", never, {}, {}, never, never, true, never>;
|
|
5
5
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class CardHeaderSubtitleDirective {
|
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardHeaderSubtitleDirective, never>;
|
|
4
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CardHeaderSubtitleDirective, "card-header-subtitle, [card-header-subtitle], [craftsjsCardHeaderSubtitle]", never, {}, {}, never, never,
|
|
4
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CardHeaderSubtitleDirective, "card-header-subtitle, [card-header-subtitle], [craftsjsCardHeaderSubtitle]", never, {}, {}, never, never, true, never>;
|
|
5
5
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class CardTitleDirective {
|
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardTitleDirective, never>;
|
|
4
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CardTitleDirective, "card-title, [card-title], [craftsjsCardTitle]", never, {}, {}, never, never,
|
|
4
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CardTitleDirective, "card-title, [card-title], [craftsjsCardTitle]", never, {}, {}, never, never, true, never>;
|
|
5
5
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@craftsjs/card",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.1.0",
|
|
4
4
|
"author": "Craftsjs",
|
|
5
5
|
"description": "Material card library for angular",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,10 +11,13 @@
|
|
|
11
11
|
"@angular/animations": ">= 18.0.0 < 19.0.0",
|
|
12
12
|
"@angular/material": ">= 18.0.0 < 19.0.0",
|
|
13
13
|
"@angular/cdk": ">= 18.0.0 < 19.0.0",
|
|
14
|
-
"rxjs": "
|
|
14
|
+
"rxjs": "6.6.3"
|
|
15
15
|
},
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/addapptables/angular-miscellaneous"
|
|
19
|
+
},
|
|
20
|
+
"bugs": {
|
|
18
21
|
"url": "https://github.com/addapptables/angular-miscellaneous/issues"
|
|
19
22
|
},
|
|
20
23
|
"keywords": [
|
package/public-api.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
export * from './lib/card.module';
|
|
2
1
|
export * from './lib/card.component';
|
|
3
2
|
export * from './lib/components/card-header/card-header.component';
|
|
4
3
|
export * from './lib/components/card-header/components/card-header-linear/card-header-linear.component';
|
|
@@ -10,3 +9,4 @@ export * from './lib/directives/card-header-mark.directive';
|
|
|
10
9
|
export * from './lib/directives/card-header-subtitle.directive';
|
|
11
10
|
export * from './lib/directives/card-title.directive';
|
|
12
11
|
export * from './lib/mixins/color';
|
|
12
|
+
export * from './lib/card.module';
|