@trafilea/afrodita-components 5.0.0-beta.72 → 5.0.0-beta.75
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/build/index.d.ts +50 -1
- package/build/index.esm.js +405 -312
- package/build/index.esm.js.map +1 -1
- package/build/index.js +405 -311
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -119,12 +119,24 @@ interface SearchBarOptionItem {
|
|
|
119
119
|
price: string;
|
|
120
120
|
title: string;
|
|
121
121
|
optionUrl: string;
|
|
122
|
+
}
|
|
123
|
+
interface imageVideoProps {
|
|
124
|
+
imageLink: string;
|
|
125
|
+
isVideo?: {
|
|
126
|
+
videoTitle?: string;
|
|
127
|
+
videoSubtitle?: string;
|
|
128
|
+
textColor?: string;
|
|
129
|
+
videoLink?: string;
|
|
130
|
+
};
|
|
131
|
+
isMobile?: boolean;
|
|
122
132
|
}
|
|
123
133
|
|
|
124
134
|
declare const SixtyDaysGuarantee: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
125
135
|
|
|
126
136
|
declare const Frown: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
|
|
127
137
|
|
|
138
|
+
declare const Smiling: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
|
|
139
|
+
|
|
128
140
|
declare const BulletOne: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
129
141
|
|
|
130
142
|
declare const BulletTwo: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
@@ -133,6 +145,7 @@ declare const BulletThree: ({ height, width, fill, title }: IconProps) => JSX.El
|
|
|
133
145
|
|
|
134
146
|
declare const Custom_SixtyDaysGuarantee: typeof SixtyDaysGuarantee;
|
|
135
147
|
declare const Custom_Frown: typeof Frown;
|
|
148
|
+
declare const Custom_Smiling: typeof Smiling;
|
|
136
149
|
declare const Custom_BulletOne: typeof BulletOne;
|
|
137
150
|
declare const Custom_BulletTwo: typeof BulletTwo;
|
|
138
151
|
declare const Custom_BulletThree: typeof BulletThree;
|
|
@@ -140,6 +153,7 @@ declare namespace Custom {
|
|
|
140
153
|
export {
|
|
141
154
|
Custom_SixtyDaysGuarantee as SixtyDaysGuarantee,
|
|
142
155
|
Custom_Frown as Frown,
|
|
156
|
+
Custom_Smiling as Smiling,
|
|
143
157
|
Custom_BulletOne as BulletOne,
|
|
144
158
|
Custom_BulletTwo as BulletTwo,
|
|
145
159
|
Custom_BulletThree as BulletThree,
|
|
@@ -234,6 +248,14 @@ declare const SignForm: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
234
248
|
|
|
235
249
|
declare const QrCode: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
236
250
|
|
|
251
|
+
declare const FreeExchange: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
252
|
+
|
|
253
|
+
declare const ShopNow: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
254
|
+
|
|
255
|
+
declare const HasselFreeReturns: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
256
|
+
|
|
257
|
+
declare const Play: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
258
|
+
|
|
237
259
|
type Other_LoadingProps = LoadingProps;
|
|
238
260
|
declare const Other_Loading: typeof Loading;
|
|
239
261
|
declare const Other_Shapermint: typeof Shapermint;
|
|
@@ -245,6 +267,10 @@ declare const Other_Email: typeof Email;
|
|
|
245
267
|
declare const Other_CallUs: typeof CallUs;
|
|
246
268
|
declare const Other_SignForm: typeof SignForm;
|
|
247
269
|
declare const Other_QrCode: typeof QrCode;
|
|
270
|
+
declare const Other_FreeExchange: typeof FreeExchange;
|
|
271
|
+
declare const Other_ShopNow: typeof ShopNow;
|
|
272
|
+
declare const Other_HasselFreeReturns: typeof HasselFreeReturns;
|
|
273
|
+
declare const Other_Play: typeof Play;
|
|
248
274
|
declare namespace Other {
|
|
249
275
|
export {
|
|
250
276
|
FitPredictor$1 as FitPredictor,
|
|
@@ -259,6 +285,10 @@ declare namespace Other {
|
|
|
259
285
|
Other_CallUs as CallUs,
|
|
260
286
|
Other_SignForm as SignForm,
|
|
261
287
|
Other_QrCode as QrCode,
|
|
288
|
+
Other_FreeExchange as FreeExchange,
|
|
289
|
+
Other_ShopNow as ShopNow,
|
|
290
|
+
Other_HasselFreeReturns as HasselFreeReturns,
|
|
291
|
+
Other_Play as Play,
|
|
262
292
|
};
|
|
263
293
|
}
|
|
264
294
|
|
|
@@ -445,6 +475,8 @@ interface IconWrapperProps {
|
|
|
445
475
|
|
|
446
476
|
declare const Mail: ({ height, width, }: Pick<IconWrapperProps, 'width' | 'height'>) => JSX.Element;
|
|
447
477
|
|
|
478
|
+
declare const Community$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
479
|
+
|
|
448
480
|
declare const Messaging_QuestionCircle: typeof QuestionCircle;
|
|
449
481
|
declare const Messaging_Messenger: typeof Messenger;
|
|
450
482
|
declare const Messaging_Comment: typeof Comment;
|
|
@@ -455,6 +487,7 @@ declare namespace Messaging {
|
|
|
455
487
|
Messaging_Messenger as Messenger,
|
|
456
488
|
Messaging_Comment as Comment,
|
|
457
489
|
Messaging_Mail as Mail,
|
|
490
|
+
Community$1 as Community,
|
|
458
491
|
};
|
|
459
492
|
}
|
|
460
493
|
|
|
@@ -1929,6 +1962,22 @@ interface NoteProps {
|
|
|
1929
1962
|
}
|
|
1930
1963
|
declare const Note: ({ accentColor, color, backgroundColor, importantNoteText, text, }: NoteProps) => JSX.Element;
|
|
1931
1964
|
|
|
1965
|
+
interface TextWithImageProps {
|
|
1966
|
+
title: string;
|
|
1967
|
+
text: string;
|
|
1968
|
+
buttomText: string;
|
|
1969
|
+
backgroundColor: string;
|
|
1970
|
+
imageLeftSide?: boolean;
|
|
1971
|
+
URLLink?: string;
|
|
1972
|
+
onButtonClick?: () => void;
|
|
1973
|
+
isRedirectionURL: boolean;
|
|
1974
|
+
btnBGColor?: string;
|
|
1975
|
+
btnHoverBGColor?: string;
|
|
1976
|
+
imgVideo: imageVideoProps;
|
|
1977
|
+
contentAfterButton?: React.ReactNode;
|
|
1978
|
+
}
|
|
1979
|
+
declare const TextWithImage: ({ title, text, buttomText, backgroundColor, imageLeftSide, ...props }: TextWithImageProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1980
|
+
|
|
1932
1981
|
declare global {
|
|
1933
1982
|
interface Events {
|
|
1934
1983
|
modal: {
|
|
@@ -1968,4 +2017,4 @@ declare const formatPrice: (value: number, { locale, currency }?: {
|
|
|
1968
2017
|
currency?: string | undefined;
|
|
1969
2018
|
}) => string;
|
|
1970
2019
|
|
|
1971
|
-
export { Accordion, AmazonButton, AssetsProvider, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, CTAProps, _default as Card, CardSectionType, CartProductItem, CategoryTag, Checkbox, Collection, ColorPickerOption, ComponentPosition, ComponentSize, index_d as CrossSell, DeliveryDetails, DiscountTag, Drawer, DropdownListIcons, DropdownListIconsItem, DropdownListIconsSubItem, DropdownOption, Filter, FilterChange, FilteringDropdown, Tags as FilteringTags, Filters, FitPredictor, Icon, IconButton, IconProps, IconWithOpacityProps, IconsWithTitle, Image, ImageType, Input, InputValidationType, Modal, MultiColorPicker, Note, OfferBanner, OrderBar, Overlay, PackSelector, Pagination, Pattern, PaymentMethod, PaypalButton, Portal, PriceLabel, ProductGallery, ProductGalleryMobile, ProgressBar, QuantityPicker, RadioGroupInput, RadioGroupOption, RadioInput, Rating, Review, ScrollToTop, SearchBar, SearchBarOptionItem, SearchNavigation, SeasonOfferTag, SimpleDropdown, SimpleOrderItem, SingleColorPicker, SizeFitGuide, SizeOption, SizeSelector, SizeTable, SliderNavigation, Spacing, Spinner, StarList, Tab, Tabs, Text, TextButton, Theme, ThemeAssets, ThemeBasicPallete, ThemeBreakpoints, ThemeColorPallete, ThemeColors, ThemeComponent, ThemeFonts, ThemeProvider, ThemeTypography, ThemeVariables, Timer, Tooltip, Totals, WithTestId, decimalFormat, formatPrice, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, modalEvent, simulateMouseClick, sliceString, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };
|
|
2020
|
+
export { Accordion, AmazonButton, AssetsProvider, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, CTAProps, _default as Card, CardSectionType, CartProductItem, CategoryTag, Checkbox, Collection, ColorPickerOption, ComponentPosition, ComponentSize, index_d as CrossSell, DeliveryDetails, DiscountTag, Drawer, DropdownListIcons, DropdownListIconsItem, DropdownListIconsSubItem, DropdownOption, Filter, FilterChange, FilteringDropdown, Tags as FilteringTags, Filters, FitPredictor, Icon, IconButton, IconProps, IconWithOpacityProps, IconsWithTitle, Image, ImageType, Input, InputValidationType, Modal, MultiColorPicker, Note, OfferBanner, OrderBar, Overlay, PackSelector, Pagination, Pattern, PaymentMethod, PaypalButton, Portal, PriceLabel, ProductGallery, ProductGalleryMobile, ProgressBar, QuantityPicker, RadioGroupInput, RadioGroupOption, RadioInput, Rating, Review, ScrollToTop, SearchBar, SearchBarOptionItem, SearchNavigation, SeasonOfferTag, SimpleDropdown, SimpleOrderItem, SingleColorPicker, SizeFitGuide, SizeOption, SizeSelector, SizeTable, SliderNavigation, Spacing, Spinner, StarList, Tab, Tabs, Text, TextButton, TextWithImage, Theme, ThemeAssets, ThemeBasicPallete, ThemeBreakpoints, ThemeColorPallete, ThemeColors, ThemeComponent, ThemeFonts, ThemeProvider, ThemeTypography, ThemeVariables, Timer, Tooltip, Totals, WithTestId, decimalFormat, formatPrice, imageVideoProps, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, modalEvent, simulateMouseClick, sliceString, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };
|