codexly-ui 0.10.97 → 0.10.99
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 +112 -81
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +4 -3
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;
|