design-system-silkhaus 0.0.87-beta.corporate-listing-card.0 → 0.0.87-beta.corporate-long-term-pricing.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/index.cjs +25 -25
- package/dist/index.d.ts +8 -9
- package/dist/index.js +1154 -1154
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -313,15 +313,9 @@ export declare const MobileMultiSelectFilterDropDown: React_2.ForwardRefExoticCo
|
|
|
313
313
|
|
|
314
314
|
export declare interface MobileMultiSelectFilterDropDownProps extends HTMLAttributes<HTMLDivElement> {
|
|
315
315
|
label?: string;
|
|
316
|
-
value?: Array<
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
options: Array<{
|
|
320
|
-
label: string;
|
|
321
|
-
}>;
|
|
322
|
-
onSelectionChange?: (selected: Array<{
|
|
323
|
-
label: string;
|
|
324
|
-
}>) => void;
|
|
316
|
+
value?: Array<Option_2>;
|
|
317
|
+
options: Array<Option_2>;
|
|
318
|
+
onSelectionChange?: (selected: Array<Option_2>) => void;
|
|
325
319
|
placeholder?: string;
|
|
326
320
|
selected?: boolean;
|
|
327
321
|
setCheckBoxValue?: boolean;
|
|
@@ -349,6 +343,11 @@ export declare interface MobileSelectCardDropDownProps extends HTMLAttributes<HT
|
|
|
349
343
|
|
|
350
344
|
export declare const MobileTootip: FC<PropsWithChildren<TooltipProps>>;
|
|
351
345
|
|
|
346
|
+
declare interface Option_2 {
|
|
347
|
+
label: string;
|
|
348
|
+
id?: number;
|
|
349
|
+
}
|
|
350
|
+
|
|
352
351
|
export declare const QuestionMarkIcon: FC<{
|
|
353
352
|
className?: string;
|
|
354
353
|
}>;
|