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.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?: "normal" | "start" | "end" | "center" | "between" | "around" | "evenly" | "stretch" | null | undefined;
325
- justifyItems?: "start" | "end" | "center" | "stretch" | null | undefined;
326
- alignContent?: "normal" | "start" | "end" | "center" | "between" | "around" | "evenly" | "stretch" | "baseline" | null | undefined;
327
- alignItems?: "start" | "end" | "center" | "stretch" | "baseline" | null | undefined;
328
- placeContent?: "start" | "end" | "center" | "between" | "around" | "evenly" | "stretch" | "baseline" | null | undefined;
329
- placeItems?: "start" | "end" | "center" | "stretch" | "baseline" | null | undefined;
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<{