fancy-ui-core 0.0.4 → 0.0.6
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.
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Component, EventEmitter, Output, input, viewChild } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { NgClass } from '@angular/common';
|
|
3
3
|
import { timer } from 'rxjs';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
import * as i1 from "@angular/common";
|
|
6
5
|
export class ButtonComponent {
|
|
7
6
|
constructor() {
|
|
8
7
|
/** The label of the Button. */
|
|
@@ -15,22 +14,24 @@ export class ButtonComponent {
|
|
|
15
14
|
this.animate = false;
|
|
16
15
|
}
|
|
17
16
|
click(event) {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
waveSpan
|
|
21
|
-
|
|
17
|
+
if (!this.disabled()) {
|
|
18
|
+
const waveSpan = this.waveSpan();
|
|
19
|
+
if (waveSpan) {
|
|
20
|
+
waveSpan.nativeElement.style.left = event.offsetX + 'px';
|
|
21
|
+
waveSpan.nativeElement.style.top = event.offsetY + 'px';
|
|
22
|
+
}
|
|
23
|
+
this.animate = true;
|
|
24
|
+
timer(800).subscribe(() => this.animate = false);
|
|
25
|
+
this.tap.next();
|
|
22
26
|
}
|
|
23
|
-
this.animate = true;
|
|
24
|
-
timer(800).subscribe(() => this.animate = false);
|
|
25
|
-
this.tap.next();
|
|
26
27
|
}
|
|
27
28
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: ButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
28
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "17.2.1", type: ButtonComponent, isStandalone: true, selector: "fui-button", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { tap: "tap" }, viewQueries: [{ propertyName: "waveSpan", first: true, predicate: ["wave"], descendants: true, isSignal: true }], ngImport: i0, template: "<button (click)=\"
|
|
29
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "17.2.1", type: ButtonComponent, isStandalone: true, selector: "fui-button", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { tap: "tap" }, viewQueries: [{ propertyName: "waveSpan", first: true, predicate: ["wave"], descendants: true, isSignal: true }], ngImport: i0, template: "<button (click)=\"click($event)\" [disabled]=\"disabled()\" [class.bg-primary]=\"!disabled()\" [class.bg-outline]=\"disabled()\" class=\"rounded overflow-hidden group relative hover:shadow\" >\r\n <div class=\"text-on-primary p-component rounded\" [ngClass]=\"{'group-hover:bg-hover': !animate, 'bg-primary': animate}\">{{label()}}</div>\r\n <span #wave class=\"absolute w-full h-full rounded-[50%] bg-tint animate-ripple\" [ngClass]=\"{'hidden': !animate}\"></span>\r\n</button>\r\n", dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] }); }
|
|
29
30
|
}
|
|
30
31
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: ButtonComponent, decorators: [{
|
|
31
32
|
type: Component,
|
|
32
|
-
args: [{ selector: 'fui-button', standalone: true, imports: [
|
|
33
|
+
args: [{ selector: 'fui-button', standalone: true, imports: [NgClass], template: "<button (click)=\"click($event)\" [disabled]=\"disabled()\" [class.bg-primary]=\"!disabled()\" [class.bg-outline]=\"disabled()\" class=\"rounded overflow-hidden group relative hover:shadow\" >\r\n <div class=\"text-on-primary p-component rounded\" [ngClass]=\"{'group-hover:bg-hover': !animate, 'bg-primary': animate}\">{{label()}}</div>\r\n <span #wave class=\"absolute w-full h-full rounded-[50%] bg-tint animate-ripple\" [ngClass]=\"{'hidden': !animate}\"></span>\r\n</button>\r\n" }]
|
|
33
34
|
}], propDecorators: { tap: [{
|
|
34
35
|
type: Output
|
|
35
36
|
}] } });
|
|
36
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
37
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2ZhbmN5LXVpLWNvcmUvc3JjL2xpYi9idXR0b24vYnV0dG9uLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2ZhbmN5LXVpLWNvcmUvc3JjL2xpYi9idXR0b24vYnV0dG9uLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQWMsWUFBWSxFQUFFLE1BQU0sRUFBRSxLQUFLLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzlGLE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMxQyxPQUFPLEVBQUUsS0FBSyxFQUFFLE1BQU0sTUFBTSxDQUFDOztBQVE3QixNQUFNLE9BQU8sZUFBZTtJQU41QjtRQU9FLCtCQUErQjtRQUMvQixVQUFLLEdBQUcsS0FBSyxDQUFDLEVBQUUsQ0FBQyxDQUFDO1FBQ2xCLGtEQUFrRDtRQUNsRCxhQUFRLEdBQUcsS0FBSyxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQ3hCLCtDQUErQztRQUUvQyxRQUFHLEdBQUcsSUFBSSxZQUFZLEVBQVEsQ0FBQztRQUUvQixhQUFRLEdBQUcsU0FBUyxDQUFhLE1BQU0sQ0FBQyxDQUFDO1FBRXpDLFlBQU8sR0FBRyxLQUFLLENBQUM7S0FnQmpCO0lBZEMsS0FBSyxDQUFDLEtBQTBDO1FBQzlDLElBQUcsQ0FBQyxJQUFJLENBQUMsUUFBUSxFQUFFLEVBQ25CLENBQUM7WUFDQyxNQUFNLFFBQVEsR0FBRyxJQUFJLENBQUMsUUFBUSxFQUFFLENBQUM7WUFDakMsSUFBRyxRQUFRLEVBQUUsQ0FBQztnQkFDWixRQUFRLENBQUMsYUFBYSxDQUFDLEtBQUssQ0FBQyxJQUFJLEdBQUcsS0FBSyxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUM7Z0JBQ3pELFFBQVEsQ0FBQyxhQUFhLENBQUMsS0FBSyxDQUFDLEdBQUcsR0FBRyxLQUFLLENBQUMsT0FBTyxHQUFHLElBQUksQ0FBQztZQUMxRCxDQUFDO1lBQ0QsSUFBSSxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUM7WUFDcEIsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxJQUFJLENBQUMsT0FBTyxHQUFHLEtBQUssQ0FBQyxDQUFDO1lBQ2pELElBQUksQ0FBQyxHQUFHLENBQUMsSUFBSSxFQUFFLENBQUM7UUFDbEIsQ0FBQztJQUNILENBQUM7OEdBekJVLGVBQWU7a0dBQWYsZUFBZSxzZENWNUIsMmVBSUEsNENER1ksT0FBTzs7MkZBR04sZUFBZTtrQkFOM0IsU0FBUzsrQkFDRSxZQUFZLGNBQ1YsSUFBSSxXQUNQLENBQUMsT0FBTyxDQUFDOzhCQVVsQixHQUFHO3NCQURGLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEVsZW1lbnRSZWYsIEV2ZW50RW1pdHRlciwgT3V0cHV0LCBpbnB1dCwgdmlld0NoaWxkIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IE5nQ2xhc3MgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xyXG5pbXBvcnQgeyB0aW1lciB9IGZyb20gJ3J4anMnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdmdWktYnV0dG9uJyxcclxuICBzdGFuZGFsb25lOiB0cnVlLFxyXG4gIGltcG9ydHM6IFtOZ0NsYXNzXSxcclxuICB0ZW1wbGF0ZVVybDogJy4vYnV0dG9uLmNvbXBvbmVudC5odG1sJ1xyXG59KVxyXG5leHBvcnQgY2xhc3MgQnV0dG9uQ29tcG9uZW50IHtcclxuICAvKiogVGhlIGxhYmVsIG9mIHRoZSBCdXR0b24uICovXHJcbiAgbGFiZWwgPSBpbnB1dCgnJyk7XHJcbiAgLyoqIEZsYWcgdG8gc2hvdyB0aGUgYnV0dG8gaW4gYSBkaXNhYmxlZCBzdGF0ZS4gKi9cclxuICBkaXNhYmxlZCA9IGlucHV0KGZhbHNlKTtcclxuICAvKiogQW4gZXZlbnQgY2FsbGVkIGlmIHRoZSBidXR0b24gaXMgdGFwcGVkLiAqL1xyXG4gIEBPdXRwdXQoKVxyXG4gIHRhcCA9IG5ldyBFdmVudEVtaXR0ZXI8dm9pZD4oKTtcclxuXHJcbiAgd2F2ZVNwYW4gPSB2aWV3Q2hpbGQ8RWxlbWVudFJlZj4oJ3dhdmUnKTtcclxuXHJcbiAgYW5pbWF0ZSA9IGZhbHNlO1xyXG5cclxuICBjbGljayhldmVudDogeyBvZmZzZXRYOiBudW1iZXIsIG9mZnNldFk6IG51bWJlcn0pIHtcclxuICAgIGlmKCF0aGlzLmRpc2FibGVkKCkpXHJcbiAgICB7XHJcbiAgICAgIGNvbnN0IHdhdmVTcGFuID0gdGhpcy53YXZlU3BhbigpO1xyXG4gICAgICBpZih3YXZlU3Bhbikge1xyXG4gICAgICAgIHdhdmVTcGFuLm5hdGl2ZUVsZW1lbnQuc3R5bGUubGVmdCA9IGV2ZW50Lm9mZnNldFggKyAncHgnO1xyXG4gICAgICAgIHdhdmVTcGFuLm5hdGl2ZUVsZW1lbnQuc3R5bGUudG9wID0gZXZlbnQub2Zmc2V0WSArICdweCc7XHJcbiAgICAgIH1cclxuICAgICAgdGhpcy5hbmltYXRlID0gdHJ1ZTtcclxuICAgICAgdGltZXIoODAwKS5zdWJzY3JpYmUoKCkgPT4gdGhpcy5hbmltYXRlID0gZmFsc2UpO1xyXG4gICAgICB0aGlzLnRhcC5uZXh0KCk7XHJcbiAgICB9XHJcbiAgfVxyXG5cclxufVxyXG4iLCI8YnV0dG9uIChjbGljayk9XCJjbGljaygkZXZlbnQpXCIgW2Rpc2FibGVkXT1cImRpc2FibGVkKClcIiBbY2xhc3MuYmctcHJpbWFyeV09XCIhZGlzYWJsZWQoKVwiIFtjbGFzcy5iZy1vdXRsaW5lXT1cImRpc2FibGVkKClcIiBjbGFzcz1cInJvdW5kZWQgb3ZlcmZsb3ctaGlkZGVuIGdyb3VwIHJlbGF0aXZlIGhvdmVyOnNoYWRvd1wiID5cclxuICAgIDxkaXYgY2xhc3M9XCJ0ZXh0LW9uLXByaW1hcnkgcC1jb21wb25lbnQgcm91bmRlZFwiIFtuZ0NsYXNzXT1cInsnZ3JvdXAtaG92ZXI6YmctaG92ZXInOiAhYW5pbWF0ZSwgJ2JnLXByaW1hcnknOiBhbmltYXRlfVwiPnt7bGFiZWwoKX19PC9kaXY+XHJcbiAgICA8c3BhbiAjd2F2ZSBjbGFzcz1cImFic29sdXRlIHctZnVsbCBoLWZ1bGwgcm91bmRlZC1bNTAlXSBiZy10aW50IGFuaW1hdGUtcmlwcGxlXCIgW25nQ2xhc3NdPVwieydoaWRkZW4nOiAhYW5pbWF0ZX1cIj48L3NwYW4+XHJcbjwvYnV0dG9uPlxyXG4iXX0=
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { input, Component, EventEmitter, viewChild, Output } from '@angular/core';
|
|
3
3
|
import { NgIconComponent, provideIcons, provideNgIconsConfig } from '@ng-icons/core';
|
|
4
|
-
import
|
|
5
|
-
import { CommonModule } from '@angular/common';
|
|
4
|
+
import { NgClass } from '@angular/common';
|
|
6
5
|
import { timer } from 'rxjs';
|
|
7
6
|
import { heroArrowLeft, heroUser } from '@ng-icons/heroicons/outline';
|
|
8
7
|
import { matMoreVertOutline } from '@ng-icons/material-icons/outline';
|
|
@@ -36,21 +35,23 @@ class ButtonComponent {
|
|
|
36
35
|
this.animate = false;
|
|
37
36
|
}
|
|
38
37
|
click(event) {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
waveSpan
|
|
42
|
-
|
|
38
|
+
if (!this.disabled()) {
|
|
39
|
+
const waveSpan = this.waveSpan();
|
|
40
|
+
if (waveSpan) {
|
|
41
|
+
waveSpan.nativeElement.style.left = event.offsetX + 'px';
|
|
42
|
+
waveSpan.nativeElement.style.top = event.offsetY + 'px';
|
|
43
|
+
}
|
|
44
|
+
this.animate = true;
|
|
45
|
+
timer(800).subscribe(() => this.animate = false);
|
|
46
|
+
this.tap.next();
|
|
43
47
|
}
|
|
44
|
-
this.animate = true;
|
|
45
|
-
timer(800).subscribe(() => this.animate = false);
|
|
46
|
-
this.tap.next();
|
|
47
48
|
}
|
|
48
49
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: ButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
49
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "17.2.1", type: ButtonComponent, isStandalone: true, selector: "fui-button", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { tap: "tap" }, viewQueries: [{ propertyName: "waveSpan", first: true, predicate: ["wave"], descendants: true, isSignal: true }], ngImport: i0, template: "<button (click)=\"
|
|
50
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "17.2.1", type: ButtonComponent, isStandalone: true, selector: "fui-button", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { tap: "tap" }, viewQueries: [{ propertyName: "waveSpan", first: true, predicate: ["wave"], descendants: true, isSignal: true }], ngImport: i0, template: "<button (click)=\"click($event)\" [disabled]=\"disabled()\" [class.bg-primary]=\"!disabled()\" [class.bg-outline]=\"disabled()\" class=\"rounded overflow-hidden group relative hover:shadow\" >\r\n <div class=\"text-on-primary p-component rounded\" [ngClass]=\"{'group-hover:bg-hover': !animate, 'bg-primary': animate}\">{{label()}}</div>\r\n <span #wave class=\"absolute w-full h-full rounded-[50%] bg-tint animate-ripple\" [ngClass]=\"{'hidden': !animate}\"></span>\r\n</button>\r\n", dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] }); }
|
|
50
51
|
}
|
|
51
52
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.1", ngImport: i0, type: ButtonComponent, decorators: [{
|
|
52
53
|
type: Component,
|
|
53
|
-
args: [{ selector: 'fui-button', standalone: true, imports: [
|
|
54
|
+
args: [{ selector: 'fui-button', standalone: true, imports: [NgClass], template: "<button (click)=\"click($event)\" [disabled]=\"disabled()\" [class.bg-primary]=\"!disabled()\" [class.bg-outline]=\"disabled()\" class=\"rounded overflow-hidden group relative hover:shadow\" >\r\n <div class=\"text-on-primary p-component rounded\" [ngClass]=\"{'group-hover:bg-hover': !animate, 'bg-primary': animate}\">{{label()}}</div>\r\n <span #wave class=\"absolute w-full h-full rounded-[50%] bg-tint animate-ripple\" [ngClass]=\"{'hidden': !animate}\"></span>\r\n</button>\r\n" }]
|
|
54
55
|
}], propDecorators: { tap: [{
|
|
55
56
|
type: Output
|
|
56
57
|
}] } });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fancy-ui-core.mjs","sources":["../../../../packages/fancy-ui-core/src/lib/icon/icon.component.ts","../../../../packages/fancy-ui-core/src/lib/button/button.component.ts","../../../../packages/fancy-ui-core/src/lib/button/button.component.html","../../../../packages/fancy-ui-core/src/lib/provide.ts","../../../../packages/fancy-ui-core/src/fancy-ui-core.ts"],"sourcesContent":["import { Component, input } from '@angular/core';\r\nimport { NgIconComponent } from '@ng-icons/core';\r\n\r\n@Component({\r\n selector: 'fui-icon',\r\n standalone: true,\r\n imports: [NgIconComponent],\r\n template: `<ng-icon [name]=\"name()\"></ng-icon>`\r\n})\r\nexport class IconComponent {\r\n name = input.required<string>();\r\n}\r\n","import { Component, ElementRef, EventEmitter, Output, input, viewChild } from '@angular/core';\r\nimport {
|
|
1
|
+
{"version":3,"file":"fancy-ui-core.mjs","sources":["../../../../packages/fancy-ui-core/src/lib/icon/icon.component.ts","../../../../packages/fancy-ui-core/src/lib/button/button.component.ts","../../../../packages/fancy-ui-core/src/lib/button/button.component.html","../../../../packages/fancy-ui-core/src/lib/provide.ts","../../../../packages/fancy-ui-core/src/fancy-ui-core.ts"],"sourcesContent":["import { Component, input } from '@angular/core';\r\nimport { NgIconComponent } from '@ng-icons/core';\r\n\r\n@Component({\r\n selector: 'fui-icon',\r\n standalone: true,\r\n imports: [NgIconComponent],\r\n template: `<ng-icon [name]=\"name()\"></ng-icon>`\r\n})\r\nexport class IconComponent {\r\n name = input.required<string>();\r\n}\r\n","import { Component, ElementRef, EventEmitter, Output, input, viewChild } from '@angular/core';\r\nimport { NgClass } from '@angular/common';\r\nimport { timer } from 'rxjs';\r\n\r\n@Component({\r\n selector: 'fui-button',\r\n standalone: true,\r\n imports: [NgClass],\r\n templateUrl: './button.component.html'\r\n})\r\nexport class ButtonComponent {\r\n /** The label of the Button. */\r\n label = input('');\r\n /** Flag to show the butto in a disabled state. */\r\n disabled = input(false);\r\n /** An event called if the button is tapped. */\r\n @Output()\r\n tap = new EventEmitter<void>();\r\n\r\n waveSpan = viewChild<ElementRef>('wave');\r\n\r\n animate = false;\r\n\r\n click(event: { offsetX: number, offsetY: number}) {\r\n if(!this.disabled())\r\n {\r\n const waveSpan = this.waveSpan();\r\n if(waveSpan) {\r\n waveSpan.nativeElement.style.left = event.offsetX + 'px';\r\n waveSpan.nativeElement.style.top = event.offsetY + 'px';\r\n }\r\n this.animate = true;\r\n timer(800).subscribe(() => this.animate = false);\r\n this.tap.next();\r\n }\r\n }\r\n\r\n}\r\n","<button (click)=\"click($event)\" [disabled]=\"disabled()\" [class.bg-primary]=\"!disabled()\" [class.bg-outline]=\"disabled()\" class=\"rounded overflow-hidden group relative hover:shadow\" >\r\n <div class=\"text-on-primary p-component rounded\" [ngClass]=\"{'group-hover:bg-hover': !animate, 'bg-primary': animate}\">{{label()}}</div>\r\n <span #wave class=\"absolute w-full h-full rounded-[50%] bg-tint animate-ripple\" [ngClass]=\"{'hidden': !animate}\"></span>\r\n</button>\r\n","import { Provider } from \"@angular/core\";\r\nimport { provideIcons, provideNgIconsConfig } from '@ng-icons/core';\r\nimport { heroArrowLeft, heroUser } from '@ng-icons/heroicons/outline';\r\nimport { matMoreVertOutline } from '@ng-icons/material-icons/outline';\r\n\r\nexport function provideFancyUi(): Provider[] {\r\n return [\r\n provideIcons({heroArrowLeft, heroUser, matMoreVertOutline}),\r\n provideNgIconsConfig({\r\n size: '100%',\r\n }),\r\n ];\r\n}\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|