@pisell/private-materials 6.11.158 → 6.11.159

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.
Files changed (39) hide show
  1. package/build/lowcode/assets-daily.json +11 -11
  2. package/build/lowcode/assets-dev.json +2 -2
  3. package/build/lowcode/assets-prod.json +11 -11
  4. package/build/lowcode/meta.js +1 -1
  5. package/build/lowcode/render/default/view.css +1 -1
  6. package/build/lowcode/view.css +1 -1
  7. package/es/plus/pisellReservation/PisellReservation.less +18 -0
  8. package/lib/plus/pisellReservation/PisellReservation.less +18 -0
  9. package/package.json +3 -3
  10. package/es/components/index.d.ts +0 -23
  11. package/es/components/list/List.d.ts +0 -5
  12. package/es/components/list/components/ListItemSkeleton/ListItemSkeleton.d.ts +0 -13
  13. package/es/components/list/types.d.ts +0 -181
  14. package/es/components/ticketBooking/components/ProductDisplayAdapter/ProductDisplayAdapter.d.ts +0 -23
  15. package/es/components/ticketBooking/components/ProductDisplayAdapter/types.d.ts +0 -115
  16. package/es/components/ticketBooking/components/addServiceVariant/addService.d.ts +0 -32
  17. package/es/components/ticketBooking/components/floatButtons/index.d.ts +0 -11
  18. package/es/plus/productSelect/ProductCard/ProductCardSkeleton.d.ts +0 -10
  19. package/es/plus/productSelect/ProductCard/SkuCard/components/Cover/index.d.ts +0 -8
  20. package/es/plus/productSelect/ProductCard/SkuCard/type.d.ts +0 -298
  21. package/es/plus/productSelect/ProductCard/index.d.ts +0 -54
  22. package/es/plus/productSelect/ProductCard/utils.d.ts +0 -49
  23. package/es/plus/productSelect/ProductList/gridComponents.d.ts +0 -46
  24. package/es/plus/productSelect/index.d.ts +0 -36
  25. package/lib/components/index.d.ts +0 -23
  26. package/lib/components/list/List.d.ts +0 -5
  27. package/lib/components/list/components/ListItemSkeleton/ListItemSkeleton.d.ts +0 -13
  28. package/lib/components/list/types.d.ts +0 -181
  29. package/lib/components/ticketBooking/components/ProductDisplayAdapter/ProductDisplayAdapter.d.ts +0 -23
  30. package/lib/components/ticketBooking/components/ProductDisplayAdapter/types.d.ts +0 -115
  31. package/lib/components/ticketBooking/components/addServiceVariant/addService.d.ts +0 -32
  32. package/lib/components/ticketBooking/components/floatButtons/index.d.ts +0 -11
  33. package/lib/plus/productSelect/ProductCard/ProductCardSkeleton.d.ts +0 -10
  34. package/lib/plus/productSelect/ProductCard/SkuCard/components/Cover/index.d.ts +0 -8
  35. package/lib/plus/productSelect/ProductCard/SkuCard/type.d.ts +0 -298
  36. package/lib/plus/productSelect/ProductCard/index.d.ts +0 -54
  37. package/lib/plus/productSelect/ProductCard/utils.d.ts +0 -49
  38. package/lib/plus/productSelect/ProductList/gridComponents.d.ts +0 -46
  39. package/lib/plus/productSelect/index.d.ts +0 -36
