ng-luna 0.4.0 → 0.4.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/README.md +1 -1
- package/controls/icons/icon.component.d.ts +12 -0
- package/controls/icons/index.d.ts +2 -0
- package/controls/index.d.ts +1 -0
- package/fesm2022/ng-luna.mjs +46 -21
- package/fesm2022/ng-luna.mjs.map +1 -1
- package/package.json +1 -1
- package/theme/_palette.scss +1 -0
- package/theme/_reset.scss +72 -2
package/README.md
CHANGED
|
@@ -649,9 +649,9 @@ ng-luna/
|
|
|
649
649
|
|
|
650
650
|
## Dependencies
|
|
651
651
|
|
|
652
|
+
- **@angular/cdk** (19.x.x) - Angular Component Dev Kit
|
|
652
653
|
- **@ibm/plex** (v6.4.1) - IBM Plex font families (fonts are bundled with the library)
|
|
653
654
|
- **lucide-static** - Lucide icon set (icons are bundled with the library)
|
|
654
|
-
- **@angular/cdk** (19.x.x) - Angular Component Dev Kit
|
|
655
655
|
|
|
656
656
|
## Publishing
|
|
657
657
|
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export type IconSize = '12' | '16' | '20' | '24' | '32' | '48';
|
|
4
|
+
export declare class IconComponent {
|
|
5
|
+
private sanitizer;
|
|
6
|
+
size: IconSize;
|
|
7
|
+
set svg(value: string);
|
|
8
|
+
sanitizedSvg: SafeHtml;
|
|
9
|
+
constructor(sanitizer: DomSanitizer);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "luna-icon", never, { "size": { "alias": "size"; "required": false; }; "svg": { "alias": "svg"; "required": true; }; }, {}, never, never, true, never>;
|
|
12
|
+
}
|
package/controls/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './button/button.component';
|
|
2
2
|
export * from './checkbox/checkbox.component';
|
|
3
3
|
export * from './fieldset/fieldset.component';
|
|
4
|
+
export * from './icons';
|
|
4
5
|
export * from './input/input.component';
|
|
5
6
|
export * from './progress/progress.component';
|
|
6
7
|
export * from './radio/radio.component';
|