@smg-automotive/components 25.10.0-chakra-v3.3 → 25.10.0-gallery-header-v3-migrate.1
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/cjs/components/formControlSection/index.d.ts +11 -0
- package/dist/cjs/components/formControlSection/index.d.ts.map +1 -0
- package/dist/cjs/components/galleryHeader/index.d.ts +10 -0
- package/dist/cjs/components/galleryHeader/index.d.ts.map +1 -0
- package/dist/cjs/components/index.d.ts +2 -0
- package/dist/cjs/components/index.d.ts.map +1 -1
- package/dist/cjs/index.js +119 -5
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/themes/shared/index.d.ts +1 -0
- package/dist/cjs/themes/shared/index.d.ts.map +1 -1
- package/dist/cjs/themes/shared/slotRecipes/galleryHeader.d.ts +2 -0
- package/dist/cjs/themes/shared/slotRecipes/galleryHeader.d.ts.map +1 -0
- package/dist/cjs/themes/shared/slotRecipes/index.d.ts +1 -0
- package/dist/cjs/themes/shared/slotRecipes/index.d.ts.map +1 -1
- package/dist/esm/components/formControlSection/index.d.ts +11 -0
- package/dist/esm/components/formControlSection/index.d.ts.map +1 -0
- package/dist/esm/components/formControlSection/index.js +190 -0
- package/dist/esm/components/formControlSection/index.js.map +1 -0
- package/dist/esm/components/galleryHeader/index.d.ts +10 -0
- package/dist/esm/components/galleryHeader/index.d.ts.map +1 -0
- package/dist/esm/components/galleryHeader/index.js +200 -0
- package/dist/esm/components/galleryHeader/index.js.map +1 -0
- package/dist/esm/components/index.d.ts +2 -0
- package/dist/esm/components/index.d.ts.map +1 -1
- package/dist/esm/components/themeProvider/index.js +1 -0
- package/dist/esm/components/themeProvider/index.js.map +1 -1
- package/dist/esm/components/tooltip/index.js +25 -0
- package/dist/esm/components/tooltip/index.js.map +1 -0
- package/dist/esm/index.js +3 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/themes/shared/index.d.ts +1 -0
- package/dist/esm/themes/shared/index.d.ts.map +1 -1
- package/dist/esm/themes/shared/slotRecipes/galleryHeader.d.ts +2 -0
- package/dist/esm/themes/shared/slotRecipes/galleryHeader.d.ts.map +1 -0
- package/dist/esm/themes/shared/slotRecipes/galleryHeader.js +54 -0
- package/dist/esm/themes/shared/slotRecipes/galleryHeader.js.map +1 -0
- package/dist/esm/themes/shared/slotRecipes/index.d.ts +1 -0
- package/dist/esm/themes/shared/slotRecipes/index.d.ts.map +1 -1
- package/dist/esm/themes/shared/slotRecipes/index.js +2 -0
- package/dist/esm/themes/shared/slotRecipes/index.js.map +1 -1
- package/dist/index.d.ts +24 -7
- package/package.json +1 -1
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { defineStyle, defineSlotRecipe } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
var baseStyleContainer = defineStyle({
|
|
4
|
+
color: 'white',
|
|
5
|
+
px: '2xl',
|
|
6
|
+
py: 'lg',
|
|
7
|
+
position: {
|
|
8
|
+
base: 'fixed',
|
|
9
|
+
md: 'static',
|
|
10
|
+
},
|
|
11
|
+
top: '0',
|
|
12
|
+
left: '0',
|
|
13
|
+
right: '0',
|
|
14
|
+
zIndex: 'docked',
|
|
15
|
+
});
|
|
16
|
+
var baseStyleGrid = defineStyle({
|
|
17
|
+
alignItems: 'center',
|
|
18
|
+
});
|
|
19
|
+
var baseStyleChildrenContainer = defineStyle({
|
|
20
|
+
// This will be shown only above md breakpoint
|
|
21
|
+
});
|
|
22
|
+
var baseStyleCountContainer = defineStyle({
|
|
23
|
+
textAlign: {
|
|
24
|
+
base: 'left',
|
|
25
|
+
md: 'center',
|
|
26
|
+
},
|
|
27
|
+
});
|
|
28
|
+
var baseStyleCloseContainer = defineStyle({
|
|
29
|
+
textAlign: 'right',
|
|
30
|
+
display: 'flex',
|
|
31
|
+
alignItems: 'center',
|
|
32
|
+
justifyContent: 'flex-end',
|
|
33
|
+
});
|
|
34
|
+
var slots = [
|
|
35
|
+
'container',
|
|
36
|
+
'grid',
|
|
37
|
+
'childrenContainer',
|
|
38
|
+
'countContainer',
|
|
39
|
+
'closeContainer',
|
|
40
|
+
];
|
|
41
|
+
var galleryHeaderRecipe = defineSlotRecipe({
|
|
42
|
+
slots: slots,
|
|
43
|
+
className: 'chakra-gallery-header',
|
|
44
|
+
base: {
|
|
45
|
+
container: baseStyleContainer,
|
|
46
|
+
grid: baseStyleGrid,
|
|
47
|
+
childrenContainer: baseStyleChildrenContainer,
|
|
48
|
+
countContainer: baseStyleCountContainer,
|
|
49
|
+
closeContainer: baseStyleCloseContainer,
|
|
50
|
+
},
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
export { galleryHeaderRecipe };
|
|
54
|
+
//# sourceMappingURL=galleryHeader.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"galleryHeader.js","sources":["../../../../../../src/themes/shared/slotRecipes/galleryHeader.ts"],"sourcesContent":[null],"names":[],"mappings":";;AAEA,IAAM,kBAAkB,GAAG,WAAW,CAAC;AACrC,IAAA,KAAK,EAAE,OAAO;AACd,IAAA,EAAE,EAAE,KAAK;AACT,IAAA,EAAE,EAAE,IAAI;AACR,IAAA,QAAQ,EAAE;AACR,QAAA,IAAI,EAAE,OAAO;AACb,QAAA,EAAE,EAAE,QAAQ;AACb,KAAA;AACD,IAAA,GAAG,EAAE,GAAG;AACR,IAAA,IAAI,EAAE,GAAG;AACT,IAAA,KAAK,EAAE,GAAG;AACV,IAAA,MAAM,EAAE,QAAQ;AACjB,CAAA,CAAC;AAEF,IAAM,aAAa,GAAG,WAAW,CAAC;AAChC,IAAA,UAAU,EAAE,QAAQ;AACrB,CAAA,CAAC;AAEF,IAAM,0BAA0B,GAAG,WAAW,CAAC;AAC7C;AACD,CAAA,CAAC;AAEF,IAAM,uBAAuB,GAAG,WAAW,CAAC;AAC1C,IAAA,SAAS,EAAE;AACT,QAAA,IAAI,EAAE,MAAM;AACZ,QAAA,EAAE,EAAE,QAAQ;AACb,KAAA;AACF,CAAA,CAAC;AAEF,IAAM,uBAAuB,GAAG,WAAW,CAAC;AAC1C,IAAA,SAAS,EAAE,OAAO;AAClB,IAAA,OAAO,EAAE,MAAM;AACf,IAAA,UAAU,EAAE,QAAQ;AACpB,IAAA,cAAc,EAAE,UAAU;AAC3B,CAAA,CAAC;AAEF,IAAM,KAAK,GAAG;IACZ,WAAW;IACX,MAAM;IACN,mBAAmB;IACnB,gBAAgB;IAChB,gBAAgB;CACR;AAEH,IAAM,mBAAmB,GAAG,gBAAgB,CAAC;AAClD,IAAA,KAAK,EAAA,KAAA;AACL,IAAA,SAAS,EAAE,uBAAuB;AAClC,IAAA,IAAI,EAAE;AACJ,QAAA,SAAS,EAAE,kBAAkB;AAC7B,QAAA,IAAI,EAAE,aAAa;AACnB,QAAA,iBAAiB,EAAE,0BAA0B;AAC7C,QAAA,cAAc,EAAE,uBAAuB;AACvC,QAAA,cAAc,EAAE,uBAAuB;AACxC,KAAA;AACF,CAAA;;;;"}
|
|
@@ -107,6 +107,7 @@ export declare const slotRecipes: {
|
|
|
107
107
|
};
|
|
108
108
|
};
|
|
109
109
|
}>;
|
|
110
|
+
galleryHeader: import("@chakra-ui/react").SlotRecipeDefinition<"container" | "grid" | "childrenContainer" | "countContainer" | "closeContainer", import("@chakra-ui/react").SlotRecipeVariantRecord<"container" | "grid" | "childrenContainer" | "countContainer" | "closeContainer">>;
|
|
110
111
|
list: import("@chakra-ui/react").SlotRecipeDefinition<"root" | "item" | "itemLabel" | "itemValue", {
|
|
111
112
|
size: {
|
|
112
113
|
md: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/themes/shared/slotRecipes/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/themes/shared/slotRecipes/index.ts"],"names":[],"mappings":"AA0BA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0BvB,CAAC"}
|
|
@@ -12,6 +12,7 @@ import { numberInputRecipe } from './numberInput.js';
|
|
|
12
12
|
import { markedTextRecipe } from './markedText.js';
|
|
13
13
|
import { listRecipe } from './list.js';
|
|
14
14
|
import { inputSlotRecipe } from './input.js';
|
|
15
|
+
import { galleryHeaderRecipe } from './galleryHeader.js';
|
|
15
16
|
import { fieldSlotRecipe } from './field.js';
|
|
16
17
|
import { energyLabelRecipe } from './energyLabel.js';
|
|
17
18
|
import { dialogFilterRecipe } from './dialogFilter.js';
|
|
@@ -29,6 +30,7 @@ var slotRecipes = {
|
|
|
29
30
|
breadcrumbs: breadcrumbsRecipe,
|
|
30
31
|
card: cardRecipe,
|
|
31
32
|
energyLabel: energyLabelRecipe,
|
|
33
|
+
galleryHeader: galleryHeaderRecipe,
|
|
32
34
|
list: listRecipe,
|
|
33
35
|
markedText: markedTextRecipe,
|
|
34
36
|
dialog: dialogRecipe,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../../../../src/themes/shared/slotRecipes/index.ts"],"sourcesContent":[null],"names":["articleTeaser","accordion","breadcrumbs","card","energyLabel","list","markedText","dialog","simpleHeader","table","vehicleReference","tooltip","field","section","checkbox","input","select","dialogFilter","alert","popoverFilter","numberInput","radio","pagination"],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../../../../src/themes/shared/slotRecipes/index.ts"],"sourcesContent":[null],"names":["articleTeaser","accordion","breadcrumbs","card","energyLabel","galleryHeader","list","markedText","dialog","simpleHeader","table","vehicleReference","tooltip","field","section","checkbox","input","select","dialogFilter","alert","popoverFilter","numberInput","radio","pagination"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AA0BO,IAAM,WAAW,GAAG;AACzB,IAAA,aAAa,EAAAA,mBAAA;AACb,IAAA,SAAS,EAAAC,eAAA;AACT,IAAA,WAAW,EAAAC,iBAAA;AACX,IAAA,IAAI,EAAAC,UAAA;AACJ,IAAA,WAAW,EAAAC,iBAAA;AACX,IAAA,aAAa,EAAAC,mBAAA;AACb,IAAA,IAAI,EAAAC,UAAA;AACJ,IAAA,UAAU,EAAAC,gBAAA;AACV,IAAA,MAAM,EAAAC,YAAA;AACN,IAAA,YAAY,EAAAC,kBAAA;AACZ,IAAA,KAAK,EAAAC,WAAA;AACL,IAAA,gBAAgB,EAAAC,sBAAA;AAChB,IAAA,OAAO,EAAAC,iBAAA;AACP,IAAA,KAAK,EAAAC,eAAA;AACL,IAAA,OAAO,EAAAC,aAAA;AACP,IAAA,QAAQ,EAAAC,cAAA;AACR,IAAA,MAAM,EAAE,YAAY;AACpB,IAAA,KAAK,EAAAC,eAAA;AACL,IAAA,MAAM,EAAAC,gBAAA;AACN,IAAA,YAAY,EAAAC,kBAAA;AACZ,IAAA,KAAK,EAAAC,WAAA;AACL,IAAA,aAAa,EAAAC,mBAAA;AACb,IAAA,WAAW,EAAAC,iBAAA;AACX,IAAA,KAAK,EAAAC,WAAA;AACL,IAAA,UAAU,EAAAC,gBAAA;;;;;"}
|
package/dist/index.d.ts
CHANGED
|
@@ -53,7 +53,7 @@ declare const useDebouncedOnChange: ({ onChange, onBlur, debounce, }: {
|
|
|
53
53
|
|
|
54
54
|
declare const useToken: (scale: string, token: string[], fallback?: string[]) => string[];
|
|
55
55
|
|
|
56
|
-
declare const accordionRecipe: _chakra_ui_react.SlotRecipeDefinition<"
|
|
56
|
+
declare const accordionRecipe: _chakra_ui_react.SlotRecipeDefinition<"item" | "button" | "indicator" | "content" | "body", {
|
|
57
57
|
variant: {
|
|
58
58
|
light: {
|
|
59
59
|
item: {
|
|
@@ -544,7 +544,7 @@ declare const sizes: {
|
|
|
544
544
|
};
|
|
545
545
|
};
|
|
546
546
|
|
|
547
|
-
declare const dialogRecipe: _chakra_ui_react.SlotRecipeDefinition<"content" | "body" | "
|
|
547
|
+
declare const dialogRecipe: _chakra_ui_react.SlotRecipeDefinition<"content" | "body" | "footer" | "header" | "backdrop" | "positioner" | "closeTrigger", {
|
|
548
548
|
overlayColor: {
|
|
549
549
|
gray: {
|
|
550
550
|
backdrop: {
|
|
@@ -1793,6 +1793,16 @@ declare const Flex: FC<FlexProps>;
|
|
|
1793
1793
|
|
|
1794
1794
|
declare const FullHeight: FC<PropsWithChildren>;
|
|
1795
1795
|
|
|
1796
|
+
type Language = 'de' | 'fr' | 'it' | 'en';
|
|
1797
|
+
|
|
1798
|
+
interface GalleryHeaderProps {
|
|
1799
|
+
currentSlide: number;
|
|
1800
|
+
slidesCount: number;
|
|
1801
|
+
onClose: () => void;
|
|
1802
|
+
language: Language;
|
|
1803
|
+
}
|
|
1804
|
+
declare const GalleryHeader: FC<PropsWithChildren<GalleryHeaderProps>>;
|
|
1805
|
+
|
|
1796
1806
|
declare const Grid: React.ForwardRefExoticComponent<_chakra_ui_react.GridProps & React.RefAttributes<HTMLDivElement>>;
|
|
1797
1807
|
declare const GridItem: React.ForwardRefExoticComponent<_chakra_ui_react.GridItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
1798
1808
|
|
|
@@ -2282,8 +2292,6 @@ declare const MobileOnlyAccordion: FC<PropsWithChildren<MobileOnlyAccordionProps
|
|
|
2282
2292
|
|
|
2283
2293
|
type Project = 'listings-web' | 'seller-web';
|
|
2284
2294
|
|
|
2285
|
-
type Language = 'de' | 'fr' | 'it' | 'en';
|
|
2286
|
-
|
|
2287
2295
|
type Environment = 'production' | 'preprod';
|
|
2288
2296
|
|
|
2289
2297
|
interface FooterProps {
|
|
@@ -2355,7 +2363,7 @@ type SectionProps = SectionVariantProps & {
|
|
|
2355
2363
|
};
|
|
2356
2364
|
declare const Section: FC<SectionProps>;
|
|
2357
2365
|
|
|
2358
|
-
declare const selectSlotRecipe: _chakra_ui_react.SlotRecipeDefinition<"indicator" | "
|
|
2366
|
+
declare const selectSlotRecipe: _chakra_ui_react.SlotRecipeDefinition<"indicator" | "field" | "root", {
|
|
2359
2367
|
variant: {
|
|
2360
2368
|
outline: {
|
|
2361
2369
|
field: _chakra_ui_react.SystemStyleObject;
|
|
@@ -2507,6 +2515,15 @@ type Props = {
|
|
|
2507
2515
|
};
|
|
2508
2516
|
declare const TopVehicleSharedBadge: FC<PropsWithChildren<Props>>;
|
|
2509
2517
|
|
|
2518
|
+
type BaseProps = {
|
|
2519
|
+
id: string;
|
|
2520
|
+
errorMessage?: string;
|
|
2521
|
+
label?: string;
|
|
2522
|
+
hint?: string;
|
|
2523
|
+
tooltip?: string;
|
|
2524
|
+
};
|
|
2525
|
+
declare const FormControlSection: FC<PropsWithChildren<BaseProps>>;
|
|
2526
|
+
|
|
2510
2527
|
declare const convertRemEmToPx: (value: string) => number;
|
|
2511
2528
|
|
|
2512
2529
|
declare class Logger {
|
|
@@ -2514,5 +2531,5 @@ declare class Logger {
|
|
|
2514
2531
|
}
|
|
2515
2532
|
declare const logger: Logger;
|
|
2516
2533
|
|
|
2517
|
-
export { Accordion, AddPhotoIcon, AdvancedSearchIcon, AndroidIcon, AppleIcon, ArrowCircleIcon, ArrowDiagonalIcon, ArrowDownCircleIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpCircleIcon, ArrowUpIcon, ArticleTeaser, AspectRatio, AutoScout24AppLogo, AutoScout24Icon, Avatar, AvatarIcon, AvatarWithNotificationIcon, Badge, BankNotesIcon, BatteryIcon, BookmarkIcon, Breadcrumbs, BulbIcon, Button, CabrioletIcon, CalculatorIcon, CalendarIcon, CallIcon, CamperIcon, CarConditionIcon, CarIcon, Card, Body$1 as CardBody, Footer$2 as CardFooter, Header$1 as CardHeader, Root$2 as CardRoot, CartIcon, CategoryAIcon, CategoryAMinusIcon, CategoryAOneIcon, Center, ChartIcon, ChatBubbleIcon, CheckShieldIcon, Checkbox, CheckboxGroup, CheckmarkCircleColorIcon, CheckmarkCircleIcon, CheckmarkIcon, ChevronDownLargeIcon, ChevronDownSmallIcon, ChevronLeftLargeIcon, ChevronLeftSmallIcon, ChevronRightLargeIcon, ChevronRightSmallIcon, ChevronRightTinyIcon, ChevronUpLargeIcon, ChevronUpSmallIcon, ChfCurrencyIcon, Chip, CloseIcon, CollapseIcon, CompareIcon, ConsumptionIcon, CopyIcon, Count, CoupeIcon, CreditCardIcon, CreditIcon, DatePicker, DaylightIcon, DeleteIcon, DevOverlay, Dialog, DigitalContractIcon, DocumentCheckIcon, DocumentIcon, DoubleChevronDownIcon, DoubleChevronUpIcon, DoubleLineIcon, DownloadIcon, DragIcon, DriveSystemIcon, DriveSystemLargeIcon, DriveTypeIcon, EnergyLabel, EquipmentIcon, ErrorIcon, ErrorPage, ExchangeIcon, ExpandIcon, EyeCrossedIcon, EyeIcon, FacebookIcon, FlagIcon, FlameIcon, FlashIcon, Flex, Footer$1 as Footer, ForwardIcon, FullHeight, GarageIcon, GasStationIcon, GlobeIcon, GoogleIcon, Grid, GridItem, H1, H2, H3, H4, H5, H6, HamburgerMenuIcon, HeartIcon, HighlightedText, HistoryClockIcon, HouseIcon, ImageIcon, InfinityCircleIcon, InfoIcon, InformationBubbleIcon, InformationIcon, Input, InstagramIcon, InteriorIcon, LabelIcon, LayoutWithVehicleReference, Link, LinkedinIcon, List, ListIcon, Item as ListItem, Root$1 as ListRoot, LocationPinIcon, LockIcon, LogoutIcon, MagnifierIcon, MagnifierLargeIcon, MarkedText, MessageIcon, MiniVanIcon, MinusIcon, MissingImage, MissingImageIcon, MobileOnlyAccordion, MotoScout24AppLogo, MotoScout24Icon, MotorcycleIcon, NoPhotoIcon, NotAvailableIcon, NotAvailableSquareIcon, OptimizerIcon, OverflowVerticalIcon, PageLayout, Pagination, PartialClockIcon, PenIcon, PickUpIcon, PlusCircleIcon, PlusIcon, PrintIcon, QualitySealIcon, RangeFilterInput, RangeIcon, Rating, RoadIcon, RocketIcon, RotateIcon, SafeNumberIcon, SaveSearchIcon, ScreenIcon, Section, SedanIcon, Select, Separator, ShareIcon, SimpleGrid, SimpleHeader, SingleColumnCenteredLayout, SmallCarIcon, SortIcon, SpeakerIcon, Stack, StarCircleIcon, StarIcon, SteeringWheelIcon, SuvIcon, SwissFlagIcon, Switch, Table, Body as TableBody, Caption as TableCaption, Cell as TableCell, Column as TableColumn, ColumnGroup as TableColumnGroup, ColumnHeader as TableColumnHeader, Footer as TableFooter, Header as TableHeader, Root as TableRoot, Row as TableRow, ScrollArea as TableScrollArea, Text, ThemeProvider, ThreeSixtyIcon, ThumbsDownIcon, ThumbsUpIcon, TiltedRectangleIcon, TimeIcon, TooltipIcon, TopListingIcon, TopVehicleSharedBadge, TrailerIcon, TransmissionIcon, TrashIcon, TriangleIcon, TruckIcon, TwitterIcon, TwoColumnsLayout, UtilityVehicleIcon, VanIcon, VehiclePowerIcon, VehicleReference, VehicleTypesMotorcycleIcon, VehicleTypesMotorcycleStarIcon, VideoCameraIcon, VideoIcon, ViewCarIcon, ViewMotorcycleIcon, WagonIcon, WarningIcon, WarrantyIcon, WhatsAppIcon, WindowsIcon, YoutubeIcon, autoScout24Config, _default as autoScout24System, breakpoints, convertRemEmToPx, logger, motoScout24Config, _default$1 as motoScout24System, repeatArea, useDebouncedOnChange, useMediaQuery, useToken };
|
|
2518
|
-
export type { AccordionProps, ArticleTeaserProps, AvatarProps, BadgeProps, BaseButtonProps, BreadcrumbsPropsExtended, ButtonSharedProps, CenterProps, ChangeCallback, CheckboxGroupProps, CheckboxProps, ChipProps, CountProps, DatePickerProps, DevOverlayProps, DevOverlayVariables, DialogProps, EnergyLabelProps, ErrorPageProps, FlexProps, HeadingProps, HighlightedTextProps, InputProps, LinkProps, MarkedTextProps, MissingImageProps, MobileOnlyAccordionProps, Option, PaginationProps, PickedNumberInputProps, Props$1 as Props, RangeFilterInputField, RatingProps, SectionProps, SelectProps, SimpleHeaderProps, StackProps, SwitchProps, ThemeProviderProps, UnifiedButtonProps, VehicleReferenceProps };
|
|
2534
|
+
export { Accordion, AddPhotoIcon, AdvancedSearchIcon, AndroidIcon, AppleIcon, ArrowCircleIcon, ArrowDiagonalIcon, ArrowDownCircleIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpCircleIcon, ArrowUpIcon, ArticleTeaser, AspectRatio, AutoScout24AppLogo, AutoScout24Icon, Avatar, AvatarIcon, AvatarWithNotificationIcon, Badge, BankNotesIcon, BatteryIcon, BookmarkIcon, Breadcrumbs, BulbIcon, Button, CabrioletIcon, CalculatorIcon, CalendarIcon, CallIcon, CamperIcon, CarConditionIcon, CarIcon, Card, Body$1 as CardBody, Footer$2 as CardFooter, Header$1 as CardHeader, Root$2 as CardRoot, CartIcon, CategoryAIcon, CategoryAMinusIcon, CategoryAOneIcon, Center, ChartIcon, ChatBubbleIcon, CheckShieldIcon, Checkbox, CheckboxGroup, CheckmarkCircleColorIcon, CheckmarkCircleIcon, CheckmarkIcon, ChevronDownLargeIcon, ChevronDownSmallIcon, ChevronLeftLargeIcon, ChevronLeftSmallIcon, ChevronRightLargeIcon, ChevronRightSmallIcon, ChevronRightTinyIcon, ChevronUpLargeIcon, ChevronUpSmallIcon, ChfCurrencyIcon, Chip, CloseIcon, CollapseIcon, CompareIcon, ConsumptionIcon, CopyIcon, Count, CoupeIcon, CreditCardIcon, CreditIcon, DatePicker, DaylightIcon, DeleteIcon, DevOverlay, Dialog, DigitalContractIcon, DocumentCheckIcon, DocumentIcon, DoubleChevronDownIcon, DoubleChevronUpIcon, DoubleLineIcon, DownloadIcon, DragIcon, DriveSystemIcon, DriveSystemLargeIcon, DriveTypeIcon, EnergyLabel, EquipmentIcon, ErrorIcon, ErrorPage, ExchangeIcon, ExpandIcon, EyeCrossedIcon, EyeIcon, FacebookIcon, FlagIcon, FlameIcon, FlashIcon, Flex, Footer$1 as Footer, FormControlSection, ForwardIcon, FullHeight, GalleryHeader, GarageIcon, GasStationIcon, GlobeIcon, GoogleIcon, Grid, GridItem, H1, H2, H3, H4, H5, H6, HamburgerMenuIcon, HeartIcon, HighlightedText, HistoryClockIcon, HouseIcon, ImageIcon, InfinityCircleIcon, InfoIcon, InformationBubbleIcon, InformationIcon, Input, InstagramIcon, InteriorIcon, LabelIcon, LayoutWithVehicleReference, Link, LinkedinIcon, List, ListIcon, Item as ListItem, Root$1 as ListRoot, LocationPinIcon, LockIcon, LogoutIcon, MagnifierIcon, MagnifierLargeIcon, MarkedText, MessageIcon, MiniVanIcon, MinusIcon, MissingImage, MissingImageIcon, MobileOnlyAccordion, MotoScout24AppLogo, MotoScout24Icon, MotorcycleIcon, NoPhotoIcon, NotAvailableIcon, NotAvailableSquareIcon, OptimizerIcon, OverflowVerticalIcon, PageLayout, Pagination, PartialClockIcon, PenIcon, PickUpIcon, PlusCircleIcon, PlusIcon, PrintIcon, QualitySealIcon, RangeFilterInput, RangeIcon, Rating, RoadIcon, RocketIcon, RotateIcon, SafeNumberIcon, SaveSearchIcon, ScreenIcon, Section, SedanIcon, Select, Separator, ShareIcon, SimpleGrid, SimpleHeader, SingleColumnCenteredLayout, SmallCarIcon, SortIcon, SpeakerIcon, Stack, StarCircleIcon, StarIcon, SteeringWheelIcon, SuvIcon, SwissFlagIcon, Switch, Table, Body as TableBody, Caption as TableCaption, Cell as TableCell, Column as TableColumn, ColumnGroup as TableColumnGroup, ColumnHeader as TableColumnHeader, Footer as TableFooter, Header as TableHeader, Root as TableRoot, Row as TableRow, ScrollArea as TableScrollArea, Text, ThemeProvider, ThreeSixtyIcon, ThumbsDownIcon, ThumbsUpIcon, TiltedRectangleIcon, TimeIcon, TooltipIcon, TopListingIcon, TopVehicleSharedBadge, TrailerIcon, TransmissionIcon, TrashIcon, TriangleIcon, TruckIcon, TwitterIcon, TwoColumnsLayout, UtilityVehicleIcon, VanIcon, VehiclePowerIcon, VehicleReference, VehicleTypesMotorcycleIcon, VehicleTypesMotorcycleStarIcon, VideoCameraIcon, VideoIcon, ViewCarIcon, ViewMotorcycleIcon, WagonIcon, WarningIcon, WarrantyIcon, WhatsAppIcon, WindowsIcon, YoutubeIcon, autoScout24Config, _default as autoScout24System, breakpoints, convertRemEmToPx, logger, motoScout24Config, _default$1 as motoScout24System, repeatArea, useDebouncedOnChange, useMediaQuery, useToken };
|
|
2535
|
+
export type { AccordionProps, ArticleTeaserProps, AvatarProps, BadgeProps, BaseButtonProps, BaseProps, BreadcrumbsPropsExtended, ButtonSharedProps, CenterProps, ChangeCallback, CheckboxGroupProps, CheckboxProps, ChipProps, CountProps, DatePickerProps, DevOverlayProps, DevOverlayVariables, DialogProps, EnergyLabelProps, ErrorPageProps, FlexProps, BaseProps as FormControlSectionProps, GalleryHeaderProps, HeadingProps, HighlightedTextProps, InputProps, LinkProps, MarkedTextProps, MissingImageProps, MobileOnlyAccordionProps, Option, PaginationProps, PickedNumberInputProps, Props$1 as Props, RangeFilterInputField, RatingProps, SectionProps, SelectProps, SimpleHeaderProps, StackProps, SwitchProps, ThemeProviderProps, UnifiedButtonProps, VehicleReferenceProps };
|
package/package.json
CHANGED