monkey-style-guide 2.0.152 → 2.0.155
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/README.md +11 -4
- package/assets/icons/add-plus.svg +5 -0
- package/assets/icons/cash-banknote-invoice.svg +8 -0
- package/assets/icons/hands-clap.svg +10 -0
- package/assets/icons/more-circle.svg +5 -0
- package/assets/icons/phone-call.svg +4 -0
- package/assets/icons/pin-navigation.svg +5 -0
- package/assets/icons/user-group.svg +8 -0
- package/esm2020/lib/components/icon/icon-add-plus.component.mjs +15 -0
- package/esm2020/lib/components/icon/icon-cash-banknote-invoice.mjs +15 -0
- package/esm2020/lib/components/icon/icon-hands-clap.component.mjs +15 -0
- package/esm2020/lib/components/icon/icon-more-circle.component.mjs +15 -0
- package/esm2020/lib/components/icon/icon-phone-call.component.mjs +15 -0
- package/esm2020/lib/components/icon/icon-pin-navigation.component.mjs +15 -0
- package/esm2020/lib/components/icon/icon-user-group.component.mjs +15 -0
- package/esm2020/lib/components/icon/icon.component.mjs +187 -96
- package/esm2020/lib/components/icon/icon.module.mjs +22 -1
- package/esm2020/lib/components/icon/index.mjs +3 -1
- package/fesm2015/monkey-style-guide.mjs +191 -2
- package/fesm2015/monkey-style-guide.mjs.map +1 -1
- package/fesm2020/monkey-style-guide.mjs +191 -2
- package/fesm2020/monkey-style-guide.mjs.map +1 -1
- package/lib/components/icon/icon-add-plus.component.d.ts +7 -0
- package/lib/components/icon/icon-cash-banknote-invoice.d.ts +7 -0
- package/lib/components/icon/icon-hands-clap.component.d.ts +7 -0
- package/lib/components/icon/icon-more-circle.component.d.ts +7 -0
- package/lib/components/icon/icon-phone-call.component.d.ts +7 -0
- package/lib/components/icon/icon-pin-navigation.component.d.ts +7 -0
- package/lib/components/icon/icon-user-group.component.d.ts +7 -0
- package/lib/components/icon/icon.module.d.ts +101 -94
- package/lib/components/icon/index.d.ts +2 -0
- package/monkey-style-guide-2.0.155.tgz +0 -0
- package/package.json +1 -1
- package/monkey-style-guide-2.0.152.tgz +0 -0
|
@@ -751,6 +751,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
751
751
|
}]
|
|
752
752
|
}] });
|
|
753
753
|
|
|
754
|
+
class MonkeyIconAddPlusComponent {
|
|
755
|
+
}
|
|
756
|
+
MonkeyIconAddPlusComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconAddPlusComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
757
|
+
MonkeyIconAddPlusComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonkeyIconAddPlusComponent, selector: "monkey-icon-add-plus", inputs: { fillColor: "fillColor", size: "size" }, ngImport: i0, template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path d=\"M12 8V16\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M16 12H8\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 21V21C7.029 21 3 16.971 3 12V12C3 7.029 7.029 3 12 3V3C16.971 3 21 7.029 21 12V12C21 16.971 16.971 21 12 21Z\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] });
|
|
758
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconAddPlusComponent, decorators: [{
|
|
759
|
+
type: Component,
|
|
760
|
+
args: [{ selector: 'monkey-icon-add-plus', template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path d=\"M12 8V16\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M16 12H8\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 21V21C7.029 21 3 16.971 3 12V12C3 7.029 7.029 3 12 3V3C16.971 3 21 7.029 21 12V12C21 16.971 16.971 21 12 21Z\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] }]
|
|
761
|
+
}], propDecorators: { fillColor: [{
|
|
762
|
+
type: Input
|
|
763
|
+
}], size: [{
|
|
764
|
+
type: Input
|
|
765
|
+
}] } });
|
|
766
|
+
|
|
754
767
|
class MonkeyArrowsComponent {
|
|
755
768
|
}
|
|
756
769
|
MonkeyArrowsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyArrowsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -985,6 +998,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
985
998
|
type: Input
|
|
986
999
|
}] } });
|
|
987
1000
|
|
|
1001
|
+
class MonkeyIconCashBanknoteInvoiceComponent {
|
|
1002
|
+
}
|
|
1003
|
+
MonkeyIconCashBanknoteInvoiceComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconCashBanknoteInvoiceComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1004
|
+
MonkeyIconCashBanknoteInvoiceComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonkeyIconCashBanknoteInvoiceComponent, selector: "monkey-icon-cash-banknote-invoice", inputs: { fillColor: "fillColor", size: "size" }, ngImport: i0, template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<circle cx=\"16\" cy=\"16.5\" r=\"1.5\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M7 21H3C2.44772 21 2 20.5523 2 20V4.49752C2 4.11947 2.2132 3.77374 2.551 3.604L3.541 3.10648C3.82149 2.96552 4.15189 2.96446 4.43328 3.10361L6.00576 3.8812L7.54666 3.10713C7.82797 2.96581 8.1594 2.96521 8.44122 3.10551L10 3.88151L11.5588 3.10551C11.8406 2.96521 12.172 2.96581 12.4533 3.10713L13.9942 3.8812L15.5667 3.10361C15.8481 2.96446 16.1785 2.96552 16.459 3.10648L17.449 3.604C17.7868 3.77374 18 4.11947 18 4.49752L18 9\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M6 9H14.004\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M7 15H6\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M6.00395 12H6.99995\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<rect x=\"22\" y=\"21\" width=\"12\" height=\"9\" rx=\"2\" transform=\"rotate(-180 22 21)\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] });
|
|
1005
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconCashBanknoteInvoiceComponent, decorators: [{
|
|
1006
|
+
type: Component,
|
|
1007
|
+
args: [{ selector: 'monkey-icon-cash-banknote-invoice', template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<circle cx=\"16\" cy=\"16.5\" r=\"1.5\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M7 21H3C2.44772 21 2 20.5523 2 20V4.49752C2 4.11947 2.2132 3.77374 2.551 3.604L3.541 3.10648C3.82149 2.96552 4.15189 2.96446 4.43328 3.10361L6.00576 3.8812L7.54666 3.10713C7.82797 2.96581 8.1594 2.96521 8.44122 3.10551L10 3.88151L11.5588 3.10551C11.8406 2.96521 12.172 2.96581 12.4533 3.10713L13.9942 3.8812L15.5667 3.10361C15.8481 2.96446 16.1785 2.96552 16.459 3.10648L17.449 3.604C17.7868 3.77374 18 4.11947 18 4.49752L18 9\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M6 9H14.004\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M7 15H6\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M6.00395 12H6.99995\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<rect x=\"22\" y=\"21\" width=\"12\" height=\"9\" rx=\"2\" transform=\"rotate(-180 22 21)\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] }]
|
|
1008
|
+
}], propDecorators: { fillColor: [{
|
|
1009
|
+
type: Input
|
|
1010
|
+
}], size: [{
|
|
1011
|
+
type: Input
|
|
1012
|
+
}] } });
|
|
1013
|
+
|
|
988
1014
|
class MonkeyIconChatComponent {
|
|
989
1015
|
}
|
|
990
1016
|
MonkeyIconChatComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconChatComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1401,6 +1427,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1401
1427
|
type: Input
|
|
1402
1428
|
}] } });
|
|
1403
1429
|
|
|
1430
|
+
class MonkeyIconHandsClapComponent {
|
|
1431
|
+
}
|
|
1432
|
+
MonkeyIconHandsClapComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconHandsClapComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1433
|
+
MonkeyIconHandsClapComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonkeyIconHandsClapComponent, selector: "monkey-icon-hands-clap", inputs: { fillColor: "fillColor", size: "size" }, ngImport: i0, template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path d=\"M17.39 1.76L16.31 2.84\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M8.31 1.76L9.31 2.76\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M12.85 1V2.41\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M14.582 22.545C16.691 22.799 18.89 22.123 20.508 20.504V20.504C22.202 18.81 22.937 16.381 22.468 14.032L21.226 7.824C21.081 7.098 20.443 6.575 19.702 6.575V6.575C18.844 6.575 18.148 7.271 18.148 8.129V9.612\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M15.37 8.039L13.552 6.221C12.966 5.635 12.016 5.635 11.431 6.221V6.221C10.845 6.807 10.845 7.757 11.431 8.342\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M6.78199 7.937C6.19599 7.351 6.19599 6.401 6.78199 5.816V5.816C7.36799 5.23 8.31799 5.23 8.90299 5.816L12.792 9.705L14.913 11.826V9.137C14.913 8.279 15.609 7.583 16.467 7.583V7.583C17.208 7.583 17.846 8.106 17.991 8.832L19.11 14.429C19.58 16.778 18.845 19.207 17.15 20.901V20.901C14.352 23.699 9.81499 23.699 7.01699 20.901L4.30699 18.19L1.83199 15.715C1.24599 15.129 1.24599 14.179 1.83199 13.594V13.594C2.41799 13.008 3.36799 13.008 3.95299 13.594\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M7.13599 16.776L2.53999 12.18C1.95399 11.594 1.95399 10.644 2.53999 10.059V10.059C3.12599 9.473 4.07599 9.473 4.66099 10.059\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M9.257 14.654L3.247 8.644C2.661 8.058 2.661 7.108 3.247 6.523V6.523C3.833 5.937 4.783 5.937 5.368 6.523L11.378 12.533\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] });
|
|
1434
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconHandsClapComponent, decorators: [{
|
|
1435
|
+
type: Component,
|
|
1436
|
+
args: [{ selector: 'monkey-icon-hands-clap', template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path d=\"M17.39 1.76L16.31 2.84\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M8.31 1.76L9.31 2.76\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M12.85 1V2.41\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M14.582 22.545C16.691 22.799 18.89 22.123 20.508 20.504V20.504C22.202 18.81 22.937 16.381 22.468 14.032L21.226 7.824C21.081 7.098 20.443 6.575 19.702 6.575V6.575C18.844 6.575 18.148 7.271 18.148 8.129V9.612\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M15.37 8.039L13.552 6.221C12.966 5.635 12.016 5.635 11.431 6.221V6.221C10.845 6.807 10.845 7.757 11.431 8.342\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M6.78199 7.937C6.19599 7.351 6.19599 6.401 6.78199 5.816V5.816C7.36799 5.23 8.31799 5.23 8.90299 5.816L12.792 9.705L14.913 11.826V9.137C14.913 8.279 15.609 7.583 16.467 7.583V7.583C17.208 7.583 17.846 8.106 17.991 8.832L19.11 14.429C19.58 16.778 18.845 19.207 17.15 20.901V20.901C14.352 23.699 9.81499 23.699 7.01699 20.901L4.30699 18.19L1.83199 15.715C1.24599 15.129 1.24599 14.179 1.83199 13.594V13.594C2.41799 13.008 3.36799 13.008 3.95299 13.594\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M7.13599 16.776L2.53999 12.18C1.95399 11.594 1.95399 10.644 2.53999 10.059V10.059C3.12599 9.473 4.07599 9.473 4.66099 10.059\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M9.257 14.654L3.247 8.644C2.661 8.058 2.661 7.108 3.247 6.523V6.523C3.833 5.937 4.783 5.937 5.368 6.523L11.378 12.533\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] }]
|
|
1437
|
+
}], propDecorators: { fillColor: [{
|
|
1438
|
+
type: Input
|
|
1439
|
+
}], size: [{
|
|
1440
|
+
type: Input
|
|
1441
|
+
}] } });
|
|
1442
|
+
|
|
1404
1443
|
class MonkeyIconHelpComponent {
|
|
1405
1444
|
}
|
|
1406
1445
|
MonkeyIconHelpComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconHelpComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1609,6 +1648,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1609
1648
|
type: Input
|
|
1610
1649
|
}] } });
|
|
1611
1650
|
|
|
1651
|
+
class MonkeyIconMoreCircleComponent {
|
|
1652
|
+
}
|
|
1653
|
+
MonkeyIconMoreCircleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconMoreCircleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1654
|
+
MonkeyIconMoreCircleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonkeyIconMoreCircleComponent, selector: "monkey-icon-more-circle", inputs: { fillColor: "fillColor", size: "size" }, ngImport: i0, template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path d=\"M12 8V16\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M16 12H8\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 21V21C7.029 21 3 16.971 3 12V12C3 7.029 7.029 3 12 3V3C16.971 3 21 7.029 21 12V12C21 16.971 16.971 21 12 21Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] });
|
|
1655
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconMoreCircleComponent, decorators: [{
|
|
1656
|
+
type: Component,
|
|
1657
|
+
args: [{ selector: 'monkey-icon-more-circle', template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path d=\"M12 8V16\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M16 12H8\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 21V21C7.029 21 3 16.971 3 12V12C3 7.029 7.029 3 12 3V3C16.971 3 21 7.029 21 12V12C21 16.971 16.971 21 12 21Z\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] }]
|
|
1658
|
+
}], propDecorators: { fillColor: [{
|
|
1659
|
+
type: Input
|
|
1660
|
+
}], size: [{
|
|
1661
|
+
type: Input
|
|
1662
|
+
}] } });
|
|
1663
|
+
|
|
1612
1664
|
class MonkeyIconMoreComponent {
|
|
1613
1665
|
}
|
|
1614
1666
|
MonkeyIconMoreComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconMoreComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1661,6 +1713,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1661
1713
|
type: Input
|
|
1662
1714
|
}] } });
|
|
1663
1715
|
|
|
1716
|
+
class MonkeyIconPinNavigationComponent {
|
|
1717
|
+
}
|
|
1718
|
+
MonkeyIconPinNavigationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconPinNavigationComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1719
|
+
MonkeyIconPinNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonkeyIconPinNavigationComponent, selector: "monkey-icon-pin-navigation", inputs: { fillColor: "fillColor", size: "size" }, ngImport: i0, template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path d=\"M15.049 15H17.558C18.419 15 19.183 15.551 19.455 16.368L20.122 18.368C20.554 19.663 19.59 21 18.225 21H5.775C4.41 21 3.446 19.663 3.878 18.368L4.545 16.368C4.816 15.551 5.581 15 6.442 15H8.952\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 18C12 18 6 13.208 6 8.833C6 5.612 8.686 3 12 3C15.314 3 18 5.612 18 8.833C18 13.208 12 18 12 18Z\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M13.4142 7.58579C14.1953 8.36684 14.1953 9.63317 13.4142 10.4142C12.6332 11.1953 11.3668 11.1953 10.5858 10.4142C9.80472 9.63317 9.80472 8.36684 10.5858 7.58579C11.3668 6.80474 12.6332 6.80474 13.4142 7.58579\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] });
|
|
1720
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconPinNavigationComponent, decorators: [{
|
|
1721
|
+
type: Component,
|
|
1722
|
+
args: [{ selector: 'monkey-icon-pin-navigation', template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path d=\"M15.049 15H17.558C18.419 15 19.183 15.551 19.455 16.368L20.122 18.368C20.554 19.663 19.59 21 18.225 21H5.775C4.41 21 3.446 19.663 3.878 18.368L4.545 16.368C4.816 15.551 5.581 15 6.442 15H8.952\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 18C12 18 6 13.208 6 8.833C6 5.612 8.686 3 12 3C15.314 3 18 5.612 18 8.833C18 13.208 12 18 12 18Z\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M13.4142 7.58579C14.1953 8.36684 14.1953 9.63317 13.4142 10.4142C12.6332 11.1953 11.3668 11.1953 10.5858 10.4142C9.80472 9.63317 9.80472 8.36684 10.5858 7.58579C11.3668 6.80474 12.6332 6.80474 13.4142 7.58579\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] }]
|
|
1723
|
+
}], propDecorators: { fillColor: [{
|
|
1724
|
+
type: Input
|
|
1725
|
+
}], size: [{
|
|
1726
|
+
type: Input
|
|
1727
|
+
}] } });
|
|
1728
|
+
|
|
1664
1729
|
class MonkeyIconPeopleComponent {
|
|
1665
1730
|
}
|
|
1666
1731
|
MonkeyIconPeopleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconPeopleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1726,6 +1791,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1726
1791
|
type: Input
|
|
1727
1792
|
}] } });
|
|
1728
1793
|
|
|
1794
|
+
class MonkeyIconPhoneCallComponent {
|
|
1795
|
+
}
|
|
1796
|
+
MonkeyIconPhoneCallComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconPhoneCallComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1797
|
+
MonkeyIconPhoneCallComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonkeyIconPhoneCallComponent, selector: "monkey-icon-phone-call", inputs: { fillColor: "fillColor", size: "size" }, ngImport: i0, template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.131 13.869C8.961 12.699 8.079 11.389 7.493 10.06C7.37 9.779 7.442 9.45 7.659 9.233L8.478 8.414C9.149 7.743 9.149 6.794 8.563 6.208L7.39 5.035C6.609 4.254 5.343 4.254 4.562 5.035L3.91 5.686C3.169 6.427 2.86 7.496 3.06 8.556C3.554 11.169 5.072 14.03 7.521 16.479C9.97 18.928 12.831 20.446 15.444 20.94C16.504 21.14 17.573 20.831 18.314 20.09L18.965 19.439C19.746 18.658 19.746 17.392 18.965 16.611L17.792 15.438C17.206 14.852 16.256 14.852 15.671 15.438L14.768 16.342C14.551 16.559 14.222 16.632 13.941 16.508C12.612 15.921 11.301 15.038 10.131 13.869Z\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.832 2.671C20.129 2.671 21 3.849 21 4.947C21 7.176 17.386 9 17.321 9C17.255 9 13.642 7.176 13.642 4.947C13.642 3.849 14.513 2.67 15.81 2.67C16.552 2.67 17.039 3.028 17.321 3.347C17.603 3.029 18.09 2.671 18.832 2.671Z\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] });
|
|
1798
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconPhoneCallComponent, decorators: [{
|
|
1799
|
+
type: Component,
|
|
1800
|
+
args: [{ selector: 'monkey-icon-phone-call', template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.131 13.869C8.961 12.699 8.079 11.389 7.493 10.06C7.37 9.779 7.442 9.45 7.659 9.233L8.478 8.414C9.149 7.743 9.149 6.794 8.563 6.208L7.39 5.035C6.609 4.254 5.343 4.254 4.562 5.035L3.91 5.686C3.169 6.427 2.86 7.496 3.06 8.556C3.554 11.169 5.072 14.03 7.521 16.479C9.97 18.928 12.831 20.446 15.444 20.94C16.504 21.14 17.573 20.831 18.314 20.09L18.965 19.439C19.746 18.658 19.746 17.392 18.965 16.611L17.792 15.438C17.206 14.852 16.256 14.852 15.671 15.438L14.768 16.342C14.551 16.559 14.222 16.632 13.941 16.508C12.612 15.921 11.301 15.038 10.131 13.869Z\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.832 2.671C20.129 2.671 21 3.849 21 4.947C21 7.176 17.386 9 17.321 9C17.255 9 13.642 7.176 13.642 4.947C13.642 3.849 14.513 2.67 15.81 2.67C16.552 2.67 17.039 3.028 17.321 3.347C17.603 3.029 18.09 2.671 18.832 2.671Z\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] }]
|
|
1801
|
+
}], propDecorators: { fillColor: [{
|
|
1802
|
+
type: Input
|
|
1803
|
+
}], size: [{
|
|
1804
|
+
type: Input
|
|
1805
|
+
}] } });
|
|
1806
|
+
|
|
1729
1807
|
class MonkeyIconPorkComponent {
|
|
1730
1808
|
}
|
|
1731
1809
|
MonkeyIconPorkComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconPorkComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1921,6 +1999,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1921
1999
|
type: Input
|
|
1922
2000
|
}] } });
|
|
1923
2001
|
|
|
2002
|
+
class MonkeyIconUserGroupComponent {
|
|
2003
|
+
}
|
|
2004
|
+
MonkeyIconUserGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconUserGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2005
|
+
MonkeyIconUserGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonkeyIconUserGroupComponent, selector: "monkey-icon-user-group", inputs: { fillColor: "fillColor", size: "size" }, ngImport: i0, template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path d=\"M20.7925 9.52352C21.5825 10.3136 21.5825 11.5944 20.7925 12.3845C20.0025 13.1745 18.7216 13.1745 17.9315 12.3845C17.1415 11.5944 17.1415 10.3136 17.9315 9.52352C18.7216 8.73349 20.0025 8.73349 20.7925 9.52352\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M14.2026 5.91236C15.4191 7.12884 15.4191 9.10115 14.2026 10.3176C12.9861 11.5341 11.0138 11.5341 9.79731 10.3176C8.58083 9.10116 8.58083 7.12885 9.79731 5.91236C11.0138 4.69588 12.9861 4.69588 14.2026 5.91236\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M6.06849 9.52352C6.85853 10.3136 6.85853 11.5944 6.06849 12.3845C5.27846 13.1745 3.99757 13.1745 3.20754 12.3845C2.41751 11.5944 2.41751 10.3136 3.20754 9.52352C3.99758 8.73349 5.27846 8.73349 6.06849 9.52352\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M23 19V17.904C23 16.523 21.881 15.404 20.5 15.404H19.699\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M1 19V17.904C1 16.523 2.119 15.404 3.5 15.404H4.301\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M17.339 19V17.399C17.339 15.466 15.772 13.899 13.839 13.899H10.16C8.227 13.899 6.66 15.466 6.66 17.399V19\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] });
|
|
2006
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconUserGroupComponent, decorators: [{
|
|
2007
|
+
type: Component,
|
|
2008
|
+
args: [{ selector: 'monkey-icon-user-group', template: "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" [attr.height]=\"size\" [attr.width]=\"size\">\n<path d=\"M20.7925 9.52352C21.5825 10.3136 21.5825 11.5944 20.7925 12.3845C20.0025 13.1745 18.7216 13.1745 17.9315 12.3845C17.1415 11.5944 17.1415 10.3136 17.9315 9.52352C18.7216 8.73349 20.0025 8.73349 20.7925 9.52352\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M14.2026 5.91236C15.4191 7.12884 15.4191 9.10115 14.2026 10.3176C12.9861 11.5341 11.0138 11.5341 9.79731 10.3176C8.58083 9.10116 8.58083 7.12885 9.79731 5.91236C11.0138 4.69588 12.9861 4.69588 14.2026 5.91236\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M6.06849 9.52352C6.85853 10.3136 6.85853 11.5944 6.06849 12.3845C5.27846 13.1745 3.99757 13.1745 3.20754 12.3845C2.41751 11.5944 2.41751 10.3136 3.20754 9.52352C3.99758 8.73349 5.27846 8.73349 6.06849 9.52352\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M23 19V17.904C23 16.523 21.881 15.404 20.5 15.404H19.699\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M1 19V17.904C1 16.523 2.119 15.404 3.5 15.404H4.301\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n<path d=\"M17.339 19V17.399C17.339 15.466 15.772 13.899 13.839 13.899H10.16C8.227 13.899 6.66 15.466 6.66 17.399V19\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" [attr.stroke]=\"fillColor\"/>\n</svg>\n", styles: [":host{display:flex}\n"] }]
|
|
2009
|
+
}], propDecorators: { fillColor: [{
|
|
2010
|
+
type: Input
|
|
2011
|
+
}], size: [{
|
|
2012
|
+
type: Input
|
|
2013
|
+
}] } });
|
|
2014
|
+
|
|
1924
2015
|
class MonkeyIconWaitingComponent {
|
|
1925
2016
|
}
|
|
1926
2017
|
MonkeyIconWaitingComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconWaitingComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -2024,6 +2115,12 @@ class MonkeyIconComponent {
|
|
|
2024
2115
|
}
|
|
2025
2116
|
MonkeyIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconComponent, deps: [{ token: MonkeyStyleGuideSettingsService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2026
2117
|
MonkeyIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: MonkeyIconComponent, selector: "monkey-icon", inputs: { icon: "icon", color: "color", contrast: "contrast", disabled: "disabled" }, host: { listeners: { "click": "onClick($event)" } }, usesOnChanges: true, ngImport: i0, template: `
|
|
2118
|
+
<monkey-icon-add-plus
|
|
2119
|
+
[fillColor]="_fillColor"
|
|
2120
|
+
[id]="_id"
|
|
2121
|
+
[size]="_size"
|
|
2122
|
+
*ngIf="_icon === 'add-plus'"
|
|
2123
|
+
></monkey-icon-add-plus>
|
|
2027
2124
|
<monkey-icon-arrows
|
|
2028
2125
|
[fillColor]="_fillColor"
|
|
2029
2126
|
[id]="_id"
|
|
@@ -2132,6 +2229,12 @@ MonkeyIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
2132
2229
|
[size]="_size"
|
|
2133
2230
|
*ngIf="_icon === 'card-machine'"
|
|
2134
2231
|
></monkey-icon-card-machine>
|
|
2232
|
+
<monkey-icon-cash-banknote-invoice
|
|
2233
|
+
[fillColor]="_fillColor"
|
|
2234
|
+
[id]="_id"
|
|
2235
|
+
[size]="_size"
|
|
2236
|
+
*ngIf="_icon === 'cash-banknote-invoice'"
|
|
2237
|
+
></monkey-icon-cash-banknote-invoice>
|
|
2135
2238
|
<monkey-icon-chat
|
|
2136
2239
|
[fillColor]="_fillColor"
|
|
2137
2240
|
[id]="_id"
|
|
@@ -2324,6 +2427,12 @@ MonkeyIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
2324
2427
|
[size]="_size"
|
|
2325
2428
|
*ngIf="_icon === 'grid'"
|
|
2326
2429
|
></monkey-icon-grid>
|
|
2430
|
+
<monkey-icon-hands-clap
|
|
2431
|
+
[fillColor]="_fillColor"
|
|
2432
|
+
[id]="_id"
|
|
2433
|
+
[size]="_size"
|
|
2434
|
+
*ngIf="_icon === 'hands-clap'"
|
|
2435
|
+
></monkey-icon-hands-clap>
|
|
2327
2436
|
<monkey-icon-help
|
|
2328
2437
|
[fillColor]="_fillColor"
|
|
2329
2438
|
[id]="_id"
|
|
@@ -2420,6 +2529,12 @@ MonkeyIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
2420
2529
|
[size]="_size"
|
|
2421
2530
|
*ngIf="_icon === 'money-sign'"
|
|
2422
2531
|
></monkey-icon-money-sign>
|
|
2532
|
+
<monkey-icon-more-circle
|
|
2533
|
+
[fillColor]="_fillColor"
|
|
2534
|
+
[id]="_id"
|
|
2535
|
+
[size]="_size"
|
|
2536
|
+
*ngIf="_icon === 'more-circle'"
|
|
2537
|
+
></monkey-icon-more-circle>
|
|
2423
2538
|
<monkey-icon-more
|
|
2424
2539
|
[fillColor]="_fillColor"
|
|
2425
2540
|
[id]="_id"
|
|
@@ -2444,6 +2559,12 @@ MonkeyIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
2444
2559
|
[size]="_size"
|
|
2445
2560
|
*ngIf="_icon === 'password'"
|
|
2446
2561
|
></monkey-icon-password>
|
|
2562
|
+
<monkey-icon-pin-navigation
|
|
2563
|
+
[fillColor]="_fillColor"
|
|
2564
|
+
[id]="_id"
|
|
2565
|
+
[size]="_size"
|
|
2566
|
+
*ngIf="_icon === 'pin-navigation'"
|
|
2567
|
+
></monkey-icon-pin-navigation>
|
|
2447
2568
|
<monkey-icon-people
|
|
2448
2569
|
[fillColor]="_fillColor"
|
|
2449
2570
|
[id]="_id"
|
|
@@ -2474,6 +2595,12 @@ MonkeyIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
2474
2595
|
[size]="_size"
|
|
2475
2596
|
*ngIf="_icon === 'phone'"
|
|
2476
2597
|
></monkey-icon-phone>
|
|
2598
|
+
<monkey-icon-phone-call
|
|
2599
|
+
[fillColor]="_fillColor"
|
|
2600
|
+
[id]="_id"
|
|
2601
|
+
[size]="_size"
|
|
2602
|
+
*ngIf="_icon === 'phone-call'"
|
|
2603
|
+
></monkey-icon-phone-call>
|
|
2477
2604
|
<monkey-icon-pork
|
|
2478
2605
|
[fillColor]="_fillColor"
|
|
2479
2606
|
[id]="_id"
|
|
@@ -2564,6 +2691,12 @@ MonkeyIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
2564
2691
|
[size]="_size"
|
|
2565
2692
|
*ngIf="_icon === 'user'"
|
|
2566
2693
|
></monkey-icon-user>
|
|
2694
|
+
<monkey-icon-user-group
|
|
2695
|
+
[fillColor]="_fillColor"
|
|
2696
|
+
[id]="_id"
|
|
2697
|
+
[size]="_size"
|
|
2698
|
+
*ngIf="_icon === 'user-group'"
|
|
2699
|
+
></monkey-icon-user-group>
|
|
2567
2700
|
<monkey-icon-waiting
|
|
2568
2701
|
[fillColor]="_fillColor"
|
|
2569
2702
|
[id]="_id"
|
|
@@ -2582,12 +2715,18 @@ MonkeyIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
2582
2715
|
[size]="_size"
|
|
2583
2716
|
*ngIf="_icon === 'warning'"
|
|
2584
2717
|
></monkey-icon-warning>
|
|
2585
|
-
`, isInline: true, components: [{ type: MonkeyArrowsComponent, selector: "monkey-icon-arrows", inputs: ["fillColor", "size"] }, { type: MonkeyIconArrowDownComponent, selector: "monkey-icon-arrow-down", inputs: ["fillColor", "size"] }, { type: MonkeyIconArrowLeftComponent, selector: "monkey-icon-arrow-left", inputs: ["fillColor", "size"] }, { type: MonkeyIconArrowRightComponent, selector: "monkey-icon-arrow-right", inputs: ["fillColor", "size"] }, { type: MonkeyIconArrowLineRightComponent, selector: "monkey-icon-arrow-line-right", inputs: ["fillColor", "size"] }, { type: MonkeyIconArrowUpComponent, selector: "monkey-icon-arrow-up", inputs: ["fillColor", "size"] }, { type: MonkeyIconAuctionComponent, selector: "monkey-icon-auction", inputs: ["fillColor", "size"] }, { type: MonkeyIconBankComponent, selector: "monkey-icon-bank", inputs: ["fillColor", "size"] }, { type: MonkeyBankAccountComponent, selector: "monkey-icon-bank-account", inputs: ["fillColor", "size"] }, { type: MonkeyIconBankNoteSearchComponent, selector: "monkey-icon-banknote-search", inputs: ["fillColor", "size"] }, { type: MonkeyIconBellComponent, selector: "monkey-icon-bell", inputs: ["fillColor", "size"] }, { type: MonkeyIconBookComponent, selector: "monkey-icon-book", inputs: ["fillColor", "size"] }, { type: MonkeyIconBoxComponent, selector: "monkey-icon-box", inputs: ["fillColor", "size"] }, { type: MonkeyIconBuildPersonComponent, selector: "monkey-icon-build-person", inputs: ["fillColor", "size"] }, { type: MonkeyIconCalendarComponent, selector: "monkey-icon-calendar", inputs: ["fillColor", "size"] }, { type: MonkeyIconCameraComponent, selector: "monkey-icon-camera", inputs: ["fillColor", "size"] }, { type: MonkeyIconCardComponent, selector: "monkey-icon-card", inputs: ["fillColor", "size"] }, { type: MonkeyIconCardMachineComponent, selector: "monkey-icon-card-machine", inputs: ["fillColor", "size"] }, { type: MonkeyIconChatComponent, selector: "monkey-icon-chat", inputs: ["fillColor", "size"] }, { type: MonkeyIconCheckCircleOutComponent, selector: "monkey-icon-check-circle-out", inputs: ["fillColor", "size"] }, { type: MonkeyIconCheckCircleComponent, selector: "monkey-icon-check-circle", inputs: ["fillColor", "size"] }, { type: MonkeyIconCheckGreyComponent, selector: "monkey-icon-check-grey", inputs: ["fillColor", "size"] }, { type: MonkeyIconCheckWhiteComponent, selector: "monkey-icon-check-white", inputs: ["fillColor", "size"] }, { type: MonkeyIconCheckComponent, selector: "monkey-icon-check", inputs: ["fillColor", "size"] }, { type: MonkeyIconClipboardComponent, selector: "monkey-icon-clipboard", inputs: ["fillColor", "size"] }, { type: MonkeyIconClockComponent, selector: "monkey-icon-clock", inputs: ["fillColor", "size"] }, { type: MonkeyIconCloseComponent, selector: "monkey-icon-close", inputs: ["fillColor", "size"] }, { type: MonkeyIconCNPJComponent, selector: "monkey-icon-cnpj", inputs: ["fillColor", "size"] }, { type: MonkeyIconCodepenComponent, selector: "monkey-icon-codepen", inputs: ["fillColor", "size"] }, { type: MonkeyIconCompanyNameComponent, selector: "monkey-icon-company-name", inputs: ["fillColor", "size"] }, { type: MonkeyIconContractComponent, selector: "monkey-icon-contract", inputs: ["fillColor", "size"] }, { type: MonkeyIconContractPenComponent, selector: "monkey-icon-contract-pen", inputs: ["fillColor", "size"] }, { type: MonkeyIconDeleteComponent, selector: "monkey-icon-delete", inputs: ["fillColor", "size"] }, { type: MonkeyIconDocumentComponent, selector: "monkey-icon-document", inputs: ["fillColor", "size"] }, { type: MonkeyIconDollarSignComponent, selector: "monkey-icon-dollar-sign", inputs: ["fillColor", "size"] }, { type: MonkeyIconDollarSignCircleComponent, selector: "monkey-icon-dollar-sign-circle", inputs: ["fillColor", "size"] }, { type: MonkeyIconDomainComponent, selector: "monkey-icon-domain", inputs: ["fillColor", "size"] }, { type: MonkeyIconDotsMenuComponent, selector: "monkey-icon-dots-menu", inputs: ["fillColor", "size"] }, { type: MonkeyIconDoubleArrowLeftComponent, selector: "monkey-icon-double-arrow-left", inputs: ["fillColor", "size"] }, { type: MonkeyIconDoubleArrowRightComponent, selector: "monkey-icon-double-arrow-right", inputs: ["fillColor", "size"] }, { type: MonkeyIconDownloadComponent, selector: "monkey-icon-download", inputs: ["fillColor", "size"] }, { type: MonkeyIconEditSquareComponent, selector: "monkey-icon-edit-square", inputs: ["fillColor", "size"] }, { type: MonkeyIconEditComponent, selector: "monkey-icon-edit", inputs: ["fillColor", "size"] }, { type: MonkeyIconEmailComponent, selector: "monkey-icon-email", inputs: ["fillColor", "size"] }, { type: MonkeyIconEmptyDocComponent, selector: "monkey-icon-empty-doc", inputs: ["fillColor", "size"] }, { type: MonkeyIconErrorComponent, selector: "monkey-icon-error", inputs: ["fillColor", "size"] }, { type: MonkeyIconEyeClosedComponent, selector: "monkey-icon-eye-closed", inputs: ["fillColor", "size"] }, { type: MonkeyIconEyeOpenComponent, selector: "monkey-icon-eye-open", inputs: ["fillColor", "size"] }, { type: MonkeyIconFilterComponent, selector: "monkey-icon-filter", inputs: ["fillColor", "size"] }, { type: MonkeyIconGridComponent, selector: "monkey-icon-grid", inputs: ["fillColor", "size"] }, { type: MonkeyIconHelpComponent, selector: "monkey-icon-help", inputs: ["fillColor", "size"] }, { type: MonkeyIconHexagonComponent, selector: "monkey-icon-hexagon", inputs: ["fillColor", "size"] }, { type: MonkeyIconHomeComponent, selector: "monkey-icon-home", inputs: ["fillColor", "size"] }, { type: MonkeyIconInfoComponent, selector: "monkey-icon-info", inputs: ["fillColor", "size"] }, { type: MonkeyIconInvoiceComponent, selector: "monkey-icon-invoice", inputs: ["fillColor", "size"] }, { type: MonkeyIconImageComponent, selector: "monkey-icon-image", inputs: ["fillColor", "size"] }, { type: MonkeyIconListComponent, selector: "monkey-icon-list", inputs: ["fillColor", "size"] }, { type: MonkeyIconLocationPinComponent, selector: "monkey-icon-location-pin", inputs: ["fillColor", "size"] }, { type: MonkeyIconLoginComponent, selector: "monkey-icon-login", inputs: ["fillColor", "size"] }, { type: MonkeyIconLogoutComponent, selector: "monkey-icon-logout", inputs: ["fillColor", "size"] }, { type: MonkeyIconMedalComponent, selector: "monkey-icon-medal", inputs: ["fillColor", "size"] }, { type: MonkeyIconMenuComponent, selector: "monkey-icon-menu", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoneyComponent, selector: "monkey-icon-money", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoneyCeduleComponent, selector: "monkey-icon-money-cedule", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoneyHandComponent, selector: "monkey-icon-money-hand", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoneySignComponent, selector: "monkey-icon-money-sign", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoreComponent, selector: "monkey-icon-more", inputs: ["fillColor", "size"] }, { type: MonkeyIconNewCompanyComponent, selector: "monkey-icon-new-company", inputs: ["fillColor", "size"] }, { type: MonkeyIconOfferedComponent, selector: "monkey-icon-offered", inputs: ["fillColor", "size"] }, { type: MonkeyIconPasswordComponent, selector: "monkey-icon-password", inputs: ["fillColor", "size"] }, { type: MonkeyIconPeopleComponent, selector: "monkey-icon-people", inputs: ["fillColor", "size"] }, { type: MonkeyIconPercentComponent, selector: "monkey-icon-percent", inputs: ["fillColor", "size"] }, { type: MonkeyIconPersonDocumentComponent, selector: "monkey-icon-person-document", inputs: ["fillColor", "size"] }, { type: MonkeyIconPersonSadComponent, selector: "monkey-icon-person-sad", inputs: ["fillColor", "size"] }, { type: MonkeyIconPhoneComponent, selector: "monkey-icon-phone", inputs: ["fillColor", "size"] }, { type: MonkeyIconPorkComponent, selector: "monkey-icon-pork", inputs: ["fillColor", "size"] }, { type: MonkeyIconRadioComponent, selector: "monkey-icon-radio", inputs: ["fillColor", "size"] }, { type: MonkeyIconRefreshComponent, selector: "monkey-icon-refresh", inputs: ["fillColor", "size"] }, { type: MonkeyIconRepeatComponent, selector: "monkey-icon-repeat", inputs: ["fillColor", "size"] }, { type: MonkeyIconSearchComponent, selector: "monkey-icon-search", inputs: ["fillColor", "size"] }, { type: MonkeyIconSecondWarningComponent, selector: "monkey-icon-second-warning", inputs: ["fillColor", "size"] }, { type: MonkeyIconSettingsComponent, selector: "monkey-icon-settings", inputs: ["fillColor", "size"] }, { type: MonkeyIconShieldChekmarkComponent, selector: "monkey-icon-shield-chekmark", inputs: ["fillColor", "size"] }, { type: MonkeyIconStarComponent, selector: "monkey-icon-star", inputs: ["fillColor", "size"] }, { type: MonkeyIconTodayComponent, selector: "monkey-icon-today", inputs: ["fillColor", "size"] }, { type: MonkeyIconTrashComponent, selector: "monkey-icon-trash", inputs: ["fillColor", "size"] }, { type: MonkeyIconTrophyComponent, selector: "monkey-icon-trophy", inputs: ["fillColor", "size"] }, { type: MonkeyIconUnfoldMoreComponent, selector: "monkey-icon-unfold-more", inputs: ["fillColor", "size"] }, { type: MonkeyIconUploadComponent, selector: "monkey-icon-upload", inputs: ["fillColor", "size"] }, { type: MonkeyIconUserComponent, selector: "monkey-icon-user", inputs: ["fillColor", "size"] }, { type: MonkeyIconWaitingComponent, selector: "monkey-icon-waiting", inputs: ["fillColor", "size"] }, { type: MonkeyIconWalletComponent, selector: "monkey-icon-wallet", inputs: ["fillColor", "size"] }, { type: MonkeyIconWarningComponent, selector: "monkey-icon-warning", inputs: ["fillColor", "size"] }], directives: [{ type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
2718
|
+
`, isInline: true, components: [{ type: MonkeyIconAddPlusComponent, selector: "monkey-icon-add-plus", inputs: ["fillColor", "size"] }, { type: MonkeyArrowsComponent, selector: "monkey-icon-arrows", inputs: ["fillColor", "size"] }, { type: MonkeyIconArrowDownComponent, selector: "monkey-icon-arrow-down", inputs: ["fillColor", "size"] }, { type: MonkeyIconArrowLeftComponent, selector: "monkey-icon-arrow-left", inputs: ["fillColor", "size"] }, { type: MonkeyIconArrowRightComponent, selector: "monkey-icon-arrow-right", inputs: ["fillColor", "size"] }, { type: MonkeyIconArrowLineRightComponent, selector: "monkey-icon-arrow-line-right", inputs: ["fillColor", "size"] }, { type: MonkeyIconArrowUpComponent, selector: "monkey-icon-arrow-up", inputs: ["fillColor", "size"] }, { type: MonkeyIconAuctionComponent, selector: "monkey-icon-auction", inputs: ["fillColor", "size"] }, { type: MonkeyIconBankComponent, selector: "monkey-icon-bank", inputs: ["fillColor", "size"] }, { type: MonkeyBankAccountComponent, selector: "monkey-icon-bank-account", inputs: ["fillColor", "size"] }, { type: MonkeyIconBankNoteSearchComponent, selector: "monkey-icon-banknote-search", inputs: ["fillColor", "size"] }, { type: MonkeyIconBellComponent, selector: "monkey-icon-bell", inputs: ["fillColor", "size"] }, { type: MonkeyIconBookComponent, selector: "monkey-icon-book", inputs: ["fillColor", "size"] }, { type: MonkeyIconBoxComponent, selector: "monkey-icon-box", inputs: ["fillColor", "size"] }, { type: MonkeyIconBuildPersonComponent, selector: "monkey-icon-build-person", inputs: ["fillColor", "size"] }, { type: MonkeyIconCalendarComponent, selector: "monkey-icon-calendar", inputs: ["fillColor", "size"] }, { type: MonkeyIconCameraComponent, selector: "monkey-icon-camera", inputs: ["fillColor", "size"] }, { type: MonkeyIconCardComponent, selector: "monkey-icon-card", inputs: ["fillColor", "size"] }, { type: MonkeyIconCardMachineComponent, selector: "monkey-icon-card-machine", inputs: ["fillColor", "size"] }, { type: MonkeyIconCashBanknoteInvoiceComponent, selector: "monkey-icon-cash-banknote-invoice", inputs: ["fillColor", "size"] }, { type: MonkeyIconChatComponent, selector: "monkey-icon-chat", inputs: ["fillColor", "size"] }, { type: MonkeyIconCheckCircleOutComponent, selector: "monkey-icon-check-circle-out", inputs: ["fillColor", "size"] }, { type: MonkeyIconCheckCircleComponent, selector: "monkey-icon-check-circle", inputs: ["fillColor", "size"] }, { type: MonkeyIconCheckGreyComponent, selector: "monkey-icon-check-grey", inputs: ["fillColor", "size"] }, { type: MonkeyIconCheckWhiteComponent, selector: "monkey-icon-check-white", inputs: ["fillColor", "size"] }, { type: MonkeyIconCheckComponent, selector: "monkey-icon-check", inputs: ["fillColor", "size"] }, { type: MonkeyIconClipboardComponent, selector: "monkey-icon-clipboard", inputs: ["fillColor", "size"] }, { type: MonkeyIconClockComponent, selector: "monkey-icon-clock", inputs: ["fillColor", "size"] }, { type: MonkeyIconCloseComponent, selector: "monkey-icon-close", inputs: ["fillColor", "size"] }, { type: MonkeyIconCNPJComponent, selector: "monkey-icon-cnpj", inputs: ["fillColor", "size"] }, { type: MonkeyIconCodepenComponent, selector: "monkey-icon-codepen", inputs: ["fillColor", "size"] }, { type: MonkeyIconCompanyNameComponent, selector: "monkey-icon-company-name", inputs: ["fillColor", "size"] }, { type: MonkeyIconContractComponent, selector: "monkey-icon-contract", inputs: ["fillColor", "size"] }, { type: MonkeyIconContractPenComponent, selector: "monkey-icon-contract-pen", inputs: ["fillColor", "size"] }, { type: MonkeyIconDeleteComponent, selector: "monkey-icon-delete", inputs: ["fillColor", "size"] }, { type: MonkeyIconDocumentComponent, selector: "monkey-icon-document", inputs: ["fillColor", "size"] }, { type: MonkeyIconDollarSignComponent, selector: "monkey-icon-dollar-sign", inputs: ["fillColor", "size"] }, { type: MonkeyIconDollarSignCircleComponent, selector: "monkey-icon-dollar-sign-circle", inputs: ["fillColor", "size"] }, { type: MonkeyIconDomainComponent, selector: "monkey-icon-domain", inputs: ["fillColor", "size"] }, { type: MonkeyIconDotsMenuComponent, selector: "monkey-icon-dots-menu", inputs: ["fillColor", "size"] }, { type: MonkeyIconDoubleArrowLeftComponent, selector: "monkey-icon-double-arrow-left", inputs: ["fillColor", "size"] }, { type: MonkeyIconDoubleArrowRightComponent, selector: "monkey-icon-double-arrow-right", inputs: ["fillColor", "size"] }, { type: MonkeyIconDownloadComponent, selector: "monkey-icon-download", inputs: ["fillColor", "size"] }, { type: MonkeyIconEditSquareComponent, selector: "monkey-icon-edit-square", inputs: ["fillColor", "size"] }, { type: MonkeyIconEditComponent, selector: "monkey-icon-edit", inputs: ["fillColor", "size"] }, { type: MonkeyIconEmailComponent, selector: "monkey-icon-email", inputs: ["fillColor", "size"] }, { type: MonkeyIconEmptyDocComponent, selector: "monkey-icon-empty-doc", inputs: ["fillColor", "size"] }, { type: MonkeyIconErrorComponent, selector: "monkey-icon-error", inputs: ["fillColor", "size"] }, { type: MonkeyIconEyeClosedComponent, selector: "monkey-icon-eye-closed", inputs: ["fillColor", "size"] }, { type: MonkeyIconEyeOpenComponent, selector: "monkey-icon-eye-open", inputs: ["fillColor", "size"] }, { type: MonkeyIconFilterComponent, selector: "monkey-icon-filter", inputs: ["fillColor", "size"] }, { type: MonkeyIconGridComponent, selector: "monkey-icon-grid", inputs: ["fillColor", "size"] }, { type: MonkeyIconHandsClapComponent, selector: "monkey-icon-hands-clap", inputs: ["fillColor", "size"] }, { type: MonkeyIconHelpComponent, selector: "monkey-icon-help", inputs: ["fillColor", "size"] }, { type: MonkeyIconHexagonComponent, selector: "monkey-icon-hexagon", inputs: ["fillColor", "size"] }, { type: MonkeyIconHomeComponent, selector: "monkey-icon-home", inputs: ["fillColor", "size"] }, { type: MonkeyIconInfoComponent, selector: "monkey-icon-info", inputs: ["fillColor", "size"] }, { type: MonkeyIconInvoiceComponent, selector: "monkey-icon-invoice", inputs: ["fillColor", "size"] }, { type: MonkeyIconImageComponent, selector: "monkey-icon-image", inputs: ["fillColor", "size"] }, { type: MonkeyIconListComponent, selector: "monkey-icon-list", inputs: ["fillColor", "size"] }, { type: MonkeyIconLocationPinComponent, selector: "monkey-icon-location-pin", inputs: ["fillColor", "size"] }, { type: MonkeyIconLoginComponent, selector: "monkey-icon-login", inputs: ["fillColor", "size"] }, { type: MonkeyIconLogoutComponent, selector: "monkey-icon-logout", inputs: ["fillColor", "size"] }, { type: MonkeyIconMedalComponent, selector: "monkey-icon-medal", inputs: ["fillColor", "size"] }, { type: MonkeyIconMenuComponent, selector: "monkey-icon-menu", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoneyComponent, selector: "monkey-icon-money", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoneyCeduleComponent, selector: "monkey-icon-money-cedule", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoneyHandComponent, selector: "monkey-icon-money-hand", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoneySignComponent, selector: "monkey-icon-money-sign", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoreCircleComponent, selector: "monkey-icon-more-circle", inputs: ["fillColor", "size"] }, { type: MonkeyIconMoreComponent, selector: "monkey-icon-more", inputs: ["fillColor", "size"] }, { type: MonkeyIconNewCompanyComponent, selector: "monkey-icon-new-company", inputs: ["fillColor", "size"] }, { type: MonkeyIconOfferedComponent, selector: "monkey-icon-offered", inputs: ["fillColor", "size"] }, { type: MonkeyIconPasswordComponent, selector: "monkey-icon-password", inputs: ["fillColor", "size"] }, { type: MonkeyIconPinNavigationComponent, selector: "monkey-icon-pin-navigation", inputs: ["fillColor", "size"] }, { type: MonkeyIconPeopleComponent, selector: "monkey-icon-people", inputs: ["fillColor", "size"] }, { type: MonkeyIconPercentComponent, selector: "monkey-icon-percent", inputs: ["fillColor", "size"] }, { type: MonkeyIconPersonDocumentComponent, selector: "monkey-icon-person-document", inputs: ["fillColor", "size"] }, { type: MonkeyIconPersonSadComponent, selector: "monkey-icon-person-sad", inputs: ["fillColor", "size"] }, { type: MonkeyIconPhoneComponent, selector: "monkey-icon-phone", inputs: ["fillColor", "size"] }, { type: MonkeyIconPhoneCallComponent, selector: "monkey-icon-phone-call", inputs: ["fillColor", "size"] }, { type: MonkeyIconPorkComponent, selector: "monkey-icon-pork", inputs: ["fillColor", "size"] }, { type: MonkeyIconRadioComponent, selector: "monkey-icon-radio", inputs: ["fillColor", "size"] }, { type: MonkeyIconRefreshComponent, selector: "monkey-icon-refresh", inputs: ["fillColor", "size"] }, { type: MonkeyIconRepeatComponent, selector: "monkey-icon-repeat", inputs: ["fillColor", "size"] }, { type: MonkeyIconSearchComponent, selector: "monkey-icon-search", inputs: ["fillColor", "size"] }, { type: MonkeyIconSecondWarningComponent, selector: "monkey-icon-second-warning", inputs: ["fillColor", "size"] }, { type: MonkeyIconSettingsComponent, selector: "monkey-icon-settings", inputs: ["fillColor", "size"] }, { type: MonkeyIconShieldChekmarkComponent, selector: "monkey-icon-shield-chekmark", inputs: ["fillColor", "size"] }, { type: MonkeyIconStarComponent, selector: "monkey-icon-star", inputs: ["fillColor", "size"] }, { type: MonkeyIconTodayComponent, selector: "monkey-icon-today", inputs: ["fillColor", "size"] }, { type: MonkeyIconTrashComponent, selector: "monkey-icon-trash", inputs: ["fillColor", "size"] }, { type: MonkeyIconTrophyComponent, selector: "monkey-icon-trophy", inputs: ["fillColor", "size"] }, { type: MonkeyIconUnfoldMoreComponent, selector: "monkey-icon-unfold-more", inputs: ["fillColor", "size"] }, { type: MonkeyIconUploadComponent, selector: "monkey-icon-upload", inputs: ["fillColor", "size"] }, { type: MonkeyIconUserComponent, selector: "monkey-icon-user", inputs: ["fillColor", "size"] }, { type: MonkeyIconUserGroupComponent, selector: "monkey-icon-user-group", inputs: ["fillColor", "size"] }, { type: MonkeyIconWaitingComponent, selector: "monkey-icon-waiting", inputs: ["fillColor", "size"] }, { type: MonkeyIconWalletComponent, selector: "monkey-icon-wallet", inputs: ["fillColor", "size"] }, { type: MonkeyIconWarningComponent, selector: "monkey-icon-warning", inputs: ["fillColor", "size"] }], directives: [{ type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
2586
2719
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconComponent, decorators: [{
|
|
2587
2720
|
type: Component,
|
|
2588
2721
|
args: [{
|
|
2589
2722
|
selector: 'monkey-icon',
|
|
2590
2723
|
template: `
|
|
2724
|
+
<monkey-icon-add-plus
|
|
2725
|
+
[fillColor]="_fillColor"
|
|
2726
|
+
[id]="_id"
|
|
2727
|
+
[size]="_size"
|
|
2728
|
+
*ngIf="_icon === 'add-plus'"
|
|
2729
|
+
></monkey-icon-add-plus>
|
|
2591
2730
|
<monkey-icon-arrows
|
|
2592
2731
|
[fillColor]="_fillColor"
|
|
2593
2732
|
[id]="_id"
|
|
@@ -2696,6 +2835,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
2696
2835
|
[size]="_size"
|
|
2697
2836
|
*ngIf="_icon === 'card-machine'"
|
|
2698
2837
|
></monkey-icon-card-machine>
|
|
2838
|
+
<monkey-icon-cash-banknote-invoice
|
|
2839
|
+
[fillColor]="_fillColor"
|
|
2840
|
+
[id]="_id"
|
|
2841
|
+
[size]="_size"
|
|
2842
|
+
*ngIf="_icon === 'cash-banknote-invoice'"
|
|
2843
|
+
></monkey-icon-cash-banknote-invoice>
|
|
2699
2844
|
<monkey-icon-chat
|
|
2700
2845
|
[fillColor]="_fillColor"
|
|
2701
2846
|
[id]="_id"
|
|
@@ -2888,6 +3033,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
2888
3033
|
[size]="_size"
|
|
2889
3034
|
*ngIf="_icon === 'grid'"
|
|
2890
3035
|
></monkey-icon-grid>
|
|
3036
|
+
<monkey-icon-hands-clap
|
|
3037
|
+
[fillColor]="_fillColor"
|
|
3038
|
+
[id]="_id"
|
|
3039
|
+
[size]="_size"
|
|
3040
|
+
*ngIf="_icon === 'hands-clap'"
|
|
3041
|
+
></monkey-icon-hands-clap>
|
|
2891
3042
|
<monkey-icon-help
|
|
2892
3043
|
[fillColor]="_fillColor"
|
|
2893
3044
|
[id]="_id"
|
|
@@ -2984,6 +3135,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
2984
3135
|
[size]="_size"
|
|
2985
3136
|
*ngIf="_icon === 'money-sign'"
|
|
2986
3137
|
></monkey-icon-money-sign>
|
|
3138
|
+
<monkey-icon-more-circle
|
|
3139
|
+
[fillColor]="_fillColor"
|
|
3140
|
+
[id]="_id"
|
|
3141
|
+
[size]="_size"
|
|
3142
|
+
*ngIf="_icon === 'more-circle'"
|
|
3143
|
+
></monkey-icon-more-circle>
|
|
2987
3144
|
<monkey-icon-more
|
|
2988
3145
|
[fillColor]="_fillColor"
|
|
2989
3146
|
[id]="_id"
|
|
@@ -3008,6 +3165,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
3008
3165
|
[size]="_size"
|
|
3009
3166
|
*ngIf="_icon === 'password'"
|
|
3010
3167
|
></monkey-icon-password>
|
|
3168
|
+
<monkey-icon-pin-navigation
|
|
3169
|
+
[fillColor]="_fillColor"
|
|
3170
|
+
[id]="_id"
|
|
3171
|
+
[size]="_size"
|
|
3172
|
+
*ngIf="_icon === 'pin-navigation'"
|
|
3173
|
+
></monkey-icon-pin-navigation>
|
|
3011
3174
|
<monkey-icon-people
|
|
3012
3175
|
[fillColor]="_fillColor"
|
|
3013
3176
|
[id]="_id"
|
|
@@ -3038,6 +3201,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
3038
3201
|
[size]="_size"
|
|
3039
3202
|
*ngIf="_icon === 'phone'"
|
|
3040
3203
|
></monkey-icon-phone>
|
|
3204
|
+
<monkey-icon-phone-call
|
|
3205
|
+
[fillColor]="_fillColor"
|
|
3206
|
+
[id]="_id"
|
|
3207
|
+
[size]="_size"
|
|
3208
|
+
*ngIf="_icon === 'phone-call'"
|
|
3209
|
+
></monkey-icon-phone-call>
|
|
3041
3210
|
<monkey-icon-pork
|
|
3042
3211
|
[fillColor]="_fillColor"
|
|
3043
3212
|
[id]="_id"
|
|
@@ -3128,6 +3297,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
3128
3297
|
[size]="_size"
|
|
3129
3298
|
*ngIf="_icon === 'user'"
|
|
3130
3299
|
></monkey-icon-user>
|
|
3300
|
+
<monkey-icon-user-group
|
|
3301
|
+
[fillColor]="_fillColor"
|
|
3302
|
+
[id]="_id"
|
|
3303
|
+
[size]="_size"
|
|
3304
|
+
*ngIf="_icon === 'user-group'"
|
|
3305
|
+
></monkey-icon-user-group>
|
|
3131
3306
|
<monkey-icon-waiting
|
|
3132
3307
|
[fillColor]="_fillColor"
|
|
3133
3308
|
[id]="_id"
|
|
@@ -3482,6 +3657,7 @@ class MonkeyIconModule {
|
|
|
3482
3657
|
MonkeyIconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3483
3658
|
MonkeyIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: MonkeyIconModule, declarations: [MonkeyArrowsComponent,
|
|
3484
3659
|
MonkeyBankAccountComponent,
|
|
3660
|
+
MonkeyIconAddPlusComponent,
|
|
3485
3661
|
MonkeyIconArrowDownComponent,
|
|
3486
3662
|
MonkeyIconArrowLeftComponent,
|
|
3487
3663
|
MonkeyIconArrowLineRightComponent,
|
|
@@ -3498,6 +3674,7 @@ MonkeyIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", versio
|
|
|
3498
3674
|
MonkeyIconCameraComponent,
|
|
3499
3675
|
MonkeyIconCardComponent,
|
|
3500
3676
|
MonkeyIconCardMachineComponent,
|
|
3677
|
+
MonkeyIconCashBanknoteInvoiceComponent,
|
|
3501
3678
|
MonkeyIconChatComponent,
|
|
3502
3679
|
MonkeyIconCheckCircleComponent,
|
|
3503
3680
|
MonkeyIconCheckCircleOutComponent,
|
|
@@ -3531,6 +3708,7 @@ MonkeyIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", versio
|
|
|
3531
3708
|
MonkeyIconEyeOpenComponent,
|
|
3532
3709
|
MonkeyIconFilterComponent,
|
|
3533
3710
|
MonkeyIconGridComponent,
|
|
3711
|
+
MonkeyIconHandsClapComponent,
|
|
3534
3712
|
MonkeyIconHelpComponent,
|
|
3535
3713
|
MonkeyIconHexagonComponent,
|
|
3536
3714
|
MonkeyIconHomeComponent,
|
|
@@ -3547,6 +3725,7 @@ MonkeyIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", versio
|
|
|
3547
3725
|
MonkeyIconMoneyComponent,
|
|
3548
3726
|
MonkeyIconMoneyHandComponent,
|
|
3549
3727
|
MonkeyIconMoneySignComponent,
|
|
3728
|
+
MonkeyIconMoreCircleComponent,
|
|
3550
3729
|
MonkeyIconMoreComponent,
|
|
3551
3730
|
MonkeyIconNewCompanyComponent,
|
|
3552
3731
|
MonkeyIconOfferedComponent,
|
|
@@ -3555,7 +3734,9 @@ MonkeyIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", versio
|
|
|
3555
3734
|
MonkeyIconPercentComponent,
|
|
3556
3735
|
MonkeyIconPersonDocumentComponent,
|
|
3557
3736
|
MonkeyIconPersonSadComponent,
|
|
3737
|
+
MonkeyIconPhoneCallComponent,
|
|
3558
3738
|
MonkeyIconPhoneComponent,
|
|
3739
|
+
MonkeyIconPinNavigationComponent,
|
|
3559
3740
|
MonkeyIconPorkComponent,
|
|
3560
3741
|
MonkeyIconRadioComponent,
|
|
3561
3742
|
MonkeyIconRefreshComponent,
|
|
@@ -3571,6 +3752,7 @@ MonkeyIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", versio
|
|
|
3571
3752
|
MonkeyIconUnfoldMoreComponent,
|
|
3572
3753
|
MonkeyIconUploadComponent,
|
|
3573
3754
|
MonkeyIconUserComponent,
|
|
3755
|
+
MonkeyIconUserGroupComponent,
|
|
3574
3756
|
MonkeyIconWaitingComponent,
|
|
3575
3757
|
MonkeyIconWalletComponent,
|
|
3576
3758
|
MonkeyIconWarningComponent], imports: [CommonModule], exports: [MonkeyIconComponent] });
|
|
@@ -3581,6 +3763,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
3581
3763
|
declarations: [
|
|
3582
3764
|
MonkeyArrowsComponent,
|
|
3583
3765
|
MonkeyBankAccountComponent,
|
|
3766
|
+
MonkeyIconAddPlusComponent,
|
|
3584
3767
|
MonkeyIconArrowDownComponent,
|
|
3585
3768
|
MonkeyIconArrowLeftComponent,
|
|
3586
3769
|
MonkeyIconArrowLineRightComponent,
|
|
@@ -3597,6 +3780,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
3597
3780
|
MonkeyIconCameraComponent,
|
|
3598
3781
|
MonkeyIconCardComponent,
|
|
3599
3782
|
MonkeyIconCardMachineComponent,
|
|
3783
|
+
MonkeyIconCashBanknoteInvoiceComponent,
|
|
3600
3784
|
MonkeyIconChatComponent,
|
|
3601
3785
|
MonkeyIconCheckCircleComponent,
|
|
3602
3786
|
MonkeyIconCheckCircleOutComponent,
|
|
@@ -3630,6 +3814,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
3630
3814
|
MonkeyIconEyeOpenComponent,
|
|
3631
3815
|
MonkeyIconFilterComponent,
|
|
3632
3816
|
MonkeyIconGridComponent,
|
|
3817
|
+
MonkeyIconHandsClapComponent,
|
|
3633
3818
|
MonkeyIconHelpComponent,
|
|
3634
3819
|
MonkeyIconHexagonComponent,
|
|
3635
3820
|
MonkeyIconHomeComponent,
|
|
@@ -3646,6 +3831,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
3646
3831
|
MonkeyIconMoneyComponent,
|
|
3647
3832
|
MonkeyIconMoneyHandComponent,
|
|
3648
3833
|
MonkeyIconMoneySignComponent,
|
|
3834
|
+
MonkeyIconMoreCircleComponent,
|
|
3649
3835
|
MonkeyIconMoreComponent,
|
|
3650
3836
|
MonkeyIconNewCompanyComponent,
|
|
3651
3837
|
MonkeyIconOfferedComponent,
|
|
@@ -3654,7 +3840,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
3654
3840
|
MonkeyIconPercentComponent,
|
|
3655
3841
|
MonkeyIconPersonDocumentComponent,
|
|
3656
3842
|
MonkeyIconPersonSadComponent,
|
|
3843
|
+
MonkeyIconPhoneCallComponent,
|
|
3657
3844
|
MonkeyIconPhoneComponent,
|
|
3845
|
+
MonkeyIconPinNavigationComponent,
|
|
3658
3846
|
MonkeyIconPorkComponent,
|
|
3659
3847
|
MonkeyIconRadioComponent,
|
|
3660
3848
|
MonkeyIconRefreshComponent,
|
|
@@ -3670,6 +3858,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
3670
3858
|
MonkeyIconUnfoldMoreComponent,
|
|
3671
3859
|
MonkeyIconUploadComponent,
|
|
3672
3860
|
MonkeyIconUserComponent,
|
|
3861
|
+
MonkeyIconUserGroupComponent,
|
|
3673
3862
|
MonkeyIconWaitingComponent,
|
|
3674
3863
|
MonkeyIconWalletComponent,
|
|
3675
3864
|
MonkeyIconWarningComponent
|
|
@@ -8873,5 +9062,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
8873
9062
|
* Generated bundle index. Do not edit.
|
|
8874
9063
|
*/
|
|
8875
9064
|
|
|
8876
|
-
export { MonkeyArrowsComponent, MonkeyBadgeComponent, MonkeyBadgeModule, MonkeyBankAccountComponent, MonkeyButtonAvatarComponent, MonkeyButtonComponent, MonkeyButtonDropdownComponent, MonkeyButtonModule, MonkeyCheckboxComponent, MonkeyCheckboxModule, MonkeyDateRangePickerComponent, MonkeyDateRangePickerModule, MonkeyExpansionComponent, MonkeyExpansionModule, MonkeyFileUploadComponent, MonkeyFileUploadModule, MonkeyIconArrowLeftComponent, MonkeyIconArrowLineRightComponent, MonkeyIconArrowRightComponent, MonkeyIconArrowUpComponent, MonkeyIconAuctionComponent, MonkeyIconBankComponent, MonkeyIconBankNoteSearchComponent, MonkeyIconBellComponent, MonkeyIconBookComponent, MonkeyIconBoxComponent, MonkeyIconBuildPersonComponent, MonkeyIconCNPJComponent, MonkeyIconCalendarComponent, MonkeyIconCameraComponent, MonkeyIconCardComponent, MonkeyIconCardMachineComponent, MonkeyIconChatComponent, MonkeyIconCheckCircleComponent, MonkeyIconCheckCircleOutComponent, MonkeyIconCheckComponent, MonkeyIconCheckGreyComponent, MonkeyIconCheckWhiteComponent, MonkeyIconClipboardComponent, MonkeyIconClockComponent, MonkeyIconCloseComponent, MonkeyIconCodepenComponent, MonkeyIconCompanyNameComponent, MonkeyIconComponent, MonkeyIconContractComponent, MonkeyIconContractPenComponent, MonkeyIconDeleteComponent, MonkeyIconDocumentComponent, MonkeyIconDollarSignCircleComponent, MonkeyIconDollarSignComponent, MonkeyIconDomainComponent, MonkeyIconDoubleArrowLeftComponent, MonkeyIconDoubleArrowRightComponent, MonkeyIconDownloadComponent, MonkeyIconEditComponent, MonkeyIconEditSquareComponent, MonkeyIconEmailComponent, MonkeyIconEmptyDocComponent, MonkeyIconErrorComponent, MonkeyIconEyeClosedComponent, MonkeyIconEyeOpenComponent, MonkeyIconFilterComponent, MonkeyIconGridComponent, MonkeyIconHelpComponent, MonkeyIconHexagonComponent, MonkeyIconHomeComponent, MonkeyIconImageComponent, MonkeyIconInfoComponent, MonkeyIconInvoiceComponent, MonkeyIconListComponent, MonkeyIconLocationPinComponent, MonkeyIconLoginComponent, MonkeyIconLogoutComponent, MonkeyIconMedalComponent, MonkeyIconMenuComponent, MonkeyIconModule, MonkeyIconMoneyCeduleComponent, MonkeyIconMoneyComponent, MonkeyIconMoneyHandComponent, MonkeyIconMoneySignComponent, MonkeyIconMoreComponent, MonkeyIconNewCompanyComponent, MonkeyIconOfferedComponent, MonkeyIconPasswordComponent, MonkeyIconPeopleComponent, MonkeyIconPercentComponent, MonkeyIconPersonDocumentComponent, MonkeyIconPersonSadComponent, MonkeyIconPhoneComponent, MonkeyIconPorkComponent, MonkeyIconRadioComponent, MonkeyIconRefreshComponent, MonkeyIconRepeatComponent, MonkeyIconSearchComponent, MonkeyIconSecondWarningComponent, MonkeyIconSettingsComponent, MonkeyIconShieldChekmarkComponent, MonkeyIconStarComponent, MonkeyIconTodayComponent, MonkeyIconTrashComponent, MonkeyIconTrophyComponent, MonkeyIconUnfoldMoreComponent, MonkeyIconUploadComponent, MonkeyIconUserComponent, MonkeyIconWaitingComponent, MonkeyIconWalletComponent, MonkeyIconWarningComponent, MonkeyImageCropComponent, MonkeyImageCropModule, MonkeyInputComponent, MonkeyInputFilterComponent, MonkeyInputModule, MonkeyInputPhoneComponent, MonkeyInputPhoneModule, MonkeyModalComponent, MonkeyModalModule, MonkeyOptionComponent, MonkeyOptionModule, MonkeyRadioButtonComponent, MonkeyRadioButtonModule, MonkeySelectComponent, MonkeySelectFilterComponent, MonkeySelectModule, MonkeySelectMultipleComponent, MonkeySelectSearchComponent, MonkeyStepperComponent, MonkeyStepperModule, MonkeyStyleGuideModalFixedService, MonkeyStyleGuideModalService, MonkeyStyleGuideModule, MonkeyStyleGuideSettingsService, MonkeyStyleGuideSnackbarService, MonkeyTabComponent, MonkeyTabModule, MonkeyTableColumnComponent, MonkeyTableComponent, MonkeyTableModule, MonkeyToggleComponent, MonkeyToggleModule, MonkeyUtils, MonkeyWizardComponent, MonkeyWizardModule, PhoneNumberValidDirective };
|
|
9065
|
+
export { MonkeyArrowsComponent, MonkeyBadgeComponent, MonkeyBadgeModule, MonkeyBankAccountComponent, MonkeyButtonAvatarComponent, MonkeyButtonComponent, MonkeyButtonDropdownComponent, MonkeyButtonModule, MonkeyCheckboxComponent, MonkeyCheckboxModule, MonkeyDateRangePickerComponent, MonkeyDateRangePickerModule, MonkeyExpansionComponent, MonkeyExpansionModule, MonkeyFileUploadComponent, MonkeyFileUploadModule, MonkeyIconAddPlusComponent, MonkeyIconArrowLeftComponent, MonkeyIconArrowLineRightComponent, MonkeyIconArrowRightComponent, MonkeyIconArrowUpComponent, MonkeyIconAuctionComponent, MonkeyIconBankComponent, MonkeyIconBankNoteSearchComponent, MonkeyIconBellComponent, MonkeyIconBookComponent, MonkeyIconBoxComponent, MonkeyIconBuildPersonComponent, MonkeyIconCNPJComponent, MonkeyIconCalendarComponent, MonkeyIconCameraComponent, MonkeyIconCardComponent, MonkeyIconCardMachineComponent, MonkeyIconCashBanknoteInvoiceComponent, MonkeyIconChatComponent, MonkeyIconCheckCircleComponent, MonkeyIconCheckCircleOutComponent, MonkeyIconCheckComponent, MonkeyIconCheckGreyComponent, MonkeyIconCheckWhiteComponent, MonkeyIconClipboardComponent, MonkeyIconClockComponent, MonkeyIconCloseComponent, MonkeyIconCodepenComponent, MonkeyIconCompanyNameComponent, MonkeyIconComponent, MonkeyIconContractComponent, MonkeyIconContractPenComponent, MonkeyIconDeleteComponent, MonkeyIconDocumentComponent, MonkeyIconDollarSignCircleComponent, MonkeyIconDollarSignComponent, MonkeyIconDomainComponent, MonkeyIconDoubleArrowLeftComponent, MonkeyIconDoubleArrowRightComponent, MonkeyIconDownloadComponent, MonkeyIconEditComponent, MonkeyIconEditSquareComponent, MonkeyIconEmailComponent, MonkeyIconEmptyDocComponent, MonkeyIconErrorComponent, MonkeyIconEyeClosedComponent, MonkeyIconEyeOpenComponent, MonkeyIconFilterComponent, MonkeyIconGridComponent, MonkeyIconHelpComponent, MonkeyIconHexagonComponent, MonkeyIconHomeComponent, MonkeyIconImageComponent, MonkeyIconInfoComponent, MonkeyIconInvoiceComponent, MonkeyIconListComponent, MonkeyIconLocationPinComponent, MonkeyIconLoginComponent, MonkeyIconLogoutComponent, MonkeyIconMedalComponent, MonkeyIconMenuComponent, MonkeyIconModule, MonkeyIconMoneyCeduleComponent, MonkeyIconMoneyComponent, MonkeyIconMoneyHandComponent, MonkeyIconMoneySignComponent, MonkeyIconMoreComponent, MonkeyIconNewCompanyComponent, MonkeyIconOfferedComponent, MonkeyIconPasswordComponent, MonkeyIconPeopleComponent, MonkeyIconPercentComponent, MonkeyIconPersonDocumentComponent, MonkeyIconPersonSadComponent, MonkeyIconPhoneComponent, MonkeyIconPorkComponent, MonkeyIconRadioComponent, MonkeyIconRefreshComponent, MonkeyIconRepeatComponent, MonkeyIconSearchComponent, MonkeyIconSecondWarningComponent, MonkeyIconSettingsComponent, MonkeyIconShieldChekmarkComponent, MonkeyIconStarComponent, MonkeyIconTodayComponent, MonkeyIconTrashComponent, MonkeyIconTrophyComponent, MonkeyIconUnfoldMoreComponent, MonkeyIconUploadComponent, MonkeyIconUserComponent, MonkeyIconWaitingComponent, MonkeyIconWalletComponent, MonkeyIconWarningComponent, MonkeyImageCropComponent, MonkeyImageCropModule, MonkeyInputComponent, MonkeyInputFilterComponent, MonkeyInputModule, MonkeyInputPhoneComponent, MonkeyInputPhoneModule, MonkeyModalComponent, MonkeyModalModule, MonkeyOptionComponent, MonkeyOptionModule, MonkeyRadioButtonComponent, MonkeyRadioButtonModule, MonkeySelectComponent, MonkeySelectFilterComponent, MonkeySelectModule, MonkeySelectMultipleComponent, MonkeySelectSearchComponent, MonkeyStepperComponent, MonkeyStepperModule, MonkeyStyleGuideModalFixedService, MonkeyStyleGuideModalService, MonkeyStyleGuideModule, MonkeyStyleGuideSettingsService, MonkeyStyleGuideSnackbarService, MonkeyTabComponent, MonkeyTabModule, MonkeyTableColumnComponent, MonkeyTableComponent, MonkeyTableModule, MonkeyToggleComponent, MonkeyToggleModule, MonkeyUtils, MonkeyWizardComponent, MonkeyWizardModule, PhoneNumberValidDirective };
|
|
8877
9066
|
//# sourceMappingURL=monkey-style-guide.mjs.map
|