@seace/ui 0.0.1 → 0.0.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seace/ui",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.2.0",
6
6
  "@angular/core": "^21.2.0"
@@ -1,8 +1,94 @@
1
- import * as i0 from '@angular/core';
1
+ import * as _angular_core from '@angular/core';
2
+ import { SafeHtml } from '@angular/platform-browser';
2
3
 
3
- declare class Ui {
4
- static ɵfac: i0.ɵɵFactoryDeclaration<Ui, never>;
5
- static ɵcmp: i0.ɵɵComponentDeclaration<Ui, "lib-ui", never, {}, {}, never, never, true, never>;
4
+ declare class IconComponent {
5
+ #private;
6
+ name: _angular_core.InputSignal<string>;
7
+ size: _angular_core.InputSignal<number>;
8
+ svg: _angular_core.Signal<SafeHtml | null>;
9
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<IconComponent, never>;
10
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<IconComponent, "ui-icon", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
11
  }
7
12
 
8
- export { Ui };
13
+ declare class IconRegistry {
14
+ #private;
15
+ registerCategory(icons: Record<string, string>): void;
16
+ get(name: string): string | null;
17
+ has(name: string): boolean;
18
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<IconRegistry, never>;
19
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<IconRegistry>;
20
+ }
21
+
22
+ declare const ICONS_ARROWS: Record<string, string>;
23
+
24
+ declare const ICONS_AUDIO_VIDEO: Record<string, string>;
25
+
26
+ declare const ICONS_BELL: Record<string, string>;
27
+
28
+ declare const ICONS_BRANDS: Record<string, string>;
29
+
30
+ declare const ICONS_CAMERA: Record<string, string>;
31
+
32
+ declare const ICONS_CHART: Record<string, string>;
33
+
34
+ declare const ICONS_CLOUD: Record<string, string>;
35
+
36
+ declare const ICONS_COLOR_ICONS: Record<string, string>;
37
+
38
+ declare const ICONS_DOCUMENTS: Record<string, string>;
39
+
40
+ declare const ICONS_EDITOR: Record<string, string>;
41
+
42
+ declare const ICONS_FLAGS: Record<string, string>;
43
+
44
+ declare const ICONS_HOME: Record<string, string>;
45
+
46
+ declare const ICONS_IMAGE: Record<string, string>;
47
+
48
+ declare const ICONS_MESSAGE: Record<string, string>;
49
+
50
+ declare const ICONS_MONEY: Record<string, string>;
51
+
52
+ declare const ICONS_NUMBER: Record<string, string>;
53
+
54
+ declare const ICONS_OBJECT: Record<string, string>;
55
+
56
+ declare const ICONS_PHONE: Record<string, string>;
57
+
58
+ declare const ICONS_SIGNAL: Record<string, string>;
59
+
60
+ declare const ICONS_SYMBOL: Record<string, string>;
61
+
62
+ declare const ICONS_SYSTEM: Record<string, string>;
63
+
64
+ declare const ICONS_TIME: Record<string, string>;
65
+
66
+ declare const ICONS_TOGGLE: Record<string, string>;
67
+
68
+ declare const ICONS_USER: Record<string, string>;
69
+
70
+ declare const ICONS_VEHICLE_MAPS: Record<string, string>;
71
+
72
+ declare const ICONS_VIEW: Record<string, string>;
73
+
74
+ declare const ICONS_ECOMMERCE: Record<string, string>;
75
+
76
+ type BadgeVariant = 'filled' | 'outlined' | 'ghost';
77
+ type BadgeSize = 'sm' | 'md' | 'lg';
78
+ type BadgeIconPosition = 'left' | 'right';
79
+ type BadgeColor = 'primary' | 'success' | 'warning' | 'danger' | 'info' | 'neutral' | 'purple' | 'orange' | 'turquoise';
80
+
81
+ declare class BadgeComponent {
82
+ color: _angular_core.InputSignal<BadgeColor>;
83
+ variant: _angular_core.InputSignal<BadgeVariant>;
84
+ size: _angular_core.InputSignal<BadgeSize>;
85
+ icon: _angular_core.InputSignal<string | null>;
86
+ iconPosition: _angular_core.InputSignal<BadgeIconPosition>;
87
+ iconSize: _angular_core.Signal<number>;
88
+ classes: _angular_core.Signal<string>;
89
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<BadgeComponent, never>;
90
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<BadgeComponent, "ui-badge", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconPosition": { "alias": "iconPosition"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
91
+ }
92
+
93
+ export { BadgeComponent, ICONS_ARROWS, ICONS_AUDIO_VIDEO, ICONS_BELL, ICONS_BRANDS, ICONS_CAMERA, ICONS_CHART, ICONS_CLOUD, ICONS_COLOR_ICONS, ICONS_DOCUMENTS, ICONS_ECOMMERCE, ICONS_EDITOR, ICONS_FLAGS, ICONS_HOME, ICONS_IMAGE, ICONS_MESSAGE, ICONS_MONEY, ICONS_NUMBER, ICONS_OBJECT, ICONS_PHONE, ICONS_SIGNAL, ICONS_SYMBOL, ICONS_SYSTEM, ICONS_TIME, ICONS_TOGGLE, ICONS_USER, ICONS_VEHICLE_MAPS, ICONS_VIEW, IconComponent, IconRegistry };
94
+ export type { BadgeColor, BadgeIconPosition, BadgeSize, BadgeVariant };