-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs: update custom theme * 新增layout布局 (#1821) * feat(layout): add a new component feat #1701 * fix: 修复代码 * fix: 修复PR问题 * build: update issue label workflow * Docs/layout (#1822) * chore(layout): add docs and property file * chore: update layout url * fix(col): update api * fix: cls函数支持传入数值类型 (#1827) * 修复 button 组件 disableb 对控制 tap 无效问题 (#1833) * fix: button的tap事件没触发 fix #1797 * fix: disableb 对控制 tap 无效 * fix: fix lint question * feat(search): add type prop to input component (#1828) add type prop to input component fix #1793 * fix(NoticeBar): resolve scroll (#1835) * fix(checkbox): placement name in demo is wrong (#1836) * fix(popup): resolve close can not tap * feat(popup): support background,border-radius,safe-area * fix(popup): add less variable (#1758) * fix(checkbox): placement name * feat(pulldownrefresh): add default value to loading-texts (#1837) * feat(pulldownrefresh): add default value to loading-texts add default value to loading-texts * fix(pulldownrefresh): add default value to loading-texts #1806 * fix(pulldown-refresh): resolve external class (#1839) * chore: add layout on overview page * fix(grid): resolve image class (#1842) * fix(notice-bar): fix loop prop (#1826) fix notice-bar loop issue * fix(cascader): resolve options when value changed (#1841) * fix(tabs): resolve animation and uncaught error (#1843) * fix(tabs): remove scroll bar (#1844) * chore: publish v1.1.0 (#1845) * chore: publish v1.1.0 * chore: changelog's changes --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> --------- Co-authored-by: pingwu <58472278+wuping97@users.noreply.github.com> Co-authored-by: Haochen Li <lihaochen2017@outlook.com> Co-authored-by: Y <anly_yaw@163.com> Co-authored-by: Wang <awangjianjun9@gmail.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
901c6d7
commit 911b402
Showing
64 changed files
with
522 additions
and
67 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 |
---|---|---|
|
@@ -12,6 +12,7 @@ test/unit-virtualHost | |
.DS_Store | ||
node_modules | ||
package-lock.json | ||
yarn.lock | ||
|
||
# Log files | ||
npm-debug.log* | ||
|
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
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
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
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,3 +1,10 @@ | ||
<t-cell title="地址" note="{{note}}" bind:click="showCascader" arrow></t-cell> | ||
<t-cell title="地址" note="{{note}}" bind:click="showCascader" arrow /> | ||
|
||
<t-cascader visible="{{visible}}" options="{{options}}" title="请选择地址" bind:change="onChange"></t-cascader> | ||
<t-cascader | ||
visible="{{visible}}" | ||
value="{{value}}" | ||
options="{{options}}" | ||
title="请选择地址" | ||
bind:change="onChange" | ||
bind:pick="onPick" | ||
/> |
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,5 +1,5 @@ | ||
<t-checkbox value="1" label="多选" checked /> | ||
<t-checkbox value="1" label="多选" default-checked /> | ||
|
||
<view class="box" style="height: 32rpx" /> | ||
|
||
<t-checkbox value="2" label="多选" align="right" checked /> | ||
<t-checkbox value="2" label="多选" placement="right" default-checked /> |
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,15 @@ | ||
:: BASE_DOC :: | ||
|
||
## API | ||
### Col Props | ||
|
||
name | type | default | description | required | ||
-- | -- | -- | -- | -- | ||
offset | String / Number | - | \- | N | ||
span | String / Number | - | \- | N | ||
|
||
### Row Props | ||
|
||
name | type | default | description | required | ||
-- | -- | -- | -- | -- | ||
gutter | String / Number | - | \- | N |
Oops, something went wrong.