@faststore/components 2.0.56-alpha.0 → 2.0.57-alpha.0
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/atoms/Skeleton/Skeleton.d.ts +37 -0
- package/dist/atoms/Skeleton/Skeleton.js +10 -0
- package/dist/atoms/Skeleton/Skeleton.js.map +1 -0
- package/dist/atoms/Skeleton/index.d.ts +2 -0
- package/dist/atoms/Skeleton/index.js +2 -0
- package/dist/atoms/Skeleton/index.js.map +1 -0
- package/dist/index.d.ts +5 -3
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/atoms/Skeleton/Skeleton.tsx +76 -0
- package/src/atoms/Skeleton/index.ts +2 -0
- package/src/index.ts +5 -13
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { HTMLAttributes } from 'react';
|
|
3
|
+
interface Size {
|
|
4
|
+
width: string;
|
|
5
|
+
height: string;
|
|
6
|
+
}
|
|
7
|
+
export type BorderStyle = 'regular' | 'pill' | 'circle';
|
|
8
|
+
export interface SkeletonProps extends HTMLAttributes<HTMLDivElement> {
|
|
9
|
+
/**
|
|
10
|
+
* ID to find this component in testing tools (e.g.: cypress, testing library, and jest).
|
|
11
|
+
*/
|
|
12
|
+
testId?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Control whether skeleton should be visible or not.
|
|
15
|
+
*/
|
|
16
|
+
loading?: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* Control whether the shimmer effect should be displayed or not.
|
|
19
|
+
*/
|
|
20
|
+
shimmer?: boolean;
|
|
21
|
+
/**
|
|
22
|
+
* Specifies the skeleton element size (width, height).
|
|
23
|
+
*/
|
|
24
|
+
size: Size;
|
|
25
|
+
/**
|
|
26
|
+
* Specifies the skeleton element border radius ('regular' | 'pill' | 'circle').
|
|
27
|
+
*/
|
|
28
|
+
border?: BorderStyle;
|
|
29
|
+
/**
|
|
30
|
+
* Custom border radius for skeleton elements.
|
|
31
|
+
*/
|
|
32
|
+
borderRadius?: string;
|
|
33
|
+
}
|
|
34
|
+
declare const Skeleton: React.ForwardRefExoticComponent<SkeletonProps & {
|
|
35
|
+
children?: React.ReactNode;
|
|
36
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
37
|
+
export default Skeleton;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
const Skeleton = forwardRef(function Skeleton({ testId = 'fs-skeleton', loading = true, shimmer = true, children, size, border, borderRadius, ...otherProps }, ref) {
|
|
3
|
+
const styles = {
|
|
4
|
+
width: size.width,
|
|
5
|
+
height: size.height,
|
|
6
|
+
};
|
|
7
|
+
return loading ? (React.createElement("div", { ref: ref, "data-fs-skeleton": true, "data-testid": testId, "data-fs-skeleton-border": border ? border : null, style: borderRadius ? { ...styles, borderRadius: borderRadius } : styles, ...otherProps }, shimmer && React.createElement("div", { "data-fs-skeleton-shimmer": true }))) : (React.createElement(React.Fragment, null, children));
|
|
8
|
+
});
|
|
9
|
+
export default Skeleton;
|
|
10
|
+
//# sourceMappingURL=Skeleton.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Skeleton.js","sourceRoot":"","sources":["../../../src/atoms/Skeleton/Skeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,UAAU,EAAE,MAAM,OAAO,CAAA;AAqCzC,MAAM,QAAQ,GAAG,UAAU,CACzB,SAAS,QAAQ,CACf,EACE,MAAM,GAAG,aAAa,EACtB,OAAO,GAAG,IAAI,EACd,OAAO,GAAG,IAAI,EACd,QAAQ,EACR,IAAI,EACJ,MAAM,EACN,YAAY,EACZ,GAAG,UAAU,EACd,EACD,GAAG;IAEH,MAAM,MAAM,GAAG;QACb,KAAK,EAAE,IAAI,CAAC,KAAK;QACjB,MAAM,EAAE,IAAI,CAAC,MAAM;KACpB,CAAA;IAED,OAAO,OAAO,CAAC,CAAC,CAAC,CACf,6BACE,GAAG,EAAE,GAAG,2CAEK,MAAM,6BACM,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,EAC/C,KAAK,EACH,YAAY,CAAC,CAAC,CAAC,EAAE,GAAG,MAAM,EAAE,YAAY,EAAE,YAAY,EAAE,CAAC,CAAC,CAAC,MAAM,KAE/D,UAAU,IAEb,OAAO,IAAI,gEAAgC,CACxC,CACP,CAAC,CAAC,CAAC,CACF,0CAAG,QAAQ,CAAI,CAChB,CAAA;AACH,CAAC,CACF,CAAA;AAED,eAAe,QAAQ,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/atoms/Skeleton/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAA"}
|
package/dist/index.d.ts
CHANGED
|
@@ -24,6 +24,8 @@ export { default as Price } from './atoms/Price';
|
|
|
24
24
|
export type { PriceProps } from './atoms/Price';
|
|
25
25
|
export { default as Radio } from './atoms/Radio';
|
|
26
26
|
export type { RadioProps } from './atoms/Radio';
|
|
27
|
+
export { default as Skeleton } from './atoms/Skeleton';
|
|
28
|
+
export type { SkeletonProps } from './atoms/Skeleton';
|
|
27
29
|
export { default as Select } from './atoms/Select';
|
|
28
30
|
export type { SelectProps } from './atoms/Select';
|
|
29
31
|
export { default as Slider } from './atoms/Slider';
|
|
@@ -42,7 +44,7 @@ export { default as DiscountBadge } from './molecules/DiscountBadge';
|
|
|
42
44
|
export type { DiscountBadgeProps } from './molecules/DiscountBadge';
|
|
43
45
|
export { default as Dropdown, DropdownButton, DropdownItem, DropdownMenu, } from './molecules/Dropdown';
|
|
44
46
|
export type { DropdownProps, DropdownButtonProps, DropdownItemProps, DropdownMenuProps, } from './molecules/Dropdown';
|
|
45
|
-
export { default as Gift, GiftContent, GiftImage
|
|
47
|
+
export { default as Gift, GiftContent, GiftImage } from './molecules/Gift';
|
|
46
48
|
export type { GiftProps, GiftContentProps, GiftImageProps, } from './molecules/Gift';
|
|
47
49
|
export { default as InputField } from './molecules/InputField';
|
|
48
50
|
export type { InputFieldProps } from './molecules/InputField';
|
|
@@ -52,8 +54,8 @@ export { default as Modal, ModalHeader, ModalBody } from './molecules/Modal';
|
|
|
52
54
|
export type { ModalProps, ModalHeaderProps } from './molecules/Modal';
|
|
53
55
|
export { default as RadioField } from './molecules/RadioField';
|
|
54
56
|
export type { RadioFieldProps } from './molecules/RadioField';
|
|
55
|
-
export { default as RadioGroup, RadioOption
|
|
56
|
-
export type { RadioGroupProps, RadioOptionProps
|
|
57
|
+
export { default as RadioGroup, RadioOption } from './molecules/RadioGroup';
|
|
58
|
+
export type { RadioGroupProps, RadioOptionProps } from './molecules/RadioGroup';
|
|
57
59
|
export { default as Rating } from './molecules/Rating';
|
|
58
60
|
export type { RatingProps } from './molecules/Rating';
|
|
59
61
|
export { default as SelectField } from './molecules/SelectField';
|
package/dist/index.js
CHANGED
|
@@ -15,6 +15,7 @@ export { default as List } from './atoms/List';
|
|
|
15
15
|
export { default as Overlay } from './atoms/Overlay';
|
|
16
16
|
export { default as Price } from './atoms/Price';
|
|
17
17
|
export { default as Radio } from './atoms/Radio';
|
|
18
|
+
export { default as Skeleton } from './atoms/Skeleton';
|
|
18
19
|
export { default as Select } from './atoms/Select';
|
|
19
20
|
export { default as Slider } from './atoms/Slider';
|
|
20
21
|
export { default as SROnly } from './atoms/SROnly';
|
|
@@ -26,12 +27,12 @@ export { default as CheckboxField } from './molecules/CheckboxField';
|
|
|
26
27
|
export { default as IconButton } from './molecules/IconButton';
|
|
27
28
|
export { default as DiscountBadge } from './molecules/DiscountBadge';
|
|
28
29
|
export { default as Dropdown, DropdownButton, DropdownItem, DropdownMenu, } from './molecules/Dropdown';
|
|
29
|
-
export { default as Gift, GiftContent, GiftImage
|
|
30
|
+
export { default as Gift, GiftContent, GiftImage } from './molecules/Gift';
|
|
30
31
|
export { default as InputField } from './molecules/InputField';
|
|
31
32
|
export { default as LinkButton } from './molecules/LinkButton';
|
|
32
33
|
export { default as Modal, ModalHeader, ModalBody } from './molecules/Modal';
|
|
33
34
|
export { default as RadioField } from './molecules/RadioField';
|
|
34
|
-
export { default as RadioGroup, RadioOption
|
|
35
|
+
export { default as RadioGroup, RadioOption } from './molecules/RadioGroup';
|
|
35
36
|
export { default as Rating } from './molecules/Rating';
|
|
36
37
|
export { default as SelectField } from './molecules/SelectField';
|
|
37
38
|
export { Table, TableBody, TableCell, TableFooter, TableHead, TableRow, } from './molecules/Table';
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,SAAS;AACT,cAAc,UAAU,CAAA;AAExB,QAAQ;AACR,cAAc,SAAS,CAAA;AAEvB,QAAQ;AACR,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,eAAe,CAAA;AAEhD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,gBAAgB,CAAA;AAElD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,kBAAkB,CAAA;AAEtD,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,cAAc,CAAA;AAE9C,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,eAAe,CAAA;AAEhD,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,eAAe,CAAA;AAEhD,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,cAAc,CAAA;AAE9C,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,gBAAgB,CAAA;AAElD,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,cAAc,CAAA;AAE9C,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAA;AAEpD,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,eAAe,CAAA;AAEhD,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,eAAe,CAAA;AAEhD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,gBAAgB,CAAA;AAElD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,gBAAgB,CAAA;AAElD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,gBAAgB,CAAA;AAElD,YAAY;AACZ,OAAO,EACL,OAAO,IAAI,SAAS,EACpB,aAAa,EACb,eAAe,EACf,cAAc,GACf,MAAM,uBAAuB,CAAA;AAO9B,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,mBAAmB,CAAA;AAEpD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,uBAAuB,CAAA;AAC5D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAEpE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,wBAAwB,CAAA;AAE9D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAEpE,OAAO,EACL,OAAO,IAAI,QAAQ,EACnB,cAAc,EACd,YAAY,EACZ,YAAY,GACb,MAAM,sBAAsB,CAAA;AAO7B,OAAO,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@faststore/components",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.57-alpha.0",
|
|
4
4
|
"module": "dist/index.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
6
6
|
"author": "Emerson Laurentino @emersonlaurentino",
|
|
@@ -30,5 +30,5 @@
|
|
|
30
30
|
"node": "16.18.0",
|
|
31
31
|
"yarn": "1.19.1"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "a9310e34894883ae71d8bdb32402c3a17b419078"
|
|
34
34
|
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react'
|
|
2
|
+
import type { HTMLAttributes, PropsWithChildren } from 'react'
|
|
3
|
+
|
|
4
|
+
interface Size {
|
|
5
|
+
width: string
|
|
6
|
+
height: string
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export type BorderStyle = 'regular' | 'pill' | 'circle'
|
|
10
|
+
|
|
11
|
+
export interface SkeletonProps extends HTMLAttributes<HTMLDivElement> {
|
|
12
|
+
/**
|
|
13
|
+
* ID to find this component in testing tools (e.g.: cypress, testing library, and jest).
|
|
14
|
+
*/
|
|
15
|
+
testId?: string
|
|
16
|
+
/**
|
|
17
|
+
* Control whether skeleton should be visible or not.
|
|
18
|
+
*/
|
|
19
|
+
loading?: boolean
|
|
20
|
+
/**
|
|
21
|
+
* Control whether the shimmer effect should be displayed or not.
|
|
22
|
+
*/
|
|
23
|
+
shimmer?: boolean
|
|
24
|
+
/**
|
|
25
|
+
* Specifies the skeleton element size (width, height).
|
|
26
|
+
*/
|
|
27
|
+
size: Size
|
|
28
|
+
/**
|
|
29
|
+
* Specifies the skeleton element border radius ('regular' | 'pill' | 'circle').
|
|
30
|
+
*/
|
|
31
|
+
border?: BorderStyle
|
|
32
|
+
/**
|
|
33
|
+
* Custom border radius for skeleton elements.
|
|
34
|
+
*/
|
|
35
|
+
borderRadius?: string
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
const Skeleton = forwardRef<HTMLDivElement, PropsWithChildren<SkeletonProps>>(
|
|
39
|
+
function Skeleton(
|
|
40
|
+
{
|
|
41
|
+
testId = 'fs-skeleton',
|
|
42
|
+
loading = true,
|
|
43
|
+
shimmer = true,
|
|
44
|
+
children,
|
|
45
|
+
size,
|
|
46
|
+
border,
|
|
47
|
+
borderRadius,
|
|
48
|
+
...otherProps
|
|
49
|
+
},
|
|
50
|
+
ref
|
|
51
|
+
) {
|
|
52
|
+
const styles = {
|
|
53
|
+
width: size.width,
|
|
54
|
+
height: size.height,
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
return loading ? (
|
|
58
|
+
<div
|
|
59
|
+
ref={ref}
|
|
60
|
+
data-fs-skeleton
|
|
61
|
+
data-testid={testId}
|
|
62
|
+
data-fs-skeleton-border={border ? border : null}
|
|
63
|
+
style={
|
|
64
|
+
borderRadius ? { ...styles, borderRadius: borderRadius } : styles
|
|
65
|
+
}
|
|
66
|
+
{...otherProps}
|
|
67
|
+
>
|
|
68
|
+
{shimmer && <div data-fs-skeleton-shimmer />}
|
|
69
|
+
</div>
|
|
70
|
+
) : (
|
|
71
|
+
<>{children}</>
|
|
72
|
+
)
|
|
73
|
+
}
|
|
74
|
+
)
|
|
75
|
+
|
|
76
|
+
export default Skeleton
|
package/src/index.ts
CHANGED
|
@@ -29,6 +29,8 @@ export { default as Price } from './atoms/Price'
|
|
|
29
29
|
export type { PriceProps } from './atoms/Price'
|
|
30
30
|
export { default as Radio } from './atoms/Radio'
|
|
31
31
|
export type { RadioProps } from './atoms/Radio'
|
|
32
|
+
export { default as Skeleton } from './atoms/Skeleton'
|
|
33
|
+
export type { SkeletonProps } from './atoms/Skeleton'
|
|
32
34
|
export { default as Select } from './atoms/Select'
|
|
33
35
|
export type { SelectProps } from './atoms/Select'
|
|
34
36
|
export { default as Slider } from './atoms/Slider'
|
|
@@ -69,11 +71,7 @@ export type {
|
|
|
69
71
|
DropdownItemProps,
|
|
70
72
|
DropdownMenuProps,
|
|
71
73
|
} from './molecules/Dropdown'
|
|
72
|
-
export {
|
|
73
|
-
default as Gift,
|
|
74
|
-
GiftContent,
|
|
75
|
-
GiftImage,
|
|
76
|
-
} from './molecules/Gift'
|
|
74
|
+
export { default as Gift, GiftContent, GiftImage } from './molecules/Gift'
|
|
77
75
|
export type {
|
|
78
76
|
GiftProps,
|
|
79
77
|
GiftContentProps,
|
|
@@ -87,14 +85,8 @@ export { default as Modal, ModalHeader, ModalBody } from './molecules/Modal'
|
|
|
87
85
|
export type { ModalProps, ModalHeaderProps } from './molecules/Modal'
|
|
88
86
|
export { default as RadioField } from './molecules/RadioField'
|
|
89
87
|
export type { RadioFieldProps } from './molecules/RadioField'
|
|
90
|
-
export {
|
|
91
|
-
|
|
92
|
-
RadioOption,
|
|
93
|
-
} from './molecules/RadioGroup'
|
|
94
|
-
export type {
|
|
95
|
-
RadioGroupProps,
|
|
96
|
-
RadioOptionProps,
|
|
97
|
-
} from './molecules/RadioGroup'
|
|
88
|
+
export { default as RadioGroup, RadioOption } from './molecules/RadioGroup'
|
|
89
|
+
export type { RadioGroupProps, RadioOptionProps } from './molecules/RadioGroup'
|
|
98
90
|
export { default as Rating } from './molecules/Rating'
|
|
99
91
|
export type { RatingProps } from './molecules/Rating'
|
|
100
92
|
export { default as SelectField } from './molecules/SelectField'
|