monkey-front-components 0.0.381 → 0.0.384
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/karma.conf.js +44 -0
- package/monkey-front-components-0.0.384.tgz +0 -0
- package/ng-package.json +10 -0
- package/package.json +7 -27
- package/src/lib/components/base/base-component.ts +359 -0
- package/src/lib/components/base/base-dynamic-array.ts +233 -0
- package/src/lib/components/base/base-dynamic.ts +90 -0
- package/src/lib/components/base/base-scroll-component.ts +52 -0
- package/src/lib/components/base/base-validators.ts +19 -0
- package/{lib/components/base/index.d.ts → src/lib/components/base/index.ts} +5 -5
- package/src/lib/components/dynamic/button/button.component.html +4 -0
- package/src/lib/components/dynamic/button/button.component.scss +7 -0
- package/src/lib/components/dynamic/button/button.component.ts +47 -0
- package/{lib/components/dynamic/button/index.d.ts → src/lib/components/dynamic/button/index.ts} +1 -1
- package/src/lib/components/dynamic/dynamic-directive.ts +102 -0
- package/src/lib/components/dynamic/dynamic.module.ts +53 -0
- package/src/lib/components/dynamic/file-upload/file-upload.component.html +10 -0
- package/src/lib/components/dynamic/file-upload/file-upload.component.ts +46 -0
- package/{lib/components/dynamic/file-upload/index.d.ts → src/lib/components/dynamic/file-upload/index.ts} +1 -1
- package/src/lib/components/dynamic/form/dynamic-form-array.component.html +19 -0
- package/src/lib/components/dynamic/form/dynamic-form-array.component.scss +10 -0
- package/src/lib/components/dynamic/form/dynamic-form-array.component.ts +75 -0
- package/src/lib/components/dynamic/form/dynamic-form.component.html +7 -0
- package/src/lib/components/dynamic/form/dynamic-form.component.ts +49 -0
- package/{lib/components/dynamic/form/index.d.ts → src/lib/components/dynamic/form/index.ts} +2 -2
- package/{lib/components/dynamic/index.d.ts → src/lib/components/dynamic/index.ts} +8 -8
- package/{lib/components/dynamic/input/index.d.ts → src/lib/components/dynamic/input/index.ts} +1 -1
- package/src/lib/components/dynamic/input/input.component.html +9 -0
- package/src/lib/components/dynamic/input/input.component.ts +58 -0
- package/{lib/components/dynamic/input-phone/index.d.ts → src/lib/components/dynamic/input-phone/index.ts} +1 -1
- package/src/lib/components/dynamic/input-phone/input-phone.component.html +7 -0
- package/src/lib/components/dynamic/input-phone/input-phone.component.ts +58 -0
- package/{lib/components/dynamic/radio/index.d.ts → src/lib/components/dynamic/radio/index.ts} +1 -1
- package/src/lib/components/dynamic/radio/radio.component.html +8 -0
- package/src/lib/components/dynamic/radio/radio.component.ts +22 -0
- package/{lib/components/dynamic/select/index.d.ts → src/lib/components/dynamic/select/index.ts} +1 -1
- package/src/lib/components/dynamic/select/select.component.html +14 -0
- package/src/lib/components/dynamic/select/select.component.ts +75 -0
- package/{lib/components/dynamic/select-search/index.d.ts → src/lib/components/dynamic/select-search/index.ts} +1 -1
- package/src/lib/components/dynamic/select-search/select-search.component.html +15 -0
- package/src/lib/components/dynamic/select-search/select-search.component.ts +76 -0
- package/{lib/components/index.d.ts → src/lib/components/index.ts} +3 -3
- package/src/lib/components/shared/filter/filter.component.html +51 -0
- package/src/lib/components/shared/filter/filter.component.scss +79 -0
- package/src/lib/components/shared/filter/filter.component.ts +117 -0
- package/src/lib/components/shared/filter/filter.module.ts +36 -0
- package/{lib/components/shared/filter/index.d.ts → src/lib/components/shared/filter/index.ts} +2 -2
- package/{lib/components/shared/filter/menu/index.d.ts → src/lib/components/shared/filter/menu/index.ts} +1 -1
- package/src/lib/components/shared/filter/menu/menu.component.html +28 -0
- package/src/lib/components/shared/filter/menu/menu.component.scss +62 -0
- package/src/lib/components/shared/filter/menu/menu.component.ts +122 -0
- package/src/lib/components/shared/filter/menu/menu.module.ts +41 -0
- package/src/lib/components/shared/filter/options/children/children.component.html +6 -0
- package/src/lib/components/shared/filter/options/children/children.component.scss +30 -0
- package/src/lib/components/shared/filter/options/children/children.component.ts +58 -0
- package/{lib/components/shared/filter/options/children/index.d.ts → src/lib/components/shared/filter/options/children/index.ts} +1 -1
- package/src/lib/components/shared/filter/options/currency/currency.component.html +3 -0
- package/src/lib/components/shared/filter/options/currency/currency.component.scss +19 -0
- package/src/lib/components/shared/filter/options/currency/currency.component.ts +52 -0
- package/{lib/components/shared/filter/options/currency/index.d.ts → src/lib/components/shared/filter/options/currency/index.ts} +1 -1
- package/src/lib/components/shared/filter/options/date-range/date-range.component.html +3 -0
- package/src/lib/components/shared/filter/options/date-range/date-range.component.scss +34 -0
- package/src/lib/components/shared/filter/options/date-range/date-range.component.ts +72 -0
- package/{lib/components/shared/filter/options/date-range/index.d.ts → src/lib/components/shared/filter/options/date-range/index.ts} +1 -1
- package/{lib/components/shared/filter/options/index.d.ts → src/lib/components/shared/filter/options/index.ts} +1 -1
- package/{lib/components/shared/filter/options/input/index.d.ts → src/lib/components/shared/filter/options/input/index.ts} +1 -1
- package/src/lib/components/shared/filter/options/input/input.component.html +3 -0
- package/src/lib/components/shared/filter/options/input/input.component.scss +19 -0
- package/src/lib/components/shared/filter/options/input/input.component.ts +52 -0
- package/src/lib/components/shared/filter/options/options.component.html +43 -0
- package/src/lib/components/shared/filter/options/options.component.scss +56 -0
- package/src/lib/components/shared/filter/options/options.component.ts +58 -0
- package/src/lib/components/shared/filter/options/options.module.ts +58 -0
- package/{lib/components/shared/filter/options/status/index.d.ts → src/lib/components/shared/filter/options/status/index.ts} +1 -1
- package/src/lib/components/shared/filter/options/status/status.component.html +4 -0
- package/src/lib/components/shared/filter/options/status/status.component.scss +29 -0
- package/src/lib/components/shared/filter/options/status/status.component.ts +73 -0
- package/{lib/components/shared/filter/selected/index.d.ts → src/lib/components/shared/filter/selected/index.ts} +1 -1
- package/src/lib/components/shared/filter/selected/item/children/children.component.html +19 -0
- package/src/lib/components/shared/filter/selected/item/children/children.component.scss +68 -0
- package/src/lib/components/shared/filter/selected/item/children/children.component.ts +49 -0
- package/{lib/components/shared/filter/selected/item/children/index.d.ts → src/lib/components/shared/filter/selected/item/children/index.ts} +1 -1
- package/src/lib/components/shared/filter/selected/item/currency/currency.component.html +1 -0
- package/src/lib/components/shared/filter/selected/item/currency/currency.component.scss +4 -0
- package/src/lib/components/shared/filter/selected/item/currency/currency.component.ts +26 -0
- package/{lib/components/shared/filter/selected/item/currency/index.d.ts → src/lib/components/shared/filter/selected/item/currency/index.ts} +1 -1
- package/src/lib/components/shared/filter/selected/item/date-range/date-range.component.html +2 -0
- package/src/lib/components/shared/filter/selected/item/date-range/date-range.component.scss +4 -0
- package/src/lib/components/shared/filter/selected/item/date-range/date-range.component.ts +39 -0
- package/{lib/components/shared/filter/selected/item/date-range/index.d.ts → src/lib/components/shared/filter/selected/item/date-range/index.ts} +1 -1
- package/src/lib/components/shared/filter/selected/item/date-with-action/date-with-action.component.html +1 -0
- package/src/lib/components/shared/filter/selected/item/date-with-action/date-with-action.component.scss +4 -0
- package/src/lib/components/shared/filter/selected/item/date-with-action/date-with-action.component.ts +29 -0
- package/{lib/components/shared/filter/selected/item/date-with-action/index.d.ts → src/lib/components/shared/filter/selected/item/date-with-action/index.ts} +1 -1
- package/{lib/components/shared/filter/selected/item/index.d.ts → src/lib/components/shared/filter/selected/item/index.ts} +7 -7
- package/{lib/components/shared/filter/selected/item/input/index.d.ts → src/lib/components/shared/filter/selected/item/input/index.ts} +1 -1
- package/src/lib/components/shared/filter/selected/item/input/input.component.html +1 -0
- package/src/lib/components/shared/filter/selected/item/input/input.component.scss +4 -0
- package/src/lib/components/shared/filter/selected/item/input/input.component.ts +26 -0
- package/src/lib/components/shared/filter/selected/item/item.component.html +38 -0
- package/src/lib/components/shared/filter/selected/item/item.component.scss +72 -0
- package/src/lib/components/shared/filter/selected/item/item.component.ts +71 -0
- package/{lib/components/shared/filter/selected/item/status/index.d.ts → src/lib/components/shared/filter/selected/item/status/index.ts} +1 -1
- package/src/lib/components/shared/filter/selected/item/status/status.component.html +1 -0
- package/src/lib/components/shared/filter/selected/item/status/status.component.scss +4 -0
- package/src/lib/components/shared/filter/selected/item/status/status.component.ts +36 -0
- package/src/lib/components/shared/filter/selected/selected.component.html +3 -0
- package/src/lib/components/shared/filter/selected/selected.component.scss +9 -0
- package/src/lib/components/shared/filter/selected/selected.component.ts +76 -0
- package/src/lib/components/shared/filter/selected/selected.module.ts +60 -0
- package/{lib/components/shared/index.d.ts → src/lib/components/shared/index.ts} +4 -4
- package/{lib/components/shared/password-strength/index.d.ts → src/lib/components/shared/password-strength/index.ts} +2 -2
- package/src/lib/components/shared/password-strength/password-strength.component.html +50 -0
- package/src/lib/components/shared/password-strength/password-strength.component.scss +70 -0
- package/src/lib/components/shared/password-strength/password-strength.component.ts +89 -0
- package/src/lib/components/shared/password-strength/password-strength.module.ts +24 -0
- package/src/lib/components/shared/password-strength/password-strength.ts +5 -0
- package/src/lib/components/shared/products/filter/filter.component.html +6 -0
- package/src/lib/components/shared/products/filter/filter.component.scss +20 -0
- package/src/lib/components/shared/products/filter/filter.component.ts +34 -0
- package/{lib/components/shared/products/index.d.ts → src/lib/components/shared/products/index.ts} +2 -2
- package/src/lib/components/shared/products/products.component.html +15 -0
- package/src/lib/components/shared/products/products.component.scss +70 -0
- package/src/lib/components/shared/products/products.component.ts +104 -0
- package/src/lib/components/shared/products/products.module.ts +13 -0
- package/{lib/components/shared/products/providers/index.d.ts → src/lib/components/shared/products/providers/index.ts} +1 -1
- package/src/lib/components/shared/products/providers/products.model.ts +60 -0
- package/{lib/components/shared/progress-bar/index.d.ts → src/lib/components/shared/progress-bar/index.ts} +3 -3
- package/src/lib/components/shared/progress-bar/progress-bar.component.html +3 -0
- package/src/lib/components/shared/progress-bar/progress-bar.component.scss +6 -0
- package/src/lib/components/shared/progress-bar/progress-bar.component.ts +27 -0
- package/src/lib/components/shared/progress-bar/progress-bar.module.ts +10 -0
- package/src/lib/components/shared/progress-bar/progress-bar.service.ts +59 -0
- package/src/lib/interfaces/field-config.ts +58 -0
- package/{lib/interfaces/index.d.ts → src/lib/interfaces/index.ts} +1 -1
- package/src/public-api.ts +5 -0
- package/src/test.ts +26 -0
- package/tsconfig.lib.json +20 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +17 -0
- package/esm2020/lib/components/base/base-component.mjs +0 -322
- package/esm2020/lib/components/base/base-dynamic-array.mjs +0 -221
- package/esm2020/lib/components/base/base-dynamic.mjs +0 -99
- package/esm2020/lib/components/base/base-scroll-component.mjs +0 -55
- package/esm2020/lib/components/base/base-validators.mjs +0 -19
- package/esm2020/lib/components/base/index.mjs +0 -6
- package/esm2020/lib/components/dynamic/button/button.component.mjs +0 -52
- package/esm2020/lib/components/dynamic/button/index.mjs +0 -2
- package/esm2020/lib/components/dynamic/dynamic-directive.mjs +0 -95
- package/esm2020/lib/components/dynamic/dynamic.module.mjs +0 -84
- package/esm2020/lib/components/dynamic/file-upload/file-upload.component.mjs +0 -52
- package/esm2020/lib/components/dynamic/file-upload/index.mjs +0 -2
- package/esm2020/lib/components/dynamic/form/dynamic-form-array.component.mjs +0 -72
- package/esm2020/lib/components/dynamic/form/dynamic-form.component.mjs +0 -46
- package/esm2020/lib/components/dynamic/form/index.mjs +0 -3
- package/esm2020/lib/components/dynamic/index.mjs +0 -9
- package/esm2020/lib/components/dynamic/input/index.mjs +0 -2
- package/esm2020/lib/components/dynamic/input/input.component.mjs +0 -65
- package/esm2020/lib/components/dynamic/input-phone/index.mjs +0 -2
- package/esm2020/lib/components/dynamic/input-phone/input-phone.component.mjs +0 -65
- package/esm2020/lib/components/dynamic/radio/index.mjs +0 -2
- package/esm2020/lib/components/dynamic/radio/radio.component.mjs +0 -33
- package/esm2020/lib/components/dynamic/select/index.mjs +0 -2
- package/esm2020/lib/components/dynamic/select/select.component.mjs +0 -80
- package/esm2020/lib/components/dynamic/select-search/index.mjs +0 -2
- package/esm2020/lib/components/dynamic/select-search/select-search.component.mjs +0 -80
- package/esm2020/lib/components/index.mjs +0 -4
- package/esm2020/lib/components/shared/filter/filter.component.mjs +0 -119
- package/esm2020/lib/components/shared/filter/filter.module.mjs +0 -63
- package/esm2020/lib/components/shared/filter/index.mjs +0 -3
- package/esm2020/lib/components/shared/filter/menu/index.mjs +0 -2
- package/esm2020/lib/components/shared/filter/menu/menu.component.mjs +0 -120
- package/esm2020/lib/components/shared/filter/menu/menu.module.mjs +0 -70
- package/esm2020/lib/components/shared/filter/options/children/children.component.mjs +0 -50
- package/esm2020/lib/components/shared/filter/options/children/index.mjs +0 -2
- package/esm2020/lib/components/shared/filter/options/currency/currency.component.mjs +0 -46
- package/esm2020/lib/components/shared/filter/options/currency/index.mjs +0 -2
- package/esm2020/lib/components/shared/filter/options/date-range/date-range.component.mjs +0 -65
- package/esm2020/lib/components/shared/filter/options/date-range/index.mjs +0 -2
- package/esm2020/lib/components/shared/filter/options/index.mjs +0 -2
- package/esm2020/lib/components/shared/filter/options/input/index.mjs +0 -2
- package/esm2020/lib/components/shared/filter/options/input/input.component.mjs +0 -46
- package/esm2020/lib/components/shared/filter/options/options.component.mjs +0 -68
- package/esm2020/lib/components/shared/filter/options/options.module.mjs +0 -95
- package/esm2020/lib/components/shared/filter/options/status/index.mjs +0 -2
- package/esm2020/lib/components/shared/filter/options/status/status.component.mjs +0 -66
- package/esm2020/lib/components/shared/filter/selected/index.mjs +0 -2
- package/esm2020/lib/components/shared/filter/selected/item/children/children.component.mjs +0 -57
- package/esm2020/lib/components/shared/filter/selected/item/children/index.mjs +0 -2
- package/esm2020/lib/components/shared/filter/selected/item/currency/currency.component.mjs +0 -29
- package/esm2020/lib/components/shared/filter/selected/item/currency/index.mjs +0 -2
- package/esm2020/lib/components/shared/filter/selected/item/date-range/date-range.component.mjs +0 -42
- package/esm2020/lib/components/shared/filter/selected/item/date-range/index.mjs +0 -2
- package/esm2020/lib/components/shared/filter/selected/item/date-with-action/date-with-action.component.mjs +0 -33
- package/esm2020/lib/components/shared/filter/selected/item/date-with-action/index.mjs +0 -2
- package/esm2020/lib/components/shared/filter/selected/item/index.mjs +0 -8
- package/esm2020/lib/components/shared/filter/selected/item/input/index.mjs +0 -2
- package/esm2020/lib/components/shared/filter/selected/item/input/input.component.mjs +0 -28
- package/esm2020/lib/components/shared/filter/selected/item/item.component.mjs +0 -74
- package/esm2020/lib/components/shared/filter/selected/item/status/index.mjs +0 -2
- package/esm2020/lib/components/shared/filter/selected/item/status/status.component.mjs +0 -39
- package/esm2020/lib/components/shared/filter/selected/selected.component.mjs +0 -80
- package/esm2020/lib/components/shared/filter/selected/selected.module.mjs +0 -90
- package/esm2020/lib/components/shared/index.mjs +0 -5
- package/esm2020/lib/components/shared/password-strength/index.mjs +0 -3
- package/esm2020/lib/components/shared/password-strength/password-strength.component.mjs +0 -85
- package/esm2020/lib/components/shared/password-strength/password-strength.mjs +0 -2
- package/esm2020/lib/components/shared/password-strength/password-strength.module.mjs +0 -50
- package/esm2020/lib/components/shared/products/filter/filter.component.mjs +0 -36
- package/esm2020/lib/components/shared/products/index.mjs +0 -3
- package/esm2020/lib/components/shared/products/products.component.mjs +0 -91
- package/esm2020/lib/components/shared/products/products.module.mjs +0 -22
- package/esm2020/lib/components/shared/products/providers/index.mjs +0 -2
- package/esm2020/lib/components/shared/products/providers/products.model.mjs +0 -38
- package/esm2020/lib/components/shared/progress-bar/index.mjs +0 -4
- package/esm2020/lib/components/shared/progress-bar/progress-bar.component.mjs +0 -28
- package/esm2020/lib/components/shared/progress-bar/progress-bar.module.mjs +0 -18
- package/esm2020/lib/components/shared/progress-bar/progress-bar.service.mjs +0 -49
- package/esm2020/lib/interfaces/field-config.mjs +0 -2
- package/esm2020/lib/interfaces/index.mjs +0 -2
- package/esm2020/monkey-front-components.mjs +0 -5
- package/esm2020/public-api.mjs +0 -5
- package/fesm2015/monkey-front-components.mjs +0 -2877
- package/fesm2015/monkey-front-components.mjs.map +0 -1
- package/fesm2020/monkey-front-components.mjs +0 -2859
- package/fesm2020/monkey-front-components.mjs.map +0 -1
- package/lib/components/base/base-component.d.ts +0 -50
- package/lib/components/base/base-dynamic-array.d.ts +0 -34
- package/lib/components/base/base-dynamic.d.ts +0 -24
- package/lib/components/base/base-scroll-component.d.ts +0 -16
- package/lib/components/base/base-validators.d.ts +0 -1
- package/lib/components/dynamic/button/button.component.d.ts +0 -17
- package/lib/components/dynamic/dynamic-directive.d.ts +0 -22
- package/lib/components/dynamic/dynamic.module.d.ts +0 -20
- package/lib/components/dynamic/file-upload/file-upload.component.d.ts +0 -17
- package/lib/components/dynamic/form/dynamic-form-array.component.d.ts +0 -16
- package/lib/components/dynamic/form/dynamic-form.component.d.ts +0 -14
- package/lib/components/dynamic/input/input.component.d.ts +0 -20
- package/lib/components/dynamic/input-phone/input-phone.component.d.ts +0 -20
- package/lib/components/dynamic/radio/radio.component.d.ts +0 -11
- package/lib/components/dynamic/select/select.component.d.ts +0 -16
- package/lib/components/dynamic/select-search/select-search.component.d.ts +0 -16
- package/lib/components/shared/filter/filter.component.d.ts +0 -32
- package/lib/components/shared/filter/filter.module.d.ts +0 -14
- package/lib/components/shared/filter/menu/menu.component.d.ts +0 -24
- package/lib/components/shared/filter/menu/menu.module.d.ts +0 -14
- package/lib/components/shared/filter/options/children/children.component.d.ts +0 -17
- package/lib/components/shared/filter/options/currency/currency.component.d.ts +0 -17
- package/lib/components/shared/filter/options/date-range/date-range.component.d.ts +0 -24
- package/lib/components/shared/filter/options/input/input.component.d.ts +0 -17
- package/lib/components/shared/filter/options/options.component.d.ts +0 -20
- package/lib/components/shared/filter/options/options.module.d.ts +0 -18
- package/lib/components/shared/filter/options/status/status.component.d.ts +0 -19
- package/lib/components/shared/filter/selected/item/children/children.component.d.ts +0 -16
- package/lib/components/shared/filter/selected/item/currency/currency.component.d.ts +0 -11
- package/lib/components/shared/filter/selected/item/date-range/date-range.component.d.ts +0 -12
- package/lib/components/shared/filter/selected/item/date-with-action/date-with-action.component.d.ts +0 -11
- package/lib/components/shared/filter/selected/item/input/input.component.d.ts +0 -11
- package/lib/components/shared/filter/selected/item/item.component.d.ts +0 -20
- package/lib/components/shared/filter/selected/item/status/status.component.d.ts +0 -13
- package/lib/components/shared/filter/selected/selected.component.d.ts +0 -18
- package/lib/components/shared/filter/selected/selected.module.d.ts +0 -21
- package/lib/components/shared/password-strength/password-strength.component.d.ts +0 -23
- package/lib/components/shared/password-strength/password-strength.d.ts +0 -5
- package/lib/components/shared/password-strength/password-strength.module.d.ts +0 -12
- package/lib/components/shared/products/filter/filter.component.d.ts +0 -12
- package/lib/components/shared/products/products.component.d.ts +0 -20
- package/lib/components/shared/products/products.module.d.ts +0 -11
- package/lib/components/shared/products/providers/products.model.d.ts +0 -13
- package/lib/components/shared/progress-bar/progress-bar.component.d.ts +0 -12
- package/lib/components/shared/progress-bar/progress-bar.module.d.ts +0 -8
- package/lib/components/shared/progress-bar/progress-bar.service.d.ts +0 -14
- package/lib/interfaces/field-config.d.ts +0 -54
- package/monkey-front-components-0.0.381.tgz +0 -0
- package/monkey-front-components.d.ts +0 -5
- package/public-api.d.ts +0 -1
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { MonkeyEcxFilterMenu } from 'monkey-front-core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class MECXFilterSelectedComponent implements OnChanges {
|
|
5
|
-
model: MonkeyEcxFilterMenu[];
|
|
6
|
-
onOpenFilters: EventEmitter<any>;
|
|
7
|
-
onClose: EventEmitter<any>;
|
|
8
|
-
onSubmit: EventEmitter<any>;
|
|
9
|
-
_model: MonkeyEcxFilterMenu[];
|
|
10
|
-
constructor();
|
|
11
|
-
private validateValue;
|
|
12
|
-
private onHandleSelectedValue;
|
|
13
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
14
|
-
onHandleClose(): void;
|
|
15
|
-
onHandleSubmit(event: any): void;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedComponent, "mecx-filter-selected", never, { "model": "model"; }, { "onOpenFilters": "onOpenFilters"; "onClose": "onClose"; "onSubmit": "onSubmit"; }, never, never>;
|
|
18
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./selected.component";
|
|
3
|
-
import * as i2 from "./item/children/children.component";
|
|
4
|
-
import * as i3 from "./item/item.component";
|
|
5
|
-
import * as i4 from "./item/currency/currency.component";
|
|
6
|
-
import * as i5 from "./item/date-range/date-range.component";
|
|
7
|
-
import * as i6 from "./item/date-with-action/date-with-action.component";
|
|
8
|
-
import * as i7 from "./item/input/input.component";
|
|
9
|
-
import * as i8 from "./item/status/status.component";
|
|
10
|
-
import * as i9 from "@angular/common";
|
|
11
|
-
import * as i10 from "@angular/forms";
|
|
12
|
-
import * as i11 from "../options/options.module";
|
|
13
|
-
import * as i12 from "monkey-style-guide";
|
|
14
|
-
import * as i13 from "monkey-front-core";
|
|
15
|
-
import * as i14 from "@angular/router";
|
|
16
|
-
import * as i15 from "@ngx-translate/core";
|
|
17
|
-
export declare class MECXFilterSelectedModule {
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedModule, never>;
|
|
19
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MECXFilterSelectedModule, [typeof i1.MECXFilterSelectedComponent, typeof i2.MECXFilterSelectedItemChildrenComponent, typeof i3.MECXFilterSelectedItemComponent, typeof i4.MECXFilterSelectedItemCurrencyComponent, typeof i5.MECXFilterSelectedItemDateRangeComponent, typeof i6.MECXFilterSelectedItemDateWithActionComponent, typeof i7.MECXFilterSelectedItemInputComponent, typeof i8.MECXFilterSelectedItemStatusComponent], [typeof i9.CommonModule, typeof i10.FormsModule, typeof i11.MECXFilterOptionsModule, typeof i12.MonkeyBadgeModule, typeof i12.MonkeyButtonModule, typeof i12.MonkeyCheckboxModule, typeof i12.MonkeyDateRangePickerModule, typeof i13.MonkeyEcxDirectivesModule, typeof i13.MonkeyEcxPipesModule, typeof i12.MonkeyIconModule, typeof i12.MonkeyInputModule, typeof i12.MonkeyOptionModule, typeof i12.MonkeySelectModule, typeof i10.ReactiveFormsModule, typeof i14.RouterModule, typeof i15.TranslateModule], [typeof i1.MECXFilterSelectedComponent]>;
|
|
20
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MECXFilterSelectedModule>;
|
|
21
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { OnChanges, EventEmitter } from '@angular/core';
|
|
2
|
-
import { MonkeyEcxConfigService } from 'monkey-front-core';
|
|
3
|
-
import { PasswordStrength } from './password-strength';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class MECXPasswordStrengthComponent implements OnChanges {
|
|
6
|
-
private configService;
|
|
7
|
-
passwordToCheck: string | null;
|
|
8
|
-
i18n: any;
|
|
9
|
-
onHandleSubmitReady: EventEmitter<any>;
|
|
10
|
-
_validatorsPasswordPass: Array<PasswordStrength>;
|
|
11
|
-
_stepPassword: number;
|
|
12
|
-
private validatorsPassword;
|
|
13
|
-
constructor(configService: MonkeyEcxConfigService);
|
|
14
|
-
private handleColor;
|
|
15
|
-
private passwordStrengthValidator;
|
|
16
|
-
private onHandleReady;
|
|
17
|
-
private onHandleChages;
|
|
18
|
-
private onHandlePasswordStrengthKeys;
|
|
19
|
-
ngOnInit(): void;
|
|
20
|
-
ngOnChanges(): void;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXPasswordStrengthComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MECXPasswordStrengthComponent, "mecx-password-strength", never, { "passwordToCheck": "passwordToCheck"; "i18n": "i18n"; }, { "onHandleSubmitReady": "onHandleSubmitReady"; }, never, never>;
|
|
23
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./password-strength.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/forms";
|
|
5
|
-
import * as i4 from "monkey-front-core";
|
|
6
|
-
import * as i5 from "monkey-style-guide";
|
|
7
|
-
import * as i6 from "@ngx-translate/core";
|
|
8
|
-
export declare class MECXPasswordStrengthModule {
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXPasswordStrengthModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MECXPasswordStrengthModule, [typeof i1.MECXPasswordStrengthComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i4.MonkeyEcxPipesModule, typeof i4.MonkeyEcxDirectivesModule, typeof i5.MonkeyButtonModule, typeof i5.MonkeyInputModule, typeof i5.MonkeyIconModule, typeof i6.TranslateModule], [typeof i1.MECXPasswordStrengthComponent]>;
|
|
11
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MECXPasswordStrengthModule>;
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class MECXProductsFilterComponent {
|
|
4
|
-
isLoading: boolean;
|
|
5
|
-
onChangeFilter: EventEmitter<any>;
|
|
6
|
-
_search: string;
|
|
7
|
-
constructor();
|
|
8
|
-
onSearchFilter(event: string): void;
|
|
9
|
-
onClearFilter(): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXProductsFilterComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MECXProductsFilterComponent, "mecx-products-filter", never, { "isLoading": "isLoading"; }, { "onChangeFilter": "onChangeFilter"; }, never, never>;
|
|
12
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { MonkeyEcxTokenStorageService } from 'monkey-front-core';
|
|
3
|
-
import { BaseComponent } from '../../base/base-component';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class MECXProductsComponent extends BaseComponent implements OnInit {
|
|
6
|
-
private tokenStorage;
|
|
7
|
-
onAccess: EventEmitter<any>;
|
|
8
|
-
_products: any[];
|
|
9
|
-
_filteredProducts: any[];
|
|
10
|
-
_filter: string;
|
|
11
|
-
_hasMoreProducts: boolean;
|
|
12
|
-
constructor(tokenStorage: MonkeyEcxTokenStorageService);
|
|
13
|
-
onImgError(img: HTMLImageElement): void;
|
|
14
|
-
private onHandleProducts;
|
|
15
|
-
private onHandleMe;
|
|
16
|
-
ngOnInit(): void;
|
|
17
|
-
onHandleChangeFilter(event: string): void;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXProductsComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MECXProductsComponent, "mecx-products", never, {}, { "onAccess": "onAccess"; }, never, never>;
|
|
20
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./products.component";
|
|
3
|
-
import * as i2 from "./filter/filter.component";
|
|
4
|
-
import * as i3 from "@angular/common";
|
|
5
|
-
import * as i4 from "@ngx-translate/core";
|
|
6
|
-
import * as i5 from "monkey-style-guide";
|
|
7
|
-
export declare class MECXProductsModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXProductsModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MECXProductsModule, [typeof i1.MECXProductsComponent, typeof i2.MECXProductsFilterComponent], [typeof i3.CommonModule, typeof i4.TranslateModule, typeof i5.MonkeyInputModule, typeof i5.MonkeyButtonModule], [typeof i1.MECXProductsComponent]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MECXProductsModule>;
|
|
11
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export declare class ProductsModel {
|
|
2
|
-
url: string;
|
|
3
|
-
token: string;
|
|
4
|
-
username: string;
|
|
5
|
-
ownerGovernmentId: string;
|
|
6
|
-
ownerName: string;
|
|
7
|
-
product: string;
|
|
8
|
-
name: string;
|
|
9
|
-
type: string;
|
|
10
|
-
logo: string;
|
|
11
|
-
constructor(data?: any);
|
|
12
|
-
private handleLogo;
|
|
13
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { BaseComponent } from '../../base/base-component';
|
|
3
|
-
import { MECXProgressBarService } from './progress-bar.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class MECXProgressBarComponent extends BaseComponent implements OnInit, OnDestroy {
|
|
6
|
-
private progressBarService;
|
|
7
|
-
visible: boolean;
|
|
8
|
-
constructor(progressBarService: MECXProgressBarService);
|
|
9
|
-
ngOnInit(): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXProgressBarComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MECXProgressBarComponent, "mecx-progress-bar", never, {}, {}, never, never>;
|
|
12
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./progress-bar.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
export declare class MECXProgressBarModule {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXProgressBarModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MECXProgressBarModule, [typeof i1.MECXProgressBarComponent], [typeof i2.CommonModule], [typeof i1.MECXProgressBarComponent]>;
|
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MECXProgressBarModule>;
|
|
8
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Router } from '@angular/router';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class MECXProgressBarService {
|
|
5
|
-
private router;
|
|
6
|
-
private visible;
|
|
7
|
-
constructor(router: Router);
|
|
8
|
-
private init;
|
|
9
|
-
show(): void;
|
|
10
|
-
hide(): void;
|
|
11
|
-
visibleConfig(): Observable<any>;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MECXProgressBarService, never>;
|
|
13
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<MECXProgressBarService>;
|
|
14
|
-
}
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
export interface MECXFieldConfigValidator {
|
|
2
|
-
name: string;
|
|
3
|
-
param: string | number;
|
|
4
|
-
}
|
|
5
|
-
export interface MECXFieldConfigStyle {
|
|
6
|
-
class: string;
|
|
7
|
-
}
|
|
8
|
-
export interface MECXFieldConfigValue {
|
|
9
|
-
description: string;
|
|
10
|
-
value: string;
|
|
11
|
-
}
|
|
12
|
-
export interface MECXFieldConfigFunctions {
|
|
13
|
-
onChange: string;
|
|
14
|
-
onClick: string;
|
|
15
|
-
onHandleUpload: {
|
|
16
|
-
func: string;
|
|
17
|
-
type: string;
|
|
18
|
-
};
|
|
19
|
-
onHandleGenericLoad: {
|
|
20
|
-
func: string;
|
|
21
|
-
url: string;
|
|
22
|
-
};
|
|
23
|
-
}
|
|
24
|
-
export interface MECXFieldConfig {
|
|
25
|
-
fieldType?: string;
|
|
26
|
-
label?: string;
|
|
27
|
-
icon?: string;
|
|
28
|
-
helperMessage?: string;
|
|
29
|
-
mask?: string;
|
|
30
|
-
prefix?: string;
|
|
31
|
-
internationalNumber?: string;
|
|
32
|
-
name?: string;
|
|
33
|
-
placeholder?: string;
|
|
34
|
-
type?: string;
|
|
35
|
-
color?: string;
|
|
36
|
-
disabled?: boolean;
|
|
37
|
-
value?: string | number | Date | undefined | MECXFieldConfigValue | MECXFieldConfigValue[];
|
|
38
|
-
validations?: MECXFieldConfigValidator[];
|
|
39
|
-
functions?: MECXFieldConfigFunctions;
|
|
40
|
-
style?: MECXFieldConfigStyle;
|
|
41
|
-
maxSize?: number;
|
|
42
|
-
maxLength?: number;
|
|
43
|
-
onlyNumber?: boolean;
|
|
44
|
-
currency?: boolean;
|
|
45
|
-
maxDateToday?: boolean;
|
|
46
|
-
allowedExtensions?: string[];
|
|
47
|
-
alwaysShow?: boolean;
|
|
48
|
-
alwaysShowPlusValidation: {
|
|
49
|
-
field?: string;
|
|
50
|
-
operator?: string;
|
|
51
|
-
value?: string;
|
|
52
|
-
};
|
|
53
|
-
fieldToCompare?: string;
|
|
54
|
-
}
|
|
Binary file
|
package/public-api.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './lib/components';
|