@taiga-ui/icons 2.24.0 → 2.27.1

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.
Files changed (47) hide show
  1. package/all.d.ts +181 -178
  2. package/bundles/taiga-ui-icons-scripts.umd.js +368 -0
  3. package/bundles/taiga-ui-icons-scripts.umd.js.map +1 -0
  4. package/bundles/taiga-ui-icons-scripts.umd.min.js +2 -0
  5. package/bundles/taiga-ui-icons-scripts.umd.min.js.map +1 -0
  6. package/bundles/taiga-ui-icons.umd.js +183 -177
  7. package/bundles/taiga-ui-icons.umd.js.map +1 -1
  8. package/bundles/taiga-ui-icons.umd.min.js +1 -1
  9. package/bundles/taiga-ui-icons.umd.min.js.map +1 -1
  10. package/esm2015/all.js +182 -179
  11. package/esm2015/scripts/convert-all-compile-file-to-all-file.js +48 -0
  12. package/esm2015/scripts/delete-all-to-compile-file.js +10 -0
  13. package/esm2015/scripts/index.js +6 -0
  14. package/esm2015/scripts/post-prettier-format.js +9 -0
  15. package/esm2015/scripts/prepare-all-to-compile-file.js +13 -0
  16. package/esm2015/scripts/rollup-svgo.js +32 -0
  17. package/esm2015/scripts/taiga-ui-icons-scripts.js +5 -0
  18. package/esm5/all.js +182 -179
  19. package/esm5/scripts/convert-all-compile-file-to-all-file.js +54 -0
  20. package/esm5/scripts/delete-all-to-compile-file.js +10 -0
  21. package/esm5/scripts/index.js +6 -0
  22. package/esm5/scripts/post-prettier-format.js +10 -0
  23. package/esm5/scripts/prepare-all-to-compile-file.js +25 -0
  24. package/esm5/scripts/rollup-svgo.js +44 -0
  25. package/esm5/scripts/taiga-ui-icons-scripts.js +5 -0
  26. package/fesm2015/taiga-ui-icons-scripts.js +115 -0
  27. package/fesm2015/taiga-ui-icons-scripts.js.map +1 -0
  28. package/fesm2015/taiga-ui-icons.js +181 -178
  29. package/fesm2015/taiga-ui-icons.js.map +1 -1
  30. package/fesm5/taiga-ui-icons-scripts.js +144 -0
  31. package/fesm5/taiga-ui-icons-scripts.js.map +1 -0
  32. package/fesm5/taiga-ui-icons.js +181 -178
  33. package/fesm5/taiga-ui-icons.js.map +1 -1
  34. package/package.json +1 -1
  35. package/scripts/convert-all-compile-file-to-all-file.d.ts +8 -0
  36. package/scripts/delete-all-to-compile-file.d.ts +1 -0
  37. package/scripts/index.d.ts +5 -0
  38. package/scripts/package.json +13 -0
  39. package/scripts/post-prettier-format.d.ts +1 -0
  40. package/scripts/prepare-all-to-compile-file.d.ts +1 -0
  41. package/scripts/rollup-svgo.d.ts +8 -0
  42. package/scripts/taiga-ui-icons-scripts.d.ts +4 -0
  43. package/scripts/taiga-ui-icons-scripts.metadata.json +1 -0
  44. package/src/tuiIconClose.svg +14 -0
  45. package/src/tuiIconRotate.svg +29 -0
  46. package/src/tuiIconSortOff.svg +24 -0
  47. package/taiga-ui-icons.metadata.json +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taiga-ui/icons",
3
- "version": "2.24.0",
3
+ "version": "2.27.1",
4
4
  "description": "Taiga UI icons pack",
