@sensoro-design/icons 1.63.1 → 1.63.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.63.2](https://github.com/sensoro-design/sensoro-design-icons/compare/@sensoro-design/icons@1.63.1...@sensoro-design/icons@1.63.2) (2022-12-04)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * 修复类型报错 ([8fd3706](https://github.com/sensoro-design/sensoro-design-icons/commit/8fd3706e0ce37466c42db497c766dd4f265eb27d))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.63.1](https://github.com/sensoro-design/sensoro-design-icons/compare/@sensoro-design/icons@1.63.0...@sensoro-design/icons@1.63.1) (2022-12-04)
7
18
 
8
19
 
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  import { getTwoToneColor, TwoToneColor, setTwoToneColor } from './twoTonePrimaryColor';
3
3
  import type { IconBaseProps } from './Icon';
4
4
  import type { IconDefinition } from '@sensoro-design/icons-svg/lib/types';
5
- export interface SensoroIconProps extends IconBaseProps {
5
+ export interface SensoroIconProps extends Partial<IconBaseProps> {
6
6
  twoToneColor?: TwoToneColor;
7
7
  }
8
8
  export interface IconComponentProps extends SensoroIconProps {
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  import { getTwoToneColor, TwoToneColor, setTwoToneColor } from './twoTonePrimaryColor';
3
3
  import type { IconBaseProps } from './Icon';
4
4
  import type { IconDefinition } from '@sensoro-design/icons-svg/lib/types';
5
- export interface SensoroIconProps extends IconBaseProps {
5
+ export interface SensoroIconProps extends Partial<IconBaseProps> {
6
6
  twoToneColor?: TwoToneColor;
7
7
  }
8
8
  export interface IconComponentProps extends SensoroIconProps {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sensoro-design/icons",
3
- "version": "1.63.1",
3
+ "version": "1.63.2",
4
4
  "description": "Abstract nodes for sensoro design icons.",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",