@cmgfi/clear-ds 1.1.5 → 1.1.7
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/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +13 -0
- package/dist/index.mjs +2939 -2906
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1242,6 +1242,14 @@ export declare interface MultiSelectOption {
|
|
|
1242
1242
|
value: string;
|
|
1243
1243
|
/** When true, this option cannot be toggled. */
|
|
1244
1244
|
disabled?: boolean;
|
|
1245
|
+
/**
|
|
1246
|
+
* When set, the option is rendered as a MiscChip in the dropdown row and the
|
|
1247
|
+
* trigger pill, using the given color. Mirrors the production "tag picker"
|
|
1248
|
+
* pattern where each option carries its own color.
|
|
1249
|
+
*/
|
|
1250
|
+
chip?: {
|
|
1251
|
+
color: MiscChipColor;
|
|
1252
|
+
};
|
|
1245
1253
|
}
|
|
1246
1254
|
|
|
1247
1255
|
export declare interface MultiSelectProps {
|
|
@@ -1277,6 +1285,11 @@ export declare interface MultiSelectProps {
|
|
|
1277
1285
|
showSelectAll?: boolean;
|
|
1278
1286
|
/** Size variant that controls font size and trigger padding. sm = 10px / md = 12px (default) / lg = 14px. */
|
|
1279
1287
|
size?: 'sm' | 'md' | 'lg';
|
|
1288
|
+
/**
|
|
1289
|
+
* Optional content rendered as a sticky bottom row of the dropdown
|
|
1290
|
+
* (e.g., a "Modify Tags" action link). Mirrors PrimeNG's `footerTemplate`.
|
|
1291
|
+
*/
|
|
1292
|
+
footer?: ReactNode;
|
|
1280
1293
|
className?: string;
|
|
1281
1294
|
style?: React.CSSProperties;
|
|
1282
1295
|
}
|