@libs-ui/components-inputs-multi-language 0.2.306 → 0.2.308-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 +43 -36
- 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 +321 -36
- package/fesm2022/libs-ui-components-inputs-multi-language.mjs +380 -90
- 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 +1 -0
- package/package.json +10 -10
- package/utils/multi-language.d.ts +4 -4
|
@@ -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>;
|
|
@@ -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.308-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.308-0",
|
|
8
|
+
"@libs-ui/components-buttons-button": "0.2.308-0",
|
|
9
|
+
"@libs-ui/utils": "0.2.308-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.308-0",
|
|
12
|
+
"@libs-ui/components-popover": "0.2.308-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.308-0",
|
|
15
|
+
"@libs-ui/components-inputs-quill": "0.2.308-0",
|
|
16
|
+
"@libs-ui/components-list": "0.2.308-0",
|
|
17
|
+
"@libs-ui/services-http-request": "0.2.308-0"
|
|
18
18
|
},
|
|
19
19
|
"sideEffects": false,
|
|
20
20
|
"module": "fesm2022/libs-ui-components-inputs-multi-language.mjs",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { IValidRequired } from
|
|
2
|
-
import { IListConfigItem } from
|
|
3
|
-
import { IHttpRequestConfig } from
|
|
4
|
-
import { IOption } from
|
|
1
|
+
import { IValidRequired } from '@libs-ui/components-inputs-valid';
|
|
2
|
+
import { IListConfigItem } from '@libs-ui/components-list';
|
|
3
|
+
import { IHttpRequestConfig } from '@libs-ui/services-http-request';
|
|
4
|
+
import { IOption } from '../interfaces/multi-language.interface';
|
|
5
5
|
export declare const currenciesSupport: () => any;
|
|
6
6
|
export declare const languageSupport: () => any;
|
|
7
7
|
export declare const currenciesOptions: (objectPattern?: {
|