ngx-vector-components 6.0.1 → 6.0.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [6.0.2] (25/06/2026)
4
+
5
+ ### FIX
6
+
7
+ - Fixed layout `textarea-field` adjust name class in `primeng-custom-theme.scss`
8
+
3
9
  ## [6.0.1] (24/06/2026)
4
10
 
5
11
  ### FIX
@@ -598,6 +598,7 @@ p-inputnumber.currency-input:not(.outlined) {
598
598
 
599
599
  input.p-inputtext:not(.currency-input),
600
600
  .p-inputtextarea,
601
+ .p-textarea,
601
602
  .p-multiselect {
602
603
  &:not(:focus) {
603
604
  border: none !important;
@@ -646,7 +647,8 @@ input.p-inputtext:not(.currency-input),
646
647
  }
647
648
  }
648
649
 
649
- .p-inputtextarea {
650
+ .p-inputtextarea,
651
+ .p-textarea {
650
652
  padding-right: 62px !important;
651
653
  resize: none;
652
654
  height: unset !important;
@@ -9,7 +9,7 @@ export declare class BadgeComponent implements OnInit {
9
9
  tooltip?: string;
10
10
  constructor();
11
11
  ngOnInit(): void;
12
- getStatusColor(): "badge-warning" | "badge-success" | "badge-error" | "badge-info" | "";
12
+ getStatusColor(): "" | "badge-warning" | "badge-success" | "badge-error" | "badge-info";
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
14
14
  static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "vector-badge", never, { "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "customColor": { "alias": "customColor"; "required": false; }; "customBackgroundColor": { "alias": "customBackgroundColor"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; }, {}, never, never, false, never>;
15
15
  }
@@ -34,7 +34,7 @@ export declare class DataTableComponent implements OnInit, OnDestroy {
34
34
  addNameColumnExpand: string;
35
35
  expandable: boolean;
36
36
  expansionTemplate: TemplateRef<any> | null;
37
- set selectionMode(_selectionMode: "single" | "multiple" | null);
37
+ set selectionMode(_selectionMode: "multiple" | "single" | null);
38
38
  selectionType: 'checkbox' | 'radiobutton' | null;
39
39
  set height(_height: string);
40
40
  showLimitBalance: boolean;
@@ -68,7 +68,7 @@ export declare class DataTableComponent implements OnInit, OnDestroy {
68
68
  get balance(): (itemAccount?: any) => number | string;
69
69
  get tabs(): ListItem[];
70
70
  get height(): string;
71
- get selectionMode(): "single" | "multiple" | null;
71
+ get selectionMode(): "multiple" | "single" | null;
72
72
  private _selectionMode;
73
73
  private _height;
74
74
  private _tabs;
@@ -38,7 +38,7 @@ export declare class TextFieldComponent implements OnInit, OnDestroy {
38
38
  isPasswordVisible: boolean;
39
39
  validateOnly: boolean;
40
40
  get placeholder(): string;
41
- get keyfilter(): RegExp | "int" | "pint" | "alphanum" | "money";
41
+ get keyfilter(): RegExp | "pint" | "int" | "money" | "alphanum";
42
42
  get control(): any;
43
43
  get showPasswordIcon(): "fas fa-eye" | "fas fa-eye-slash";
44
44
  documentTypes: ListItem[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-vector-components",
3
- "version": "6.0.1",
3
+ "version": "6.0.2",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^19.2.0",
6
6
  "@angular/cdk": "^19.2.0",