@taiga-ui/icons 2.24.0 → 2.25.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/all.d.ts +2 -1
- package/bundles/taiga-ui-icons-scripts.umd.js +345 -0
- package/bundles/taiga-ui-icons-scripts.umd.js.map +1 -0
- package/bundles/taiga-ui-icons-scripts.umd.min.js +2 -0
- package/bundles/taiga-ui-icons-scripts.umd.min.js.map +1 -0
- 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 +41 -0
- package/esm2015/scripts/delete-all-to-compile-file.js +5 -0
- package/esm2015/scripts/index.js +6 -0
- package/esm2015/scripts/post-prettier-format.js +9 -0
- package/esm2015/scripts/prepare-all-to-compile-file.js +13 -0
- package/esm2015/scripts/rollup-svgo.js +23 -0
- package/esm2015/scripts/taiga-ui-icons-scripts.js +5 -0
- package/esm5/all.js +3 -2
- package/esm5/scripts/convert-all-compile-file-to-all-file.js +47 -0
- package/esm5/scripts/delete-all-to-compile-file.js +5 -0
- package/esm5/scripts/index.js +6 -0
- package/esm5/scripts/post-prettier-format.js +10 -0
- package/esm5/scripts/prepare-all-to-compile-file.js +25 -0
- package/esm5/scripts/rollup-svgo.js +32 -0
- package/esm5/scripts/taiga-ui-icons-scripts.js +5 -0
- package/fesm2015/taiga-ui-icons-scripts.js +94 -0
- package/fesm2015/taiga-ui-icons-scripts.js.map +1 -0
- package/fesm2015/taiga-ui-icons.js +2 -1
- package/fesm2015/taiga-ui-icons.js.map +1 -1
- package/fesm5/taiga-ui-icons-scripts.js +120 -0
- package/fesm5/taiga-ui-icons-scripts.js.map +1 -0
- package/fesm5/taiga-ui-icons.js +2 -1
- package/fesm5/taiga-ui-icons.js.map +1 -1
- package/package.json +1 -1
- package/scripts/convert-all-compile-file-to-all-file.d.ts +7 -0
- package/scripts/delete-all-to-compile-file.d.ts +1 -0
- package/scripts/index.d.ts +5 -0
- package/scripts/package.json +13 -0
- package/scripts/post-prettier-format.d.ts +1 -0
- package/scripts/prepare-all-to-compile-file.d.ts +1 -0
- package/scripts/rollup-svgo.d.ts +7 -0
- package/scripts/taiga-ui-icons-scripts.d.ts +4 -0
- package/scripts/taiga-ui-icons-scripts.metadata.json +1 -0
- package/src/tuiIconRotate.svg +29 -0
- package/taiga-ui-icons.metadata.json +1 -1
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import { __awaiter, __generator, __assign, __values } from 'tslib';
|
|
2
|
+
import { rollup } from 'rollup';
|
|
3
|
+
import typescript from 'rollup-plugin-typescript2';
|
|
4
|
+
import svgo from 'svgo';
|
|
5
|
+
import { createFilter } from 'rollup-pluginutils';
|
|
6
|
+
import { unlinkSync, readFileSync, writeFileSync, readdirSync } from 'fs';
|
|
7
|
+
import prettier from 'prettier';
|
|
8
|
+
|
|
9
|
+
function rollupSvgo(_a) {
|
|
10
|
+
var _b = _a === void 0 ? {} : _a, _c = _b.include, include = _c === void 0 ? '**/*.svg' : _c, exclude = _b.exclude, options = _b.options;
|
|
11
|
+
var filter = createFilter(include, exclude);
|
|
12
|
+
var svgo$1 = new svgo(options);
|
|
13
|
+
return {
|
|
14
|
+
name: 'rollupSvgo',
|
|
15
|
+
transform: function (svgString, id) {
|
|
16
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
17
|
+
var optimizedSvg;
|
|
18
|
+
return __generator(this, function (_a) {
|
|
19
|
+
switch (_a.label) {
|
|
20
|
+
case 0:
|
|
21
|
+
if (!filter(id)) {
|
|
22
|
+
return [2 /*return*/];
|
|
23
|
+
}
|
|
24
|
+
return [4 /*yield*/, svgo$1.optimize(svgString)];
|
|
25
|
+
case 1:
|
|
26
|
+
optimizedSvg = _a.sent();
|
|
27
|
+
return [2 /*return*/, {
|
|
28
|
+
code: "export default " + JSON.stringify(optimizedSvg.data),
|
|
29
|
+
map: null,
|
|
30
|
+
}];
|
|
31
|
+
}
|
|
32
|
+
});
|
|
33
|
+
});
|
|
34
|
+
},
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
var banner = "\n/**\n * @description:\n * DO NOT CHANGE THIS FILE. AUTOGENERATED\n */\n";
|
|
39
|
+
function convertAllCompileFileToAllFile(config) {
|
|
40
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
41
|
+
var from, to, cacheRoot, inputOptions, bundle;
|
|
42
|
+
return __generator(this, function (_a) {
|
|
43
|
+
switch (_a.label) {
|
|
44
|
+
case 0:
|
|
45
|
+
from = config.from, to = config.to, cacheRoot = config.cacheRoot;
|
|
46
|
+
inputOptions = {
|
|
47
|
+
input: from,
|
|
48
|
+
output: { preferConst: true },
|
|
49
|
+
plugins: [
|
|
50
|
+
typescript({ cacheRoot: cacheRoot !== null && cacheRoot !== void 0 ? cacheRoot : 'node_modules/.cache/.rpt2_cache' }),
|
|
51
|
+
rollupSvgo({
|
|
52
|
+
include: '**/*.svg',
|
|
53
|
+
options: {
|
|
54
|
+
plugins: [
|
|
55
|
+
{ removeViewBox: false },
|
|
56
|
+
{ collapseGroups: false },
|
|
57
|
+
{ cleanupIDs: false },
|
|
58
|
+
{ removeUnknownsAndDefaults: false },
|
|
59
|
+
],
|
|
60
|
+
},
|
|
61
|
+
}),
|
|
62
|
+
],
|
|
63
|
+
};
|
|
64
|
+
return [4 /*yield*/, rollup(inputOptions)];
|
|
65
|
+
case 1:
|
|
66
|
+
bundle = _a.sent();
|
|
67
|
+
return [4 /*yield*/, bundle.write({
|
|
68
|
+
banner: banner,
|
|
69
|
+
file: to,
|
|
70
|
+
format: 'es',
|
|
71
|
+
preferConst: true,
|
|
72
|
+
})];
|
|
73
|
+
case 2:
|
|
74
|
+
_a.sent();
|
|
75
|
+
return [2 /*return*/];
|
|
76
|
+
}
|
|
77
|
+
});
|
|
78
|
+
});
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
function deleteAllToCompileFile(allToCompilePath) {
|
|
82
|
+
unlinkSync(allToCompilePath);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
function postPrettierFormat(filePath, prettierConfig) {
|
|
86
|
+
var bundledBody = readFileSync(filePath, 'utf8');
|
|
87
|
+
var options = prettier.resolveConfig.sync(prettierConfig !== null && prettierConfig !== void 0 ? prettierConfig : 'prettier.config.js');
|
|
88
|
+
var formatted = prettier.format(bundledBody, __assign(__assign({}, options), { parser: 'typescript' }));
|
|
89
|
+
writeFileSync(filePath, formatted);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
function prepareAllToCompileFile(iconsSrc, allToCompilePath) {
|
|
93
|
+
var e_1, _a;
|
|
94
|
+
var icons = readdirSync(iconsSrc).filter(function (file) { return file.split('.').pop() === 'svg'; });
|
|
95
|
+
var importDeclarations = '';
|
|
96
|
+
var exportDeclarations = '';
|
|
97
|
+
try {
|
|
98
|
+
for (var icons_1 = __values(icons), icons_1_1 = icons_1.next(); !icons_1_1.done; icons_1_1 = icons_1.next()) {
|
|
99
|
+
var iconPath = icons_1_1.value;
|
|
100
|
+
var fileName = iconPath.split('.').shift();
|
|
101
|
+
importDeclarations += "import " + fileName + " from './src/" + fileName + ".svg';\n";
|
|
102
|
+
exportDeclarations += fileName + ", ";
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
106
|
+
finally {
|
|
107
|
+
try {
|
|
108
|
+
if (icons_1_1 && !icons_1_1.done && (_a = icons_1.return)) _a.call(icons_1);
|
|
109
|
+
}
|
|
110
|
+
finally { if (e_1) throw e_1.error; }
|
|
111
|
+
}
|
|
112
|
+
writeFileSync(allToCompilePath, importDeclarations + " \n export { " + exportDeclarations + " }");
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
/**
|
|
116
|
+
* Generated bundle index. Do not edit.
|
|
117
|
+
*/
|
|
118
|
+
|
|
119
|
+
export { convertAllCompileFileToAllFile, deleteAllToCompileFile, postPrettierFormat, prepareAllToCompileFile, rollupSvgo };
|
|
120
|
+
//# sourceMappingURL=taiga-ui-icons-scripts.js.map
|
|
@@ -0,0 +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 {Plugin, TransformSourceDescription} from 'rollup';\nimport {createFilter} from 'rollup-pluginutils';\n\nconst SVGO = require('svgo');\n\nexport interface RollupSvgoConfig {\n readonly include?: string;\n\n readonly exclude?: string;\n\n readonly options?: any;\n}\n\nexport function rollupSvgo({\n include = '**/*.svg',\n exclude,\n options,\n}: RollupSvgoConfig = {}): Plugin {\n const filter = createFilter(include, exclude);\n const svgo = new SVGO(options);\n\n return {\n name: 'rollupSvgo',\n async transform(\n svgString: string,\n id: string,\n ): Promise<TransformSourceDescription | any> {\n if (!filter(id)) {\n return;\n }\n\n const optimizedSvg = await svgo.optimize(svgString); // TODO add path\n\n return {\n code: `export default ${JSON.stringify(optimizedSvg.data)}`,\n map: null as any, // TODO https://github.com/rollup/rollup/wiki/Plugins#conventions\n };\n },\n };\n}\n","import {rollup, RollupOptions} from 'rollup';\nimport typescript 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 cacheRoot?: string;\n from: string;\n to: string;\n}\n\nexport async function convertAllCompileFileToAllFile(config: Options): Promise<void> {\n const {from, to, cacheRoot} = config;\n\n const inputOptions: RollupOptions = {\n input: from,\n output: {preferConst: true},\n plugins: [\n typescript({cacheRoot: cacheRoot ?? 'node_modules/.cache/.rpt2_cache'}),\n rollupSvgo({\n include: '**/*.svg',\n options: {\n plugins: [\n {removeViewBox: false},\n {collapseGroups: false},\n {cleanupIDs: false},\n {removeUnknownsAndDefaults: false},\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): void {\n unlinkSync(allToCompilePath);\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":["svgo","SVGO"],"mappings":"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"}
|
package/fesm5/taiga-ui-icons.js
CHANGED
|
@@ -167,6 +167,7 @@ var tuiIconRedoLarge = '<svg xmlns="http://www.w3.org/2000/svg" width="1.5em" he
|
|
|
167
167
|
var tuiIconRefresh = '<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" focusable="false"><g id="tuiIconRefresh" 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="M15 3v4h-4M1 13V9h4" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M2.597 6a6.025 6.025 0 011.595-2.484 5.639 5.639 0 012.54-1.368 5.475 5.475 0 012.856.088 5.68 5.68 0 012.46 1.523L15 6.666M1 9.334l2.953 2.907a5.678 5.678 0 002.46 1.523c.929.281 1.91.312 2.854.088a5.638 5.638 0 002.541-1.368 6.023 6.023 0 001.595-2.483" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg></svg></g></svg>';
|
|
168
168
|
var tuiIconRefreshLarge = '<svg xmlns="http://www.w3.org/2000/svg" width="1.5em" height="1.5em" focusable="false"><g id="tuiIconRefreshLarge" 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="M23 4v6h-6" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M20.49 15a9 9 0 11-2.13-9.36L23 10" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg></svg></g></svg>';
|
|
169
169
|
var tuiIconRemoveLarge = '<svg xmlns="http://www.w3.org/2000/svg" width="1.5em" height="1.5em" focusable="false"><g id="tuiIconRemoveLarge" 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="M6.707 5.293a1 1 0 00-1.414 1.414L10.586 12l-5.293 5.293a1 1 0 101.414 1.414L12 13.414l5.293 5.293a1 1 0 001.414-1.414L13.414 12l5.293-5.293a1 1 0 00-1.414-1.414L12 10.586 6.707 5.293z" fill="currentColor"/></svg></svg></g></svg>';
|
|
170
|
+
var tuiIconRotate = '<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em"><g id="tuiIconRotate" xmlns="http://www.w3.org/2000/svg"><svg x="50%" y="50%" width="1em" height="1em" overflow="visible" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><svg x="-8" y="-8"><g clip-path="url(#clip0_29215:435606)"><path fill-rule="evenodd" clip-rule="evenodd" d="M14.036 9a.97.97 0 01-.965-.977v-2.4c0-.406-.156-.792-.43-1.074v-.001a1.425 1.425 0 00-1.017-.434H9.292l.404.486c.377.382.377 1 0 1.382a.955.955 0 01-1.364 0l-2.05-2.155a.987.987 0 010-1.382L8.332.286a.955.955 0 011.364 0c.377.382.377 1 0 1.382l-.404.49h2.334A3.352 3.352 0 0114.02 3.18c.63.653.981 1.531.981 2.444v2.4a.97.97 0 01-.964.977zM4 9h5v4H4V9zM2 9a2 2 0 012-2h5a2 2 0 012 2v4a2 2 0 01-2 2H4a2 2 0 01-2-2V9z" fill="currentColor"/></g><defs><clipPath id="clip0_29215:435606"><path fill="#fff" transform="translate(0 .002)" d="M0 0h16v16H0z"/></clipPath></defs></svg></svg></g></svg>';
|
|
170
171
|
var tuiIconSearch = '<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" focusable="false"><g id="tuiIconSearch" 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 12.667A5.333 5.333 0 107.333 2a5.333 5.333 0 000 10.667zM14 14l-2.9-2.9" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg></svg></g></svg>';
|
|
171
172
|
var tuiIconSearchLarge = '<svg xmlns="http://www.w3.org/2000/svg" width="1.5em" height="1.5em" focusable="false"><g id="tuiIconSearchLarge" 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="M10.5 17a6.5 6.5 0 100-13 6.5 6.5 0 000 13zm9.5 3l-4.35-4.35" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg></svg></g></svg>';
|
|
172
173
|
var tuiIconSettings = '<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" focusable="false"><g id="tuiIconSettings" 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"><g clip-path="url(#a)" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 10a2 2 0 100-4 2 2 0 000 4z"/><path d="M12.933 10a1.1 1.1 0 00.22 1.213l.04.04a1.333 1.333 0 11-1.886 1.887l-.04-.04a1.1 1.1 0 00-1.214-.22 1.1 1.1 0 00-.666 1.006V14a1.333 1.333 0 11-2.667 0v-.06A1.1 1.1 0 006 12.933a1.1 1.1 0 00-1.213.22l-.04.04a1.334 1.334 0 11-1.887-1.886l.04-.04a1.1 1.1 0 00.22-1.214 1.1 1.1 0 00-1.007-.667H2A1.333 1.333 0 112 6.72h.06A1.1 1.1 0 003.067 6a1.1 1.1 0 00-.22-1.213l-.04-.04A1.333 1.333 0 114.693 2.86l.04.04a1.1 1.1 0 001.214.22H6a1.1 1.1 0 00.667-1.007V2a1.333 1.333 0 112.666 0v.06A1.1 1.1 0 0010 3.066a1.1 1.1 0 001.213-.22l.04-.04a1.334 1.334 0 111.887 1.887l-.04.04a1.1 1.1 0 00-.22 1.214V6a1.1 1.1 0 001.007.667H14a1.333 1.333 0 010 2.666h-.06a1.1 1.1 0 00-1.007.667z"/></g></svg></svg></g></svg>';
|
|
@@ -260,5 +261,5 @@ var tuiKitIcons = __assign(__assign({}, tuiCoreIcons), { tuiIconAlertCircleLarge
|
|
|
260
261
|
* Generated bundle index. Do not edit.
|
|
261
262
|
*/
|
|
262
263
|
|
|
263
|
-
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, 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, 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 };
|
|
264
|
+
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, 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 };
|
|
264
265
|
//# sourceMappingURL=taiga-ui-icons.js.map
|