@solostylist/ui-kit 1.0.94 → 1.0.96
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/main.d.ts
CHANGED
|
@@ -8,6 +8,8 @@ export { default as SButton } from './s-button/index';
|
|
|
8
8
|
export type { SButtonProps } from './s-button/index';
|
|
9
9
|
export { default as SButtonLink } from './s-button-link/index';
|
|
10
10
|
export type { SButtonLinkProps } from './s-button-link/index';
|
|
11
|
+
export { default as SCarousel } from './s-carousel/index';
|
|
12
|
+
export type { SCarouselProps } from './s-carousel/index';
|
|
11
13
|
export { default as SChatInput } from './s-chat-input/index';
|
|
12
14
|
export type { SChatInputProps } from './s-chat-input/index';
|
|
13
15
|
export { default as SChatMessage } from './s-chat-message/index';
|
|
@@ -1,42 +1,75 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { SkeletonProps } from '@mui/material';
|
|
3
3
|
/**
|
|
4
|
-
* Props interface for SLazyImage component
|
|
4
|
+
* Props interface for SLazyImage component with enhanced lazy loading capabilities
|
|
5
|
+
*
|
|
6
|
+
* Extends standard HTML image attributes while providing additional configuration
|
|
7
|
+
* for skeleton loading states, responsive dimensions, and performance optimizations.
|
|
5
8
|
*/
|
|
6
|
-
export interface SLazyImageProps {
|
|
7
|
-
/** Image source URL */
|
|
9
|
+
export interface SLazyImageProps extends React.ImgHTMLAttributes<HTMLImageElement> {
|
|
10
|
+
/** Image source URL - triggers loading and skeleton-to-image transition */
|
|
8
11
|
src: string;
|
|
9
|
-
/**
|
|
10
|
-
alt: string;
|
|
11
|
-
/** CSS class name */
|
|
12
|
-
className?: string;
|
|
13
|
-
/** Skeleton variant while loading */
|
|
12
|
+
/** Skeleton variant while loading - affects border radius and animation style */
|
|
14
13
|
variant?: SkeletonProps['variant'];
|
|
15
|
-
/** Custom styles */
|
|
14
|
+
/** Custom styles applied to both skeleton and loaded image */
|
|
16
15
|
style?: React.CSSProperties;
|
|
17
|
-
/** Image height */
|
|
16
|
+
/** Image height - supports responsive units, falls back to 'auto' if not provided */
|
|
18
17
|
height?: number | string;
|
|
19
|
-
/** Image width */
|
|
18
|
+
/** Image width - supports responsive units, falls back to '100%' if not provided */
|
|
20
19
|
width?: number | string;
|
|
21
|
-
/** Minimum width */
|
|
20
|
+
/** Minimum width constraint for skeleton and image */
|
|
22
21
|
minWidth?: number | string;
|
|
23
|
-
/** Minimum height */
|
|
22
|
+
/** Minimum height constraint for skeleton and image */
|
|
24
23
|
minHeight?: number | string;
|
|
25
24
|
}
|
|
26
25
|
/**
|
|
27
|
-
* SLazyImage - An optimized image component with
|
|
26
|
+
* SLazyImage - An optimized lazy-loading image component with enhanced performance and UX.
|
|
27
|
+
*
|
|
28
|
+
* This component provides a seamless loading experience by displaying a Material-UI skeleton
|
|
29
|
+
* placeholder while the image loads, then smoothly transitioning to the loaded image.
|
|
30
|
+
* Built with performance optimizations and proper theme integration.
|
|
28
31
|
*
|
|
29
32
|
* Key features:
|
|
30
|
-
* -
|
|
31
|
-
* -
|
|
32
|
-
* -
|
|
33
|
-
* -
|
|
34
|
-
* -
|
|
35
|
-
* -
|
|
36
|
-
* -
|
|
37
|
-
*
|
|
38
|
-
*
|
|
39
|
-
*
|
|
33
|
+
* - **Performance Optimized**: Uses display toggling instead of opacity for better rendering performance
|
|
34
|
+
* - **Theme Integration**: Leverages useTheme hook for consistent border radius handling across variants
|
|
35
|
+
* - **Smooth Transitions**: Clean skeleton-to-image transition with proper dimension management
|
|
36
|
+
* - **Responsive Design**: Intelligent dimension handling with responsive fallbacks
|
|
37
|
+
* - **Customizable Variants**: Supports Material-UI skeleton variants (rectangular, rounded, circular)
|
|
38
|
+
* - **Memory Efficient**: Proper state management prevents unnecessary re-renders
|
|
39
|
+
* - **Accessibility Ready**: Maintains all standard HTML image attributes and behaviors
|
|
40
|
+
*
|
|
41
|
+
* Performance improvements:
|
|
42
|
+
* - Display toggling (display: none/block) instead of opacity transitions for better GPU performance
|
|
43
|
+
* - Direct prop usage eliminates unnecessary state and re-renders
|
|
44
|
+
* - Theme-aware border radius calculation reduces style recalculations
|
|
45
|
+
* - Simplified onLoad handler reduces execution overhead
|
|
46
|
+
*
|
|
47
|
+
* @param props - SLazyImageProps configuration object
|
|
48
|
+
* @returns JSX.Element - Optimized image component with loading state management
|
|
49
|
+
*
|
|
50
|
+
* @example
|
|
51
|
+
* ```tsx
|
|
52
|
+
* // Basic usage with skeleton loading
|
|
53
|
+
* <SLazyImage src="/image.jpg" width={300} height={200} />
|
|
54
|
+
*
|
|
55
|
+
* // Circular avatar with custom dimensions
|
|
56
|
+
* <SLazyImage
|
|
57
|
+
* src="/avatar.jpg"
|
|
58
|
+
* variant="circular"
|
|
59
|
+
* width={80}
|
|
60
|
+
* height={80}
|
|
61
|
+
* alt="User avatar"
|
|
62
|
+
* />
|
|
63
|
+
*
|
|
64
|
+
* // Responsive image with custom styling
|
|
65
|
+
* <SLazyImage
|
|
66
|
+
* src="/hero.jpg"
|
|
67
|
+
* variant="rounded"
|
|
68
|
+
* style={{ objectFit: 'cover' }}
|
|
69
|
+
* width="100%"
|
|
70
|
+
* height={400}
|
|
71
|
+
* />
|
|
72
|
+
* ```
|
|
40
73
|
*/
|
|
41
|
-
declare const SLazyImage: ({ src, variant,
|
|
74
|
+
declare const SLazyImage: ({ src, variant, height, width, style, minWidth, minHeight, ...props }: SLazyImageProps) => React.JSX.Element;
|
|
42
75
|
export default SLazyImage;
|
|
@@ -1,59 +1,63 @@
|
|
|
1
|
-
import { j as
|
|
2
|
-
import { useId as
|
|
3
|
-
import { useTheme as j, Box as
|
|
4
|
-
const
|
|
1
|
+
import { j as a } from "../jsx-runtime-DywqP_6a.js";
|
|
2
|
+
import { useId as x, useState as f } from "react";
|
|
3
|
+
import { useTheme as j, Box as d, Skeleton as L } from "@mui/material";
|
|
4
|
+
const y = ({
|
|
5
5
|
src: u,
|
|
6
|
-
variant:
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
minHeight: c = "auto"
|
|
6
|
+
variant: e = "rounded",
|
|
7
|
+
height: o = "auto",
|
|
8
|
+
width: s = "100%",
|
|
9
|
+
style: t,
|
|
10
|
+
minWidth: m = "auto",
|
|
11
|
+
minHeight: n = "auto",
|
|
12
|
+
...i
|
|
14
13
|
}) => {
|
|
15
|
-
const
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
/* @__PURE__ */ s.jsx(
|
|
35
|
-
"img",
|
|
36
|
-
{
|
|
37
|
-
src: u,
|
|
38
|
-
alt: r,
|
|
39
|
-
style: {
|
|
40
|
-
height: e.height,
|
|
41
|
-
width: e.width,
|
|
42
|
-
display: a ? "block" : "none",
|
|
43
|
-
borderRadius: o === "circular" ? "50%" : o === "rounded" ? f.shape.borderRadius : "0px",
|
|
44
|
-
...d
|
|
45
|
-
},
|
|
46
|
-
className: m,
|
|
47
|
-
onLoad: () => {
|
|
48
|
-
(!t || !i) && h({
|
|
49
|
-
width: e.width,
|
|
50
|
-
height: e.height
|
|
51
|
-
}), p(!0);
|
|
14
|
+
const c = x(), l = j(), [r, p] = f(!1);
|
|
15
|
+
return (
|
|
16
|
+
// Container box maintains consistent dimensions throughout the loading process
|
|
17
|
+
// This prevents layout shifts and provides stable positioning for both skeleton and image
|
|
18
|
+
/* @__PURE__ */ a.jsxs(d, { height: o, width: s, children: [
|
|
19
|
+
!r && /* @__PURE__ */ a.jsx(
|
|
20
|
+
L,
|
|
21
|
+
{
|
|
22
|
+
variant: e,
|
|
23
|
+
id: `image-skeleton-${c}`,
|
|
24
|
+
animation: "wave",
|
|
25
|
+
style: {
|
|
26
|
+
height: o,
|
|
27
|
+
width: s,
|
|
28
|
+
minWidth: m,
|
|
29
|
+
minHeight: n,
|
|
30
|
+
...t
|
|
31
|
+
// User styles applied to skeleton for consistency
|
|
32
|
+
}
|
|
52
33
|
}
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
34
|
+
),
|
|
35
|
+
/* @__PURE__ */ a.jsx(
|
|
36
|
+
d,
|
|
37
|
+
{
|
|
38
|
+
component: "img",
|
|
39
|
+
src: u,
|
|
40
|
+
style: {
|
|
41
|
+
height: o,
|
|
42
|
+
width: s,
|
|
43
|
+
// Performance optimization: display toggling instead of opacity transitions
|
|
44
|
+
// This approach reduces GPU usage and improves rendering performance
|
|
45
|
+
display: r ? "block" : "none",
|
|
46
|
+
// Theme-aware border radius calculation for consistent styling
|
|
47
|
+
// Matches Material-UI skeleton variants with proper theme integration
|
|
48
|
+
borderRadius: e === "circular" ? "50%" : e === "rounded" ? l.shape.borderRadius : "0px",
|
|
49
|
+
...t
|
|
50
|
+
// User-provided styles override defaults
|
|
51
|
+
},
|
|
52
|
+
onLoad: () => {
|
|
53
|
+
p(!0);
|
|
54
|
+
},
|
|
55
|
+
...i
|
|
56
|
+
}
|
|
57
|
+
)
|
|
58
|
+
] })
|
|
59
|
+
);
|
|
56
60
|
};
|
|
57
61
|
export {
|
|
58
|
-
|
|
62
|
+
y as default
|
|
59
63
|
};
|
|
@@ -421,7 +421,7 @@ export declare const MuiButton: {
|
|
|
421
421
|
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined;
|
|
422
422
|
wordWrap?: import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap | undefined>[] | readonly import("csstype").Property.WordWrap[] | undefined;
|
|
423
423
|
writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
424
|
-
zIndex?: import("csstype").Property.ZIndex | readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
424
|
+
zIndex?: import("csstype").Property.ZIndex | readonly NonNullable<import("csstype").Property.ZIndex | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto")[] | undefined;
|
|
425
425
|
zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "normal" | "reset")[] | undefined;
|
|
426
426
|
all?: import('csstype').Globals | readonly NonNullable<import('csstype').Globals | undefined>[] | readonly import('csstype').Globals[] | undefined;
|
|
427
427
|
animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto" | "normal" | "alternate" | "alternate-reverse" | "reverse" | "backwards" | "both" | "forwards" | "none" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
|
|
@@ -1386,7 +1386,7 @@ export declare const MuiButton: {
|
|
|
1386
1386
|
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined;
|
|
1387
1387
|
wordWrap?: import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap | undefined>[] | readonly import("csstype").Property.WordWrap[] | undefined;
|
|
1388
1388
|
writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
1389
|
-
zIndex?: import("csstype").Property.ZIndex | readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
1389
|
+
zIndex?: import("csstype").Property.ZIndex | readonly NonNullable<import("csstype").Property.ZIndex | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto")[] | undefined;
|
|
1390
1390
|
zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "normal" | "reset")[] | undefined;
|
|
1391
1391
|
all?: import('csstype').Globals | readonly NonNullable<import('csstype').Globals | undefined>[] | readonly import('csstype').Globals[] | undefined;
|
|
1392
1392
|
animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto" | "normal" | "alternate" | "alternate-reverse" | "reverse" | "backwards" | "both" | "forwards" | "none" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
|
|
@@ -2351,7 +2351,7 @@ export declare const MuiButton: {
|
|
|
2351
2351
|
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined;
|
|
2352
2352
|
wordWrap?: import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap | undefined>[] | readonly import("csstype").Property.WordWrap[] | undefined;
|
|
2353
2353
|
writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
2354
|
-
zIndex?: import("csstype").Property.ZIndex | readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
2354
|
+
zIndex?: import("csstype").Property.ZIndex | readonly NonNullable<import("csstype").Property.ZIndex | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto")[] | undefined;
|
|
2355
2355
|
zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "normal" | "reset")[] | undefined;
|
|
2356
2356
|
all?: import('csstype').Globals | readonly NonNullable<import('csstype').Globals | undefined>[] | readonly import('csstype').Globals[] | undefined;
|
|
2357
2357
|
animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto" | "normal" | "alternate" | "alternate-reverse" | "reverse" | "backwards" | "both" | "forwards" | "none" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
|
|
@@ -3316,7 +3316,7 @@ export declare const MuiButton: {
|
|
|
3316
3316
|
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined;
|
|
3317
3317
|
wordWrap?: import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap | undefined>[] | readonly import("csstype").Property.WordWrap[] | undefined;
|
|
3318
3318
|
writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
3319
|
-
zIndex?: import("csstype").Property.ZIndex | readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
3319
|
+
zIndex?: import("csstype").Property.ZIndex | readonly NonNullable<import("csstype").Property.ZIndex | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto")[] | undefined;
|
|
3320
3320
|
zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "normal" | "reset")[] | undefined;
|
|
3321
3321
|
all?: import('csstype').Globals | readonly NonNullable<import('csstype').Globals | undefined>[] | readonly import('csstype').Globals[] | undefined;
|
|
3322
3322
|
animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto" | "normal" | "alternate" | "alternate-reverse" | "reverse" | "backwards" | "both" | "forwards" | "none" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
|
|
@@ -4281,7 +4281,7 @@ export declare const MuiButton: {
|
|
|
4281
4281
|
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined;
|
|
4282
4282
|
wordWrap?: import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap | undefined>[] | readonly import("csstype").Property.WordWrap[] | undefined;
|
|
4283
4283
|
writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
4284
|
-
zIndex?: import("csstype").Property.ZIndex | readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
4284
|
+
zIndex?: import("csstype").Property.ZIndex | readonly NonNullable<import("csstype").Property.ZIndex | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto")[] | undefined;
|
|
4285
4285
|
zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "normal" | "reset")[] | undefined;
|
|
4286
4286
|
all?: import('csstype').Globals | readonly NonNullable<import('csstype').Globals | undefined>[] | readonly import('csstype').Globals[] | undefined;
|
|
4287
4287
|
animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto" | "normal" | "alternate" | "alternate-reverse" | "reverse" | "backwards" | "both" | "forwards" | "none" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
|
|
@@ -5246,7 +5246,7 @@ export declare const MuiButton: {
|
|
|
5246
5246
|
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined;
|
|
5247
5247
|
wordWrap?: import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap | undefined>[] | readonly import("csstype").Property.WordWrap[] | undefined;
|
|
5248
5248
|
writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
5249
|
-
zIndex?: import("csstype").Property.ZIndex | readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
5249
|
+
zIndex?: import("csstype").Property.ZIndex | readonly NonNullable<import("csstype").Property.ZIndex | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto")[] | undefined;
|
|
5250
5250
|
zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "normal" | "reset")[] | undefined;
|
|
5251
5251
|
all?: import('csstype').Globals | readonly NonNullable<import('csstype').Globals | undefined>[] | readonly import('csstype').Globals[] | undefined;
|
|
5252
5252
|
animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto" | "normal" | "alternate" | "alternate-reverse" | "reverse" | "backwards" | "both" | "forwards" | "none" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
|
|
@@ -605,7 +605,7 @@ export declare const components: {
|
|
|
605
605
|
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined;
|
|
606
606
|
wordWrap?: import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap | undefined>[] | readonly import("csstype").Property.WordWrap[] | undefined;
|
|
607
607
|
writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
608
|
-
zIndex?: import("csstype").Property.ZIndex | readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
608
|
+
zIndex?: import("csstype").Property.ZIndex | readonly NonNullable<import("csstype").Property.ZIndex | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto")[] | undefined;
|
|
609
609
|
zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "normal" | "reset")[] | undefined;
|
|
610
610
|
all?: import('csstype').Globals | readonly NonNullable<import('csstype').Globals | undefined>[] | readonly import('csstype').Globals[] | undefined;
|
|
611
611
|
animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto" | "normal" | "alternate" | "alternate-reverse" | "reverse" | "backwards" | "both" | "forwards" | "none" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
|
|
@@ -1570,7 +1570,7 @@ export declare const components: {
|
|
|
1570
1570
|
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined;
|
|
1571
1571
|
wordWrap?: import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap | undefined>[] | readonly import("csstype").Property.WordWrap[] | undefined;
|
|
1572
1572
|
writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
1573
|
-
zIndex?: import("csstype").Property.ZIndex | readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
1573
|
+
zIndex?: import("csstype").Property.ZIndex | readonly NonNullable<import("csstype").Property.ZIndex | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto")[] | undefined;
|
|
1574
1574
|
zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "normal" | "reset")[] | undefined;
|
|
1575
1575
|
all?: import('csstype').Globals | readonly NonNullable<import('csstype').Globals | undefined>[] | readonly import('csstype').Globals[] | undefined;
|
|
1576
1576
|
animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto" | "normal" | "alternate" | "alternate-reverse" | "reverse" | "backwards" | "both" | "forwards" | "none" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
|
|
@@ -2535,7 +2535,7 @@ export declare const components: {
|
|
|
2535
2535
|
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined;
|
|
2536
2536
|
wordWrap?: import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap | undefined>[] | readonly import("csstype").Property.WordWrap[] | undefined;
|
|
2537
2537
|
writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
2538
|
-
zIndex?: import("csstype").Property.ZIndex | readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
2538
|
+
zIndex?: import("csstype").Property.ZIndex | readonly NonNullable<import("csstype").Property.ZIndex | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto")[] | undefined;
|
|
2539
2539
|
zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "normal" | "reset")[] | undefined;
|
|
2540
2540
|
all?: import('csstype').Globals | readonly NonNullable<import('csstype').Globals | undefined>[] | readonly import('csstype').Globals[] | undefined;
|
|
2541
2541
|
animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto" | "normal" | "alternate" | "alternate-reverse" | "reverse" | "backwards" | "both" | "forwards" | "none" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
|
|
@@ -3500,7 +3500,7 @@ export declare const components: {
|
|
|
3500
3500
|
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined;
|
|
3501
3501
|
wordWrap?: import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap | undefined>[] | readonly import("csstype").Property.WordWrap[] | undefined;
|
|
3502
3502
|
writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
3503
|
-
zIndex?: import("csstype").Property.ZIndex | readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
3503
|
+
zIndex?: import("csstype").Property.ZIndex | readonly NonNullable<import("csstype").Property.ZIndex | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto")[] | undefined;
|
|
3504
3504
|
zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "normal" | "reset")[] | undefined;
|
|
3505
3505
|
all?: import('csstype').Globals | readonly NonNullable<import('csstype').Globals | undefined>[] | readonly import('csstype').Globals[] | undefined;
|
|
3506
3506
|
animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto" | "normal" | "alternate" | "alternate-reverse" | "reverse" | "backwards" | "both" | "forwards" | "none" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
|
|
@@ -4465,7 +4465,7 @@ export declare const components: {
|
|
|
4465
4465
|
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined;
|
|
4466
4466
|
wordWrap?: import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap | undefined>[] | readonly import("csstype").Property.WordWrap[] | undefined;
|
|
4467
4467
|
writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
4468
|
-
zIndex?: import("csstype").Property.ZIndex | readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
4468
|
+
zIndex?: import("csstype").Property.ZIndex | readonly NonNullable<import("csstype").Property.ZIndex | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto")[] | undefined;
|
|
4469
4469
|
zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "normal" | "reset")[] | undefined;
|
|
4470
4470
|
all?: import('csstype').Globals | readonly NonNullable<import('csstype').Globals | undefined>[] | readonly import('csstype').Globals[] | undefined;
|
|
4471
4471
|
animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto" | "normal" | "alternate" | "alternate-reverse" | "reverse" | "backwards" | "both" | "forwards" | "none" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
|
|
@@ -5430,7 +5430,7 @@ export declare const components: {
|
|
|
5430
5430
|
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined;
|
|
5431
5431
|
wordWrap?: import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap | undefined>[] | readonly import("csstype").Property.WordWrap[] | undefined;
|
|
5432
5432
|
writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
5433
|
-
zIndex?: import("csstype").Property.ZIndex | readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
5433
|
+
zIndex?: import("csstype").Property.ZIndex | readonly NonNullable<import("csstype").Property.ZIndex | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto")[] | undefined;
|
|
5434
5434
|
zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "normal" | "reset")[] | undefined;
|
|
5435
5435
|
all?: import('csstype').Globals | readonly NonNullable<import('csstype').Globals | undefined>[] | readonly import('csstype').Globals[] | undefined;
|
|
5436
5436
|
animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto" | "normal" | "alternate" | "alternate-reverse" | "reverse" | "backwards" | "both" | "forwards" | "none" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
|