webcoreui 1.5.0-0 → 1.5.0-beta.2
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/astro.d.ts +62 -56
- package/astro.js +4 -0
- package/components/Accordion/Accordion.astro +1 -1
- package/components/Accordion/Accordion.svelte +60 -58
- package/components/Accordion/Accordion.tsx +4 -2
- package/components/Alert/Alert.astro +2 -1
- package/components/Alert/Alert.svelte +9 -2
- package/components/Alert/Alert.tsx +10 -3
- package/components/Alert/alert.ts +2 -18
- package/components/AspectRatio/AspectRatio.astro +1 -1
- package/components/AspectRatio/AspectRatio.svelte +7 -2
- package/components/AspectRatio/AspectRatio.tsx +6 -3
- package/components/AspectRatio/aspectratio.ts +0 -10
- package/components/Avatar/Avatar.astro +1 -1
- package/components/Avatar/Avatar.svelte +3 -1
- package/components/Avatar/Avatar.tsx +3 -2
- package/components/Badge/Badge.astro +2 -1
- package/components/Badge/Badge.svelte +9 -2
- package/components/Badge/Badge.tsx +8 -3
- package/components/Badge/badge.ts +11 -13
- package/components/Banner/Banner.astro +1 -1
- package/components/Banner/Banner.svelte +7 -2
- package/components/Banner/Banner.tsx +6 -2
- package/components/Banner/banner.ts +0 -10
- package/components/BottomNavigation/BottomNavigation.astro +1 -1
- package/components/BottomNavigation/BottomNavigation.svelte +3 -1
- package/components/BottomNavigation/BottomNavigation.tsx +3 -2
- package/components/Breadcrumb/Breadcrumb.astro +1 -1
- package/components/Breadcrumb/Breadcrumb.svelte +3 -1
- package/components/Breadcrumb/Breadcrumb.tsx +3 -1
- package/components/Button/Button.astro +2 -1
- package/components/Button/Button.svelte +9 -2
- package/components/Button/Button.tsx +7 -2
- package/components/Button/button.ts +23 -20
- package/components/Card/Card.astro +9 -2
- package/components/Card/Card.svelte +17 -4
- package/components/Card/Card.tsx +23 -6
- package/components/Card/card.module.scss +11 -4
- package/components/Card/card.ts +3 -16
- package/components/Carousel/Carousel.astro +1 -1
- package/components/Carousel/Carousel.svelte +8 -3
- package/components/Carousel/Carousel.tsx +7 -2
- package/components/Carousel/carousel.ts +0 -12
- package/components/CarouselItem/CarouselItem.astro +14 -0
- package/components/CarouselItem/CarouselItem.svelte +18 -0
- package/components/CarouselItem/CarouselItem.tsx +18 -0
- package/components/CarouselItem/carouselItem.ts +4 -0
- package/components/Checkbox/Checkbox.astro +3 -6
- package/components/Checkbox/Checkbox.svelte +9 -7
- package/components/Checkbox/Checkbox.tsx +8 -5
- package/components/Checkbox/checkbox.ts +2 -17
- package/components/Collapsible/Collapsible.astro +1 -1
- package/components/Collapsible/Collapsible.svelte +9 -2
- package/components/Collapsible/Collapsible.tsx +8 -2
- package/components/Collapsible/collapsible.ts +0 -15
- package/components/ConditionalWrapper/ConditionalWrapper.astro +1 -1
- package/components/ConditionalWrapper/ConditionalWrapper.svelte +8 -2
- package/components/ConditionalWrapper/ConditionalWrapper.tsx +7 -2
- package/components/ConditionalWrapper/conditionalwrapper.ts +2 -14
- package/components/ContextMenu/ContextMenu.astro +2 -1
- package/components/ContextMenu/ContextMenu.svelte +9 -3
- package/components/ContextMenu/ContextMenu.tsx +8 -2
- package/components/ContextMenu/contextmenu.ts +2 -17
- package/components/Copy/Copy.astro +2 -2
- package/components/Copy/Copy.svelte +8 -3
- package/components/Copy/Copy.tsx +7 -3
- package/components/Copy/copy.ts +2 -12
- package/components/Counter/Counter.astro +3 -2
- package/components/Counter/Counter.svelte +10 -5
- package/components/Counter/Counter.tsx +11 -7
- package/components/Counter/counter.ts +2 -11
- package/components/DataTable/DataTable.astro +1 -1
- package/components/DataTable/DataTable.svelte +8 -2
- package/components/DataTable/DataTable.tsx +7 -2
- package/components/DataTable/datatable.ts +0 -12
- package/components/Flex/Flex.astro +2 -1
- package/components/Flex/Flex.svelte +8 -2
- package/components/Flex/Flex.tsx +8 -3
- package/components/Flex/flex.ts +2 -15
- package/components/Footer/Footer.astro +1 -1
- package/components/Footer/Footer.svelte +7 -2
- package/components/Footer/Footer.tsx +6 -2
- package/components/Footer/footer.ts +0 -10
- package/components/Grid/Grid.astro +2 -1
- package/components/Grid/Grid.svelte +8 -2
- package/components/Grid/Grid.tsx +8 -3
- package/components/Grid/grid.ts +2 -15
- package/components/Group/Group.astro +1 -1
- package/components/Group/Group.svelte +7 -2
- package/components/Group/Group.tsx +6 -2
- package/components/Group/group.ts +0 -10
- package/components/Icon/Icon.astro +1 -1
- package/components/Icon/Icon.svelte +3 -1
- package/components/Icon/Icon.tsx +3 -2
- package/components/Image/Image.astro +2 -1
- package/components/Image/Image.svelte +4 -1
- package/components/Image/Image.tsx +3 -1
- package/components/Image/image.ts +2 -3
- package/components/ImageLoader/ImageLoader.astro +1 -1
- package/components/ImageLoader/ImageLoader.svelte +3 -1
- package/components/ImageLoader/ImageLoader.tsx +4 -2
- package/components/Input/Input.astro +3 -2
- package/components/Input/Input.svelte +14 -4
- package/components/Input/Input.tsx +11 -3
- package/components/Input/input.ts +26 -53
- package/components/Kbd/Kbd.astro +1 -1
- package/components/Kbd/Kbd.svelte +7 -2
- package/components/Kbd/Kbd.tsx +6 -2
- package/components/Kbd/kbd.ts +0 -10
- package/components/List/List.astro +1 -1
- package/components/List/List.svelte +6 -2
- package/components/List/List.tsx +8 -4
- package/components/List/list.ts +0 -8
- package/components/Masonry/Masonry.astro +1 -1
- package/components/Masonry/Masonry.svelte +7 -2
- package/components/Masonry/Masonry.tsx +7 -3
- package/components/Masonry/masonry.ts +2 -13
- package/components/Menu/Menu.astro +1 -1
- package/components/Menu/Menu.svelte +7 -2
- package/components/Menu/Menu.tsx +6 -2
- package/components/Menu/menu.ts +0 -10
- package/components/Modal/Modal.astro +2 -3
- package/components/Modal/Modal.svelte +8 -4
- package/components/Modal/Modal.tsx +6 -4
- package/components/Modal/modal.ts +2 -14
- package/components/OTPInput/OTPInput.astro +3 -5
- package/components/OTPInput/OTPInput.svelte +6 -6
- package/components/OTPInput/OTPInput.tsx +10 -8
- package/components/OTPInput/otpinput.ts +2 -4
- package/components/Pagination/Pagination.astro +1 -1
- package/components/Pagination/Pagination.svelte +6 -2
- package/components/Pagination/Pagination.tsx +6 -2
- package/components/Pagination/pagination.ts +0 -8
- package/components/Popover/Popover.astro +3 -7
- package/components/Popover/Popover.svelte +9 -8
- package/components/Popover/Popover.tsx +9 -12
- package/components/Popover/popover.ts +2 -15
- package/components/Progress/Progress.astro +1 -1
- package/components/Progress/Progress.svelte +3 -1
- package/components/Progress/Progress.tsx +3 -1
- package/components/Radio/Radio.astro +3 -4
- package/components/Radio/Radio.svelte +10 -5
- package/components/Radio/Radio.tsx +7 -5
- package/components/Radio/radio.ts +2 -14
- package/components/RangeSlider/RangeSlider.astro +1 -1
- package/components/RangeSlider/RangeSlider.svelte +6 -2
- package/components/RangeSlider/RangeSlider.tsx +7 -3
- package/components/RangeSlider/rangeslider.ts +0 -9
- package/components/Rating/Rating.astro +1 -1
- package/components/Rating/Rating.svelte +3 -1
- package/components/Rating/Rating.tsx +3 -1
- package/components/Ribbon/Ribbon.astro +1 -1
- package/components/Ribbon/Ribbon.svelte +7 -2
- package/components/Ribbon/Ribbon.tsx +6 -2
- package/components/Ribbon/ribbon.ts +0 -10
- package/components/Select/Select.astro +1 -1
- package/components/Select/Select.svelte +9 -4
- package/components/Select/Select.tsx +9 -4
- package/components/Select/select.ts +1 -12
- package/components/Sheet/Sheet.astro +2 -1
- package/components/Sheet/Sheet.svelte +5 -3
- package/components/Sheet/Sheet.tsx +5 -4
- package/components/Sheet/sheet.ts +3 -10
- package/components/Sidebar/Sidebar.astro +1 -1
- package/components/Sidebar/Sidebar.svelte +7 -2
- package/components/Sidebar/Sidebar.tsx +6 -2
- package/components/Sidebar/sidebar.ts +0 -10
- package/components/Skeleton/Skeleton.astro +1 -1
- package/components/Skeleton/Skeleton.svelte +3 -1
- package/components/Skeleton/Skeleton.tsx +3 -1
- package/components/Slider/Slider.astro +1 -1
- package/components/Slider/Slider.svelte +8 -2
- package/components/Slider/Slider.tsx +6 -2
- package/components/Slider/slider.ts +0 -10
- package/components/SpeedDial/SpeedDial.astro +1 -1
- package/components/SpeedDial/SpeedDial.svelte +3 -1
- package/components/SpeedDial/SpeedDial.tsx +4 -2
- package/components/Spinner/Spinner.astro +1 -1
- package/components/Spinner/Spinner.svelte +3 -1
- package/components/Spinner/Spinner.tsx +3 -1
- package/components/Spoiler/Spoiler.astro +1 -1
- package/components/Spoiler/Spoiler.svelte +7 -2
- package/components/Spoiler/Spoiler.tsx +6 -2
- package/components/Spoiler/spoiler.ts +0 -10
- package/components/Stepper/Stepper.astro +1 -1
- package/components/Stepper/Stepper.svelte +3 -1
- package/components/Stepper/Stepper.tsx +3 -1
- package/components/Switch/Switch.astro +7 -2
- package/components/Switch/Switch.svelte +13 -4
- package/components/Switch/Switch.tsx +8 -4
- package/components/Switch/switch.ts +2 -16
- package/components/Tab/Tab.astro +25 -0
- package/components/Tab/Tab.svelte +28 -0
- package/components/Tab/Tab.tsx +30 -0
- package/components/Tab/tab.ts +6 -0
- package/components/Table/Table.astro +1 -1
- package/components/Table/Table.svelte +3 -1
- package/components/Table/Table.tsx +3 -1
- package/components/Tabs/Tabs.astro +58 -25
- package/components/Tabs/Tabs.svelte +45 -12
- package/components/Tabs/Tabs.tsx +42 -11
- package/components/Tabs/tabs.module.scss +7 -6
- package/components/Tabs/tabs.ts +0 -10
- package/components/Textarea/Textarea.astro +3 -6
- package/components/Textarea/Textarea.svelte +10 -7
- package/components/Textarea/Textarea.tsx +9 -7
- package/components/Textarea/textarea.ts +2 -17
- package/components/ThemeSwitcher/ThemeSwitcher.astro +1 -1
- package/components/ThemeSwitcher/ThemeSwitcher.svelte +9 -3
- package/components/ThemeSwitcher/ThemeSwitcher.tsx +7 -2
- package/components/ThemeSwitcher/themeswitcher.ts +0 -13
- package/components/Timeline/Timeline.astro +1 -1
- package/components/Timeline/Timeline.svelte +7 -2
- package/components/Timeline/Timeline.tsx +6 -2
- package/components/Timeline/timeline.ts +0 -10
- package/components/TimelineItem/TimelineItem.astro +1 -1
- package/components/TimelineItem/TimelineItem.svelte +7 -2
- package/components/TimelineItem/TimelineItem.tsx +8 -3
- package/components/TimelineItem/timelineitem.ts +0 -12
- package/components/Toast/Toast.astro +2 -1
- package/components/Toast/Toast.svelte +5 -3
- package/components/Toast/Toast.tsx +5 -4
- package/components/Toast/toast.ts +3 -11
- package/package.json +19 -19
- package/react.d.ts +145 -138
- package/react.js +4 -0
- package/svelte.d.ts +145 -138
- package/svelte.js +4 -0
package/svelte.d.ts
CHANGED
|
@@ -1,60 +1,63 @@
|
|
|
1
1
|
import type { Component } from 'svelte'
|
|
2
|
-
|
|
3
|
-
import type {
|
|
4
|
-
import type {
|
|
5
|
-
import type {
|
|
6
|
-
import type {
|
|
7
|
-
import type {
|
|
8
|
-
import type {
|
|
9
|
-
import type {
|
|
10
|
-
import type {
|
|
11
|
-
import type {
|
|
12
|
-
import type {
|
|
13
|
-
import type {
|
|
14
|
-
import type {
|
|
15
|
-
import type {
|
|
16
|
-
import type {
|
|
17
|
-
import type {
|
|
18
|
-
import type {
|
|
19
|
-
import type {
|
|
20
|
-
import type {
|
|
21
|
-
import type {
|
|
22
|
-
import type {
|
|
23
|
-
import type {
|
|
24
|
-
import type {
|
|
25
|
-
import type {
|
|
26
|
-
import type {
|
|
27
|
-
import type {
|
|
28
|
-
import type {
|
|
29
|
-
import type {
|
|
30
|
-
import type {
|
|
31
|
-
import type {
|
|
32
|
-
import type {
|
|
33
|
-
import type {
|
|
34
|
-
import type {
|
|
35
|
-
import type {
|
|
36
|
-
import type {
|
|
37
|
-
import type {
|
|
38
|
-
import type {
|
|
39
|
-
import type {
|
|
40
|
-
import type {
|
|
41
|
-
import type {
|
|
42
|
-
import type {
|
|
43
|
-
import type {
|
|
44
|
-
import type {
|
|
45
|
-
import type {
|
|
46
|
-
import type {
|
|
47
|
-
import type {
|
|
48
|
-
import type {
|
|
49
|
-
import type {
|
|
50
|
-
import type {
|
|
51
|
-
import type {
|
|
52
|
-
import type {
|
|
53
|
-
import type {
|
|
54
|
-
import type {
|
|
55
|
-
import type {
|
|
56
|
-
import type {
|
|
57
|
-
import type {
|
|
2
|
+
|
|
3
|
+
import type { Props as WAccordionProps } from './components/Accordion/Accordion.svelte'
|
|
4
|
+
import type { Props as WAlertProps } from './components/Alert/Alert.svelte'
|
|
5
|
+
import type { Props as WAspectRatioProps } from './components/AspectRatio/AspectRatio.svelte'
|
|
6
|
+
import type { Props as WAvatarProps } from './components/Avatar/Avatar.svelte'
|
|
7
|
+
import type { Props as WBadgeProps } from './components/Badge/Badge.svelte'
|
|
8
|
+
import type { Props as WBannerProps } from './components/Banner/Banner.svelte'
|
|
9
|
+
import type { Props as WBottomNavigationProps } from './components/BottomNavigation/BottomNavigation.svelte'
|
|
10
|
+
import type { Props as WBreadcrumbProps } from './components/Breadcrumb/Breadcrumb.svelte'
|
|
11
|
+
import type { Props as WButtonProps } from './components/Button/Button.svelte'
|
|
12
|
+
import type { Props as WCardProps } from './components/Card/Card.svelte'
|
|
13
|
+
import type { Props as WCarouselProps } from './components/Carousel/Carousel.svelte'
|
|
14
|
+
import type { Props as WCarouselItemProps } from './components/CarouselItem/CarouselItem.svelte'
|
|
15
|
+
import type { Props as WCheckboxProps } from './components/Checkbox/Checkbox.svelte'
|
|
16
|
+
import type { Props as WCollapsibleProps } from './components/Collapsible/Collapsible.svelte'
|
|
17
|
+
import type { Props as WConditionalWrapperProps } from './components/ConditionalWrapper/ConditionalWrapper.svelte'
|
|
18
|
+
import type { Props as WContextMenuProps } from './components/ContextMenu/ContextMenu.svelte'
|
|
19
|
+
import type { Props as WCopyProps } from './components/Copy/Copy.svelte'
|
|
20
|
+
import type { Props as WCounterProps } from './components/Counter/Counter.svelte'
|
|
21
|
+
import type { Props as WDataTableProps } from './components/DataTable/DataTable.svelte'
|
|
22
|
+
import type { Props as WFlexProps } from './components/Flex/Flex.svelte'
|
|
23
|
+
import type { Props as WFooterProps } from './components/Footer/Footer.svelte'
|
|
24
|
+
import type { Props as WGridProps } from './components/Grid/Grid.svelte'
|
|
25
|
+
import type { Props as WGroupProps } from './components/Group/Group.svelte'
|
|
26
|
+
import type { Props as WIconProps } from './components/Icon/Icon.svelte'
|
|
27
|
+
import type { Props as WImageProps } from './components/Image/Image.svelte'
|
|
28
|
+
import type { Props as WImageLoaderProps } from './components/ImageLoader/ImageLoader.svelte'
|
|
29
|
+
import type { Props as WInputProps } from './components/Input/Input.svelte'
|
|
30
|
+
import type { Props as WKbdProps } from './components/Kbd/Kbd.svelte'
|
|
31
|
+
import type { Props as WListProps } from './components/List/List.svelte'
|
|
32
|
+
import type { Props as WMasonryProps } from './components/Masonry/Masonry.svelte'
|
|
33
|
+
import type { Props as WMenuProps } from './components/Menu/Menu.svelte'
|
|
34
|
+
import type { Props as WModalProps } from './components/Modal/Modal.svelte'
|
|
35
|
+
import type { Props as WOTPInputProps } from './components/OTPInput/OTPInput.svelte'
|
|
36
|
+
import type { Props as WPaginationProps } from './components/Pagination/Pagination.svelte'
|
|
37
|
+
import type { Props as WPopoverProps } from './components/Popover/Popover.svelte'
|
|
38
|
+
import type { Props as WProgressProps } from './components/Progress/Progress.svelte'
|
|
39
|
+
import type { Props as WRadioProps } from './components/Radio/Radio.svelte'
|
|
40
|
+
import type { Props as WRangeSliderProps } from './components/RangeSlider/RangeSlider.svelte'
|
|
41
|
+
import type { Props as WRatingProps } from './components/Rating/Rating.svelte'
|
|
42
|
+
import type { Props as WRibbonProps } from './components/Ribbon/Ribbon.svelte'
|
|
43
|
+
import type { Props as WSelectProps } from './components/Select/Select.svelte'
|
|
44
|
+
import type { Props as WSheetProps } from './components/Sheet/Sheet.svelte'
|
|
45
|
+
import type { Props as WSidebarProps } from './components/Sidebar/Sidebar.svelte'
|
|
46
|
+
import type { Props as WSkeletonProps } from './components/Skeleton/Skeleton.svelte'
|
|
47
|
+
import type { Props as WSliderProps } from './components/Slider/Slider.svelte'
|
|
48
|
+
import type { Props as WSpeedDialProps } from './components/SpeedDial/SpeedDial.svelte'
|
|
49
|
+
import type { Props as WSpinnerProps } from './components/Spinner/Spinner.svelte'
|
|
50
|
+
import type { Props as WSpoilerProps } from './components/Spoiler/Spoiler.svelte'
|
|
51
|
+
import type { Props as WStepperProps } from './components/Stepper/Stepper.svelte'
|
|
52
|
+
import type { Props as WSwitchProps } from './components/Switch/Switch.svelte'
|
|
53
|
+
import type { Props as WTabProps } from './components/Tab/Tab.svelte'
|
|
54
|
+
import type { Props as WTableProps } from './components/Table/Table.svelte'
|
|
55
|
+
import type { Props as WTabsProps } from './components/Tabs/Tabs.svelte'
|
|
56
|
+
import type { Props as WTextareaProps } from './components/Textarea/Textarea.svelte'
|
|
57
|
+
import type { Props as WThemeSwitcherProps } from './components/ThemeSwitcher/ThemeSwitcher.svelte'
|
|
58
|
+
import type { Props as WTimelineProps } from './components/Timeline/Timeline.svelte'
|
|
59
|
+
import type { Props as WTimelineItemProps } from './components/TimelineItem/TimelineItem.svelte'
|
|
60
|
+
import type { Props as WToastProps } from './components/Toast/Toast.svelte'
|
|
58
61
|
|
|
59
62
|
import type { DataTableEventType as WDataTableEventType, HeadingObject as WHeadingObject } from './components/DataTable/datatable.ts'
|
|
60
63
|
import type { ListEventType as WListEventType } from './components/List/list.ts'
|
|
@@ -64,118 +67,122 @@ import type { SelectEventType as WSelectEventType } from './components/Select/se
|
|
|
64
67
|
|
|
65
68
|
declare module 'webcoreui/svelte' {
|
|
66
69
|
export const Accordion: Component<WAccordionProps>
|
|
67
|
-
export const Alert: Component<
|
|
68
|
-
export const AspectRatio: Component<
|
|
70
|
+
export const Alert: Component<WAlertProps>
|
|
71
|
+
export const AspectRatio: Component<WAspectRatioProps>
|
|
69
72
|
export const Avatar: Component<WAvatarProps>
|
|
70
|
-
export const Badge: Component<
|
|
71
|
-
export const Banner: Component<
|
|
73
|
+
export const Badge: Component<WBadgeProps>
|
|
74
|
+
export const Banner: Component<WBannerProps>
|
|
72
75
|
export const BottomNavigation: Component<WBottomNavigationProps>
|
|
73
76
|
export const Breadcrumb: Component<WBreadcrumbProps>
|
|
74
|
-
export const Button: Component<
|
|
75
|
-
export const Card: Component<
|
|
76
|
-
export const Carousel: Component<
|
|
77
|
-
export const
|
|
78
|
-
export const
|
|
79
|
-
export const
|
|
80
|
-
export const
|
|
81
|
-
export const
|
|
82
|
-
export const
|
|
83
|
-
export const
|
|
84
|
-
export const
|
|
85
|
-
export const
|
|
86
|
-
export const
|
|
87
|
-
export const
|
|
77
|
+
export const Button: Component<WButtonProps>
|
|
78
|
+
export const Card: Component<WCardProps>
|
|
79
|
+
export const Carousel: Component<WCarouselProps>
|
|
80
|
+
export const CarouselItem: Component<WCarouselItemProps>
|
|
81
|
+
export const Checkbox: Component<WCheckboxProps>
|
|
82
|
+
export const Collapsible: Component<WCollapsibleProps>
|
|
83
|
+
export const ConditionalWrapper: Component<WConditionalWrapperProps>
|
|
84
|
+
export const ContextMenu: Component<WContextMenuProps>
|
|
85
|
+
export const Copy: Component<WCopyProps>
|
|
86
|
+
export const Counter: Component<WCounterProps>
|
|
87
|
+
export const DataTable: Component<WDataTableProps>
|
|
88
|
+
export const Flex: Component<WFlexProps>
|
|
89
|
+
export const Footer: Component<WFooterProps>
|
|
90
|
+
export const Grid: Component<WGridProps>
|
|
91
|
+
export const Group: Component<WGroupProps>
|
|
88
92
|
export const Icon: Component<WIconProps>
|
|
89
93
|
export const Image: Component<WImageProps>
|
|
90
94
|
export const ImageLoader: Component<WImageLoaderProps>
|
|
91
|
-
export const Input: Component<
|
|
92
|
-
export const Kbd: Component<
|
|
93
|
-
export const List: Component<
|
|
94
|
-
export const Masonry: Component<
|
|
95
|
-
export const Menu: Component<
|
|
96
|
-
export const Modal: Component<
|
|
95
|
+
export const Input: Component<WInputProps>
|
|
96
|
+
export const Kbd: Component<WKbdProps>
|
|
97
|
+
export const List: Component<WListProps>
|
|
98
|
+
export const Masonry: Component<WMasonryProps>
|
|
99
|
+
export const Menu: Component<WMenuProps>
|
|
100
|
+
export const Modal: Component<WModalProps>
|
|
97
101
|
export const OTPInput: Component<WOTPInputProps>
|
|
98
|
-
export const Pagination: Component<
|
|
99
|
-
export const Popover: Component<
|
|
102
|
+
export const Pagination: Component<WPaginationProps>
|
|
103
|
+
export const Popover: Component<WPopoverProps>
|
|
100
104
|
export const Progress: Component<WProgressProps>
|
|
101
|
-
export const Radio: Component<
|
|
102
|
-
export const RangeSlider: Component<
|
|
105
|
+
export const Radio: Component<WRadioProps>
|
|
106
|
+
export const RangeSlider: Component<WRangeSliderProps>
|
|
103
107
|
export const Rating: Component<WRatingProps>
|
|
104
|
-
export const Ribbon: Component<
|
|
105
|
-
export const Select: Component<
|
|
106
|
-
export const Sheet: Component<
|
|
107
|
-
export const Sidebar: Component<
|
|
108
|
+
export const Ribbon: Component<WRibbonProps>
|
|
109
|
+
export const Select: Component<WSelectProps>
|
|
110
|
+
export const Sheet: Component<WSheetProps>
|
|
111
|
+
export const Sidebar: Component<WSidebarProps>
|
|
108
112
|
export const Skeleton: Component<WSkeletonProps>
|
|
109
|
-
export const Slider: Component<
|
|
113
|
+
export const Slider: Component<WSliderProps>
|
|
110
114
|
export const SpeedDial: Component<WSpeedDialProps>
|
|
111
115
|
export const Spinner: Component<WSpinnerProps>
|
|
112
|
-
export const Spoiler: Component<
|
|
116
|
+
export const Spoiler: Component<WSpoilerProps>
|
|
113
117
|
export const Stepper: Component<WStepperProps>
|
|
114
|
-
export const Switch: Component<
|
|
118
|
+
export const Switch: Component<WSwitchProps>
|
|
119
|
+
export const Tab: Component<WTabProps>
|
|
115
120
|
export const Table: Component<WTableProps>
|
|
116
|
-
export const Tabs: Component<
|
|
117
|
-
export const Textarea: Component<
|
|
118
|
-
export const ThemeSwitcher: Component<
|
|
119
|
-
export const Timeline: Component<
|
|
120
|
-
export const TimelineItem: Component<
|
|
121
|
-
export const Toast: Component<
|
|
121
|
+
export const Tabs: Component<WTabsProps>
|
|
122
|
+
export const Textarea: Component<WTextareaProps>
|
|
123
|
+
export const ThemeSwitcher: Component<WThemeSwitcherProps>
|
|
124
|
+
export const Timeline: Component<WTimelineProps>
|
|
125
|
+
export const TimelineItem: Component<WTimelineItemProps>
|
|
126
|
+
export const Toast: Component<WToastProps>
|
|
122
127
|
|
|
123
128
|
export type AccordionProps = WAccordionProps
|
|
124
|
-
export type AlertProps =
|
|
125
|
-
export type AspectRatioProps =
|
|
129
|
+
export type AlertProps = WAlertProps
|
|
130
|
+
export type AspectRatioProps = WAspectRatioProps
|
|
126
131
|
export type AvatarProps = WAvatarProps
|
|
127
|
-
export type BadgeProps =
|
|
128
|
-
export type BannerProps =
|
|
132
|
+
export type BadgeProps = WBadgeProps
|
|
133
|
+
export type BannerProps = WBannerProps
|
|
129
134
|
export type BottomNavigationProps = WBottomNavigationProps
|
|
130
135
|
export type BreadcrumbProps = WBreadcrumbProps
|
|
131
|
-
export type ButtonProps =
|
|
132
|
-
export type CardProps =
|
|
133
|
-
export type CarouselProps =
|
|
134
|
-
export type
|
|
135
|
-
export type
|
|
136
|
-
export type
|
|
137
|
-
export type
|
|
138
|
-
export type
|
|
139
|
-
export type
|
|
140
|
-
export type
|
|
141
|
-
export type
|
|
142
|
-
export type
|
|
143
|
-
export type
|
|
144
|
-
export type
|
|
136
|
+
export type ButtonProps = WButtonProps
|
|
137
|
+
export type CardProps = WCardProps
|
|
138
|
+
export type CarouselProps = WCarouselProps
|
|
139
|
+
export type CarouselItemProps = WCarouselItemProps
|
|
140
|
+
export type CheckboxProps = WCheckboxProps
|
|
141
|
+
export type CollapsibleProps = WCollapsibleProps
|
|
142
|
+
export type ConditionalWrapperProps = WConditionalWrapperProps
|
|
143
|
+
export type ContextMenuProps = WContextMenuProps
|
|
144
|
+
export type CopyProps = WCopyProps
|
|
145
|
+
export type CounterProps = WCounterProps
|
|
146
|
+
export type DataTableProps = WDataTableProps
|
|
147
|
+
export type FlexProps = WFlexProps
|
|
148
|
+
export type FooterProps = WFooterProps
|
|
149
|
+
export type GridProps = WGridProps
|
|
150
|
+
export type GroupProps = WGroupProps
|
|
145
151
|
export type IconProps = WIconProps
|
|
146
152
|
export type ImageProps = WImageProps
|
|
147
153
|
export type ImageLoaderProps = WImageLoaderProps
|
|
148
|
-
export type InputProps =
|
|
149
|
-
export type KbdProps =
|
|
150
|
-
export type ListProps =
|
|
151
|
-
export type MasonryProps =
|
|
152
|
-
export type MenuProps =
|
|
153
|
-
export type ModalProps =
|
|
154
|
+
export type InputProps = WInputProps
|
|
155
|
+
export type KbdProps = WKbdProps
|
|
156
|
+
export type ListProps = WListProps
|
|
157
|
+
export type MasonryProps = WMasonryProps
|
|
158
|
+
export type MenuProps = WMenuProps
|
|
159
|
+
export type ModalProps = WModalProps
|
|
154
160
|
export type OTPInputProps = WOTPInputProps
|
|
155
|
-
export type PaginationProps =
|
|
156
|
-
export type PopoverProps =
|
|
161
|
+
export type PaginationProps = WPaginationProps
|
|
162
|
+
export type PopoverProps = WPopoverProps
|
|
157
163
|
export type ProgressProps = WProgressProps
|
|
158
|
-
export type RadioProps =
|
|
159
|
-
export type RangeSliderProps =
|
|
164
|
+
export type RadioProps = WRadioProps
|
|
165
|
+
export type RangeSliderProps = WRangeSliderProps
|
|
160
166
|
export type RatingProps = WRatingProps
|
|
161
|
-
export type RibbonProps =
|
|
162
|
-
export type SelectProps =
|
|
163
|
-
export type SheetProps =
|
|
164
|
-
export type SidebarProps =
|
|
167
|
+
export type RibbonProps = WRibbonProps
|
|
168
|
+
export type SelectProps = WSelectProps
|
|
169
|
+
export type SheetProps = WSheetProps
|
|
170
|
+
export type SidebarProps = WSidebarProps
|
|
165
171
|
export type SkeletonProps = WSkeletonProps
|
|
166
|
-
export type SliderProps =
|
|
172
|
+
export type SliderProps = WSliderProps
|
|
167
173
|
export type SpeedDialProps = WSpeedDialProps
|
|
168
174
|
export type SpinnerProps = WSpinnerProps
|
|
169
|
-
export type SpoilerProps =
|
|
175
|
+
export type SpoilerProps = WSpoilerProps
|
|
170
176
|
export type StepperProps = WStepperProps
|
|
171
|
-
export type SwitchProps =
|
|
177
|
+
export type SwitchProps = WSwitchProps
|
|
178
|
+
export type TabProps = WTabProps
|
|
172
179
|
export type TableProps = WTableProps
|
|
173
|
-
export type TabsProps =
|
|
174
|
-
export type TextareaProps =
|
|
175
|
-
export type ThemeSwitcherProps =
|
|
176
|
-
export type TimelineProps =
|
|
177
|
-
export type TimelineItemProps =
|
|
178
|
-
export type ToastProps =
|
|
180
|
+
export type TabsProps = WTabsProps
|
|
181
|
+
export type TextareaProps = WTextareaProps
|
|
182
|
+
export type ThemeSwitcherProps = WThemeSwitcherProps
|
|
183
|
+
export type TimelineProps = WTimelineProps
|
|
184
|
+
export type TimelineItemProps = WTimelineItemProps
|
|
185
|
+
export type ToastProps = WToastProps
|
|
179
186
|
|
|
180
187
|
export type DataTableEventType = WDataTableEventType
|
|
181
188
|
export type HeadingObject = WHeadingObject
|
package/svelte.js
CHANGED
|
@@ -9,6 +9,7 @@ import BreadcrumbComponent from './components/Breadcrumb/Breadcrumb.svelte'
|
|
|
9
9
|
import ButtonComponent from './components/Button/Button.svelte'
|
|
10
10
|
import CardComponent from './components/Card/Card.svelte'
|
|
11
11
|
import CarouselComponent from './components/Carousel/Carousel.svelte'
|
|
12
|
+
import CarouselItemComponent from './components/CarouselItem/CarouselItem.svelte'
|
|
12
13
|
import CheckboxComponent from './components/Checkbox/Checkbox.svelte'
|
|
13
14
|
import CollapsibleComponent from './components/Collapsible/Collapsible.svelte'
|
|
14
15
|
import ConditionalWrapperComponent from './components/ConditionalWrapper/ConditionalWrapper.svelte'
|
|
@@ -47,6 +48,7 @@ import SpinnerComponent from './components/Spinner/Spinner.svelte'
|
|
|
47
48
|
import SpoilerComponent from './components/Spoiler/Spoiler.svelte'
|
|
48
49
|
import StepperComponent from './components/Stepper/Stepper.svelte'
|
|
49
50
|
import SwitchComponent from './components/Switch/Switch.svelte'
|
|
51
|
+
import TabComponent from './components/Tab/Tab.svelte'
|
|
50
52
|
import TableComponent from './components/Table/Table.svelte'
|
|
51
53
|
import TabsComponent from './components/Tabs/Tabs.svelte'
|
|
52
54
|
import TextareaComponent from './components/Textarea/Textarea.svelte'
|
|
@@ -66,6 +68,7 @@ export const Breadcrumb = BreadcrumbComponent
|
|
|
66
68
|
export const Button = ButtonComponent
|
|
67
69
|
export const Card = CardComponent
|
|
68
70
|
export const Carousel = CarouselComponent
|
|
71
|
+
export const CarouselItem = CarouselItemComponent
|
|
69
72
|
export const Checkbox = CheckboxComponent
|
|
70
73
|
export const Collapsible = CollapsibleComponent
|
|
71
74
|
export const ConditionalWrapper = ConditionalWrapperComponent
|
|
@@ -104,6 +107,7 @@ export const Spinner = SpinnerComponent
|
|
|
104
107
|
export const Spoiler = SpoilerComponent
|
|
105
108
|
export const Stepper = StepperComponent
|
|
106
109
|
export const Switch = SwitchComponent
|
|
110
|
+
export const Tab = TabComponent
|
|
107
111
|
export const Table = TableComponent
|
|
108
112
|
export const Tabs = TabsComponent
|
|
109
113
|
export const Textarea = TextareaComponent
|