lucide-angular 0.234.0 → 0.235.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/aliases.d.ts +4 -0
- package/esm2020/aliases.mjs +7 -1
- package/esm2020/icons/file-stack.mjs +20 -0
- package/esm2020/icons/lucide-icons.mjs +3 -1
- package/esm2020/icons/square-stack.mjs +28 -0
- package/esm2020/src/icons/aliases.mjs +7 -1
- package/esm2020/src/icons/icons/file-stack.mjs +20 -0
- package/esm2020/src/icons/icons/lucide-icons.mjs +3 -1
- package/esm2020/src/icons/icons/square-stack.mjs +28 -0
- package/fesm2015/lucide-angular-src-icons.mjs +47 -1
- package/fesm2015/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2015/lucide-angular.mjs +47 -1
- package/fesm2015/lucide-angular.mjs.map +1 -1
- package/fesm2020/lucide-angular-src-icons.mjs +47 -1
- package/fesm2020/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2020/lucide-angular.mjs +47 -1
- package/fesm2020/lucide-angular.mjs.map +1 -1
- package/icons/file-stack.d.ts +3 -0
- package/icons/lucide-icons.d.ts +2 -0
- package/icons/square-stack.d.ts +3 -0
- package/package.json +1 -1
- package/src/icons/aliases.d.ts +4 -0
- package/src/icons/icons/file-stack.d.ts +3 -0
- package/src/icons/icons/lucide-icons.d.ts +2 -0
- package/src/icons/icons/square-stack.d.ts +3 -0
package/aliases.d.ts
CHANGED
|
@@ -913,6 +913,8 @@ export { default as FileSignatureIcon } from './icons/file-signature';
|
|
|
913
913
|
export { default as LucideFileSignature } from './icons/file-signature';
|
|
914
914
|
export { default as FileSpreadsheetIcon } from './icons/file-spreadsheet';
|
|
915
915
|
export { default as LucideFileSpreadsheet } from './icons/file-spreadsheet';
|
|
916
|
+
export { default as FileStackIcon } from './icons/file-stack';
|
|
917
|
+
export { default as LucideFileStack } from './icons/file-stack';
|
|
916
918
|
export { default as FileSymlinkIcon } from './icons/file-symlink';
|
|
917
919
|
export { default as LucideFileSymlink } from './icons/file-symlink';
|
|
918
920
|
export { default as FileTerminalIcon } from './icons/file-terminal';
|
|
@@ -1971,6 +1973,8 @@ export { default as SquareEqualIcon } from './icons/square-equal';
|
|
|
1971
1973
|
export { default as LucideSquareEqual } from './icons/square-equal';
|
|
1972
1974
|
export { default as SquareSlashIcon } from './icons/square-slash';
|
|
1973
1975
|
export { default as LucideSquareSlash } from './icons/square-slash';
|
|
1976
|
+
export { default as SquareStackIcon } from './icons/square-stack';
|
|
1977
|
+
export { default as LucideSquareStack } from './icons/square-stack';
|
|
1974
1978
|
export { default as SquareIcon } from './icons/square';
|
|
1975
1979
|
export { default as LucideSquare } from './icons/square';
|
|
1976
1980
|
export { default as SquirrelIcon } from './icons/squirrel';
|