-
Notifications
You must be signed in to change notification settings - Fork 273
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: 类型规范化 #3034
base: feat_v3.x
Are you sure you want to change the base?
feat: 类型规范化 #3034
Conversation
# Conflicts: # src/packages/datepicker/datepicker.taro.tsx # src/packages/datepicker/datepicker.tsx # src/packages/indicator/indicator.taro.tsx # src/packages/picker/index.taro.ts # src/packages/picker/index.ts # src/packages/picker/picker.taro.tsx # src/packages/picker/picker.tsx # src/packages/picker/types.ts
Important Review skippedMore than 25% of the files skipped due to max files limit. The review is being skipped to prevent a low-quality review. 193 files out of 300 files are above the max files limit of 100. Please upgrade to Pro plan to get higher limits. You can disable this status message by setting the Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## feat_v3.x #3034 +/- ##
==========================================
Coverage 86.05% 86.05%
==========================================
Files 281 281
Lines 18255 18258 +3
Branches 2749 2749
==========================================
+ Hits 15709 15712 +3
Misses 2541 2541
Partials 5 5 ☔ View full report in Codecov by Sentry. |
@@ -1,5 +1,4 @@ | |||
import { InfiniteLoading } from './infiniteloading' | |||
|
|||
export type { InfiniteLoadingType } from './types' | |||
export type { InfiniteLoadingProps } from './infiniteloading' | |||
export type { InfiniteLoadingType, WebInfiniteLoadingProps } from '@/types' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
WebInfiniteLoadingProps 修改
@@ -1,4 +1,4 @@ | |||
import { InfiniteLoading } from './infiniteloading.taro' | |||
|
|||
export type { InfiniteLoadingProps } from './infiniteloading.taro' | |||
export type { InfiniteLoadingType, TaroInfiniteLoadingProps } from '@/types' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TaroInfiniteLoadingProps 需要 修改为InfiniteLoadingProps 吗
@@ -1,4 +1,4 @@ | |||
import { NavBar } from './navbar' | |||
|
|||
export type { NavBarProps } from './navbar' | |||
export type { WebNavBarProps } from '@/types' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
导出修改
@@ -1,4 +1,4 @@ | |||
import { NavBar } from './navbar.taro' | |||
|
|||
export type { NavBarProps } from './navbar.taro' | |||
export type { TaroNavBarProps } from '@/types' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
导出修改
@@ -1,4 +1,4 @@ | |||
import { Progress } from './progress' | |||
|
|||
export type { ProgressProps } from './progress' | |||
export type { WebProgressProps } from '@/types' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
导出修改
@@ -1,4 +1,4 @@ | |||
import { Steps } from './steps.taro' | |||
|
|||
export type { StepsProps } from './steps.taro' | |||
export type { TaroStepsProps } from '@/types' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
导出修改
@@ -1,4 +1,4 @@ | |||
import { Sticky } from './sticky' | |||
|
|||
export type { StickyProps } from './sticky' | |||
export type { WebStickyProps } from '@/types' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
导出修改
@@ -1,4 +1,4 @@ | |||
import { Sticky } from './sticky.taro' | |||
|
|||
export type { StickyProps } from './sticky.taro' | |||
export type { TaroStickyProps } from '@/types' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
导出修改
import SwiperItem from '@/packages/swiperitem' | ||
import { SwiperRef } from '@/packages/swiper/types' | ||
import { SwiperRef, WebSwiperProps } from '@/types' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
导出修改
@@ -1,27 +1,20 @@ | |||
import React, { FunctionComponent } from 'react' | |||
import classNames from 'classnames' | |||
import { View } from '@tarojs/components' | |||
import { TaroTabPaneProps } from '@/types' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
导出修改
No description provided.