lucide-angular 0.185.0 → 0.187.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 +7 -2
- package/esm2020/aliases.mjs +10 -4
- package/esm2020/icons/ligature.mjs +15 -0
- package/esm2020/icons/lucide-icons.mjs +3 -2
- package/esm2020/icons/text-select.mjs +25 -0
- package/esm2020/src/icons/aliases.mjs +10 -4
- package/esm2020/src/icons/icons/ligature.mjs +15 -0
- package/esm2020/src/icons/icons/lucide-icons.mjs +3 -2
- package/esm2020/{icons/text-selection.mjs → src/icons/icons/text-select.mjs} +3 -3
- package/fesm2015/lucide-angular-src-icons.mjs +17 -3
- package/fesm2015/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2015/lucide-angular.mjs +17 -3
- package/fesm2015/lucide-angular.mjs.map +1 -1
- package/fesm2020/lucide-angular-src-icons.mjs +17 -3
- package/fesm2020/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2020/lucide-angular.mjs +17 -3
- package/fesm2020/lucide-angular.mjs.map +1 -1
- package/icons/ligature.d.ts +3 -0
- package/icons/lucide-icons.d.ts +2 -1
- package/icons/text-select.d.ts +3 -0
- package/package.json +1 -1
- package/src/icons/aliases.d.ts +7 -2
- package/src/icons/icons/ligature.d.ts +3 -0
- package/src/icons/icons/lucide-icons.d.ts +2 -1
- package/src/icons/icons/text-select.d.ts +3 -0
- package/esm2020/src/icons/icons/text-selection.mjs +0 -25
- package/icons/text-selection.d.ts +0 -3
- package/src/icons/icons/text-selection.d.ts +0 -3
package/aliases.d.ts
CHANGED
|
@@ -1193,6 +1193,8 @@ export { default as LibraryIcon } from './icons/library';
|
|
|
1193
1193
|
export { default as LucideLibrary } from './icons/library';
|
|
1194
1194
|
export { default as LifeBuoyIcon } from './icons/life-buoy';
|
|
1195
1195
|
export { default as LucideLifeBuoy } from './icons/life-buoy';
|
|
1196
|
+
export { default as LigatureIcon } from './icons/ligature';
|
|
1197
|
+
export { default as LucideLigature } from './icons/ligature';
|
|
1196
1198
|
export { default as LightbulbOffIcon } from './icons/lightbulb-off';
|
|
1197
1199
|
export { default as LucideLightbulbOff } from './icons/lightbulb-off';
|
|
1198
1200
|
export { default as LightbulbIcon } from './icons/lightbulb';
|
|
@@ -1886,8 +1888,11 @@ export { default as TextCursorInputIcon } from './icons/text-cursor-input';
|
|
|
1886
1888
|
export { default as LucideTextCursorInput } from './icons/text-cursor-input';
|
|
1887
1889
|
export { default as TextCursorIcon } from './icons/text-cursor';
|
|
1888
1890
|
export { default as LucideTextCursor } from './icons/text-cursor';
|
|
1889
|
-
export { default as
|
|
1890
|
-
export { default as
|
|
1891
|
+
export { default as TextSelectIcon } from './icons/text-select';
|
|
1892
|
+
export { default as LucideTextSelect } from './icons/text-select';
|
|
1893
|
+
export { default as TextSelection } from './icons/text-select';
|
|
1894
|
+
export { default as TextSelectionIcon } from './icons/text-select';
|
|
1895
|
+
export { default as LucideTextSelection } from './icons/text-select';
|
|
1891
1896
|
export { default as TextIcon } from './icons/text';
|
|
1892
1897
|
export { default as LucideText } from './icons/text';
|
|
1893
1898
|
export { default as ThermometerSnowflakeIcon } from './icons/thermometer-snowflake';
|