@anemona/aif-icons 0.0.10 → 0.0.12
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/fesm2022/anemona-aif-icons.mjs +2 -2
- package/fesm2022/anemona-aif-icons.mjs.map +1 -1
- package/package.json +22 -7
- package/src/{lib/style.css → style.css} +1 -0
- package/types/anemona-aif-icons.d.ts +1 -1
- /package/src/{lib/fonts → fonts}/aif.eot +0 -0
- /package/src/{lib/fonts → fonts}/aif.svg +0 -0
- /package/src/{lib/fonts → fonts}/aif.ttf +0 -0
- /package/src/{lib/fonts → fonts}/aif.woff +0 -0
- /package/src/{lib/meta.json → meta.json} +0 -0
|
@@ -5,11 +5,11 @@ class AiIconComponent {
|
|
|
5
5
|
icon = input('', ...(ngDevMode ? [{ debugName: "icon" }] : [])); // icon name
|
|
6
6
|
sz = input('', ...(ngDevMode ? [{ debugName: "sz" }] : [])); // size
|
|
7
7
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.1", ngImport: i0, type: AiIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
8
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.1", type: AiIconComponent, isStandalone: true, selector: "
|
|
8
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.1", type: AiIconComponent, isStandalone: true, selector: "aif-icon", inputs: { icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, sz: { classPropertyName: "sz", publicName: "sz", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `<i class="aif aif-{{ icon() }}-ico {{ sz() }}"></i>`, isInline: true, styles: [""] });
|
|
9
9
|
}
|
|
10
10
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.1", ngImport: i0, type: AiIconComponent, decorators: [{
|
|
11
11
|
type: Component,
|
|
12
|
-
args: [{ selector: '
|
|
12
|
+
args: [{ selector: 'aif-icon', template: `<i class="aif aif-{{ icon() }}-ico {{ sz() }}"></i>` }]
|
|
13
13
|
}], propDecorators: { icon: [{ type: i0.Input, args: [{ isSignal: true, alias: "icon", required: false }] }], sz: [{ type: i0.Input, args: [{ isSignal: true, alias: "sz", required: false }] }] } });
|
|
14
14
|
|
|
15
15
|
/*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"anemona-aif-icons.mjs","sources":["../../../projects/aif-icons/src/lib/aif-icon.component.ts","../../../projects/aif-icons/src/public-api.ts","../../../projects/aif-icons/src/anemona-aif-icons.ts"],"sourcesContent":["import { Component, input } from '@angular/core';\n\n@Component({\n
|
|
1
|
+
{"version":3,"file":"anemona-aif-icons.mjs","sources":["../../../projects/aif-icons/src/lib/aif-icon.component.ts","../../../projects/aif-icons/src/public-api.ts","../../../projects/aif-icons/src/anemona-aif-icons.ts"],"sourcesContent":["import { Component, input } from '@angular/core';\n\n@Component({\n selector: 'aif-icon',\n template: `<i class=\"aif aif-{{ icon() }}-ico {{ sz() }}\"></i>`,\n styles: ``,\n})\nexport class AiIconComponent {\n icon = input(''); // icon name\n sz = input(''); // size\n}\n","/*\n * Public API Surface of aif-icons\n */\n\nexport * from './lib/aif-icon.component';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;MAOa,eAAe,CAAA;AAC1B,IAAA,IAAI,GAAG,KAAK,CAAC,EAAE,EAAA,IAAA,SAAA,GAAA,CAAA,EAAA,SAAA,EAAA,MAAA,EAAA,CAAA,GAAA,EAAA,CAAA,CAAC,CAAC;AACjB,IAAA,EAAE,GAAG,KAAK,CAAC,EAAE,EAAA,IAAA,SAAA,GAAA,CAAA,EAAA,SAAA,EAAA,IAAA,EAAA,CAAA,GAAA,EAAA,CAAA,CAAC,CAAC;uGAFJ,eAAe,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAf,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,eAAe,oTAHhB,CAAA,mDAAA,CAAqD,EAAA,QAAA,EAAA,IAAA,EAAA,MAAA,EAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;2FAGpD,eAAe,EAAA,UAAA,EAAA,CAAA;kBAL3B,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,UAAU,YACV,CAAA,mDAAA,CAAqD,EAAA;;;ACJjE;;AAEG;;ACFH;;AAEG;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anemona/aif-icons",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"description": "Icon font y estilos base para AIF",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"icons",
|
|
@@ -16,15 +16,30 @@
|
|
|
16
16
|
"sideEffects": [
|
|
17
17
|
"./style.css"
|
|
18
18
|
],
|
|
19
|
-
"module": "fesm2022/anemona-aif-icons.mjs",
|
|
20
|
-
"typings": "types/anemona-aif-icons.d.ts",
|
|
21
19
|
"exports": {
|
|
22
|
-
"./package.json": {
|
|
23
|
-
"default": "./package.json"
|
|
24
|
-
},
|
|
25
20
|
".": {
|
|
26
21
|
"types": "./types/anemona-aif-icons.d.ts",
|
|
27
22
|
"default": "./fesm2022/anemona-aif-icons.mjs"
|
|
23
|
+
},
|
|
24
|
+
"./bundle": {
|
|
25
|
+
"default": "./src/style.css"
|
|
26
|
+
},
|
|
27
|
+
"./css": {
|
|
28
|
+
"default": "./src/style.css"
|
|
29
|
+
},
|
|
30
|
+
"./style.css": {
|
|
31
|
+
"default": "./src/style.css"
|
|
32
|
+
},
|
|
33
|
+
"./meta.json": {
|
|
34
|
+
"default": "./src/meta.json"
|
|
35
|
+
},
|
|
36
|
+
"./fonts/*": {
|
|
37
|
+
"default": "./src/fonts/*"
|
|
38
|
+
},
|
|
39
|
+
"./package.json": {
|
|
40
|
+
"default": "./package.json"
|
|
28
41
|
}
|
|
29
|
-
}
|
|
42
|
+
},
|
|
43
|
+
"module": "fesm2022/anemona-aif-icons.mjs",
|
|
44
|
+
"typings": "types/anemona-aif-icons.d.ts"
|
|
30
45
|
}
|
|
@@ -4,7 +4,7 @@ declare class AiIconComponent {
|
|
|
4
4
|
icon: _angular_core.InputSignal<string>;
|
|
5
5
|
sz: _angular_core.InputSignal<string>;
|
|
6
6
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AiIconComponent, never>;
|
|
7
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AiIconComponent, "
|
|
7
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AiIconComponent, "aif-icon", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "sz": { "alias": "sz"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
export { AiIconComponent };
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|