-
Notifications
You must be signed in to change notification settings - Fork 266
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: 解决微信小程序滚动报错问题 * fix(countup): 分隔符文字颜色支持css变量修改 * feat(price): v15 * fix: demo和文档更新 * fix: update test * fix: update type * fix: update test * chore: update sologn * fix: update doc * fix: update test * fix: update card test * fix: props type修改为color
- Loading branch information
Showing
42 changed files
with
588 additions
and
268 deletions.
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 |
---|---|---|
|
@@ -1084,6 +1084,7 @@ | |
"sort": 4, | ||
"show": true, | ||
"taro": true, | ||
"v15": true, | ||
"author": "songsong" | ||
}, | ||
{ | ||
|
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { Cell } from './cell.taro' | ||
|
||
export type { CellProps } from './cell.taro' | ||
export type { CellProps, CellAlign } from './types' | ||
export default Cell |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { Cell } from './cell' | ||
|
||
export type { CellProps } from './cell' | ||
export type { CellProps, CellAlign } from './types' | ||
export default Cell |
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,14 @@ | ||
import { BasicComponent } from '@/utils/typings' | ||
|
||
export type CellAlign = 'flex-start' | 'center' | 'flex-end' | 'baseline' | ||
|
||
export interface CellProps extends BasicComponent { | ||
title: React.ReactNode | ||
description: React.ReactNode | ||
extra: React.ReactNode | ||
radius: string | number | ||
align: CellAlign | ||
clickable: boolean | ||
isLast: boolean | ||
onClick: (event: React.MouseEvent<HTMLDivElement, MouseEvent>) => void | ||
} |
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
Oops, something went wrong.