monkey-front-components 0.0.384 → 0.0.387
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/esm2020/lib/components/base/base-component.mjs +322 -0
- package/esm2020/lib/components/base/base-dynamic-array.mjs +221 -0
- package/esm2020/lib/components/base/base-dynamic.mjs +99 -0
- package/esm2020/lib/components/base/base-scroll-component.mjs +55 -0
- package/esm2020/lib/components/base/base-validators.mjs +19 -0
- package/esm2020/lib/components/base/index.mjs +6 -0
- package/esm2020/lib/components/dynamic/button/button.component.mjs +52 -0
- package/esm2020/lib/components/dynamic/button/index.mjs +2 -0
- package/esm2020/lib/components/dynamic/dynamic-directive.mjs +95 -0
- package/esm2020/lib/components/dynamic/dynamic.module.mjs +84 -0
- package/esm2020/lib/components/dynamic/file-upload/file-upload.component.mjs +52 -0
- package/esm2020/lib/components/dynamic/file-upload/index.mjs +2 -0
- package/esm2020/lib/components/dynamic/form/dynamic-form-array.component.mjs +72 -0
- package/esm2020/lib/components/dynamic/form/dynamic-form.component.mjs +46 -0
- package/esm2020/lib/components/dynamic/form/index.mjs +3 -0
- package/esm2020/lib/components/dynamic/index.mjs +9 -0
- package/esm2020/lib/components/dynamic/input/index.mjs +2 -0
- package/esm2020/lib/components/dynamic/input/input.component.mjs +65 -0
- package/esm2020/lib/components/dynamic/input-phone/index.mjs +2 -0
- package/esm2020/lib/components/dynamic/input-phone/input-phone.component.mjs +65 -0
- package/esm2020/lib/components/dynamic/radio/index.mjs +2 -0
- package/esm2020/lib/components/dynamic/radio/radio.component.mjs +33 -0
- package/esm2020/lib/components/dynamic/select/index.mjs +2 -0
- package/esm2020/lib/components/dynamic/select/select.component.mjs +80 -0
- package/esm2020/lib/components/dynamic/select-search/index.mjs +2 -0
- package/esm2020/lib/components/dynamic/select-search/select-search.component.mjs +80 -0
- package/esm2020/lib/components/index.mjs +4 -0
- package/esm2020/lib/components/shared/filter/filter.component.mjs +119 -0
- package/esm2020/lib/components/shared/filter/filter.module.mjs +63 -0
- package/esm2020/lib/components/shared/filter/index.mjs +3 -0
- package/esm2020/lib/components/shared/filter/menu/index.mjs +2 -0
- package/esm2020/lib/components/shared/filter/menu/menu.component.mjs +120 -0
- package/esm2020/lib/components/shared/filter/menu/menu.module.mjs +70 -0
- package/esm2020/lib/components/shared/filter/options/children/children.component.mjs +50 -0
- package/esm2020/lib/components/shared/filter/options/children/index.mjs +2 -0
- package/esm2020/lib/components/shared/filter/options/currency/currency.component.mjs +46 -0
- package/esm2020/lib/components/shared/filter/options/currency/index.mjs +2 -0
- package/esm2020/lib/components/shared/filter/options/date-range/date-range.component.mjs +65 -0
- package/esm2020/lib/components/shared/filter/options/date-range/index.mjs +2 -0
- package/esm2020/lib/components/shared/filter/options/index.mjs +2 -0
- package/esm2020/lib/components/shared/filter/options/input/index.mjs +2 -0
- package/esm2020/lib/components/shared/filter/options/input/input.component.mjs +46 -0
- package/esm2020/lib/components/shared/filter/options/options.component.mjs +68 -0
- package/esm2020/lib/components/shared/filter/options/options.module.mjs +95 -0
- package/esm2020/lib/components/shared/filter/options/status/index.mjs +2 -0
- package/esm2020/lib/components/shared/filter/options/status/status.component.mjs +66 -0
- package/esm2020/lib/components/shared/filter/selected/index.mjs +2 -0
- package/esm2020/lib/components/shared/filter/selected/item/children/children.component.mjs +57 -0
- package/esm2020/lib/components/shared/filter/selected/item/children/index.mjs +2 -0
- package/esm2020/lib/components/shared/filter/selected/item/currency/currency.component.mjs +29 -0
- package/esm2020/lib/components/shared/filter/selected/item/currency/index.mjs +2 -0
- package/esm2020/lib/components/shared/filter/selected/item/date-range/date-range.component.mjs +42 -0
- package/esm2020/lib/components/shared/filter/selected/item/date-range/index.mjs +2 -0
- package/esm2020/lib/components/shared/filter/selected/item/date-with-action/date-with-action.component.mjs +33 -0
- package/esm2020/lib/components/shared/filter/selected/item/date-with-action/index.mjs +2 -0
- package/esm2020/lib/components/shared/filter/selected/item/index.mjs +8 -0
- package/esm2020/lib/components/shared/filter/selected/item/input/index.mjs +2 -0
- package/esm2020/lib/components/shared/filter/selected/item/input/input.component.mjs +28 -0
- package/esm2020/lib/components/shared/filter/selected/item/item.component.mjs +74 -0
- package/esm2020/lib/components/shared/filter/selected/item/status/index.mjs +2 -0
- package/esm2020/lib/components/shared/filter/selected/item/status/status.component.mjs +39 -0
- package/esm2020/lib/components/shared/filter/selected/selected.component.mjs +80 -0
- package/esm2020/lib/components/shared/filter/selected/selected.module.mjs +90 -0
- package/esm2020/lib/components/shared/index.mjs +5 -0
- package/esm2020/lib/components/shared/password-strength/index.mjs +3 -0
- package/esm2020/lib/components/shared/password-strength/password-strength.component.mjs +85 -0
- package/esm2020/lib/components/shared/password-strength/password-strength.mjs +2 -0
- package/esm2020/lib/components/shared/password-strength/password-strength.module.mjs +50 -0
- package/esm2020/lib/components/shared/products/filter/filter.component.mjs +36 -0
- package/esm2020/lib/components/shared/products/index.mjs +3 -0
- package/esm2020/lib/components/shared/products/products.component.mjs +91 -0
- package/esm2020/lib/components/shared/products/products.module.mjs +22 -0
- package/esm2020/lib/components/shared/products/providers/index.mjs +2 -0
- package/esm2020/lib/components/shared/products/providers/products.model.mjs +38 -0
- package/esm2020/lib/components/shared/progress-bar/index.mjs +4 -0
- package/esm2020/lib/components/shared/progress-bar/progress-bar.component.mjs +28 -0
- package/esm2020/lib/components/shared/progress-bar/progress-bar.module.mjs +18 -0
- package/esm2020/lib/components/shared/progress-bar/progress-bar.service.mjs +49 -0
- package/esm2020/lib/interfaces/field-config.mjs +2 -0
- package/esm2020/lib/interfaces/index.mjs +2 -0
- package/esm2020/monkey-front-components.mjs +5 -0
- package/esm2020/public-api.mjs +5 -0
- package/fesm2015/monkey-front-components.mjs +2877 -0
- package/fesm2015/monkey-front-components.mjs.map +1 -0
- package/fesm2020/monkey-front-components.mjs +2859 -0
- package/fesm2020/monkey-front-components.mjs.map +1 -0
- package/lib/components/base/base-component.d.ts +50 -0
- package/lib/components/base/base-dynamic-array.d.ts +34 -0
- package/lib/components/base/base-dynamic.d.ts +24 -0
- package/lib/components/base/base-scroll-component.d.ts +16 -0
- package/lib/components/base/base-validators.d.ts +1 -0
- package/{src/lib/components/base/index.ts → lib/components/base/index.d.ts} +5 -5
- package/lib/components/dynamic/button/button.component.d.ts +17 -0
- package/{src/lib/components/dynamic/button/index.ts → lib/components/dynamic/button/index.d.ts} +1 -1
- package/lib/components/dynamic/dynamic-directive.d.ts +22 -0
- package/lib/components/dynamic/dynamic.module.d.ts +20 -0
- package/lib/components/dynamic/file-upload/file-upload.component.d.ts +17 -0
- package/{src/lib/components/dynamic/file-upload/index.ts → lib/components/dynamic/file-upload/index.d.ts} +1 -1
- package/lib/components/dynamic/form/dynamic-form-array.component.d.ts +16 -0
- package/lib/components/dynamic/form/dynamic-form.component.d.ts +14 -0
- package/{src/lib/components/dynamic/form/index.ts → lib/components/dynamic/form/index.d.ts} +2 -2
- package/{src/lib/components/dynamic/index.ts → lib/components/dynamic/index.d.ts} +8 -8
- package/{src/lib/components/dynamic/input/index.ts → lib/components/dynamic/input/index.d.ts} +1 -1
- package/lib/components/dynamic/input/input.component.d.ts +20 -0
- package/{src/lib/components/dynamic/input-phone/index.ts → lib/components/dynamic/input-phone/index.d.ts} +1 -1
- package/lib/components/dynamic/input-phone/input-phone.component.d.ts +20 -0
- package/{src/lib/components/dynamic/radio/index.ts → lib/components/dynamic/radio/index.d.ts} +1 -1
- package/lib/components/dynamic/radio/radio.component.d.ts +11 -0
- package/{src/lib/components/dynamic/select/index.ts → lib/components/dynamic/select/index.d.ts} +1 -1
- package/lib/components/dynamic/select/select.component.d.ts +16 -0
- package/{src/lib/components/dynamic/select-search/index.ts → lib/components/dynamic/select-search/index.d.ts} +1 -1
- package/lib/components/dynamic/select-search/select-search.component.d.ts +16 -0
- package/{src/lib/components/index.ts → lib/components/index.d.ts} +3 -3
- package/lib/components/shared/filter/filter.component.d.ts +32 -0
- package/lib/components/shared/filter/filter.module.d.ts +14 -0
- package/{src/lib/components/shared/filter/index.ts → lib/components/shared/filter/index.d.ts} +2 -2
- package/{src/lib/components/shared/filter/menu/index.ts → lib/components/shared/filter/menu/index.d.ts} +1 -1
- package/lib/components/shared/filter/menu/menu.component.d.ts +24 -0
- package/lib/components/shared/filter/menu/menu.module.d.ts +14 -0
- package/lib/components/shared/filter/options/children/children.component.d.ts +17 -0
- package/{src/lib/components/shared/filter/options/children/index.ts → lib/components/shared/filter/options/children/index.d.ts} +1 -1
- package/lib/components/shared/filter/options/currency/currency.component.d.ts +17 -0
- package/{src/lib/components/shared/filter/options/currency/index.ts → lib/components/shared/filter/options/currency/index.d.ts} +1 -1
- package/lib/components/shared/filter/options/date-range/date-range.component.d.ts +24 -0
- package/{src/lib/components/shared/filter/options/date-range/index.ts → lib/components/shared/filter/options/date-range/index.d.ts} +1 -1
- package/{src/lib/components/shared/filter/options/index.ts → lib/components/shared/filter/options/index.d.ts} +1 -1
- package/{src/lib/components/shared/filter/options/input/index.ts → lib/components/shared/filter/options/input/index.d.ts} +1 -1
- package/lib/components/shared/filter/options/input/input.component.d.ts +17 -0
- package/lib/components/shared/filter/options/options.component.d.ts +20 -0
- package/lib/components/shared/filter/options/options.module.d.ts +18 -0
- package/{src/lib/components/shared/filter/options/status/index.ts → lib/components/shared/filter/options/status/index.d.ts} +1 -1
- package/lib/components/shared/filter/options/status/status.component.d.ts +19 -0
- package/{src/lib/components/shared/filter/selected/index.ts → lib/components/shared/filter/selected/index.d.ts} +1 -1
- package/lib/components/shared/filter/selected/item/children/children.component.d.ts +16 -0
- package/{src/lib/components/shared/filter/selected/item/children/index.ts → lib/components/shared/filter/selected/item/children/index.d.ts} +1 -1
- package/lib/components/shared/filter/selected/item/currency/currency.component.d.ts +11 -0
- package/{src/lib/components/shared/filter/selected/item/currency/index.ts → lib/components/shared/filter/selected/item/currency/index.d.ts} +1 -1
- package/lib/components/shared/filter/selected/item/date-range/date-range.component.d.ts +12 -0
- package/{src/lib/components/shared/filter/selected/item/date-range/index.ts → lib/components/shared/filter/selected/item/date-range/index.d.ts} +1 -1
- package/lib/components/shared/filter/selected/item/date-with-action/date-with-action.component.d.ts +11 -0
- package/{src/lib/components/shared/filter/selected/item/date-with-action/index.ts → lib/components/shared/filter/selected/item/date-with-action/index.d.ts} +1 -1
- package/{src/lib/components/shared/filter/selected/item/index.ts → lib/components/shared/filter/selected/item/index.d.ts} +7 -7
- package/{src/lib/components/shared/filter/selected/item/input/index.ts → lib/components/shared/filter/selected/item/input/index.d.ts} +1 -1
- package/lib/components/shared/filter/selected/item/input/input.component.d.ts +11 -0
- package/lib/components/shared/filter/selected/item/item.component.d.ts +20 -0
- package/{src/lib/components/shared/filter/selected/item/status/index.ts → lib/components/shared/filter/selected/item/status/index.d.ts} +1 -1
- package/lib/components/shared/filter/selected/item/status/status.component.d.ts +13 -0
- package/lib/components/shared/filter/selected/selected.component.d.ts +18 -0
- package/lib/components/shared/filter/selected/selected.module.d.ts +21 -0
- package/{src/lib/components/shared/index.ts → lib/components/shared/index.d.ts} +4 -4
- package/{src/lib/components/shared/password-strength/index.ts → lib/components/shared/password-strength/index.d.ts} +2 -2
- package/lib/components/shared/password-strength/password-strength.component.d.ts +23 -0
- package/lib/components/shared/password-strength/password-strength.d.ts +5 -0
- package/lib/components/shared/password-strength/password-strength.module.d.ts +12 -0
- package/lib/components/shared/products/filter/filter.component.d.ts +12 -0
- package/{src/lib/components/shared/products/index.ts → lib/components/shared/products/index.d.ts} +2 -2
- package/lib/components/shared/products/products.component.d.ts +20 -0
- package/lib/components/shared/products/products.module.d.ts +11 -0
- package/{src/lib/components/shared/products/providers/index.ts → lib/components/shared/products/providers/index.d.ts} +1 -1
- package/lib/components/shared/products/providers/products.model.d.ts +13 -0
- package/{src/lib/components/shared/progress-bar/index.ts → lib/components/shared/progress-bar/index.d.ts} +3 -3
- package/lib/components/shared/progress-bar/progress-bar.component.d.ts +12 -0
- package/lib/components/shared/progress-bar/progress-bar.module.d.ts +8 -0
- package/lib/components/shared/progress-bar/progress-bar.service.d.ts +14 -0
- package/lib/interfaces/field-config.d.ts +54 -0
- package/{src/lib/interfaces/index.ts → lib/interfaces/index.d.ts} +1 -1
- package/monkey-front-components-0.0.387.tgz +0 -0
- package/monkey-front-components.d.ts +5 -0
- package/package.json +25 -5
- package/public-api.d.ts +1 -0
- package/karma.conf.js +0 -44
- package/monkey-front-components-0.0.384.tgz +0 -0
- package/ng-package.json +0 -10
- package/src/lib/components/base/base-component.ts +0 -359
- package/src/lib/components/base/base-dynamic-array.ts +0 -233
- package/src/lib/components/base/base-dynamic.ts +0 -90
- package/src/lib/components/base/base-scroll-component.ts +0 -52
- package/src/lib/components/base/base-validators.ts +0 -19
- package/src/lib/components/dynamic/button/button.component.html +0 -4
- package/src/lib/components/dynamic/button/button.component.scss +0 -7
- package/src/lib/components/dynamic/button/button.component.ts +0 -47
- package/src/lib/components/dynamic/dynamic-directive.ts +0 -102
- package/src/lib/components/dynamic/dynamic.module.ts +0 -53
- package/src/lib/components/dynamic/file-upload/file-upload.component.html +0 -10
- package/src/lib/components/dynamic/file-upload/file-upload.component.ts +0 -46
- package/src/lib/components/dynamic/form/dynamic-form-array.component.html +0 -19
- package/src/lib/components/dynamic/form/dynamic-form-array.component.scss +0 -10
- package/src/lib/components/dynamic/form/dynamic-form-array.component.ts +0 -75
- package/src/lib/components/dynamic/form/dynamic-form.component.html +0 -7
- package/src/lib/components/dynamic/form/dynamic-form.component.ts +0 -49
- package/src/lib/components/dynamic/input/input.component.html +0 -9
- package/src/lib/components/dynamic/input/input.component.ts +0 -58
- package/src/lib/components/dynamic/input-phone/input-phone.component.html +0 -7
- package/src/lib/components/dynamic/input-phone/input-phone.component.ts +0 -58
- package/src/lib/components/dynamic/radio/radio.component.html +0 -8
- package/src/lib/components/dynamic/radio/radio.component.ts +0 -22
- package/src/lib/components/dynamic/select/select.component.html +0 -14
- package/src/lib/components/dynamic/select/select.component.ts +0 -75
- package/src/lib/components/dynamic/select-search/select-search.component.html +0 -15
- package/src/lib/components/dynamic/select-search/select-search.component.ts +0 -76
- package/src/lib/components/shared/filter/filter.component.html +0 -51
- package/src/lib/components/shared/filter/filter.component.scss +0 -79
- package/src/lib/components/shared/filter/filter.component.ts +0 -117
- package/src/lib/components/shared/filter/filter.module.ts +0 -36
- package/src/lib/components/shared/filter/menu/menu.component.html +0 -28
- package/src/lib/components/shared/filter/menu/menu.component.scss +0 -62
- package/src/lib/components/shared/filter/menu/menu.component.ts +0 -122
- package/src/lib/components/shared/filter/menu/menu.module.ts +0 -41
- package/src/lib/components/shared/filter/options/children/children.component.html +0 -6
- package/src/lib/components/shared/filter/options/children/children.component.scss +0 -30
- package/src/lib/components/shared/filter/options/children/children.component.ts +0 -58
- package/src/lib/components/shared/filter/options/currency/currency.component.html +0 -3
- package/src/lib/components/shared/filter/options/currency/currency.component.scss +0 -19
- package/src/lib/components/shared/filter/options/currency/currency.component.ts +0 -52
- package/src/lib/components/shared/filter/options/date-range/date-range.component.html +0 -3
- package/src/lib/components/shared/filter/options/date-range/date-range.component.scss +0 -34
- package/src/lib/components/shared/filter/options/date-range/date-range.component.ts +0 -72
- package/src/lib/components/shared/filter/options/input/input.component.html +0 -3
- package/src/lib/components/shared/filter/options/input/input.component.scss +0 -19
- package/src/lib/components/shared/filter/options/input/input.component.ts +0 -52
- package/src/lib/components/shared/filter/options/options.component.html +0 -43
- package/src/lib/components/shared/filter/options/options.component.scss +0 -56
- package/src/lib/components/shared/filter/options/options.component.ts +0 -58
- package/src/lib/components/shared/filter/options/options.module.ts +0 -58
- package/src/lib/components/shared/filter/options/status/status.component.html +0 -4
- package/src/lib/components/shared/filter/options/status/status.component.scss +0 -29
- package/src/lib/components/shared/filter/options/status/status.component.ts +0 -73
- package/src/lib/components/shared/filter/selected/item/children/children.component.html +0 -19
- package/src/lib/components/shared/filter/selected/item/children/children.component.scss +0 -68
- package/src/lib/components/shared/filter/selected/item/children/children.component.ts +0 -49
- package/src/lib/components/shared/filter/selected/item/currency/currency.component.html +0 -1
- package/src/lib/components/shared/filter/selected/item/currency/currency.component.scss +0 -4
- package/src/lib/components/shared/filter/selected/item/currency/currency.component.ts +0 -26
- package/src/lib/components/shared/filter/selected/item/date-range/date-range.component.html +0 -2
- package/src/lib/components/shared/filter/selected/item/date-range/date-range.component.scss +0 -4
- package/src/lib/components/shared/filter/selected/item/date-range/date-range.component.ts +0 -39
- package/src/lib/components/shared/filter/selected/item/date-with-action/date-with-action.component.html +0 -1
- package/src/lib/components/shared/filter/selected/item/date-with-action/date-with-action.component.scss +0 -4
- package/src/lib/components/shared/filter/selected/item/date-with-action/date-with-action.component.ts +0 -29
- package/src/lib/components/shared/filter/selected/item/input/input.component.html +0 -1
- package/src/lib/components/shared/filter/selected/item/input/input.component.scss +0 -4
- package/src/lib/components/shared/filter/selected/item/input/input.component.ts +0 -26
- package/src/lib/components/shared/filter/selected/item/item.component.html +0 -38
- package/src/lib/components/shared/filter/selected/item/item.component.scss +0 -72
- package/src/lib/components/shared/filter/selected/item/item.component.ts +0 -71
- package/src/lib/components/shared/filter/selected/item/status/status.component.html +0 -1
- package/src/lib/components/shared/filter/selected/item/status/status.component.scss +0 -4
- package/src/lib/components/shared/filter/selected/item/status/status.component.ts +0 -36
- package/src/lib/components/shared/filter/selected/selected.component.html +0 -3
- package/src/lib/components/shared/filter/selected/selected.component.scss +0 -9
- package/src/lib/components/shared/filter/selected/selected.component.ts +0 -76
- package/src/lib/components/shared/filter/selected/selected.module.ts +0 -60
- package/src/lib/components/shared/password-strength/password-strength.component.html +0 -50
- package/src/lib/components/shared/password-strength/password-strength.component.scss +0 -70
- package/src/lib/components/shared/password-strength/password-strength.component.ts +0 -89
- package/src/lib/components/shared/password-strength/password-strength.module.ts +0 -24
- package/src/lib/components/shared/password-strength/password-strength.ts +0 -5
- package/src/lib/components/shared/products/filter/filter.component.html +0 -6
- package/src/lib/components/shared/products/filter/filter.component.scss +0 -20
- package/src/lib/components/shared/products/filter/filter.component.ts +0 -34
- package/src/lib/components/shared/products/products.component.html +0 -15
- package/src/lib/components/shared/products/products.component.scss +0 -70
- package/src/lib/components/shared/products/products.component.ts +0 -104
- package/src/lib/components/shared/products/products.module.ts +0 -13
- package/src/lib/components/shared/products/providers/products.model.ts +0 -60
- package/src/lib/components/shared/progress-bar/progress-bar.component.html +0 -3
- package/src/lib/components/shared/progress-bar/progress-bar.component.scss +0 -6
- package/src/lib/components/shared/progress-bar/progress-bar.component.ts +0 -27
- package/src/lib/components/shared/progress-bar/progress-bar.module.ts +0 -10
- package/src/lib/components/shared/progress-bar/progress-bar.service.ts +0 -59
- package/src/lib/interfaces/field-config.ts +0 -58
- package/src/public-api.ts +0 -5
- package/src/test.ts +0 -26
- package/tsconfig.lib.json +0 -20
- package/tsconfig.lib.prod.json +0 -10
- package/tsconfig.spec.json +0 -17
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { MonkeyEcxFilterMenu } from 'monkey-front-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MECXFilterOptionsStatusComponent implements OnInit, OnChanges, OnDestroy {
|
|
5
|
+
option: MonkeyEcxFilterMenu;
|
|
6
|
+
onSubmit: EventEmitter<any>;
|
|
7
|
+
_value: string;
|
|
8
|
+
private eventHandle;
|
|
9
|
+
private eventSubscription;
|
|
10
|
+
constructor();
|
|
11
|
+
private verifySelected;
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
ngOnDestroy(): void;
|
|
14
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
15
|
+
onHandleChecked(cmp: string): boolean;
|
|
16
|
+
onChangeFilter(event: any, value: string): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterOptionsStatusComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterOptionsStatusComponent, "mecx-filter-options-status", never, { "option": "option"; }, { "onSubmit": "onSubmit"; }, never, never>;
|
|
19
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './selected.module';
|
|
1
|
+
export * from './selected.module';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { MonkeyEcxFilterMenu } from 'monkey-front-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MECXFilterSelectedItemChildrenComponent implements OnChanges {
|
|
5
|
+
private elRef;
|
|
6
|
+
option: MonkeyEcxFilterMenu;
|
|
7
|
+
onShow: EventEmitter<any>;
|
|
8
|
+
onRemove: EventEmitter<any>;
|
|
9
|
+
_child: any;
|
|
10
|
+
constructor(elRef: ElementRef);
|
|
11
|
+
private validateValue;
|
|
12
|
+
private onHandleSelectedValue;
|
|
13
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemChildrenComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemChildrenComponent, "mecx-filter-selected-item-children", never, { "option": "option"; }, { "onShow": "onShow"; "onRemove": "onRemove"; }, never, never>;
|
|
16
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './children.component';
|
|
1
|
+
export * from './children.component';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { MonkeyEcxFilterMenu } from 'monkey-front-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MECXFilterSelectedItemCurrencyComponent implements OnChanges {
|
|
5
|
+
option: MonkeyEcxFilterMenu;
|
|
6
|
+
_value: any;
|
|
7
|
+
private onHandleSelectedValue;
|
|
8
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemCurrencyComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemCurrencyComponent, "mecx-filter-selected-item-currency", never, { "option": "option"; }, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './currency.component';
|
|
1
|
+
export * from './currency.component';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { MonkeyEcxFilterMenu, MonkeyEcxFilterMenuChildren } from 'monkey-front-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MECXFilterSelectedItemDateRangeComponent implements OnChanges {
|
|
5
|
+
option: MonkeyEcxFilterMenu | MonkeyEcxFilterMenuChildren;
|
|
6
|
+
_startDate: string;
|
|
7
|
+
_endDate: string;
|
|
8
|
+
private onHandleSelectedValue;
|
|
9
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemDateRangeComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemDateRangeComponent, "mecx-filter-selected-item-date-range", never, { "option": "option"; }, {}, never, never>;
|
|
12
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './date-range.component';
|
|
1
|
+
export * from './date-range.component';
|
package/lib/components/shared/filter/selected/item/date-with-action/date-with-action.component.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { MonkeyEcxFilterMenuChildren } from 'monkey-front-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MECXFilterSelectedItemDateWithActionComponent implements OnChanges {
|
|
5
|
+
option: MonkeyEcxFilterMenuChildren;
|
|
6
|
+
_date: string;
|
|
7
|
+
private onHandleSelectedValue;
|
|
8
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemDateWithActionComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemDateWithActionComponent, "mecx-filter-selected-item-date-with-action", never, { "option": "option"; }, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './date-with-action.component';
|
|
1
|
+
export * from './date-with-action.component';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export * from './children';
|
|
2
|
-
export * from './currency';
|
|
3
|
-
export * from './date-range';
|
|
4
|
-
export * from './date-with-action';
|
|
5
|
-
export * from './input';
|
|
6
|
-
export * from './item.component';
|
|
7
|
-
export * from './status';
|
|
1
|
+
export * from './children';
|
|
2
|
+
export * from './currency';
|
|
3
|
+
export * from './date-range';
|
|
4
|
+
export * from './date-with-action';
|
|
5
|
+
export * from './input';
|
|
6
|
+
export * from './item.component';
|
|
7
|
+
export * from './status';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './input.component';
|
|
1
|
+
export * from './input.component';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { MonkeyEcxFilterMenu } from 'monkey-front-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MECXFilterSelectedItemInputComponent implements OnChanges {
|
|
5
|
+
option: MonkeyEcxFilterMenu;
|
|
6
|
+
_value: any;
|
|
7
|
+
private onHandleSelectedValue;
|
|
8
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemInputComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemInputComponent, "mecx-filter-selected-item-input", never, { "option": "option"; }, {}, never, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { MonkeyEcxFilterMenu } from 'monkey-front-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MECXFilterSelectedItemComponent {
|
|
5
|
+
set option(value: MonkeyEcxFilterMenu);
|
|
6
|
+
onClose: EventEmitter<any>;
|
|
7
|
+
onSubmit: EventEmitter<any>;
|
|
8
|
+
_option: MonkeyEcxFilterMenu;
|
|
9
|
+
_showMenu: boolean;
|
|
10
|
+
_actionElement: HTMLElement;
|
|
11
|
+
closeMenu: () => void;
|
|
12
|
+
constructor();
|
|
13
|
+
onHandleShowMenu(): void;
|
|
14
|
+
onHandleClose(): void;
|
|
15
|
+
onHandleSubmit(event: any): void;
|
|
16
|
+
onHandleRemove(): void;
|
|
17
|
+
onHandleShowFromChildren(event: any): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemComponent, "mecx-filter-selected-item", never, { "option": "option"; }, { "onClose": "onClose"; "onSubmit": "onSubmit"; }, never, never>;
|
|
20
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './status.component';
|
|
1
|
+
export * from './status.component';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { MonkeyEcxFilterMenu } from 'monkey-front-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MECXFilterSelectedItemStatusComponent implements OnChanges {
|
|
5
|
+
option: MonkeyEcxFilterMenu;
|
|
6
|
+
labelMoreValues: string;
|
|
7
|
+
_selectedValue: string;
|
|
8
|
+
_labelMoreValues: string;
|
|
9
|
+
private onHandleSelectedValue;
|
|
10
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MECXFilterSelectedItemStatusComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MECXFilterSelectedItemStatusComponent, "mecx-filter-selected-item-status", never, { "option": "option"; "labelMoreValues": "labelMoreValues"; }, {}, never, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
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,4 +1,4 @@
|
|
|
1
|
-
export * from './filter';
|
|
2
|
-
export * from './password-strength';
|
|
3
|
-
export * from './progress-bar';
|
|
4
|
-
export * from './products';
|
|
1
|
+
export * from './filter';
|
|
2
|
+
export * from './password-strength';
|
|
3
|
+
export * from './progress-bar';
|
|
4
|
+
export * from './products';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './password-strength.component';
|
|
2
|
-
export * from './password-strength.module';
|
|
1
|
+
export * from './password-strength.component';
|
|
2
|
+
export * from './password-strength.module';
|
|
@@ -0,0 +1,23 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
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
|
+
}
|
package/{src/lib/components/shared/products/index.ts → lib/components/shared/products/index.d.ts}
RENAMED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './products.component';
|
|
2
|
-
export * from './products.module';
|
|
1
|
+
export * from './products.component';
|
|
2
|
+
export * from './products.module';
|
|
@@ -0,0 +1,20 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
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 +1 @@
|
|
|
1
|
-
export * from './products.model';
|
|
1
|
+
export * from './products.model';
|
|
@@ -0,0 +1,13 @@
|
|
|
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,3 +1,3 @@
|
|
|
1
|
-
export * from './progress-bar.component';
|
|
2
|
-
export * from './progress-bar.module';
|
|
3
|
-
export * from './progress-bar.service';
|
|
1
|
+
export * from './progress-bar.component';
|
|
2
|
+
export * from './progress-bar.module';
|
|
3
|
+
export * from './progress-bar.service';
|
|
@@ -0,0 +1,12 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
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
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './field-config';
|
|
1
|
+
export * from './field-config';
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monkey-front-components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.387",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "13.1.1",
|
|
6
6
|
"@angular/core": "13.1.1",
|
|
@@ -9,12 +9,32 @@
|
|
|
9
9
|
"rxjs": "^6.6.3",
|
|
10
10
|
"@ngx-translate/core": "^13.0.0",
|
|
11
11
|
"monkey-style-guide": "2.0.152",
|
|
12
|
-
"monkey-front-core": "0.0.
|
|
12
|
+
"monkey-front-core": "0.0.241",
|
|
13
13
|
"ngx-mask": "^12.0.0"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"monkey-style-guide": "2.0.152",
|
|
17
|
-
"monkey-front-core": "0.0.
|
|
17
|
+
"monkey-front-core": "0.0.241",
|
|
18
18
|
"tslib": "^2.3.0"
|
|
19
|
-
}
|
|
20
|
-
|
|
19
|
+
},
|
|
20
|
+
"module": "fesm2015/monkey-front-components.mjs",
|
|
21
|
+
"es2020": "fesm2020/monkey-front-components.mjs",
|
|
22
|
+
"esm2020": "esm2020/monkey-front-components.mjs",
|
|
23
|
+
"fesm2020": "fesm2020/monkey-front-components.mjs",
|
|
24
|
+
"fesm2015": "fesm2015/monkey-front-components.mjs",
|
|
25
|
+
"typings": "monkey-front-components.d.ts",
|
|
26
|
+
"exports": {
|
|
27
|
+
"./package.json": {
|
|
28
|
+
"default": "./package.json"
|
|
29
|
+
},
|
|
30
|
+
".": {
|
|
31
|
+
"types": "./monkey-front-components.d.ts",
|
|
32
|
+
"esm2020": "./esm2020/monkey-front-components.mjs",
|
|
33
|
+
"es2020": "./fesm2020/monkey-front-components.mjs",
|
|
34
|
+
"es2015": "./fesm2015/monkey-front-components.mjs",
|
|
35
|
+
"node": "./fesm2015/monkey-front-components.mjs",
|
|
36
|
+
"default": "./fesm2020/monkey-front-components.mjs"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"sideEffects": false
|
|
40
|
+
}
|
package/public-api.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/components';
|
package/karma.conf.js
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
// Karma configuration file, see link for more information
|
|
2
|
-
// https://karma-runner.github.io/1.0/config/configuration-file.html
|
|
3
|
-
|
|
4
|
-
module.exports = function (config) {
|
|
5
|
-
config.set({
|
|
6
|
-
basePath: '',
|
|
7
|
-
frameworks: ['jasmine', '@angular-devkit/build-angular'],
|
|
8
|
-
plugins: [
|
|
9
|
-
require('karma-jasmine'),
|
|
10
|
-
require('karma-chrome-launcher'),
|
|
11
|
-
require('karma-jasmine-html-reporter'),
|
|
12
|
-
require('karma-coverage'),
|
|
13
|
-
require('@angular-devkit/build-angular/plugins/karma')
|
|
14
|
-
],
|
|
15
|
-
client: {
|
|
16
|
-
jasmine: {
|
|
17
|
-
// you can add configuration options for Jasmine here
|
|
18
|
-
// the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html
|
|
19
|
-
// for example, you can disable the random execution with `random: false`
|
|
20
|
-
// or set a specific seed with `seed: 4321`
|
|
21
|
-
},
|
|
22
|
-
clearContext: false // leave Jasmine Spec Runner output visible in browser
|
|
23
|
-
},
|
|
24
|
-
jasmineHtmlReporter: {
|
|
25
|
-
suppressAll: true // removes the duplicated traces
|
|
26
|
-
},
|
|
27
|
-
coverageReporter: {
|
|
28
|
-
dir: require('path').join(__dirname, '../../coverage/monkey-front-components'),
|
|
29
|
-
subdir: '.',
|
|
30
|
-
reporters: [
|
|
31
|
-
{ type: 'html' },
|
|
32
|
-
{ type: 'text-summary' }
|
|
33
|
-
]
|
|
34
|
-
},
|
|
35
|
-
reporters: ['progress', 'kjhtml'],
|
|
36
|
-
port: 9876,
|
|
37
|
-
colors: true,
|
|
38
|
-
logLevel: config.LOG_INFO,
|
|
39
|
-
autoWatch: true,
|
|
40
|
-
browsers: ['Chrome'],
|
|
41
|
-
singleRun: false,
|
|
42
|
-
restartOnFileChange: true
|
|
43
|
-
});
|
|
44
|
-
};
|
|
Binary file
|
package/ng-package.json
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
|
|
3
|
-
"dest": "../../dist/monkey-front-components",
|
|
4
|
-
"assets": ["assets"],
|
|
5
|
-
"lib": {
|
|
6
|
-
"entryFile": "src/public-api.ts",
|
|
7
|
-
"styleIncludePaths": ["assets"]
|
|
8
|
-
},
|
|
9
|
-
"allowedNonPeerDependencies": ["."]
|
|
10
|
-
}
|