@nimbus-ds/components 5.38.1 → 5.39.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 +6 -0
- package/dist/CHANGELOG.md +6 -0
- package/dist/Checkbox/index.d.ts +6 -0
- package/dist/Checkbox/index.js +1 -1
- package/dist/components-props.json +1 -1
- package/dist/index.d.ts +6 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2396,6 +2396,12 @@ export interface CheckboxProperties {
|
|
|
2396
2396
|
* Text to be rendered inside the component.
|
|
2397
2397
|
*/
|
|
2398
2398
|
label?: string;
|
|
2399
|
+
/**
|
|
2400
|
+
* Highlights the checkbox to indicate its value was generated by AI.
|
|
2401
|
+
* Applies AI gradient border that persists regardless of checked state.
|
|
2402
|
+
* @default false
|
|
2403
|
+
*/
|
|
2404
|
+
aiGenerated?: boolean;
|
|
2399
2405
|
}
|
|
2400
2406
|
export type CheckboxProps = CheckboxProperties & InputHTMLAttributes<HTMLInputElement>;
|
|
2401
2407
|
export declare const Checkbox: React.FC<CheckboxProps> & CheckboxComponents;
|