ecabs-components 0.0.2 → 0.0.4
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 +24 -24
- package/esm2020/lib/base/directives/digits-only.directive.module.mjs +22 -0
- package/esm2020/lib/ecabs-checkbox-toggle/ecabs-checkbox-toggle.component.mjs +85 -0
- package/esm2020/lib/ecabs-checkbox-toggle/ecabs-checkbox-toggle.module.mjs +36 -0
- package/esm2020/lib/ecabs-date-picker/components/ecabs-date-picker-header/ecabs-date-picker-header.component.mjs +17 -0
- package/esm2020/lib/ecabs-date-picker/ecabs-date-picker.component.mjs +85 -0
- package/esm2020/lib/ecabs-date-picker/ecabs-date-picker.module.mjs +59 -0
- package/esm2020/lib/ecabs-increment/ecabs-increment.component.mjs +78 -0
- package/esm2020/lib/ecabs-increment/ecabs-increment.module.mjs +23 -0
- package/esm2020/lib/ecabs-input/ecabs-input.module.mjs +6 -6
- package/esm2020/lib/ecabs-loading/ecabs-loading.component.mjs +3 -3
- package/esm2020/lib/ecabs-phone/ecabs-phone.component.mjs +104 -0
- package/esm2020/lib/ecabs-phone/ecabs-phone.module.mjs +22 -0
- package/esm2020/lib/ecabs-picker-header/ecabs-picker-header.component.mjs +50 -0
- package/esm2020/lib/ecabs-picker-header/ecabs-picker-header.module.mjs +22 -0
- package/esm2020/lib/ecabs-radio-button-list/ecabs-radio-button-list.component.mjs +65 -0
- package/esm2020/lib/ecabs-radio-button-list/ecabs-radio-button-list.module.mjs +32 -0
- package/esm2020/lib/ecabs-select/ecabs-select.component.mjs +17 -5
- package/esm2020/lib/ecabs-select/ecabs-select.module.mjs +11 -4
- package/esm2020/lib/ecabs-timepicker/componets/ecabs-time-list-panel/ecabs-time-list-panel.component.mjs +137 -0
- package/esm2020/lib/ecabs-timepicker/config.model.mjs +2 -0
- package/esm2020/lib/ecabs-timepicker/ecabs-timepicker.component.mjs +312 -0
- package/esm2020/lib/ecabs-timepicker/ecabs-timepicker.module.mjs +20 -0
- package/esm2020/lib/ecabs-timepicker/ecabs-timepicker.service.mjs +31 -0
- package/esm2020/lib/models/timepicker.models.mjs +2 -0
- package/esm2020/lib/services/ecabs-components.service.mjs +1 -1
- package/esm2020/public-api.mjs +21 -3
- package/fesm2015/ecabs-components.mjs +1153 -49
- package/fesm2015/ecabs-components.mjs.map +1 -1
- package/fesm2020/ecabs-components.mjs +1148 -49
- package/fesm2020/ecabs-components.mjs.map +1 -1
- package/lib/base/directives/digits-only.directive.d.ts +3 -3
- package/lib/base/directives/digits-only.directive.module.d.ts +8 -0
- package/lib/ecabs-checkbox-toggle/ecabs-checkbox-toggle.component.d.ts +28 -0
- package/lib/ecabs-checkbox-toggle/ecabs-checkbox-toggle.module.d.ts +12 -0
- package/lib/ecabs-date-picker/components/ecabs-date-picker-header/ecabs-date-picker-header.component.d.ts +6 -0
- package/lib/ecabs-date-picker/ecabs-date-picker.component.d.ts +29 -0
- package/lib/ecabs-date-picker/ecabs-date-picker.module.d.ts +26 -0
- package/lib/ecabs-increment/ecabs-increment.component.d.ts +26 -0
- package/lib/ecabs-increment/ecabs-increment.module.d.ts +13 -0
- package/lib/ecabs-input/ecabs-input.module.d.ts +6 -6
- package/lib/ecabs-loading/ecabs-loading.component.d.ts +1 -1
- package/lib/ecabs-phone/ecabs-phone.component.d.ts +32 -0
- package/lib/ecabs-phone/ecabs-phone.module.d.ts +12 -0
- package/lib/ecabs-picker-header/ecabs-picker-header.component.d.ts +19 -0
- package/lib/ecabs-picker-header/ecabs-picker-header.module.d.ts +12 -0
- package/lib/ecabs-radio-button-list/ecabs-radio-button-list.component.d.ts +24 -0
- package/lib/ecabs-radio-button-list/ecabs-radio-button-list.module.d.ts +11 -0
- package/lib/ecabs-select/ecabs-select.component.d.ts +5 -1
- package/lib/ecabs-select/ecabs-select.module.d.ts +4 -3
- package/lib/ecabs-timepicker/componets/ecabs-time-list-panel/ecabs-time-list-panel.component.d.ts +40 -0
- package/lib/ecabs-timepicker/config.model.d.ts +5 -0
- package/lib/ecabs-timepicker/ecabs-timepicker.component.d.ts +53 -0
- package/lib/ecabs-timepicker/ecabs-timepicker.module.d.ts +10 -0
- package/lib/ecabs-timepicker/ecabs-timepicker.service.d.ts +12 -0
- package/lib/models/timepicker.models.d.ts +6 -0
- package/package.json +2 -2
- package/public-api.d.ts +20 -2
- package/styles/material/overrides/_datepicker.scss +25 -1
- package/styles/material/overrides/_phone.scss +2 -2
- package/styles/scss/modules/_datepicker.scss +3 -3
- package/styles/scss/modules/_phone.scss +3 -1
- package/styles/scss/modules/_select.scss +16 -0
- package/lib/base/directives/digits-only.directive.ts +0 -129
- package/lib/base/element-base.ts +0 -72
- package/lib/base/element-wrapper/element-wrapper.component.html +0 -30
- package/lib/base/element-wrapper/element-wrapper.component.ts +0 -33
- package/lib/base/element-wrapper/element-wrapper.module.ts +0 -30
- package/lib/base/hint/hint.component.html +0 -1
- package/lib/base/hint/hint.component.scss +0 -0
- package/lib/base/hint/hint.component.ts +0 -12
- package/lib/base/hint/hint.module.ts +0 -13
- package/lib/base/validation/validation.component.html +0 -8
- package/lib/base/validation/validation.component.scss +0 -0
- package/lib/base/validation/validation.component.ts +0 -84
- package/lib/base/validation/validation.module.ts +0 -12
- package/lib/ecabs-buttons/ecabs-buttons.component.html +0 -18
- package/lib/ecabs-buttons/ecabs-buttons.component.ts +0 -54
- package/lib/ecabs-buttons/ecabs-buttons.module.ts +0 -13
- package/lib/ecabs-input/ecabs-input.component.html +0 -26
- package/lib/ecabs-input/ecabs-input.component.ts +0 -83
- package/lib/ecabs-input/ecabs-input.module.ts +0 -14
- package/lib/ecabs-loading/ecabs-loading.component.html +0 -7
- package/lib/ecabs-loading/ecabs-loading.component.spec.ts +0 -24
- package/lib/ecabs-loading/ecabs-loading.component.ts +0 -11
- package/lib/ecabs-loading/ecabs-loading.module.ts +0 -11
- package/lib/ecabs-loading/spinner/spinner.component.html +0 -5
- package/lib/ecabs-loading/spinner/spinner.component.scss +0 -61
- package/lib/ecabs-loading/spinner/spinner.component.spec.ts +0 -24
- package/lib/ecabs-loading/spinner/spinner.component.ts +0 -11
- package/lib/ecabs-select/ecabs-select.component.html +0 -38
- package/lib/ecabs-select/ecabs-select.component.ts +0 -246
- package/lib/ecabs-select/ecabs-select.module.ts +0 -34
- package/lib/ecabs-textarea/ecabs-textarea.component.html +0 -13
- package/lib/ecabs-textarea/ecabs-textarea.component.ts +0 -61
- package/lib/ecabs-textarea/ecabs-textarea.module.ts +0 -12
- package/lib/services/ecabs-components.service.ts +0 -33
- package/public-api.ts +0 -11
- package/test.ts +0 -27
package/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
# EcabsComponents
|
|
2
|
-
|
|
3
|
-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 14.2.0.
|
|
4
|
-
|
|
5
|
-
## Code scaffolding
|
|
6
|
-
|
|
7
|
-
Run `ng generate component component-name --project ecabs-components` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project ecabs-components`.
|
|
8
|
-
> Note: Don't forget to add `--project ecabs-components` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
-
|
|
10
|
-
## Build
|
|
11
|
-
|
|
12
|
-
Run `ng build ecabs-components` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
-
|
|
14
|
-
## Publishing
|
|
15
|
-
|
|
16
|
-
After building your library with `ng build ecabs-components`, go to the dist folder `cd dist/ecabs-components` and run `npm publish`.
|
|
17
|
-
|
|
18
|
-
## Running unit tests
|
|
19
|
-
|
|
20
|
-
Run `ng test ecabs-components` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
-
|
|
22
|
-
## Further help
|
|
23
|
-
|
|
24
|
-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
1
|
+
# EcabsComponents
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 14.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project ecabs-components` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project ecabs-components`.
|
|
8
|
+
> Note: Don't forget to add `--project ecabs-components` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build ecabs-components` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build ecabs-components`, go to the dist folder `cd dist/ecabs-components` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test ecabs-components` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { NgModule } from '@angular/core';
|
|
3
|
+
import { DigitsOnlyDirective } from './digits-only.directive';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export class DigitsOnlyDirectivesModule {
|
|
6
|
+
}
|
|
7
|
+
DigitsOnlyDirectivesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DigitsOnlyDirectivesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
8
|
+
DigitsOnlyDirectivesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: DigitsOnlyDirectivesModule, declarations: [DigitsOnlyDirective], imports: [CommonModule], exports: [DigitsOnlyDirective] });
|
|
9
|
+
DigitsOnlyDirectivesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DigitsOnlyDirectivesModule, imports: [CommonModule] });
|
|
10
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DigitsOnlyDirectivesModule, decorators: [{
|
|
11
|
+
type: NgModule,
|
|
12
|
+
args: [{
|
|
13
|
+
imports: [CommonModule],
|
|
14
|
+
declarations: [
|
|
15
|
+
DigitsOnlyDirective,
|
|
16
|
+
],
|
|
17
|
+
exports: [
|
|
18
|
+
DigitsOnlyDirective,
|
|
19
|
+
],
|
|
20
|
+
}]
|
|
21
|
+
}] });
|
|
22
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGlnaXRzLW9ubHkuZGlyZWN0aXZlLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2VjYWJzLWNvbXBvbmVudHMvc3JjL2xpYi9iYXNlL2RpcmVjdGl2ZXMvZGlnaXRzLW9ubHkuZGlyZWN0aXZlLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUV6QyxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQzs7QUFXOUQsTUFBTSxPQUFPLDBCQUEwQjs7d0hBQTFCLDBCQUEwQjt5SEFBMUIsMEJBQTBCLGlCQU5uQyxtQkFBbUIsYUFGVixZQUFZLGFBS3JCLG1CQUFtQjt5SEFHViwwQkFBMEIsWUFSMUIsWUFBWTs0RkFRWiwwQkFBMEI7a0JBVHRDLFFBQVE7bUJBQUU7b0JBQ1QsT0FBTyxFQUFFLENBQUUsWUFBWSxDQUFFO29CQUN6QixZQUFZLEVBQUU7d0JBQ1osbUJBQW1CO3FCQUNwQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsbUJBQW1CO3FCQUNwQjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XHJcbmltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5pbXBvcnQgeyBEaWdpdHNPbmx5RGlyZWN0aXZlIH0gZnJvbSAnLi9kaWdpdHMtb25seS5kaXJlY3RpdmUnO1xyXG5cclxuQE5nTW9kdWxlKCB7XHJcbiAgaW1wb3J0czogWyBDb21tb25Nb2R1bGUgXSxcclxuICBkZWNsYXJhdGlvbnM6IFtcclxuICAgIERpZ2l0c09ubHlEaXJlY3RpdmUsXHJcbiAgXSxcclxuICBleHBvcnRzOiBbXHJcbiAgICBEaWdpdHNPbmx5RGlyZWN0aXZlLFxyXG4gIF0sXHJcbn0gKVxyXG5leHBvcnQgY2xhc3MgRGlnaXRzT25seURpcmVjdGl2ZXNNb2R1bGUgeyB9XHJcbiJdfQ==
|