Skip to content

Commit 60e1f96

Browse files
anlyyaoRylanBotnovlan1feaswcyrealcwang
authored
chore(site): update (#619)
* feat(site): support theme generator (#604) * style(site): add CSS variables to support dark mode * chore: remove useless log * feat(site): support theme generator * chore: remove react-spring (#608) * chore: remove react-spring * test: update snapshots * feat(fab): 对齐 mobile-vue (#594) * feat(fab): 对齐mobile-vue" * feat(fab): prevent default when touchmove * feat(fab): prevent default * chore: update demo file name * chore: update test case * chore: remove forwardRef --------- Co-authored-by: anlyyao <[email protected]> * feat(list): add list component (#463) * feat(list): add list component re #394 * feat(list): fix list review qa fix #463 * style(list): fix code review comment fix #463 * fix: fix cr * docs: sync api --------- Co-authored-by: realcwang <[email protected]> Co-authored-by: anlyyao <[email protected]> * feat(action-sheet): 新增 ActionSheet组件 (#471) * feat(action-sheet): 新增 ActionSheet组件 * fix: 修复comment 问题 * fix: 修复同步develop后的问题 * fix: action-sheet 使用 useDefault * fix: 规范变量命名 * fix(action-sheet): 修复同步develop 后的问题(action-sheet badge 位置) * fix(grid): grid 补充 children 属性 * fix(action-sheet): 规范文档和类型定义 * fix: 优化类型和默认值 * fix: 优化类型和默认值 * fix: actionSheet适配Badge样式 * fix(action-sheet): 优化css结构 * fix: resolve conflicts * fix: fix cr and sync api docs * chore: update snapshot --------- Co-authored-by: anlyyao <[email protected]> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> * Fix/demo/style (#610) * fix(Demo): fixed demo page background color error * test: update snapshots * feat(Progress): support size props (#609) * feat(Progress): support size props * test: update snapshots * chore: tool functions moved to the tdesign-common repo * feat(Collapse): optimize panel animation (#611) * feat(Collapse): optimize panel animation * test: update snapshots * chore: update _common (#612) * chore: publish v0.13.0 (#613) * chore: publish v0.13.0 * chore: changelog's changes * chore: using relative paths inside components --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> * fix(SideBar): fix component not exported (#616) * fix(SideBar): fix component not exported * fix: update example import method * chore: publish v0.13.1 (#618) * chore: publish v0.13.1 * chore: changelog's changes --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> --------- Co-authored-by: Rylan <[email protected]> Co-authored-by: Mike <[email protected]> Co-authored-by: feaswcy <[email protected]> Co-authored-by: realcwang <[email protected]> Co-authored-by: Jelly <[email protected]> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 23fd34c commit 60e1f96

File tree

7 files changed

+17
-9
lines changed

7 files changed

+17
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ toc: false
55
spline: explain
66
---
77

8+
## 🌈 0.13.1 `2025-04-21`
9+
### 🐞 Bug Fixes
10+
- `SideBar`: 修复组件未导出问题 @anlyyao ([#616](https://github.com/Tencent/tdesign-mobile-react/pull/616))
11+
812
## 🌈 0.13.0 `2025-04-18`
913
### 🚀 Features
1014
- `Icon`: 图标库版本更新到 `0.4.4`([#590](https://github.com/Tencent/tdesign-mobile-react/pull/590))

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tdesign-mobile-react",
3-
"version": "0.13.0",
3+
"version": "0.13.1",
44
"description": "TDesign Component for Mobile React",
55
"title": "tdesign-mobile-react",
66
"main": "cjs/index.js",

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export * from './link';
1111
/**
1212
* 导航(5个)
1313
*/
14+
export * from './side-bar';
1415
export * from './steps';
1516
export * from './tab-bar';
1617
export * from './navbar';

src/side-bar/_example/base.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { useState, useEffect, useRef, useCallback } from 'react';
2-
import { Grid, GridItem } from '../../grid';
3-
import { SideBarProps, SideBarItemProps, SideBar, SideBarItem } from '..';
2+
import { Grid, GridItem, SideBar, SideBarItem } from 'tdesign-mobile-react';
3+
import type { SideBarProps, SideBarItemProps } from 'tdesign-mobile-react';
44
import './style/base.less';
55

66
const image = 'https://tdesign.gtimg.com/mobile/demos/example2.png';

src/side-bar/_example/custom.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import React, { useState, useEffect, useRef, useCallback } from 'react';
2-
import { Grid, GridItem } from '../../grid';
3-
import { SideBarProps, SideBarItemProps, SideBar, SideBarItem } from '..';
2+
import type { SideBarProps, SideBarItemProps } from 'tdesign-mobile-react';
3+
import { SideBar, SideBarItem, Grid, GridItem } from 'tdesign-mobile-react';
4+
45
import './style/custom.less';
56

67
const image = 'https://tdesign.gtimg.com/mobile/demos/example2.png';

src/side-bar/_example/switch.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import React, { useState, useRef } from 'react';
2-
import { Cell, Image } from 'tdesign-mobile-react';
3-
import { SideBarProps, SideBarItemProps, SideBar, SideBarItem } from '..';
2+
import type { SideBarProps, SideBarItemProps } from 'tdesign-mobile-react';
3+
import { SideBar, SideBarItem, Cell, Image } from 'tdesign-mobile-react';
4+
45
import './style/switch.less';
56

67
const image = 'https://tdesign.gtimg.com/mobile/demos/example2.png';

src/side-bar/_example/with-icon.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import React, { useState, useEffect, useRef, useCallback } from 'react';
22
import { Icon } from 'tdesign-icons-react';
3-
import { Grid, GridItem } from '../../grid';
4-
import { SideBarProps, SideBarItemProps, SideBar, SideBarItem } from '..';
3+
import type { SideBarProps, SideBarItemProps } from 'tdesign-mobile-react';
4+
import { SideBar, SideBarItem, Grid, GridItem } from 'tdesign-mobile-react';
5+
56
import './style/base.less';
67

78
const image = 'https://tdesign.gtimg.com/mobile/demos/example2.png';

0 commit comments

Comments
 (0)