lucide-angular 0.246.0 → 0.247.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 +6 -0
- package/esm2020/aliases.mjs +10 -1
- package/esm2020/icons/lucide-icons.mjs +4 -1
- 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 +10 -1
- package/esm2020/src/icons/icons/lucide-icons.mjs +4 -1
- 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 +54 -1
- package/fesm2015/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2015/lucide-angular.mjs +54 -1
- package/fesm2015/lucide-angular.mjs.map +1 -1
- package/fesm2020/lucide-angular-src-icons.mjs +54 -1
- package/fesm2020/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2020/lucide-angular.mjs +54 -1
- package/fesm2020/lucide-angular.mjs.map +1 -1
- package/icons/lucide-icons.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 +6 -0
- package/src/icons/icons/lucide-icons.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
|
@@ -2025,6 +2025,12 @@ export { default as SproutIcon } from './icons/sprout';
|
|
|
2025
2025
|
export { default as LucideSprout } from './icons/sprout';
|
|
2026
2026
|
export { default as SquareAsteriskIcon } from './icons/square-asterisk';
|
|
2027
2027
|
export { default as LucideSquareAsterisk } from './icons/square-asterisk';
|
|
2028
|
+
export { default as SquareCodeIcon } from './icons/square-code';
|
|
2029
|
+
export { default as LucideSquareCode } from './icons/square-code';
|
|
2030
|
+
export { default as SquareDashedBottomCodeIcon } from './icons/square-dashed-bottom-code';
|
|
2031
|
+
export { default as LucideSquareDashedBottomCode } from './icons/square-dashed-bottom-code';
|
|
2032
|
+
export { default as SquareDashedBottomIcon } from './icons/square-dashed-bottom';
|
|
2033
|
+
export { default as LucideSquareDashedBottom } from './icons/square-dashed-bottom';
|
|
2028
2034
|
export { default as SquareDotIcon } from './icons/square-dot';
|
|
2029
2035
|
export { default as LucideSquareDot } from './icons/square-dot';
|
|
2030
2036
|
export { default as SquareEqualIcon } from './icons/square-equal';
|