lucide-angular 0.335.0 → 0.337.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/flower.mjs +13 -9
- package/esm2020/icons/lucide-icons.mjs +5 -1
- package/esm2020/icons/table-cells-merge.mjs +20 -0
- package/esm2020/icons/table-cells-split.mjs +19 -0
- package/esm2020/icons/table-columns-split.mjs +26 -0
- package/esm2020/icons/table-rows-split.mjs +26 -0
- package/esm2020/src/icons/aliases.mjs +13 -1
- package/esm2020/src/icons/icons/flower.mjs +13 -9
- package/esm2020/src/icons/icons/lucide-icons.mjs +5 -1
- package/esm2020/src/icons/icons/table-cells-merge.mjs +20 -0
- package/esm2020/src/icons/icons/table-cells-split.mjs +19 -0
- package/esm2020/src/icons/icons/table-columns-split.mjs +26 -0
- package/esm2020/src/icons/icons/table-rows-split.mjs +26 -0
- package/fesm2015/lucide-angular-src-icons.mjs +104 -9
- package/fesm2015/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2015/lucide-angular.mjs +104 -9
- package/fesm2015/lucide-angular.mjs.map +1 -1
- package/fesm2020/lucide-angular-src-icons.mjs +104 -9
- package/fesm2020/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2020/lucide-angular.mjs +104 -9
- package/fesm2020/lucide-angular.mjs.map +1 -1
- package/icons/flower.d.ts +1 -1
- package/icons/lucide-icons.d.ts +4 -0
- package/icons/table-cells-merge.d.ts +14 -0
- package/icons/table-cells-split.d.ts +14 -0
- package/icons/table-columns-split.d.ts +14 -0
- package/icons/table-rows-split.d.ts +14 -0
- package/package.json +1 -1
- package/src/icons/aliases.d.ts +8 -0
- package/src/icons/icons/flower.d.ts +1 -1
- package/src/icons/icons/lucide-icons.d.ts +4 -0
- package/src/icons/icons/table-cells-merge.d.ts +14 -0
- package/src/icons/icons/table-cells-split.d.ts +14 -0
- package/src/icons/icons/table-columns-split.d.ts +14 -0
- package/src/icons/icons/table-rows-split.d.ts +14 -0
package/icons/flower.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { LucideIconData } from './types';
|
|
|
3
3
|
* @component @name Flower
|
|
4
4
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
5
|
*
|
|
6
|
-
* @preview  - https://lucide.dev/icons/flower
|
|
7
7
|
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
8
|
*
|
|
9
9
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
package/icons/lucide-icons.d.ts
CHANGED
|
@@ -1262,7 +1262,11 @@ export { default as Sword } from './sword';
|
|
|
1262
1262
|
export { default as Swords } from './swords';
|
|
1263
1263
|
export { default as Syringe } from './syringe';
|
|
1264
1264
|
export { default as Table2 } from './table-2';
|
|
1265
|
+
export { default as TableCellsMerge } from './table-cells-merge';
|
|
1266
|
+
export { default as TableCellsSplit } from './table-cells-split';
|
|
1267
|
+
export { default as TableColumnsSplit } from './table-columns-split';
|
|
1265
1268
|
export { default as TableProperties } from './table-properties';
|
|
1269
|
+
export { default as TableRowsSplit } from './table-rows-split';
|
|
1266
1270
|
export { default as Table } from './table';
|
|
1267
1271
|
export { default as TabletSmartphone } from './tablet-smartphone';
|
|
1268
1272
|
export { default as Tablet } from './tablet';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { LucideIconData } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* @component @name TableCellsMerge
|
|
4
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
|
+
*
|
|
6
|
+
* @preview  - https://lucide.dev/icons/table-cells-merge
|
|
7
|
+
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
|
+
*
|
|
9
|
+
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
10
|
+
* @returns {FunctionalComponent} Vue component
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
declare const TableCellsMerge: LucideIconData;
|
|
14
|
+
export default TableCellsMerge;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { LucideIconData } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* @component @name TableCellsSplit
|
|
4
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
|
+
*
|
|
6
|
+
* @preview  - https://lucide.dev/icons/table-cells-split
|
|
7
|
+
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
|
+
*
|
|
9
|
+
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
10
|
+
* @returns {FunctionalComponent} Vue component
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
declare const TableCellsSplit: LucideIconData;
|
|
14
|
+
export default TableCellsSplit;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { LucideIconData } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* @component @name TableColumnsSplit
|
|
4
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
|
+
*
|
|
6
|
+
* @preview  - https://lucide.dev/icons/table-columns-split
|
|
7
|
+
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
|
+
*
|
|
9
|
+
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
10
|
+
* @returns {FunctionalComponent} Vue component
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
declare const TableColumnsSplit: LucideIconData;
|
|
14
|
+
export default TableColumnsSplit;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { LucideIconData } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* @component @name TableRowsSplit
|
|
4
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
|
+
*
|
|
6
|
+
* @preview  - https://lucide.dev/icons/table-rows-split
|
|
7
|
+
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
|
+
*
|
|
9
|
+
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
10
|
+
* @returns {FunctionalComponent} Vue component
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
declare const TableRowsSplit: LucideIconData;
|
|
14
|
+
export default TableRowsSplit;
|
package/package.json
CHANGED
package/src/icons/aliases.d.ts
CHANGED
|
@@ -2392,8 +2392,16 @@ export { default as SyringeIcon } from './icons/syringe';
|
|
|
2392
2392
|
export { default as LucideSyringe } from './icons/syringe';
|
|
2393
2393
|
export { default as Table2Icon } from './icons/table-2';
|
|
2394
2394
|
export { default as LucideTable2 } from './icons/table-2';
|
|
2395
|
+
export { default as TableCellsMergeIcon } from './icons/table-cells-merge';
|
|
2396
|
+
export { default as LucideTableCellsMerge } from './icons/table-cells-merge';
|
|
2397
|
+
export { default as TableCellsSplitIcon } from './icons/table-cells-split';
|
|
2398
|
+
export { default as LucideTableCellsSplit } from './icons/table-cells-split';
|
|
2399
|
+
export { default as TableColumnsSplitIcon } from './icons/table-columns-split';
|
|
2400
|
+
export { default as LucideTableColumnsSplit } from './icons/table-columns-split';
|
|
2395
2401
|
export { default as TablePropertiesIcon } from './icons/table-properties';
|
|
2396
2402
|
export { default as LucideTableProperties } from './icons/table-properties';
|
|
2403
|
+
export { default as TableRowsSplitIcon } from './icons/table-rows-split';
|
|
2404
|
+
export { default as LucideTableRowsSplit } from './icons/table-rows-split';
|
|
2397
2405
|
export { default as TableIcon } from './icons/table';
|
|
2398
2406
|
export { default as LucideTable } from './icons/table';
|
|
2399
2407
|
export { default as TabletSmartphoneIcon } from './icons/tablet-smartphone';
|
|
@@ -3,7 +3,7 @@ import { LucideIconData } from './types';
|
|
|
3
3
|
* @component @name Flower
|
|
4
4
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
5
|
*
|
|
6
|
-
* @preview  - https://lucide.dev/icons/flower
|
|
7
7
|
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
8
|
*
|
|
9
9
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
@@ -1262,7 +1262,11 @@ export { default as Sword } from './sword';
|
|
|
1262
1262
|
export { default as Swords } from './swords';
|
|
1263
1263
|
export { default as Syringe } from './syringe';
|
|
1264
1264
|
export { default as Table2 } from './table-2';
|
|
1265
|
+
export { default as TableCellsMerge } from './table-cells-merge';
|
|
1266
|
+
export { default as TableCellsSplit } from './table-cells-split';
|
|
1267
|
+
export { default as TableColumnsSplit } from './table-columns-split';
|
|
1265
1268
|
export { default as TableProperties } from './table-properties';
|
|
1269
|
+
export { default as TableRowsSplit } from './table-rows-split';
|
|
1266
1270
|
export { default as Table } from './table';
|
|
1267
1271
|
export { default as TabletSmartphone } from './tablet-smartphone';
|
|
1268
1272
|
export { default as Tablet } from './tablet';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { LucideIconData } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* @component @name TableCellsMerge
|
|
4
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
|
+
*
|
|
6
|
+
* @preview  - https://lucide.dev/icons/table-cells-merge
|
|
7
|
+
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
|
+
*
|
|
9
|
+
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
10
|
+
* @returns {FunctionalComponent} Vue component
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
declare const TableCellsMerge: LucideIconData;
|
|
14
|
+
export default TableCellsMerge;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { LucideIconData } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* @component @name TableCellsSplit
|
|
4
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
|
+
*
|
|
6
|
+
* @preview  - https://lucide.dev/icons/table-cells-split
|
|
7
|
+
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
|
+
*
|
|
9
|
+
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
10
|
+
* @returns {FunctionalComponent} Vue component
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
declare const TableCellsSplit: LucideIconData;
|
|
14
|
+
export default TableCellsSplit;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { LucideIconData } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* @component @name TableColumnsSplit
|
|
4
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
|
+
*
|
|
6
|
+
* @preview  - https://lucide.dev/icons/table-columns-split
|
|
7
|
+
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
|
+
*
|
|
9
|
+
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
10
|
+
* @returns {FunctionalComponent} Vue component
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
declare const TableColumnsSplit: LucideIconData;
|
|
14
|
+
export default TableColumnsSplit;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { LucideIconData } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* @component @name TableRowsSplit
|
|
4
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
|
+
*
|
|
6
|
+
* @preview  - https://lucide.dev/icons/table-rows-split
|
|
7
|
+
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
|
+
*
|
|
9
|
+
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
10
|
+
* @returns {FunctionalComponent} Vue component
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
declare const TableRowsSplit: LucideIconData;
|
|
14
|
+
export default TableRowsSplit;
|