design-system-silkhaus 4.1.0-beta.tickets.2 → 4.1.0-beta.tickets.4
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/app/index.js +1 -1
- package/dist/{index-BhaJhiDa.js → index-C31al3xl.js} +415 -427
- package/dist/index.d.ts +35 -1
- package/dist/index.js +3759 -3637
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -203,6 +203,7 @@ export declare interface BookingQuoteLineItemType {
|
|
|
203
203
|
key_name: string;
|
|
204
204
|
display_name: string;
|
|
205
205
|
currency_converted_amount: string;
|
|
206
|
+
formatted_currency_converted_amount?: string;
|
|
206
207
|
type: string;
|
|
207
208
|
description?: string;
|
|
208
209
|
}
|
|
@@ -281,9 +282,13 @@ export declare interface ButtonsGroupSelectorProps extends HTMLAttributes<HTMLDi
|
|
|
281
282
|
*/
|
|
282
283
|
buttonsContainerClassName?: string;
|
|
283
284
|
/**
|
|
284
|
-
* className to applied on each button
|
|
285
|
+
* className to applied on each button. This is applied to the wrapping div inside button component
|
|
285
286
|
*/
|
|
286
287
|
buttonClassName?: string;
|
|
288
|
+
/**
|
|
289
|
+
* buttonClassName to applied on each button. This is applied to the button element inside Button component
|
|
290
|
+
*/
|
|
291
|
+
innerButtonClassName?: string;
|
|
287
292
|
}
|
|
288
293
|
|
|
289
294
|
export declare const CalendarIcon: FC<{
|
|
@@ -344,6 +349,10 @@ export declare const CheckInIcon: FC<{
|
|
|
344
349
|
className?: string;
|
|
345
350
|
}>;
|
|
346
351
|
|
|
352
|
+
export declare const CheckMarkCircleEmptyIcon: FC<{
|
|
353
|
+
className?: string;
|
|
354
|
+
}>;
|
|
355
|
+
|
|
347
356
|
export declare const CheckmarkCircleIcon: FC<{
|
|
348
357
|
className?: string;
|
|
349
358
|
}>;
|
|
@@ -364,6 +373,10 @@ export declare const ChevronRightRegularIcon: FC<{
|
|
|
364
373
|
className?: string;
|
|
365
374
|
}>;
|
|
366
375
|
|
|
376
|
+
export declare const ChildCareIcon: FC<{
|
|
377
|
+
className?: string;
|
|
378
|
+
}>;
|
|
379
|
+
|
|
367
380
|
export declare const ClipboardIcon: FC<{
|
|
368
381
|
className?: string;
|
|
369
382
|
}>;
|
|
@@ -376,6 +389,10 @@ export declare const CloseIcon: FC<{
|
|
|
376
389
|
className?: string;
|
|
377
390
|
}>;
|
|
378
391
|
|
|
392
|
+
export declare const CloseMarkCircleEmptyIcon: FC<{
|
|
393
|
+
className?: string;
|
|
394
|
+
}>;
|
|
395
|
+
|
|
379
396
|
export declare function cn(...inputs: ClassValue[]): string;
|
|
380
397
|
|
|
381
398
|
export declare const ComputerIcon: FC<{
|
|
@@ -544,10 +561,18 @@ export declare const DiamondShineIcon: FC<{
|
|
|
544
561
|
className?: string;
|
|
545
562
|
}>;
|
|
546
563
|
|
|
564
|
+
export declare const DiscountIcon: FC<{
|
|
565
|
+
className?: string;
|
|
566
|
+
}>;
|
|
567
|
+
|
|
547
568
|
export declare const DocumentsIcon: FC<{
|
|
548
569
|
className?: string;
|
|
549
570
|
}>;
|
|
550
571
|
|
|
572
|
+
export declare const DoorIcon: FC<{
|
|
573
|
+
className?: string;
|
|
574
|
+
}>;
|
|
575
|
+
|
|
551
576
|
export declare const DoorLockIcon: FC<{
|
|
552
577
|
className?: string;
|
|
553
578
|
}>;
|
|
@@ -570,6 +595,10 @@ export declare const DumbbellIcon: FC<{
|
|
|
570
595
|
className?: string;
|
|
571
596
|
}>;
|
|
572
597
|
|
|
598
|
+
export declare const EventAvailableIcon: FC<{
|
|
599
|
+
className?: string;
|
|
600
|
+
}>;
|
|
601
|
+
|
|
573
602
|
export declare const FamilyIcon: FC<{
|
|
574
603
|
className?: string;
|
|
575
604
|
}>;
|
|
@@ -916,6 +945,10 @@ export declare const LocationIcon: FC<{
|
|
|
916
945
|
className?: string;
|
|
917
946
|
}>;
|
|
918
947
|
|
|
948
|
+
export declare const LockedDateIcon: FC<{
|
|
949
|
+
className?: string;
|
|
950
|
+
}>;
|
|
951
|
+
|
|
919
952
|
export declare const LockIcon: FC<{
|
|
920
953
|
className?: string;
|
|
921
954
|
}>;
|
|
@@ -1580,6 +1613,7 @@ export declare type SlickImageCarouselProps = {
|
|
|
1580
1613
|
* @default false
|
|
1581
1614
|
*/
|
|
1582
1615
|
rtl?: boolean;
|
|
1616
|
+
sliderClassName?: string;
|
|
1583
1617
|
};
|
|
1584
1618
|
|
|
1585
1619
|
export declare const SofaBedIcon: FC<{
|