diff --git a/packages/html/src/action-sheet/templates/action-sheet-left.tsx b/packages/html/src/action-sheet/templates/action-sheet-left.tsx index 6f8d4898603..fd88a31410c 100644 --- a/packages/html/src/action-sheet/templates/action-sheet-left.tsx +++ b/packages/html/src/action-sheet/templates/action-sheet-left.tsx @@ -3,3 +3,5 @@ import { ActionSheetNormal } from './action-sheet-normal'; export const ActionSheetLeft = (props) => ( ); + +export default ActionSheetLeft; diff --git a/packages/html/src/action-sheet/templates/action-sheet-normal.tsx b/packages/html/src/action-sheet/templates/action-sheet-normal.tsx index c16fe048099..59120a3b19c 100644 --- a/packages/html/src/action-sheet/templates/action-sheet-normal.tsx +++ b/packages/html/src/action-sheet/templates/action-sheet-normal.tsx @@ -13,3 +13,5 @@ export const ActionSheetNormal = (props) => ( {...props}> ); + +export default ActionSheetNormal; diff --git a/packages/html/src/action-sheet/templates/action-sheet-right.tsx b/packages/html/src/action-sheet/templates/action-sheet-right.tsx index 0970e3b1988..e9af76b9b4c 100644 --- a/packages/html/src/action-sheet/templates/action-sheet-right.tsx +++ b/packages/html/src/action-sheet/templates/action-sheet-right.tsx @@ -3,3 +3,5 @@ import { ActionSheetNormal } from './action-sheet-normal'; export const ActionSheetRight = (props) => ( ); + +export default ActionSheetRight; diff --git a/packages/html/src/action-sheet/templates/action-sheet-top.tsx b/packages/html/src/action-sheet/templates/action-sheet-top.tsx index 1fa8c22dda9..3c6bcaf4876 100644 --- a/packages/html/src/action-sheet/templates/action-sheet-top.tsx +++ b/packages/html/src/action-sheet/templates/action-sheet-top.tsx @@ -3,3 +3,5 @@ import { ActionSheetNormal } from './action-sheet-normal'; export const ActionSheetTop = (props) => ( ); + +export default ActionSheetTop; diff --git a/packages/html/src/appbar/templates/appbar-normal.tsx b/packages/html/src/appbar/templates/appbar-normal.tsx index 4dd47589a8c..d0465360fe7 100644 --- a/packages/html/src/appbar/templates/appbar-normal.tsx +++ b/packages/html/src/appbar/templates/appbar-normal.tsx @@ -29,3 +29,5 @@ export const AppbarNormal = (props) => ( {...props} > ); + +export default AppbarNormal; diff --git a/packages/html/src/autocomplete/templates/autocomplete-adaptive.tsx b/packages/html/src/autocomplete/templates/autocomplete-adaptive.tsx index bb570eaf48f..95a0d2b6286 100644 --- a/packages/html/src/autocomplete/templates/autocomplete-adaptive.tsx +++ b/packages/html/src/autocomplete/templates/autocomplete-adaptive.tsx @@ -5,4 +5,6 @@ export const AutocompleteAdaptive = (props) => ( adaptive={true} {...props} /> -); \ No newline at end of file +); + +export default AutocompleteAdaptive; diff --git a/packages/html/src/autocomplete/templates/autocomplete-grouping-modern.tsx b/packages/html/src/autocomplete/templates/autocomplete-grouping-modern.tsx index ab5bad87296..ee1157b6d6f 100644 --- a/packages/html/src/autocomplete/templates/autocomplete-grouping-modern.tsx +++ b/packages/html/src/autocomplete/templates/autocomplete-grouping-modern.tsx @@ -22,3 +22,5 @@ export const AutocompleteGroupingModern = (props) => ( {...props} /> ); + +export default AutocompleteGroupingModern; diff --git a/packages/html/src/autocomplete/templates/autocomplete-grouping.tsx b/packages/html/src/autocomplete/templates/autocomplete-grouping.tsx index a579a076de3..92b499e0eab 100644 --- a/packages/html/src/autocomplete/templates/autocomplete-grouping.tsx +++ b/packages/html/src/autocomplete/templates/autocomplete-grouping.tsx @@ -21,3 +21,5 @@ export const AutocompleteGrouping = (props) => ( {...props} /> ); + +export default AutocompleteGrouping; diff --git a/packages/html/src/autocomplete/templates/autocomplete-normal.tsx b/packages/html/src/autocomplete/templates/autocomplete-normal.tsx index 6070a016985..26522e471a3 100644 --- a/packages/html/src/autocomplete/templates/autocomplete-normal.tsx +++ b/packages/html/src/autocomplete/templates/autocomplete-normal.tsx @@ -1,3 +1,5 @@ import Autocomplete from "../autocomplete.spec"; -export const AutocompleteNormal = (props) => ; \ No newline at end of file +export const AutocompleteNormal = (props) => ; + +export default AutocompleteNormal; diff --git a/packages/html/src/autocomplete/templates/autocomplete-popup.tsx b/packages/html/src/autocomplete/templates/autocomplete-popup.tsx index 30495fa5413..5b998e2914e 100644 --- a/packages/html/src/autocomplete/templates/autocomplete-popup.tsx +++ b/packages/html/src/autocomplete/templates/autocomplete-popup.tsx @@ -14,3 +14,5 @@ export const AutocompletePopup = (props) => ( {...props} /> ); + +export default AutocompletePopup; diff --git a/packages/html/src/autocomplete/templates/autocomplete-prefix.tsx b/packages/html/src/autocomplete/templates/autocomplete-prefix.tsx index fddb9ed0ee2..5598b9c20ae 100644 --- a/packages/html/src/autocomplete/templates/autocomplete-prefix.tsx +++ b/packages/html/src/autocomplete/templates/autocomplete-prefix.tsx @@ -11,3 +11,5 @@ export const AutocompletePrefix = (props) => ( {...props} /> ); + +export default AutocompletePrefix; diff --git a/packages/html/src/autocomplete/templates/autocomplete-suffix.tsx b/packages/html/src/autocomplete/templates/autocomplete-suffix.tsx index 5e5d25c6bae..b845d86a87d 100644 --- a/packages/html/src/autocomplete/templates/autocomplete-suffix.tsx +++ b/packages/html/src/autocomplete/templates/autocomplete-suffix.tsx @@ -11,3 +11,5 @@ export const AutocompleteSuffix = (props) => ( {...props} /> ); + +export default AutocompleteSuffix; diff --git a/packages/html/src/avatar/templates/avatar-icon.tsx b/packages/html/src/avatar/templates/avatar-icon.tsx index c137e1e47b9..f403a9a83d7 100644 --- a/packages/html/src/avatar/templates/avatar-icon.tsx +++ b/packages/html/src/avatar/templates/avatar-icon.tsx @@ -1,3 +1,5 @@ import Avatar from "../avatar.spec"; export const AvatarIcon = (props: any) => ; + +export default AvatarIcon; diff --git a/packages/html/src/avatar/templates/avatar-image.tsx b/packages/html/src/avatar/templates/avatar-image.tsx index 6168caaf27b..44a4efd2f2c 100644 --- a/packages/html/src/avatar/templates/avatar-image.tsx +++ b/packages/html/src/avatar/templates/avatar-image.tsx @@ -1,3 +1,5 @@ import Avatar from "../avatar.spec"; export const AvatarImage = (props: any) => ; + +export default AvatarImage; diff --git a/packages/html/src/avatar/templates/avatar-text.tsx b/packages/html/src/avatar/templates/avatar-text.tsx index 3fe498d64b5..2fc3758802c 100644 --- a/packages/html/src/avatar/templates/avatar-text.tsx +++ b/packages/html/src/avatar/templates/avatar-text.tsx @@ -1,3 +1,5 @@ import Avatar from "../avatar.spec"; export const AvatarText = (props: any) => ; + +export default AvatarText; diff --git a/packages/html/src/badge/templates/badge-normal.tsx b/packages/html/src/badge/templates/badge-normal.tsx index 8faa9b1f4e9..79ae98112e0 100644 --- a/packages/html/src/badge/templates/badge-normal.tsx +++ b/packages/html/src/badge/templates/badge-normal.tsx @@ -1,3 +1,5 @@ import { Badge } from ".."; export const BadgeNormal = (props) => ; + +export default BadgeNormal; diff --git a/packages/html/src/badge/templates/icon-badge.tsx b/packages/html/src/badge/templates/icon-badge.tsx index 0a8fc015b25..c635f2ee2f7 100644 --- a/packages/html/src/badge/templates/icon-badge.tsx +++ b/packages/html/src/badge/templates/icon-badge.tsx @@ -9,3 +9,5 @@ export const IconBadge = (props) => {...props} /> ; + +export default IconBadge; diff --git a/packages/html/src/bottom-nav/templates/bottom-nav-icons.tsx b/packages/html/src/bottom-nav/templates/bottom-nav-icons.tsx index 553734ad67b..e36d0a8331e 100644 --- a/packages/html/src/bottom-nav/templates/bottom-nav-icons.tsx +++ b/packages/html/src/bottom-nav/templates/bottom-nav-icons.tsx @@ -13,3 +13,5 @@ export const BottomNavIcons = (props) => ( > ); + +export default BottomNavIcons; diff --git a/packages/html/src/bottom-nav/templates/bottom-nav-links.tsx b/packages/html/src/bottom-nav/templates/bottom-nav-links.tsx index f72f04f0c47..20006ce802d 100644 --- a/packages/html/src/bottom-nav/templates/bottom-nav-links.tsx +++ b/packages/html/src/bottom-nav/templates/bottom-nav-links.tsx @@ -13,3 +13,5 @@ export const BottomNavLinks = (props) => ( > ); + +export default BottomNavLinks; diff --git a/packages/html/src/bottom-nav/templates/bottom-nav-normal.tsx b/packages/html/src/bottom-nav/templates/bottom-nav-normal.tsx index 23e1b8385df..e9cb701aa91 100644 --- a/packages/html/src/bottom-nav/templates/bottom-nav-normal.tsx +++ b/packages/html/src/bottom-nav/templates/bottom-nav-normal.tsx @@ -13,3 +13,5 @@ export const BottomNavNormal = (props) => ( > ); + +export default BottomNavNormal; diff --git a/packages/html/src/breadcrumb/templates/breadcrumb-collapsing-auto.tsx b/packages/html/src/breadcrumb/templates/breadcrumb-collapsing-auto.tsx index 85348615213..ad7630e9d54 100644 --- a/packages/html/src/breadcrumb/templates/breadcrumb-collapsing-auto.tsx +++ b/packages/html/src/breadcrumb/templates/breadcrumb-collapsing-auto.tsx @@ -37,3 +37,5 @@ export const BreadcrumbCollapsingAuto = ({ dir, ...other }: any) => ( {...other}> ); + +export default BreadcrumbCollapsingAuto; diff --git a/packages/html/src/breadcrumb/templates/breadcrumb-collapsing-none.tsx b/packages/html/src/breadcrumb/templates/breadcrumb-collapsing-none.tsx index f5de89d667b..91957053ee9 100644 --- a/packages/html/src/breadcrumb/templates/breadcrumb-collapsing-none.tsx +++ b/packages/html/src/breadcrumb/templates/breadcrumb-collapsing-none.tsx @@ -37,3 +37,5 @@ export const BreadcrumbCollapsingNone = ({ dir, ...other }: any) => ( {...other}> ); + +export default BreadcrumbCollapsingNone; diff --git a/packages/html/src/breadcrumb/templates/breadcrumb-collapsing-wrap.tsx b/packages/html/src/breadcrumb/templates/breadcrumb-collapsing-wrap.tsx index cf200693fb6..6e12ead8abc 100644 --- a/packages/html/src/breadcrumb/templates/breadcrumb-collapsing-wrap.tsx +++ b/packages/html/src/breadcrumb/templates/breadcrumb-collapsing-wrap.tsx @@ -51,3 +51,5 @@ export const BreadcrumbCollapsingWrap = ({ dir, ...other }: any) => ( {...other}> ); + +export default BreadcrumbCollapsingWrap; diff --git a/packages/html/src/button-group/templates/icon-button-group.tsx b/packages/html/src/button-group/templates/icon-button-group.tsx index 03375fc8c30..c25e3fe58d1 100644 --- a/packages/html/src/button-group/templates/icon-button-group.tsx +++ b/packages/html/src/button-group/templates/icon-button-group.tsx @@ -10,3 +10,5 @@ export const IconButtonGroup = (props) => ( } /> ); + +export default IconButtonGroup; diff --git a/packages/html/src/button-group/templates/icon-text-button-group.tsx b/packages/html/src/button-group/templates/icon-text-button-group.tsx index a1cba8c765b..631c324128c 100644 --- a/packages/html/src/button-group/templates/icon-text-button-group.tsx +++ b/packages/html/src/button-group/templates/icon-text-button-group.tsx @@ -10,3 +10,5 @@ export const IconTextButtonGroup = (props) => ( } /> ); + +export default IconTextButtonGroup; diff --git a/packages/html/src/button-group/templates/mixed-button-group.tsx b/packages/html/src/button-group/templates/mixed-button-group.tsx index 5f871c89de7..35d702d69fb 100644 --- a/packages/html/src/button-group/templates/mixed-button-group.tsx +++ b/packages/html/src/button-group/templates/mixed-button-group.tsx @@ -10,3 +10,5 @@ export const MixedButtonGroup = (props) => ( } /> ); + +export default MixedButtonGroup; diff --git a/packages/html/src/button-group/templates/text-button-group.tsx b/packages/html/src/button-group/templates/text-button-group.tsx index 9f4d88b2e38..9bfbd0225ce 100644 --- a/packages/html/src/button-group/templates/text-button-group.tsx +++ b/packages/html/src/button-group/templates/text-button-group.tsx @@ -10,3 +10,5 @@ export const TextButtonGroup = (props) => ( } /> ); + +export default TextButtonGroup; diff --git a/packages/html/src/button/templates/icon-button.tsx b/packages/html/src/button/templates/icon-button.tsx index 64d3b015b92..0bdc37b839d 100644 --- a/packages/html/src/button/templates/icon-button.tsx +++ b/packages/html/src/button/templates/icon-button.tsx @@ -1,3 +1,5 @@ import { Button } from "../button.spec"; export const IconButton = (props) => ); + +export default MenuScrollable; diff --git a/packages/html/src/menu/templates/menu-vertical-scrollable.tsx b/packages/html/src/menu/templates/menu-vertical-scrollable.tsx index 95c647af8a2..8ed94bdf983 100644 --- a/packages/html/src/menu/templates/menu-vertical-scrollable.tsx +++ b/packages/html/src/menu/templates/menu-vertical-scrollable.tsx @@ -16,3 +16,5 @@ export const MenuVerticalScrollable = ({ wrapperStyles, ...other }: any) => ( ); + +export default MenuVerticalScrollable; diff --git a/packages/html/src/menu/templates/menu-vertical.tsx b/packages/html/src/menu/templates/menu-vertical.tsx index fd0c2cdfebf..d79aeaaf0b8 100644 --- a/packages/html/src/menu/templates/menu-vertical.tsx +++ b/packages/html/src/menu/templates/menu-vertical.tsx @@ -13,3 +13,5 @@ export const MenuVertical = ({ ...other }: any) => ( {...other} /> ); + +export default MenuVertical; diff --git a/packages/html/src/multiselect/templates/multiselect-adaptive.tsx b/packages/html/src/multiselect/templates/multiselect-adaptive.tsx index caa24c6e301..d8984e17df7 100644 --- a/packages/html/src/multiselect/templates/multiselect-adaptive.tsx +++ b/packages/html/src/multiselect/templates/multiselect-adaptive.tsx @@ -6,3 +6,5 @@ export const MultiSelectAdaptive = (props) => ( {...props} /> ); + +export default MultiSelectAdaptive; diff --git a/packages/html/src/multiselect/templates/multiselect-arrow-button.tsx b/packages/html/src/multiselect/templates/multiselect-arrow-button.tsx index 755b2b77367..b48439d989b 100644 --- a/packages/html/src/multiselect/templates/multiselect-arrow-button.tsx +++ b/packages/html/src/multiselect/templates/multiselect-arrow-button.tsx @@ -1,3 +1,5 @@ import MultiSelect from "../multiselect.spec"; -export const MultiSelectArrowButton = (props) => ; \ No newline at end of file +export const MultiSelectArrowButton = (props) => ; + +export default MultiSelectArrowButton; diff --git a/packages/html/src/multiselect/templates/multiselect-grouping-modern.tsx b/packages/html/src/multiselect/templates/multiselect-grouping-modern.tsx index a38c3ad9e30..02cd6f4d70f 100644 --- a/packages/html/src/multiselect/templates/multiselect-grouping-modern.tsx +++ b/packages/html/src/multiselect/templates/multiselect-grouping-modern.tsx @@ -22,3 +22,5 @@ export const MultiSelectGroupingModern = (props) => ( {...props} /> ); + +export default MultiSelectGroupingModern; diff --git a/packages/html/src/multiselect/templates/multiselect-grouping.tsx b/packages/html/src/multiselect/templates/multiselect-grouping.tsx index 60faf64b6d4..bcbfbd5ab5c 100644 --- a/packages/html/src/multiselect/templates/multiselect-grouping.tsx +++ b/packages/html/src/multiselect/templates/multiselect-grouping.tsx @@ -21,3 +21,5 @@ export const MultiSelectGrouping = (props) => ( {...props} /> ); + +export default MultiSelectGrouping; diff --git a/packages/html/src/multiselect/templates/multiselect-normal.tsx b/packages/html/src/multiselect/templates/multiselect-normal.tsx index 4aac3959122..f8837d0723d 100644 --- a/packages/html/src/multiselect/templates/multiselect-normal.tsx +++ b/packages/html/src/multiselect/templates/multiselect-normal.tsx @@ -1,3 +1,5 @@ import MultiSelect from "../multiselect.spec"; -export const MultiSelectNormal = (props) => ; \ No newline at end of file +export const MultiSelectNormal = (props) => ; + +export default MultiSelectNormal; diff --git a/packages/html/src/multiselect/templates/multiselect-popup.tsx b/packages/html/src/multiselect/templates/multiselect-popup.tsx index 20df7781a5f..a553d37d64b 100644 --- a/packages/html/src/multiselect/templates/multiselect-popup.tsx +++ b/packages/html/src/multiselect/templates/multiselect-popup.tsx @@ -15,3 +15,5 @@ export const MultiSelectPopup = (props) => ( {...props} /> ); + +export default MultiSelectPopup; diff --git a/packages/html/src/multiselect/templates/multiselect-prefix.tsx b/packages/html/src/multiselect/templates/multiselect-prefix.tsx index 8ff934add20..b285b694997 100644 --- a/packages/html/src/multiselect/templates/multiselect-prefix.tsx +++ b/packages/html/src/multiselect/templates/multiselect-prefix.tsx @@ -17,3 +17,5 @@ export const MultiSelectPrefix = (props) => ( {...props} /> ); + +export default MultiSelectPrefix; diff --git a/packages/html/src/multiselect/templates/multiselect-suffix.tsx b/packages/html/src/multiselect/templates/multiselect-suffix.tsx index fdd22604ba3..a15e09d5cc1 100644 --- a/packages/html/src/multiselect/templates/multiselect-suffix.tsx +++ b/packages/html/src/multiselect/templates/multiselect-suffix.tsx @@ -16,3 +16,5 @@ export const MultiSelectSuffix = (props) => ( {...props} /> ); + +export default MultiSelectSuffix; diff --git a/packages/html/src/multiselect/templates/multiselect-value.tsx b/packages/html/src/multiselect/templates/multiselect-value.tsx index b9ccbbbd954..c3d4ec40785 100644 --- a/packages/html/src/multiselect/templates/multiselect-value.tsx +++ b/packages/html/src/multiselect/templates/multiselect-value.tsx @@ -9,4 +9,6 @@ export const MultiSelectValue = ({ size, rounded, children, ...other }: any) => {...other} /> -); \ No newline at end of file +); + +export default MultiSelectValue; diff --git a/packages/html/src/multiselecttree/templates/multiselecttree-adaptive.tsx b/packages/html/src/multiselecttree/templates/multiselecttree-adaptive.tsx index 34c8c18588c..1ca68ae40d7 100644 --- a/packages/html/src/multiselecttree/templates/multiselecttree-adaptive.tsx +++ b/packages/html/src/multiselecttree/templates/multiselecttree-adaptive.tsx @@ -6,3 +6,5 @@ export const MultiSelectTreeAdaptive = (props) => ( {...props} /> ); + +export default MultiSelectTreeAdaptive; diff --git a/packages/html/src/multiselecttree/templates/multiselecttree-arrow-button.tsx b/packages/html/src/multiselecttree/templates/multiselecttree-arrow-button.tsx index 15a80cd07df..f77bfd0b967 100644 --- a/packages/html/src/multiselecttree/templates/multiselecttree-arrow-button.tsx +++ b/packages/html/src/multiselecttree/templates/multiselecttree-arrow-button.tsx @@ -6,3 +6,5 @@ export const MultiSelectTreeArrowButton = (props) => ( {...props} /> ); + +export default MultiSelectTreeArrowButton; diff --git a/packages/html/src/multiselecttree/templates/multiselecttree-filtering.tsx b/packages/html/src/multiselecttree/templates/multiselecttree-filtering.tsx index 9bb7c739aa7..10a3c06dd99 100644 --- a/packages/html/src/multiselecttree/templates/multiselecttree-filtering.tsx +++ b/packages/html/src/multiselecttree/templates/multiselecttree-filtering.tsx @@ -45,3 +45,5 @@ export const MultiSelectTreeFiltering = (props) => ( {...props} /> ); + +export default MultiSelectTreeFiltering; diff --git a/packages/html/src/multiselecttree/templates/multiselecttree-normal.tsx b/packages/html/src/multiselecttree/templates/multiselecttree-normal.tsx index 9959fe9c718..5a27bb56e3b 100644 --- a/packages/html/src/multiselecttree/templates/multiselecttree-normal.tsx +++ b/packages/html/src/multiselecttree/templates/multiselecttree-normal.tsx @@ -1,3 +1,5 @@ import MultiSelectTree from "../multiselecttree.spec"; export const MultiSelectTreeNormal = (props) => ; + +export default MultiSelectTreeNormal; diff --git a/packages/html/src/multiselecttree/templates/multiselecttree-popup.tsx b/packages/html/src/multiselecttree/templates/multiselecttree-popup.tsx index 7aad10bf73a..e2115b44f00 100644 --- a/packages/html/src/multiselecttree/templates/multiselecttree-popup.tsx +++ b/packages/html/src/multiselecttree/templates/multiselecttree-popup.tsx @@ -34,3 +34,5 @@ export const MultiSelectTreePopup = (props) => ( {...props} /> ); + +export default MultiSelectTreePopup; diff --git a/packages/html/src/multiselecttree/templates/multiselecttree-value.tsx b/packages/html/src/multiselecttree/templates/multiselecttree-value.tsx index 9af57e310fc..1c66976fbbb 100644 --- a/packages/html/src/multiselecttree/templates/multiselecttree-value.tsx +++ b/packages/html/src/multiselecttree/templates/multiselecttree-value.tsx @@ -10,3 +10,5 @@ export const MultiSelectTreeValue = ({ size, rounded, children, ...other }: any) /> ); + +export default MultiSelectTreeValue; diff --git a/packages/html/src/multiviewcalendar/templates/multiviewcalendar-century.tsx b/packages/html/src/multiviewcalendar/templates/multiviewcalendar-century.tsx index 80eceaec99d..65f8b8778ad 100644 --- a/packages/html/src/multiviewcalendar/templates/multiviewcalendar-century.tsx +++ b/packages/html/src/multiviewcalendar/templates/multiviewcalendar-century.tsx @@ -51,3 +51,5 @@ export const MultiViewCalendarCentury = ({ showOtherCentury, ...props }: any) => {...props} /> ); + +export default MultiViewCalendarCentury; diff --git a/packages/html/src/multiviewcalendar/templates/multiviewcalendar-decade.tsx b/packages/html/src/multiviewcalendar/templates/multiviewcalendar-decade.tsx index d43aa8593dc..a1533cd22f5 100644 --- a/packages/html/src/multiviewcalendar/templates/multiviewcalendar-decade.tsx +++ b/packages/html/src/multiviewcalendar/templates/multiviewcalendar-decade.tsx @@ -51,3 +51,5 @@ export const MultiViewCalendarDecade = ({ showOtherDecade, ...props }: any) => ( {...props} /> ); + +export default MultiViewCalendarDecade; diff --git a/packages/html/src/multiviewcalendar/templates/multiviewcalendar-normal.tsx b/packages/html/src/multiviewcalendar/templates/multiviewcalendar-normal.tsx index 78a4f1a039a..8f5f23e6433 100644 --- a/packages/html/src/multiviewcalendar/templates/multiviewcalendar-normal.tsx +++ b/packages/html/src/multiviewcalendar/templates/multiviewcalendar-normal.tsx @@ -123,3 +123,5 @@ export const MultiViewCalendarNormal = ({ showCaptions, showOtherMonth, ...props {...props} /> ); + +export default MultiViewCalendarNormal; diff --git a/packages/html/src/multiviewcalendar/templates/multiviewcalendar-with-weeks.tsx b/packages/html/src/multiviewcalendar/templates/multiviewcalendar-with-weeks.tsx index 59467a75cd1..90663bd2826 100644 --- a/packages/html/src/multiviewcalendar/templates/multiviewcalendar-with-weeks.tsx +++ b/packages/html/src/multiviewcalendar/templates/multiviewcalendar-with-weeks.tsx @@ -135,3 +135,5 @@ export const MultiViewCalendarWithWeeks = ({ showOtherMonth, ...other }: any) => {...other} /> ); + +export default MultiViewCalendarWithWeeks; diff --git a/packages/html/src/multiviewcalendar/templates/multiviewcalendar-year.tsx b/packages/html/src/multiviewcalendar/templates/multiviewcalendar-year.tsx index dbc81b13a09..89952daa787 100644 --- a/packages/html/src/multiviewcalendar/templates/multiviewcalendar-year.tsx +++ b/packages/html/src/multiviewcalendar/templates/multiviewcalendar-year.tsx @@ -51,3 +51,5 @@ export const MultiViewCalendarYear = (props: any) => ( {...props} /> ); + +export default MultiViewCalendarYear; diff --git a/packages/html/src/notification/templates/icon-notification-closable.tsx b/packages/html/src/notification/templates/icon-notification-closable.tsx index 6876d71beaf..80b34a956f7 100644 --- a/packages/html/src/notification/templates/icon-notification-closable.tsx +++ b/packages/html/src/notification/templates/icon-notification-closable.tsx @@ -8,3 +8,5 @@ export const IconNotificationClosable = (props) => ( actions={} {...props} /> ); + +export default IconNotificationClosable; diff --git a/packages/html/src/notification/templates/icon-notification.tsx b/packages/html/src/notification/templates/icon-notification.tsx index 0ec6b66d889..cc61739a4e7 100644 --- a/packages/html/src/notification/templates/icon-notification.tsx +++ b/packages/html/src/notification/templates/icon-notification.tsx @@ -7,3 +7,5 @@ export const IconNotification = (props) => ( {...props} /> ); + +export default IconNotification; diff --git a/packages/html/src/notification/templates/notification-closable.tsx b/packages/html/src/notification/templates/notification-closable.tsx index f0108c063f1..4800e427dd4 100644 --- a/packages/html/src/notification/templates/notification-closable.tsx +++ b/packages/html/src/notification/templates/notification-closable.tsx @@ -7,3 +7,5 @@ export const NotificationClosable = (props) => ( actions={} {...props} /> ); + +export default NotificationClosable; diff --git a/packages/html/src/notification/templates/notification-normal.tsx b/packages/html/src/notification/templates/notification-normal.tsx index 8a1f699eb49..b7e28f05810 100644 --- a/packages/html/src/notification/templates/notification-normal.tsx +++ b/packages/html/src/notification/templates/notification-normal.tsx @@ -6,3 +6,5 @@ export const NotificationNormal = (props) => ( {...props} /> ); + +export default NotificationNormal; diff --git a/packages/html/src/numerictextbox/templates/numerictextbox-normal.tsx b/packages/html/src/numerictextbox/templates/numerictextbox-normal.tsx index 7a8394ac52f..64ada4a223a 100644 --- a/packages/html/src/numerictextbox/templates/numerictextbox-normal.tsx +++ b/packages/html/src/numerictextbox/templates/numerictextbox-normal.tsx @@ -1,3 +1,5 @@ import NumericTextbox from "../numerictextbox.spec"; export const NumericTextboxNormal = (props) => ; + +export default NumericTextboxNormal; diff --git a/packages/html/src/numerictextbox/templates/numerictextbox-prefix.tsx b/packages/html/src/numerictextbox/templates/numerictextbox-prefix.tsx index 876049781f4..46c3c84c6f6 100644 --- a/packages/html/src/numerictextbox/templates/numerictextbox-prefix.tsx +++ b/packages/html/src/numerictextbox/templates/numerictextbox-prefix.tsx @@ -11,3 +11,5 @@ export const NumericTextboxPrefix = (props) => ( {...props} /> ); + +export default NumericTextboxPrefix; diff --git a/packages/html/src/numerictextbox/templates/numerictextbox-suffix.tsx b/packages/html/src/numerictextbox/templates/numerictextbox-suffix.tsx index b0ab1282bcb..4bd54ceeb84 100644 --- a/packages/html/src/numerictextbox/templates/numerictextbox-suffix.tsx +++ b/packages/html/src/numerictextbox/templates/numerictextbox-suffix.tsx @@ -11,3 +11,5 @@ export const NumericTextboxSuffix = (props) => ( {...props} /> ); + +export default NumericTextboxSuffix; diff --git a/packages/html/src/orgchart/templates/orgchart-group-normal.tsx b/packages/html/src/orgchart/templates/orgchart-group-normal.tsx index 657567e96df..9e52a046e42 100644 --- a/packages/html/src/orgchart/templates/orgchart-group-normal.tsx +++ b/packages/html/src/orgchart/templates/orgchart-group-normal.tsx @@ -19,3 +19,5 @@ export const OrgchartGroupNormal = ({ details, orientation, justifyContent, ...o {...other} /> ); + +export default OrgchartGroupNormal; diff --git a/packages/html/src/orgchart/templates/orgchart-group-vertical.tsx b/packages/html/src/orgchart/templates/orgchart-group-vertical.tsx index 20860243640..ea0d3b41ef6 100644 --- a/packages/html/src/orgchart/templates/orgchart-group-vertical.tsx +++ b/packages/html/src/orgchart/templates/orgchart-group-vertical.tsx @@ -21,3 +21,5 @@ export const OrgchartGroupVertical = ({ details, orientation, justifyContent, .. {...other} /> ); + +export default OrgchartGroupVertical; diff --git a/packages/html/src/orgchart/templates/orgchart-normal.tsx b/packages/html/src/orgchart/templates/orgchart-normal.tsx index f2b54fd9aa3..cbc39cae071 100644 --- a/packages/html/src/orgchart/templates/orgchart-normal.tsx +++ b/packages/html/src/orgchart/templates/orgchart-normal.tsx @@ -14,3 +14,5 @@ export const OrgchartNormal = ({ details, justifyContent, ...other }: any) => ( {...other} /> ); + +export default OrgchartNormal; diff --git a/packages/html/src/orgchart/templates/orgchart-vertical.tsx b/packages/html/src/orgchart/templates/orgchart-vertical.tsx index f538de3d3a3..58ac0e0fa31 100644 --- a/packages/html/src/orgchart/templates/orgchart-vertical.tsx +++ b/packages/html/src/orgchart/templates/orgchart-vertical.tsx @@ -15,3 +15,5 @@ export const OrgchartVertical = ({ details, justifyContent, ...other }: any) => {...other} /> ); + +export default OrgchartVertical; diff --git a/packages/html/src/pager/templates/pager-adaptive-input.tsx b/packages/html/src/pager/templates/pager-adaptive-input.tsx index 0be5c79570a..ddc0eded4a7 100644 --- a/packages/html/src/pager/templates/pager-adaptive-input.tsx +++ b/packages/html/src/pager/templates/pager-adaptive-input.tsx @@ -7,3 +7,5 @@ export const PagerAdaptiveInput = (props) => ( {...props} /> ); + +export default PagerAdaptiveInput; diff --git a/packages/html/src/pager/templates/pager-adaptive.tsx b/packages/html/src/pager/templates/pager-adaptive.tsx index 2cc281778ec..a722f9b6189 100644 --- a/packages/html/src/pager/templates/pager-adaptive.tsx +++ b/packages/html/src/pager/templates/pager-adaptive.tsx @@ -6,3 +6,5 @@ export const PagerAdaptive = (props) => ( {...props} /> ); + +export default PagerAdaptive; diff --git a/packages/html/src/pager/templates/pager-input.tsx b/packages/html/src/pager/templates/pager-input.tsx index 676dac25435..004b1d9e84f 100644 --- a/packages/html/src/pager/templates/pager-input.tsx +++ b/packages/html/src/pager/templates/pager-input.tsx @@ -6,3 +6,5 @@ export const PagerInput = (props) => ( {...props} /> ); + +export default PagerInput; diff --git a/packages/html/src/pager/templates/pager-normal.tsx b/packages/html/src/pager/templates/pager-normal.tsx index 9af13567102..ee34f374283 100644 --- a/packages/html/src/pager/templates/pager-normal.tsx +++ b/packages/html/src/pager/templates/pager-normal.tsx @@ -1,3 +1,5 @@ import Pager from "../pager.spec"; export const PagerNormal = (props) => ; + +export default PagerNormal; diff --git a/packages/html/src/panelbar/templates/panelbar-expand-content.tsx b/packages/html/src/panelbar/templates/panelbar-expand-content.tsx index 1bac6b1188a..5d3ba1b712e 100644 --- a/packages/html/src/panelbar/templates/panelbar-expand-content.tsx +++ b/packages/html/src/panelbar/templates/panelbar-expand-content.tsx @@ -21,3 +21,5 @@ export const PanelBarExpandContent = (props) => ( {...props} /> ); + +export default PanelBarExpandContent; diff --git a/packages/html/src/panelbar/templates/panelbar-expand-group.tsx b/packages/html/src/panelbar/templates/panelbar-expand-group.tsx index bc3a8002bbc..9eb9084b5d4 100644 --- a/packages/html/src/panelbar/templates/panelbar-expand-group.tsx +++ b/packages/html/src/panelbar/templates/panelbar-expand-group.tsx @@ -31,3 +31,5 @@ export const PanelBarExpandGroup = (props) => ( {...props} /> ); + +export default PanelBarExpandGroup; diff --git a/packages/html/src/panelbar/templates/panelbar-normal.tsx b/packages/html/src/panelbar/templates/panelbar-normal.tsx index 2848e9ee410..c3eb87e8646 100644 --- a/packages/html/src/panelbar/templates/panelbar-normal.tsx +++ b/packages/html/src/panelbar/templates/panelbar-normal.tsx @@ -19,3 +19,5 @@ export const PanelBarNormal = (props) => ( {...props} /> ); + +export default PanelBarNormal; diff --git a/packages/html/src/pdf-viewer/templates/pdf-viewer-blank.tsx b/packages/html/src/pdf-viewer/templates/pdf-viewer-blank.tsx index b991184b1dd..6728b10200e 100644 --- a/packages/html/src/pdf-viewer/templates/pdf-viewer-blank.tsx +++ b/packages/html/src/pdf-viewer/templates/pdf-viewer-blank.tsx @@ -27,3 +27,5 @@ export const PDFViewerBlank = (props) => ( {...props} /> ); + +export default PDFViewerBlank; diff --git a/packages/html/src/pdf-viewer/templates/pdf-viewer-normal.tsx b/packages/html/src/pdf-viewer/templates/pdf-viewer-normal.tsx index 9455255a722..7a726f9016a 100644 --- a/packages/html/src/pdf-viewer/templates/pdf-viewer-normal.tsx +++ b/packages/html/src/pdf-viewer/templates/pdf-viewer-normal.tsx @@ -11,3 +11,5 @@ export const PDFViewerNormal = (props) => ( {...props} /> ); + +export default PDFViewerNormal; diff --git a/packages/html/src/pdf-viewer/templates/pdf-viewer-with-search-panel.tsx b/packages/html/src/pdf-viewer/templates/pdf-viewer-with-search-panel.tsx index 2b69fe965d5..fc6501c267b 100644 --- a/packages/html/src/pdf-viewer/templates/pdf-viewer-with-search-panel.tsx +++ b/packages/html/src/pdf-viewer/templates/pdf-viewer-with-search-panel.tsx @@ -12,3 +12,5 @@ export const PDFViewerWithSearchPanel = (props) => ( {...props} /> ); + +export default PDFViewerWithSearchPanel; diff --git a/packages/html/src/pivotgrid/templates/pivotgrid-normal.tsx b/packages/html/src/pivotgrid/templates/pivotgrid-normal.tsx index 0418060161b..5b1f142e875 100644 --- a/packages/html/src/pivotgrid/templates/pivotgrid-normal.tsx +++ b/packages/html/src/pivotgrid/templates/pivotgrid-normal.tsx @@ -107,3 +107,5 @@ export const PivotGridNormal = (props) => ( {...props} /> ); + +export default PivotGridNormal; diff --git a/packages/html/src/pivotgrid/templates/pivotgrid-with-configurator-opened.tsx b/packages/html/src/pivotgrid/templates/pivotgrid-with-configurator-opened.tsx index d65a2b5208c..b2500c4eb23 100644 --- a/packages/html/src/pivotgrid/templates/pivotgrid-with-configurator-opened.tsx +++ b/packages/html/src/pivotgrid/templates/pivotgrid-with-configurator-opened.tsx @@ -87,3 +87,5 @@ export const PivotGridWithConfiguratorOpened = (props) => ( ); + +export default PivotGridWithConfiguratorOpened; diff --git a/packages/html/src/pivotgrid/templates/pivotgrid-with-configurator.tsx b/packages/html/src/pivotgrid/templates/pivotgrid-with-configurator.tsx index 50a138baf74..06f58a241ac 100644 --- a/packages/html/src/pivotgrid/templates/pivotgrid-with-configurator.tsx +++ b/packages/html/src/pivotgrid/templates/pivotgrid-with-configurator.tsx @@ -6,3 +6,5 @@ export const PivotGridWithConfigurator = (props) => ( ); + +export default PivotGridWithConfigurator; diff --git a/packages/html/src/popover/templates/popover-normal.tsx b/packages/html/src/popover/templates/popover-normal.tsx index 31d4dc2f627..dc74ce72f2d 100644 --- a/packages/html/src/popover/templates/popover-normal.tsx +++ b/packages/html/src/popover/templates/popover-normal.tsx @@ -14,3 +14,5 @@ export const PopoverNormal = (props) => ( {...props} /> ); + +export default PopoverNormal; diff --git a/packages/html/src/progressbar/templates/chunk-progressbar-normal.tsx b/packages/html/src/progressbar/templates/chunk-progressbar-normal.tsx index 07adf4e3e3f..4b8b327a81e 100644 --- a/packages/html/src/progressbar/templates/chunk-progressbar-normal.tsx +++ b/packages/html/src/progressbar/templates/chunk-progressbar-normal.tsx @@ -1,3 +1,5 @@ import ChunkProgressBar from "../chunk-progressbar.spec"; export const ChunkProgressBarNormal = (props) => ; + +export default ChunkProgressBarNormal; diff --git a/packages/html/src/progressbar/templates/progressbar-normal.tsx b/packages/html/src/progressbar/templates/progressbar-normal.tsx index 7db5f8dd965..7b6294e35e4 100644 --- a/packages/html/src/progressbar/templates/progressbar-normal.tsx +++ b/packages/html/src/progressbar/templates/progressbar-normal.tsx @@ -1,3 +1,5 @@ import ProgressBar from "../progressbar.spec"; export const ProgressBarNormal = (props) => ; + +export default ProgressBarNormal; diff --git a/packages/html/src/prompt/templates/prompt-more-actions.tsx b/packages/html/src/prompt/templates/prompt-more-actions.tsx index 6715606a90d..62a68eac119 100644 --- a/packages/html/src/prompt/templates/prompt-more-actions.tsx +++ b/packages/html/src/prompt/templates/prompt-more-actions.tsx @@ -36,3 +36,5 @@ export const PromptMoreActions = (props) => ( ); + +export default PromptMoreActions; diff --git a/packages/html/src/prompt/templates/prompt-normal.tsx b/packages/html/src/prompt/templates/prompt-normal.tsx index ce5eeaf32c5..35b9eb65f89 100644 --- a/packages/html/src/prompt/templates/prompt-normal.tsx +++ b/packages/html/src/prompt/templates/prompt-normal.tsx @@ -24,3 +24,5 @@ export const PromptNormal = (props) => ( ); + +export default PromptNormal; diff --git a/packages/html/src/prompt/templates/prompt-output.tsx b/packages/html/src/prompt/templates/prompt-output.tsx index 30d2e2ceb64..e57cb849057 100644 --- a/packages/html/src/prompt/templates/prompt-output.tsx +++ b/packages/html/src/prompt/templates/prompt-output.tsx @@ -52,3 +52,5 @@ export const PromptOutput = (props) => ( ); + +export default PromptOutput; diff --git a/packages/html/src/prompt/templates/prompt-popup.tsx b/packages/html/src/prompt/templates/prompt-popup.tsx index 3063b416298..54fd3d96cec 100644 --- a/packages/html/src/prompt/templates/prompt-popup.tsx +++ b/packages/html/src/prompt/templates/prompt-popup.tsx @@ -29,3 +29,5 @@ export const PromptInPopup = (props) => ( ); + +export default PromptInPopup; diff --git a/packages/html/src/prompt/templates/prompt-settings.tsx b/packages/html/src/prompt/templates/prompt-settings.tsx index 5c6ac0656d4..8e7d2b55aeb 100644 --- a/packages/html/src/prompt/templates/prompt-settings.tsx +++ b/packages/html/src/prompt/templates/prompt-settings.tsx @@ -47,3 +47,5 @@ export const PromptSettings = (props) => ( ); + +export default PromptSettings; diff --git a/packages/html/src/prompt/templates/prompt-suggestions.tsx b/packages/html/src/prompt/templates/prompt-suggestions.tsx index f52ec5e32a3..4df99301480 100644 --- a/packages/html/src/prompt/templates/prompt-suggestions.tsx +++ b/packages/html/src/prompt/templates/prompt-suggestions.tsx @@ -32,3 +32,5 @@ export const PromptSuggestions = (props) => ( ); + +export default PromptSuggestions; diff --git a/packages/html/src/radio/templates/radio-group-horizontal.tsx b/packages/html/src/radio/templates/radio-group-horizontal.tsx index 5f2b26cb6b0..86f730c1f6c 100644 --- a/packages/html/src/radio/templates/radio-group-horizontal.tsx +++ b/packages/html/src/radio/templates/radio-group-horizontal.tsx @@ -18,3 +18,5 @@ export const RadioGroupHorizontal = ({ name, ...other }: any) => ( {...other} /> ); + +export default RadioGroupHorizontal; diff --git a/packages/html/src/radio/templates/radio-group-normal.tsx b/packages/html/src/radio/templates/radio-group-normal.tsx index 77a44c3ffe2..3d2e50a1a03 100644 --- a/packages/html/src/radio/templates/radio-group-normal.tsx +++ b/packages/html/src/radio/templates/radio-group-normal.tsx @@ -17,3 +17,5 @@ export const RadioGroupNormal = ({ name, ...other }: any) => ( {...other} /> ); + +export default RadioGroupNormal; diff --git a/packages/html/src/radio/templates/radio-inside-label.tsx b/packages/html/src/radio/templates/radio-inside-label.tsx index 6a618af3072..499fc06bc82 100644 --- a/packages/html/src/radio/templates/radio-inside-label.tsx +++ b/packages/html/src/radio/templates/radio-inside-label.tsx @@ -7,4 +7,6 @@ export const RadioButtonInsideLabel = ({ children, ...other }: any) => ( {children} -); \ No newline at end of file +); + +export default RadioButtonInsideLabel; diff --git a/packages/html/src/radio/templates/radio-normal.tsx b/packages/html/src/radio/templates/radio-normal.tsx index 9507801696b..ae99452dff6 100644 --- a/packages/html/src/radio/templates/radio-normal.tsx +++ b/packages/html/src/radio/templates/radio-normal.tsx @@ -1,3 +1,5 @@ import RadioButton from "../radio.spec"; -export const RadioButtonNormal = (props: any) => ; \ No newline at end of file +export const RadioButtonNormal = (props: any) => ; + +export default RadioButtonNormal; diff --git a/packages/html/src/radio/templates/radio-with-label-after.tsx b/packages/html/src/radio/templates/radio-with-label-after.tsx index ad902c0ab18..2829410893e 100644 --- a/packages/html/src/radio/templates/radio-with-label-after.tsx +++ b/packages/html/src/radio/templates/radio-with-label-after.tsx @@ -11,3 +11,5 @@ export const RadioButtonWithLabelAfter = ({ children, id, ...other }: any) => ( * @deprecated This template has been renamed to RadioButtonWithLabelAfter. Please update your code accordingly. */ export const RadioButtonLabel = RadioButtonWithLabelAfter; + +export default RadioButtonWithLabelAfter; diff --git a/packages/html/src/radio/templates/radio-with-label-before.tsx b/packages/html/src/radio/templates/radio-with-label-before.tsx index ac421bf9d81..29b64824ca6 100644 --- a/packages/html/src/radio/templates/radio-with-label-before.tsx +++ b/packages/html/src/radio/templates/radio-with-label-before.tsx @@ -6,3 +6,5 @@ export const RadioButtonWithLabelBefore = ({ children, id, ...other }: any) => ( ); + +export default RadioButtonWithLabelBefore; diff --git a/packages/html/src/rating/templates/rating-normal.tsx b/packages/html/src/rating/templates/rating-normal.tsx index 01c308838c5..b5fa6970b1f 100644 --- a/packages/html/src/rating/templates/rating-normal.tsx +++ b/packages/html/src/rating/templates/rating-normal.tsx @@ -6,3 +6,5 @@ export const RatingNormal = ({ value = 2.5, ...props }: any) =>( {...props} /> ); + +export default RatingNormal; diff --git a/packages/html/src/rating/templates/rating-with-label.tsx b/packages/html/src/rating/templates/rating-with-label.tsx index 86d2cf01491..3563f59f4bb 100644 --- a/packages/html/src/rating/templates/rating-with-label.tsx +++ b/packages/html/src/rating/templates/rating-with-label.tsx @@ -8,3 +8,5 @@ export const RatingWithLabel = ({ value = 2.5, max = 5, ...props }: any) =>( {...props} /> ); + +export default RatingWithLabel; diff --git a/packages/html/src/scheduler/templates/scheduler-agenda.tsx b/packages/html/src/scheduler/templates/scheduler-agenda.tsx index 9915414ebbf..b7e76cecbd1 100644 --- a/packages/html/src/scheduler/templates/scheduler-agenda.tsx +++ b/packages/html/src/scheduler/templates/scheduler-agenda.tsx @@ -121,3 +121,5 @@ export const SchedulerAgenda = ({ style, ...props }: any) => ( {...props} > ); + +export default SchedulerAgenda; diff --git a/packages/html/src/scheduler/templates/scheduler-day.tsx b/packages/html/src/scheduler/templates/scheduler-day.tsx index 1d095373cb1..456f5cad750 100644 --- a/packages/html/src/scheduler/templates/scheduler-day.tsx +++ b/packages/html/src/scheduler/templates/scheduler-day.tsx @@ -226,3 +226,5 @@ export const SchedulerDay = ({ style, ...props }: any) => ( {...props} /> ); + +export default SchedulerDay; diff --git a/packages/html/src/scheduler/templates/scheduler-flex-agenda.tsx b/packages/html/src/scheduler/templates/scheduler-flex-agenda.tsx index ac2dfdfcd16..fa950aa8b5d 100644 --- a/packages/html/src/scheduler/templates/scheduler-flex-agenda.tsx +++ b/packages/html/src/scheduler/templates/scheduler-flex-agenda.tsx @@ -129,3 +129,5 @@ export const SchedulerFlexAgenda = ({ style, ...props }: any) => ( {...props} /> ); + +export default SchedulerFlexAgenda; diff --git a/packages/html/src/scheduler/templates/scheduler-flex-day.tsx b/packages/html/src/scheduler/templates/scheduler-flex-day.tsx index 4417210d311..733d0413bc2 100644 --- a/packages/html/src/scheduler/templates/scheduler-flex-day.tsx +++ b/packages/html/src/scheduler/templates/scheduler-flex-day.tsx @@ -151,3 +151,5 @@ export const SchedulerFlexDay = ({ style,...props }: any) => ( {...props} > ); + +export default SchedulerFlexDay; diff --git a/packages/html/src/scheduler/templates/scheduler-flex-horizontal-grouping.tsx b/packages/html/src/scheduler/templates/scheduler-flex-horizontal-grouping.tsx index 84a6684a017..e32d4163f51 100644 --- a/packages/html/src/scheduler/templates/scheduler-flex-horizontal-grouping.tsx +++ b/packages/html/src/scheduler/templates/scheduler-flex-horizontal-grouping.tsx @@ -334,3 +334,5 @@ export const SchedulerFlexHorizontalGrouping = (...props) => ( {...props} /> ); + +export default SchedulerFlexHorizontalGrouping; diff --git a/packages/html/src/scheduler/templates/scheduler-flex-month.tsx b/packages/html/src/scheduler/templates/scheduler-flex-month.tsx index a52e6b61ec5..056378cb5d5 100644 --- a/packages/html/src/scheduler/templates/scheduler-flex-month.tsx +++ b/packages/html/src/scheduler/templates/scheduler-flex-month.tsx @@ -154,3 +154,5 @@ export const SchedulerFlexMonth = ({ style, ...props } :any) => ( {...props} > ); + +export default SchedulerFlexMonth; diff --git a/packages/html/src/scheduler/templates/scheduler-flex-timeline.tsx b/packages/html/src/scheduler/templates/scheduler-flex-timeline.tsx index 1dc87017de4..01f85b76516 100644 --- a/packages/html/src/scheduler/templates/scheduler-flex-timeline.tsx +++ b/packages/html/src/scheduler/templates/scheduler-flex-timeline.tsx @@ -112,3 +112,5 @@ export const SchedulerFlexTimeline = ({ style, ...props }: any) => ( {...props} > ); + +export default SchedulerFlexTimeline; diff --git a/packages/html/src/scheduler/templates/scheduler-flex-vertical-grouping.tsx b/packages/html/src/scheduler/templates/scheduler-flex-vertical-grouping.tsx index 0603fbac1bd..052ba0dbe34 100644 --- a/packages/html/src/scheduler/templates/scheduler-flex-vertical-grouping.tsx +++ b/packages/html/src/scheduler/templates/scheduler-flex-vertical-grouping.tsx @@ -343,3 +343,5 @@ export const SchedulerFlexVerticalGrouping = ({ style, ...props }: any) => ( {...props} /> ); + +export default SchedulerFlexVerticalGrouping; diff --git a/packages/html/src/scheduler/templates/scheduler-flex-week.tsx b/packages/html/src/scheduler/templates/scheduler-flex-week.tsx index f62b542dd0a..65190bd8412 100644 --- a/packages/html/src/scheduler/templates/scheduler-flex-week.tsx +++ b/packages/html/src/scheduler/templates/scheduler-flex-week.tsx @@ -208,3 +208,5 @@ export const SchedulerFlexWeek = ({ style, ...props }: any) => ( {...props} > ); + +export default SchedulerFlexWeek; diff --git a/packages/html/src/scheduler/templates/scheduler-flex-year.tsx b/packages/html/src/scheduler/templates/scheduler-flex-year.tsx index 28b93629d55..30b1997f188 100644 --- a/packages/html/src/scheduler/templates/scheduler-flex-year.tsx +++ b/packages/html/src/scheduler/templates/scheduler-flex-year.tsx @@ -712,3 +712,5 @@ export const SchedulerFlexYear = ({ style, ...props }: any) => ( {...props} /> ); + +export default SchedulerFlexYear; diff --git a/packages/html/src/scheduler/templates/scheduler-horizontal-grouping.tsx b/packages/html/src/scheduler/templates/scheduler-horizontal-grouping.tsx index 27e2e1126c7..888cba110bf 100644 --- a/packages/html/src/scheduler/templates/scheduler-horizontal-grouping.tsx +++ b/packages/html/src/scheduler/templates/scheduler-horizontal-grouping.tsx @@ -263,3 +263,5 @@ export const SchedulerHorizontalGrouping = (...props) => ( {...props} /> ); + +export default SchedulerHorizontalGrouping; diff --git a/packages/html/src/scheduler/templates/scheduler-month.tsx b/packages/html/src/scheduler/templates/scheduler-month.tsx index 04bb4f581bf..46df597ae03 100644 --- a/packages/html/src/scheduler/templates/scheduler-month.tsx +++ b/packages/html/src/scheduler/templates/scheduler-month.tsx @@ -164,3 +164,5 @@ export const SchedulerMonth = ({ style, ...props }: any) => ( {...props} /> ); + +export default SchedulerMonth; diff --git a/packages/html/src/scheduler/templates/scheduler-timeline.tsx b/packages/html/src/scheduler/templates/scheduler-timeline.tsx index beffa3426cc..ad198d1f5e9 100644 --- a/packages/html/src/scheduler/templates/scheduler-timeline.tsx +++ b/packages/html/src/scheduler/templates/scheduler-timeline.tsx @@ -114,3 +114,5 @@ export const SchedulerTimeline = ({ style, ...props }: any) => ( {...props} > ); + +export default SchedulerTimeline; diff --git a/packages/html/src/scheduler/templates/scheduler-vertical-grouping.tsx b/packages/html/src/scheduler/templates/scheduler-vertical-grouping.tsx index 9777be16806..7b65aa6fad8 100644 --- a/packages/html/src/scheduler/templates/scheduler-vertical-grouping.tsx +++ b/packages/html/src/scheduler/templates/scheduler-vertical-grouping.tsx @@ -310,3 +310,5 @@ export const SchedulerVerticalGrouping = (...props) => ( {...props} /> ); + +export default SchedulerVerticalGrouping; diff --git a/packages/html/src/scheduler/templates/scheduler-week.tsx b/packages/html/src/scheduler/templates/scheduler-week.tsx index 2577a24c927..39bbc714561 100644 --- a/packages/html/src/scheduler/templates/scheduler-week.tsx +++ b/packages/html/src/scheduler/templates/scheduler-week.tsx @@ -266,3 +266,5 @@ export const SchedulerWeek = ({ style, ...props }: any) => ( {...props} /> ); + +export default SchedulerWeek; diff --git a/packages/html/src/scrollview/templates/scrollview-normal.tsx b/packages/html/src/scrollview/templates/scrollview-normal.tsx index 58f256c70ae..873dfe14adc 100644 --- a/packages/html/src/scrollview/templates/scrollview-normal.tsx +++ b/packages/html/src/scrollview/templates/scrollview-normal.tsx @@ -1,3 +1,5 @@ import ScrollView from "../scrollview-spec"; export const ScrollViewNormal = (props) => (); + +export default ScrollViewNormal; diff --git a/packages/html/src/searchbox/templates/searchbox-normal.tsx b/packages/html/src/searchbox/templates/searchbox-normal.tsx index fb216bbb970..3d02183f4c4 100644 --- a/packages/html/src/searchbox/templates/searchbox-normal.tsx +++ b/packages/html/src/searchbox/templates/searchbox-normal.tsx @@ -1,3 +1,5 @@ import Searchbox from "../searchbox.spec"; export const SearchboxNormal = (props) => ; + +export default SearchboxNormal; diff --git a/packages/html/src/signature/templates/signature-maximized.tsx b/packages/html/src/signature/templates/signature-maximized.tsx index 47215bc0eba..879a81c16b7 100644 --- a/packages/html/src/signature/templates/signature-maximized.tsx +++ b/packages/html/src/signature/templates/signature-maximized.tsx @@ -1,3 +1,5 @@ import Signature from "../signature.spec"; export const SignatureMaximized = (props) => ; + +export default SignatureMaximized; diff --git a/packages/html/src/signature/templates/signature-normal.tsx b/packages/html/src/signature/templates/signature-normal.tsx index 9f8011aea7a..bab2c5e1dc5 100644 --- a/packages/html/src/signature/templates/signature-normal.tsx +++ b/packages/html/src/signature/templates/signature-normal.tsx @@ -1,3 +1,5 @@ import Signature from "../signature.spec"; export const SignatureNormal = (props) => ; + +export default SignatureNormal; diff --git a/packages/html/src/skeleton/templates/skeleton-circle.tsx b/packages/html/src/skeleton/templates/skeleton-circle.tsx index 98e87894ecc..c72758ae828 100644 --- a/packages/html/src/skeleton/templates/skeleton-circle.tsx +++ b/packages/html/src/skeleton/templates/skeleton-circle.tsx @@ -5,3 +5,5 @@ export const SkeletonCircle = (props) => shape={'circle'} {...props} />; + +export default SkeletonCircle; diff --git a/packages/html/src/skeleton/templates/skeleton-normal.tsx b/packages/html/src/skeleton/templates/skeleton-normal.tsx index b9528fba90d..0e0f1407937 100644 --- a/packages/html/src/skeleton/templates/skeleton-normal.tsx +++ b/packages/html/src/skeleton/templates/skeleton-normal.tsx @@ -1,3 +1,5 @@ import { Skeleton } from ".."; export const SkeletonNormal = (props) => ; + +export default SkeletonNormal; diff --git a/packages/html/src/skeleton/templates/skeleton-rectangle.tsx b/packages/html/src/skeleton/templates/skeleton-rectangle.tsx index 3bf3870a1f0..29f4e2420a6 100644 --- a/packages/html/src/skeleton/templates/skeleton-rectangle.tsx +++ b/packages/html/src/skeleton/templates/skeleton-rectangle.tsx @@ -5,3 +5,5 @@ export const SkeletonRectangle = (props) => shape={'rect'} {...props} />; + +export default SkeletonRectangle; diff --git a/packages/html/src/slider/templates/slider-gradient-vertical.tsx b/packages/html/src/slider/templates/slider-gradient-vertical.tsx index 44def311c42..bd85bf4ebab 100644 --- a/packages/html/src/slider/templates/slider-gradient-vertical.tsx +++ b/packages/html/src/slider/templates/slider-gradient-vertical.tsx @@ -9,3 +9,5 @@ export const SliderGradientVertical = (props) => ( {...props}> ); + +export default SliderGradientVertical; diff --git a/packages/html/src/slider/templates/slider-gradient.tsx b/packages/html/src/slider/templates/slider-gradient.tsx index 3b6fa504971..b00674024fe 100644 --- a/packages/html/src/slider/templates/slider-gradient.tsx +++ b/packages/html/src/slider/templates/slider-gradient.tsx @@ -8,3 +8,5 @@ export const SliderGradient = (props) => ( {...props}> ); + +export default SliderGradient; diff --git a/packages/html/src/slider/templates/slider-normal.tsx b/packages/html/src/slider/templates/slider-normal.tsx index 2e958b0c949..adfb69803dc 100644 --- a/packages/html/src/slider/templates/slider-normal.tsx +++ b/packages/html/src/slider/templates/slider-normal.tsx @@ -18,3 +18,5 @@ export const SliderNormal = (props) => ( {...props}> ); + +export default SliderNormal; diff --git a/packages/html/src/slider/templates/slider-range-vertical.tsx b/packages/html/src/slider/templates/slider-range-vertical.tsx index f5c6aadbe59..2758a74d6de 100644 --- a/packages/html/src/slider/templates/slider-range-vertical.tsx +++ b/packages/html/src/slider/templates/slider-range-vertical.tsx @@ -22,3 +22,5 @@ export const SliderRangeVertical = (props) => ( {...props}> ); + +export default SliderRangeVertical; diff --git a/packages/html/src/slider/templates/slider-range.tsx b/packages/html/src/slider/templates/slider-range.tsx index d88ba7290b3..8c55e4b45a2 100644 --- a/packages/html/src/slider/templates/slider-range.tsx +++ b/packages/html/src/slider/templates/slider-range.tsx @@ -21,3 +21,5 @@ export const SliderRange = (props) => ( {...props}> ); + +export default SliderRange; diff --git a/packages/html/src/slider/templates/slider-vertical.tsx b/packages/html/src/slider/templates/slider-vertical.tsx index 9f37c16e2d5..7c22774e8a8 100644 --- a/packages/html/src/slider/templates/slider-vertical.tsx +++ b/packages/html/src/slider/templates/slider-vertical.tsx @@ -19,3 +19,5 @@ export const SliderVertical = (props) => ( {...props}> ); + +export default SliderVertical; diff --git a/packages/html/src/split-button/templates/icon-split-button.tsx b/packages/html/src/split-button/templates/icon-split-button.tsx index 55dfb6e9d53..07acd0b0029 100644 --- a/packages/html/src/split-button/templates/icon-split-button.tsx +++ b/packages/html/src/split-button/templates/icon-split-button.tsx @@ -1,3 +1,5 @@ import { SplitButton } from "../split-button.spec"; export const IconSplitButton = (props) => ; + +export default IconSplitButton; diff --git a/packages/html/src/split-button/templates/icon-text-split-button.tsx b/packages/html/src/split-button/templates/icon-text-split-button.tsx index 6f44687c611..b596500a9cc 100644 --- a/packages/html/src/split-button/templates/icon-text-split-button.tsx +++ b/packages/html/src/split-button/templates/icon-text-split-button.tsx @@ -1,3 +1,5 @@ import { SplitButton } from "../split-button.spec"; export const IconTextSplitButton = (props) => ; + +export default IconTextSplitButton; diff --git a/packages/html/src/split-button/templates/split-button-popup.tsx b/packages/html/src/split-button/templates/split-button-popup.tsx index c27b06ce2fa..67a71543391 100644 --- a/packages/html/src/split-button/templates/split-button-popup.tsx +++ b/packages/html/src/split-button/templates/split-button-popup.tsx @@ -15,3 +15,5 @@ export const SplitButtonPopup = (props) => ( {...props} /> ); + +export default SplitButtonPopup; diff --git a/packages/html/src/split-button/templates/text-split-button.tsx b/packages/html/src/split-button/templates/text-split-button.tsx index 84c5a4b5d9c..8f7e4f005c0 100644 --- a/packages/html/src/split-button/templates/text-split-button.tsx +++ b/packages/html/src/split-button/templates/text-split-button.tsx @@ -1,3 +1,5 @@ import { SplitButton } from "../split-button.spec"; export const TextSplitButton = (props) => ; + +export default TextSplitButton; diff --git a/packages/html/src/splitter/templates/splitter-normal.tsx b/packages/html/src/splitter/templates/splitter-normal.tsx index 3cb3de1a441..84f074eb325 100644 --- a/packages/html/src/splitter/templates/splitter-normal.tsx +++ b/packages/html/src/splitter/templates/splitter-normal.tsx @@ -18,3 +18,5 @@ export const SplitterNormal = (props) => ( {...props}> ); + +export default SplitterNormal; diff --git a/packages/html/src/splitter/templates/splitter-vertical.tsx b/packages/html/src/splitter/templates/splitter-vertical.tsx index bc7bbb29a2f..c7ba4a87e36 100644 --- a/packages/html/src/splitter/templates/splitter-vertical.tsx +++ b/packages/html/src/splitter/templates/splitter-vertical.tsx @@ -19,3 +19,5 @@ export const SplitterVertical = (props) => ( {...props}> ); + +export default SplitterVertical; diff --git a/packages/html/src/spreadsheet/templates/spreadsheet-normal.tsx b/packages/html/src/spreadsheet/templates/spreadsheet-normal.tsx index fb715dd0c22..b8b5ff5e664 100644 --- a/packages/html/src/spreadsheet/templates/spreadsheet-normal.tsx +++ b/packages/html/src/spreadsheet/templates/spreadsheet-normal.tsx @@ -20,3 +20,5 @@ export const SpreadsheetNormal = (props) => ( {...props} /> ); + +export default SpreadsheetNormal; diff --git a/packages/html/src/stepper/templates/stepper-normal.tsx b/packages/html/src/stepper/templates/stepper-normal.tsx index dd2457ee305..cf5a7b34786 100644 --- a/packages/html/src/stepper/templates/stepper-normal.tsx +++ b/packages/html/src/stepper/templates/stepper-normal.tsx @@ -17,3 +17,5 @@ export const StepperNormal = ({ gridTemplateColumns = "repeat(6, 1fr)", ...other {...other} /> ); + +export default StepperNormal; diff --git a/packages/html/src/stepper/templates/stepper-vertical.tsx b/packages/html/src/stepper/templates/stepper-vertical.tsx index e9abbf41059..fcdca0ed626 100644 --- a/packages/html/src/stepper/templates/stepper-vertical.tsx +++ b/packages/html/src/stepper/templates/stepper-vertical.tsx @@ -17,3 +17,5 @@ export const StepperVertical = ({ gridTemplateRows = "repeat(3, 1fr)", ...other {...other} /> ); + +export default StepperVertical; diff --git a/packages/html/src/switch/templates/switch-checked.tsx b/packages/html/src/switch/templates/switch-checked.tsx index 901a65898fb..9ff8adbeae7 100644 --- a/packages/html/src/switch/templates/switch-checked.tsx +++ b/packages/html/src/switch/templates/switch-checked.tsx @@ -1,3 +1,5 @@ import Switch from "../switch.spec"; -export const SwitchChecked = (props) => ; \ No newline at end of file +export const SwitchChecked = (props) => ; + +export default SwitchChecked; diff --git a/packages/html/src/switch/templates/switch-normal.tsx b/packages/html/src/switch/templates/switch-normal.tsx index 33b9e94cc7f..db8079625d6 100644 --- a/packages/html/src/switch/templates/switch-normal.tsx +++ b/packages/html/src/switch/templates/switch-normal.tsx @@ -1,3 +1,5 @@ import Switch from "../switch.spec"; export const SwitchNormal = (props) => ; + +export default SwitchNormal; diff --git a/packages/html/src/table/templates/data-table-normal.tsx b/packages/html/src/table/templates/data-table-normal.tsx index bef2fbef719..5701d162e67 100644 --- a/packages/html/src/table/templates/data-table-normal.tsx +++ b/packages/html/src/table/templates/data-table-normal.tsx @@ -74,3 +74,5 @@ export const DataTableNormal = (props) => ( ); + +export default DataTableNormal; diff --git a/packages/html/src/table/templates/table-list-virtualization.tsx b/packages/html/src/table/templates/table-list-virtualization.tsx index b2344e31b32..9c90203466d 100644 --- a/packages/html/src/table/templates/table-list-virtualization.tsx +++ b/packages/html/src/table/templates/table-list-virtualization.tsx @@ -77,3 +77,5 @@ export const DataTableVirtualization = (props) => ( ); + +export default DataTableVirtualization; diff --git a/packages/html/src/table/templates/table-list.tsx b/packages/html/src/table/templates/table-list.tsx index 2b975eda0d5..40ee43878a1 100644 --- a/packages/html/src/table/templates/table-list.tsx +++ b/packages/html/src/table/templates/table-list.tsx @@ -61,3 +61,5 @@ export const DataTableList = (props) => ( ); + +export default DataTableList; diff --git a/packages/html/src/table/templates/table-native.tsx b/packages/html/src/table/templates/table-native.tsx index 54dccc33263..1b47d2e216b 100644 --- a/packages/html/src/table/templates/table-native.tsx +++ b/packages/html/src/table/templates/table-native.tsx @@ -64,3 +64,5 @@ export const TableNative = (props) => ( > ); + +export default TableNative; diff --git a/packages/html/src/tabstrip/templates/tabstrip-bottom.tsx b/packages/html/src/tabstrip/templates/tabstrip-bottom.tsx index 425d11ad3da..7be8115cf23 100644 --- a/packages/html/src/tabstrip/templates/tabstrip-bottom.tsx +++ b/packages/html/src/tabstrip/templates/tabstrip-bottom.tsx @@ -3,3 +3,5 @@ import { TabStripNormal } from ".."; export const TabStripBottom = (props) => ( ); + +export default TabStripBottom; diff --git a/packages/html/src/tabstrip/templates/tabstrip-left.tsx b/packages/html/src/tabstrip/templates/tabstrip-left.tsx index af278513f23..06184600a75 100644 --- a/packages/html/src/tabstrip/templates/tabstrip-left.tsx +++ b/packages/html/src/tabstrip/templates/tabstrip-left.tsx @@ -3,3 +3,5 @@ import { TabStripNormal } from ".."; export const TabStripLeft = (props) => ( ); + +export default TabStripLeft; diff --git a/packages/html/src/tabstrip/templates/tabstrip-normal.tsx b/packages/html/src/tabstrip/templates/tabstrip-normal.tsx index f74857458bc..cc24b935807 100644 --- a/packages/html/src/tabstrip/templates/tabstrip-normal.tsx +++ b/packages/html/src/tabstrip/templates/tabstrip-normal.tsx @@ -20,3 +20,5 @@ export const TabStripNormal = ({ children, ...other }: any) => ( } ); + +export default TabStripNormal; diff --git a/packages/html/src/tabstrip/templates/tabstrip-right.tsx b/packages/html/src/tabstrip/templates/tabstrip-right.tsx index 52655a2aa89..5d6b6a61538 100644 --- a/packages/html/src/tabstrip/templates/tabstrip-right.tsx +++ b/packages/html/src/tabstrip/templates/tabstrip-right.tsx @@ -3,3 +3,5 @@ import { TabStripNormal } from ".."; export const TabStripRight = (props) => ( ); + +export default TabStripRight; diff --git a/packages/html/src/tabstrip/templates/tabstrip-scrollable.tsx b/packages/html/src/tabstrip/templates/tabstrip-scrollable.tsx index df0a68b18e2..44d4c1c953a 100644 --- a/packages/html/src/tabstrip/templates/tabstrip-scrollable.tsx +++ b/packages/html/src/tabstrip/templates/tabstrip-scrollable.tsx @@ -3,3 +3,5 @@ import { TabStripNormal } from ".."; export const TabStripScrollable = (props) => ( ); + +export default TabStripScrollable; diff --git a/packages/html/src/taskboard/templates/taskboard-normal.tsx b/packages/html/src/taskboard/templates/taskboard-normal.tsx index 7c6fd15ec9d..adbbb9854c8 100644 --- a/packages/html/src/taskboard/templates/taskboard-normal.tsx +++ b/packages/html/src/taskboard/templates/taskboard-normal.tsx @@ -68,3 +68,5 @@ export const TaskBoardNormal = (props) => } {...props} /> ; + +export default TaskBoardNormal; diff --git a/packages/html/src/textarea/templates/textarea-normal.tsx b/packages/html/src/textarea/templates/textarea-normal.tsx index 1fb7b35938b..d0609c4d8f9 100644 --- a/packages/html/src/textarea/templates/textarea-normal.tsx +++ b/packages/html/src/textarea/templates/textarea-normal.tsx @@ -1,3 +1,5 @@ import Textarea from "../textarea.spec"; export const TextareaNormal = (props) =>