@zvoove/unity-ui 2.39.0 → 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 +61 -3
- package/dist/unity-ui.es.js +171 -169
- package/package.json +6 -6
package/dist/unity-ui.d.ts
CHANGED
|
@@ -1033,8 +1033,11 @@ export declare interface DatePickerProps extends Omit<TextFieldProps, 'onChange'
|
|
|
1033
1033
|
label: string;
|
|
1034
1034
|
/**
|
|
1035
1035
|
* The value of the date picker. <br />
|
|
1036
|
-
* For `mode="month"`,
|
|
1037
|
-
*
|
|
1036
|
+
* For `mode="month"`, use ISO format: `YYYY-MM` or `YYYY-MM-DD`
|
|
1037
|
+
* (e.g. `"2022-05"`) — the day, if present, is ignored. <br />
|
|
1038
|
+
* For `mode="week"`, use ISO week format `YYYY-Www` (preferred, e.g.
|
|
1039
|
+
* `"2026-W24"`) or any calendar day in the week as `YYYY-MM-DD`
|
|
1040
|
+
* (e.g. `"2026-06-10"`).
|
|
1038
1041
|
*/
|
|
1039
1042
|
value?: string;
|
|
1040
1043
|
/**
|
|
@@ -3280,7 +3283,7 @@ export declare interface SegmentGroupProps<T extends React.ElementType = 'button
|
|
|
3280
3283
|
|
|
3281
3284
|
export declare type SegmentValue<T = string> = T | T[];
|
|
3282
3285
|
|
|
3283
|
-
export declare const Select: ({ value, multiple, options, onChange, error, errorMessage, disabled, label, hideLabel, name, id, searchable, allowClearAll, allowSelectAll, selectAllLabel, clearAllLabel, noResultsFoundMessage, onScrollEnd, isLoadingMore, density, ...props }: SelectProps) => JSX.Element;
|
|
3286
|
+
export declare const Select: ({ value, multiple, options, onChange, error, errorMessage, disabled, label, hideLabel, name, id, searchable, allowClearAll, allowSelectAll, selectAllLabel, clearAllLabel, noResultsFoundMessage, onScrollEnd, isLoadingMore, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledby, density, ...props }: SelectProps) => JSX.Element;
|
|
3284
3287
|
|
|
3285
3288
|
export declare type SelectOption = Omit<PopUpMenuItem, 'id' | 'onClick' | 'disabled' | 'linkComponent' | 'as'> & {
|
|
3286
3289
|
/**
|
|
@@ -3819,6 +3822,61 @@ export declare interface StackProps extends React.HTMLAttributes<HTMLDivElement>
|
|
|
3819
3822
|
maxWidth?: ResponsiveType<number | string>;
|
|
3820
3823
|
}
|
|
3821
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
|
+
|
|
3822
3880
|
/**
|
|
3823
3881
|
* Slide-in panel for a root `menuItems` entry. The shell renders only the back row and spacer; pass any
|
|
3824
3882
|
* content (e.g. one or more `ListMenu`s from a micro-frontend) as `content`. Selection and `activeItem`
|