@vygruppen/spor-react 13.0.1 → 13.0.2
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/.turbo/turbo-build.log +10 -10
- package/.turbo/turbo-postinstall.log +3 -4
- package/CHANGELOG.md +9 -0
- package/dist/index.cjs +97 -134
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +97 -134
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/alert/AlertIcon.tsx +0 -56
- package/src/input/Switch.tsx +9 -1
- package/src/layout/Separator.tsx +1 -1
- package/src/theme/recipes/link.ts +1 -0
- package/src/toast/toast.tsx +5 -2
package/dist/index.d.cts
CHANGED
|
@@ -4010,8 +4010,8 @@ type ToastProps = {
|
|
|
4010
4010
|
text: string;
|
|
4011
4011
|
variant: Variant;
|
|
4012
4012
|
id?: string;
|
|
4013
|
-
}
|
|
4014
|
-
declare const createToast: ({ text, variant, id, duration, }: ToastProps) => string;
|
|
4013
|
+
} & Pick<BoxProps, "width">;
|
|
4014
|
+
declare const createToast: ({ text, variant, id, duration, width, }: ToastProps) => string;
|
|
4015
4015
|
|
|
4016
4016
|
declare const Tooltip: React$1.FC<Tooltip$1.RootProps>;
|
|
4017
4017
|
declare const TooltipTrigger: ({ ref, children, ...props }: Tooltip$1.TriggerProps & {
|
package/dist/index.d.ts
CHANGED
|
@@ -4010,8 +4010,8 @@ type ToastProps = {
|
|
|
4010
4010
|
text: string;
|
|
4011
4011
|
variant: Variant;
|
|
4012
4012
|
id?: string;
|
|
4013
|
-
}
|
|
4014
|
-
declare const createToast: ({ text, variant, id, duration, }: ToastProps) => string;
|
|
4013
|
+
} & Pick<BoxProps, "width">;
|
|
4014
|
+
declare const createToast: ({ text, variant, id, duration, width, }: ToastProps) => string;
|
|
4015
4015
|
|
|
4016
4016
|
declare const Tooltip: React$1.FC<Tooltip$1.RootProps>;
|
|
4017
4017
|
declare const TooltipTrigger: ({ ref, children, ...props }: Tooltip$1.TriggerProps & {
|