design-system-silkhaus 2.3.0-beta.travel-list.18 → 2.3.0-beta.travel-list.20
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 +47 -740
- package/dist/index.d.ts +20 -6
- package/dist/index.js +20009 -124618
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -138,6 +138,20 @@ export declare interface ButtonProps extends default_2.ButtonHTMLAttributes<HTML
|
|
|
138
138
|
endIcon?: default_2.ReactNode;
|
|
139
139
|
trackingId?: string;
|
|
140
140
|
selected?: boolean;
|
|
141
|
+
helperText?: string;
|
|
142
|
+
/**
|
|
143
|
+
* classes to apply on the outer most container which contains
|
|
144
|
+
* the button and the helper text
|
|
145
|
+
*/
|
|
146
|
+
containerClassName?: string;
|
|
147
|
+
/**
|
|
148
|
+
* classes to apply on button element
|
|
149
|
+
*/
|
|
150
|
+
className?: string;
|
|
151
|
+
/**
|
|
152
|
+
* classes to apply on the helper text
|
|
153
|
+
*/
|
|
154
|
+
helpterTextClassName?: string;
|
|
141
155
|
}
|
|
142
156
|
|
|
143
157
|
export declare const ButtonsGroupSelector: default_2.ForwardRefExoticComponent<ButtonsGroupSelectorProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
@@ -321,12 +335,12 @@ declare const gridVariants: (props?: ({
|
|
|
321
335
|
gap?: "gap0" | "gap100" | "gap150" | "gap200" | "gap300" | "gap400" | "gap600" | "gap800" | "gap1000" | "gap1200" | "gap1600" | "gap2000" | null | undefined;
|
|
322
336
|
gapX?: "gap0" | "gap100" | "gap150" | "gap200" | "gap300" | "gap400" | "gap600" | "gap800" | "gap1000" | "gap1200" | "gap1600" | "gap2000" | null | undefined;
|
|
323
337
|
gapY?: "gap0" | "gap100" | "gap150" | "gap200" | "gap300" | "gap400" | "gap600" | "gap800" | "gap1000" | "gap1200" | "gap1600" | "gap2000" | null | undefined;
|
|
324
|
-
justifyContent?: "
|
|
325
|
-
justifyItems?: "
|
|
326
|
-
alignContent?: "
|
|
327
|
-
alignItems?: "
|
|
328
|
-
placeContent?: "
|
|
329
|
-
placeItems?: "
|
|
338
|
+
justifyContent?: "end" | "start" | "normal" | "center" | "between" | "around" | "evenly" | "stretch" | null | undefined;
|
|
339
|
+
justifyItems?: "end" | "start" | "center" | "stretch" | null | undefined;
|
|
340
|
+
alignContent?: "end" | "start" | "normal" | "center" | "between" | "around" | "evenly" | "stretch" | "baseline" | null | undefined;
|
|
341
|
+
alignItems?: "end" | "start" | "center" | "stretch" | "baseline" | null | undefined;
|
|
342
|
+
placeContent?: "end" | "start" | "center" | "between" | "around" | "evenly" | "stretch" | "baseline" | null | undefined;
|
|
343
|
+
placeItems?: "end" | "start" | "center" | "stretch" | "baseline" | null | undefined;
|
|
330
344
|
} & ClassProp) | undefined) => string;
|
|
331
345
|
|
|
332
346
|
export declare const HandCursorTapIcon: FC<{
|