Skip to content
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

chore: release new versions with more icons #61

Merged
merged 1 commit into from
May 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import {
import { TIconService } from './tdesign-icons-angular.service';

const DEFAULT_ICON_SVG_URL =
'https://tdesign.gtimg.com/icon/0.1.3/fonts/index.js';
'https://tdesign.gtimg.com/icon/0.1.4/fonts/index.js';
const DEFAULT_ICONFONT_URL =
'https://tdesign.gtimg.com/icon/0.1.3/fonts/index.css';
'https://tdesign.gtimg.com/icon/0.1.4/fonts/index.css';

const prefix = 't';

Expand Down
6 changes: 6 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## 0.2.2

### Patch Changes

- feat: add `translate` `translate-1` `arrow-down-triangle` `arrow-down-triangle-filled` `arrow-up-triangle` `arrow-up-triangle-filled` icons

## 0.2.1 `2023-03-07`

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tdesign-icons-react",
"version": "0.2.1",
"version": "0.2.2",
"contributors": [
"wendellhu",
"yuhongz",
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/iconfont/iconfont.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export interface IconFontProps extends HTMLAttributes<HTMLElement> {
loadDefaultIcons?: boolean;
}

const CDN_ICONFONT_URL = 'https://tdesign.gtimg.com/icon/0.1.3/fonts/index.css';
const CDN_ICONFONT_URL = 'https://tdesign.gtimg.com/icon/0.1.4/fonts/index.css';

/**
* 图标组件
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/svg-sprite/svg-sprite.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export interface SpriteIconProps extends BaseIconProps {
className?: string;
}

const CDN_SVGSPRITE_URL = 'https://tdesign.gtimg.com/icon/0.1.3/fonts/index.js';
const CDN_SVGSPRITE_URL = 'https://tdesign.gtimg.com/icon/0.1.4/fonts/index.js';

/**
* 图标组件
Expand Down
7 changes: 7 additions & 0 deletions packages/svg/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# tdesign-icons-svg

## 0.1.6

### Patch Changes

- feat: add `translate` `translate-1` `arrow-down-triangle` `arrow-down-triangle-filled` `arrow-up-triangle` `arrow-up-triangle-filled` icons
2 changes: 1 addition & 1 deletion packages/svg/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tdesign-icons-svg",
"version": "0.1.5",
"version": "0.1.6",
"contributors": [
"wendellhu"
],
Expand Down
7 changes: 7 additions & 0 deletions packages/view/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# tdesign-icons-view

## 0.1.7

### Patch Changes

- feat: add `translate` `translate-1` `arrow-down-triangle` `arrow-down-triangle-filled` `arrow-up-triangle` `arrow-up-triangle-filled` icons
2 changes: 1 addition & 1 deletion packages/view/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tdesign-icons-view",
"version": "0.1.6",
"version": "0.1.7",
"description": "A web-component package for display all icons in any UI framework",
"main": "dist/index.js",
"files": [
Expand Down
6 changes: 6 additions & 0 deletions packages/vue-next/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## 0.1.9

### Patch Changes

- feat: add `translate` `translate-1` `arrow-down-triangle` `arrow-down-triangle-filled` `arrow-up-triangle` `arrow-up-triangle-filled` icons

## 0.1.8 `2023-03-07`

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/vue-next/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tdesign-icons-vue-next",
"version": "0.1.8",
"version": "0.1.9",
"files": [
"dist",
"esm",
Expand Down
2 changes: 1 addition & 1 deletion packages/vue-next/src/iconfont/icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import '../style/css';

const { classPrefix } = ConfigContext;

const CDN_ICONFONT_URL = 'https://tdesign.gtimg.com/icon/0.1.3/fonts/index.css';
const CDN_ICONFONT_URL = 'https://tdesign.gtimg.com/icon/0.1.4/fonts/index.css';

export const IconFont = defineComponent({
name: 'IconFont',
Expand Down
2 changes: 1 addition & 1 deletion packages/vue-next/src/svg-sprite/svg-sprite.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import '../style/css';

const { classPrefix } = ConfigContext;

const CDN_ICONFONT_URL = 'https://tdesign.gtimg.com/icon/0.1.3/fonts/index.js';
const CDN_ICONFONT_URL = 'https://tdesign.gtimg.com/icon/0.1.4/fonts/index.js';

export default defineComponent({
name: 'Icon',
Expand Down
6 changes: 6 additions & 0 deletions packages/vue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## 0.1.8

### Patch Changes

- feat: add `translate` `translate-1` `arrow-down-triangle` `arrow-down-triangle-filled` `arrow-up-triangle` `arrow-up-triangle-filled` icons

## 0.1.7 `2023-03-07`

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tdesign-icons-vue",
"version": "0.1.7",
"version": "0.1.8",
"files": [
"dist",
"esm",
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/src/iconfont/icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import '../style/css';

const { classPrefix } = ConfigContext;

const CDN_ICONFONT_URL = 'https://tdesign.gtimg.com/icon/0.1.3/fonts/index.css';
const CDN_ICONFONT_URL = 'https://tdesign.gtimg.com/icon/0.1.4/fonts/index.css';

export const IconFont = Vue.extend({
name: 'IconFont',
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/src/svg-sprite/svg-sprite.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const { classPrefix } = ConfigContext;

const tName = `${classPrefix}-icon`;

const CDN_ICONFONT_URL = 'https://tdesign.gtimg.com/icon/0.1.3/fonts/index.js';
const CDN_ICONFONT_URL = 'https://tdesign.gtimg.com/icon/0.1.4/fonts/index.js';

export default Vue.extend({
name: 'Icon',
Expand Down