lucide-angular 0.78.0 → 0.79.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/bundles/lucide-angular-src-icons.umd.js +70 -1
- package/bundles/lucide-angular-src-icons.umd.js.map +1 -1
- package/bundles/lucide-angular-src-icons.umd.min.js +1 -1
- package/bundles/lucide-angular-src-icons.umd.min.js.map +1 -1
- package/bundles/lucide-angular.umd.js +75 -1
- package/bundles/lucide-angular.umd.js.map +1 -1
- package/bundles/lucide-angular.umd.min.js +1 -1
- package/bundles/lucide-angular.umd.min.js.map +1 -1
- package/esm2015/icons/bone.js +15 -0
- package/esm2015/icons/git-compare.js +13 -0
- package/esm2015/icons/git-pull-request-closed.js +15 -0
- package/esm2015/icons/git-pull-request-draft.js +14 -0
- package/esm2015/icons/index.js +6 -1
- package/esm2015/icons/tag.js +2 -2
- package/esm2015/icons/tags.js +17 -0
- package/esm2015/src/icons/bone.js +15 -0
- package/esm2015/src/icons/git-compare.js +13 -0
- package/esm2015/src/icons/git-pull-request-closed.js +15 -0
- package/esm2015/src/icons/git-pull-request-draft.js +14 -0
- package/esm2015/src/icons/index.js +6 -1
- package/esm2015/src/icons/tag.js +2 -2
- package/esm2015/src/icons/tags.js +17 -0
- package/fesm2015/lucide-angular-src-icons.js +66 -2
- package/fesm2015/lucide-angular-src-icons.js.map +1 -1
- package/fesm2015/lucide-angular.js +71 -2
- package/fesm2015/lucide-angular.js.map +1 -1
- package/icons/bone.d.ts +3 -0
- package/icons/git-compare.d.ts +3 -0
- package/icons/git-pull-request-closed.d.ts +3 -0
- package/icons/git-pull-request-draft.d.ts +3 -0
- package/icons/index.d.ts +5 -0
- package/icons/tags.d.ts +3 -0
- package/lucide-angular.metadata.json +1 -1
- package/package.json +1 -1
- package/src/icons/bone.d.ts +3 -0
- package/src/icons/git-compare.d.ts +3 -0
- package/src/icons/git-pull-request-closed.d.ts +3 -0
- package/src/icons/git-pull-request-draft.d.ts +3 -0
- package/src/icons/index.d.ts +5 -0
- package/src/icons/lucide-angular-src-icons.metadata.json +1 -1
- package/src/icons/tags.d.ts +3 -0
package/icons/bone.d.ts
ADDED
package/icons/index.d.ts
CHANGED
|
@@ -103,6 +103,7 @@ export { default as BluetoothSearching } from './bluetooth-searching';
|
|
|
103
103
|
export { default as Bluetooth } from './bluetooth';
|
|
104
104
|
export { default as Bold } from './bold';
|
|
105
105
|
export { default as Bomb } from './bomb';
|
|
106
|
+
export { default as Bone } from './bone';
|
|
106
107
|
export { default as BookOpen } from './book-open';
|
|
107
108
|
export { default as Book } from './book';
|
|
108
109
|
export { default as BookmarkMinus } from './bookmark-minus';
|
|
@@ -386,8 +387,11 @@ export { default as Gift } from './gift';
|
|
|
386
387
|
export { default as GitBranchPlus } from './git-branch-plus';
|
|
387
388
|
export { default as GitBranch } from './git-branch';
|
|
388
389
|
export { default as GitCommit } from './git-commit';
|
|
390
|
+
export { default as GitCompare } from './git-compare';
|
|
389
391
|
export { default as GitFork } from './git-fork';
|
|
390
392
|
export { default as GitMerge } from './git-merge';
|
|
393
|
+
export { default as GitPullRequestClosed } from './git-pull-request-closed';
|
|
394
|
+
export { default as GitPullRequestDraft } from './git-pull-request-draft';
|
|
391
395
|
export { default as GitPullRequest } from './git-pull-request';
|
|
392
396
|
export { default as Github } from './github';
|
|
393
397
|
export { default as Gitlab } from './gitlab';
|
|
@@ -703,6 +707,7 @@ export { default as Table2 } from './table-2';
|
|
|
703
707
|
export { default as Table } from './table';
|
|
704
708
|
export { default as Tablet } from './tablet';
|
|
705
709
|
export { default as Tag } from './tag';
|
|
710
|
+
export { default as Tags } from './tags';
|
|
706
711
|
export { default as Target } from './target';
|
|
707
712
|
export { default as Tent } from './tent';
|
|
708
713
|
export { default as TerminalSquare } from './terminal-square';
|
package/icons/tags.d.ts
ADDED