design-system-silkhaus 2.2.0-beta.travel-list.3 → 2.2.0-beta.travel-list.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/index.cjs +36 -36
- package/dist/index.d.ts +9 -0
- package/dist/index.js +5943 -5873
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -120,6 +120,10 @@ export declare interface BookingQuoteLineItemType {
|
|
|
120
120
|
description?: string;
|
|
121
121
|
}
|
|
122
122
|
|
|
123
|
+
export declare const BuildingIcon: FC<{
|
|
124
|
+
className?: string;
|
|
125
|
+
}>;
|
|
126
|
+
|
|
123
127
|
export declare const Button: default_2.ForwardRefExoticComponent<ButtonProps & default_2.RefAttributes<HTMLButtonElement>>;
|
|
124
128
|
|
|
125
129
|
export declare interface ButtonProps extends default_2.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
@@ -157,6 +161,10 @@ export declare interface ButtonsGroupSelectorProps extends HTMLAttributes<HTMLDi
|
|
|
157
161
|
minSelectionError?: string;
|
|
158
162
|
}
|
|
159
163
|
|
|
164
|
+
export declare const CalendarIcon: FC<{
|
|
165
|
+
className?: string;
|
|
166
|
+
}>;
|
|
167
|
+
|
|
160
168
|
export declare const Card: React_2.ForwardRefExoticComponent<CardProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
161
169
|
|
|
162
170
|
export declare const CardContent: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLDivElement> & React_2.RefAttributes<HTMLDivElement>>;
|
|
@@ -187,6 +195,7 @@ export declare interface CheckboxProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
187
195
|
onSelectionChange: () => void;
|
|
188
196
|
label: string;
|
|
189
197
|
onClick?: (e: default_2.MouseEvent) => void;
|
|
198
|
+
disabled?: boolean;
|
|
190
199
|
}
|
|
191
200
|
|
|
192
201
|
export declare const CheckmarkCircleIcon: FC<{
|