@ant-design/icons
Advanced tools
Comparing version 0.1.1-alpha.1 to 0.1.2-alpha.1
@@ -14,2 +14,3 @@ import SVGO = require('svgo'); | ||
height: number; | ||
viewBox: string; | ||
style?: string; | ||
@@ -16,0 +17,0 @@ children: Array<{ tag: string, attrs: { [key: string]: string } }>; |
@@ -14,5 +14,5 @@ import assert = require('assert'); | ||
assert(node.tagName === 'svg', debugName); | ||
const viewBox = node.attrs.find(({ name }) => name === 'viewBox'); | ||
const viewBox = node.attrs.find(({ name }) => name === 'viewBox')!; | ||
assert(viewBox, debugName); | ||
const size: number[] = viewBox!.value.split(' ').slice(2).map((str) => Number.parseInt(str)); | ||
const size: number[] = viewBox!.value.split(' ').slice(2).map((str) => Number.parseInt(str, 10)); | ||
assert( | ||
@@ -44,2 +44,3 @@ size.length === 2, | ||
height: size[1], | ||
viewBox: viewBox.value, | ||
style: styleContent, | ||
@@ -46,0 +47,0 @@ children: p |
export var manifest = { | ||
'batch-folding': 'BatchFolding', | ||
'ci': 'Ci', | ||
'ci-circle-fill': 'CiCircleFill', | ||
'ci': 'Ci', | ||
'code-sandbox-circle-fill': 'CodeSandboxCircleFill', | ||
@@ -20,5 +20,5 @@ 'code-sandbox-square-fill': 'CodeSandboxSquareFill', | ||
'import': 'Import', | ||
'pound-circle-fill': 'PoundCircleFill', | ||
'pound': 'Pound', | ||
'qq-circle-fill': 'QqCircleFill', | ||
'pound-circle-fill': 'PoundCircleFill', | ||
'qq-square-fill': 'QqSquareFill', | ||
@@ -226,4 +226,4 @@ 'qq': 'Qq', | ||
'file-pdf-fill': 'FilePdfFill', | ||
'file-ppt-fill': 'FilePptFill', | ||
'file-pdf': 'FilePdf', | ||
'file-ppt-fill': 'FilePptFill', | ||
'file-ppt': 'FilePpt', | ||
@@ -233,4 +233,4 @@ 'file-text-fill': 'FileTextFill', | ||
'file-unknown-fill': 'FileUnknownFill', | ||
'file-word-fill': 'FileWordFill', | ||
'file-unknown': 'FileUnknown', | ||
'file-word-fill': 'FileWordFill', | ||
'file-word': 'FileWord', | ||
@@ -269,4 +269,4 @@ 'file-zip-fill': 'FileZipFill', | ||
'golden-fill': 'GoldenFill', | ||
'google-plus-square-fill': 'GooglePlusSquareFill', | ||
'google-plus-circle-fill': 'GooglePlusCircleFill', | ||
'google-plus-square-fill': 'GooglePlusSquareFill', | ||
'google-plus': 'GooglePlus', | ||
@@ -449,5 +449,5 @@ 'google-circle-fill': 'GoogleCircleFill', | ||
'small-dash': 'SmallDash', | ||
'smile-fill': 'SmileFill', | ||
'smile': 'Smile', | ||
'snippets-fill': 'SnippetsFill', | ||
'smile-fill': 'SmileFill', | ||
'snippets': 'Snippets', | ||
@@ -462,4 +462,4 @@ 'solution': 'Solution', | ||
'stock': 'Stock', | ||
'stop-fill': 'StopFill', | ||
'stop': 'Stop', | ||
'stop-fill': 'StopFill', | ||
'strikethrough': 'Strikethrough', | ||
@@ -466,0 +466,0 @@ 'swap': 'Swap', |
export declare const BatchFolding: IconDefinition; | ||
export declare const Ci: IconDefinition; | ||
export declare const CiCircleFill: IconDefinition; | ||
export declare const Ci: IconDefinition; | ||
export declare const CodeSandboxCircleFill: IconDefinition; | ||
@@ -19,5 +19,5 @@ export declare const CodeSandboxSquareFill: IconDefinition; | ||
export declare const Import: IconDefinition; | ||
export declare const PoundCircleFill: IconDefinition; | ||
export declare const Pound: IconDefinition; | ||
export declare const QqCircleFill: IconDefinition; | ||
export declare const PoundCircleFill: IconDefinition; | ||
export declare const QqSquareFill: IconDefinition; | ||
@@ -225,4 +225,4 @@ export declare const Qq: IconDefinition; | ||
export declare const FilePdfFill: IconDefinition; | ||
export declare const FilePptFill: IconDefinition; | ||
export declare const FilePdf: IconDefinition; | ||
export declare const FilePptFill: IconDefinition; | ||
export declare const FilePpt: IconDefinition; | ||
@@ -232,4 +232,4 @@ export declare const FileTextFill: IconDefinition; | ||
export declare const FileUnknownFill: IconDefinition; | ||
export declare const FileWordFill: IconDefinition; | ||
export declare const FileUnknown: IconDefinition; | ||
export declare const FileWordFill: IconDefinition; | ||
export declare const FileWord: IconDefinition; | ||
@@ -268,4 +268,4 @@ export declare const FileZipFill: IconDefinition; | ||
export declare const GoldenFill: IconDefinition; | ||
export declare const GooglePlusSquareFill: IconDefinition; | ||
export declare const GooglePlusCircleFill: IconDefinition; | ||
export declare const GooglePlusSquareFill: IconDefinition; | ||
export declare const GooglePlus: IconDefinition; | ||
@@ -448,5 +448,5 @@ export declare const GoogleCircleFill: IconDefinition; | ||
export declare const SmallDash: IconDefinition; | ||
export declare const SmileFill: IconDefinition; | ||
export declare const Smile: IconDefinition; | ||
export declare const SnippetsFill: IconDefinition; | ||
export declare const SmileFill: IconDefinition; | ||
export declare const Snippets: IconDefinition; | ||
@@ -461,4 +461,4 @@ export declare const Solution: IconDefinition; | ||
export declare const Stock: IconDefinition; | ||
export declare const StopFill: IconDefinition; | ||
export declare const Stop: IconDefinition; | ||
export declare const StopFill: IconDefinition; | ||
export declare const Strikethrough: IconDefinition; | ||
@@ -538,2 +538,3 @@ export declare const Swap: IconDefinition; | ||
height: number; | ||
viewBox: string; | ||
style?: string; | ||
@@ -540,0 +541,0 @@ children: Array<{ |
@@ -5,4 +5,4 @@ "use strict"; | ||
'batch-folding': 'BatchFolding', | ||
'ci': 'Ci', | ||
'ci-circle-fill': 'CiCircleFill', | ||
'ci': 'Ci', | ||
'code-sandbox-circle-fill': 'CodeSandboxCircleFill', | ||
@@ -23,5 +23,5 @@ 'code-sandbox-square-fill': 'CodeSandboxSquareFill', | ||
'import': 'Import', | ||
'pound-circle-fill': 'PoundCircleFill', | ||
'pound': 'Pound', | ||
'qq-circle-fill': 'QqCircleFill', | ||
'pound-circle-fill': 'PoundCircleFill', | ||
'qq-square-fill': 'QqSquareFill', | ||
@@ -229,4 +229,4 @@ 'qq': 'Qq', | ||
'file-pdf-fill': 'FilePdfFill', | ||
'file-ppt-fill': 'FilePptFill', | ||
'file-pdf': 'FilePdf', | ||
'file-ppt-fill': 'FilePptFill', | ||
'file-ppt': 'FilePpt', | ||
@@ -236,4 +236,4 @@ 'file-text-fill': 'FileTextFill', | ||
'file-unknown-fill': 'FileUnknownFill', | ||
'file-word-fill': 'FileWordFill', | ||
'file-unknown': 'FileUnknown', | ||
'file-word-fill': 'FileWordFill', | ||
'file-word': 'FileWord', | ||
@@ -272,4 +272,4 @@ 'file-zip-fill': 'FileZipFill', | ||
'golden-fill': 'GoldenFill', | ||
'google-plus-square-fill': 'GooglePlusSquareFill', | ||
'google-plus-circle-fill': 'GooglePlusCircleFill', | ||
'google-plus-square-fill': 'GooglePlusSquareFill', | ||
'google-plus': 'GooglePlus', | ||
@@ -452,5 +452,5 @@ 'google-circle-fill': 'GoogleCircleFill', | ||
'small-dash': 'SmallDash', | ||
'smile-fill': 'SmileFill', | ||
'smile': 'Smile', | ||
'snippets-fill': 'SnippetsFill', | ||
'smile-fill': 'SmileFill', | ||
'snippets': 'Snippets', | ||
@@ -465,4 +465,4 @@ 'solution': 'Solution', | ||
'stock': 'Stock', | ||
'stop-fill': 'StopFill', | ||
'stop': 'Stop', | ||
'stop-fill': 'StopFill', | ||
'strikethrough': 'Strikethrough', | ||
@@ -469,0 +469,0 @@ 'swap': 'Swap', |
export declare const BatchFolding: IconDefinition; | ||
export declare const Ci: IconDefinition; | ||
export declare const CiCircleFill: IconDefinition; | ||
export declare const Ci: IconDefinition; | ||
export declare const CodeSandboxCircleFill: IconDefinition; | ||
@@ -19,5 +19,5 @@ export declare const CodeSandboxSquareFill: IconDefinition; | ||
export declare const Import: IconDefinition; | ||
export declare const PoundCircleFill: IconDefinition; | ||
export declare const Pound: IconDefinition; | ||
export declare const QqCircleFill: IconDefinition; | ||
export declare const PoundCircleFill: IconDefinition; | ||
export declare const QqSquareFill: IconDefinition; | ||
@@ -225,4 +225,4 @@ export declare const Qq: IconDefinition; | ||
export declare const FilePdfFill: IconDefinition; | ||
export declare const FilePptFill: IconDefinition; | ||
export declare const FilePdf: IconDefinition; | ||
export declare const FilePptFill: IconDefinition; | ||
export declare const FilePpt: IconDefinition; | ||
@@ -232,4 +232,4 @@ export declare const FileTextFill: IconDefinition; | ||
export declare const FileUnknownFill: IconDefinition; | ||
export declare const FileWordFill: IconDefinition; | ||
export declare const FileUnknown: IconDefinition; | ||
export declare const FileWordFill: IconDefinition; | ||
export declare const FileWord: IconDefinition; | ||
@@ -268,4 +268,4 @@ export declare const FileZipFill: IconDefinition; | ||
export declare const GoldenFill: IconDefinition; | ||
export declare const GooglePlusSquareFill: IconDefinition; | ||
export declare const GooglePlusCircleFill: IconDefinition; | ||
export declare const GooglePlusSquareFill: IconDefinition; | ||
export declare const GooglePlus: IconDefinition; | ||
@@ -448,5 +448,5 @@ export declare const GoogleCircleFill: IconDefinition; | ||
export declare const SmallDash: IconDefinition; | ||
export declare const SmileFill: IconDefinition; | ||
export declare const Smile: IconDefinition; | ||
export declare const SnippetsFill: IconDefinition; | ||
export declare const SmileFill: IconDefinition; | ||
export declare const Snippets: IconDefinition; | ||
@@ -461,4 +461,4 @@ export declare const Solution: IconDefinition; | ||
export declare const Stock: IconDefinition; | ||
export declare const StopFill: IconDefinition; | ||
export declare const Stop: IconDefinition; | ||
export declare const StopFill: IconDefinition; | ||
export declare const Strikethrough: IconDefinition; | ||
@@ -538,2 +538,3 @@ export declare const Swap: IconDefinition; | ||
height: number; | ||
viewBox: string; | ||
style?: string; | ||
@@ -540,0 +541,0 @@ children: Array<{ |
{ | ||
"name": "@ant-design/icons", | ||
"version": "0.1.1-alpha.1", | ||
"version": "0.1.2-alpha.1", | ||
"description": "Ant Design Icons", | ||
@@ -5,0 +5,0 @@ "module": "es/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
1269636
7971
0