lucide-angular 0.235.0 → 0.236.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/circle-off.mjs +3 -15
- package/esm2020/icons/key-round.mjs +18 -0
- package/esm2020/icons/key-square.mjs +22 -0
- package/esm2020/icons/lucide-icons.mjs +3 -1
- package/esm2020/src/icons/aliases.mjs +7 -1
- package/esm2020/src/icons/icons/circle-off.mjs +3 -15
- package/esm2020/src/icons/icons/key-round.mjs +18 -0
- package/esm2020/src/icons/icons/key-square.mjs +22 -0
- package/esm2020/src/icons/icons/lucide-icons.mjs +3 -1
- package/fesm2015/lucide-angular-src-icons.mjs +41 -15
- package/fesm2015/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2015/lucide-angular.mjs +41 -15
- package/fesm2015/lucide-angular.mjs.map +1 -1
- package/fesm2020/lucide-angular-src-icons.mjs +41 -15
- package/fesm2020/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2020/lucide-angular.mjs +41 -15
- package/fesm2020/lucide-angular.mjs.map +1 -1
- package/icons/key-round.d.ts +3 -0
- package/icons/key-square.d.ts +3 -0
- package/icons/lucide-icons.d.ts +2 -0
- package/package.json +1 -1
- package/src/icons/aliases.d.ts +4 -0
- package/src/icons/icons/key-round.d.ts +3 -0
- package/src/icons/icons/key-square.d.ts +3 -0
- package/src/icons/icons/lucide-icons.d.ts +2 -0
package/aliases.d.ts
CHANGED
|
@@ -1223,6 +1223,10 @@ export { default as JapaneseYenIcon } from './icons/japanese-yen';
|
|
|
1223
1223
|
export { default as LucideJapaneseYen } from './icons/japanese-yen';
|
|
1224
1224
|
export { default as JoystickIcon } from './icons/joystick';
|
|
1225
1225
|
export { default as LucideJoystick } from './icons/joystick';
|
|
1226
|
+
export { default as KeyRoundIcon } from './icons/key-round';
|
|
1227
|
+
export { default as LucideKeyRound } from './icons/key-round';
|
|
1228
|
+
export { default as KeySquareIcon } from './icons/key-square';
|
|
1229
|
+
export { default as LucideKeySquare } from './icons/key-square';
|
|
1226
1230
|
export { default as KeyIcon } from './icons/key';
|
|
1227
1231
|
export { default as LucideKey } from './icons/key';
|
|
1228
1232
|
export { default as KeyboardIcon } from './icons/keyboard';
|