Skip to content

Commit

Permalink
chore: release new version (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
uyarn authored Jul 5, 2024
1 parent 2c16128 commit 93e0481
Show file tree
Hide file tree
Showing 12 changed files with 27 additions and 9 deletions.
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.3.4

### Patch Changes

- feat: update iconfont and svgsprite address

## 0.3.3

### Patch Changes
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.3.3",
"version": "0.3.4",
"repository": {
"type": "git",
"url": "https://github.com/Tencent/tdesign-icons.git",
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.2.0/fonts/index.css';
const CDN_ICONFONT_URL = 'https://tdesign.gtimg.com/icon/0.2.1/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.2.0/fonts/index.js';
const CDN_SVGSPRITE_URL = 'https://tdesign.gtimg.com/icon/0.2.1/fonts/index.js';

/**
* 图标组件
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.2.4

### Patch Changes

- feat: update iconfont and svgsprite address

## 0.2.3

### Patch Changes
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.2.3",
"version": "0.2.4",
"repository": {
"type": "git",
"url": "https://github.com/Tencent/tdesign-icons.git",
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.2.0/fonts/index.css';
const CDN_ICONFONT_URL = 'https://tdesign.gtimg.com/icon/0.2.1/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.2.0/fonts/index.js';
const CDN_ICONFONT_URL = 'https://tdesign.gtimg.com/icon/0.2.1/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.2.4

### Patch Changes

- feat: update iconfont and svgsprite address

## 0.2.3

### Patch Changes
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.2.3",
"version": "0.2.4",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
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.2.0/fonts/index.css';
const CDN_ICONFONT_URL = 'https://tdesign.gtimg.com/icon/0.2.1/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.2.0/fonts/index.js';
const CDN_ICONFONT_URL = 'https://tdesign.gtimg.com/icon/0.2.1/fonts/index.js';

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

0 comments on commit 93e0481

Please sign in to comment.