@libs-ui/components-inputs-emoji 0.2.355-13 → 0.2.355-15

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.
@@ -1,11 +1,20 @@
1
+ /** Thông tin nhóm Emoji */
1
2
  export interface IGroupEmoji {
3
+ /** Tên nhóm (vd: Smileys & Emotion) */
2
4
  group_name: string;
5
+ /** Danh sách emoji trong nhóm */
3
6
  emojis: Array<IEmoji>;
7
+ /** Ký tự đại diện cho nhóm (thường là emoji đầu tiên) */
4
8
  iconGroup?: string;
5
9
  }
10
+ /** Chi tiết một Emoji */
6
11
  export interface IEmoji {
12
+ /** Ký tự emoji thực tế */
7
13
  emoji: string;
14
+ /** Mô tả emoji */
8
15
  description: string;
16
+ /** Danh mục của emoji */
9
17
  category: string;
18
+ /** Trạng thái hiển thị */
10
19
  display?: boolean;
11
20
  }
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@libs-ui/components-inputs-emoji",
3
- "version": "0.2.355-13",
3
+ "version": "0.2.355-15",
4
4
  "peerDependencies": {
5
5
  "@angular/core": ">=18.0.0",
6
- "@libs-ui/components-popover": "0.2.355-13",
7
- "@libs-ui/components-inputs-search": "0.2.355-13",
8
- "@libs-ui/components-scroll-overlay": "0.2.355-13",
9
- "@libs-ui/interfaces-types": "0.2.355-13",
10
- "@libs-ui/utils": "0.2.355-13",
6
+ "@libs-ui/components-popover": "0.2.355-15",
7
+ "@libs-ui/components-inputs-search": "0.2.355-15",
8
+ "@libs-ui/components-scroll-overlay": "0.2.355-15",
9
+ "@libs-ui/interfaces-types": "0.2.355-15",
10
+ "@libs-ui/utils": "0.2.355-15",
11
11
  "@ngx-translate/core": "^15.0.0"
12
12
  },
13
13
  "sideEffects": false,