@nimbus-ds/components 5.29.1-rc.1 → 5.31.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/CHANGELOG.md +13 -1
- package/dist/Accordion/index.js +1 -1
- package/dist/Alert/index.js +1 -1
- package/dist/Badge/index.js +1 -1
- package/dist/Button/index.d.ts +5 -0
- package/dist/Button/index.js +1 -1
- package/dist/CHANGELOG.md +13 -1
- package/dist/Card/index.js +1 -1
- package/dist/Checkbox/index.js +1 -1
- package/dist/Chip/index.js +1 -1
- package/dist/FileUploader/index.js +1 -1
- package/dist/Icon/index.js +1 -1
- package/dist/IconButton/index.js +1 -1
- package/dist/Input/index.js +1 -1
- package/dist/Label/index.js +1 -1
- package/dist/Link/index.js +1 -1
- package/dist/List/index.js +1 -1
- package/dist/Modal/index.js +1 -1
- package/dist/MultiSelect/index.js +1 -1
- package/dist/Pagination/index.js +1 -1
- package/dist/ProgressBar/index.js +1 -1
- package/dist/Radio/index.js +1 -1
- package/dist/ScrollPane/index.js +1 -1
- package/dist/SegmentedControl/index.js +1 -1
- package/dist/Select/index.js +1 -1
- package/dist/Sidebar/index.d.ts +0 -1
- package/dist/Sidebar/index.js +1 -1
- package/dist/Stepper/index.js +1 -1
- package/dist/Tag/index.js +1 -1
- package/dist/Text/index.js +1 -1
- package/dist/Textarea/index.d.ts +5 -0
- package/dist/Textarea/index.js +1 -1
- package/dist/Thumbnail/index.js +1 -1
- package/dist/Title/index.js +1 -1
- package/dist/Toast/index.js +1 -1
- package/dist/Toggle/index.js +1 -1
- package/dist/Tooltip/index.js +1 -1
- package/dist/components-props.json +1 -0
- package/dist/index.d.ts +10 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2167,7 +2167,6 @@ declare const sidebar: {
|
|
|
2167
2167
|
container__footer: string;
|
|
2168
2168
|
position: Record<"left" | "right", string>;
|
|
2169
2169
|
isVisible: string;
|
|
2170
|
-
removeScrollElement: string;
|
|
2171
2170
|
};
|
|
2172
2171
|
};
|
|
2173
2172
|
declare const propertiesTable: {
|
|
@@ -2252,6 +2251,11 @@ export interface ButtonProperties {
|
|
|
2252
2251
|
* @default false
|
|
2253
2252
|
*/
|
|
2254
2253
|
fullWidth?: boolean;
|
|
2254
|
+
/**
|
|
2255
|
+
* Change the size of the button.
|
|
2256
|
+
* @default medium
|
|
2257
|
+
*/
|
|
2258
|
+
size?: "medium" | "small";
|
|
2255
2259
|
}
|
|
2256
2260
|
export type ButtonBaseProps = ButtonProperties & ButtonHTMLAttributes<HTMLButtonElement>;
|
|
2257
2261
|
export declare const Button: PolymorphicForwardRefComponent<"button" | "a", ButtonBaseProps> & ButtonComponents;
|
|
@@ -2903,6 +2907,11 @@ export interface TextareaProperties {
|
|
|
2903
2907
|
* @default neutral
|
|
2904
2908
|
*/
|
|
2905
2909
|
appearance?: "neutral" | "success" | "warning" | "danger" | "ai-generative" | "transparent";
|
|
2910
|
+
/**
|
|
2911
|
+
* Highlights the field to indicate its value was generated by AI.
|
|
2912
|
+
* Applies AI gradient border, white background and an AI focus ring.
|
|
2913
|
+
*/
|
|
2914
|
+
aiGenerated?: boolean;
|
|
2906
2915
|
/**
|
|
2907
2916
|
* Number of lines to be rendered for the user to input text
|
|
2908
2917
|
* @default 2
|