@apipass/containers 0.2.16 → 1.0.7

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.
Files changed (36) hide show
  1. package/README.md +33 -33
  2. package/assets/css/buttons.scss +118 -118
  3. package/assets/css/colors.scss +31 -31
  4. package/assets/css/fonts.scss +24 -24
  5. package/assets/css/pt_sans.scss +143 -143
  6. package/assets/css/spacing.scss +28 -28
  7. package/assets/css/texts.scss +18 -18
  8. package/assets/css/toaster.scss +286 -286
  9. package/breadcrumb/breadcrumb.component.d.ts +14 -15
  10. package/centralized-container/centralized-container.component.d.ts +13 -13
  11. package/configuration-page-content/configuration-page.component.d.ts +21 -21
  12. package/containers.module.d.ts +19 -18
  13. package/{esm2015/apipass-containers.js → esm2020/apipass-containers.mjs} +4 -4
  14. package/esm2020/breadcrumb/breadcrumb.component.mjs +32 -0
  15. package/esm2020/centralized-container/centralized-container.component.mjs +36 -0
  16. package/esm2020/configuration-page-content/configuration-page.component.mjs +55 -0
  17. package/esm2020/containers.module.mjs +74 -0
  18. package/{esm2015/public-api.js → esm2020/public-api.mjs} +6 -6
  19. package/fesm2015/apipass-containers.mjs +186 -0
  20. package/fesm2015/apipass-containers.mjs.map +1 -0
  21. package/fesm2020/apipass-containers.mjs +186 -0
  22. package/fesm2020/apipass-containers.mjs.map +1 -0
  23. package/{apipass-containers.d.ts → index.d.ts} +5 -5
  24. package/package.json +33 -23
  25. package/public-api.d.ts +5 -5
  26. package/assets/css/inputs.scss +0 -197
  27. package/bundles/apipass-containers.umd.js +0 -378
  28. package/bundles/apipass-containers.umd.js.map +0 -1
  29. package/bundles/apipass-containers.umd.min.js +0 -2
  30. package/bundles/apipass-containers.umd.min.js.map +0 -1
  31. package/esm2015/breadcrumb/breadcrumb.component.js +0 -68
  32. package/esm2015/centralized-container/centralized-container.component.js +0 -80
  33. package/esm2015/configuration-page-content/configuration-page.component.js +0 -120
  34. package/esm2015/containers.module.js +0 -76
  35. package/fesm2015/apipass-containers.js +0 -325
  36. package/fesm2015/apipass-containers.js.map +0 -1
