krl-alfred 2.18.13 → 2.18.15
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/components/Icon/iconList/BagCircleFilled.d.ts +2 -0
- package/dist/components/Icon/iconList/BagCircleFilled.js +40 -0
- package/dist/components/Icon/iconList/ThumbCircleFilled.d.ts +2 -0
- package/dist/components/Icon/iconList/ThumbCircleFilled.js +40 -0
- package/dist/components/Icon/iconList/index.d.ts +9 -1
- package/dist/components/Icon/iconList/index.js +18 -6
- package/dist/components/ProductCardVertical/ProductCardVertical.d.ts +1 -1
- package/dist/components/ProductCardVertical/ProductCardVertical.js +12 -13
- package/dist/components/ProductCardVertical/ProductCardVertical.styled.d.ts +24 -0
- package/dist/components/ProductCardVertical/ProductCardVertical.styled.js +71 -3
- package/dist/components/ProductCardVertical/index.d.ts +2 -1
- package/dist/components/ProductCardVertical/index.js +21 -1
- package/dist/components/ProductCardVertical/stories/ProductCardVertical.stories.d.ts +265 -251
- package/dist/components/ProductCardVertical/stories/ProductCardVertical.stories.js +67 -48
- package/package.json +1 -1
|
@@ -1,16 +1,26 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import type { ProductCardVerticalProps } from "../props";
|
|
3
|
+
/**
|
|
4
|
+
* Tüm ProductCardVertical propları — Default ve varyantlar için ortak taban.
|
|
5
|
+
* hasDiscount bileşende henüz kullanılmıyor; kontrol paneli ve dokümantasyon için set edilir.
|
|
6
|
+
*/
|
|
7
|
+
export declare const allProductCardArgs: ProductCardVerticalProps;
|
|
1
8
|
declare const _default: {
|
|
2
9
|
title: string;
|
|
3
|
-
component: (
|
|
10
|
+
component: React.MemoExoticComponent<({ title, description, hasDiscount, price, oldPrice, oldPricePeriod, slug, period, discountRate, isResponsive, image, hasCustomBadge, customBadge, hasNewImageType, hasOutOfStock, hasBeltBadge, beltBadgeVariant, beltBadgeTitle, imageInfoText, imageInfoTextVariant, isShowOldPrice, isOldPricePeriodUnderline, hasImageOffset, }: import("../props").ProductCardVertical) => import("react/jsx-runtime").JSX.Element>;
|
|
4
11
|
tags: string[];
|
|
5
12
|
argTypes: {
|
|
6
13
|
title: {
|
|
7
14
|
control: string;
|
|
15
|
+
description: string;
|
|
8
16
|
};
|
|
9
17
|
description: {
|
|
10
18
|
control: string;
|
|
19
|
+
description: string;
|
|
11
20
|
};
|
|
12
21
|
hasDiscount: {
|
|
13
22
|
control: string;
|
|
23
|
+
description: string;
|
|
14
24
|
};
|
|
15
25
|
price: {
|
|
16
26
|
control: string;
|
|
@@ -23,6 +33,7 @@ declare const _default: {
|
|
|
23
33
|
};
|
|
24
34
|
slug: {
|
|
25
35
|
control: string;
|
|
36
|
+
description: string;
|
|
26
37
|
};
|
|
27
38
|
period: {
|
|
28
39
|
control: string;
|
|
@@ -34,13 +45,14 @@ declare const _default: {
|
|
|
34
45
|
control: string;
|
|
35
46
|
};
|
|
36
47
|
image: {
|
|
37
|
-
control:
|
|
48
|
+
control: boolean;
|
|
49
|
+
description: string;
|
|
38
50
|
};
|
|
39
51
|
hasCustomBadge: {
|
|
40
52
|
control: string;
|
|
41
53
|
};
|
|
42
54
|
customBadge: {
|
|
43
|
-
control:
|
|
55
|
+
control: boolean;
|
|
44
56
|
};
|
|
45
57
|
hasNewImageType: {
|
|
46
58
|
control: string;
|
|
@@ -75,33 +87,35 @@ declare const _default: {
|
|
|
75
87
|
control: string;
|
|
76
88
|
};
|
|
77
89
|
};
|
|
90
|
+
render: (args: ProductCardVerticalProps) => import("react/jsx-runtime").JSX.Element;
|
|
78
91
|
};
|
|
79
92
|
export default _default;
|
|
80
93
|
export declare const Default: {
|
|
94
|
+
name: string;
|
|
81
95
|
args: {
|
|
82
|
-
title
|
|
83
|
-
description
|
|
84
|
-
hasDiscount
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
customBadge
|
|
95
|
-
hasNewImageType
|
|
96
|
-
hasOutOfStock
|
|
97
|
-
hasBeltBadge
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
isOldPricePeriodUnderline
|
|
104
|
-
hasImageOffset
|
|
96
|
+
title?: string;
|
|
97
|
+
description?: string;
|
|
98
|
+
hasDiscount?: boolean;
|
|
99
|
+
hasCustomBadge?: boolean;
|
|
100
|
+
price?: string;
|
|
101
|
+
oldPrice?: string;
|
|
102
|
+
oldPricePeriod?: string;
|
|
103
|
+
slug?: string;
|
|
104
|
+
period?: string;
|
|
105
|
+
discountRate?: number;
|
|
106
|
+
isResponsive?: boolean;
|
|
107
|
+
image?: React.ReactNode;
|
|
108
|
+
customBadge?: React.ReactNode;
|
|
109
|
+
hasNewImageType?: boolean;
|
|
110
|
+
hasOutOfStock?: boolean;
|
|
111
|
+
hasBeltBadge?: boolean;
|
|
112
|
+
isShowOldPrice?: boolean;
|
|
113
|
+
beltBadgeVariant?: string;
|
|
114
|
+
beltBadgeTitle?: string;
|
|
115
|
+
imageInfoText?: string;
|
|
116
|
+
imageInfoTextVariant?: string;
|
|
117
|
+
isOldPricePeriodUnderline?: boolean;
|
|
118
|
+
hasImageOffset?: boolean;
|
|
105
119
|
};
|
|
106
120
|
};
|
|
107
121
|
export declare const NoDiscount: {
|
|
@@ -110,25 +124,25 @@ export declare const NoDiscount: {
|
|
|
110
124
|
discountRate: number;
|
|
111
125
|
oldPrice: any;
|
|
112
126
|
isShowOldPrice: boolean;
|
|
113
|
-
title
|
|
114
|
-
description
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
customBadge
|
|
123
|
-
hasNewImageType
|
|
124
|
-
hasOutOfStock
|
|
125
|
-
hasBeltBadge
|
|
126
|
-
beltBadgeVariant
|
|
127
|
-
beltBadgeTitle
|
|
128
|
-
imageInfoText
|
|
129
|
-
imageInfoTextVariant
|
|
130
|
-
isOldPricePeriodUnderline
|
|
131
|
-
hasImageOffset
|
|
127
|
+
title?: string;
|
|
128
|
+
description?: string;
|
|
129
|
+
hasCustomBadge?: boolean;
|
|
130
|
+
price?: string;
|
|
131
|
+
oldPricePeriod?: string;
|
|
132
|
+
slug?: string;
|
|
133
|
+
period?: string;
|
|
134
|
+
isResponsive?: boolean;
|
|
135
|
+
image?: React.ReactNode;
|
|
136
|
+
customBadge?: React.ReactNode;
|
|
137
|
+
hasNewImageType?: boolean;
|
|
138
|
+
hasOutOfStock?: boolean;
|
|
139
|
+
hasBeltBadge?: boolean;
|
|
140
|
+
beltBadgeVariant?: string;
|
|
141
|
+
beltBadgeTitle?: string;
|
|
142
|
+
imageInfoText?: string;
|
|
143
|
+
imageInfoTextVariant?: string;
|
|
144
|
+
isOldPricePeriodUnderline?: boolean;
|
|
145
|
+
hasImageOffset?: boolean;
|
|
132
146
|
};
|
|
133
147
|
};
|
|
134
148
|
export declare const OutOfStock: {
|
|
@@ -137,25 +151,25 @@ export declare const OutOfStock: {
|
|
|
137
151
|
hasDiscount: boolean;
|
|
138
152
|
discountRate: number;
|
|
139
153
|
hasBeltBadge: boolean;
|
|
140
|
-
title
|
|
141
|
-
description
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
customBadge
|
|
151
|
-
hasNewImageType
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
isOldPricePeriodUnderline
|
|
158
|
-
hasImageOffset
|
|
154
|
+
title?: string;
|
|
155
|
+
description?: string;
|
|
156
|
+
hasCustomBadge?: boolean;
|
|
157
|
+
price?: string;
|
|
158
|
+
oldPrice?: string;
|
|
159
|
+
oldPricePeriod?: string;
|
|
160
|
+
slug?: string;
|
|
161
|
+
period?: string;
|
|
162
|
+
isResponsive?: boolean;
|
|
163
|
+
image?: React.ReactNode;
|
|
164
|
+
customBadge?: React.ReactNode;
|
|
165
|
+
hasNewImageType?: boolean;
|
|
166
|
+
isShowOldPrice?: boolean;
|
|
167
|
+
beltBadgeVariant?: string;
|
|
168
|
+
beltBadgeTitle?: string;
|
|
169
|
+
imageInfoText?: string;
|
|
170
|
+
imageInfoTextVariant?: string;
|
|
171
|
+
isOldPricePeriodUnderline?: boolean;
|
|
172
|
+
hasImageOffset?: boolean;
|
|
159
173
|
};
|
|
160
174
|
};
|
|
161
175
|
export declare const WithCustomBadge: {
|
|
@@ -163,26 +177,26 @@ export declare const WithCustomBadge: {
|
|
|
163
177
|
hasCustomBadge: boolean;
|
|
164
178
|
hasBeltBadge: boolean;
|
|
165
179
|
customBadge: import("react/jsx-runtime").JSX.Element;
|
|
166
|
-
title
|
|
167
|
-
description
|
|
168
|
-
hasDiscount
|
|
169
|
-
price
|
|
170
|
-
oldPrice
|
|
171
|
-
oldPricePeriod
|
|
172
|
-
slug
|
|
173
|
-
period
|
|
174
|
-
discountRate
|
|
175
|
-
isResponsive
|
|
176
|
-
image
|
|
177
|
-
hasNewImageType
|
|
178
|
-
hasOutOfStock
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
isOldPricePeriodUnderline
|
|
185
|
-
hasImageOffset
|
|
180
|
+
title?: string;
|
|
181
|
+
description?: string;
|
|
182
|
+
hasDiscount?: boolean;
|
|
183
|
+
price?: string;
|
|
184
|
+
oldPrice?: string;
|
|
185
|
+
oldPricePeriod?: string;
|
|
186
|
+
slug?: string;
|
|
187
|
+
period?: string;
|
|
188
|
+
discountRate?: number;
|
|
189
|
+
isResponsive?: boolean;
|
|
190
|
+
image?: React.ReactNode;
|
|
191
|
+
hasNewImageType?: boolean;
|
|
192
|
+
hasOutOfStock?: boolean;
|
|
193
|
+
isShowOldPrice?: boolean;
|
|
194
|
+
beltBadgeVariant?: string;
|
|
195
|
+
beltBadgeTitle?: string;
|
|
196
|
+
imageInfoText?: string;
|
|
197
|
+
imageInfoTextVariant?: string;
|
|
198
|
+
isOldPricePeriodUnderline?: boolean;
|
|
199
|
+
hasImageOffset?: boolean;
|
|
186
200
|
};
|
|
187
201
|
};
|
|
188
202
|
export declare const ResponsiveWithNewImageType: {
|
|
@@ -190,107 +204,107 @@ export declare const ResponsiveWithNewImageType: {
|
|
|
190
204
|
isResponsive: boolean;
|
|
191
205
|
hasNewImageType: boolean;
|
|
192
206
|
hasImageOffset: boolean;
|
|
193
|
-
title
|
|
194
|
-
description
|
|
195
|
-
hasDiscount
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
customBadge
|
|
205
|
-
hasOutOfStock
|
|
206
|
-
hasBeltBadge
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
isOldPricePeriodUnderline
|
|
207
|
+
title?: string;
|
|
208
|
+
description?: string;
|
|
209
|
+
hasDiscount?: boolean;
|
|
210
|
+
hasCustomBadge?: boolean;
|
|
211
|
+
price?: string;
|
|
212
|
+
oldPrice?: string;
|
|
213
|
+
oldPricePeriod?: string;
|
|
214
|
+
slug?: string;
|
|
215
|
+
period?: string;
|
|
216
|
+
discountRate?: number;
|
|
217
|
+
image?: React.ReactNode;
|
|
218
|
+
customBadge?: React.ReactNode;
|
|
219
|
+
hasOutOfStock?: boolean;
|
|
220
|
+
hasBeltBadge?: boolean;
|
|
221
|
+
isShowOldPrice?: boolean;
|
|
222
|
+
beltBadgeVariant?: string;
|
|
223
|
+
beltBadgeTitle?: string;
|
|
224
|
+
imageInfoText?: string;
|
|
225
|
+
imageInfoTextVariant?: string;
|
|
226
|
+
isOldPricePeriodUnderline?: boolean;
|
|
213
227
|
};
|
|
214
228
|
};
|
|
215
229
|
export declare const DarkImageInfoText: {
|
|
216
230
|
args: {
|
|
217
231
|
imageInfoTextVariant: string;
|
|
218
232
|
imageInfoText: string;
|
|
219
|
-
title
|
|
220
|
-
description
|
|
221
|
-
hasDiscount
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
customBadge
|
|
232
|
-
hasNewImageType
|
|
233
|
-
hasOutOfStock
|
|
234
|
-
hasBeltBadge
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
isOldPricePeriodUnderline
|
|
239
|
-
hasImageOffset
|
|
233
|
+
title?: string;
|
|
234
|
+
description?: string;
|
|
235
|
+
hasDiscount?: boolean;
|
|
236
|
+
hasCustomBadge?: boolean;
|
|
237
|
+
price?: string;
|
|
238
|
+
oldPrice?: string;
|
|
239
|
+
oldPricePeriod?: string;
|
|
240
|
+
slug?: string;
|
|
241
|
+
period?: string;
|
|
242
|
+
discountRate?: number;
|
|
243
|
+
isResponsive?: boolean;
|
|
244
|
+
image?: React.ReactNode;
|
|
245
|
+
customBadge?: React.ReactNode;
|
|
246
|
+
hasNewImageType?: boolean;
|
|
247
|
+
hasOutOfStock?: boolean;
|
|
248
|
+
hasBeltBadge?: boolean;
|
|
249
|
+
isShowOldPrice?: boolean;
|
|
250
|
+
beltBadgeVariant?: string;
|
|
251
|
+
beltBadgeTitle?: string;
|
|
252
|
+
isOldPricePeriodUnderline?: boolean;
|
|
253
|
+
hasImageOffset?: boolean;
|
|
240
254
|
};
|
|
241
255
|
};
|
|
242
256
|
export declare const WithoutBeltBadge: {
|
|
243
257
|
args: {
|
|
244
258
|
hasBeltBadge: boolean;
|
|
245
|
-
title
|
|
246
|
-
description
|
|
247
|
-
hasDiscount
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
customBadge
|
|
258
|
-
hasNewImageType
|
|
259
|
-
hasOutOfStock
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
isOldPricePeriodUnderline
|
|
266
|
-
hasImageOffset
|
|
259
|
+
title?: string;
|
|
260
|
+
description?: string;
|
|
261
|
+
hasDiscount?: boolean;
|
|
262
|
+
hasCustomBadge?: boolean;
|
|
263
|
+
price?: string;
|
|
264
|
+
oldPrice?: string;
|
|
265
|
+
oldPricePeriod?: string;
|
|
266
|
+
slug?: string;
|
|
267
|
+
period?: string;
|
|
268
|
+
discountRate?: number;
|
|
269
|
+
isResponsive?: boolean;
|
|
270
|
+
image?: React.ReactNode;
|
|
271
|
+
customBadge?: React.ReactNode;
|
|
272
|
+
hasNewImageType?: boolean;
|
|
273
|
+
hasOutOfStock?: boolean;
|
|
274
|
+
isShowOldPrice?: boolean;
|
|
275
|
+
beltBadgeVariant?: string;
|
|
276
|
+
beltBadgeTitle?: string;
|
|
277
|
+
imageInfoText?: string;
|
|
278
|
+
imageInfoTextVariant?: string;
|
|
279
|
+
isOldPricePeriodUnderline?: boolean;
|
|
280
|
+
hasImageOffset?: boolean;
|
|
267
281
|
};
|
|
268
282
|
};
|
|
269
283
|
export declare const WithoutImageInfoText: {
|
|
270
284
|
args: {
|
|
271
285
|
imageInfoText: any;
|
|
272
|
-
title
|
|
273
|
-
description
|
|
274
|
-
hasDiscount
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
customBadge
|
|
285
|
-
hasNewImageType
|
|
286
|
-
hasOutOfStock
|
|
287
|
-
hasBeltBadge
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
isOldPricePeriodUnderline
|
|
293
|
-
hasImageOffset
|
|
286
|
+
title?: string;
|
|
287
|
+
description?: string;
|
|
288
|
+
hasDiscount?: boolean;
|
|
289
|
+
hasCustomBadge?: boolean;
|
|
290
|
+
price?: string;
|
|
291
|
+
oldPrice?: string;
|
|
292
|
+
oldPricePeriod?: string;
|
|
293
|
+
slug?: string;
|
|
294
|
+
period?: string;
|
|
295
|
+
discountRate?: number;
|
|
296
|
+
isResponsive?: boolean;
|
|
297
|
+
image?: React.ReactNode;
|
|
298
|
+
customBadge?: React.ReactNode;
|
|
299
|
+
hasNewImageType?: boolean;
|
|
300
|
+
hasOutOfStock?: boolean;
|
|
301
|
+
hasBeltBadge?: boolean;
|
|
302
|
+
isShowOldPrice?: boolean;
|
|
303
|
+
beltBadgeVariant?: string;
|
|
304
|
+
beltBadgeTitle?: string;
|
|
305
|
+
imageInfoTextVariant?: string;
|
|
306
|
+
isOldPricePeriodUnderline?: boolean;
|
|
307
|
+
hasImageOffset?: boolean;
|
|
294
308
|
};
|
|
295
309
|
};
|
|
296
310
|
export declare const Minimal: {
|
|
@@ -301,103 +315,103 @@ export declare const Minimal: {
|
|
|
301
315
|
isShowOldPrice: boolean;
|
|
302
316
|
hasBeltBadge: boolean;
|
|
303
317
|
imageInfoText: any;
|
|
304
|
-
title
|
|
305
|
-
description
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
customBadge
|
|
314
|
-
hasNewImageType
|
|
315
|
-
hasOutOfStock
|
|
316
|
-
beltBadgeVariant
|
|
317
|
-
beltBadgeTitle
|
|
318
|
-
imageInfoTextVariant
|
|
319
|
-
isOldPricePeriodUnderline
|
|
320
|
-
hasImageOffset
|
|
318
|
+
title?: string;
|
|
319
|
+
description?: string;
|
|
320
|
+
hasCustomBadge?: boolean;
|
|
321
|
+
price?: string;
|
|
322
|
+
oldPricePeriod?: string;
|
|
323
|
+
slug?: string;
|
|
324
|
+
period?: string;
|
|
325
|
+
isResponsive?: boolean;
|
|
326
|
+
image?: React.ReactNode;
|
|
327
|
+
customBadge?: React.ReactNode;
|
|
328
|
+
hasNewImageType?: boolean;
|
|
329
|
+
hasOutOfStock?: boolean;
|
|
330
|
+
beltBadgeVariant?: string;
|
|
331
|
+
beltBadgeTitle?: string;
|
|
332
|
+
imageInfoTextVariant?: string;
|
|
333
|
+
isOldPricePeriodUnderline?: boolean;
|
|
334
|
+
hasImageOffset?: boolean;
|
|
321
335
|
};
|
|
322
336
|
};
|
|
323
337
|
export declare const WithoutImageOffset: {
|
|
324
338
|
args: {
|
|
325
339
|
hasImageOffset: boolean;
|
|
326
|
-
title
|
|
327
|
-
description
|
|
328
|
-
hasDiscount
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
customBadge
|
|
339
|
-
hasNewImageType
|
|
340
|
-
hasOutOfStock
|
|
341
|
-
hasBeltBadge
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
isOldPricePeriodUnderline
|
|
340
|
+
title?: string;
|
|
341
|
+
description?: string;
|
|
342
|
+
hasDiscount?: boolean;
|
|
343
|
+
hasCustomBadge?: boolean;
|
|
344
|
+
price?: string;
|
|
345
|
+
oldPrice?: string;
|
|
346
|
+
oldPricePeriod?: string;
|
|
347
|
+
slug?: string;
|
|
348
|
+
period?: string;
|
|
349
|
+
discountRate?: number;
|
|
350
|
+
isResponsive?: boolean;
|
|
351
|
+
image?: React.ReactNode;
|
|
352
|
+
customBadge?: React.ReactNode;
|
|
353
|
+
hasNewImageType?: boolean;
|
|
354
|
+
hasOutOfStock?: boolean;
|
|
355
|
+
hasBeltBadge?: boolean;
|
|
356
|
+
isShowOldPrice?: boolean;
|
|
357
|
+
beltBadgeVariant?: string;
|
|
358
|
+
beltBadgeTitle?: string;
|
|
359
|
+
imageInfoText?: string;
|
|
360
|
+
imageInfoTextVariant?: string;
|
|
361
|
+
isOldPricePeriodUnderline?: boolean;
|
|
348
362
|
};
|
|
349
363
|
};
|
|
350
364
|
export declare const WithoutOldPrice: {
|
|
351
365
|
args: {
|
|
352
366
|
isShowOldPrice: boolean;
|
|
353
367
|
oldPrice: any;
|
|
354
|
-
title
|
|
355
|
-
description
|
|
356
|
-
hasDiscount
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
customBadge
|
|
366
|
-
hasNewImageType
|
|
367
|
-
hasOutOfStock
|
|
368
|
-
hasBeltBadge
|
|
369
|
-
beltBadgeVariant
|
|
370
|
-
beltBadgeTitle
|
|
371
|
-
imageInfoText
|
|
372
|
-
imageInfoTextVariant
|
|
373
|
-
isOldPricePeriodUnderline
|
|
374
|
-
hasImageOffset
|
|
368
|
+
title?: string;
|
|
369
|
+
description?: string;
|
|
370
|
+
hasDiscount?: boolean;
|
|
371
|
+
hasCustomBadge?: boolean;
|
|
372
|
+
price?: string;
|
|
373
|
+
oldPricePeriod?: string;
|
|
374
|
+
slug?: string;
|
|
375
|
+
period?: string;
|
|
376
|
+
discountRate?: number;
|
|
377
|
+
isResponsive?: boolean;
|
|
378
|
+
image?: React.ReactNode;
|
|
379
|
+
customBadge?: React.ReactNode;
|
|
380
|
+
hasNewImageType?: boolean;
|
|
381
|
+
hasOutOfStock?: boolean;
|
|
382
|
+
hasBeltBadge?: boolean;
|
|
383
|
+
beltBadgeVariant?: string;
|
|
384
|
+
beltBadgeTitle?: string;
|
|
385
|
+
imageInfoText?: string;
|
|
386
|
+
imageInfoTextVariant?: string;
|
|
387
|
+
isOldPricePeriodUnderline?: boolean;
|
|
388
|
+
hasImageOffset?: boolean;
|
|
375
389
|
};
|
|
376
390
|
};
|
|
377
391
|
export declare const WithoutOldPriceUnderline: {
|
|
378
392
|
args: {
|
|
379
393
|
isOldPricePeriodUnderline: boolean;
|
|
380
|
-
title
|
|
381
|
-
description
|
|
382
|
-
hasDiscount
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
customBadge
|
|
393
|
-
hasNewImageType
|
|
394
|
-
hasOutOfStock
|
|
395
|
-
hasBeltBadge
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
hasImageOffset
|
|
394
|
+
title?: string;
|
|
395
|
+
description?: string;
|
|
396
|
+
hasDiscount?: boolean;
|
|
397
|
+
hasCustomBadge?: boolean;
|
|
398
|
+
price?: string;
|
|
399
|
+
oldPrice?: string;
|
|
400
|
+
oldPricePeriod?: string;
|
|
401
|
+
slug?: string;
|
|
402
|
+
period?: string;
|
|
403
|
+
discountRate?: number;
|
|
404
|
+
isResponsive?: boolean;
|
|
405
|
+
image?: React.ReactNode;
|
|
406
|
+
customBadge?: React.ReactNode;
|
|
407
|
+
hasNewImageType?: boolean;
|
|
408
|
+
hasOutOfStock?: boolean;
|
|
409
|
+
hasBeltBadge?: boolean;
|
|
410
|
+
isShowOldPrice?: boolean;
|
|
411
|
+
beltBadgeVariant?: string;
|
|
412
|
+
beltBadgeTitle?: string;
|
|
413
|
+
imageInfoText?: string;
|
|
414
|
+
imageInfoTextVariant?: string;
|
|
415
|
+
hasImageOffset?: boolean;
|
|
402
416
|
};
|
|
403
417
|
};
|