ソースを参照

Update to v0.55.0

Angel Ruiz (aka SirKeldon) 1 年間 前
コミット
5acea0a87e

+ 9 - 0
lib/components/atoms/button/button.component.d.ts

@@ -0,0 +1,9 @@
+import * as i0 from "@angular/core";
+export declare class ButtonComponent {
+    text: string;
+    type: 'default' | 'alternate' | 'success' | 'warning' | 'error';
+    size: 'xs' | 'sm' | 'base' | 'lg' | 'xl';
+    variant: 'default' | 'outline';
+    static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
+    static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "ct-button", never, { "text": { "alias": "text"; "required": true; }; "type": { "alias": "type"; "required": false; }; "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, never, true, never>;
+}

+ 15 - 0
lib/components/atoms/icon/icon.component.d.ts

@@ -0,0 +1,15 @@
+import { OnInit } from '@angular/core';
+import * as i0 from "@angular/core";
+export declare class IconComponent implements OnInit {
+    icon: string;
+    iconClass: string;
+    fill: string;
+    strokeWidth: number;
+    strokeColor: string;
+    size: string;
+    iconPath: string;
+    ngOnInit(): void;
+    getFormattedColor(color: string): string;
+    static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
+    static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "ct-icon", never, { "icon": { "alias": "icon"; "required": false; }; "iconClass": { "alias": "iconClass"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "strokeWidth": { "alias": "strokeWidth"; "required": false; }; "strokeColor": { "alias": "strokeColor"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
+}

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "circletone",
-  "version": "0.54.0",
+  "version": "0.55.0",
   "peerDependencies": {
     "@angular/common": "^17.3.0",
     "@angular/core": "^17.3.0"