@updevs/icons 1.0.10 → 1.0.11
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/assets/hero-icons/icons.d.ts +4 -0
- package/assets/hero-icons/icons.type.d.ts +1 -0
- package/assets/tabler-icons/icons.d.ts +4 -0
- package/assets/tabler-icons/icons.type.d.ts +1 -0
- package/esm2022/assets/hero-icons/icons.mjs +3073 -0
- package/esm2022/assets/hero-icons/icons.type.mjs +2 -0
- package/esm2022/assets/tabler-icons/icons.mjs +3 -0
- package/esm2022/assets/tabler-icons/icons.type.mjs +2 -0
- package/esm2022/index.mjs +2 -0
- package/esm2022/lib/icon/base-icon.component.mjs +42 -0
- package/esm2022/lib/icon/hero-icon/hero-icon.component.mjs +46 -0
- package/esm2022/lib/icon/icon/icon.component.mjs +74 -0
- package/esm2022/lib/icon/models/content-icon.model.mjs +2 -0
- package/esm2022/lib/icon/models/icon.model.mjs +2 -0
- package/esm2022/lib/icon/tabler-icon/tabler-icon.component.mjs +61 -0
- package/esm2022/lib/icon/types/icon-library.type.mjs +2 -0
- package/esm2022/lib/icon/types/size.type.mjs +2 -0
- package/esm2022/lib/icon/types/structure.type.mjs +2 -0
- package/esm2022/lib/icon/types/weight.type.mjs +2 -0
- package/esm2022/lib/upd-icons.module.mjs +30 -0
- package/esm2022/public-api.mjs +12 -0
- package/esm2022/updevs-icons.mjs +5 -0
- package/fesm2022/updevs-icons.mjs +3322 -0
- package/fesm2022/updevs-icons.mjs.map +1 -0
- package/lib/icon/base-icon.component.d.ts +19 -0
- package/lib/icon/hero-icon/hero-icon.component.d.ts +14 -0
- package/lib/icon/icon/icon.component.d.ts +30 -0
- package/{src/lib/icon/models/content-icon.model.ts → lib/icon/models/content-icon.model.d.ts} +0 -2
- package/{src/lib/icon/models/icon.model.ts → lib/icon/models/icon.model.d.ts} +0 -1
- package/lib/icon/tabler-icon/tabler-icon.component.d.ts +15 -0
- package/lib/upd-icons.module.d.ts +10 -0
- package/package.json +27 -14
- package/{src/public-api.ts → public-api.d.ts} +0 -3
- package/.eslintrc.json +0 -43
- package/jest.config.ts +0 -22
- package/ng-package.json +0 -7
- package/project.json +0 -40
- package/src/assets/hero-icons/icons.ts +0 -3075
- package/src/assets/hero-icons/icons.type.ts +0 -2
- package/src/assets/hero-icons/v2.1.5.txt +0 -1
- package/src/assets/tabler-icons/icons.ts +0 -5
- package/src/assets/tabler-icons/icons.type.ts +0 -2
- package/src/assets/tabler-icons/v3.11.0.txt +0 -1
- package/src/lib/icon/base-icon.component.html +0 -3
- package/src/lib/icon/base-icon.component.ts +0 -32
- package/src/lib/icon/hero-icon/hero-icon.component.scss +0 -15
- package/src/lib/icon/hero-icon/hero-icon.component.spec.ts +0 -23
- package/src/lib/icon/hero-icon/hero-icon.component.ts +0 -45
- package/src/lib/icon/icon/icon.component.html +0 -13
- package/src/lib/icon/icon/icon.component.scss +0 -0
- package/src/lib/icon/icon/icon.component.spec.ts +0 -21
- package/src/lib/icon/icon/icon.component.ts +0 -60
- package/src/lib/icon/tabler-icon/tabler-icon.component.scss +0 -0
- package/src/lib/icon/tabler-icon/tabler-icon.component.spec.ts +0 -21
- package/src/lib/icon/tabler-icon/tabler-icon.component.ts +0 -58
- package/src/lib/upd-icons.module.ts +0 -21
- package/src/test-setup.ts +0 -8
- package/tsconfig.json +0 -29
- package/tsconfig.lib.json +0 -18
- package/tsconfig.lib.prod.json +0 -9
- package/tsconfig.spec.json +0 -16
- /package/{src/index.ts → index.d.ts} +0 -0
- /package/{src/lib/icon/types/icon-library.type.ts → lib/icon/types/icon-library.type.d.ts} +0 -0
- /package/{src/lib/icon/types/size.type.ts → lib/icon/types/size.type.d.ts} +0 -0
- /package/{src/lib/icon/types/structure.type.ts → lib/icon/types/structure.type.d.ts} +0 -0
- /package/{src/lib/icon/types/weight.type.ts → lib/icon/types/weight.type.d.ts} +0 -0
package/tsconfig.json
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "es2022",
|
|
4
|
-
"useDefineForClassFields": false,
|
|
5
|
-
"forceConsistentCasingInFileNames": true,
|
|
6
|
-
"strict": true,
|
|
7
|
-
"noImplicitOverride": true,
|
|
8
|
-
"noPropertyAccessFromIndexSignature": true,
|
|
9
|
-
"noImplicitReturns": true,
|
|
10
|
-
"noFallthroughCasesInSwitch": true
|
|
11
|
-
},
|
|
12
|
-
"files": [],
|
|
13
|
-
"include": [],
|
|
14
|
-
"references": [
|
|
15
|
-
{
|
|
16
|
-
"path": "./tsconfig.lib.json"
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"path": "./tsconfig.spec.json"
|
|
20
|
-
}
|
|
21
|
-
],
|
|
22
|
-
"extends": "../../tsconfig.base.json",
|
|
23
|
-
"angularCompilerOptions": {
|
|
24
|
-
"enableI18nLegacyMessageIdFormat": false,
|
|
25
|
-
"strictInjectionParameters": true,
|
|
26
|
-
"strictInputAccessModifiers": true,
|
|
27
|
-
"strictTemplates": true
|
|
28
|
-
}
|
|
29
|
-
}
|
package/tsconfig.lib.json
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "./tsconfig.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"outDir": "../../dist/out-tsc",
|
|
5
|
-
"declaration": true,
|
|
6
|
-
"declarationMap": true,
|
|
7
|
-
"inlineSources": true
|
|
8
|
-
},
|
|
9
|
-
"exclude": [
|
|
10
|
-
"src/**/*.spec.ts",
|
|
11
|
-
"src/test-setup.ts",
|
|
12
|
-
"jest.config.ts",
|
|
13
|
-
"src/**/*.test.ts"
|
|
14
|
-
],
|
|
15
|
-
"include": [
|
|
16
|
-
"*/**/*.ts"
|
|
17
|
-
]
|
|
18
|
-
}
|
package/tsconfig.lib.prod.json
DELETED
package/tsconfig.spec.json
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "./tsconfig.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"outDir": "../../dist/out-tsc",
|
|
5
|
-
"module": "commonjs",
|
|
6
|
-
"target": "es2016",
|
|
7
|
-
"types": ["jest", "node"]
|
|
8
|
-
},
|
|
9
|
-
"files": ["src/test-setup.ts"],
|
|
10
|
-
"include": [
|
|
11
|
-
"jest.config.ts",
|
|
12
|
-
"src/**/*.test.ts",
|
|
13
|
-
"src/**/*.spec.ts",
|
|
14
|
-
"src/**/*.d.ts"
|
|
15
|
-
]
|
|
16
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|