5
5
  "keywords": [
6
6
  "angular",
@@ -0,0 +1,8 @@
1
+ import { RPT2Options } from 'rollup-plugin-typescript2';
2
+ interface Options {
3
+ prt2Options?: RPT2Options;
4
+ from: string;
5
+ to: string;
6
+ }
7
+ export declare function convertAllCompileFileToAllFile(config: Options): Promise<void>;
8
+ export {};
@@ -0,0 +1 @@
1
+ export declare function deleteAllToCompileFile(allToCompilePath: string | string[]): void;
@@ -0,0 +1,5 @@
1
+ export * from './convert-all-compile-file-to-all-file';
2
+ export * from './delete-all-to-compile-file';
3
+ export * from './post-prettier-format';
4
+ export * from './prepare-all-to-compile-file';
5
+ export * from './rollup-svgo';
@@ -0,0 +1,13 @@
1
+ {
2
+ "main": "../bundles/taiga-ui-icons-scripts.umd.js",
3
+ "module": "../fesm5/taiga-ui-icons-scripts.js",
4
+ "es2015": "../fesm2015/taiga-ui-icons-scripts.js",
5
+ "esm5": "../esm5/scripts/taiga-ui-icons-scripts.js",
6
+ "esm2015": "../esm2015/scripts/taiga-ui-icons-scripts.js",
7
+ "fesm5": "../fesm5/taiga-ui-icons-scripts.js",
8
+ "fesm2015": "../fesm2015/taiga-ui-icons-scripts.js",
9
+ "typings": "taiga-ui-icons-scripts.d.ts",
10
+ "metadata": "taiga-ui-icons-scripts.metadata.json",
11
+ "sideEffects": false,
12
+ "name": "@taiga-ui/icons/scripts"
13
+ }
@@ -0,0 +1 @@
1
+ export declare function postPrettierFormat(filePath: string, prettierConfig?: string): void;
@@ -0,0 +1 @@
1
+ export declare function prepareAllToCompileFile(iconsSrc: string, allToCompilePath: string): void;
@@ -0,0 +1,8 @@
1
+ import { Plugin } from 'rollup';
2
+ import { OptimizeOptions } from 'svgo';
3
+ export interface RollupSvgoConfig {
4
+ readonly include?: string;
5
+ readonly exclude?: string;
6
+ readonly options?: OptimizeOptions;
7
+ }
8
+ export declare function rollupSvgo({ include, exclude, options, }?: RollupSvgoConfig): Plugin;
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './index';
@@ -0,0 +1 @@
1
+ {"__symbolic":"module","version":4,"metadata":{"convertAllCompileFileToAllFile":{"__symbolic":"function"},"deleteAllToCompileFile":{"__symbolic":"function"},"postPrettierFormat":{"__symbolic":"function"},"prepareAllToCompileFile":{"__symbolic":"function"},"RollupSvgoConfig":{"__symbolic":"interface"},"rollupSvgo":{"__symbolic":"function"}},"origins":{"convertAllCompileFileToAllFile":"./convert-all-compile-file-to-all-file","deleteAllToCompileFile":"./delete-all-to-compile-file","postPrettierFormat":"./post-prettier-format","prepareAllToCompileFile":"./prepare-all-to-compile-file","RollupSvgoConfig":"./rollup-svgo","rollupSvgo":"./rollup-svgo"},"importAs":"@taiga-ui/icons/scripts"}
@@ -0,0 +1,14 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" focusable="false">
2
+ <g id="tuiIconClose" xmlns="http://www.w3.org/2000/svg">
3
+ <svg x="50%" y="50%" width="1em" height="1em" overflow="visible" viewBox="0 0 24 24" fill="none">
4
+ <svg x="-12" y="-12" xmlns="http://www.w3.org/2000/svg">
5
+ <path
6
+ fill-rule="evenodd"
7
+ clip-rule="evenodd"
8
+ d="M8.707 7.293a1 1 0 0 0-1.414 1.414L10.586 12l-3.293 3.293a1 1 0 1 0 1.414 1.414L12 13.414l3.293 3.293a1 1 0 0 0 1.414-1.414L13.414 12l3.293-3.293a1 1 0 0 0-1.414-1.414L12 10.586 8.707 7.293z"
9
+ fill="currentColor"
10
+ />
11
+ </svg>
12
+ </svg>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,29 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em">
2
+ <g id="tuiIconRotate" xmlns="http://www.w3.org/2000/svg">
3
+ <svg
4
+ x="50%"
5
+ y="50%"
6
+ width="1em"
7
+ height="1em"
8
+ overflow="visible"
9
+ viewBox="0 0 16 16"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ >
12
+ <svg x="-8" y="-8">
13
+ <g clip-path="url(#clip0_29215:435606)">
14
+ <path
15
+ fill-rule="evenodd"
16
+ clip-rule="evenodd"
17
+ d="M14.0357 9C13.5031 9 13.0714 8.56245 13.0714 8.0227V5.62343C13.0714 5.21727 12.9151 4.83143 12.6415 4.54875L12.6405 4.54777C12.508 4.41052 12.3498 4.30142 12.1752 4.22685C12.0008 4.15237 11.8135 4.11384 11.6242 4.11351H9.29239L9.69624 4.60025C10.0728 4.98191 10.0728 5.6007 9.69624 5.98236C9.31965 6.36401 8.70907 6.36401 8.33248 5.98236L6.28244 3.82727C5.90585 3.44561 5.90585 2.82682 6.28244 2.44516L8.33248 0.286244C8.70907 -0.0954148 9.31965 -0.0954148 9.69624 0.286245C10.0728 0.667903 10.0728 1.28669 9.69624 1.66835L9.2924 2.15891L11.6261 2.15891C12.072 2.1595 12.5133 2.25018 12.9241 2.42564C13.3348 2.60102 13.7069 2.85758 14.0186 3.18033C14.6492 3.8319 15 4.71047 15 5.62343V8.0227C15 8.56245 14.5683 9 14.0357 9ZM4 9H9V13H4L4 9ZM2 9C2 7.89543 2.89543 7 4 7H9C10.1046 7 11 7.89543 11 9V13C11 14.1046 10.1046 15 9 15H4C2.89543 15 2 14.1046 2 13V9Z"
18
+ fill="currentColor"
19
+ />
20
+ </g>
21
+ <defs>
22
+ <clipPath id="clip0_29215:435606">
23
+ <rect width="16" height="16" fill="white" transform="translate(0 0.00195312)" />
24
+ </clipPath>
25
+ </defs>
26
+ </svg>
27
+ </svg>
28
+ </g>
29
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em"><g
2
+ id="tuiIconSortOff"
3
+ xmlns="http://www.w3.org/2000/svg"
4
+ ><svg x="50%" y="50%" width="1em" height="1em" overflow="visible" viewBox="0 0 16 16"><svg x="-8" y="-8"><svg
5
+ width="16"
6
+ height="16"
7
+ viewBox="0 0 16 16"
8
+ fill="none"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ >
11
+ <path
12
+ fill-rule="evenodd"
13
+ clip-rule="evenodd"
14
+ d="M11.7071 4.87883C12.0976 5.26935 12.0976 5.90252 11.7071 6.29304C11.3166 6.68357 10.6834 6.68357 10.2929 6.29304L8 4.00015L5.70711 6.29304C5.31658 6.68357 4.68342 6.68357 4.29289 6.29304C3.90237 5.90252 3.90237 5.26935 4.29289 4.87883L6.58579 2.58594C7.36684 1.80489 8.63317 1.80489 9.41421 2.58594L11.7071 4.87883Z"
15
+ fill="currentColor"
16
+ />
17
+ <path
18
+ fill-rule="evenodd"
19
+ clip-rule="evenodd"
20
+ d="M4.29289 10.7071C3.90237 10.3166 3.90237 9.68342 4.29289 9.29289C4.68342 8.90237 5.31658 8.90237 5.70711 9.29289L8 11.5858L10.2929 9.29289C10.6834 8.90237 11.3166 8.90237 11.7071 9.29289C12.0976 9.68342 12.0976 10.3166 11.7071 10.7071L9.41421 13C8.63316 13.781 7.36683 13.781 6.58579 13L4.29289 10.7071Z"
21
+ fill="currentColor"
22
+ />
23
+ </svg>
24
+ </svg></svg></g></svg>