@libs-ui/components-inputs-multi-language 0.2.306-4 → 0.2.307-0
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 +1 -1
- package/esm2022/interfaces/multi-language.interface.mjs +1 -1
- package/esm2022/items/items.component.mjs +18 -20
- package/esm2022/multi-language.component.mjs +12 -10
- package/esm2022/pipes/display-language.pipe.mjs +3 -3
- package/esm2022/pipes/get-disable-key.pipe.mjs +3 -3
- package/esm2022/pipes/get-item.pipe.mjs +2 -2
- package/esm2022/utils/multi-language.mjs +1 -2
- package/fesm2022/libs-ui-components-inputs-multi-language.mjs +47 -48
- package/fesm2022/libs-ui-components-inputs-multi-language.mjs.map +1 -1
- package/interfaces/multi-language.interface.d.ts +1 -1
- package/items/items.component.d.ts +1 -0
- package/multi-language.component.d.ts +2 -1
- package/package.json +10 -10
|
@@ -26,6 +26,7 @@ export declare class LibsUiComponentsInputsMultiLanguageItemsComponent implement
|
|
|
26
26
|
readonly outChangeValue: import("@angular/core").OutputEmitterRef<void>;
|
|
27
27
|
constructor();
|
|
28
28
|
ngOnInit(): void;
|
|
29
|
+
get FunctionsControl(): IInputMultiLanguageFunctionControlEvent;
|
|
29
30
|
protected handlerConfigMulti(): Promise<void>;
|
|
30
31
|
protected handlerAdd(): Promise<void>;
|
|
31
32
|
protected handlerRemove(index: number): Promise<void>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { IEmitSelectKey } from '@libs-ui/components-dropdown';
|
|
3
|
-
import { IQuillFunctionControlEvent } from '@libs-ui/components-inputs-quill';
|
|
4
3
|
import { IInputValidFunctionControlEvent, IValidLength, IValidRequired } from '@libs-ui/components-inputs-valid';
|
|
5
4
|
import { ICurrencyUnit, IDataItem, IDataMultiLanguage, IEventMultiLanguage, IInputMultiLanguageFunctionControlEvent, IOption, TYPE_VIEW_MULTI_LANGUAGE } from './interfaces/multi-language.interface';
|
|
5
|
+
import { IQuillFunctionControlEvent } from '@libs-ui/components-inputs-quill';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class LibsUiComponentsInputsMultiLanguageComponent implements OnInit, OnDestroy {
|
|
8
8
|
protected languageDisplay: import("@angular/core").WritableSignal<string[]>;
|
|
@@ -49,6 +49,7 @@ export declare class LibsUiComponentsInputsMultiLanguageComponent implements OnI
|
|
|
49
49
|
readonly outChangeValueInput: import("@angular/core").OutputEmitterRef<void>;
|
|
50
50
|
constructor();
|
|
51
51
|
ngOnInit(): void;
|
|
52
|
+
get FunctionsControl(): IInputMultiLanguageFunctionControlEvent;
|
|
52
53
|
protected handlerInputFunctionControl(event: IInputValidFunctionControlEvent, key: string): Promise<void>;
|
|
53
54
|
protected handlerQuillFunctionControl(event: IQuillFunctionControlEvent): Promise<void>;
|
|
54
55
|
protected handlerSelectChange(event: IEmitSelectKey | undefined, keyOld: string): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libs-ui/components-inputs-multi-language",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.307-0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=18.0.0",
|
|
6
6
|
"@angular/core": ">=18.0.0",
|
|
7
|
-
"@libs-ui/components-inputs-valid": "0.2.
|
|
8
|
-
"@libs-ui/components-buttons-button": "0.2.
|
|
9
|
-
"@libs-ui/utils": "0.2.
|
|
7
|
+
"@libs-ui/components-inputs-valid": "0.2.307-0",
|
|
8
|
+
"@libs-ui/components-buttons-button": "0.2.307-0",
|
|
9
|
+
"@libs-ui/utils": "0.2.307-0",
|
|
10
10
|
"@ngx-translate/core": "^15.0.0",
|
|
11
|
-
"@libs-ui/components-dropdown": "0.2.
|
|
12
|
-
"@libs-ui/components-popover": "0.2.
|
|
11
|
+
"@libs-ui/components-dropdown": "0.2.307-0",
|
|
12
|
+
"@libs-ui/components-popover": "0.2.307-0",
|
|
13
13
|
"rxjs": "~7.8.0",
|
|
14
|
-
"@libs-ui/pipes-escape-html": "0.2.
|
|
15
|
-
"@libs-ui/components-inputs-quill": "0.2.
|
|
16
|
-
"@libs-ui/components-list": "0.2.
|
|
17
|
-
"@libs-ui/services-http-request": "0.2.
|
|
14
|
+
"@libs-ui/pipes-escape-html": "0.2.307-0",
|
|
15
|
+
"@libs-ui/components-inputs-quill": "0.2.307-0",
|
|
16
|
+
"@libs-ui/components-list": "0.2.307-0",
|
|
17
|
+
"@libs-ui/services-http-request": "0.2.307-0"
|
|
18
18
|
},
|
|
19
19
|
"sideEffects": false,
|
|
20
20
|
"module": "fesm2022/libs-ui-components-inputs-multi-language.mjs",
|