lucide-angular 0.239.0 → 0.240.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 +8 -0
- package/esm2020/aliases.mjs +13 -1
- package/esm2020/icons/lucide-icons.mjs +5 -1
- package/esm2020/icons/search-check.mjs +13 -0
- package/esm2020/icons/search-code.mjs +14 -0
- package/esm2020/icons/search-slash.mjs +13 -0
- package/esm2020/icons/search-x.mjs +14 -0
- package/esm2020/icons/search.mjs +2 -2
- package/esm2020/src/icons/aliases.mjs +13 -1
- package/esm2020/src/icons/icons/lucide-icons.mjs +5 -1
- package/esm2020/src/icons/icons/search-check.mjs +13 -0
- package/esm2020/src/icons/icons/search-code.mjs +14 -0
- package/esm2020/src/icons/icons/search-slash.mjs +13 -0
- package/esm2020/src/icons/icons/search-x.mjs +14 -0
- package/esm2020/src/icons/icons/search.mjs +2 -2
- package/fesm2015/lucide-angular-src-icons.mjs +52 -2
- package/fesm2015/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2015/lucide-angular.mjs +52 -2
- package/fesm2015/lucide-angular.mjs.map +1 -1
- package/fesm2020/lucide-angular-src-icons.mjs +52 -2
- package/fesm2020/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2020/lucide-angular.mjs +52 -2
- package/fesm2020/lucide-angular.mjs.map +1 -1
- package/icons/lucide-icons.d.ts +4 -0
- package/icons/search-check.d.ts +3 -0
- package/icons/search-code.d.ts +3 -0
- package/icons/search-slash.d.ts +3 -0
- package/icons/search-x.d.ts +3 -0
- package/package.json +1 -1
- package/src/icons/aliases.d.ts +8 -0
- package/src/icons/icons/lucide-icons.d.ts +4 -0
- package/src/icons/icons/search-check.d.ts +3 -0
- package/src/icons/icons/search-code.d.ts +3 -0
- package/src/icons/icons/search-slash.d.ts +3 -0
- package/src/icons/icons/search-x.d.ts +3 -0
package/aliases.d.ts
CHANGED
|
@@ -1848,6 +1848,14 @@ export { default as ScrollTextIcon } from './icons/scroll-text';
|
|
|
1848
1848
|
export { default as LucideScrollText } from './icons/scroll-text';
|
|
1849
1849
|
export { default as ScrollIcon } from './icons/scroll';
|
|
1850
1850
|
export { default as LucideScroll } from './icons/scroll';
|
|
1851
|
+
export { default as SearchCheckIcon } from './icons/search-check';
|
|
1852
|
+
export { default as LucideSearchCheck } from './icons/search-check';
|
|
1853
|
+
export { default as SearchCodeIcon } from './icons/search-code';
|
|
1854
|
+
export { default as LucideSearchCode } from './icons/search-code';
|
|
1855
|
+
export { default as SearchSlashIcon } from './icons/search-slash';
|
|
1856
|
+
export { default as LucideSearchSlash } from './icons/search-slash';
|
|
1857
|
+
export { default as SearchXIcon } from './icons/search-x';
|
|
1858
|
+
export { default as LucideSearchX } from './icons/search-x';
|
|
1851
1859
|
export { default as SearchIcon } from './icons/search';
|
|
1852
1860
|
export { default as LucideSearch } from './icons/search';
|
|
1853
1861
|
export { default as SendIcon } from './icons/send';
|