lucide-angular 0.92.0 → 0.93.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lucide-angular",
3
3
  "description": "A Lucide icon library package for Angular applications",
4
- "version": "0.92.0",
4
+ "version": "0.93.0",
5
5
  "author": "SMAH1",
6
6
  "license": "ISC",
7
7
  "homepage": "https://lucide.dev",
@@ -57,12 +57,11 @@
57
57
  "copy:license": "cp ../../LICENSE ./LICENSE",
58
58
  "clean": "rm -rf dist && rm -rf ./src/icons/*.ts",
59
59
  "build:icons": "node ../../scripts/buildIcons.mjs --output=./src --templateSrc=./scripts/exportTemplate.mjs --iconFileExtention=.ts --exportFileName=index.ts",
60
- "build:ng": "ng build --prod",
60
+ "build:ng": "ng build --configuration production",
61
61
  "test": "ng test --no-watch --no-progress --browsers=ChromeHeadlessCI",
62
62
  "test:watch": "ng test",
63
63
  "lint": "ng lint",
64
64
  "e2e": "ng e2e",
65
- "postinstall": "ngcc",
66
65
  "version": "pnpm version --git-tag-version=false"
67
66
  }
68
67
  }
@@ -0,0 +1,15 @@
1
+ import { IconData } from './types';
2
+ import defaultAttributes from './constants/default-attributes';
3
+
4
+ const Heading1: IconData = [
5
+ 'svg',
6
+ defaultAttributes,
7
+ [
8
+ ['path', { d: 'M4 12h8' }],
9
+ ['path', { d: 'M4 18V6' }],
10
+ ['path', { d: 'M12 18V6' }],
11
+ ['path', { d: 'm17 12 3-2v8' }],
12
+ ],
13
+ ];
14
+
15
+ export default Heading1;
@@ -0,0 +1,15 @@
1
+ import { IconData } from './types';
2
+ import defaultAttributes from './constants/default-attributes';
3
+
4
+ const Heading2: IconData = [
5
+ 'svg',
6
+ defaultAttributes,
7
+ [
8
+ ['path', { d: 'M4 12h8' }],
9
+ ['path', { d: 'M4 18V6' }],
10
+ ['path', { d: 'M12 18V6' }],
11
+ ['path', { d: 'M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1' }],
12
+ ],
13
+ ];
14
+
15
+ export default Heading2;
@@ -0,0 +1,16 @@
1
+ import { IconData } from './types';
2
+ import defaultAttributes from './constants/default-attributes';
3
+
4
+ const Heading3: IconData = [
5
+ 'svg',
6
+ defaultAttributes,
7
+ [
8
+ ['path', { d: 'M4 12h8' }],
9
+ ['path', { d: 'M4 18V6' }],
10
+ ['path', { d: 'M12 18V6' }],
11
+ ['path', { d: 'M17.5 10.5c1.7-1 3.5 0 3.5 1.5a2 2 0 0 1-2 2' }],
12
+ ['path', { d: 'M17 17.5c2 1.5 4 .3 4-1.5a2 2 0 0 0-2-2' }],
13
+ ],
14
+ ];
15
+
16
+ export default Heading3;
@@ -0,0 +1,16 @@
1
+ import { IconData } from './types';
2
+ import defaultAttributes from './constants/default-attributes';
3
+
4
+ const Heading4: IconData = [
5
+ 'svg',
6
+ defaultAttributes,
7
+ [
8
+ ['path', { d: 'M4 12h8' }],
9
+ ['path', { d: 'M4 18V6' }],
10
+ ['path', { d: 'M12 18V6' }],
11
+ ['path', { d: 'M17 10v4h4' }],
12
+ ['path', { d: 'M21 10v8' }],
13
+ ],
14
+ ];
15
+
16
+ export default Heading4;
@@ -0,0 +1,19 @@
1
+ import { IconData } from './types';
2
+ import defaultAttributes from './constants/default-attributes';
3
+
4
+ const Heading5: IconData = [
5
+ 'svg',
6
+ defaultAttributes,
7
+ [
8
+ ['path', { d: 'M4 12h8' }],
9
+ ['path', { d: 'M4 18V6' }],
10
+ ['path', { d: 'M12 18V6' }],
11
+ ['path', { d: 'M17 13v-3h4' }],
12
+ [
13
+ 'path',
14
+ { d: 'M17 17.7c.4.2.8.3 1.3.3 1.5 0 2.7-1.1 2.7-2.5S19.8 13 18.3 13H17' },
15
+ ],
16
+ ],
17
+ ];
18
+
19
+ export default Heading5;
@@ -0,0 +1,16 @@
1
+ import { IconData } from './types';
2
+ import defaultAttributes from './constants/default-attributes';
3
+
4
+ const Heading6: IconData = [
5
+ 'svg',
6
+ defaultAttributes,
7
+ [
8
+ ['path', { d: 'M4 12h8' }],
9
+ ['path', { d: 'M4 18V6' }],
10
+ ['path', { d: 'M12 18V6' }],
11
+ ['circle', { cx: '19', cy: '16', r: '2' }],
12
+ ['path', { d: 'M20 10c-2 2-3 3.5-3 6' }],
13
+ ],
14
+ ];
15
+
16
+ export default Heading6;
@@ -0,0 +1,14 @@
1
+ import { IconData } from './types';
2
+ import defaultAttributes from './constants/default-attributes';
3
+
4
+ const Heading: IconData = [
5
+ 'svg',
6
+ defaultAttributes,
7
+ [
8
+ ['path', { d: 'M6 12h12' }],
9
+ ['path', { d: 'M6 20V4' }],
10
+ ['path', { d: 'M18 20V4' }],
11
+ ],
12
+ ];
13
+
14
+ export default Heading;
@@ -427,6 +427,13 @@ export { default as HardDrive } from './hard-drive';
427
427
  export { default as HardHat } from './hard-hat';
428
428
  export { default as Hash } from './hash';
429
429
  export { default as Haze } from './haze';
430
+ export { default as Heading1 } from './heading-1';
431
+ export { default as Heading2 } from './heading-2';
432
+ export { default as Heading3 } from './heading-3';
433
+ export { default as Heading4 } from './heading-4';
434
+ export { default as Heading5 } from './heading-5';
435
+ export { default as Heading6 } from './heading-6';
436
+ export { default as Heading } from './heading';
430
437
  export { default as Headphones } from './headphones';
431
438
  export { default as HeartCrack } from './heart-crack';
432
439
  export { default as HeartHandshake } from './heart-handshake';
@@ -5,6 +5,7 @@
5
5
  "declarationMap": false
6
6
  },
7
7
  "angularCompilerOptions": {
8
- "enableIvy": false
8
+ "enableIvy": true,
9
+ "compilationMode": "partial"
9
10
  }
10
11
  }