@@ -0,0 +1 @@
1
+ {"version":3,"file":"apipass-containers.mjs","sources":["../../../projects/containers/src/centralized-container/centralized-container.component.ts","../../../projects/containers/src/centralized-container/centralized-container.component.html","../../../projects/containers/src/configuration-page-content/configuration-page.component.ts","../../../projects/containers/src/configuration-page-content/configuration-page.component.html","../../../projects/containers/src/breadcrumb/breadcrumb.component.ts","../../../projects/containers/src/breadcrumb/breadcrumb.component.html","../../../projects/containers/src/containers.module.ts","../../../projects/containers/src/apipass-containers.ts"],"sourcesContent":["import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core'\r\nimport { NgScrollbar } from 'ngx-scrollbar'\r\n\r\n@Component({\r\n selector: 'centralized-container',\r\n templateUrl: 'centralized-container.component.html',\r\n styleUrls: ['centralized-container.component.scss']\r\n})\r\nexport class CentralizedContainerComponent {\n public searchTerm = ''\r\n\r\n @Input() public hasSearch = true\r\n @Input() public ignoreZoom = false\r\n\r\n @Output()\r\n public searchChanged = new EventEmitter<string>()\r\n\r\n @ViewChild(NgScrollbar, { static: true })\r\n public scrollbarRef: NgScrollbar | undefined\r\n\r\n public searchTermChanged (): void {\r\n this.searchChanged.emit(this.searchTerm)\r\n }\n}\r\n","<div class=\"centralized-container\" [ngClass]=\"{'centralized-container-zoom': !ignoreZoom}\">\r\n <ng-scrollbar [visibility]=\"'hover'\">\r\n <div class=\"list-content\">\r\n <div class=\"list-search\" *ngIf=\"hasSearch\">\r\n <mat-form-field>\r\n <input matInput type=\"search\" [(ngModel)]=\"searchTerm\" (ngModelChange)=\"searchTermChanged()\" />\r\n <mat-icon class=\"search-icon\" matSuffix>search</mat-icon>\r\n </mat-form-field>\r\n </div>\r\n <ng-content></ng-content>\r\n </div>\r\n </ng-scrollbar>\r\n</div>\r\n","import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core'\r\nimport { NgScrollbar } from 'ngx-scrollbar'\r\nimport { Subject } from 'rxjs'\r\nimport { debounceTime, distinctUntilChanged } from 'rxjs/operators'\r\n\r\n@Component({\r\n selector: 'configuration-page-container',\r\n templateUrl: 'configuration-page.component.html',\r\n styleUrls: ['configuration-page.component.scss']\r\n})\r\nexport class ConfigurationPageComponent {\n public searchTerm = ''\r\n\r\n @Input() public verticalSeparate = false\r\n @Input() public footerPaginator = false\r\n @Input() public hasSearch = true\r\n @Input() public searchDebounceTime = 1000\r\n @Input() public searchLabel = ''\r\n\r\n txtQueryChanged: Subject<string> = new Subject<string>()\r\n\r\n @Output() public searchChanged = new EventEmitter<string>()\r\n @Output() public searchClick = new EventEmitter<string>()\r\n\r\n @ViewChild(NgScrollbar, { static: true })\r\n public scrollbarRef: NgScrollbar | undefined\r\n\r\n constructor () {\r\n this.txtQueryChanged.pipe(\r\n debounceTime(this.searchDebounceTime),\r\n distinctUntilChanged()).subscribe(model => { this.searchChanged.next(model) }\r\n )\r\n }\r\n\r\n public searchTermChanged (): void {\r\n this.txtQueryChanged.next(this.searchTerm)\r\n }\r\n\r\n public searchIconClick (): void {\r\n this.searchClick.next(this.searchTerm)\r\n }\n}\r\n","<div class=\"configuration-page-container\" [ngClass]=\"{'footer-paginator': footerPaginator}\">\r\n <ng-scrollbar [visibility]=\"'hover'\">\r\n <div class=\"list-content\">\r\n <div class=\"list-search\" *ngIf=\"hasSearch\">\r\n <mat-form-field class=\"apipass-search-input-text search-input-item small-text\"\r\n [ngClass]=\"{'label-input': searchLabel}\"\r\n appearance=\"fill\">\r\n <mat-label *ngIf=\"searchLabel\">{{searchLabel}}</mat-label>\r\n <input matInput type=\"search\" class=\"search-input\"\r\n [(ngModel)]=\"searchTerm\"\r\n (ngModelChange)=\"searchTermChanged()\"\r\n />\r\n <mat-icon class=\"search-icon\" matSuffix (click)=\"searchIconClick()\">search</mat-icon>\r\n </mat-form-field>\r\n </div>\r\n\r\n <div class=\"container-content\" [ngClass]=\"{'vertical-separate': verticalSeparate}\">\r\n <ng-content></ng-content>\r\n </div>\r\n </div>\r\n </ng-scrollbar>\r\n</div>\r\n","import { Component, EventEmitter, Input, Output } from '@angular/core'\r\n\r\n@Component({\r\n selector: 'breadcrumb-component',\r\n templateUrl: 'breadcrumb.component.html',\r\n styleUrls: ['breadcrumb.component.scss']\r\n})\r\nexport class BreadcrumbComponent {\r\n @Input() public icon = 'keyboard_arrow_right'\r\n @Input() public items: any = []\r\n @Input() public labelProperty = 'label'\r\n @Output() itemClick = new EventEmitter<{ index: number, item: any }>()\r\n\r\n public eventClick (index: number, item: any): any {\r\n this.items.splice(index + 1, this.items.length - 1)\r\n this.itemClick.emit({ index, item })\r\n }\n}\r\n","<mat-toolbar *ngIf=\"items.length > 0\" color=\"primary\">\r\n <span *ngFor=\"let header of items; let indx = index\">\r\n <a mat-button (click)=\"eventClick(indx, header)\">{{header[labelProperty]}}\r\n <mat-icon>{{icon}}</mat-icon>\r\n </a>\r\n </span>\r\n</mat-toolbar>","import { NgModule } from '@angular/core'\r\nimport { CommonModule } from '@angular/common'\r\nimport { RouterModule } from '@angular/router'\r\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms'\r\nimport { CentralizedContainerComponent } from './centralized-container/centralized-container.component'\r\nimport { ConfigurationPageComponent } from './configuration-page-content/configuration-page.component'\r\nimport { BreadcrumbComponent } from './breadcrumb/breadcrumb.component'\r\nimport { NgScrollbarModule } from 'ngx-scrollbar'\r\nimport { MatFormFieldModule } from '@angular/material/form-field'\r\nimport { MatIconModule } from '@angular/material/icon'\r\nimport { MatInputModule } from '@angular/material/input'\r\nimport { IconsModule } from '@apipass/icons'\r\nimport { ButtonsModule } from '@apipass/buttons'\r\nimport { MatToolbarModule } from '@angular/material/toolbar'\r\n@NgModule({\r\n imports: [\r\n CommonModule,\r\n RouterModule,\r\n FormsModule,\r\n ReactiveFormsModule,\r\n IconsModule,\r\n ButtonsModule,\r\n NgScrollbarModule,\r\n MatFormFieldModule,\r\n MatIconModule,\r\n MatInputModule,\r\n MatToolbarModule\r\n ],\r\n declarations: [\r\n CentralizedContainerComponent,\r\n ConfigurationPageComponent,\r\n BreadcrumbComponent\r\n ],\r\n exports: [\r\n CentralizedContainerComponent,\r\n ConfigurationPageComponent,\r\n BreadcrumbComponent\r\n ],\r\n providers: []\r\n})\r\nexport class ContainersModule {}\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i2","i3"],"mappings":"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"}
@@ -0,0 +1,186 @@
1
+ import * as i0 from '@angular/core';
2
+ import { EventEmitter, Component, Input, Output, ViewChild, NgModule } from '@angular/core';
3
+ import * as i1 from '@angular/common';
4
+ import { CommonModule } from '@angular/common';
5
+ import { RouterModule } from '@angular/router';
6
+ import * as i2 from '@angular/forms';
7
+ import { FormsModule, ReactiveFormsModule } from '@angular/forms';
8
+ import * as i3 from 'ngx-scrollbar';
9
+ import { NgScrollbar, NgScrollbarModule } from 'ngx-scrollbar';
10
+ export * from 'ngx-scrollbar';
11
+ import * as i4 from '@angular/material/form-field';
12
+ import { MatFormFieldModule } from '@angular/material/form-field';
13
+ import * as i5 from '@angular/material/icon';
14
+ import { MatIconModule } from '@angular/material/icon';
15
+ import * as i6 from '@angular/material/input';
16
+ import { MatInputModule } from '@angular/material/input';
17
+ import { Subject } from 'rxjs';
18
+ import { debounceTime, distinctUntilChanged } from 'rxjs/operators';
19
+ import * as i3$1 from '@angular/material/toolbar';
20
+ import { MatToolbarModule } from '@angular/material/toolbar';
21
+ import { IconsModule } from '@apipass/icons';
22
+ import { ButtonsModule } from '@apipass/buttons';
23
+
24
+ class CentralizedContainerComponent {
25
+ constructor() {
26
+ this.searchTerm = '';
27
+ this.hasSearch = true;
28
+ this.ignoreZoom = false;
29
+ this.searchChanged = new EventEmitter();
30
+ }
31
+ searchTermChanged() {
32
+ this.searchChanged.emit(this.searchTerm);
33
+ }
34
+ }
35
+ CentralizedContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: CentralizedContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
36
+ CentralizedContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: CentralizedContainerComponent, selector: "centralized-container", inputs: { hasSearch: "hasSearch", ignoreZoom: "ignoreZoom" }, outputs: { searchChanged: "searchChanged" }, viewQueries: [{ propertyName: "scrollbarRef", first: true, predicate: NgScrollbar, descendants: true, static: true }], ngImport: i0, template: "<div class=\"centralized-container\" [ngClass]=\"{'centralized-container-zoom': !ignoreZoom}\">\r\n <ng-scrollbar [visibility]=\"'hover'\">\r\n <div class=\"list-content\">\r\n <div class=\"list-search\" *ngIf=\"hasSearch\">\r\n <mat-form-field>\r\n <input matInput type=\"search\" [(ngModel)]=\"searchTerm\" (ngModelChange)=\"searchTermChanged()\" />\r\n <mat-icon class=\"search-icon\" matSuffix>search</mat-icon>\r\n </mat-form-field>\r\n </div>\r\n <ng-content></ng-content>\r\n </div>\r\n </ng-scrollbar>\r\n</div>\r\n", styles: [".centralized-container{display:flex;height:calc(100% - 70px);padding-left:15px;padding-right:15px}.centralized-container.centralized-container-zoom{font-size:62.5%}.centralized-container>ng-scrollbar{width:100%}.centralized-container .list-content{display:flex;flex-direction:column;height:100%;padding:30px 25px 25px;box-sizing:border-box}.centralized-container .list-content .list-search{position:absolute;place-self:flex-end;width:21%;font-size:1.4em}.centralized-container .list-content .list-search mat-form-field{width:100%}.centralized-container .list-content .list-search mat-form-field .search-icon{opacity:.5;font-size:1.8rem}:host ::ng-deep .list-search mat-form-field.mat-form-field-appearance-legacy .mat-form-field-wrapper .mat-form-field-underline{background-color:var(--color-tertiary)}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i3.NgScrollbar, selector: "ng-scrollbar", inputs: ["disabled", "sensorDisabled", "pointerEventsDisabled", "viewportPropagateMouseMove", "autoHeightDisabled", "autoWidthDisabled", "viewClass", "trackClass", "thumbClass", "minThumbSize", "trackClickScrollDuration", "pointerEventsMethod", "track", "visibility", "appearance", "position", "sensorDebounce", "scrollAuditTime"], outputs: ["updated"], exportAs: ["ngScrollbar"] }, { kind: "component", type: i4.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i4.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "component", type: i5.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i6.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }] });
37
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: CentralizedContainerComponent, decorators: [{
38
+ type: Component,
39
+ args: [{ selector: 'centralized-container', template: "<div class=\"centralized-container\" [ngClass]=\"{'centralized-container-zoom': !ignoreZoom}\">\r\n <ng-scrollbar [visibility]=\"'hover'\">\r\n <div class=\"list-content\">\r\n <div class=\"list-search\" *ngIf=\"hasSearch\">\r\n <mat-form-field>\r\n <input matInput type=\"search\" [(ngModel)]=\"searchTerm\" (ngModelChange)=\"searchTermChanged()\" />\r\n <mat-icon class=\"search-icon\" matSuffix>search</mat-icon>\r\n </mat-form-field>\r\n </div>\r\n <ng-content></ng-content>\r\n </div>\r\n </ng-scrollbar>\r\n</div>\r\n", styles: [".centralized-container{display:flex;height:calc(100% - 70px);padding-left:15px;padding-right:15px}.centralized-container.centralized-container-zoom{font-size:62.5%}.centralized-container>ng-scrollbar{width:100%}.centralized-container .list-content{display:flex;flex-direction:column;height:100%;padding:30px 25px 25px;box-sizing:border-box}.centralized-container .list-content .list-search{position:absolute;place-self:flex-end;width:21%;font-size:1.4em}.centralized-container .list-content .list-search mat-form-field{width:100%}.centralized-container .list-content .list-search mat-form-field .search-icon{opacity:.5;font-size:1.8rem}:host ::ng-deep .list-search mat-form-field.mat-form-field-appearance-legacy .mat-form-field-wrapper .mat-form-field-underline{background-color:var(--color-tertiary)}\n"] }]
40
+ }], propDecorators: { hasSearch: [{
41
+ type: Input
42
+ }], ignoreZoom: [{
43
+ type: Input
44
+ }], searchChanged: [{
45
+ type: Output
46
+ }], scrollbarRef: [{
47
+ type: ViewChild,
48
+ args: [NgScrollbar, { static: true }]
49
+ }] } });
50
+
51
+ class ConfigurationPageComponent {
52
+ constructor() {
53
+ this.searchTerm = '';
54
+ this.verticalSeparate = false;
55
+ this.footerPaginator = false;
56
+ this.hasSearch = true;
57
+ this.searchDebounceTime = 1000;
58
+ this.searchLabel = '';
59
+ this.txtQueryChanged = new Subject();
60
+ this.searchChanged = new EventEmitter();
61
+ this.searchClick = new EventEmitter();
62
+ this.txtQueryChanged.pipe(debounceTime(this.searchDebounceTime), distinctUntilChanged()).subscribe(model => { this.searchChanged.next(model); });
63
+ }
64
+ searchTermChanged() {
65
+ this.txtQueryChanged.next(this.searchTerm);
66
+ }
67
+ searchIconClick() {
68
+ this.searchClick.next(this.searchTerm);
69
+ }
70
+ }
71
+ ConfigurationPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: ConfigurationPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
72
+ ConfigurationPageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: ConfigurationPageComponent, selector: "configuration-page-container", inputs: { verticalSeparate: "verticalSeparate", footerPaginator: "footerPaginator", hasSearch: "hasSearch", searchDebounceTime: "searchDebounceTime", searchLabel: "searchLabel" }, outputs: { searchChanged: "searchChanged", searchClick: "searchClick" }, viewQueries: [{ propertyName: "scrollbarRef", first: true, predicate: NgScrollbar, descendants: true, static: true }], ngImport: i0, template: "<div class=\"configuration-page-container\" [ngClass]=\"{'footer-paginator': footerPaginator}\">\r\n <ng-scrollbar [visibility]=\"'hover'\">\r\n <div class=\"list-content\">\r\n <div class=\"list-search\" *ngIf=\"hasSearch\">\r\n <mat-form-field class=\"apipass-search-input-text search-input-item small-text\"\r\n [ngClass]=\"{'label-input': searchLabel}\"\r\n appearance=\"fill\">\r\n <mat-label *ngIf=\"searchLabel\">{{searchLabel}}</mat-label>\r\n <input matInput type=\"search\" class=\"search-input\"\r\n [(ngModel)]=\"searchTerm\"\r\n (ngModelChange)=\"searchTermChanged()\"\r\n />\r\n <mat-icon class=\"search-icon\" matSuffix (click)=\"searchIconClick()\">search</mat-icon>\r\n </mat-form-field>\r\n </div>\r\n\r\n <div class=\"container-content\" [ngClass]=\"{'vertical-separate': verticalSeparate}\">\r\n <ng-content></ng-content>\r\n </div>\r\n </div>\r\n </ng-scrollbar>\r\n</div>\r\n", styles: [".configuration-page-container{display:flex;height:100%;border:1px solid var(--color-tertiary)}.configuration-page-container.footer-paginator{height:calc(100% - 50px)}.configuration-page-container ng-scrollbar{width:100%}.configuration-page-container ng-scrollbar .ng-scroll-content{height:100%}.configuration-page-container ng-scrollbar .list-content{width:100%;display:flex;flex-direction:column;height:100%;box-sizing:border-box}.configuration-page-container ng-scrollbar .list-content .list-search{padding-top:15px;padding-right:15px;place-self:flex-end;width:30%}.configuration-page-container ng-scrollbar .list-content .list-search mat-form-field{width:100%}.configuration-page-container ng-scrollbar .list-content .list-search mat-form-field .search-icon{opacity:.5;font-size:1.8rem;cursor:pointer}.configuration-page-container .container-content{width:100%;height:100%}.configuration-page-container .container-content.vertical-separate{display:flex;flex-direction:column;justify-content:space-between}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i3.NgScrollbar, selector: "ng-scrollbar", inputs: ["disabled", "sensorDisabled", "pointerEventsDisabled", "viewportPropagateMouseMove", "autoHeightDisabled", "autoWidthDisabled", "viewClass", "trackClass", "thumbClass", "minThumbSize", "trackClickScrollDuration", "pointerEventsMethod", "track", "visibility", "appearance", "position", "sensorDebounce", "scrollAuditTime"], outputs: ["updated"], exportAs: ["ngScrollbar"] }, { kind: "component", type: i4.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i4.MatLabel, selector: "mat-label" }, { kind: "directive", type: i4.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "component", type: i5.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i6.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }] });
73
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: ConfigurationPageComponent, decorators: [{
74
+ type: Component,
75
+ args: [{ selector: 'configuration-page-container', template: "<div class=\"configuration-page-container\" [ngClass]=\"{'footer-paginator': footerPaginator}\">\r\n <ng-scrollbar [visibility]=\"'hover'\">\r\n <div class=\"list-content\">\r\n <div class=\"list-search\" *ngIf=\"hasSearch\">\r\n <mat-form-field class=\"apipass-search-input-text search-input-item small-text\"\r\n [ngClass]=\"{'label-input': searchLabel}\"\r\n appearance=\"fill\">\r\n <mat-label *ngIf=\"searchLabel\">{{searchLabel}}</mat-label>\r\n <input matInput type=\"search\" class=\"search-input\"\r\n [(ngModel)]=\"searchTerm\"\r\n (ngModelChange)=\"searchTermChanged()\"\r\n />\r\n <mat-icon class=\"search-icon\" matSuffix (click)=\"searchIconClick()\">search</mat-icon>\r\n </mat-form-field>\r\n </div>\r\n\r\n <div class=\"container-content\" [ngClass]=\"{'vertical-separate': verticalSeparate}\">\r\n <ng-content></ng-content>\r\n </div>\r\n </div>\r\n </ng-scrollbar>\r\n</div>\r\n", styles: [".configuration-page-container{display:flex;height:100%;border:1px solid var(--color-tertiary)}.configuration-page-container.footer-paginator{height:calc(100% - 50px)}.configuration-page-container ng-scrollbar{width:100%}.configuration-page-container ng-scrollbar .ng-scroll-content{height:100%}.configuration-page-container ng-scrollbar .list-content{width:100%;display:flex;flex-direction:column;height:100%;box-sizing:border-box}.configuration-page-container ng-scrollbar .list-content .list-search{padding-top:15px;padding-right:15px;place-self:flex-end;width:30%}.configuration-page-container ng-scrollbar .list-content .list-search mat-form-field{width:100%}.configuration-page-container ng-scrollbar .list-content .list-search mat-form-field .search-icon{opacity:.5;font-size:1.8rem;cursor:pointer}.configuration-page-container .container-content{width:100%;height:100%}.configuration-page-container .container-content.vertical-separate{display:flex;flex-direction:column;justify-content:space-between}\n"] }]
76
+ }], ctorParameters: function () { return []; }, propDecorators: { verticalSeparate: [{
77
+ type: Input
78
+ }], footerPaginator: [{
79
+ type: Input
80
+ }], hasSearch: [{
81
+ type: Input
82
+ }], searchDebounceTime: [{
83
+ type: Input
84
+ }], searchLabel: [{
85
+ type: Input
86
+ }], searchChanged: [{
87
+ type: Output
88
+ }], searchClick: [{
89
+ type: Output
90
+ }], scrollbarRef: [{
91
+ type: ViewChild,
92
+ args: [NgScrollbar, { static: true }]
93
+ }] } });
94
+
95
+ class BreadcrumbComponent {
96
+ constructor() {
97
+ this.icon = 'keyboard_arrow_right';
98
+ this.items = [];
99
+ this.labelProperty = 'label';
100
+ this.itemClick = new EventEmitter();
101
+ }
102
+ eventClick(index, item) {
103
+ this.items.splice(index + 1, this.items.length - 1);
104
+ this.itemClick.emit({ index, item });
105
+ }
106
+ }
107
+ BreadcrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BreadcrumbComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
108
+ BreadcrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BreadcrumbComponent, selector: "breadcrumb-component", inputs: { icon: "icon", items: "items", labelProperty: "labelProperty" }, outputs: { itemClick: "itemClick" }, ngImport: i0, template: "<mat-toolbar *ngIf=\"items.length > 0\" color=\"primary\">\r\n <span *ngFor=\"let header of items; let indx = index\">\r\n <a mat-button (click)=\"eventClick(indx, header)\">{{header[labelProperty]}}\r\n <mat-icon>{{icon}}</mat-icon>\r\n </a>\r\n </span>\r\n</mat-toolbar>", styles: [".mat-toolbar.mat-primary{background:rgba(0,0,0,0);height:45px;font-size:16px}a{color:#000;cursor:pointer}mat-icon{vertical-align:text-bottom}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i5.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: i3$1.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }] });
109
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BreadcrumbComponent, decorators: [{
110
+ type: Component,
111
+ args: [{ selector: 'breadcrumb-component', template: "<mat-toolbar *ngIf=\"items.length > 0\" color=\"primary\">\r\n <span *ngFor=\"let header of items; let indx = index\">\r\n <a mat-button (click)=\"eventClick(indx, header)\">{{header[labelProperty]}}\r\n <mat-icon>{{icon}}</mat-icon>\r\n </a>\r\n </span>\r\n</mat-toolbar>", styles: [".mat-toolbar.mat-primary{background:rgba(0,0,0,0);height:45px;font-size:16px}a{color:#000;cursor:pointer}mat-icon{vertical-align:text-bottom}\n"] }]
112
+ }], propDecorators: { icon: [{
113
+ type: Input
114
+ }], items: [{
115
+ type: Input
116
+ }], labelProperty: [{
117
+ type: Input
118
+ }], itemClick: [{
119
+ type: Output
120
+ }] } });
121
+
122
+ class ContainersModule {
123
+ }
124
+ ContainersModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: ContainersModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
125
+ ContainersModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: ContainersModule, declarations: [CentralizedContainerComponent,
126
+ ConfigurationPageComponent,
127
+ BreadcrumbComponent], imports: [CommonModule,
128
+ RouterModule,
129
+ FormsModule,
130
+ ReactiveFormsModule,
131
+ IconsModule,
132
+ ButtonsModule,
133
+ NgScrollbarModule,
134
+ MatFormFieldModule,
135
+ MatIconModule,
136
+ MatInputModule,
137
+ MatToolbarModule], exports: [CentralizedContainerComponent,
138
+ ConfigurationPageComponent,
139
+ BreadcrumbComponent] });
140
+ ContainersModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: ContainersModule, imports: [CommonModule,
141
+ RouterModule,
142
+ FormsModule,
143
+ ReactiveFormsModule,
144
+ IconsModule,
145
+ ButtonsModule,
146
+ NgScrollbarModule,
147
+ MatFormFieldModule,
148
+ MatIconModule,
149
+ MatInputModule,
150
+ MatToolbarModule] });
151
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: ContainersModule, decorators: [{
152
+ type: NgModule,
153
+ args: [{
154
+ imports: [
155
+ CommonModule,
156
+ RouterModule,
157
+ FormsModule,
158
+ ReactiveFormsModule,
159
+ IconsModule,
160
+ ButtonsModule,
161
+ NgScrollbarModule,
162
+ MatFormFieldModule,
163
+ MatIconModule,
164
+ MatInputModule,
165
+ MatToolbarModule
166
+ ],
167
+ declarations: [
168
+ CentralizedContainerComponent,
169
+ ConfigurationPageComponent,
170
+ BreadcrumbComponent
171
+ ],
172
+ exports: [
173
+ CentralizedContainerComponent,
174
+ ConfigurationPageComponent,
175
+ BreadcrumbComponent
176
+ ],
177
+ providers: []
178
+ }]
179
+ }] });
180
+
181
+ /**
182
+ * Generated bundle index. Do not edit.
183
+ */
184
+
185
+ export { BreadcrumbComponent, CentralizedContainerComponent, ConfigurationPageComponent, ContainersModule };
186
+ //# sourceMappingURL=apipass-containers.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"apipass-containers.mjs","sources":["../../../projects/containers/src/centralized-container/centralized-container.component.ts","../../../projects/containers/src/centralized-container/centralized-container.component.html","../../../projects/containers/src/configuration-page-content/configuration-page.component.ts","../../../projects/containers/src/configuration-page-content/configuration-page.component.html","../../../projects/containers/src/breadcrumb/breadcrumb.component.ts","../../../projects/containers/src/breadcrumb/breadcrumb.component.html","../../../projects/containers/src/containers.module.ts","../../../projects/containers/src/apipass-containers.ts"],"sourcesContent":["import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core'\r\nimport { NgScrollbar } from 'ngx-scrollbar'\r\n\r\n@Component({\r\n selector: 'centralized-container',\r\n templateUrl: 'centralized-container.component.html',\r\n styleUrls: ['centralized-container.component.scss']\r\n})\r\nexport class CentralizedContainerComponent {\n public searchTerm = ''\r\n\r\n @Input() public hasSearch = true\r\n @Input() public ignoreZoom = false\r\n\r\n @Output()\r\n public searchChanged = new EventEmitter<string>()\r\n\r\n @ViewChild(NgScrollbar, { static: true })\r\n public scrollbarRef: NgScrollbar | undefined\r\n\r\n public searchTermChanged (): void {\r\n this.searchChanged.emit(this.searchTerm)\r\n }\n}\r\n","<div class=\"centralized-container\" [ngClass]=\"{'centralized-container-zoom': !ignoreZoom}\">\r\n <ng-scrollbar [visibility]=\"'hover'\">\r\n <div class=\"list-content\">\r\n <div class=\"list-search\" *ngIf=\"hasSearch\">\r\n <mat-form-field>\r\n <input matInput type=\"search\" [(ngModel)]=\"searchTerm\" (ngModelChange)=\"searchTermChanged()\" />\r\n <mat-icon class=\"search-icon\" matSuffix>search</mat-icon>\r\n </mat-form-field>\r\n </div>\r\n <ng-content></ng-content>\r\n </div>\r\n </ng-scrollbar>\r\n</div>\r\n","import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core'\r\nimport { NgScrollbar } from 'ngx-scrollbar'\r\nimport { Subject } from 'rxjs'\r\nimport { debounceTime, distinctUntilChanged } from 'rxjs/operators'\r\n\r\n@Component({\r\n selector: 'configuration-page-container',\r\n templateUrl: 'configuration-page.component.html',\r\n styleUrls: ['configuration-page.component.scss']\r\n})\r\nexport class ConfigurationPageComponent {\n public searchTerm = ''\r\n\r\n @Input() public verticalSeparate = false\r\n @Input() public footerPaginator = false\r\n @Input() public hasSearch = true\r\n @Input() public searchDebounceTime = 1000\r\n @Input() public searchLabel = ''\r\n\r\n txtQueryChanged: Subject<string> = new Subject<string>()\r\n\r\n @Output() public searchChanged = new EventEmitter<string>()\r\n @Output() public searchClick = new EventEmitter<string>()\r\n\r\n @ViewChild(NgScrollbar, { static: true })\r\n public scrollbarRef: NgScrollbar | undefined\r\n\r\n constructor () {\r\n this.txtQueryChanged.pipe(\r\n debounceTime(this.searchDebounceTime),\r\n distinctUntilChanged()).subscribe(model => { this.searchChanged.next(model) }\r\n )\r\n }\r\n\r\n public searchTermChanged (): void {\r\n this.txtQueryChanged.next(this.searchTerm)\r\n }\r\n\r\n public searchIconClick (): void {\r\n this.searchClick.next(this.searchTerm)\r\n }\n}\r\n","<div class=\"configuration-page-container\" [ngClass]=\"{'footer-paginator': footerPaginator}\">\r\n <ng-scrollbar [visibility]=\"'hover'\">\r\n <div class=\"list-content\">\r\n <div class=\"list-search\" *ngIf=\"hasSearch\">\r\n <mat-form-field class=\"apipass-search-input-text search-input-item small-text\"\r\n [ngClass]=\"{'label-input': searchLabel}\"\r\n appearance=\"fill\">\r\n <mat-label *ngIf=\"searchLabel\">{{searchLabel}}</mat-label>\r\n <input matInput type=\"search\" class=\"search-input\"\r\n [(ngModel)]=\"searchTerm\"\r\n (ngModelChange)=\"searchTermChanged()\"\r\n />\r\n <mat-icon class=\"search-icon\" matSuffix (click)=\"searchIconClick()\">search</mat-icon>\r\n </mat-form-field>\r\n </div>\r\n\r\n <div class=\"container-content\" [ngClass]=\"{'vertical-separate': verticalSeparate}\">\r\n <ng-content></ng-content>\r\n </div>\r\n </div>\r\n </ng-scrollbar>\r\n</div>\r\n","import { Component, EventEmitter, Input, Output } from '@angular/core'\r\n\r\n@Component({\r\n selector: 'breadcrumb-component',\r\n templateUrl: 'breadcrumb.component.html',\r\n styleUrls: ['breadcrumb.component.scss']\r\n})\r\nexport class BreadcrumbComponent {\r\n @Input() public icon = 'keyboard_arrow_right'\r\n @Input() public items: any = []\r\n @Input() public labelProperty = 'label'\r\n @Output() itemClick = new EventEmitter<{ index: number, item: any }>()\r\n\r\n public eventClick (index: number, item: any): any {\r\n this.items.splice(index + 1, this.items.length - 1)\r\n this.itemClick.emit({ index, item })\r\n }\n}\r\n","<mat-toolbar *ngIf=\"items.length > 0\" color=\"primary\">\r\n <span *ngFor=\"let header of items; let indx = index\">\r\n <a mat-button (click)=\"eventClick(indx, header)\">{{header[labelProperty]}}\r\n <mat-icon>{{icon}}</mat-icon>\r\n </a>\r\n </span>\r\n</mat-toolbar>","import { NgModule } from '@angular/core'\r\nimport { CommonModule } from '@angular/common'\r\nimport { RouterModule } from '@angular/router'\r\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms'\r\nimport { CentralizedContainerComponent } from './centralized-container/centralized-container.component'\r\nimport { ConfigurationPageComponent } from './configuration-page-content/configuration-page.component'\r\nimport { BreadcrumbComponent } from './breadcrumb/breadcrumb.component'\r\nimport { NgScrollbarModule } from 'ngx-scrollbar'\r\nimport { MatFormFieldModule } from '@angular/material/form-field'\r\nimport { MatIconModule } from '@angular/material/icon'\r\nimport { MatInputModule } from '@angular/material/input'\r\nimport { IconsModule } from '@apipass/icons'\r\nimport { ButtonsModule } from '@apipass/buttons'\r\nimport { MatToolbarModule } from '@angular/material/toolbar'\r\n@NgModule({\r\n imports: [\r\n CommonModule,\r\n RouterModule,\r\n FormsModule,\r\n ReactiveFormsModule,\r\n IconsModule,\r\n ButtonsModule,\r\n NgScrollbarModule,\r\n MatFormFieldModule,\r\n MatIconModule,\r\n MatInputModule,\r\n MatToolbarModule\r\n ],\r\n declarations: [\r\n CentralizedContainerComponent,\r\n ConfigurationPageComponent,\r\n BreadcrumbComponent\r\n ],\r\n exports: [\r\n CentralizedContainerComponent,\r\n ConfigurationPageComponent,\r\n BreadcrumbComponent\r\n ],\r\n providers: []\r\n})\r\nexport class ContainersModule {}\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i2","i3"],"mappings":"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"}
@@ -1,5 +1,5 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@apipass/containers" />
5
- export * from './public-api';
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@apipass/containers" />
5
+ export * from './public-api';
package/package.json CHANGED
@@ -1,29 +1,39 @@
1
1
  {
2
2
  "name": "@apipass/containers",
3
- "version": "0.2.16",
3
+ "version": "1.0.7",
4
4
  "peerDependencies": {
5
- "@angular/animations": "^10.0.11",
6
- "@angular/cdk": "^10.1.3",
7
- "@angular/common": "^10.0.11",
8
- "@angular/core": "^10.0.11",
9
- "@angular/forms": "^10.0.11",
10
- "@angular/material": "10.2.7"
5
+ "@angular/animations": "15.0.3",
6
+ "@angular/cdk": "15.0.3",
7
+ "@angular/common": "15.0.3",
8
+ "@angular/core": "15.0.3",
9
+ "@angular/forms": "15.0.3",
10
+ "@angular/material": "15.0.3"
11
11
  },
12
12
  "dependencies": {
13
- "@apipass/icons": "0.1.9",
14
- "@apipass/buttons": "0.1.9",
15
- "ngx-scrollbar": "^7.3.1",
16
- "@ngx-translate/core": "^13.0.0",
17
- "tslib": "2.0.0"
13
+ "@apipass/icons": "1.0.7",
14
+ "@apipass/buttons": "1.0.7",
15
+ "ngx-scrollbar": "11.0.0",
16
+ "@ngx-translate/core": "14.0.0",
17
+ "tslib": "2.5.0"
18
18
  },
19
- "main": "bundles/apipass-containers.umd.js",
20
- "module": "fesm2015/apipass-containers.js",
21
- "es2015": "fesm2015/apipass-containers.js",
22
- "esm2015": "esm2015/apipass-containers.js",
23
- "fesm2015": "fesm2015/apipass-containers.js",
24
- "typings": "apipass-containers.d.ts",
25
- "sideEffects": false,
26
- "scripts": {
27
- "prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled by Ivy. This is not allowed.\\nPlease delete and rebuild the package, without compiling with Ivy, before attempting to publish.\\n')\" && exit 1"
28
- }
29
- }
19
+ "module": "fesm2015/apipass-containers.mjs",
20
+ "es2020": "fesm2020/apipass-containers.mjs",
21
+ "esm2020": "esm2020/apipass-containers.mjs",
22
+ "fesm2020": "fesm2020/apipass-containers.mjs",
23
+ "fesm2015": "fesm2015/apipass-containers.mjs",
24
+ "typings": "index.d.ts",
25
+ "exports": {
26
+ "./package.json": {
27
+ "default": "./package.json"
28
+ },
29
+ ".": {
30
+ "types": "./index.d.ts",
31
+ "esm2020": "./esm2020/apipass-containers.mjs",
32
+ "es2020": "./fesm2020/apipass-containers.mjs",
33
+ "es2015": "./fesm2015/apipass-containers.mjs",
34
+ "node": "./fesm2015/apipass-containers.mjs",
35
+ "default": "./fesm2020/apipass-containers.mjs"
36
+ }
37
+ },
38
+ "sideEffects": false
39
+ }
package/public-api.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- export * from './containers.module';
2
- export * from './centralized-container/centralized-container.component';
3
- export * from './configuration-page-content/configuration-page.component';
4
- export * from './breadcrumb/breadcrumb.component';
5
- export * from 'ngx-scrollbar';
1
+ export * from './containers.module';
2
+ export * from './centralized-container/centralized-container.component';
3
+ export * from './configuration-page-content/configuration-page.component';
4
+ export * from './breadcrumb/breadcrumb.component';
5
+ export * from 'ngx-scrollbar';
@@ -1,197 +0,0 @@
1
- @import "colors";
2
- @import "fonts";
3
- @import "spacing";
4
-
5
- /* Default Inputs */
6
- .mat-input-underline, .mat-form-field-underline {
7
- display: none;
8
- }
9
-
10
- .mat-form-field-appearance-fill .mat-form-field-flex {
11
- display: flex!important;
12
- align-items: center!important;
13
- border: 1px solid var(--color-inputs-border) !important;
14
- background: var(--color-inputs-background) !important;
15
- border-radius: 6px !important;
16
- }
17
-
18
- .mat-form-field-infix {
19
- padding: 0 !important;
20
- display: flex!important;
21
- align-items: center!important;
22
- border-top: none!important;
23
- }
24
-
25
- .mat-select-arrow-wrapper {
26
- display: flex!important;
27
- }
28
-
29
- .mat-icon-button {
30
- width: auto!important;
31
- }
32
-
33
- .no-border {
34
- .mat-form-field-flex {
35
- border: none !important;
36
- input {
37
- padding: 1px;
38
- }
39
- }
40
- }
41
-
42
- .mat-form-field-label-wrapper {
43
- top: -10px;
44
- }
45
-
46
- .mat-form-field-should-float .mat-form-field-label-wrapper {
47
- font-size: $base-font-size;
48
- }
49
-
50
- .placeholder-primary {
51
- .mat-form-field-label-wrapper {
52
- color: var(--color-primary) !important;
53
- label {
54
- color: var(--color-primary) !important;
55
- }
56
- }
57
- ::ng-deep .mat-form-field-placeholder, .mat-form-field-placeholder {
58
- color: var(--color-primary) !important;
59
- }
60
- ::ng-deep .mat-focused .mat-form-field-placeholder, .mat-focused .mat-form-field-placeholder {
61
- color: var(--color-primary) !important;
62
- }
63
- input {
64
- ::-webkit-input-placeholder { /* Edge */
65
- color: var(--color-primary) !important;
66
- }
67
- :-ms-input-placeholder { /* Internet Explorer 10-11 */
68
- color: var(--color-primary) !important;
69
- }
70
- ::placeholder {
71
- color: var(--color-primary) !important;
72
- }
73
- }
74
- }
75
-
76
- .placeholder-bold {
77
- .mat-form-field-label-wrapper {
78
- font-weight: bold !important;
79
- label {
80
- font-weight: bold !important;
81
- }
82
- }
83
- ::ng-deep .mat-form-field-placeholder, .mat-form-field-placeholder {
84
- font-weight: bold !important;
85
- }
86
- ::ng-deep .mat-focused .mat-form-field-placeholder, .mat-focused .mat-form-field-placeholder {
87
- font-weight: bold !important;
88
- }
89
- input {
90
- ::-webkit-input-placeholder { /* Edge */
91
- font-weight: bold !important;
92
- }
93
- :-ms-input-placeholder { /* Internet Explorer 10-11 */
94
- font-weight: bold !important;
95
- }
96
- ::placeholder {
97
- font-weight: bold !important;
98
- }
99
- }
100
- }
101
-
102
- /* Inputs */
103
- .apipass-input-text {
104
- width: 100%;
105
- .mat-form-field-flex {
106
- padding: $spacing-input-top $spacing-input-right $spacing-input-bottom $spacing-input-left !important;
107
- }
108
- }
109
-
110
- .apipass-input-text,
111
- .apipass-search-input-text,
112
- .custom-select-component,
113
- .apipass-select,
114
- .apipass-date-filter {
115
-
116
- .mat-form-field-wrapper {
117
- padding: 0 !important;
118
- }
119
- .mat-icon-button {
120
- width: auto!important;
121
- height: auto!important;
122
- }
123
-
124
- &.label-input {
125
- .mat-form-field-label-wrapper {
126
- padding-top: 0;
127
- top: auto !important;
128
- }
129
- input {
130
- padding-top: 10px !important;
131
- padding-bottom: 5px !important;
132
- }
133
- }
134
- &.mat-form-field-should-float {
135
- .mat-form-field-label-wrapper {
136
- padding-top: 0 !important;
137
- margin-top: -10px !important;
138
- }
139
- }
140
-
141
- }
142
-
143
-
144
- .apipass-search-input-text {
145
- width: 100%;
146
-
147
- &.small-text {
148
- font-size: $base-font-size - 2px;
149
- }
150
- .mat-form-field-flex {
151
- padding: 2px 5px 2px 2px !important;
152
- border-top: none !important;
153
- border-left: none !important;
154
- border-right: none !important;
155
- border-radius: 0 !important;
156
- }
157
- .search-icon {
158
- margin-top: -5px !important;
159
- }
160
-
161
- }
162
-
163
- .custom-select-component {
164
- width: 100%;
165
- .mat-form-field-flex {
166
- padding: 1px $spacing-input-right 1px $spacing-input-left !important;
167
- }
168
- }
169
-
170
- .apipass-select {
171
- width: 100%;
172
- .mat-form-field-flex {
173
- padding: $spacing-select-top $spacing-select-right $spacing-select-bottom $spacing-select-left !important;
174
- }
175
- &.label-input {
176
- .mat-form-field-infix {
177
- padding-top: 7px !important;
178
- padding-bottom: 7px !important;
179
- }
180
- }
181
- }
182
-
183
- .apipass-date-filter {
184
- width: 100%;
185
- .mat-form-field-flex {
186
- padding: $spacing-date-filter-top $spacing-date-filter-right $spacing-date-filter-bottom $spacing-date-filter-left !important;
187
- }
188
- .mat-form-field-suffix {
189
- span {
190
- cursor: pointer;
191
- color: #777;
192
- }
193
- }
194
- .mat-form-field-wrapper {
195
- padding-bottom: 0 !important;
196
- }
197
- }