@libs-ui/components-inputs-emoji 0.2.10-6.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/README.md +3 -0
- package/defines/emoji.define.d.ts +10 -0
- package/emoji.component.d.ts +38 -0
- package/esm2022/defines/emoji.define.mjs +1790 -0
- package/esm2022/emoji.component.mjs +96 -0
- package/esm2022/index.mjs +2 -0
- package/esm2022/interfaces/emoji.interface.mjs +2 -0
- package/esm2022/libs-ui-components-inputs-emoji.mjs +5 -0
- package/fesm2022/libs-ui-components-inputs-emoji.mjs +1892 -0
- package/fesm2022/libs-ui-components-inputs-emoji.mjs.map +1 -0
- package/index.d.ts +1 -0
- package/interfaces/emoji.interface.d.ts +11 -0
- package/package.json +25 -0
package/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IPopoverOverlay } from "@libs-ui/components-popover";
|
|
2
|
+
export declare const defaultConfigPopover: IPopoverOverlay;
|
|
3
|
+
export declare const emojis: {
|
|
4
|
+
group_name: string;
|
|
5
|
+
emojis: {
|
|
6
|
+
emoji: string;
|
|
7
|
+
description: string;
|
|
8
|
+
category: string;
|
|
9
|
+
}[];
|
|
10
|
+
}[];
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { AfterViewInit } from '@angular/core';
|
|
2
|
+
import { IPopoverFunctionControlEvent, IPopoverOverlay } from '@libs-ui/components-popover';
|
|
3
|
+
import { IEmoji, IGroupEmoji } from './interfaces/emoji.interface';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class LibsUiComponentsEmojiComponent implements AfterViewInit {
|
|
6
|
+
protected emojisCategories: import("@angular/core").WritableSignal<IGroupEmoji[]>;
|
|
7
|
+
protected filter: import("@angular/core").WritableSignal<{
|
|
8
|
+
page: number;
|
|
9
|
+
keySearch: string;
|
|
10
|
+
groupSelected: string;
|
|
11
|
+
perPage: number;
|
|
12
|
+
}>;
|
|
13
|
+
protected dataEmojiView: import("@angular/core").WritableSignal<{
|
|
14
|
+
dataView: Array<IEmoji>;
|
|
15
|
+
allData: Array<IEmoji>;
|
|
16
|
+
}>;
|
|
17
|
+
readonly configPopover: import("@angular/core").InputSignalWithTransform<IPopoverOverlay, IPopoverOverlay | undefined>;
|
|
18
|
+
readonly isNgContent: import("@angular/core").InputSignal<boolean | undefined>;
|
|
19
|
+
zIndex: import("@angular/core").InputSignalWithTransform<number, number | undefined>;
|
|
20
|
+
readonly modePopoverPosition: import("@angular/core").InputSignal<"start" | "center" | "end" | undefined>;
|
|
21
|
+
readonly classPopup: import("@angular/core").InputSignalWithTransform<string, string | undefined>;
|
|
22
|
+
readonly classInclude: import("@angular/core").InputSignalWithTransform<string, string | undefined>;
|
|
23
|
+
readonly classIconInclude: import("@angular/core").InputSignalWithTransform<string, string | undefined>;
|
|
24
|
+
readonly outEventEmoji: import("@angular/core").OutputEmitterRef<string>;
|
|
25
|
+
readonly moFunctionsControl: import("@angular/core").OutputEmitterRef<IPopoverFunctionControlEvent>;
|
|
26
|
+
private readonly emojiRef;
|
|
27
|
+
private readonly elementViewEmoji;
|
|
28
|
+
constructor();
|
|
29
|
+
ngAfterViewInit(): void;
|
|
30
|
+
protected handlerAddEmoji(data: IEmoji): Promise<void>;
|
|
31
|
+
protected handlerFunctionsControl(event: IPopoverFunctionControlEvent): Promise<void>;
|
|
32
|
+
protected handlerChooseCategory(event: Event, category: IGroupEmoji): Promise<void>;
|
|
33
|
+
protected handlerSearchEmoji(keySearch: string): Promise<void>;
|
|
34
|
+
protected handlerScrollBottom(): void;
|
|
35
|
+
private getDataView;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LibsUiComponentsEmojiComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LibsUiComponentsEmojiComponent, "libs_ui-components-emoji", never, { "configPopover": { "alias": "configPopover"; "required": false; "isSignal": true; }; "isNgContent": { "alias": "isNgContent"; "required": false; "isSignal": true; }; "zIndex": { "alias": "zIndex"; "required": false; "isSignal": true; }; "modePopoverPosition": { "alias": "modePopoverPosition"; "required": false; "isSignal": true; }; "classPopup": { "alias": "classPopup"; "required": false; "isSignal": true; }; "classInclude": { "alias": "classInclude"; "required": false; "isSignal": true; }; "classIconInclude": { "alias": "classIconInclude"; "required": false; "isSignal": true; }; }, { "outEventEmoji": "outEventEmoji"; "moFunctionsControl": "moFunctionsControl"; }, never, ["*"], true, never>;
|
|
38
|
+
}
|