@libs-ui/components-inputs-valid 0.2.306-4 → 0.2.306-6

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/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
1
  export * from './valid.component';
2
- export * from "./interfaces/valid.interface";
3
- export * from "./interfaces/function-control-event.interface";
2
+ export * from './interfaces/valid.interface';
3
+ export * from './interfaces/function-control-event.interface';
@@ -1,4 +1,4 @@
1
- import { IInputFunctionControlEvent } from "@libs-ui/components-inputs-input";
1
+ import { IInputFunctionControlEvent } from '@libs-ui/components-inputs-input';
2
2
  export interface IInputValidFunctionControlEvent extends IInputFunctionControlEvent {
3
3
  checkIsValid: () => Promise<boolean>;
4
4
  setMessageError: (message: string) => Promise<void>;
@@ -1,4 +1,4 @@
1
- import { IMessageTranslate } from "@libs-ui/interfaces-types";
1
+ import { IMessageTranslate } from '@libs-ui/interfaces-types';
2
2
  export interface IValidRequired extends IMessageTranslate {
3
3
  isRequired: boolean;
4
4
  }
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@libs-ui/components-inputs-valid",
3
- "version": "0.2.306-4",
3
+ "version": "0.2.306-6",
4
4
  "peerDependencies": {
5
5
  "@angular/core": ">=18.0.0",
6
- "@libs-ui/components-inputs-input": "0.2.306-4",
7
- "@libs-ui/interfaces-types": "0.2.306-4",
8
- "@libs-ui/components-buttons-button": "0.2.306-4",
9
- "@libs-ui/components-checkbox-single": "0.2.306-4",
10
- "@libs-ui/components-label": "0.2.306-4",
11
- "@libs-ui/components-popover": "0.2.306-4",
12
- "@libs-ui/components-radio-single": "0.2.306-4",
13
- "@libs-ui/components-switch": "0.2.306-4",
14
- "@libs-ui/utils": "0.2.306-4",
6
+ "@libs-ui/components-inputs-input": "0.2.306-6",
7
+ "@libs-ui/interfaces-types": "0.2.306-6",
8
+ "@libs-ui/components-buttons-button": "0.2.306-6",
9
+ "@libs-ui/components-checkbox-single": "0.2.306-6",
10
+ "@libs-ui/components-label": "0.2.306-6",
11
+ "@libs-ui/components-popover": "0.2.306-6",
12
+ "@libs-ui/components-radio-single": "0.2.306-6",
13
+ "@libs-ui/components-switch": "0.2.306-6",
14
+ "@libs-ui/utils": "0.2.306-6",
15
15
  "@ngx-translate/core": "^15.0.0"
16
16
  },
17
17
  "sideEffects": false,
@@ -104,6 +104,7 @@ export declare class LibsUiComponentsInputsValidComponent implements OnInit, OnD
104
104
  readonly elementLeftRef: import("@angular/core").Signal<ElementRef<any> | undefined>;
105
105
  constructor();
106
106
  ngOnInit(): void;
107
+ get FunctionsControl(): IInputValidFunctionControlEvent;
107
108
  private currentStateIsValid;
108
109
  private getElementValue;
109
110
  protected handlerSelect(value: boolean): void;