codexly-ui 0.10.99 → 0.10.101
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
package/types/codexly-ui.d.ts
CHANGED
|
@@ -1930,12 +1930,20 @@ declare class ClxAppLayoutComponent implements OnInit, OnDestroy {
|
|
|
1930
1930
|
}
|
|
1931
1931
|
|
|
1932
1932
|
declare class ClxBrandComponent {
|
|
1933
|
+
private readonly _sanitizer;
|
|
1933
1934
|
readonly logo: _angular_core.InputSignal<string>;
|
|
1934
1935
|
readonly name: _angular_core.InputSignal<string>;
|
|
1936
|
+
/** Optional rich-text brand name (e.g. per-word colored spans) — takes over from the plain
|
|
1937
|
+
* `name` text when set, which still backs the logo's `alt` and the fallback rendering. Caller
|
|
1938
|
+
* is responsible for only ever passing admin-authored content here, never unescaped user input —
|
|
1939
|
+
* this component trusts it as-is (bypassSecurityTrustHtml), same as ClxSocialIconComponent's
|
|
1940
|
+
* internal SVG markup. */
|
|
1941
|
+
readonly nameHtml: _angular_core.InputSignal<string | null | undefined>;
|
|
1935
1942
|
readonly description: _angular_core.InputSignal<string>;
|
|
1936
1943
|
readonly collapsed: _angular_core.InputSignal<boolean>;
|
|
1944
|
+
protected readonly _safeNameHtml: _angular_core.Signal<SafeHtml>;
|
|
1937
1945
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxBrandComponent, never>;
|
|
1938
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxBrandComponent, "clx-brand", never, { "logo": { "alias": "logo"; "required": true; "isSignal": true; }; "name": { "alias": "name"; "required": true; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1946
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxBrandComponent, "clx-brand", never, { "logo": { "alias": "logo"; "required": true; "isSignal": true; }; "name": { "alias": "name"; "required": true; "isSignal": true; }; "nameHtml": { "alias": "nameHtml"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1939
1947
|
}
|
|
1940
1948
|
|
|
1941
1949
|
type ClxFontFamily = 'Roboto' | 'Inter' | 'Poppins' | 'Plus Jakarta Sans' | 'Nunito' | 'DM Sans' | 'Geist' | 'Lato' | 'Montserrat' | 'Open Sans' | 'Work Sans' | 'Manrope' | 'Sora' | 'Outfit' | 'Rubik' | 'Source Sans 3' | 'Space Grotesk' | 'Merriweather' | 'Playfair Display' | 'Lora' | 'PT Serif' | 'Caveat' | 'Dancing Script' | 'Cinzel' | 'Berkshire Swash' | 'JetBrains Mono' | 'Orbitron' | 'UnifrakturMaguntia' | 'Pirata One' | 'Press Start 2P' | 'Bungee';
|