@libs-ui/components-inputs-valid 0.2.304 → 0.2.306-10
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/esm2022/index.mjs +3 -3
- package/esm2022/interfaces/function-control-event.interface.mjs +1 -1
- package/esm2022/interfaces/valid.interface.mjs +1 -1
- package/esm2022/valid.component.mjs +33 -32
- package/fesm2022/libs-ui-components-inputs-valid.mjs +32 -31
- package/fesm2022/libs-ui-components-inputs-valid.mjs.map +1 -1
- package/index.d.ts +2 -2
- package/interfaces/function-control-event.interface.d.ts +1 -1
- package/interfaces/valid.interface.d.ts +1 -1
- package/package.json +10 -10
- package/valid.component.d.ts +1 -0
package/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export * from './valid.component';
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
2
|
+
export * from './interfaces/valid.interface';
|
|
3
|
+
export * from './interfaces/function-control-event.interface';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IInputFunctionControlEvent } from
|
|
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>;
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libs-ui/components-inputs-valid",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.306-10",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/core": ">=18.0.0",
|
|
6
|
-
"@libs-ui/components-inputs-input": "0.2.
|
|
7
|
-
"@libs-ui/interfaces-types": "0.2.
|
|
8
|
-
"@libs-ui/components-buttons-button": "0.2.
|
|
9
|
-
"@libs-ui/components-checkbox-single": "0.2.
|
|
10
|
-
"@libs-ui/components-label": "0.2.
|
|
11
|
-
"@libs-ui/components-popover": "0.2.
|
|
12
|
-
"@libs-ui/components-radio-single": "0.2.
|
|
13
|
-
"@libs-ui/components-switch": "0.2.
|
|
14
|
-
"@libs-ui/utils": "0.2.
|
|
6
|
+
"@libs-ui/components-inputs-input": "0.2.306-10",
|
|
7
|
+
"@libs-ui/interfaces-types": "0.2.306-10",
|
|
8
|
+
"@libs-ui/components-buttons-button": "0.2.306-10",
|
|
9
|
+
"@libs-ui/components-checkbox-single": "0.2.306-10",
|
|
10
|
+
"@libs-ui/components-label": "0.2.306-10",
|
|
11
|
+
"@libs-ui/components-popover": "0.2.306-10",
|
|
12
|
+
"@libs-ui/components-radio-single": "0.2.306-10",
|
|
13
|
+
"@libs-ui/components-switch": "0.2.306-10",
|
|
14
|
+
"@libs-ui/utils": "0.2.306-10",
|
|
15
15
|
"@ngx-translate/core": "^15.0.0"
|
|
16
16
|
},
|
|
17
17
|
"sideEffects": false,
|
package/valid.component.d.ts
CHANGED
|
@@ -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;
|