Skip to content

Commit 57e49dc

Browse files
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>
1 parent dd4e455 commit 57e49dc

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.md

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

8+
## 🌈 0.13.0 `2025-04-18`
9+
### 🚀 Features
10+
- `Icon`: 图标库版本更新到 `0.4.4`([#590](https://github.com/Tencent/tdesign-mobile-react/pull/590))
11+
- `Toast`: 新增 `warning` 主题 @betavs ([#589](https://github.com/Tencent/tdesign-mobile-react/pull/589))
12+
- `Fab`: 新增 `draggable``yBounds ``onDragEnd``onDragStart ` 等属性,支持组件拖拽 @novlan1 ([#594](https://github.com/Tencent/tdesign-mobile-react/pull/594))
13+
- `List`: 新增 `List` 组件 @feaswcy ([#463](https://github.com/Tencent/tdesign-mobile-react/pull/463))
14+
- `ActionSheet`: 新增 `ActionSheet` 组件 @TianlunXiong ([#471](https://github.com/Tencent/tdesign-mobile-react/pull/471))
15+
- `Progress`: 新增 `size` 属性,仅在环形进度条有效 @anlyyao ([#609](https://github.com/Tencent/tdesign-mobile-react/pull/609))
16+
- `CollapsePanel`: 优化面板折叠动画 @anlyyao ([#611](https://github.com/Tencent/tdesign-mobile-react/pull/611))
17+
### 🐞 Bug Fixes
18+
- `Textarea`: 修复传入参数类型错误 @RSS1102 ([#591](https://github.com/Tencent/tdesign-mobile-react/pull/591));修复 `iOS` 真机上输入内容重复的问题,并补充 `onCompositionstart``onCompositionend` 属性 @anlyyao ([#601](https://github.com/Tencent/tdesign-mobile-react/pull/601))
19+
### 🚧 Others
20+
- `site`: 站点接入主题生成器 @RylanBot ([#604](https://github.com/Tencent/tdesign-mobile-react/pull/604))
21+
822
## 🌈 0.12.0 `2025-03-12`
923
### 🚨 Breaking Changes
1024
- `Dialog`: 新增 `closeBtn``width``overlayProps` 属性和 `middle``top` 插槽,存在 `DOM` 调整 @epoll-j ([#548](https://github.com/Tencent/tdesign-mobile-react/pull/548))

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-beta",
3+
"version": "0.13.0",
44
"description": "TDesign Component for Mobile React",
55
"title": "tdesign-mobile-react",
66
"main": "cjs/index.js",

src/color-picker/ColorPicker.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import React, { FC, TouchEvent, useCallback, useEffect, useRef, useState } from 'react';
2-
import { ColorPickerChangeTrigger } from 'tdesign-mobile-react';
32
import classNames from 'classnames';
43
import { usePrefixClass } from '../hooks/useClass';
54
import { Color, Coordinate, getColorObject } from '../_common/js/color-picker';
@@ -12,7 +11,7 @@ import {
1211
import { PanelRectType } from './types';
1312
import { genSwatchList, getCoordinate, getFormatList } from './helper/format';
1413
import type { StyledProps } from '../common';
15-
import type { TdColorPickerProps } from './type';
14+
import type { TdColorPickerProps, ColorPickerChangeTrigger } from './type';
1615
import { colorPickerDefaultProps } from './defaultProps';
1716
import useDefaultProps from '../hooks/useDefaultProps';
1817
import { ALPHA_MAX, HUE_MAX } from './constants';

0 commit comments

Comments
 (0)