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/app/index.d.ts +35 -3
- package/dist/app/index.js +7 -6
- package/dist/{index-CS40ZeSb.js → index-DoiZI9y1.js} +1461 -1397
- package/dist/index.d.ts +15 -0
- package/dist/index.js +2963 -2893
- package/dist/style.css +1 -1
- package/dist/tailwind.config.js +27 -0
- package/package.json +1 -1
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 {
|