forked from alibaba-fusion/next
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
65 changed files
with
407 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
const fs = require('fs-extra'); | ||
const path = require('path'); | ||
const glob = require('glob'); | ||
|
||
// 应该只会用一次,批量生成 mobile 目录及其引用 | ||
const cwd = process.cwd(); | ||
const { getComponentName } = require('./utils'); | ||
|
||
const componentPaths = glob.sync(path.join(cwd, 'src', '*')); | ||
|
||
componentPaths.forEach(comPath => { | ||
const dashName = path.basename(comPath); | ||
const upperName = getComponentName(path.basename(comPath)); | ||
if (['demo-helper', 'core', 'index.js'].indexOf(dashName) > -1) { | ||
return; | ||
} | ||
|
||
const srcBasePath = path.join(cwd, 'src', dashName); | ||
const mobileContent = `import { ${upperName} as Meet${upperName} } from "@alifd/meet-react"; | ||
import Next${upperName} from "../index"; | ||
const ${upperName} = Meet${upperName} ? Meet${upperName} : Next${upperName}; | ||
export default ${upperName}; | ||
`; | ||
fs.outputFileSync(path.join(srcBasePath, 'mobile/index.jsx'), mobileContent); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Affix as MeetAffix } from '@alifd/meet-react'; | ||
import NextAffix from '../index'; | ||
|
||
const Affix = MeetAffix ? MeetAffix : NextAffix; | ||
|
||
export default Affix; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Animate as MeetAnimate } from '@alifd/meet-react'; | ||
import NextAnimate from '../index'; | ||
|
||
const Animate = MeetAnimate ? MeetAnimate : NextAnimate; | ||
|
||
export default Animate; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Avatar as MeetAvatar } from '@alifd/meet-react'; | ||
import NextAvatar from '../index'; | ||
|
||
const Avatar = MeetAvatar ? MeetAvatar : NextAvatar; | ||
|
||
export default Avatar; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Badge as MeetBadge } from '@alifd/meet-react'; | ||
import NextBadge from '../index'; | ||
|
||
const Badge = MeetBadge ? MeetBadge : NextBadge; | ||
|
||
export default Badge; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Balloon as MeetBalloon } from '@alifd/meet-react'; | ||
import NextBalloon from '../index'; | ||
|
||
const Balloon = MeetBalloon ? MeetBalloon : NextBalloon; | ||
|
||
export default Balloon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Box as MeetBox } from '@alifd/meet-react'; | ||
import NextBox from '../index'; | ||
|
||
const Box = MeetBox ? MeetBox : NextBox; | ||
|
||
export default Box; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Breadcrumb as MeetBreadcrumb } from '@alifd/meet-react'; | ||
import NextBreadcrumb from '../index'; | ||
|
||
const Breadcrumb = MeetBreadcrumb ? MeetBreadcrumb : NextBreadcrumb; | ||
|
||
export default Breadcrumb; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Button as MeetButton } from '@alifd/meet-react'; | ||
import NextButton from '../index'; | ||
|
||
const Button = MeetButton ? MeetButton : NextButton; | ||
|
||
export default Button; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Calendar as MeetCalendar } from '@alifd/meet-react'; | ||
import NextCalendar from '../index'; | ||
|
||
const Calendar = MeetCalendar ? MeetCalendar : NextCalendar; | ||
|
||
export default Calendar; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Card as MeetCard } from '@alifd/meet-react'; | ||
import NextCard from '../index'; | ||
|
||
const Card = MeetCard ? MeetCard : NextCard; | ||
|
||
export default Card; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { CascaderSelect as MeetCascaderSelect } from '@alifd/meet-react'; | ||
import NextCascaderSelect from '../index'; | ||
|
||
const CascaderSelect = MeetCascaderSelect ? MeetCascaderSelect : NextCascaderSelect; | ||
|
||
export default CascaderSelect; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Cascader as MeetCascader } from '@alifd/meet-react'; | ||
import NextCascader from '../index'; | ||
|
||
const Cascader = MeetCascader ? MeetCascader : NextCascader; | ||
|
||
export default Cascader; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Checkbox as MeetCheckbox } from '@alifd/meet-react'; | ||
import NextCheckbox from '../index'; | ||
|
||
const Checkbox = MeetCheckbox ? MeetCheckbox : NextCheckbox; | ||
|
||
export default Checkbox; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Collapse as MeetCollapse } from '@alifd/meet-react'; | ||
import NextCollapse from '../index'; | ||
|
||
const Collapse = MeetCollapse ? MeetCollapse : NextCollapse; | ||
|
||
export default Collapse; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import NextConfigProvider from '../index'; | ||
|
||
const ConfigProvider = NextConfigProvider; | ||
|
||
export default ConfigProvider; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { DatePicker as MeetDatePicker } from '@alifd/meet-react'; | ||
import NextDatePicker from '../index'; | ||
|
||
const DatePicker = MeetDatePicker ? MeetDatePicker : NextDatePicker; | ||
|
||
export default DatePicker; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Dialog as MeetDialog } from '@alifd/meet-react'; | ||
import NextDialog from '../index'; | ||
|
||
const Dialog = MeetDialog ? MeetDialog : NextDialog; | ||
|
||
export default Dialog; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Divider as MeetDivider } from '@alifd/meet-react'; | ||
import NextDivider from '../index'; | ||
|
||
const Divider = MeetDivider ? MeetDivider : NextDivider; | ||
|
||
export default Divider; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Drawer as MeetDrawer } from '@alifd/meet-react'; | ||
import NextDrawer from '../index'; | ||
|
||
const Drawer = MeetDrawer ? MeetDrawer : NextDrawer; | ||
|
||
export default Drawer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Dropdown as MeetDropdown } from '@alifd/meet-react'; | ||
import NextDropdown from '../index'; | ||
|
||
const Dropdown = MeetDropdown ? MeetDropdown : NextDropdown; | ||
|
||
export default Dropdown; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Field as MeetField } from '@alifd/meet-react'; | ||
import NextField from '../index'; | ||
|
||
const Field = MeetField ? MeetField : NextField; | ||
|
||
export default Field; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Form as MeetForm } from '@alifd/meet-react'; | ||
import NextForm from '../index'; | ||
|
||
const Form = MeetForm ? MeetForm : NextForm; | ||
|
||
export default Form; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Grid as MeetGrid } from '@alifd/meet-react'; | ||
import NextGrid from '../index'; | ||
|
||
const Grid = MeetGrid ? MeetGrid : NextGrid; | ||
|
||
export default Grid; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { Icon as MeetIcon } from '@alifd/meet-react'; | ||
import NextIcon from '../index'; | ||
|
||
const Icon = MeetIcon ? MeetIcon : NextIcon; | ||
|
||
Icon.createFromIconfontCN = NextIcon.createFromIconfontCN; | ||
export default Icon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Input as MeetInput } from '@alifd/meet-react'; | ||
import NextInput from '../index'; | ||
|
||
const Input = MeetInput ? MeetInput : NextInput; | ||
|
||
export default Input; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { List as MeetList } from '@alifd/meet-react'; | ||
import NextList from '../index'; | ||
|
||
const List = MeetList ? MeetList : NextList; | ||
|
||
export default List; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Loading as MeetLoading } from '@alifd/meet-react'; | ||
import NextLoading from '../index'; | ||
|
||
const Loading = MeetLoading ? MeetLoading : NextLoading; | ||
|
||
export default Loading; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Locale as MeetLocale } from '@alifd/meet-react'; | ||
import NextLocale from '../index'; | ||
|
||
const Locale = MeetLocale ? MeetLocale : NextLocale; | ||
|
||
export default Locale; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { MenuButton as MeetMenuButton } from '@alifd/meet-react'; | ||
import NextMenuButton from '../index'; | ||
|
||
const MenuButton = MeetMenuButton ? MeetMenuButton : NextMenuButton; | ||
|
||
export default MenuButton; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Menu as MeetMenu } from '@alifd/meet-react'; | ||
import NextMenu from '../index'; | ||
|
||
const Menu = MeetMenu ? MeetMenu : NextMenu; | ||
|
||
export default Menu; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Message as MeetMessage } from '@alifd/meet-react'; | ||
import NextMessage from '../index'; | ||
|
||
const Message = MeetMessage ? MeetMessage : NextMessage; | ||
|
||
export default Message; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { MixinUiState as MeetMixinUiState } from '@alifd/meet-react'; | ||
import NextMixinUiState from '../index'; | ||
|
||
const MixinUiState = MeetMixinUiState ? MeetMixinUiState : NextMixinUiState; | ||
|
||
export default MixinUiState; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Nav as MeetNav } from '@alifd/meet-react'; | ||
import NextNav from '../index'; | ||
|
||
const Nav = MeetNav ? MeetNav : NextNav; | ||
|
||
export default Nav; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Notification as MeetNotification } from '@alifd/meet-react'; | ||
import NextNotification from '../index'; | ||
|
||
const Notification = MeetNotification ? MeetNotification : NextNotification; | ||
|
||
export default Notification; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { NumberPicker as MeetNumberPicker } from '@alifd/meet-react'; | ||
import NextNumberPicker from '../index'; | ||
|
||
const NumberPicker = MeetNumberPicker ? MeetNumberPicker : NextNumberPicker; | ||
|
||
export default NumberPicker; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Overlay as MeetOverlay } from '@alifd/meet-react'; | ||
import NextOverlay from '../index'; | ||
|
||
const Overlay = MeetOverlay ? MeetOverlay : NextOverlay; | ||
|
||
export default Overlay; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Pagination as MeetPagination } from '@alifd/meet-react'; | ||
import NextPagination from '../index'; | ||
|
||
const Pagination = MeetPagination ? MeetPagination : NextPagination; | ||
|
||
export default Pagination; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Paragraph as MeetParagraph } from '@alifd/meet-react'; | ||
import NextParagraph from '../index'; | ||
|
||
const Paragraph = MeetParagraph ? MeetParagraph : NextParagraph; | ||
|
||
export default Paragraph; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Progress as MeetProgress } from '@alifd/meet-react'; | ||
import NextProgress from '../index'; | ||
|
||
const Progress = MeetProgress ? MeetProgress : NextProgress; | ||
|
||
export default Progress; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Radio as MeetRadio } from '@alifd/meet-react'; | ||
import NextRadio from '../index'; | ||
|
||
const Radio = MeetRadio ? MeetRadio : NextRadio; | ||
|
||
export default Radio; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Range as MeetRange } from '@alifd/meet-react'; | ||
import NextRange from '../index'; | ||
|
||
const Range = MeetRange ? MeetRange : NextRange; | ||
|
||
export default Range; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Rating as MeetRating } from '@alifd/meet-react'; | ||
import NextRating from '../index'; | ||
|
||
const Rating = MeetRating ? MeetRating : NextRating; | ||
|
||
export default Rating; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { ResponsiveGrid as MeetResponsiveGrid } from '@alifd/meet-react'; | ||
import NextResponsiveGrid from '../index'; | ||
|
||
const ResponsiveGrid = MeetResponsiveGrid ? MeetResponsiveGrid : NextResponsiveGrid; | ||
|
||
export default ResponsiveGrid; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Search as MeetSearch } from '@alifd/meet-react'; | ||
import NextSearch from '../index'; | ||
|
||
const Search = MeetSearch ? MeetSearch : NextSearch; | ||
|
||
export default Search; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Select as MeetSelect } from '@alifd/meet-react'; | ||
import NextSelect from '../index'; | ||
|
||
const Select = MeetSelect ? MeetSelect : NextSelect; | ||
|
||
export default Select; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Shell as MeetShell } from '@alifd/meet-react'; | ||
import NextShell from '../index'; | ||
|
||
const Shell = MeetShell ? MeetShell : NextShell; | ||
|
||
export default Shell; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Slider as MeetSlider } from '@alifd/meet-react'; | ||
import NextSlider from '../index'; | ||
|
||
const Slider = MeetSlider ? MeetSlider : NextSlider; | ||
|
||
export default Slider; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { SplitButton as MeetSplitButton } from '@alifd/meet-react'; | ||
import NextSplitButton from '../index'; | ||
|
||
const SplitButton = MeetSplitButton ? MeetSplitButton : NextSplitButton; | ||
|
||
export default SplitButton; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Step as MeetStep } from '@alifd/meet-react'; | ||
import NextStep from '../index'; | ||
|
||
const Step = MeetStep ? MeetStep : NextStep; | ||
|
||
export default Step; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { Switch as MeetSwitch } from '@alifd/meet-react'; | ||
import NextSwitch from '../index'; | ||
|
||
const Switch = MeetSwitch ? MeetSwitch : NextSwitch; | ||
|
||
export default Switch; |
Oops, something went wrong.