@zvoove/unity-ui 2.39.1 → 2.40.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/dist/bin/cli.mjs +10 -0
- package/dist/bin/generate-skills.mjs +8 -0
- package/dist/llms.txt +26 -0
- package/dist/unity-ui.cjs.js +1 -1
- package/dist/unity-ui.css +1 -1
- package/dist/unity-ui.d.ts +55 -0
- package/dist/unity-ui.es.js +35 -33
- package/package.json +1 -1
package/dist/unity-ui.d.ts
CHANGED
|
@@ -3822,6 +3822,61 @@ export declare interface StackProps extends React.HTMLAttributes<HTMLDivElement>
|
|
|
3822
3822
|
maxWidth?: ResponsiveType<number | string>;
|
|
3823
3823
|
}
|
|
3824
3824
|
|
|
3825
|
+
declare const STATUS_STEPPER_STATUSES: readonly ["idle", "active", "failed", "blocked", "completed"];
|
|
3826
|
+
|
|
3827
|
+
export declare const StatusStepper: {
|
|
3828
|
+
({ steps, mode, compactStepLabel, ariaLabel, statusLabels, }: StatusStepperProps): JSX.Element;
|
|
3829
|
+
displayName: string;
|
|
3830
|
+
};
|
|
3831
|
+
|
|
3832
|
+
export declare interface StatusStepperProps {
|
|
3833
|
+
/**
|
|
3834
|
+
* The steps to display. Steps are rendered in ascending order.
|
|
3835
|
+
*/
|
|
3836
|
+
steps: StatusStepperStep[];
|
|
3837
|
+
/**
|
|
3838
|
+
* The presentation mode. Compact mode shows one current-step caption;
|
|
3839
|
+
* full mode shows a label below every tile.
|
|
3840
|
+
* @default 'compact'
|
|
3841
|
+
*/
|
|
3842
|
+
mode?: 'compact' | 'full';
|
|
3843
|
+
/**
|
|
3844
|
+
* The prefix used in the compact current-step caption.
|
|
3845
|
+
* @default 'Schritt'
|
|
3846
|
+
*/
|
|
3847
|
+
compactStepLabel?: string;
|
|
3848
|
+
/**
|
|
3849
|
+
* The accessible label for the stepper.
|
|
3850
|
+
* @default 'Statusschritte'
|
|
3851
|
+
*/
|
|
3852
|
+
ariaLabel?: string;
|
|
3853
|
+
/**
|
|
3854
|
+
* Accessible labels for each status. Unspecified statuses use German
|
|
3855
|
+
* defaults.
|
|
3856
|
+
*/
|
|
3857
|
+
statusLabels?: Partial<Record<StatusStepperStatus, string>>;
|
|
3858
|
+
}
|
|
3859
|
+
|
|
3860
|
+
export declare type StatusStepperStatus = (typeof STATUS_STEPPER_STATUSES)[number];
|
|
3861
|
+
|
|
3862
|
+
export declare interface StatusStepperStep {
|
|
3863
|
+
/**
|
|
3864
|
+
* The step's display order.
|
|
3865
|
+
*/
|
|
3866
|
+
order: number;
|
|
3867
|
+
/**
|
|
3868
|
+
* The step's label.
|
|
3869
|
+
*/
|
|
3870
|
+
label: string;
|
|
3871
|
+
/**
|
|
3872
|
+
* The step's visual status.
|
|
3873
|
+
*
|
|
3874
|
+
* `completed` is supported for the green completed state shown in the
|
|
3875
|
+
* component references.
|
|
3876
|
+
*/
|
|
3877
|
+
status: StatusStepperStatus;
|
|
3878
|
+
}
|
|
3879
|
+
|
|
3825
3880
|
/**
|
|
3826
3881
|
* Slide-in panel for a root `menuItems` entry. The shell renders only the back row and spacer; pass any
|
|
3827
3882
|
* content (e.g. one or more `ListMenu`s from a micro-frontend) as `content`. Selection and `activeItem`
|