design-system-silkhaus 4.0.0 → 4.1.0-beta.tickets.1

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
@@ -1081,6 +1081,17 @@ export declare type NotificationItemProps = {
1081
1081
  onClick?: (item: NotificationItemProps) => void;
1082
1082
  };
1083
1083
 
1084
+ export declare const NumericStepper: FC<NumericStepperProps>;
1085
+
1086
+ export declare interface NumericStepperProps {
1087
+ title: string;
1088
+ infoOnTitle?: string;
1089
+ value: number;
1090
+ onChange: (newValue: number) => void;
1091
+ minValue?: number;
1092
+ maxValue?: number;
1093
+ }
1094
+
1084
1095
  export declare const OpenNewIcon: FC<{
1085
1096
  className?: string;
1086
1097
  }>;
@@ -2132,6 +2143,10 @@ export declare const ThreeDotsCircleIcon: FC<{
2132
2143
  className?: string;
2133
2144
  }>;
2134
2145
 
2146
+ export declare const TicketIcon: FC<{
2147
+ className?: string;
2148
+ }>;
2149
+
2135
2150
  export declare const Timer: default_2.ForwardRefExoticComponent<TimerProps & default_2.RefAttributes<HTMLDivElement>>;
2136
2151
 
2137
2152
  export declare interface TimerProps {