codexly-ui 0.10.98 → 0.10.100
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/codexly-ui.mjs +132 -85
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +13 -4
package/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -532,11 +532,12 @@ declare class ClxStepperComponent {
|
|
|
532
532
|
label: string;
|
|
533
533
|
desc: string;
|
|
534
534
|
connector: string;
|
|
535
|
+
connectorOffsetH: string;
|
|
535
536
|
}>;
|
|
536
537
|
protected readonly _hostClass: _angular_core.Signal<"flex flex-col w-full" | "flex flex-row items-start w-full">;
|
|
537
|
-
protected readonly _stepWrapClass: _angular_core.Signal<"flex flex-
|
|
538
|
-
protected readonly
|
|
539
|
-
protected readonly _labelWrapClass: _angular_core.Signal<"flex flex-col items-center text-center mt-2 px-1" | "flex flex-col justify-center pb-6 min-w-0">;
|
|
538
|
+
protected readonly _stepWrapClass: _angular_core.Signal<"flex flex-row items-start flex-1 min-w-0" | "flex flex-row">;
|
|
539
|
+
protected readonly _circleColClass: _angular_core.Signal<string>;
|
|
540
|
+
protected readonly _labelWrapClass: _angular_core.Signal<"flex flex-col items-center text-center mt-2 px-1 max-w-[8rem]" | "flex flex-col justify-center pb-6 min-w-0">;
|
|
540
541
|
protected _circleClass(status: ClxStepperStep['status']): string;
|
|
541
542
|
protected _connectorClass(status: ClxStepperStep['status']): string;
|
|
542
543
|
protected _labelClass(status: ClxStepperStep['status']): string;
|
|
@@ -1929,12 +1930,20 @@ declare class ClxAppLayoutComponent implements OnInit, OnDestroy {
|
|
|
1929
1930
|
}
|
|
1930
1931
|
|
|
1931
1932
|
declare class ClxBrandComponent {
|
|
1933
|
+
private readonly _sanitizer;
|
|
1932
1934
|
readonly logo: _angular_core.InputSignal<string>;
|
|
1933
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>;
|
|
1934
1942
|
readonly description: _angular_core.InputSignal<string>;
|
|
1935
1943
|
readonly collapsed: _angular_core.InputSignal<boolean>;
|
|
1944
|
+
protected readonly _safeNameHtml: _angular_core.Signal<SafeHtml>;
|
|
1936
1945
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxBrandComponent, never>;
|
|
1937
|
-
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>;
|
|
1938
1947
|
}
|
|
1939
1948
|
|
|
1940
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';
|