keevo-components 1.8.464 → 1.8.466

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.
@@ -7,10 +7,11 @@ export declare class KvInputTextCheckboxComponent extends BaseComponentInput<str
7
7
  readonly checkBoxEmit: EventEmitter<boolean>;
8
8
  tooltipCheckbox: string;
9
9
  disabledCheckbox: boolean;
10
+ mask: string;
10
11
  private _checkBoxValue;
11
12
  set checkBoxValueInput(value: boolean);
12
13
  set checkBoxValue(value: boolean);
13
14
  get checkBoxValue(): boolean;
14
15
  static ɵfac: i0.ɵɵFactoryDeclaration<KvInputTextCheckboxComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<KvInputTextCheckboxComponent, "kv-input-text-checkbox", never, { "tooltipCheckbox": { "alias": "tooltipCheckbox"; "required": false; }; "disabledCheckbox": { "alias": "disabledCheckbox"; "required": false; }; "checkBoxValueInput": { "alias": "checkBoxValueInput"; "required": false; }; }, { "checkBoxEmit": "checkBoxEmit"; }, never, never, false, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<KvInputTextCheckboxComponent, "kv-input-text-checkbox", never, { "tooltipCheckbox": { "alias": "tooltipCheckbox"; "required": false; }; "disabledCheckbox": { "alias": "disabledCheckbox"; "required": false; }; "mask": { "alias": "mask"; "required": false; }; "checkBoxValueInput": { "alias": "checkBoxValueInput"; "required": false; }; }, { "checkBoxEmit": "checkBoxEmit"; }, never, never, false, never>;
16
17
  }
@@ -138,7 +138,7 @@ export declare class KvTableComponent implements OnInit, DoCheck, AfterViewInit
138
138
  onClickEvent(event: any): void;
139
139
  styleSetter(style: string, data: string): void;
140
140
  checkMenuFiltro(col: TableConfigColumn): void;
141
- sortByPosition(): (elem1: any, elem2: any) => 1 | 0 | -1;
141
+ sortByPosition(): (elem1: any, elem2: any) => 0 | 1 | -1;
142
142
  dinamicDisableColumn(col: TableConfigColumn): boolean;
143
143
  checkHideColumns(): void;
144
144
  getCustomTemplate(templatename: string): TemplateRef<any>;
@@ -66,7 +66,7 @@ export declare class KvTableExpandableComponent implements OnInit, DoCheck {
66
66
  onGlobalFilter(table: Table, event: Event): void;
67
67
  executeCollapsed(): void;
68
68
  checkMenuFiltro(col: any): void;
69
- sortByPosition(): (elem1: any, elem2: any) => 1 | 0 | -1;
69
+ sortByPosition(): (elem1: any, elem2: any) => 0 | 1 | -1;
70
70
  dinamicDisableColumn(col: TableConfigColumn): boolean;
71
71
  dinamicColumnSet(e: any, col: any): void;
72
72
  addColumn(field: string): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "1.8.464",
3
+ "version": "1.8.466",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",
@@ -200,3 +200,10 @@ input {
200
200
  max-width: 100%;
201
201
  display: inline-block;
202
202
  }
203
+
204
+
205
+ // class="px-2 py-4"
206
+
207
+ ::ng-deep .p-menuitem-content {
208
+ padding: 0.25rem 0.5rem 0.25rem 0.5rem;
209
+ }