@goodhood-web/nebenan-base 1.3.0-development.8 → 1.3.0-development.9
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/index.js +3 -3
- package/index.mjs +498 -45
- package/package.json +1 -1
- package/style.css +1 -1
package/index.mjs
CHANGED
|
@@ -11,7 +11,7 @@ var Zi = (n, e, i) => {
|
|
|
11
11
|
};
|
|
12
12
|
var Yn = (n, e, i) => (Po(n, e, "access private method"), i);
|
|
13
13
|
import * as f from "react";
|
|
14
|
-
import Ue, { useLayoutEffect as To, useEffect as He, Children as Ro, isValidElement as Bo, forwardRef as y, useState as
|
|
14
|
+
import Ue, { useLayoutEffect as To, useEffect as He, Children as Ro, isValidElement as Bo, forwardRef as y, useState as Pe, useRef as Se, cloneElement as bs, useCallback as kn, Component as Lo } from "react";
|
|
15
15
|
import * as _s from "react-dom";
|
|
16
16
|
function $o(n) {
|
|
17
17
|
return n && n.__esModule && Object.prototype.hasOwnProperty.call(n, "default") ? n.default : n;
|
|
@@ -3175,14 +3175,14 @@ function Nn(n) {
|
|
|
3175
3175
|
overflowX: i,
|
|
3176
3176
|
overflowY: t,
|
|
3177
3177
|
display: a
|
|
3178
|
-
} =
|
|
3178
|
+
} = Te(n);
|
|
3179
3179
|
return /auto|scroll|overlay|hidden|clip/.test(e + t + i) && !["inline", "contents"].includes(a);
|
|
3180
3180
|
}
|
|
3181
3181
|
function hd(n) {
|
|
3182
3182
|
return ["table", "td", "th"].includes(Xe(n));
|
|
3183
3183
|
}
|
|
3184
3184
|
function Rt(n) {
|
|
3185
|
-
const e = Bt(), i =
|
|
3185
|
+
const e = Bt(), i = Te(n);
|
|
3186
3186
|
return i.transform !== "none" || i.perspective !== "none" || (i.containerType ? i.containerType !== "normal" : !1) || !e && (i.backdropFilter ? i.backdropFilter !== "none" : !1) || !e && (i.filter ? i.filter !== "none" : !1) || ["transform", "perspective", "filter"].some((t) => (i.willChange || "").includes(t)) || ["paint", "layout", "strict", "content"].some((t) => (i.contain || "").includes(t));
|
|
3187
3187
|
}
|
|
3188
3188
|
function gd(n) {
|
|
@@ -3200,7 +3200,7 @@ function Bt() {
|
|
|
3200
3200
|
function Gi(n) {
|
|
3201
3201
|
return ["html", "body", "#document"].includes(Xe(n));
|
|
3202
3202
|
}
|
|
3203
|
-
function
|
|
3203
|
+
function Te(n) {
|
|
3204
3204
|
return Me(n).getComputedStyle(n);
|
|
3205
3205
|
}
|
|
3206
3206
|
function ji(n) {
|
|
@@ -3235,7 +3235,7 @@ function Kn(n, e, i) {
|
|
|
3235
3235
|
return s ? e.concat(r, r.visualViewport || [], Nn(a) ? a : [], r.frameElement && i ? Kn(r.frameElement) : []) : e.concat(a, Kn(a, [], i));
|
|
3236
3236
|
}
|
|
3237
3237
|
function Zs(n) {
|
|
3238
|
-
const e =
|
|
3238
|
+
const e = Te(n);
|
|
3239
3239
|
let i = parseFloat(e.width) || 0, t = parseFloat(e.height) || 0;
|
|
3240
3240
|
const a = je(n), s = a ? n.offsetWidth : i, r = a ? n.offsetHeight : t, o = ki(i) !== s || ki(t) !== r;
|
|
3241
3241
|
return o && (i = s, t = r), {
|
|
@@ -3284,7 +3284,7 @@ function on(n, e, i, t) {
|
|
|
3284
3284
|
const h = Me(s), g = t && Ne(t) ? Me(t) : t;
|
|
3285
3285
|
let m = h, k = m.frameElement;
|
|
3286
3286
|
for (; k && t && g !== m; ) {
|
|
3287
|
-
const w = wn(k), b = k.getBoundingClientRect(), S =
|
|
3287
|
+
const w = wn(k), b = k.getBoundingClientRect(), S = Te(k), x = b.left + (k.clientLeft + parseFloat(S.paddingLeft)) * w.x, z = b.top + (k.clientTop + parseFloat(S.paddingTop)) * w.y;
|
|
3288
3288
|
d *= w.x, c *= w.y, l *= w.x, u *= w.y, d += x, c += z, m = Me(k), k = m.frameElement;
|
|
3289
3289
|
}
|
|
3290
3290
|
}
|
|
@@ -3341,7 +3341,7 @@ function bd(n) {
|
|
|
3341
3341
|
const e = Ie(n), i = ji(n), t = n.ownerDocument.body, a = an(e.scrollWidth, e.clientWidth, t.scrollWidth, t.clientWidth), s = an(e.scrollHeight, e.clientHeight, t.scrollHeight, t.clientHeight);
|
|
3342
3342
|
let r = -i.scrollLeft + Js(n);
|
|
3343
3343
|
const o = -i.scrollTop;
|
|
3344
|
-
return
|
|
3344
|
+
return Te(t).direction === "rtl" && (r += an(e.clientWidth, t.clientWidth) - a), {
|
|
3345
3345
|
width: a,
|
|
3346
3346
|
height: s,
|
|
3347
3347
|
x: r,
|
|
@@ -3392,17 +3392,17 @@ function za(n, e, i) {
|
|
|
3392
3392
|
}
|
|
3393
3393
|
function Ys(n, e) {
|
|
3394
3394
|
const i = _n(n);
|
|
3395
|
-
return i === e || !Ne(i) || Gi(i) ? !1 :
|
|
3395
|
+
return i === e || !Ne(i) || Gi(i) ? !1 : Te(i).position === "fixed" || Ys(i, e);
|
|
3396
3396
|
}
|
|
3397
3397
|
function Fd(n, e) {
|
|
3398
3398
|
const i = e.get(n);
|
|
3399
3399
|
if (i)
|
|
3400
3400
|
return i;
|
|
3401
3401
|
let t = Kn(n, [], !1).filter((o) => Ne(o) && Xe(o) !== "body"), a = null;
|
|
3402
|
-
const s =
|
|
3402
|
+
const s = Te(n).position === "fixed";
|
|
3403
3403
|
let r = s ? _n(n) : n;
|
|
3404
3404
|
for (; Ne(r) && !Gi(r); ) {
|
|
3405
|
-
const o =
|
|
3405
|
+
const o = Te(r), d = Rt(r);
|
|
3406
3406
|
!d && o.position === "fixed" && (a = null), (s ? !d && !a : !d && o.position === "static" && !!a && ["absolute", "fixed"].includes(a.position) || Nn(r) && !d && Ys(n, r)) ? t = t.filter((l) => l !== r) : a = o, r = _n(r);
|
|
3407
3407
|
}
|
|
3408
3408
|
return e.set(n, t), t;
|
|
@@ -3457,16 +3457,16 @@ function Md(n, e, i) {
|
|
|
3457
3457
|
};
|
|
3458
3458
|
}
|
|
3459
3459
|
function Pa(n, e) {
|
|
3460
|
-
return !je(n) ||
|
|
3460
|
+
return !je(n) || Te(n).position === "fixed" ? null : e ? e(n) : n.offsetParent;
|
|
3461
3461
|
}
|
|
3462
3462
|
function Qs(n, e) {
|
|
3463
3463
|
const i = Me(n);
|
|
3464
3464
|
if (!je(n) || qs(n))
|
|
3465
3465
|
return i;
|
|
3466
3466
|
let t = Pa(n, e);
|
|
3467
|
-
for (; t && hd(t) &&
|
|
3467
|
+
for (; t && hd(t) && Te(t).position === "static"; )
|
|
3468
3468
|
t = Pa(t, e);
|
|
3469
|
-
return t && (Xe(t) === "html" || Xe(t) === "body" &&
|
|
3469
|
+
return t && (Xe(t) === "html" || Xe(t) === "body" && Te(t).position === "static" && !Rt(t)) ? i : t || gd(n) || i;
|
|
3470
3470
|
}
|
|
3471
3471
|
const Cd = async function(n) {
|
|
3472
3472
|
const e = this.getOffsetParent || Qs, i = this.getDimensions;
|
|
@@ -3480,7 +3480,7 @@ const Cd = async function(n) {
|
|
|
3480
3480
|
};
|
|
3481
3481
|
};
|
|
3482
3482
|
function Ed(n) {
|
|
3483
|
-
return
|
|
3483
|
+
return Te(n).direction === "rtl";
|
|
3484
3484
|
}
|
|
3485
3485
|
const zd = {
|
|
3486
3486
|
convertOffsetParentRelativeRectToViewportRelativeRect: pd,
|
|
@@ -6815,10 +6815,10 @@ le.walkTokens;
|
|
|
6815
6815
|
le.parseInline;
|
|
6816
6816
|
$e.parse;
|
|
6817
6817
|
Le.lex;
|
|
6818
|
-
const Tg = "
|
|
6818
|
+
const Tg = "_bubbleContent_xhdrq_106", Rg = "_bubble_xhdrq_106", at = {
|
|
6819
6819
|
bubbleContent: Tg,
|
|
6820
6820
|
bubble: Rg,
|
|
6821
|
-
"bubble--empty": "_bubble--
|
|
6821
|
+
"bubble--empty": "_bubble--empty_xhdrq_141"
|
|
6822
6822
|
}, Bg = 9, Oa = (n) => {
|
|
6823
6823
|
const { ariaLabel: e, children: i, value: t } = n, a = t === void 0, s = a ? void 0 : Math.max(0, t).toString(), r = me({
|
|
6824
6824
|
[at["bubble--empty"]]: a,
|
|
@@ -7018,7 +7018,7 @@ const Ot = ({
|
|
|
7018
7018
|
placeholder: i,
|
|
7019
7019
|
ref: t
|
|
7020
7020
|
}) => {
|
|
7021
|
-
const [a, s] =
|
|
7021
|
+
const [a, s] = Pe(""), [r, o] = Pe(!0), { getInputProps: d } = Bf({
|
|
7022
7022
|
inputRef: t,
|
|
7023
7023
|
onChange: (g) => {
|
|
7024
7024
|
s(g.target.value), l(g.target.value);
|
|
@@ -7101,7 +7101,7 @@ const Ot = ({
|
|
|
7101
7101
|
function zr(n) {
|
|
7102
7102
|
return n && n.__esModule ? n.default : n;
|
|
7103
7103
|
}
|
|
7104
|
-
function
|
|
7104
|
+
function ze(n, e, i) {
|
|
7105
7105
|
return e in n ? Object.defineProperty(n, e, {
|
|
7106
7106
|
value: i,
|
|
7107
7107
|
enumerable: !0,
|
|
@@ -7460,6 +7460,10 @@ var Ye = {
|
|
|
7460
7460
|
get: b2
|
|
7461
7461
|
};
|
|
7462
7462
|
const rt = /* @__PURE__ */ new Map(), _2 = [
|
|
7463
|
+
{
|
|
7464
|
+
v: 15,
|
|
7465
|
+
emoji: "🫨"
|
|
7466
|
+
},
|
|
7463
7467
|
{
|
|
7464
7468
|
v: 14,
|
|
7465
7469
|
emoji: "🫠"
|
|
@@ -7623,7 +7627,7 @@ var Ke = {
|
|
|
7623
7627
|
value: 24
|
|
7624
7628
|
},
|
|
7625
7629
|
emojiVersion: {
|
|
7626
|
-
value:
|
|
7630
|
+
value: 15,
|
|
7627
7631
|
choices: [
|
|
7628
7632
|
1,
|
|
7629
7633
|
2,
|
|
@@ -7635,7 +7639,8 @@ var Ke = {
|
|
|
7635
7639
|
12.1,
|
|
7636
7640
|
13,
|
|
7637
7641
|
13.1,
|
|
7638
|
-
14
|
|
7642
|
+
14,
|
|
7643
|
+
15
|
|
7639
7644
|
]
|
|
7640
7645
|
},
|
|
7641
7646
|
exceptEmojis: {
|
|
@@ -7664,7 +7669,7 @@ var Ke = {
|
|
|
7664
7669
|
"hi",
|
|
7665
7670
|
"it",
|
|
7666
7671
|
"ja",
|
|
7667
|
-
"
|
|
7672
|
+
"ko",
|
|
7668
7673
|
"nl",
|
|
7669
7674
|
"pl",
|
|
7670
7675
|
"pt",
|
|
@@ -8183,7 +8188,7 @@ function St(n) {
|
|
|
8183
8188
|
}
|
|
8184
8189
|
if (t || (t = sn.get(e || n.native)), !t)
|
|
8185
8190
|
return n.fallback;
|
|
8186
|
-
const a = t.skins[i - 1] || t.skins[0], s = a.src || (n.set != "native" && !n.spritesheet ? typeof n.getImageURL == "function" ? n.getImageURL(n.set, a.unified) : `https://cdn.jsdelivr.net/npm/emoji-datasource-${n.set}@
|
|
8191
|
+
const a = t.skins[i - 1] || t.skins[0], s = a.src || (n.set != "native" && !n.spritesheet ? typeof n.getImageURL == "function" ? n.getImageURL(n.set, a.unified) : `https://cdn.jsdelivr.net/npm/emoji-datasource-${n.set}@15.0.1/img/${n.set}/64/${a.unified}.png` : void 0), r = typeof n.getSpritesheetURL == "function" ? n.getSpritesheetURL(n.set) : `https://cdn.jsdelivr.net/npm/emoji-datasource-${n.set}@15.0.1/img/${n.set}/sheets-256/64.png`;
|
|
8187
8192
|
return /* @__PURE__ */ E("span", {
|
|
8188
8193
|
class: "emoji-mart-emoji",
|
|
8189
8194
|
"data-emoji-set": n.set,
|
|
@@ -8285,7 +8290,7 @@ class Yr extends qr {
|
|
|
8285
8290
|
super(e);
|
|
8286
8291
|
}
|
|
8287
8292
|
}
|
|
8288
|
-
|
|
8293
|
+
ze(Yr, "Props", Jr);
|
|
8289
8294
|
typeof customElements < "u" && !customElements.get("em-emoji") && customElements.define("em-emoji", Yr);
|
|
8290
8295
|
var Xa, xt = [], es = I.__b, ns = I.__r, is = I.diffed, ts = I.__c, as = I.unmount;
|
|
8291
8296
|
function D2() {
|
|
@@ -8671,7 +8676,8 @@ class X2 extends Ge {
|
|
|
8671
8676
|
document.addEventListener("click", this.handleClickOutside), this.observe();
|
|
8672
8677
|
}
|
|
8673
8678
|
unregister() {
|
|
8674
|
-
|
|
8679
|
+
var e;
|
|
8680
|
+
document.removeEventListener("click", this.handleClickOutside), (e = this.darkMedia) == null || e.removeEventListener("change", this.darkMediaCallback), this.unobserve();
|
|
8675
8681
|
}
|
|
8676
8682
|
observe() {
|
|
8677
8683
|
this.observeCategories(), this.observeRows();
|
|
@@ -8712,11 +8718,7 @@ class X2 extends Ge {
|
|
|
8712
8718
|
if (!this.darkMedia) {
|
|
8713
8719
|
if (this.darkMedia = matchMedia("(prefers-color-scheme: dark)"), this.darkMedia.media.match(/^not/))
|
|
8714
8720
|
return "light";
|
|
8715
|
-
this.darkMedia.
|
|
8716
|
-
this.props.theme == "auto" && this.setState({
|
|
8717
|
-
theme: this.darkMedia.matches ? "dark" : "light"
|
|
8718
|
-
});
|
|
8719
|
-
});
|
|
8721
|
+
this.darkMedia.addEventListener("change", this.darkMediaCallback);
|
|
8720
8722
|
}
|
|
8721
8723
|
return this.darkMedia.matches ? "dark" : "light";
|
|
8722
8724
|
}
|
|
@@ -9301,21 +9303,25 @@ class X2 extends Ge {
|
|
|
9301
9303
|
});
|
|
9302
9304
|
}
|
|
9303
9305
|
constructor(e) {
|
|
9304
|
-
super(),
|
|
9306
|
+
super(), ze(this, "darkMediaCallback", () => {
|
|
9307
|
+
this.props.theme == "auto" && this.setState({
|
|
9308
|
+
theme: this.darkMedia.matches ? "dark" : "light"
|
|
9309
|
+
});
|
|
9310
|
+
}), ze(this, "handleClickOutside", (i) => {
|
|
9305
9311
|
const { element: t } = this.props;
|
|
9306
9312
|
i.target != t && (this.state.showSkins && this.closeSkins(), this.props.onClickOutside && this.props.onClickOutside(i));
|
|
9307
|
-
}),
|
|
9313
|
+
}), ze(this, "handleBaseClick", (i) => {
|
|
9308
9314
|
this.state.showSkins && (i.target.closest(".menu") || (i.preventDefault(), i.stopImmediatePropagation(), this.closeSkins()));
|
|
9309
|
-
}),
|
|
9315
|
+
}), ze(this, "handleBaseKeydown", (i) => {
|
|
9310
9316
|
this.state.showSkins && i.key == "Escape" && (i.preventDefault(), i.stopImmediatePropagation(), this.closeSkins());
|
|
9311
|
-
}),
|
|
9317
|
+
}), ze(this, "handleSearchClick", () => {
|
|
9312
9318
|
this.getEmojiByPos(this.state.pos) && this.setState({
|
|
9313
9319
|
pos: [
|
|
9314
9320
|
-1,
|
|
9315
9321
|
-1
|
|
9316
9322
|
]
|
|
9317
9323
|
});
|
|
9318
|
-
}),
|
|
9324
|
+
}), ze(this, "handleSearchInput", async () => {
|
|
9319
9325
|
const i = this.refs.searchInput.current;
|
|
9320
9326
|
if (!i)
|
|
9321
9327
|
return;
|
|
@@ -9345,7 +9351,7 @@ class X2 extends Ge {
|
|
|
9345
9351
|
searchResults: o,
|
|
9346
9352
|
pos: r
|
|
9347
9353
|
}, s);
|
|
9348
|
-
}),
|
|
9354
|
+
}), ze(this, "handleSearchKeyDown", (i) => {
|
|
9349
9355
|
const t = i.currentTarget;
|
|
9350
9356
|
switch (i.stopImmediatePropagation(), i.key) {
|
|
9351
9357
|
case "ArrowLeft":
|
|
@@ -9386,16 +9392,16 @@ class X2 extends Ge {
|
|
|
9386
9392
|
i.preventDefault(), this.state.searchResults ? this.clearSearch() : this.unfocusSearch();
|
|
9387
9393
|
break;
|
|
9388
9394
|
}
|
|
9389
|
-
}),
|
|
9395
|
+
}), ze(this, "clearSearch", () => {
|
|
9390
9396
|
const i = this.refs.searchInput.current;
|
|
9391
9397
|
i && (i.value = "", i.focus(), this.handleSearchInput());
|
|
9392
|
-
}),
|
|
9398
|
+
}), ze(this, "handleCategoryClick", ({ category: i, i: t }) => {
|
|
9393
9399
|
this.scrollTo(t == 0 ? {
|
|
9394
9400
|
row: -1
|
|
9395
9401
|
} : {
|
|
9396
9402
|
categoryId: i.id
|
|
9397
9403
|
});
|
|
9398
|
-
}),
|
|
9404
|
+
}), ze(this, "openSkins", (i) => {
|
|
9399
9405
|
const { currentTarget: t } = i, a = t.getBoundingClientRect();
|
|
9400
9406
|
this.setState({
|
|
9401
9407
|
showSkins: a
|
|
@@ -9432,7 +9438,7 @@ class It extends j2 {
|
|
|
9432
9438
|
});
|
|
9433
9439
|
}
|
|
9434
9440
|
}
|
|
9435
|
-
|
|
9441
|
+
ze(It, "Props", Ke);
|
|
9436
9442
|
typeof customElements < "u" && !customElements.get("em-emoji-picker") && customElements.define("em-emoji-picker", It);
|
|
9437
9443
|
var Xr = {};
|
|
9438
9444
|
Xr = `:host {
|
|
@@ -10253,6 +10259,7 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
10253
10259
|
"grimacing",
|
|
10254
10260
|
"face_exhaling",
|
|
10255
10261
|
"lying_face",
|
|
10262
|
+
"shaking_face",
|
|
10256
10263
|
"relieved",
|
|
10257
10264
|
"pensive",
|
|
10258
10265
|
"sleepy",
|
|
@@ -10317,7 +10324,6 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
10317
10324
|
"ghost",
|
|
10318
10325
|
"alien",
|
|
10319
10326
|
"space_invader",
|
|
10320
|
-
"robot_face",
|
|
10321
10327
|
"wave",
|
|
10322
10328
|
"raised_back_of_hand",
|
|
10323
10329
|
"raised_hand_with_fingers_splayed",
|
|
@@ -10327,6 +10333,8 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
10327
10333
|
"leftwards_hand",
|
|
10328
10334
|
"palm_down_hand",
|
|
10329
10335
|
"palm_up_hand",
|
|
10336
|
+
"leftwards_pushing_hand",
|
|
10337
|
+
"rightwards_pushing_hand",
|
|
10330
10338
|
"ok_hand",
|
|
10331
10339
|
"pinched_fingers",
|
|
10332
10340
|
"pinching_hand",
|
|
@@ -10679,6 +10687,7 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
10679
10687
|
"busts_in_silhouette",
|
|
10680
10688
|
"people_hugging",
|
|
10681
10689
|
"footprints",
|
|
10690
|
+
"robot_face",
|
|
10682
10691
|
"smiley_cat",
|
|
10683
10692
|
"smile_cat",
|
|
10684
10693
|
"joy_cat",
|
|
@@ -10705,13 +10714,16 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
10705
10714
|
"heart_on_fire",
|
|
10706
10715
|
"mending_heart",
|
|
10707
10716
|
"heart",
|
|
10717
|
+
"pink_heart",
|
|
10708
10718
|
"orange_heart",
|
|
10709
10719
|
"yellow_heart",
|
|
10710
10720
|
"green_heart",
|
|
10711
10721
|
"blue_heart",
|
|
10722
|
+
"light_blue_heart",
|
|
10712
10723
|
"purple_heart",
|
|
10713
10724
|
"brown_heart",
|
|
10714
10725
|
"black_heart",
|
|
10726
|
+
"grey_heart",
|
|
10715
10727
|
"white_heart",
|
|
10716
10728
|
"kiss",
|
|
10717
10729
|
"100",
|
|
@@ -10752,6 +10764,8 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
10752
10764
|
"tiger2",
|
|
10753
10765
|
"leopard",
|
|
10754
10766
|
"horse",
|
|
10767
|
+
"moose",
|
|
10768
|
+
"donkey",
|
|
10755
10769
|
"racehorse",
|
|
10756
10770
|
"unicorn_face",
|
|
10757
10771
|
"zebra_face",
|
|
@@ -10814,6 +10828,9 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
10814
10828
|
"flamingo",
|
|
10815
10829
|
"peacock",
|
|
10816
10830
|
"parrot",
|
|
10831
|
+
"wing",
|
|
10832
|
+
"black_bird",
|
|
10833
|
+
"goose",
|
|
10817
10834
|
"frog",
|
|
10818
10835
|
"crocodile",
|
|
10819
10836
|
"turtle",
|
|
@@ -10834,6 +10851,7 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
10834
10851
|
"octopus",
|
|
10835
10852
|
"shell",
|
|
10836
10853
|
"coral",
|
|
10854
|
+
"jellyfish",
|
|
10837
10855
|
"snail",
|
|
10838
10856
|
"butterfly",
|
|
10839
10857
|
"bug",
|
|
@@ -10861,6 +10879,7 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
10861
10879
|
"sunflower",
|
|
10862
10880
|
"blossom",
|
|
10863
10881
|
"tulip",
|
|
10882
|
+
"hyacinth",
|
|
10864
10883
|
"seedling",
|
|
10865
10884
|
"potted_plant",
|
|
10866
10885
|
"evergreen_tree",
|
|
@@ -10916,6 +10935,8 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
10916
10935
|
"peanuts",
|
|
10917
10936
|
"beans",
|
|
10918
10937
|
"chestnut",
|
|
10938
|
+
"ginger_root",
|
|
10939
|
+
"pea_pod",
|
|
10919
10940
|
"bread",
|
|
10920
10941
|
"croissant",
|
|
10921
10942
|
"baguette_bread",
|
|
@@ -11351,6 +11372,7 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
11351
11372
|
"shorts",
|
|
11352
11373
|
"bikini",
|
|
11353
11374
|
"womans_clothes",
|
|
11375
|
+
"folding_hand_fan",
|
|
11354
11376
|
"purse",
|
|
11355
11377
|
"handbag",
|
|
11356
11378
|
"pouch",
|
|
@@ -11365,6 +11387,7 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
11365
11387
|
"sandal",
|
|
11366
11388
|
"ballet_shoes",
|
|
11367
11389
|
"boot",
|
|
11390
|
+
"hair_pick",
|
|
11368
11391
|
"crown",
|
|
11369
11392
|
"womans_hat",
|
|
11370
11393
|
"tophat",
|
|
@@ -11403,6 +11426,8 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
11403
11426
|
"banjo",
|
|
11404
11427
|
"drum_with_drumsticks",
|
|
11405
11428
|
"long_drum",
|
|
11429
|
+
"maracas",
|
|
11430
|
+
"flute",
|
|
11406
11431
|
"iphone",
|
|
11407
11432
|
"calling",
|
|
11408
11433
|
"phone",
|
|
@@ -11652,6 +11677,7 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
11652
11677
|
"peace_symbol",
|
|
11653
11678
|
"menorah_with_nine_branches",
|
|
11654
11679
|
"six_pointed_star",
|
|
11680
|
+
"khanda",
|
|
11655
11681
|
"aries",
|
|
11656
11682
|
"taurus",
|
|
11657
11683
|
"gemini",
|
|
@@ -11687,6 +11713,7 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
11687
11713
|
"low_brightness",
|
|
11688
11714
|
"high_brightness",
|
|
11689
11715
|
"signal_strength",
|
|
11716
|
+
"wireless",
|
|
11690
11717
|
"vibration_mode",
|
|
11691
11718
|
"mobile_phone_off",
|
|
11692
11719
|
"female_sign",
|
|
@@ -13021,6 +13048,24 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
13021
13048
|
],
|
|
13022
13049
|
version: 3
|
|
13023
13050
|
},
|
|
13051
|
+
shaking_face: {
|
|
13052
|
+
id: "shaking_face",
|
|
13053
|
+
name: "zitterndes Doppelgesicht",
|
|
13054
|
+
keywords: [
|
|
13055
|
+
"Erdbeben",
|
|
13056
|
+
"Gesicht",
|
|
13057
|
+
"Schock",
|
|
13058
|
+
"zittern",
|
|
13059
|
+
"zitterndes Doppelgesicht"
|
|
13060
|
+
],
|
|
13061
|
+
skins: [
|
|
13062
|
+
{
|
|
13063
|
+
unified: "1fae8",
|
|
13064
|
+
native: "🫨"
|
|
13065
|
+
}
|
|
13066
|
+
],
|
|
13067
|
+
version: 15
|
|
13068
|
+
},
|
|
13024
13069
|
relieved: {
|
|
13025
13070
|
id: "relieved",
|
|
13026
13071
|
name: "erleichtertes Gesicht",
|
|
@@ -14599,6 +14644,25 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
14599
14644
|
],
|
|
14600
14645
|
version: 1
|
|
14601
14646
|
},
|
|
14647
|
+
pink_heart: {
|
|
14648
|
+
id: "pink_heart",
|
|
14649
|
+
name: "pinkes Herz",
|
|
14650
|
+
keywords: [
|
|
14651
|
+
"flirten",
|
|
14652
|
+
"Herz",
|
|
14653
|
+
"pink",
|
|
14654
|
+
"pinkes Herz",
|
|
14655
|
+
"süß",
|
|
14656
|
+
"verliebt"
|
|
14657
|
+
],
|
|
14658
|
+
skins: [
|
|
14659
|
+
{
|
|
14660
|
+
unified: "1fa77",
|
|
14661
|
+
native: "🩷"
|
|
14662
|
+
}
|
|
14663
|
+
],
|
|
14664
|
+
version: 15
|
|
14665
|
+
},
|
|
14602
14666
|
orange_heart: {
|
|
14603
14667
|
id: "orange_heart",
|
|
14604
14668
|
name: "oranges Herz",
|
|
@@ -14671,6 +14735,24 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
14671
14735
|
],
|
|
14672
14736
|
version: 1
|
|
14673
14737
|
},
|
|
14738
|
+
light_blue_heart: {
|
|
14739
|
+
id: "light_blue_heart",
|
|
14740
|
+
name: "hellblaues Herz",
|
|
14741
|
+
keywords: [
|
|
14742
|
+
"aquamarin",
|
|
14743
|
+
"hellblau",
|
|
14744
|
+
"hellblaues Herz",
|
|
14745
|
+
"Herz",
|
|
14746
|
+
"türkis"
|
|
14747
|
+
],
|
|
14748
|
+
skins: [
|
|
14749
|
+
{
|
|
14750
|
+
unified: "1fa75",
|
|
14751
|
+
native: "🩵"
|
|
14752
|
+
}
|
|
14753
|
+
],
|
|
14754
|
+
version: 15
|
|
14755
|
+
},
|
|
14674
14756
|
purple_heart: {
|
|
14675
14757
|
id: "purple_heart",
|
|
14676
14758
|
name: "lila Herz",
|
|
@@ -14722,6 +14804,24 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
14722
14804
|
],
|
|
14723
14805
|
version: 3
|
|
14724
14806
|
},
|
|
14807
|
+
grey_heart: {
|
|
14808
|
+
id: "grey_heart",
|
|
14809
|
+
name: "graues Herz",
|
|
14810
|
+
keywords: [
|
|
14811
|
+
"grau",
|
|
14812
|
+
"graues Herz",
|
|
14813
|
+
"Herz",
|
|
14814
|
+
"schieferfarben",
|
|
14815
|
+
"silberfarben"
|
|
14816
|
+
],
|
|
14817
|
+
skins: [
|
|
14818
|
+
{
|
|
14819
|
+
unified: "1fa76",
|
|
14820
|
+
native: "🩶"
|
|
14821
|
+
}
|
|
14822
|
+
],
|
|
14823
|
+
version: 15
|
|
14824
|
+
},
|
|
14725
14825
|
white_heart: {
|
|
14726
14826
|
id: "white_heart",
|
|
14727
14827
|
name: "weißes Herz",
|
|
@@ -15296,6 +15396,85 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
15296
15396
|
],
|
|
15297
15397
|
version: 14
|
|
15298
15398
|
},
|
|
15399
|
+
leftwards_pushing_hand: {
|
|
15400
|
+
id: "leftwards_pushing_hand",
|
|
15401
|
+
name: "nach links schiebende Hand",
|
|
15402
|
+
keywords: [
|
|
15403
|
+
"High five",
|
|
15404
|
+
"nach links",
|
|
15405
|
+
"nach links schiebende Hand",
|
|
15406
|
+
"schieben",
|
|
15407
|
+
"stopp",
|
|
15408
|
+
"warte mal"
|
|
15409
|
+
],
|
|
15410
|
+
skins: [
|
|
15411
|
+
{
|
|
15412
|
+
unified: "1faf7",
|
|
15413
|
+
native: "🫷"
|
|
15414
|
+
},
|
|
15415
|
+
{
|
|
15416
|
+
unified: "1faf7-1f3fb",
|
|
15417
|
+
native: "🫷🏻"
|
|
15418
|
+
},
|
|
15419
|
+
{
|
|
15420
|
+
unified: "1faf7-1f3fc",
|
|
15421
|
+
native: "🫷🏼"
|
|
15422
|
+
},
|
|
15423
|
+
{
|
|
15424
|
+
unified: "1faf7-1f3fd",
|
|
15425
|
+
native: "🫷🏽"
|
|
15426
|
+
},
|
|
15427
|
+
{
|
|
15428
|
+
unified: "1faf7-1f3fe",
|
|
15429
|
+
native: "🫷🏾"
|
|
15430
|
+
},
|
|
15431
|
+
{
|
|
15432
|
+
unified: "1faf7-1f3ff",
|
|
15433
|
+
native: "🫷🏿"
|
|
15434
|
+
}
|
|
15435
|
+
],
|
|
15436
|
+
version: 15
|
|
15437
|
+
},
|
|
15438
|
+
rightwards_pushing_hand: {
|
|
15439
|
+
id: "rightwards_pushing_hand",
|
|
15440
|
+
name: "nach rechts schiebende Hand",
|
|
15441
|
+
keywords: [
|
|
15442
|
+
"High 5",
|
|
15443
|
+
"High five",
|
|
15444
|
+
"nach rechts",
|
|
15445
|
+
"nach rechts schiebende Hand",
|
|
15446
|
+
"schieben",
|
|
15447
|
+
"stopp",
|
|
15448
|
+
"warte mal"
|
|
15449
|
+
],
|
|
15450
|
+
skins: [
|
|
15451
|
+
{
|
|
15452
|
+
unified: "1faf8",
|
|
15453
|
+
native: "🫸"
|
|
15454
|
+
},
|
|
15455
|
+
{
|
|
15456
|
+
unified: "1faf8-1f3fb",
|
|
15457
|
+
native: "🫸🏻"
|
|
15458
|
+
},
|
|
15459
|
+
{
|
|
15460
|
+
unified: "1faf8-1f3fc",
|
|
15461
|
+
native: "🫸🏼"
|
|
15462
|
+
},
|
|
15463
|
+
{
|
|
15464
|
+
unified: "1faf8-1f3fd",
|
|
15465
|
+
native: "🫸🏽"
|
|
15466
|
+
},
|
|
15467
|
+
{
|
|
15468
|
+
unified: "1faf8-1f3fe",
|
|
15469
|
+
native: "🫸🏾"
|
|
15470
|
+
},
|
|
15471
|
+
{
|
|
15472
|
+
unified: "1faf8-1f3ff",
|
|
15473
|
+
native: "🫸🏿"
|
|
15474
|
+
}
|
|
15475
|
+
],
|
|
15476
|
+
version: 15
|
|
15477
|
+
},
|
|
15299
15478
|
ok_hand: {
|
|
15300
15479
|
id: "ok_hand",
|
|
15301
15480
|
name: "OK-Zeichen",
|
|
@@ -27500,6 +27679,43 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
27500
27679
|
],
|
|
27501
27680
|
version: 1
|
|
27502
27681
|
},
|
|
27682
|
+
moose: {
|
|
27683
|
+
id: "moose",
|
|
27684
|
+
name: "Elch",
|
|
27685
|
+
keywords: [
|
|
27686
|
+
"Elch",
|
|
27687
|
+
"Geweih",
|
|
27688
|
+
"Säugetier",
|
|
27689
|
+
"Tier"
|
|
27690
|
+
],
|
|
27691
|
+
skins: [
|
|
27692
|
+
{
|
|
27693
|
+
unified: "1face",
|
|
27694
|
+
native: "🫎"
|
|
27695
|
+
}
|
|
27696
|
+
],
|
|
27697
|
+
version: 15
|
|
27698
|
+
},
|
|
27699
|
+
donkey: {
|
|
27700
|
+
id: "donkey",
|
|
27701
|
+
name: "Esel",
|
|
27702
|
+
keywords: [
|
|
27703
|
+
"Dummkopf",
|
|
27704
|
+
"Esel",
|
|
27705
|
+
"Maultier",
|
|
27706
|
+
"Säugetier",
|
|
27707
|
+
"störrisch",
|
|
27708
|
+
"stur",
|
|
27709
|
+
"Tier"
|
|
27710
|
+
],
|
|
27711
|
+
skins: [
|
|
27712
|
+
{
|
|
27713
|
+
unified: "1facf",
|
|
27714
|
+
native: "🫏"
|
|
27715
|
+
}
|
|
27716
|
+
],
|
|
27717
|
+
version: 15
|
|
27718
|
+
},
|
|
27503
27719
|
racehorse: {
|
|
27504
27720
|
id: "racehorse",
|
|
27505
27721
|
name: "Pferd",
|
|
@@ -28506,6 +28722,62 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
28506
28722
|
],
|
|
28507
28723
|
version: 11
|
|
28508
28724
|
},
|
|
28725
|
+
wing: {
|
|
28726
|
+
id: "wing",
|
|
28727
|
+
name: "Flügel",
|
|
28728
|
+
keywords: [
|
|
28729
|
+
"Engelsflügel",
|
|
28730
|
+
"Federn",
|
|
28731
|
+
"fliegen",
|
|
28732
|
+
"Flügel",
|
|
28733
|
+
"Mythologie",
|
|
28734
|
+
"Vogel"
|
|
28735
|
+
],
|
|
28736
|
+
skins: [
|
|
28737
|
+
{
|
|
28738
|
+
unified: "1fabd",
|
|
28739
|
+
native: "🪽"
|
|
28740
|
+
}
|
|
28741
|
+
],
|
|
28742
|
+
version: 15
|
|
28743
|
+
},
|
|
28744
|
+
black_bird: {
|
|
28745
|
+
id: "black_bird",
|
|
28746
|
+
name: "schwarzer Vogel",
|
|
28747
|
+
keywords: [
|
|
28748
|
+
"Amsel",
|
|
28749
|
+
"Krähe",
|
|
28750
|
+
"Rabe",
|
|
28751
|
+
"schwarz",
|
|
28752
|
+
"schwarzer Vogel",
|
|
28753
|
+
"Vogel"
|
|
28754
|
+
],
|
|
28755
|
+
skins: [
|
|
28756
|
+
{
|
|
28757
|
+
unified: "1f426-200d-2b1b",
|
|
28758
|
+
native: "🐦⬛"
|
|
28759
|
+
}
|
|
28760
|
+
],
|
|
28761
|
+
version: 15
|
|
28762
|
+
},
|
|
28763
|
+
goose: {
|
|
28764
|
+
id: "goose",
|
|
28765
|
+
name: "Gans",
|
|
28766
|
+
keywords: [
|
|
28767
|
+
"blöd",
|
|
28768
|
+
"dumm",
|
|
28769
|
+
"Gans",
|
|
28770
|
+
"Geflügel",
|
|
28771
|
+
"Vogel"
|
|
28772
|
+
],
|
|
28773
|
+
skins: [
|
|
28774
|
+
{
|
|
28775
|
+
unified: "1fabf",
|
|
28776
|
+
native: "🪿"
|
|
28777
|
+
}
|
|
28778
|
+
],
|
|
28779
|
+
version: 15
|
|
28780
|
+
},
|
|
28509
28781
|
frog: {
|
|
28510
28782
|
id: "frog",
|
|
28511
28783
|
name: "Frosch",
|
|
@@ -28833,6 +29105,26 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
28833
29105
|
],
|
|
28834
29106
|
version: 14
|
|
28835
29107
|
},
|
|
29108
|
+
jellyfish: {
|
|
29109
|
+
id: "jellyfish",
|
|
29110
|
+
name: "Qualle",
|
|
29111
|
+
keywords: [
|
|
29112
|
+
"autsch",
|
|
29113
|
+
"brennen",
|
|
29114
|
+
"Gallert",
|
|
29115
|
+
"Glibber",
|
|
29116
|
+
"Meerestier",
|
|
29117
|
+
"Nesseltier",
|
|
29118
|
+
"Qualle"
|
|
29119
|
+
],
|
|
29120
|
+
skins: [
|
|
29121
|
+
{
|
|
29122
|
+
unified: "1fabc",
|
|
29123
|
+
native: "🪼"
|
|
29124
|
+
}
|
|
29125
|
+
],
|
|
29126
|
+
version: 15
|
|
29127
|
+
},
|
|
28836
29128
|
snail: {
|
|
28837
29129
|
id: "snail",
|
|
28838
29130
|
name: "Schnecke",
|
|
@@ -29277,6 +29569,25 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
29277
29569
|
],
|
|
29278
29570
|
version: 1
|
|
29279
29571
|
},
|
|
29572
|
+
hyacinth: {
|
|
29573
|
+
id: "hyacinth",
|
|
29574
|
+
name: "Hyazinthe",
|
|
29575
|
+
keywords: [
|
|
29576
|
+
"blaue Wiesenlupine",
|
|
29577
|
+
"Blume",
|
|
29578
|
+
"Blüte",
|
|
29579
|
+
"Hyazinthe",
|
|
29580
|
+
"Löwenmaul",
|
|
29581
|
+
"Lupine"
|
|
29582
|
+
],
|
|
29583
|
+
skins: [
|
|
29584
|
+
{
|
|
29585
|
+
unified: "1fabb",
|
|
29586
|
+
native: "🪻"
|
|
29587
|
+
}
|
|
29588
|
+
],
|
|
29589
|
+
version: 15
|
|
29590
|
+
},
|
|
29280
29591
|
seedling: {
|
|
29281
29592
|
id: "seedling",
|
|
29282
29593
|
name: "Spross",
|
|
@@ -30105,6 +30416,43 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
30105
30416
|
],
|
|
30106
30417
|
version: 1
|
|
30107
30418
|
},
|
|
30419
|
+
ginger_root: {
|
|
30420
|
+
id: "ginger_root",
|
|
30421
|
+
name: "Ingwer",
|
|
30422
|
+
keywords: [
|
|
30423
|
+
"Gewürz",
|
|
30424
|
+
"Ginger Ale",
|
|
30425
|
+
"Ingwer",
|
|
30426
|
+
"Ingwerbier",
|
|
30427
|
+
"Wurzel"
|
|
30428
|
+
],
|
|
30429
|
+
skins: [
|
|
30430
|
+
{
|
|
30431
|
+
unified: "1fada",
|
|
30432
|
+
native: "🫚"
|
|
30433
|
+
}
|
|
30434
|
+
],
|
|
30435
|
+
version: 15
|
|
30436
|
+
},
|
|
30437
|
+
pea_pod: {
|
|
30438
|
+
id: "pea_pod",
|
|
30439
|
+
name: "Erbsenschote",
|
|
30440
|
+
keywords: [
|
|
30441
|
+
"Edamame",
|
|
30442
|
+
"Erbsen",
|
|
30443
|
+
"Erbsenschote",
|
|
30444
|
+
"Gemüse",
|
|
30445
|
+
"Hülsenfrucht",
|
|
30446
|
+
"Schote"
|
|
30447
|
+
],
|
|
30448
|
+
skins: [
|
|
30449
|
+
{
|
|
30450
|
+
unified: "1fadb",
|
|
30451
|
+
native: "🫛"
|
|
30452
|
+
}
|
|
30453
|
+
],
|
|
30454
|
+
version: 15
|
|
30455
|
+
},
|
|
30108
30456
|
bread: {
|
|
30109
30457
|
id: "bread",
|
|
30110
30458
|
name: "Brot",
|
|
@@ -36976,6 +37324,24 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
36976
37324
|
],
|
|
36977
37325
|
version: 1
|
|
36978
37326
|
},
|
|
37327
|
+
folding_hand_fan: {
|
|
37328
|
+
id: "folding_hand_fan",
|
|
37329
|
+
name: "Faltfächer",
|
|
37330
|
+
keywords: [
|
|
37331
|
+
"Fächer",
|
|
37332
|
+
"Faltfächer",
|
|
37333
|
+
"kühlen",
|
|
37334
|
+
"schüchtern",
|
|
37335
|
+
"warm"
|
|
37336
|
+
],
|
|
37337
|
+
skins: [
|
|
37338
|
+
{
|
|
37339
|
+
unified: "1faad",
|
|
37340
|
+
native: "🪭"
|
|
37341
|
+
}
|
|
37342
|
+
],
|
|
37343
|
+
version: 15
|
|
37344
|
+
},
|
|
36979
37345
|
purse: {
|
|
36980
37346
|
id: "purse",
|
|
36981
37347
|
name: "Geldbörse",
|
|
@@ -37209,6 +37575,23 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
37209
37575
|
],
|
|
37210
37576
|
version: 1
|
|
37211
37577
|
},
|
|
37578
|
+
hair_pick: {
|
|
37579
|
+
id: "hair_pick",
|
|
37580
|
+
name: "Haarkamm",
|
|
37581
|
+
keywords: [
|
|
37582
|
+
"Afro",
|
|
37583
|
+
"Haare",
|
|
37584
|
+
"Haarkamm",
|
|
37585
|
+
"Kamm"
|
|
37586
|
+
],
|
|
37587
|
+
skins: [
|
|
37588
|
+
{
|
|
37589
|
+
unified: "1faae",
|
|
37590
|
+
native: "🪮"
|
|
37591
|
+
}
|
|
37592
|
+
],
|
|
37593
|
+
version: 15
|
|
37594
|
+
},
|
|
37212
37595
|
crown: {
|
|
37213
37596
|
id: "crown",
|
|
37214
37597
|
name: "Krone",
|
|
@@ -37833,6 +38216,40 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
37833
38216
|
],
|
|
37834
38217
|
version: 13
|
|
37835
38218
|
},
|
|
38219
|
+
maracas: {
|
|
38220
|
+
id: "maracas",
|
|
38221
|
+
name: "Maracas",
|
|
38222
|
+
keywords: [
|
|
38223
|
+
"Instrument",
|
|
38224
|
+
"Maracas",
|
|
38225
|
+
"Musik",
|
|
38226
|
+
"Percussion",
|
|
38227
|
+
"Rassel"
|
|
38228
|
+
],
|
|
38229
|
+
skins: [
|
|
38230
|
+
{
|
|
38231
|
+
unified: "1fa87",
|
|
38232
|
+
native: "🪇"
|
|
38233
|
+
}
|
|
38234
|
+
],
|
|
38235
|
+
version: 15
|
|
38236
|
+
},
|
|
38237
|
+
flute: {
|
|
38238
|
+
id: "flute",
|
|
38239
|
+
name: "Flöte",
|
|
38240
|
+
keywords: [
|
|
38241
|
+
"Flöte",
|
|
38242
|
+
"Instrument",
|
|
38243
|
+
"Musik"
|
|
38244
|
+
],
|
|
38245
|
+
skins: [
|
|
38246
|
+
{
|
|
38247
|
+
unified: "1fa88",
|
|
38248
|
+
native: "🪈"
|
|
38249
|
+
}
|
|
38250
|
+
],
|
|
38251
|
+
version: 15
|
|
38252
|
+
},
|
|
37836
38253
|
iphone: {
|
|
37837
38254
|
id: "iphone",
|
|
37838
38255
|
name: "Mobiltelefon",
|
|
@@ -41790,6 +42207,23 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
41790
42207
|
],
|
|
41791
42208
|
version: 1
|
|
41792
42209
|
},
|
|
42210
|
+
khanda: {
|
|
42211
|
+
id: "khanda",
|
|
42212
|
+
name: "Khanda",
|
|
42213
|
+
keywords: [
|
|
42214
|
+
"Khanda",
|
|
42215
|
+
"Religion",
|
|
42216
|
+
"Schwert",
|
|
42217
|
+
"Sikhismus"
|
|
42218
|
+
],
|
|
42219
|
+
skins: [
|
|
42220
|
+
{
|
|
42221
|
+
unified: "1faaf",
|
|
42222
|
+
native: "🪯"
|
|
42223
|
+
}
|
|
42224
|
+
],
|
|
42225
|
+
version: 15
|
|
42226
|
+
},
|
|
41793
42227
|
aries: {
|
|
41794
42228
|
id: "aries",
|
|
41795
42229
|
name: "Widder (Sternzeichen)",
|
|
@@ -42386,6 +42820,25 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
42386
42820
|
],
|
|
42387
42821
|
version: 1
|
|
42388
42822
|
},
|
|
42823
|
+
wireless: {
|
|
42824
|
+
id: "wireless",
|
|
42825
|
+
name: "WLAN",
|
|
42826
|
+
keywords: [
|
|
42827
|
+
"Computer",
|
|
42828
|
+
"drahtlos",
|
|
42829
|
+
"Internet",
|
|
42830
|
+
"kabellos",
|
|
42831
|
+
"Netzwerk",
|
|
42832
|
+
"WLAN"
|
|
42833
|
+
],
|
|
42834
|
+
skins: [
|
|
42835
|
+
{
|
|
42836
|
+
unified: "1f6dc",
|
|
42837
|
+
native: "🛜"
|
|
42838
|
+
}
|
|
42839
|
+
],
|
|
42840
|
+
version: 15
|
|
42841
|
+
},
|
|
42389
42842
|
vibration_mode: {
|
|
42390
42843
|
id: "vibration_mode",
|
|
42391
42844
|
name: "Vibrationsmodus",
|
|
@@ -48548,7 +49001,7 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
48548
49001
|
aliases: sm,
|
|
48549
49002
|
sheet: rm
|
|
48550
49003
|
}, Pv = ({ children: n, className: e, onSelect: i }) => {
|
|
48551
|
-
const [t, a] =
|
|
49004
|
+
const [t, a] = Pe(null), s = (l) => {
|
|
48552
49005
|
a(t ? null : l.currentTarget);
|
|
48553
49006
|
}, r = !!t, o = r ? "emoji-cloud" : "", d = (l) => {
|
|
48554
49007
|
a(null), i(l);
|
|
@@ -48620,7 +49073,7 @@ const nm = "_emojiPopup_opugc_106", im = "_emojiPopupHeader_opugc_116", gs = {
|
|
|
48620
49073
|
desktop: e,
|
|
48621
49074
|
mobile: i
|
|
48622
49075
|
}) => {
|
|
48623
|
-
const [t, a] =
|
|
49076
|
+
const [t, a] = Pe(0), s = () => {
|
|
48624
49077
|
a(window.innerWidth);
|
|
48625
49078
|
};
|
|
48626
49079
|
return He(() => (s(), window.addEventListener("resize", s), () => {
|
|
@@ -48884,7 +49337,7 @@ const Tm = "_reactionStack_6ldbs_106", Rm = "_multiline_6ldbs_110", Bm = "_multi
|
|
|
48884
49337
|
stack: o,
|
|
48885
49338
|
tooltip: d = ""
|
|
48886
49339
|
}) => {
|
|
48887
|
-
const c = Se(null), [l, u] =
|
|
49340
|
+
const c = Se(null), [l, u] = Pe(!1), h = (n === a || l) && !o;
|
|
48888
49341
|
return /* @__PURE__ */ _.jsxs(
|
|
48889
49342
|
"li",
|
|
48890
49343
|
{
|
|
@@ -48980,7 +49433,7 @@ const Tm = "_reactionStack_6ldbs_106", Rm = "_multiline_6ldbs_110", Bm = "_multi
|
|
|
48980
49433
|
placement: r = "top-start",
|
|
48981
49434
|
reactions: o
|
|
48982
49435
|
}) => {
|
|
48983
|
-
const [d, c] =
|
|
49436
|
+
const [d, c] = Pe(null), [l, u] = Pe(!1), h = Se(null), g = Se(null), [m, k] = Pe(
|
|
48984
49437
|
null
|
|
48985
49438
|
), w = () => {
|
|
48986
49439
|
h.current && clearTimeout(h.current);
|
|
@@ -49270,7 +49723,7 @@ const mv = () => "ontouchstart" in window, vv = "_cardHeader_jogtk_106", kv = "_
|
|
|
49270
49723
|
postId: s,
|
|
49271
49724
|
setOpen: r
|
|
49272
49725
|
}) => {
|
|
49273
|
-
const [o, d] =
|
|
49726
|
+
const [o, d] = Pe(null), [c, l] = Pe("all"), [u, h] = Pe(1), [g, m] = Pe([]), k = !o || !!o.next_page, w = kn(async () => {
|
|
49274
49727
|
try {
|
|
49275
49728
|
const B = Fv(s, u, c), G = await i(B);
|
|
49276
49729
|
h(G.next_page || u), d(G), m((J) => [...J, ...G.users]);
|