@taiga-ui/icons 2.26.0 → 2.29.0
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/README.md +4 -5
- package/all.d.ts +2 -1
- package/bundles/taiga-ui-icons-scripts.umd.js +13 -0
- package/bundles/taiga-ui-icons-scripts.umd.js.map +1 -1
- package/bundles/taiga-ui-icons-scripts.umd.min.js +1 -1
- package/bundles/taiga-ui-icons-scripts.umd.min.js.map +1 -1
- package/bundles/taiga-ui-icons.umd.js +2 -0
- package/bundles/taiga-ui-icons.umd.js.map +1 -1
- package/bundles/taiga-ui-icons.umd.min.js +1 -1
- package/bundles/taiga-ui-icons.umd.min.js.map +1 -1
- package/esm2015/all.js +3 -2
- package/esm2015/scripts/convert-all-compile-file-to-all-file.js +7 -1
- package/esm5/all.js +3 -2
- package/esm5/scripts/convert-all-compile-file-to-all-file.js +14 -1
- package/fesm2015/taiga-ui-icons-scripts.js +6 -0
- package/fesm2015/taiga-ui-icons-scripts.js.map +1 -1
- package/fesm2015/taiga-ui-icons.js +2 -1
- package/fesm2015/taiga-ui-icons.js.map +1 -1
- package/fesm5/taiga-ui-icons-scripts.js +13 -0
- package/fesm5/taiga-ui-icons-scripts.js.map +1 -1
- package/fesm5/taiga-ui-icons.js +2 -1
- package/fesm5/taiga-ui-icons.js.map +1 -1
- package/package.json +3 -3
- package/src/BQ.png +0 -0
- package/src/CW.png +0 -0
- package/src/{UK.png → GB.png} +0 -0
- package/src/SX.png +0 -0
- package/src/tuiIconSortOff.svg +24 -0
- package/taiga-ui-icons.metadata.json +1 -1
|
@@ -91,6 +91,19 @@ function convertAllCompileFileToAllFile(config) {
|
|
|
91
91
|
})];
|
|
92
92
|
case 2:
|
|
93
93
|
_a.sent();
|
|
94
|
+
/**
|
|
95
|
+
* @note:
|
|
96
|
+
* The rollup bundle must be closed once `write` is finished to let plugins clean up their external
|
|
97
|
+
* processes or services via the `closeBundle` hook, otherwise it can lead to memory leaks.
|
|
98
|
+
*/
|
|
99
|
+
return [4 /*yield*/, bundle.close()];
|
|
100
|
+
case 3:
|
|
101
|
+
/**
|
|
102
|
+
* @note:
|
|
103
|
+
* The rollup bundle must be closed once `write` is finished to let plugins clean up their external
|
|
104
|
+
* processes or services via the `closeBundle` hook, otherwise it can lead to memory leaks.
|
|
105
|
+
*/
|
|
106
|
+
_a.sent();
|
|
94
107
|
return [2 /*return*/];
|
|
95
108
|
}
|
|
96
109
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"taiga-ui-icons-scripts.js","sources":["ng://@taiga-ui/icons/scripts/rollup-svgo.ts","ng://@taiga-ui/icons/scripts/convert-all-compile-file-to-all-file.ts","ng://@taiga-ui/icons/scripts/delete-all-to-compile-file.ts","ng://@taiga-ui/icons/scripts/post-prettier-format.ts","ng://@taiga-ui/icons/scripts/prepare-all-to-compile-file.ts","ng://@taiga-ui/icons/scripts/taiga-ui-icons-scripts.ts"],"sourcesContent":["import {createFilter} from '@rollup/pluginutils';\nimport {Plugin, TransformResult} from 'rollup';\nimport {optimize, OptimizedSvg, OptimizeOptions} from 'svgo';\n\nexport interface RollupSvgoConfig {\n readonly include?: string;\n\n readonly exclude?: string;\n\n readonly options?: OptimizeOptions;\n}\n\nexport function rollupSvgo({\n include = '**/*.svg',\n exclude,\n options,\n}: RollupSvgoConfig = {}): Plugin {\n const filter = createFilter(include, exclude);\n\n return {\n name: 'rollupSvgo',\n async transform(svgString: string, id: string): Promise<TransformResult> {\n const skip: boolean = !filter(id);\n\n if (skip) {\n console.info('\\x1b[33m%s\\x1b[0m', '[skip]', id);\n\n return;\n }\n\n let optimizedSvg: OptimizedSvg | null = null;\n\n try {\n optimizedSvg = await optimize(svgString, {path: id, ...options});\n\n console.info('\\x1b[32m%s\\x1b[0m', '[success]', id);\n } catch (err) {\n console.error(\n '\\x1b[31m%s\\x1b[0m',\n '[error]',\n id,\n `\\n${svgString}`,\n `\\n${err}`,\n );\n\n process.exit(1);\n }\n\n return {\n code: `export default ${JSON.stringify(optimizedSvg?.data)}`,\n map: {mappings: ''},\n };\n },\n };\n}\n","import {rollup, RollupOptions} from 'rollup';\nimport typescript, {RPT2Options} from 'rollup-plugin-typescript2';\n\nimport {rollupSvgo} from './rollup-svgo';\n\nconst banner = `\n/**\n * @description:\n * DO NOT CHANGE THIS FILE. AUTOGENERATED\n */\n`;\n\ninterface Options {\n prt2Options?: RPT2Options;\n from: string;\n to: string;\n}\n\nexport async function convertAllCompileFileToAllFile(config: Options): Promise<void> {\n const {from, to, prt2Options} = config;\n\n const inputOptions: RollupOptions = {\n input: from,\n output: {preferConst: true},\n plugins: [\n typescript(prt2Options ?? {cacheRoot: 'node_modules/.cache/.rpt2_cache'}),\n rollupSvgo({\n include: '**/*.svg',\n options: {\n plugins: [\n {\n name: 'preset-default',\n params: {\n overrides: {\n removeViewBox: false,\n collapseGroups: false,\n cleanupIDs: false,\n removeUnknownsAndDefaults: false,\n },\n },\n },\n ],\n },\n }),\n ],\n };\n\n const bundle = await rollup(inputOptions);\n\n await bundle.write({\n banner,\n file: to,\n format: 'es',\n preferConst: true,\n });\n}\n","import {unlinkSync} from 'fs';\n\nexport function deleteAllToCompileFile(allToCompilePath: string | string[]): void {\n if (Array.isArray(allToCompilePath)) {\n allToCompilePath.forEach(file => unlinkSync(file));\n } else {\n unlinkSync(allToCompilePath);\n }\n}\n","import {readFileSync, writeFileSync} from 'fs';\nimport prettier from 'prettier';\n\nexport function postPrettierFormat(filePath: string, prettierConfig?: string): void {\n const bundledBody = readFileSync(filePath, 'utf8');\n const options = prettier.resolveConfig.sync(prettierConfig ?? 'prettier.config.js');\n const formatted = prettier.format(bundledBody, {...options, parser: 'typescript'});\n\n writeFileSync(filePath, formatted);\n}\n","import {readdirSync, writeFileSync} from 'fs';\n\nexport function prepareAllToCompileFile(\n iconsSrc: string,\n allToCompilePath: string,\n): void {\n const icons: string[] = readdirSync(iconsSrc).filter(\n file => file.split('.').pop() === 'svg',\n );\n\n let importDeclarations = '';\n let exportDeclarations = '';\n\n for (const iconPath of icons) {\n const fileName = iconPath.split('.').shift();\n\n importDeclarations += `import ${fileName} from './src/${fileName}.svg';\\n`;\n exportDeclarations += `${fileName}, `;\n }\n\n writeFileSync(\n allToCompilePath,\n `${importDeclarations} \\n export { ${exportDeclarations} }`,\n );\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;;;SAYgB,UAAU,CAAC,EAIH;QAJG,4BAIH,EAHpB,eAAoB,EAApB,yCAAoB,EACpB,oBAAO,EACP,oBAAO;IAEP,IAAM,MAAM,GAAG,YAAY,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;IAE9C,OAAO;QACH,IAAI,EAAE,YAAY;QACZ,SAAS,EAAf,UAAgB,SAAiB,EAAE,EAAU;;;;;;4BACnC,IAAI,GAAY,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;4BAElC,IAAI,IAAI,EAAE;gCACN,OAAO,CAAC,IAAI,CAAC,mBAAmB,EAAE,QAAQ,EAAE,EAAE,CAAC,CAAC;gCAEhD,sBAAO;6BACV;4BAEG,YAAY,GAAwB,IAAI,CAAC;;;;4BAG1B,qBAAM,QAAQ,CAAC,SAAS,aAAG,IAAI,EAAE,EAAE,IAAK,OAAO,EAAE,EAAA;;4BAAhE,YAAY,GAAG,SAAiD,CAAC;4BAEjE,OAAO,CAAC,IAAI,CAAC,mBAAmB,EAAE,WAAW,EAAE,EAAE,CAAC,CAAC;;;;4BAEnD,OAAO,CAAC,KAAK,CACT,mBAAmB,EACnB,SAAS,EACT,EAAE,EACF,OAAK,SAAW,EAChB,OAAK,KAAK,CACb,CAAC;4BAEF,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;;gCAGpB,sBAAO;gCACH,IAAI,EAAE,oBAAkB,IAAI,CAAC,SAAS,CAAC,YAAY,aAAZ,YAAY,uBAAZ,YAAY,CAAE,IAAI,CAAG;gCAC5D,GAAG,EAAE,EAAC,QAAQ,EAAE,EAAE,EAAC;6BACtB,EAAC;;;;SACL;KACJ,CAAC;AACN;;ACjDA,IAAM,MAAM,GAAG,2EAKd,CAAC;SAQoB,8BAA8B,CAAC,MAAe;;;;;;oBACzD,IAAI,GAAqB,MAAM,KAA3B,EAAE,EAAE,GAAiB,MAAM,GAAvB,EAAE,WAAW,GAAI,MAAM,YAAV,CAAW;oBAEjC,YAAY,GAAkB;wBAChC,KAAK,EAAE,IAAI;wBACX,MAAM,EAAE,EAAC,WAAW,EAAE,IAAI,EAAC;wBAC3B,OAAO,EAAE;4BACL,UAAU,CAAC,WAAW,aAAX,WAAW,cAAX,WAAW,GAAI,EAAC,SAAS,EAAE,iCAAiC,EAAC,CAAC;4BACzE,UAAU,CAAC;gCACP,OAAO,EAAE,UAAU;gCACnB,OAAO,EAAE;oCACL,OAAO,EAAE;wCACL;4CACI,IAAI,EAAE,gBAAgB;4CACtB,MAAM,EAAE;gDACJ,SAAS,EAAE;oDACP,aAAa,EAAE,KAAK;oDACpB,cAAc,EAAE,KAAK;oDACrB,UAAU,EAAE,KAAK;oDACjB,yBAAyB,EAAE,KAAK;iDACnC;6CACJ;yCACJ;qCACJ;iCACJ;6BACJ,CAAC;yBACL;qBACJ,CAAC;oBAEa,qBAAM,MAAM,CAAC,YAAY,CAAC,EAAA;;oBAAnC,MAAM,GAAG,SAA0B;oBAEzC,qBAAM,MAAM,CAAC,KAAK,CAAC;4BACf,MAAM,QAAA;4BACN,IAAI,EAAE,EAAE;4BACR,MAAM,EAAE,IAAI;4BACZ,WAAW,EAAE,IAAI;yBACpB,CAAC,EAAA;;oBALF,SAKE,CAAC;;;;;;;
|
|
1
|
+
{"version":3,"file":"taiga-ui-icons-scripts.js","sources":["ng://@taiga-ui/icons/scripts/rollup-svgo.ts","ng://@taiga-ui/icons/scripts/convert-all-compile-file-to-all-file.ts","ng://@taiga-ui/icons/scripts/delete-all-to-compile-file.ts","ng://@taiga-ui/icons/scripts/post-prettier-format.ts","ng://@taiga-ui/icons/scripts/prepare-all-to-compile-file.ts","ng://@taiga-ui/icons/scripts/taiga-ui-icons-scripts.ts"],"sourcesContent":["import {createFilter} from '@rollup/pluginutils';\nimport {Plugin, TransformResult} from 'rollup';\nimport {optimize, OptimizedSvg, OptimizeOptions} from 'svgo';\n\nexport interface RollupSvgoConfig {\n readonly include?: string;\n\n readonly exclude?: string;\n\n readonly options?: OptimizeOptions;\n}\n\nexport function rollupSvgo({\n include = '**/*.svg',\n exclude,\n options,\n}: RollupSvgoConfig = {}): Plugin {\n const filter = createFilter(include, exclude);\n\n return {\n name: 'rollupSvgo',\n async transform(svgString: string, id: string): Promise<TransformResult> {\n const skip: boolean = !filter(id);\n\n if (skip) {\n console.info('\\x1b[33m%s\\x1b[0m', '[skip]', id);\n\n return;\n }\n\n let optimizedSvg: OptimizedSvg | null = null;\n\n try {\n optimizedSvg = await optimize(svgString, {path: id, ...options});\n\n console.info('\\x1b[32m%s\\x1b[0m', '[success]', id);\n } catch (err) {\n console.error(\n '\\x1b[31m%s\\x1b[0m',\n '[error]',\n id,\n `\\n${svgString}`,\n `\\n${err}`,\n );\n\n process.exit(1);\n }\n\n return {\n code: `export default ${JSON.stringify(optimizedSvg?.data)}`,\n map: {mappings: ''},\n };\n },\n };\n}\n","import {rollup, RollupOptions} from 'rollup';\nimport typescript, {RPT2Options} from 'rollup-plugin-typescript2';\n\nimport {rollupSvgo} from './rollup-svgo';\n\nconst banner = `\n/**\n * @description:\n * DO NOT CHANGE THIS FILE. AUTOGENERATED\n */\n`;\n\ninterface Options {\n prt2Options?: RPT2Options;\n from: string;\n to: string;\n}\n\nexport async function convertAllCompileFileToAllFile(config: Options): Promise<void> {\n const {from, to, prt2Options} = config;\n\n const inputOptions: RollupOptions = {\n input: from,\n output: {preferConst: true},\n plugins: [\n typescript(prt2Options ?? {cacheRoot: 'node_modules/.cache/.rpt2_cache'}),\n rollupSvgo({\n include: '**/*.svg',\n options: {\n plugins: [\n {\n name: 'preset-default',\n params: {\n overrides: {\n removeViewBox: false,\n collapseGroups: false,\n cleanupIDs: false,\n removeUnknownsAndDefaults: false,\n },\n },\n },\n ],\n },\n }),\n ],\n };\n\n const bundle = await rollup(inputOptions);\n\n await bundle.write({\n banner,\n file: to,\n format: 'es',\n preferConst: true,\n });\n\n /**\n * @note:\n * The rollup bundle must be closed once `write` is finished to let plugins clean up their external\n * processes or services via the `closeBundle` hook, otherwise it can lead to memory leaks.\n */\n await bundle.close();\n}\n","import {unlinkSync} from 'fs';\n\nexport function deleteAllToCompileFile(allToCompilePath: string | string[]): void {\n if (Array.isArray(allToCompilePath)) {\n allToCompilePath.forEach(file => unlinkSync(file));\n } else {\n unlinkSync(allToCompilePath);\n }\n}\n","import {readFileSync, writeFileSync} from 'fs';\nimport prettier from 'prettier';\n\nexport function postPrettierFormat(filePath: string, prettierConfig?: string): void {\n const bundledBody = readFileSync(filePath, 'utf8');\n const options = prettier.resolveConfig.sync(prettierConfig ?? 'prettier.config.js');\n const formatted = prettier.format(bundledBody, {...options, parser: 'typescript'});\n\n writeFileSync(filePath, formatted);\n}\n","import {readdirSync, writeFileSync} from 'fs';\n\nexport function prepareAllToCompileFile(\n iconsSrc: string,\n allToCompilePath: string,\n): void {\n const icons: string[] = readdirSync(iconsSrc).filter(\n file => file.split('.').pop() === 'svg',\n );\n\n let importDeclarations = '';\n let exportDeclarations = '';\n\n for (const iconPath of icons) {\n const fileName = iconPath.split('.').shift();\n\n importDeclarations += `import ${fileName} from './src/${fileName}.svg';\\n`;\n exportDeclarations += `${fileName}, `;\n }\n\n writeFileSync(\n allToCompilePath,\n `${importDeclarations} \\n export { ${exportDeclarations} }`,\n );\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
package/fesm5/taiga-ui-icons.js
CHANGED
|
@@ -175,6 +175,7 @@ var tuiIconSettings = '<svg xmlns="http://www.w3.org/2000/svg" width="1em" heigh
|
|
|
175
175
|
var tuiIconSettingsLarge = '<svg xmlns="http://www.w3.org/2000/svg" width="1.5em" height="1.5em" focusable="false"><g id="tuiIconSettingsLarge" xmlns="http://www.w3.org/2000/svg"><svg x="50%" y="50%" width="1.5em" height="1.5em" overflow="visible" viewBox="0 0 24 24" fill="none"><svg x="-12" y="-12" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 2c-.413 0-.821.025-1.222.074l-.038.004c-.146.016-.454.05-.735.215a1.525 1.525 0 0 0-.561.584c-.155.288-.178.61-.189.764 0 .016-.002.03-.003.042L9.16 4.787a7.693 7.693 0 0 0-.252.105l-.846-.716a3.587 3.587 0 0 1-.031-.027c-.117-.1-.36-.313-.674-.407a1.525 1.525 0 0 0-.81-.016c-.314.082-.556.276-.67.367l-.03.024a9.889 9.889 0 0 0-.902.796l-.002.002-.028.028-.002.002c-.283.284-.549.585-.796.901l-.024.03c-.091.115-.285.357-.367.672-.068.262-.062.55.016.809.094.313.306.557.407.674l.027.031.716.846a7.695 7.695 0 0 0-.105.252l-1.104.092a3.584 3.584 0 0 1-.042.003c-.154.011-.476.034-.764.189a1.525 1.525 0 0 0-.584.561c-.165.281-.199.59-.215.735l-.004.038a10.09 10.09 0 0 0 0 2.444l.004.038c.016.146.05.454.215.735.137.233.346.433.584.561.288.155.61.178.764.189.016 0 .03.002.042.003l1.104.092c.034.085.068.169.105.252l-.716.846-.027.031c-.1.117-.313.361-.407.674a1.525 1.525 0 0 0-.016.81c.082.314.276.556.367.67l.024.03c.245.315.509.613.79.895l.002.003.04.04.003.003c.282.28.58.544.894.789l.03.024c.115.091.357.285.672.367.262.068.55.062.809-.016.313-.094.557-.306.674-.407l.031-.027.846-.716c.083.037.167.072.252.105l.092 1.104.003.042c.011.153.034.476.189.764.128.238.328.447.561.584.281.165.59.199.735.215l.038.004a10.09 10.09 0 0 0 2.444 0l.038-.004c.146-.016.454-.05.735-.215.233-.137.433-.346.561-.584.155-.288.178-.61.189-.764 0-.016.002-.03.003-.042l.092-1.104c.085-.034.169-.068.252-.105l.846.716.02.017.011.01c.117.1.36.313.674.407.259.078.547.084.81.016.314-.082.556-.276.67-.367l.03-.024a10.058 10.058 0 0 0 1.73-1.73l.024-.03c.091-.114.285-.356.367-.67a1.526 1.526 0 0 0-.016-.81c-.094-.313-.306-.557-.407-.674a2.51 2.51 0 0 1-.013-.015l-.014-.016-.716-.846a5.57 5.57 0 0 0 .105-.252l1.104-.092.042-.003c.153-.011.476-.034.764-.189.238-.128.447-.328.584-.561.165-.281.199-.59.215-.735l.004-.038a10.09 10.09 0 0 0 0-2.444l-.004-.038c-.016-.146-.05-.454-.215-.735a1.525 1.525 0 0 0-.584-.561c-.288-.155-.61-.178-.764-.189a3.71 3.71 0 0 1-.042-.003l-1.104-.092a7.626 7.626 0 0 0-.105-.252l.716-.846.027-.031c.1-.117.313-.36.407-.674.078-.259.084-.547.016-.809-.082-.315-.276-.557-.367-.672l-.024-.03a10.049 10.049 0 0 0-1.73-1.729l-.03-.024c-.114-.091-.356-.285-.67-.367a1.524 1.524 0 0 0-.81.016c-.313.094-.557.306-.674.407l-.031.027-.846.716a7.704 7.704 0 0 0-.252-.105l-.092-1.104-.003-.042c-.011-.154-.034-.476-.189-.764a1.525 1.525 0 0 0-.561-.584c-.281-.165-.59-.199-.735-.215l-.038-.004A10.09 10.09 0 0 0 12 2zm-.855 3.056.085-1.02a8.11 8.11 0 0 1 1.54 0l.085 1.02.003.039c.01.135.03.412.14.657a1.466 1.466 0 0 0 .772.761 5.7 5.7 0 0 0 .274.11l.015.007c.095.036.189.075.281.116l.016.007c.086.039.184.082.27.115a1.465 1.465 0 0 0 1.085.009c.252-.096.462-.278.565-.366l.03-.026.78-.66a8.02 8.02 0 0 1 1.09 1.09l-.661.78-.026.03c-.088.102-.27.312-.366.563a1.467 1.467 0 0 0 .009 1.085c.033.087.076.185.115.271l.007.016c.041.092.08.186.116.28l.006.016c.035.09.073.189.11.274a1.466 1.466 0 0 0 .761.773c.246.109.523.129.658.139l.039.003 1.02.085a8.132 8.132 0 0 1 0 1.54l-1.02.085-.039.003c-.135.01-.412.03-.657.14a1.466 1.466 0 0 0-.761.772 5.762 5.762 0 0 0-.11.274l-.006.015a5.747 5.747 0 0 1-.117.281l-.007.016a5.721 5.721 0 0 0-.115.27 1.465 1.465 0 0 0-.009 1.085c.096.252.278.462.366.565l.026.029.66.78a8.047 8.047 0 0 1-1.089 1.09l-.781-.66-.03-.026c-.102-.088-.312-.27-.563-.366a1.464 1.464 0 0 0-1.085.009 5.68 5.68 0 0 0-.271.115l-.016.007c-.092.041-.186.08-.28.116l-.016.007a5.762 5.762 0 0 0-.274.11 1.466 1.466 0 0 0-.773.761c-.109.245-.129.522-.139.657l-.003.039-.085 1.02a8.132 8.132 0 0 1-1.54 0l-.085-1.02-.003-.039c-.01-.135-.03-.412-.14-.657a1.466 1.466 0 0 0-.772-.761 5.758 5.758 0 0 0-.274-.11l-.015-.006a5.718 5.718 0 0 1-.281-.117l-.016-.007c-.086-.038-.184-.082-.27-.115a1.467 1.467 0 0 0-1.085-.009c-.252.096-.462.278-.565.366l-.029.026-.78.66a8.077 8.077 0 0 1-.553-.499v-.001l-.037-.036-.001-.001a8.035 8.035 0 0 1-.5-.552l.661-.78.026-.03c.088-.103.27-.313.366-.564a1.465 1.465 0 0 0-.009-1.085 5.712 5.712 0 0 0-.115-.271l-.007-.016a5.73 5.73 0 0 1-.116-.28l-.007-.016a5.213 5.213 0 0 0-.11-.274 1.466 1.466 0 0 0-.761-.773c-.245-.109-.522-.129-.657-.139l-.039-.003-1.02-.085a8.11 8.11 0 0 1 0-1.54l1.02-.085.039-.003c.135-.01.412-.03.657-.14a1.466 1.466 0 0 0 .761-.772c.038-.085.076-.185.11-.274l.007-.015a5.7 5.7 0 0 1 .116-.281l.007-.016a5.73 5.73 0 0 0 .115-.27 1.465 1.465 0 0 0 .009-1.085c-.096-.252-.278-.462-.366-.565l-.026-.029-.66-.781c.16-.194.328-.38.506-.558l.025-.025V6.33c.178-.177.364-.346.558-.506l.781.661.03.026c.102.088.312.27.563.366a1.465 1.465 0 0 0 1.085-.009c.087-.033.185-.076.271-.115l.016-.007c.092-.041.186-.08.28-.116l.016-.007c.09-.034.189-.072.274-.11a1.466 1.466 0 0 0 .773-.761c.109-.245.129-.522.139-.657l.003-.039zM12 16a4 4 0 1 0 0-8 4 4 0 0 0 0 8zm2-4a2 2 0 1 1-4 0 2 2 0 0 1 4 0z" fill="currentColor"/></svg></svg></g></svg>';
|
|
176
176
|
var tuiIconShowLarge = '<svg xmlns="http://www.w3.org/2000/svg" width="1.5em" height="1.5em" focusable="false"><g id="tuiIconShowLarge" xmlns="http://www.w3.org/2000/svg"><svg x="50%" y="50%" width="1.5em" height="1.5em" overflow="visible" viewBox="0 0 24 24" fill="none"><svg x="-12" y="-12" xmlns="http://www.w3.org/2000/svg"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg></svg></g></svg>';
|
|
177
177
|
var tuiIconSortDown = '<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" focusable="false"><g id="tuiIconSortDown" xmlns="http://www.w3.org/2000/svg"><svg x="50%" y="50%" width="1em" height="1em" overflow="visible" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><svg x="-8" y="-8"><path d="M4.1 5H12c.3 0 .5.2.5.5 0 .1 0 .2-.1.3l-3.9 4.7c-.2.2-.5.2-.7.1l-.1-.1-4-4.7c-.2-.2-.2-.5 0-.7.1-.1.3-.1.4-.1z" fill="currentColor"/></svg></svg></g></svg>';
|
|
178
|
+
var tuiIconSortOff = '<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em"><g id="tuiIconSortOff" xmlns="http://www.w3.org/2000/svg"><svg x="50%" y="50%" width="1em" height="1em" overflow="visible" viewBox="0 0 16 16"><svg x="-8" y="-8"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.707 4.879a1 1 0 0 1-1.414 1.414L8 4 5.707 6.293a1 1 0 1 1-1.414-1.414l2.293-2.293a2 2 0 0 1 2.828 0l2.293 2.293ZM4.293 10.707a1 1 0 0 1 1.414-1.414L8 11.586l2.293-2.293a1 1 0 1 1 1.414 1.414L9.414 13a2 2 0 0 1-2.828 0l-2.293-2.293Z" fill="currentColor"/></svg></svg></svg></g></svg>';
|
|
178
179
|
var tuiIconSortUp = '<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" focusable="false"><g id="tuiIconSortUp" xmlns="http://www.w3.org/2000/svg"><svg x="50%" y="50%" width="1em" height="1em" overflow="visible" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><svg x="-8" y="-8"><path d="M4.1 10.665H12c.3 0 .5-.2.5-.5 0-.1 0-.2-.1-.3l-3.9-4.7c-.2-.2-.5-.2-.7-.1l-.1.1-4 4.7c-.2.2-.2.5 0 .7.1.1.3.1.4.1z" fill="currentColor"/></svg></svg></g></svg>';
|
|
179
180
|
var tuiIconSound = '<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" focusable="false"><g id="tuiIconSound" xmlns="http://www.w3.org/2000/svg"><svg x="50%" y="50%" width="1em" height="1em" overflow="visible" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><svg x="-8" y="-8"><path d="M7.333 3.333 4 6H1.333v4H4l3.333 2.667V3.333zm5.38-.046a6.667 6.667 0 0 1 0 9.426M10.36 5.64a3.333 3.333 0 0 1 0 4.713" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg></svg></g></svg>';
|
|
180
181
|
var tuiIconSoundLarge = '<svg xmlns="http://www.w3.org/2000/svg" width="1.5em" height="1.5em" focusable="false"><g id="tuiIconSoundLarge" xmlns="http://www.w3.org/2000/svg"><svg x="50%" y="50%" width="1.5em" height="1.5em" overflow="visible" viewBox="0 0 24 24" fill="none"><svg x="-12" y="-12" xmlns="http://www.w3.org/2000/svg"><path d="M11 5 6 9H2v6h4l5 4V5zm8.07-.07a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg></svg></g></svg>';
|
|
@@ -262,5 +263,5 @@ var tuiKitIcons = __assign(__assign({}, tuiCoreIcons), { tuiIconAlertCircleLarge
|
|
|
262
263
|
* Generated bundle index. Do not edit.
|
|
263
264
|
*/
|
|
264
265
|
|
|
265
|
-
export { tuiCoreIcons, tuiIconAddRowLarge, tuiIconAlertCircleLarge, tuiIconAlignCenterLarge, tuiIconAlignJustifyLarge, tuiIconAlignLeftLarge, tuiIconAlignRightLarge, tuiIconArrowDown, tuiIconArrowDownLarge, tuiIconArrowDownLeft, tuiIconArrowDownRight, tuiIconArrowLeft, tuiIconArrowLeftLarge, tuiIconArrowRight, tuiIconArrowRightLarge, tuiIconArrowUp, tuiIconArrowUpLarge, tuiIconArrowUpLeft, tuiIconArrowUpRight, tuiIconAttach, tuiIconAttachLarge, tuiIconAttention, tuiIconBackCircleLarge, tuiIconBell, tuiIconBellLarge, tuiIconBellOff, tuiIconBellOffLarge, tuiIconBoldLarge, tuiIconBookmark, tuiIconBookmarkLarge, tuiIconCalendar, tuiIconCalendarLarge, tuiIconCall, tuiIconCallIn, tuiIconCallInLarge, tuiIconCallLarge, tuiIconCallOut, tuiIconCallOutLarge, tuiIconCallTransferLarge, tuiIconCameraLarge, tuiIconCancel, tuiIconCancelCircleLarge, tuiIconCard, tuiIconCardsLarge, tuiIconChartBar, tuiIconChartLarge, tuiIconChartLineLarge, tuiIconCheck, tuiIconCheckCircle, tuiIconCheckCircleLarge, tuiIconCheckLarge, tuiIconCheckList, tuiIconChevronDown, tuiIconChevronDownLarge, tuiIconChevronLeft, tuiIconChevronLeftLarge, tuiIconChevronRight, tuiIconChevronRightLarge, tuiIconChevronUp, tuiIconChevronUpLarge, tuiIconClearFormatLarge, tuiIconClose, tuiIconCloseCircleLarge, tuiIconCloseLarge, tuiIconCloud, tuiIconCode, tuiIconCodeLarge, tuiIconCollapse, tuiIconColorLarge, tuiIconComment, tuiIconCommentLarge, tuiIconCompanyLarge, tuiIconCopy, tuiIconCopyLarge, tuiIconDeleteLarge, tuiIconDesktopLarge, tuiIconDislikeLarge, tuiIconDone, tuiIconDownload, tuiIconDownloadLarge, tuiIconDraft, tuiIconDrag, tuiIconDragLarge, tuiIconEdit, tuiIconEditLarge, tuiIconElectron, tuiIconElectronMono, tuiIconExpand, tuiIconExternal, tuiIconExternalLarge, tuiIconEyeClosed, tuiIconEyeOpen, tuiIconFile, tuiIconFileLarge, tuiIconFilter, tuiIconFilterLarge, tuiIconFlag, tuiIconFlagLarge, tuiIconFolder, tuiIconFolderLarge, tuiIconFontLarge, tuiIconFormatLarge, tuiIconFrameLarge, tuiIconGeoLarge, tuiIconHeart, tuiIconHeartFilled, tuiIconHeartFilledLarge, tuiIconHeartLarge, tuiIconHelpCircleLarge, tuiIconHideLarge, tuiIconHiliteLarge, tuiIconHrLarge, tuiIconImgLarge, tuiIconIndentLarge, tuiIconInfo, tuiIconInfoCircleLarge, tuiIconItalicLarge, tuiIconLikeLarge, tuiIconLink, tuiIconLinkLarge, tuiIconLock, tuiIconLockLarge, tuiIconLockOpenLarge, tuiIconLoginLarge, tuiIconLogoutLarge, tuiIconMaestro, tuiIconMaestroMono, tuiIconMail, tuiIconMailLarge, tuiIconMastercard, tuiIconMastercardMono, tuiIconMenuLarge, tuiIconMicLarge, tuiIconMicOffLarge, tuiIconMinus, tuiIconMinusCircle, tuiIconMinusLarge, tuiIconMir, tuiIconMirMono, tuiIconMobile, tuiIconMobileLarge, tuiIconMoreHorLarge, tuiIconMoreVer, tuiIconMoreVertLarge, tuiIconMusicLarge, tuiIconOLLarge, tuiIconOutdentLarge, tuiIconPaintLarge, tuiIconPause, tuiIconPauseLarge, tuiIconPicture, tuiIconPiechartLarge, tuiIconPin, tuiIconPlay, tuiIconPlayLarge, tuiIconPlus, tuiIconPlusCircleLarge, tuiIconPlusLarge, tuiIconPrintLarge, tuiIconQuoteLarge, tuiIconRedo, tuiIconRedoLarge, tuiIconRefresh, tuiIconRefreshLarge, tuiIconRemoveLarge, tuiIconRotate, tuiIconSearch, tuiIconSearchLarge, tuiIconSettings, tuiIconSettingsLarge, tuiIconShowLarge, tuiIconSortDown, tuiIconSortUp, tuiIconSound, tuiIconSoundLarge, tuiIconSoundOff, tuiIconSoundOffLarge, tuiIconStar, tuiIconStarFilled, tuiIconStarFilledLarge, tuiIconStarLarge, tuiIconStop, tuiIconStopLarge, tuiIconStrikeThroughLarge, tuiIconStructureLarge, tuiIconSubitem, tuiIconSublevelLarge, tuiIconSubscriptLarge, tuiIconSuperscriptLarge, tuiIconTableLarge, tuiIconTableMergeLarge, tuiIconTableSplitLarge, tuiIconTeXLarge, tuiIconTime, tuiIconTimeLarge, tuiIconToggleOff, tuiIconToggleOffLarge, tuiIconToggleOn, tuiIconToggleOnLarge, tuiIconTooltip, tuiIconTooltipLarge, tuiIconTransparentLarge, tuiIconTrash, tuiIconTrashLarge, tuiIconUnderlineLarge, tuiIconUndo, tuiIconUndoLarge, tuiIconUpload, tuiIconUploadLarge, tuiIconUser, tuiIconUsers, tuiIconVideo, tuiIconVideoLarge, tuiIconViewListLarge, tuiIconVisa, tuiIconVisaMono, tuiIconWarningLarge, tuiIconWifiOffLarge, tuiIconWifiOnLarge, tuiKitIcons };
|
|
266
|
+
export { tuiCoreIcons, tuiIconAddRowLarge, tuiIconAlertCircleLarge, tuiIconAlignCenterLarge, tuiIconAlignJustifyLarge, tuiIconAlignLeftLarge, tuiIconAlignRightLarge, tuiIconArrowDown, tuiIconArrowDownLarge, tuiIconArrowDownLeft, tuiIconArrowDownRight, tuiIconArrowLeft, tuiIconArrowLeftLarge, tuiIconArrowRight, tuiIconArrowRightLarge, tuiIconArrowUp, tuiIconArrowUpLarge, tuiIconArrowUpLeft, tuiIconArrowUpRight, tuiIconAttach, tuiIconAttachLarge, tuiIconAttention, tuiIconBackCircleLarge, tuiIconBell, tuiIconBellLarge, tuiIconBellOff, tuiIconBellOffLarge, tuiIconBoldLarge, tuiIconBookmark, tuiIconBookmarkLarge, tuiIconCalendar, tuiIconCalendarLarge, tuiIconCall, tuiIconCallIn, tuiIconCallInLarge, tuiIconCallLarge, tuiIconCallOut, tuiIconCallOutLarge, tuiIconCallTransferLarge, tuiIconCameraLarge, tuiIconCancel, tuiIconCancelCircleLarge, tuiIconCard, tuiIconCardsLarge, tuiIconChartBar, tuiIconChartLarge, tuiIconChartLineLarge, tuiIconCheck, tuiIconCheckCircle, tuiIconCheckCircleLarge, tuiIconCheckLarge, tuiIconCheckList, tuiIconChevronDown, tuiIconChevronDownLarge, tuiIconChevronLeft, tuiIconChevronLeftLarge, tuiIconChevronRight, tuiIconChevronRightLarge, tuiIconChevronUp, tuiIconChevronUpLarge, tuiIconClearFormatLarge, tuiIconClose, tuiIconCloseCircleLarge, tuiIconCloseLarge, tuiIconCloud, tuiIconCode, tuiIconCodeLarge, tuiIconCollapse, tuiIconColorLarge, tuiIconComment, tuiIconCommentLarge, tuiIconCompanyLarge, tuiIconCopy, tuiIconCopyLarge, tuiIconDeleteLarge, tuiIconDesktopLarge, tuiIconDislikeLarge, tuiIconDone, tuiIconDownload, tuiIconDownloadLarge, tuiIconDraft, tuiIconDrag, tuiIconDragLarge, tuiIconEdit, tuiIconEditLarge, tuiIconElectron, tuiIconElectronMono, tuiIconExpand, tuiIconExternal, tuiIconExternalLarge, tuiIconEyeClosed, tuiIconEyeOpen, tuiIconFile, tuiIconFileLarge, tuiIconFilter, tuiIconFilterLarge, tuiIconFlag, tuiIconFlagLarge, tuiIconFolder, tuiIconFolderLarge, tuiIconFontLarge, tuiIconFormatLarge, tuiIconFrameLarge, tuiIconGeoLarge, tuiIconHeart, tuiIconHeartFilled, tuiIconHeartFilledLarge, tuiIconHeartLarge, tuiIconHelpCircleLarge, tuiIconHideLarge, tuiIconHiliteLarge, tuiIconHrLarge, tuiIconImgLarge, tuiIconIndentLarge, tuiIconInfo, tuiIconInfoCircleLarge, tuiIconItalicLarge, tuiIconLikeLarge, tuiIconLink, tuiIconLinkLarge, tuiIconLock, tuiIconLockLarge, tuiIconLockOpenLarge, tuiIconLoginLarge, tuiIconLogoutLarge, tuiIconMaestro, tuiIconMaestroMono, tuiIconMail, tuiIconMailLarge, tuiIconMastercard, tuiIconMastercardMono, tuiIconMenuLarge, tuiIconMicLarge, tuiIconMicOffLarge, tuiIconMinus, tuiIconMinusCircle, tuiIconMinusLarge, tuiIconMir, tuiIconMirMono, tuiIconMobile, tuiIconMobileLarge, tuiIconMoreHorLarge, tuiIconMoreVer, tuiIconMoreVertLarge, tuiIconMusicLarge, tuiIconOLLarge, tuiIconOutdentLarge, tuiIconPaintLarge, tuiIconPause, tuiIconPauseLarge, tuiIconPicture, tuiIconPiechartLarge, tuiIconPin, tuiIconPlay, tuiIconPlayLarge, tuiIconPlus, tuiIconPlusCircleLarge, tuiIconPlusLarge, tuiIconPrintLarge, tuiIconQuoteLarge, tuiIconRedo, tuiIconRedoLarge, tuiIconRefresh, tuiIconRefreshLarge, tuiIconRemoveLarge, tuiIconRotate, tuiIconSearch, tuiIconSearchLarge, tuiIconSettings, tuiIconSettingsLarge, tuiIconShowLarge, tuiIconSortDown, tuiIconSortOff, tuiIconSortUp, tuiIconSound, tuiIconSoundLarge, tuiIconSoundOff, tuiIconSoundOffLarge, tuiIconStar, tuiIconStarFilled, tuiIconStarFilledLarge, tuiIconStarLarge, tuiIconStop, tuiIconStopLarge, tuiIconStrikeThroughLarge, tuiIconStructureLarge, tuiIconSubitem, tuiIconSublevelLarge, tuiIconSubscriptLarge, tuiIconSuperscriptLarge, tuiIconTableLarge, tuiIconTableMergeLarge, tuiIconTableSplitLarge, tuiIconTeXLarge, tuiIconTime, tuiIconTimeLarge, tuiIconToggleOff, tuiIconToggleOffLarge, tuiIconToggleOn, tuiIconToggleOnLarge, tuiIconTooltip, tuiIconTooltipLarge, tuiIconTransparentLarge, tuiIconTrash, tuiIconTrashLarge, tuiIconUnderlineLarge, tuiIconUndo, tuiIconUndoLarge, tuiIconUpload, tuiIconUploadLarge, tuiIconUser, tuiIconUsers, tuiIconVideo, tuiIconVideoLarge, tuiIconViewListLarge, tuiIconVisa, tuiIconVisaMono, tuiIconWarningLarge, tuiIconWifiOffLarge, tuiIconWifiOnLarge, tuiKitIcons };
|
|
266
267
|
//# sourceMappingURL=taiga-ui-icons.js.map
|