@eagami/ui 5.11.0 → 5.12.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/fesm2022/eagami-ui.mjs +26 -24
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/eagami-ui.d.ts +6 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eagami/ui",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.12.0",
|
|
4
4
|
"description": "Lightweight, accessible, themeable Angular UI component library and icon set built on CSS custom properties",
|
|
5
5
|
"author": "Michal Wiraszka <michal@eagami.com>",
|
|
6
6
|
"license": "MIT",
|
package/types/eagami-ui.d.ts
CHANGED
|
@@ -1890,9 +1890,9 @@ type EagamiWordmarkVariant = 'default' | 'byline' | 'tagline';
|
|
|
1890
1890
|
/** Layout of the wordmark: `stacked` for multi-line, `inline` for a single line with em-dash separators. */
|
|
1891
1891
|
type EagamiWordmarkLayout = 'stacked' | 'inline';
|
|
1892
1892
|
/**
|
|
1893
|
-
* Branded eagami wordmark logo.
|
|
1894
|
-
*
|
|
1895
|
-
* inline layouts.
|
|
1893
|
+
* Branded eagami wordmark logo. `size` is the brand text's font-size in px
|
|
1894
|
+
* and the rest of the lockup scales proportionally from it; supports three
|
|
1895
|
+
* content variants paired with stacked or inline layouts.
|
|
1896
1896
|
*/
|
|
1897
1897
|
declare class EagamiWordmarkComponent {
|
|
1898
1898
|
protected readonly i18n: EagamiI18nService;
|
|
@@ -1900,6 +1900,8 @@ declare class EagamiWordmarkComponent {
|
|
|
1900
1900
|
readonly variant: _angular_core.InputSignal<EagamiWordmarkVariant>;
|
|
1901
1901
|
readonly layout: _angular_core.InputSignal<EagamiWordmarkLayout>;
|
|
1902
1902
|
readonly size: _angular_core.InputSignal<number>;
|
|
1903
|
+
/** Renders the wordmark as a link to eagami.com; disable to embed it inside a custom link or static context. */
|
|
1904
|
+
readonly linked: _angular_core.InputSignal<boolean>;
|
|
1903
1905
|
/** Clamps size to a 10px floor and falls back to the default when cleared. */
|
|
1904
1906
|
protected readonly resolvedSize: _angular_core.Signal<number>;
|
|
1905
1907
|
protected readonly showOverline: _angular_core.Signal<boolean>;
|
|
@@ -1907,7 +1909,7 @@ declare class EagamiWordmarkComponent {
|
|
|
1907
1909
|
protected readonly brandText: _angular_core.Signal<string>;
|
|
1908
1910
|
protected readonly ariaLabel: _angular_core.Signal<string>;
|
|
1909
1911
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EagamiWordmarkComponent, never>;
|
|
1910
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EagamiWordmarkComponent, "ea-eagami-wordmark", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1912
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EagamiWordmarkComponent, "ea-eagami-wordmark", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "linked": { "alias": "linked"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1911
1913
|
}
|
|
1912
1914
|
|
|
1913
1915
|
/** Visual size of the empty-state block. */
|