@@ -1,298 +0,0 @@
1
- /// <reference types="react" />
2
- declare type BoolConfigVal = false | true;
3
- declare type IsVisible = 0 | 1;
4
- declare type SkuDisplayMode = 'display_a1' | 'display_a2' | 'display_a5' | 'display_a9' | 'display_custom';
5
- declare type SkuLayoutDirection = 'row' | 'column';
6
- declare type SkuImageSlotPosition = 'left_top' | 'left_bottom' | 'right_top' | 'right_bottom';
7
- declare type SkuActionType = 'icon' | 'radio' | 'checkbox' | 'button';
8
- declare type SkuExtraStepperSize = 'large' | 'small';
9
- declare type SkuFavoritePosition = 'left_top' | 'left_bottom' | 'right_top' | 'right_bottom';
10
- declare type SkuTagsSize = 'small' | 'medium' | 'large';
11
- export interface SkuCardConfig {
12
- displayMode?: SkuDisplayMode;
13
- layoutDirection?: SkuLayoutDirection;
14
- background?: string;
15
- paddingY?: number;
16
- paddingX?: number;
17
- marginY?: number;
18
- marginX?: number;
19
- radius?: number;
20
- isBorderVisible?: BoolConfigVal;
21
- borderWidth?: number;
22
- borderColor?: string;
23
- isStatusOverlayVisible?: boolean;
24
- statusOverlayText?: string;
25
- isFoldable?: BoolConfigVal;
26
- slot?: React.ReactNode;
27
- }
28
- export interface SkuImageConfig {
29
- isCover?: BoolConfigVal;
30
- width?: string;
31
- height?: string;
32
- isTextFallback?: BoolConfigVal;
33
- background?: string;
34
- radius?: number;
35
- slot?: React.ReactNode;
36
- slotPosition?: SkuImageSlotPosition;
37
- }
38
- export interface SkuProductNameConfig {
39
- isOpen?: BoolConfigVal;
40
- value?: string;
41
- fontSize?: number;
42
- fontWeight?: number;
43
- color?: string;
44
- ellipsisCount?: number;
45
- }
46
- export interface SkuProductSubtitleConfig {
47
- isOpen?: BoolConfigVal;
48
- value?: any;
49
- fontSize?: number;
50
- fontWeight?: number;
51
- color?: string;
52
- ellipsisCount?: number;
53
- }
54
- export interface SkuProductPriceConfig {
55
- isOpen?: BoolConfigVal;
56
- isPrice?: BoolConfigVal;
57
- priceFontSize?: number;
58
- priceFontWeight?: number;
59
- priceColor?: string;
60
- isShowZeroPrice?: BoolConfigVal;
61
- isShowFreePrice?: BoolConfigVal;
62
- isOriginPrice?: BoolConfigVal;
63
- originPriceFontSize?: number;
64
- originPriceFontWeight?: number;
65
- originPriceColor?: string;
66
- isTaxPrice?: BoolConfigVal;
67
- isCustomText?: BoolConfigVal;
68
- customTextType?: string;
69
- customTextValue?: number;
70
- customTextMinValue?: number;
71
- customTextMaxValue?: number;
72
- isMiniPrice?: BoolConfigVal;
73
- }
74
- export interface SkuProductStockConfig {
75
- isOpen?: BoolConfigVal;
76
- fontSize?: number;
77
- fontWeight?: number;
78
- color?: string;
79
- customText?: React.ReactNode;
80
- }
81
- export interface SkuProductCapacityConfig {
82
- isOpen?: BoolConfigVal;
83
- fontSize?: number;
84
- fontWeight?: number;
85
- color?: string;
86
- customText?: React.ReactNode;
87
- }
88
- export interface SkuProductCountdownConfig {
89
- isOpen?: BoolConfigVal;
90
- fontSize?: number;
91
- fontWeight?: number;
92
- color?: string;
93
- customText?: React.ReactNode;
94
- }
95
- export interface SkuProductMemberPriceConfig {
96
- isOpen?: BoolConfigVal;
97
- isMemberPrice?: BoolConfigVal;
98
- fontSize?: number;
99
- fontWeight?: number;
100
- color?: string;
101
- isIndicator?: BoolConfigVal;
102
- indicatorBackground?: string;
103
- indicatorPaddingY?: number;
104
- indicatorPaddingX?: number;
105
- indicatorMarginX?: number;
106
- indicatorRadius?: number;
107
- isIndicatorBorder?: BoolConfigVal;
108
- indicatorBorderWidth?: number;
109
- indicatorBorderColor?: string;
110
- indicatorFontSize?: number;
111
- indicatorFontWeight?: number;
112
- indicatorColor?: string;
113
- indicatorIcon?: React.ReactNode;
114
- customText?: React.ReactNode;
115
- }
116
- export interface SkuDurationConfig {
117
- isOpen?: BoolConfigVal;
118
- fontSize?: number;
119
- fontWeight?: number;
120
- color?: string;
121
- customText?: React.ReactNode;
122
- }
123
- export interface SkuTimeConfig {
124
- isOpen?: BoolConfigVal;
125
- fontSize?: number;
126
- fontWeight?: number;
127
- color?: string;
128
- customText?: React.ReactNode;
129
- }
130
- export interface SkuResourceConfig {
131
- isOpen?: BoolConfigVal;
132
- fontSize?: number;
133
- fontWeight?: number;
134
- color?: string;
135
- customText?: React.ReactNode;
136
- }
137
- export interface SkuTextConfig {
138
- paddingY?: number;
139
- justifyContent?: string;
140
- alignItems?: string;
141
- slot?: React.ReactNode;
142
- }
143
- export interface SkuActionIconMethod {
144
- icon?: React.ReactNode;
145
- background?: string;
146
- paddingY?: number;
147
- paddingX?: number;
148
- radius?: number;
149
- isBorder?: BoolConfigVal;
150
- borderWidth?: number;
151
- borderColor?: string;
152
- }
153
- export interface SkuActionButtonMethod {
154
- text?: string;
155
- fontSize?: number;
156
- fontWeight?: number;
157
- color?: string;
158
- background?: string;
159
- paddingY?: number;
160
- paddingX?: number;
161
- radius?: number;
162
- isBorder?: BoolConfigVal;
163
- borderWidth?: number;
164
- borderColor?: string;
165
- }
166
- export interface SkuActionConfig {
167
- isOpen?: BoolConfigVal;
168
- method?: SkuActionType;
169
- iconMethod?: SkuActionIconMethod;
170
- radioMethod?: SkuActionIconMethod;
171
- checkboxMethod?: SkuActionButtonMethod;
172
- buttonMethod?: SkuActionButtonMethod;
173
- slot?: React.ReactNode;
174
- }
175
- export interface SkuExtraConfig {
176
- isOpen?: BoolConfigVal;
177
- isStepper?: BoolConfigVal;
178
- stepperSize?: SkuExtraStepperSize;
179
- stepperColor?: string;
180
- isFavorite?: BoolConfigVal;
181
- favoritePosition?: SkuFavoritePosition;
182
- favoriteIcon?: React.ReactNode;
183
- favoriteBackground?: string;
184
- favoritePaddingY?: number;
185
- favoritePaddingX?: number;
186
- favoriteRadius?: number;
187
- isFavoriteBorder?: BoolConfigVal;
188
- favoriteBorderWidth?: number;
189
- favoriteBorderColor?: string;
190
- isTooltipTag?: BoolConfigVal;
191
- isTooltipTagSlot?: any;
192
- }
193
- export interface SkuTagsGroupConfig {
194
- title?: any;
195
- background?: string;
196
- paddingY?: number;
197
- paddingX?: number;
198
- radius?: number;
199
- isBorder?: BoolConfigVal;
200
- borderWidth?: number;
201
- borderColor?: string;
202
- fontSize?: number;
203
- fontWeight?: number;
204
- color?: string;
205
- }
206
- export interface SkuTagsConfig {
207
- isOpen?: BoolConfigVal;
208
- lists?: SkuTagsGroupConfig[];
209
- marginX?: number;
210
- size?: SkuTagsSize;
211
- isShowAll?: BoolConfigVal;
212
- maxCount?: number;
213
- }
214
- export interface SkuPromotionsGroupConfig {
215
- title?: any;
216
- background?: string;
217
- paddingY?: number;
218
- paddingX?: number;
219
- radius?: number;
220
- isBorder?: BoolConfigVal;
221
- borderWidth?: number;
222
- borderColor?: string;
223
- fontSize?: number;
224
- fontWeight?: number;
225
- color?: string;
226
- }
227
- export interface SkuPromotionsConfig {
228
- isOpen?: BoolConfigVal;
229
- lists?: SkuPromotionsGroupConfig[];
230
- marginX?: number;
231
- size?: SkuTagsSize;
232
- isShowAll?: BoolConfigVal;
233
- maxCount?: number;
234
- }
235
- export interface SkuStatusOverlayConfig {
236
- isOpen?: BoolConfigVal;
237
- fontSize?: number;
238
- fontWeight?: number;
239
- color?: string;
240
- text?: string;
241
- background?: string;
242
- slot?: React.ReactNode;
243
- }
244
- export interface SkuTextWrapConfig {
245
- infoConfig?: SkuTextConfig;
246
- skuNameConfig?: SkuProductNameConfig;
247
- skuSubtitleConfig?: SkuProductSubtitleConfig;
248
- skuPriceConfig?: SkuProductPriceConfig;
249
- skuStockConfig?: SkuProductStockConfig;
250
- skuCapacityConfig?: SkuProductCapacityConfig;
251
- skuCountdownConfig?: SkuProductCountdownConfig;
252
- skuMemberPriceConfig?: SkuProductMemberPriceConfig;
253
- skuDurationConfig?: SkuDurationConfig;
254
- skuTimeConfig?: SkuTimeConfig;
255
- skuResourceConfig?: SkuResourceConfig;
256
- skuTagsConfig?: SkuTagsConfig;
257
- skuPromotionsConfig?: SkuPromotionsConfig;
258
- }
259
- export interface DataSourceConfig {
260
- title?: string;
261
- subtitle?: string;
262
- cover?: string;
263
- price?: number;
264
- original_price?: number | string;
265
- tax_fee?: number | string;
266
- stock?: number;
267
- capacity?: number;
268
- countdown?: number | string;
269
- member_price?: number;
270
- duration?: number;
271
- time?: string;
272
- resource?: string;
273
- sortKeys?: string[];
274
- warning_lists?: string[];
275
- promotions?: any[];
276
- resources?: string;
277
- stock_quantity?: number;
278
- is_track?: IsVisible;
279
- tags?: any[];
280
- tooltip_tags?: any[];
281
- className?: string;
282
- [key: string]: any;
283
- }
284
- export interface ProductCardConfig {
285
- dataSource?: DataSourceConfig;
286
- skuCardConfig?: SkuCardConfig;
287
- skuImageConfig?: SkuImageConfig;
288
- skuTextConfig?: SkuTextWrapConfig;
289
- skuActionConfig?: SkuActionConfig;
290
- skuExtraConfig?: SkuExtraConfig;
291
- skuStatusOverlayConfig?: SkuStatusOverlayConfig;
292
- className?: string;
293
- onCardClick?: (item: any, extParams?: any) => void;
294
- onFavorite?: (item: any, extParams?: any) => void;
295
- onAction?: (item: any, extParams?: any) => void;
296
- [key: string]: any;
297
- }
298
- export {};
@@ -1,54 +0,0 @@
1
- import React from 'react';
2
- import ProductCardSkeleton from './ProductCardSkeleton';
3
- import { ProductCardConfig as SkuCardAllConfig } from './SkuCard/type';
4
- import './index.less';
5
- declare type BoolConfigVal = 0 | 1;
6
- export interface ProductCardConfig {
7
- isProductCover?: BoolConfigVal;
8
- imgWidth?: string;
9
- imgHeight?: string;
10
- radius?: number;
11
- isTitle?: BoolConfigVal;
12
- isSubtitle?: BoolConfigVal;
13
- showSpec?: boolean;
14
- isTag?: BoolConfigVal;
15
- isPrice?: BoolConfigVal;
16
- isOriginPrice?: BoolConfigVal;
17
- showZeroPrice?: boolean;
18
- showMarketingTag?: boolean;
19
- showRemark?: boolean;
20
- isStock?: BoolConfigVal;
21
- layoutDirection?: 'row' | 'column';
22
- gap?: number;
23
- rightStyle?: React.CSSProperties;
24
- }
25
- export interface ProductCardProps {
26
- item: any;
27
- index: number;
28
- context?: {
29
- onItemIntersectionIn: (item: any) => void;
30
- onItemIntersectionOut: (item: any) => void;
31
- };
32
- className?: string;
33
- onSelectProduct?: (item: any) => void;
34
- currentProductId?: number;
35
- onSelect?: (item: any) => void;
36
- onSelectCover?: (item: any) => void;
37
- onSelectInfo?: (item: any) => void;
38
- isSelected?: boolean;
39
- decorateConfig?: ProductCardConfig;
40
- /** 场景类型:决定渲染卡片样式 */
41
- scenario?: 'booking2' | 'default';
42
- customSkuCardAllConfig?: SkuCardAllConfig;
43
- }
44
- export declare const ProductCard: React.MemoExoticComponent<({ item, index, context, onSelect, onSelectCover, onSelectInfo, isSelected, className, decorateConfig, scenario, customSkuCardAllConfig, }: ProductCardProps) => React.JSX.Element>;
45
- export declare const DefaultItemContent: React.MemoExoticComponent<(props: {
46
- item: any;
47
- index: number;
48
- context?: {
49
- onItemIntersectionIn: (item: any) => void;
50
- onItemIntersectionOut: (item: any) => void;
51
- } | undefined;
52
- }) => React.JSX.Element>;
53
- export default ProductCard;
54
- export { ProductCardSkeleton };
@@ -1,49 +0,0 @@
1
- import { ProductCardConfig } from './index';
2
- export declare const formatProductPrice: (item: any) => {
3
- price: any;
4
- original_price: any;
5
- };
6
- /**
7
- * @description: 获取sku卡配置
8
- * @param {ProductCardConfig} finalConfig
9
- * @return {*}
10
- */
11
- export declare const getSkuCardConfig: (finalConfig: ProductCardConfig) => {
12
- skuCardConfig: {
13
- displayMode: string;
14
- paddingY: number;
15
- paddingX: number;
16
- isBorderVisible: boolean;
17
- layoutDirection: "row" | "column";
18
- };
19
- skuActionConfig: {
20
- isOpen: boolean;
21
- };
22
- skuExtraConfig: {
23
- isOpen: boolean;
24
- };
25
- skuTextConfig: {
26
- skuSubtitleConfig: {
27
- isOpen: (0 | 1) | undefined;
28
- };
29
- skuNameConfig: {
30
- isOpen: (0 | 1) | undefined;
31
- };
32
- skuPriceConfig: {
33
- isOpen: (0 | 1) | undefined;
34
- isPrice: (0 | 1) | undefined;
35
- isShowZeroPrice: boolean | undefined;
36
- isOriginPrice: (0 | 1) | undefined;
37
- };
38
- skuStockConfig: {
39
- isOpen: (0 | 1) | undefined;
40
- };
41
- };
42
- skuImageConfig: {
43
- isCover: (0 | 1) | undefined;
44
- width: string | undefined;
45
- height: string | undefined;
46
- isTextFallback: boolean;
47
- radius: number | undefined;
48
- };
49
- };
@@ -1,46 +0,0 @@
1
- import React from 'react';
2
- export interface GridConfig {
3
- grid: boolean;
4
- config: string;
5
- }
6
- export declare const parseGridConfig: (config: string) => number[];
7
- export declare const createGridComponents: (layout?: GridConfig | null, { tabSwitchMode }?: {
8
- tabSwitchMode?: "switch" | "anchor" | undefined;
9
- }) => {
10
- List: React.MemoExoticComponent<({ children, ...props }: any) => React.JSX.Element>;
11
- Item: React.MemoExoticComponent<({ children, index, item, ...props }: any) => React.JSX.Element | null>;
12
- };
13
- export declare const GRID_LAYOUTS: {
14
- readonly SINGLE_COLUMN: {
15
- readonly grid: false;
16
- readonly config: "12";
17
- };
18
- readonly TWO_COLUMNS: {
19
- readonly grid: true;
20
- readonly config: "12:12";
21
- };
22
- readonly THREE_COLUMNS: {
23
- readonly grid: true;
24
- readonly config: "8:8:8";
25
- };
26
- readonly FOUR_COLUMNS: {
27
- readonly grid: true;
28
- readonly config: "6:6:6:6";
29
- };
30
- readonly UNEQUAL_TWO: {
31
- readonly grid: true;
32
- readonly config: "8:16";
33
- };
34
- readonly UNEQUAL_THREE: {
35
- readonly grid: true;
36
- readonly config: "6:12:6";
37
- };
38
- };
39
- export declare const createTwoColumnGrid: () => {
40
- List: React.MemoExoticComponent<({ children, ...props }: any) => React.JSX.Element>;
41
- Item: React.MemoExoticComponent<({ children, index, item, ...props }: any) => React.JSX.Element | null>;
42
- };
43
- export declare const createCustomGrid: (config: string) => {
44
- List: React.MemoExoticComponent<({ children, ...props }: any) => React.JSX.Element>;
45
- Item: React.MemoExoticComponent<({ children, index, item, ...props }: any) => React.JSX.Element | null>;
46
- };
@@ -1,36 +0,0 @@
1
- import React from 'react';
2
- import './index.less';
3
- interface ProductSelectProps {
4
- dataSource: any[];
5
- showSearch?: boolean;
6
- showTab?: boolean;
7
- layout?: {
8
- grid: boolean;
9
- config: string;
10
- };
11
- onChange: (value: any, type?: string) => void;
12
- value?: number;
13
- loading?: boolean;
14
- style?: React.CSSProperties;
15
- emptyDescription?: string;
16
- /** 当前滚动元素 */
17
- scrollDom?: string;
18
- /** 商品列表上方的其它组件 */
19
- offsetDom?: any;
20
- /** 样式变量 */
21
- token?: Partial<any>;
22
- /** 后台装修单选模式下的已选中项 */
23
- selectedItems?: Array<any>;
24
- /** 后台装修配置 */
25
- productListSetting?: Partial<any>;
26
- /** 兼容scrollDom */
27
- customScrollParent?: HTMLElement | string;
28
- hideCategoryWhenOne?: boolean;
29
- /** tab切换模式 */
30
- tabSwitchMode?: 'switch' | 'anchor';
31
- /** 场景类型:决定渲染卡片样式 */
32
- scenario?: 'booking2' | 'default';
33
- }
34
- export declare const PREFIX = "pisell-product-select";
35
- declare const index: ({ dataSource, emptyDescription, showSearch, scrollDom, offsetDom, style, token: customToken, onChange, value, selectedItems, productListSetting, customScrollParent, loading, layout, hideCategoryWhenOne, tabSwitchMode, scenario, ...rest }: ProductSelectProps) => React.JSX.Element;
36
- export default index;
@@ -1,23 +0,0 @@
1
- import Login from './login';
2
- import BookingInfo from './booking/info/index';
3
- import Booking from './booking';
4
- import BookingNotes from './booking/notes';
5
- import BookingAddons from './booking/addons';
6
- import BookingForms from './booking/forms';
7
- import Schedules from './schedules';
8
- import ProductExtension from './productExtension';
9
- import RuleSetting from './ruleSetting';
10
- import TaxSelect from './taxSelect';
11
- import ToCPay from './pay/toC';
12
- import WalletList from './walletList';
13
- import WorkspaceListDetail from './workSpaceListDetail/';
14
- import WorkspaceList from './workSpaceList';
15
- import PisellSelectCustomerModal from './pisellSelectCustomerModal';
16
- import SubTotal from './subTotal';
17
- import EditBookingModal from './booking/editBookingModal';
18
- import StepController from './stepController';
19
- import PinModal from './pinModal';
20
- import PinVerifyModal from './pinVerifyModal';
21
- import { OAuthConfig, SaaSAdminAuth, OrgAdminAuth, CustomerAuth, CustomerOAuthConfig, DeviceAuth, POSOperatorAuth, OnlineShopAuth, SaaSManagermentAuth } from './authentication/admin';
22
- import Registry from './systemSettings/registry';
23
- export { Login, BookingInfo, Booking, BookingNotes, BookingAddons, BookingForms, Schedules, ProductExtension, RuleSetting, TaxSelect, ToCPay, PisellSelectCustomerModal, WalletList, WorkspaceList, WorkspaceListDetail, SubTotal, EditBookingModal, StepController, PinModal, PinVerifyModal, OAuthConfig, SaaSAdminAuth, OrgAdminAuth, CustomerAuth, CustomerOAuthConfig, DeviceAuth, POSOperatorAuth, OnlineShopAuth, SaaSManagermentAuth, Registry, };
@@ -1,5 +0,0 @@
1
- import React from 'react';
2
- import './List.less';
3
- import { ListProps, BaseListItem } from './types';
4
- declare const _default: React.ForwardRefExoticComponent<ListProps<BaseListItem> & React.RefAttributes<any>>;
5
- export default _default;
@@ -1,13 +0,0 @@
1
- import React from 'react';
2
- import './ListItemSkeleton.less';
3
- interface ListItemSkeletonProps {
4
- className?: string;
5
- style?: React.CSSProperties;
6
- displayStyle?: 'grid' | 'waterfall';
7
- showImage?: boolean;
8
- imageWidth?: number;
9
- imageHeight?: number;
10
- rows?: number;
11
- }
12
- declare const ListItemSkeleton: React.FC<ListItemSkeletonProps>;
13
- export default ListItemSkeleton;