lucide-angular 0.246.0 → 0.248.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/rainbow.mjs +13 -0
- package/esm2020/icons/square-code.mjs +16 -0
- package/esm2020/icons/square-dashed-bottom-code.mjs +21 -0
- package/esm2020/icons/square-dashed-bottom.mjs +19 -0
- package/esm2020/src/icons/aliases.mjs +13 -1
- package/esm2020/src/icons/icons/lucide-icons.mjs +5 -1
- package/esm2020/src/icons/icons/rainbow.mjs +13 -0
- package/esm2020/src/icons/icons/square-code.mjs +16 -0
- package/esm2020/src/icons/icons/square-dashed-bottom-code.mjs +21 -0
- package/esm2020/src/icons/icons/square-dashed-bottom.mjs +19 -0
- package/fesm2015/lucide-angular-src-icons.mjs +66 -1
- package/fesm2015/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2015/lucide-angular.mjs +66 -1
- package/fesm2015/lucide-angular.mjs.map +1 -1
- package/fesm2020/lucide-angular-src-icons.mjs +66 -1
- package/fesm2020/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2020/lucide-angular.mjs +66 -1
- package/fesm2020/lucide-angular.mjs.map +1 -1
- package/icons/lucide-icons.d.ts +4 -0
- package/icons/rainbow.d.ts +3 -0
- package/icons/square-code.d.ts +3 -0
- package/icons/square-dashed-bottom-code.d.ts +3 -0
- package/icons/square-dashed-bottom.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/rainbow.d.ts +3 -0
- package/src/icons/icons/square-code.d.ts +3 -0
- package/src/icons/icons/square-dashed-bottom-code.d.ts +3 -0
- package/src/icons/icons/square-dashed-bottom.d.ts +3 -0
package/aliases.d.ts
CHANGED
|
@@ -1772,6 +1772,8 @@ export { default as RadioTowerIcon } from './icons/radio-tower';
|
|
|
1772
1772
|
export { default as LucideRadioTower } from './icons/radio-tower';
|
|
1773
1773
|
export { default as RadioIcon } from './icons/radio';
|
|
1774
1774
|
export { default as LucideRadio } from './icons/radio';
|
|
1775
|
+
export { default as RainbowIcon } from './icons/rainbow';
|
|
1776
|
+
export { default as LucideRainbow } from './icons/rainbow';
|
|
1775
1777
|
export { default as RatIcon } from './icons/rat';
|
|
1776
1778
|
export { default as LucideRat } from './icons/rat';
|
|
1777
1779
|
export { default as ReceiptIcon } from './icons/receipt';
|
|
@@ -2025,6 +2027,12 @@ export { default as SproutIcon } from './icons/sprout';
|
|
|
2025
2027
|
export { default as LucideSprout } from './icons/sprout';
|
|
2026
2028
|
export { default as SquareAsteriskIcon } from './icons/square-asterisk';
|
|
2027
2029
|
export { default as LucideSquareAsterisk } from './icons/square-asterisk';
|
|
2030
|
+
export { default as SquareCodeIcon } from './icons/square-code';
|
|
2031
|
+
export { default as LucideSquareCode } from './icons/square-code';
|
|
2032
|
+
export { default as SquareDashedBottomCodeIcon } from './icons/square-dashed-bottom-code';
|
|
2033
|
+
export { default as LucideSquareDashedBottomCode } from './icons/square-dashed-bottom-code';
|
|
2034
|
+
export { default as SquareDashedBottomIcon } from './icons/square-dashed-bottom';
|
|
2035
|
+
export { default as LucideSquareDashedBottom } from './icons/square-dashed-bottom';
|
|
2028
2036
|
export { default as SquareDotIcon } from './icons/square-dot';
|
|
2029
2037
|
export { default as LucideSquareDot } from './icons/square-dot';
|
|
2030
2038
|
export { default as SquareEqualIcon } from './icons/square-equal';
|