mcdis-vue-ui-library 1.1.246 → 1.1.249
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.
@@ -708,6 +708,20 @@ fixRegExpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNa
|
|
708
708
|
}, !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC, UNSUPPORTED_Y);
|
709
709
|
|
710
710
|
|
711
|
+
/***/ }),
|
712
|
+
|
713
|
+
/***/ "129f":
|
714
|
+
/***/ (function(module, exports) {
|
715
|
+
|
716
|
+
// `SameValue` abstract operation
|
717
|
+
// https://tc39.es/ecma262/#sec-samevalue
|
718
|
+
// eslint-disable-next-line es/no-object-is -- safe
|
719
|
+
module.exports = Object.is || function is(x, y) {
|
720
|
+
// eslint-disable-next-line no-self-compare -- NaN check
|
721
|
+
return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;
|
722
|
+
};
|
723
|
+
|
724
|
+
|
711
725
|
/***/ }),
|
712
726
|
|
713
727
|
/***/ "1308":
|
@@ -3952,6 +3966,50 @@ module.exports = function (object, key, value) {
|
|
3952
3966
|
};
|
3953
3967
|
|
3954
3968
|
|
3969
|
+
/***/ }),
|
3970
|
+
|
3971
|
+
/***/ "841c":
|
3972
|
+
/***/ (function(module, exports, __webpack_require__) {
|
3973
|
+
|
3974
|
+
"use strict";
|
3975
|
+
|
3976
|
+
var fixRegExpWellKnownSymbolLogic = __webpack_require__("d784");
|
3977
|
+
var anObject = __webpack_require__("825a");
|
3978
|
+
var requireObjectCoercible = __webpack_require__("1d80");
|
3979
|
+
var sameValue = __webpack_require__("129f");
|
3980
|
+
var toString = __webpack_require__("577e");
|
3981
|
+
var getMethod = __webpack_require__("dc4a");
|
3982
|
+
var regExpExec = __webpack_require__("14c3");
|
3983
|
+
|
3984
|
+
// @@search logic
|
3985
|
+
fixRegExpWellKnownSymbolLogic('search', function (SEARCH, nativeSearch, maybeCallNative) {
|
3986
|
+
return [
|
3987
|
+
// `String.prototype.search` method
|
3988
|
+
// https://tc39.es/ecma262/#sec-string.prototype.search
|
3989
|
+
function search(regexp) {
|
3990
|
+
var O = requireObjectCoercible(this);
|
3991
|
+
var searcher = regexp == undefined ? undefined : getMethod(regexp, SEARCH);
|
3992
|
+
return searcher ? searcher.call(regexp, O) : new RegExp(regexp)[SEARCH](toString(O));
|
3993
|
+
},
|
3994
|
+
// `RegExp.prototype[@@search]` method
|
3995
|
+
// https://tc39.es/ecma262/#sec-regexp.prototype-@@search
|
3996
|
+
function (string) {
|
3997
|
+
var rx = anObject(this);
|
3998
|
+
var S = toString(string);
|
3999
|
+
var res = maybeCallNative(nativeSearch, rx, S);
|
4000
|
+
|
4001
|
+
if (res.done) return res.value;
|
4002
|
+
|
4003
|
+
var previousLastIndex = rx.lastIndex;
|
4004
|
+
if (!sameValue(previousLastIndex, 0)) rx.lastIndex = 0;
|
4005
|
+
var result = regExpExec(rx, S);
|
4006
|
+
if (!sameValue(rx.lastIndex, previousLastIndex)) rx.lastIndex = previousLastIndex;
|
4007
|
+
return result === null ? -1 : result.index;
|
4008
|
+
}
|
4009
|
+
];
|
4010
|
+
});
|
4011
|
+
|
4012
|
+
|
3955
4013
|
/***/ }),
|
3956
4014
|
|
3957
4015
|
/***/ "8480":
|
@@ -7181,6 +7239,7 @@ __webpack_require__.d(components_namespaceObject, "DataGrid", function() { retur
|
|
7181
7239
|
__webpack_require__.d(components_namespaceObject, "McLazyObserver", function() { return components_LazyObserver; });
|
7182
7240
|
__webpack_require__.d(components_namespaceObject, "PopupTooltip", function() { return components_PopupTooltip; });
|
7183
7241
|
__webpack_require__.d(components_namespaceObject, "Select", function() { return components_Select; });
|
7242
|
+
__webpack_require__.d(components_namespaceObject, "EmojiPicker", function() { return components_EmojiPicker; });
|
7184
7243
|
|
7185
7244
|
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
|
7186
7245
|
// This file is imported into lib/wc client bundles.
|
@@ -13227,6 +13286,789 @@ const Select_exports_ = /*#__PURE__*/exportHelper_default()(Selectvue_type_scrip
|
|
13227
13286
|
// CONCATENATED MODULE: ./src/components/Select/index.js
|
13228
13287
|
|
13229
13288
|
/* harmony default export */ var components_Select = (Select);
|
13289
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/@vue/cli-service/node_modules/vue-loader-v16/dist/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/@vue/cli-service/node_modules/vue-loader-v16/dist??ref--0-1!./src/components/EmojiPicker/EmojiPicker.vue?vue&type=template&id=d3492052
|
13290
|
+
|
13291
|
+
var EmojiPickervue_type_template_id_d3492052_hoisted_1 = {
|
13292
|
+
class: "emoji-picker"
|
13293
|
+
};
|
13294
|
+
var EmojiPickervue_type_template_id_d3492052_hoisted_2 = {
|
13295
|
+
key: 0
|
13296
|
+
};
|
13297
|
+
function EmojiPickervue_type_template_id_d3492052_render(_ctx, _cache, $props, $setup, $data, $options) {
|
13298
|
+
return Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createElementBlock"])("div", EmojiPickervue_type_template_id_d3492052_hoisted_1, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createElementVNode"])("div", {
|
13299
|
+
onClick: _cache[0] || (_cache[0] = function () {
|
13300
|
+
return $options.toggle && $options.toggle.apply($options, arguments);
|
13301
|
+
})
|
13302
|
+
}, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["renderSlot"])(_ctx.$slots, "emoji-invoker")]), $data.display.visible ? (Object(external_commonjs_vue_commonjs2_vue_root_Vue_["openBlock"])(), Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createElementBlock"])("div", EmojiPickervue_type_template_id_d3492052_hoisted_2, [Object(external_commonjs_vue_commonjs2_vue_root_Vue_["renderSlot"])(_ctx.$slots, "emoji-picker", {
|
13303
|
+
emojis: $options.emojis,
|
13304
|
+
insert: $options.insert,
|
13305
|
+
display: $data.display
|
13306
|
+
})])) : Object(external_commonjs_vue_commonjs2_vue_root_Vue_["createCommentVNode"])("", true)]);
|
13307
|
+
}
|
13308
|
+
// CONCATENATED MODULE: ./src/components/EmojiPicker/EmojiPicker.vue?vue&type=template&id=d3492052
|
13309
|
+
|
13310
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.search.js
|
13311
|
+
var es_string_search = __webpack_require__("841c");
|
13312
|
+
|
13313
|
+
// CONCATENATED MODULE: ./src/components/EmojiPicker/parts/emojies.js
|
13314
|
+
/* harmony default export */ var emojies = ({
|
13315
|
+
"Frequently used": {
|
13316
|
+
thumbs_up: "👍",
|
13317
|
+
"-1": "👎",
|
13318
|
+
sob: "😭",
|
13319
|
+
confused: "😕",
|
13320
|
+
neutral_face: "😐",
|
13321
|
+
blush: "😊",
|
13322
|
+
heart_eyes: "😍"
|
13323
|
+
},
|
13324
|
+
People: {
|
13325
|
+
smile: "😄",
|
13326
|
+
smiley: "😃",
|
13327
|
+
grinning: "😀",
|
13328
|
+
blush: "😊",
|
13329
|
+
wink: "😉",
|
13330
|
+
heart_eyes: "😍",
|
13331
|
+
kissing_heart: "😘",
|
13332
|
+
kissing_closed_eyes: "😚",
|
13333
|
+
kissing: "😗",
|
13334
|
+
kissing_smiling_eyes: "😙",
|
13335
|
+
stuck_out_tongue_winking_eye: "😜",
|
13336
|
+
stuck_out_tongue_closed_eyes: "😝",
|
13337
|
+
stuck_out_tongue: "😛",
|
13338
|
+
flushed: "😳",
|
13339
|
+
grin: "😁",
|
13340
|
+
pensive: "😔",
|
13341
|
+
relieved: "😌",
|
13342
|
+
unamused: "😒",
|
13343
|
+
disappointed: "😞",
|
13344
|
+
persevere: "😣",
|
13345
|
+
cry: "😢",
|
13346
|
+
joy: "😂",
|
13347
|
+
sob: "😭",
|
13348
|
+
sleepy: "😪",
|
13349
|
+
disappointed_relieved: "😥",
|
13350
|
+
cold_sweat: "😰",
|
13351
|
+
sweat_smile: "😅",
|
13352
|
+
sweat: "😓",
|
13353
|
+
weary: "😩",
|
13354
|
+
tired_face: "😫",
|
13355
|
+
fearful: "😨",
|
13356
|
+
scream: "😱",
|
13357
|
+
angry: "😠",
|
13358
|
+
rage: "😡",
|
13359
|
+
triumph: "😤",
|
13360
|
+
confounded: "😖",
|
13361
|
+
laughing: "😆",
|
13362
|
+
yum: "😋",
|
13363
|
+
mask: "😷",
|
13364
|
+
sunglasses: "😎",
|
13365
|
+
sleeping: "😴",
|
13366
|
+
dizzy_face: "😵",
|
13367
|
+
astonished: "😲",
|
13368
|
+
worried: "😟",
|
13369
|
+
frowning: "😦",
|
13370
|
+
anguished: "😧",
|
13371
|
+
imp: "👿",
|
13372
|
+
open_mouth: "😮",
|
13373
|
+
grimacing: "😬",
|
13374
|
+
neutral_face: "😐",
|
13375
|
+
confused: "😕",
|
13376
|
+
hushed: "😯",
|
13377
|
+
smirk: "😏",
|
13378
|
+
expressionless: "😑",
|
13379
|
+
man_with_gua_pi_mao: "👲",
|
13380
|
+
man_with_turban: "👳",
|
13381
|
+
cop: "👮",
|
13382
|
+
construction_worker: "👷",
|
13383
|
+
guardsman: "💂",
|
13384
|
+
baby: "👶",
|
13385
|
+
boy: "👦",
|
13386
|
+
girl: "👧",
|
13387
|
+
man: "👨",
|
13388
|
+
woman: "👩",
|
13389
|
+
older_man: "👴",
|
13390
|
+
older_woman: "👵",
|
13391
|
+
person_with_blond_hair: "👱",
|
13392
|
+
angel: "👼",
|
13393
|
+
princess: "👸",
|
13394
|
+
smiley_cat: "😺",
|
13395
|
+
smile_cat: "😸",
|
13396
|
+
heart_eyes_cat: "😻",
|
13397
|
+
kissing_cat: "😽",
|
13398
|
+
smirk_cat: "😼",
|
13399
|
+
scream_cat: "🙀",
|
13400
|
+
crying_cat_face: "😿",
|
13401
|
+
joy_cat: "😹",
|
13402
|
+
pouting_cat: "😾",
|
13403
|
+
japanese_ogre: "👹",
|
13404
|
+
japanese_goblin: "👺",
|
13405
|
+
see_no_evil: "🙈",
|
13406
|
+
hear_no_evil: "🙉",
|
13407
|
+
speak_no_evil: "🙊",
|
13408
|
+
skull: "💀",
|
13409
|
+
alien: "👽",
|
13410
|
+
hankey: "💩",
|
13411
|
+
fire: "🔥",
|
13412
|
+
sparkles: "✨",
|
13413
|
+
star2: "🌟",
|
13414
|
+
dizzy: "💫",
|
13415
|
+
boom: "💥",
|
13416
|
+
anger: "💢",
|
13417
|
+
sweat_drops: "💦",
|
13418
|
+
droplet: "💧",
|
13419
|
+
zzz: "💤",
|
13420
|
+
dash: "💨",
|
13421
|
+
ear: "👂",
|
13422
|
+
eyes: "👀",
|
13423
|
+
nose: "👃",
|
13424
|
+
tongue: "👅",
|
13425
|
+
lips: "👄",
|
13426
|
+
thumbs_up: "👍",
|
13427
|
+
"-1": "👎",
|
13428
|
+
ok_hand: "👌",
|
13429
|
+
facepunch: "👊",
|
13430
|
+
fist: "✊",
|
13431
|
+
wave: "👋",
|
13432
|
+
hand: "✋",
|
13433
|
+
open_hands: "👐",
|
13434
|
+
point_up_2: "👆",
|
13435
|
+
point_down: "👇",
|
13436
|
+
point_right: "👉",
|
13437
|
+
point_left: "👈",
|
13438
|
+
raised_hands: "🙌",
|
13439
|
+
pray: "🙏",
|
13440
|
+
clap: "👏",
|
13441
|
+
muscle: "💪",
|
13442
|
+
walking: "🚶",
|
13443
|
+
runner: "🏃",
|
13444
|
+
dancer: "💃",
|
13445
|
+
couple: "👫",
|
13446
|
+
family: "👪",
|
13447
|
+
couplekiss: "💏",
|
13448
|
+
couple_with_heart: "💑",
|
13449
|
+
dancers: "👯",
|
13450
|
+
ok_woman: "🙆",
|
13451
|
+
no_good: "🙅",
|
13452
|
+
information_desk_person: "💁",
|
13453
|
+
raising_hand: "🙋",
|
13454
|
+
massage: "💆",
|
13455
|
+
haircut: "💇",
|
13456
|
+
nail_care: "💅",
|
13457
|
+
bride_with_veil: "👰",
|
13458
|
+
person_with_pouting_face: "🙎",
|
13459
|
+
person_frowning: "🙍",
|
13460
|
+
bow: "🙇",
|
13461
|
+
tophat: "🎩",
|
13462
|
+
crown: "👑",
|
13463
|
+
womans_hat: "👒",
|
13464
|
+
athletic_shoe: "👟",
|
13465
|
+
mans_shoe: "👞",
|
13466
|
+
sandal: "👡",
|
13467
|
+
high_heel: "👠",
|
13468
|
+
boot: "👢",
|
13469
|
+
shirt: "👕",
|
13470
|
+
necktie: "👔",
|
13471
|
+
womans_clothes: "👚",
|
13472
|
+
dress: "👗",
|
13473
|
+
running_shirt_with_sash: "🎽",
|
13474
|
+
jeans: "👖",
|
13475
|
+
kimono: "👘",
|
13476
|
+
bikini: "👙",
|
13477
|
+
briefcase: "💼",
|
13478
|
+
handbag: "👜",
|
13479
|
+
pouch: "👝",
|
13480
|
+
purse: "👛",
|
13481
|
+
eyeglasses: "👓",
|
13482
|
+
ribbon: "🎀",
|
13483
|
+
closed_umbrella: "🌂",
|
13484
|
+
lipstick: "💄",
|
13485
|
+
yellow_heart: "💛",
|
13486
|
+
blue_heart: "💙",
|
13487
|
+
purple_heart: "💜",
|
13488
|
+
green_heart: "💚",
|
13489
|
+
broken_heart: "💔",
|
13490
|
+
heartpulse: "💗",
|
13491
|
+
heartbeat: "💓",
|
13492
|
+
two_hearts: "💕",
|
13493
|
+
sparkling_heart: "💖",
|
13494
|
+
revolving_hearts: "💞",
|
13495
|
+
cupid: "💘",
|
13496
|
+
love_letter: "💌",
|
13497
|
+
kiss: "💋",
|
13498
|
+
ring: "💍",
|
13499
|
+
gem: "💎",
|
13500
|
+
bust_in_silhouette: "👤",
|
13501
|
+
speech_balloon: "💬",
|
13502
|
+
footprints: "👣"
|
13503
|
+
},
|
13504
|
+
Nature: {
|
13505
|
+
dog: "🐶",
|
13506
|
+
wolf: "🐺",
|
13507
|
+
cat: "🐱",
|
13508
|
+
mouse: "🐭",
|
13509
|
+
hamster: "🐹",
|
13510
|
+
rabbit: "🐰",
|
13511
|
+
frog: "🐸",
|
13512
|
+
tiger: "🐯",
|
13513
|
+
koala: "🐨",
|
13514
|
+
bear: "🐻",
|
13515
|
+
pig: "🐷",
|
13516
|
+
pig_nose: "🐽",
|
13517
|
+
cow: "🐮",
|
13518
|
+
boar: "🐗",
|
13519
|
+
monkey_face: "🐵",
|
13520
|
+
monkey: "🐒",
|
13521
|
+
horse: "🐴",
|
13522
|
+
sheep: "🐑",
|
13523
|
+
elephant: "🐘",
|
13524
|
+
panda_face: "🐼",
|
13525
|
+
penguin: "🐧",
|
13526
|
+
bird: "🐦",
|
13527
|
+
baby_chick: "🐤",
|
13528
|
+
hatched_chick: "🐥",
|
13529
|
+
hatching_chick: "🐣",
|
13530
|
+
chicken: "🐔",
|
13531
|
+
snake: "🐍",
|
13532
|
+
turtle: "🐢",
|
13533
|
+
bug: "🐛",
|
13534
|
+
bee: "🐝",
|
13535
|
+
ant: "🐜",
|
13536
|
+
beetle: "🐞",
|
13537
|
+
snail: "🐌",
|
13538
|
+
octopus: "🐙",
|
13539
|
+
shell: "🐚",
|
13540
|
+
tropical_fish: "🐠",
|
13541
|
+
fish: "🐟",
|
13542
|
+
dolphin: "🐬",
|
13543
|
+
whale: "🐳",
|
13544
|
+
racehorse: "🐎",
|
13545
|
+
dragon_face: "🐲",
|
13546
|
+
blowfish: "🐡",
|
13547
|
+
camel: "🐫",
|
13548
|
+
poodle: "🐩",
|
13549
|
+
feet: "🐾",
|
13550
|
+
bouquet: "💐",
|
13551
|
+
cherry_blossom: "🌸",
|
13552
|
+
tulip: "🌷",
|
13553
|
+
four_leaf_clover: "🍀",
|
13554
|
+
rose: "🌹",
|
13555
|
+
sunflower: "🌻",
|
13556
|
+
hibiscus: "🌺",
|
13557
|
+
maple_leaf: "🍁",
|
13558
|
+
leaves: "🍃",
|
13559
|
+
fallen_leaf: "🍂",
|
13560
|
+
herb: "🌿",
|
13561
|
+
ear_of_rice: "🌾",
|
13562
|
+
mushroom: "🍄",
|
13563
|
+
cactus: "🌵",
|
13564
|
+
palm_tree: "🌴",
|
13565
|
+
chestnut: "🌰",
|
13566
|
+
seedling: "🌱",
|
13567
|
+
blossom: "🌼",
|
13568
|
+
new_moon: "🌑",
|
13569
|
+
first_quarter_moon: "🌓",
|
13570
|
+
moon: "🌔",
|
13571
|
+
full_moon: "🌕",
|
13572
|
+
first_quarter_moon_with_face: "🌛",
|
13573
|
+
crescent_moon: "🌙",
|
13574
|
+
earth_asia: "🌏",
|
13575
|
+
volcano: "🌋",
|
13576
|
+
milky_way: "🌌",
|
13577
|
+
stars: "🌠",
|
13578
|
+
partly_sunny: "⛅",
|
13579
|
+
snowman: "⛄",
|
13580
|
+
cyclone: "🌀",
|
13581
|
+
foggy: "🌁",
|
13582
|
+
rainbow: "🌈",
|
13583
|
+
ocean: "🌊"
|
13584
|
+
},
|
13585
|
+
Objects: {
|
13586
|
+
bamboo: "🎍",
|
13587
|
+
gift_heart: "💝",
|
13588
|
+
dolls: "🎎",
|
13589
|
+
school_satchel: "🎒",
|
13590
|
+
mortar_board: "🎓",
|
13591
|
+
flags: "🎏",
|
13592
|
+
fireworks: "🎆",
|
13593
|
+
sparkler: "🎇",
|
13594
|
+
wind_chime: "🎐",
|
13595
|
+
rice_scene: "🎑",
|
13596
|
+
jack_o_lantern: "🎃",
|
13597
|
+
ghost: "👻",
|
13598
|
+
santa: "🎅",
|
13599
|
+
christmas_tree: "🎄",
|
13600
|
+
gift: "🎁",
|
13601
|
+
tanabata_tree: "🎋",
|
13602
|
+
tada: "🎉",
|
13603
|
+
confetti_ball: "🎊",
|
13604
|
+
balloon: "🎈",
|
13605
|
+
crossed_flags: "🎌",
|
13606
|
+
crystal_ball: "🔮",
|
13607
|
+
movie_camera: "🎥",
|
13608
|
+
camera: "📷",
|
13609
|
+
video_camera: "📹",
|
13610
|
+
vhs: "📼",
|
13611
|
+
cd: "💿",
|
13612
|
+
dvd: "📀",
|
13613
|
+
minidisc: "💽",
|
13614
|
+
floppy_disk: "💾",
|
13615
|
+
computer: "💻",
|
13616
|
+
iphone: "📱",
|
13617
|
+
telephone_receiver: "📞",
|
13618
|
+
pager: "📟",
|
13619
|
+
fax: "📠",
|
13620
|
+
satellite: "📡",
|
13621
|
+
tv: "📺",
|
13622
|
+
radio: "📻",
|
13623
|
+
loud_sound: "🔊",
|
13624
|
+
bell: "🔔",
|
13625
|
+
loudspeaker: "📢",
|
13626
|
+
mega: "📣",
|
13627
|
+
hourglass_flowing_sand: "⏳",
|
13628
|
+
hourglass: "⌛",
|
13629
|
+
alarm_clock: "⏰",
|
13630
|
+
watch: "⌚",
|
13631
|
+
unlock: "🔓",
|
13632
|
+
lock: "🔒",
|
13633
|
+
lock_with_ink_pen: "🔏",
|
13634
|
+
closed_lock_with_key: "🔐",
|
13635
|
+
key: "🔑",
|
13636
|
+
mag_right: "🔎",
|
13637
|
+
bulb: "💡",
|
13638
|
+
flashlight: "🔦",
|
13639
|
+
electric_plug: "🔌",
|
13640
|
+
battery: "🔋",
|
13641
|
+
mag: "🔍",
|
13642
|
+
bath: "🛀",
|
13643
|
+
toilet: "🚽",
|
13644
|
+
wrench: "🔧",
|
13645
|
+
nut_and_bolt: "🔩",
|
13646
|
+
hammer: "🔨",
|
13647
|
+
door: "🚪",
|
13648
|
+
smoking: "🚬",
|
13649
|
+
bomb: "💣",
|
13650
|
+
gun: "🔫",
|
13651
|
+
hocho: "🔪",
|
13652
|
+
pill: "💊",
|
13653
|
+
syringe: "💉",
|
13654
|
+
moneybag: "💰",
|
13655
|
+
yen: "💴",
|
13656
|
+
dollar: "💵",
|
13657
|
+
credit_card: "💳",
|
13658
|
+
money_with_wings: "💸",
|
13659
|
+
calling: "📲",
|
13660
|
+
"e-mail": "📧",
|
13661
|
+
inbox_tray: "📥",
|
13662
|
+
outbox_tray: "📤",
|
13663
|
+
envelope_with_arrow: "📩",
|
13664
|
+
incoming_envelope: "📨",
|
13665
|
+
mailbox: "📫",
|
13666
|
+
mailbox_closed: "📪",
|
13667
|
+
postbox: "📮",
|
13668
|
+
package: "📦",
|
13669
|
+
memo: "📝",
|
13670
|
+
page_facing_up: "📄",
|
13671
|
+
page_with_curl: "📃",
|
13672
|
+
bookmark_tabs: "📑",
|
13673
|
+
bar_chart: "📊",
|
13674
|
+
chart_with_upwards_trend: "📈",
|
13675
|
+
chart_with_downwards_trend: "📉",
|
13676
|
+
scroll: "📜",
|
13677
|
+
clipboard: "📋",
|
13678
|
+
date: "📅",
|
13679
|
+
calendar: "📆",
|
13680
|
+
card_index: "📇",
|
13681
|
+
file_folder: "📁",
|
13682
|
+
open_file_folder: "📂",
|
13683
|
+
pushpin: "📌",
|
13684
|
+
paperclip: "📎",
|
13685
|
+
straight_ruler: "📏",
|
13686
|
+
triangular_ruler: "📐",
|
13687
|
+
closed_book: "📕",
|
13688
|
+
green_book: "📗",
|
13689
|
+
blue_book: "📘",
|
13690
|
+
orange_book: "📙",
|
13691
|
+
notebook: "📓",
|
13692
|
+
notebook_with_decorative_cover: "📔",
|
13693
|
+
ledger: "📒",
|
13694
|
+
books: "📚",
|
13695
|
+
book: "📖",
|
13696
|
+
bookmark: "🔖",
|
13697
|
+
name_badge: "📛",
|
13698
|
+
newspaper: "📰",
|
13699
|
+
art: "🎨",
|
13700
|
+
clapper: "🎬",
|
13701
|
+
microphone: "🎤",
|
13702
|
+
headphones: "🎧",
|
13703
|
+
musical_score: "🎼",
|
13704
|
+
musical_note: "🎵",
|
13705
|
+
notes: "🎶",
|
13706
|
+
musical_keyboard: "🎹",
|
13707
|
+
violin: "🎻",
|
13708
|
+
trumpet: "🎺",
|
13709
|
+
saxophone: "🎷",
|
13710
|
+
guitar: "🎸",
|
13711
|
+
space_invader: "👾",
|
13712
|
+
video_game: "🎮",
|
13713
|
+
black_joker: "🃏",
|
13714
|
+
flower_playing_cards: "🎴",
|
13715
|
+
mahjong: "🀄",
|
13716
|
+
game_die: "🎲",
|
13717
|
+
dart: "🎯",
|
13718
|
+
football: "🏈",
|
13719
|
+
basketball: "🏀",
|
13720
|
+
soccer: "⚽",
|
13721
|
+
baseball: "⚾",
|
13722
|
+
tennis: "🎾",
|
13723
|
+
"8ball": "🎱",
|
13724
|
+
bowling: "🎳",
|
13725
|
+
golf: "⛳",
|
13726
|
+
checkered_flag: "🏁",
|
13727
|
+
trophy: "🏆",
|
13728
|
+
ski: "🎿",
|
13729
|
+
snowboarder: "🏂",
|
13730
|
+
swimmer: "🏊",
|
13731
|
+
surfer: "🏄",
|
13732
|
+
fishing_pole_and_fish: "🎣",
|
13733
|
+
tea: "🍵",
|
13734
|
+
sake: "🍶",
|
13735
|
+
beer: "🍺",
|
13736
|
+
beers: "🍻",
|
13737
|
+
cocktail: "🍸",
|
13738
|
+
tropical_drink: "🍹",
|
13739
|
+
wine_glass: "🍷",
|
13740
|
+
fork_and_knife: "🍴",
|
13741
|
+
pizza: "🍕",
|
13742
|
+
hamburger: "🍔",
|
13743
|
+
fries: "🍟",
|
13744
|
+
poultry_leg: "🍗",
|
13745
|
+
meat_on_bone: "🍖",
|
13746
|
+
spaghetti: "🍝",
|
13747
|
+
curry: "🍛",
|
13748
|
+
fried_shrimp: "🍤",
|
13749
|
+
bento: "🍱",
|
13750
|
+
sushi: "🍣",
|
13751
|
+
fish_cake: "🍥",
|
13752
|
+
rice_ball: "🍙",
|
13753
|
+
rice_cracker: "🍘",
|
13754
|
+
rice: "🍚",
|
13755
|
+
ramen: "🍜",
|
13756
|
+
stew: "🍲",
|
13757
|
+
oden: "🍢",
|
13758
|
+
dango: "🍡",
|
13759
|
+
egg: "🍳",
|
13760
|
+
bread: "🍞",
|
13761
|
+
doughnut: "🍩",
|
13762
|
+
custard: "🍮",
|
13763
|
+
icecream: "🍦",
|
13764
|
+
ice_cream: "🍨",
|
13765
|
+
shaved_ice: "🍧",
|
13766
|
+
birthday: "🎂",
|
13767
|
+
cake: "🍰",
|
13768
|
+
cookie: "🍪",
|
13769
|
+
chocolate_bar: "🍫",
|
13770
|
+
candy: "🍬",
|
13771
|
+
lollipop: "🍭",
|
13772
|
+
honey_pot: "🍯",
|
13773
|
+
apple: "🍎",
|
13774
|
+
green_apple: "🍏",
|
13775
|
+
tangerine: "🍊",
|
13776
|
+
cherries: "🍒",
|
13777
|
+
grapes: "🍇",
|
13778
|
+
watermelon: "🍉",
|
13779
|
+
strawberry: "🍓",
|
13780
|
+
peach: "🍑",
|
13781
|
+
melon: "🍈",
|
13782
|
+
banana: "🍌",
|
13783
|
+
pineapple: "🍍",
|
13784
|
+
sweet_potato: "🍠",
|
13785
|
+
eggplant: "🍆",
|
13786
|
+
tomato: "🍅",
|
13787
|
+
corn: "🌽"
|
13788
|
+
},
|
13789
|
+
Places: {
|
13790
|
+
house: "🏠",
|
13791
|
+
house_with_garden: "🏡",
|
13792
|
+
school: "🏫",
|
13793
|
+
office: "🏢",
|
13794
|
+
post_office: "🏣",
|
13795
|
+
hospital: "🏥",
|
13796
|
+
bank: "🏦",
|
13797
|
+
convenience_store: "🏪",
|
13798
|
+
love_hotel: "🏩",
|
13799
|
+
hotel: "🏨",
|
13800
|
+
wedding: "💒",
|
13801
|
+
church: "⛪",
|
13802
|
+
department_store: "🏬",
|
13803
|
+
city_sunrise: "🌇",
|
13804
|
+
city_sunset: "🌆",
|
13805
|
+
japanese_castle: "🏯",
|
13806
|
+
european_castle: "🏰",
|
13807
|
+
tent: "⛺",
|
13808
|
+
factory: "🏭",
|
13809
|
+
tokyo_tower: "🗼",
|
13810
|
+
japan: "🗾",
|
13811
|
+
mount_fuji: "🗻",
|
13812
|
+
sunrise_over_mountains: "🌄",
|
13813
|
+
sunrise: "🌅",
|
13814
|
+
night_with_stars: "🌃",
|
13815
|
+
statue_of_liberty: "🗽",
|
13816
|
+
bridge_at_night: "🌉",
|
13817
|
+
carousel_horse: "🎠",
|
13818
|
+
ferris_wheel: "🎡",
|
13819
|
+
fountain: "⛲",
|
13820
|
+
roller_coaster: "🎢",
|
13821
|
+
ship: "🚢",
|
13822
|
+
boat: "⛵",
|
13823
|
+
speedboat: "🚤",
|
13824
|
+
rocket: "🚀",
|
13825
|
+
seat: "💺",
|
13826
|
+
station: "🚉",
|
13827
|
+
bullettrain_side: "🚄",
|
13828
|
+
bullettrain_front: "🚅",
|
13829
|
+
metro: "🚇",
|
13830
|
+
railway_car: "🚃",
|
13831
|
+
bus: "🚌",
|
13832
|
+
blue_car: "🚙",
|
13833
|
+
car: "🚗",
|
13834
|
+
taxi: "🚕",
|
13835
|
+
truck: "🚚",
|
13836
|
+
rotating_light: "🚨",
|
13837
|
+
police_car: "🚓",
|
13838
|
+
fire_engine: "🚒",
|
13839
|
+
ambulance: "🚑",
|
13840
|
+
bike: "🚲",
|
13841
|
+
barber: "💈",
|
13842
|
+
busstop: "🚏",
|
13843
|
+
ticket: "🎫",
|
13844
|
+
traffic_light: "🚥",
|
13845
|
+
construction: "🚧",
|
13846
|
+
beginner: "🔰",
|
13847
|
+
fuelpump: "⛽",
|
13848
|
+
izakaya_lantern: "🏮",
|
13849
|
+
slot_machine: "🎰",
|
13850
|
+
moyai: "🗿",
|
13851
|
+
circus_tent: "🎪",
|
13852
|
+
performing_arts: "🎭",
|
13853
|
+
round_pushpin: "📍",
|
13854
|
+
triangular_flag_on_post: "🚩"
|
13855
|
+
},
|
13856
|
+
Symbols: {
|
13857
|
+
keycap_ten: "🔟",
|
13858
|
+
1234: "🔢",
|
13859
|
+
symbols: "🔣",
|
13860
|
+
capital_abcd: "🔠",
|
13861
|
+
abcd: "🔡",
|
13862
|
+
abc: "🔤",
|
13863
|
+
arrow_up_small: "🔼",
|
13864
|
+
arrow_down_small: "🔽",
|
13865
|
+
rewind: "⏪",
|
13866
|
+
fast_forward: "⏩",
|
13867
|
+
arrow_double_up: "⏫",
|
13868
|
+
arrow_double_down: "⏬",
|
13869
|
+
ok: "🆗",
|
13870
|
+
new: "🆕",
|
13871
|
+
up: "🆙",
|
13872
|
+
cool: "🆒",
|
13873
|
+
free: "🆓",
|
13874
|
+
ng: "🆖",
|
13875
|
+
signal_strength: "📶",
|
13876
|
+
cinema: "🎦",
|
13877
|
+
koko: "🈁",
|
13878
|
+
u6307: "🈯",
|
13879
|
+
u7a7a: "🈳",
|
13880
|
+
u6e80: "🈵",
|
13881
|
+
u5408: "🈴",
|
13882
|
+
u7981: "🈲",
|
13883
|
+
ideograph_advantage: "🉐",
|
13884
|
+
u5272: "🈹",
|
13885
|
+
u55b6: "🈺",
|
13886
|
+
u6709: "🈶",
|
13887
|
+
u7121: "🈚",
|
13888
|
+
restroom: "🚻",
|
13889
|
+
mens: "🚹",
|
13890
|
+
womens: "🚺",
|
13891
|
+
baby_symbol: "🚼",
|
13892
|
+
wc: "🚾",
|
13893
|
+
no_smoking: "🚭",
|
13894
|
+
u7533: "🈸",
|
13895
|
+
accept: "🉑",
|
13896
|
+
cl: "🆑",
|
13897
|
+
sos: "🆘",
|
13898
|
+
id: "🆔",
|
13899
|
+
no_entry_sign: "🚫",
|
13900
|
+
underage: "🔞",
|
13901
|
+
no_entry: "⛔",
|
13902
|
+
negative_squared_cross_mark: "❎",
|
13903
|
+
white_check_mark: "✅",
|
13904
|
+
heart_decoration: "💟",
|
13905
|
+
vs: "🆚",
|
13906
|
+
vibration_mode: "📳",
|
13907
|
+
mobile_phone_off: "📴",
|
13908
|
+
ab: "🆎",
|
13909
|
+
diamond_shape_with_a_dot_inside: "💠",
|
13910
|
+
ophiuchus: "⛎",
|
13911
|
+
six_pointed_star: "🔯",
|
13912
|
+
atm: "🏧",
|
13913
|
+
chart: "💹",
|
13914
|
+
heavy_dollar_sign: "💲",
|
13915
|
+
currency_exchange: "💱",
|
13916
|
+
x: "❌",
|
13917
|
+
exclamation: "❗",
|
13918
|
+
question: "❓",
|
13919
|
+
grey_exclamation: "❕",
|
13920
|
+
grey_question: "❔",
|
13921
|
+
o: "⭕",
|
13922
|
+
top: "🔝",
|
13923
|
+
end: "🔚",
|
13924
|
+
back: "🔙",
|
13925
|
+
on: "🔛",
|
13926
|
+
soon: "🔜",
|
13927
|
+
arrows_clockwise: "🔃",
|
13928
|
+
clock12: "🕛",
|
13929
|
+
clock1: "🕐",
|
13930
|
+
clock2: "🕑",
|
13931
|
+
clock3: "🕒",
|
13932
|
+
clock4: "🕓",
|
13933
|
+
clock5: "🕔",
|
13934
|
+
clock6: "🕕",
|
13935
|
+
clock7: "🕖",
|
13936
|
+
clock8: "🕗",
|
13937
|
+
clock9: "🕘",
|
13938
|
+
clock10: "🕙",
|
13939
|
+
clock11: "🕚",
|
13940
|
+
heavy_plus_sign: "➕",
|
13941
|
+
heavy_minus_sign: "➖",
|
13942
|
+
heavy_division_sign: "➗",
|
13943
|
+
white_flower: "💮",
|
13944
|
+
100: "💯",
|
13945
|
+
radio_button: "🔘",
|
13946
|
+
link: "🔗",
|
13947
|
+
curly_loop: "➰",
|
13948
|
+
trident: "🔱",
|
13949
|
+
small_red_triangle: "🔺",
|
13950
|
+
black_square_button: "🔲",
|
13951
|
+
white_square_button: "🔳",
|
13952
|
+
red_circle: "🔴",
|
13953
|
+
large_blue_circle: "🔵",
|
13954
|
+
small_red_triangle_down: "🔻",
|
13955
|
+
white_large_square: "⬜",
|
13956
|
+
black_large_square: "⬛",
|
13957
|
+
large_orange_diamond: "🔶",
|
13958
|
+
large_blue_diamond: "🔷",
|
13959
|
+
small_orange_diamond: "🔸",
|
13960
|
+
small_blue_diamond: "🔹"
|
13961
|
+
}
|
13962
|
+
});
|
13963
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/@vue/cli-service/node_modules/vue-loader-v16/dist??ref--0-1!./src/components/EmojiPicker/EmojiPicker.vue?vue&type=script&lang=js
|
13964
|
+
|
13965
|
+
|
13966
|
+
|
13967
|
+
|
13968
|
+
|
13969
|
+
|
13970
|
+
|
13971
|
+
|
13972
|
+
var escapeRegExp = function escapeRegExp(s) {
|
13973
|
+
return s.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
13974
|
+
};
|
13975
|
+
|
13976
|
+
/* harmony default export */ var EmojiPickervue_type_script_lang_js = ({
|
13977
|
+
name: "EmojiPicker",
|
13978
|
+
props: {
|
13979
|
+
search: {
|
13980
|
+
type: String,
|
13981
|
+
required: false,
|
13982
|
+
default: ""
|
13983
|
+
},
|
13984
|
+
emojiTable: {
|
13985
|
+
type: Object,
|
13986
|
+
required: false,
|
13987
|
+
default: function _default() {
|
13988
|
+
return emojies;
|
13989
|
+
}
|
13990
|
+
}
|
13991
|
+
},
|
13992
|
+
data: function data() {
|
13993
|
+
return {
|
13994
|
+
display: {
|
13995
|
+
x: 0,
|
13996
|
+
y: 0,
|
13997
|
+
visible: false
|
13998
|
+
}
|
13999
|
+
};
|
14000
|
+
},
|
14001
|
+
computed: {
|
14002
|
+
emojis: function emojis() {
|
14003
|
+
if (this.search) {
|
14004
|
+
var obj = {};
|
14005
|
+
|
14006
|
+
for (var category in this.emojiTable) {
|
14007
|
+
obj[category] = {};
|
14008
|
+
|
14009
|
+
for (var emoji in this.emojiTable[category]) {
|
14010
|
+
if (new RegExp(".*".concat(escapeRegExp(this.search), ".*")).test(emoji)) {
|
14011
|
+
obj[category][emoji] = this.emojiTable[category][emoji];
|
14012
|
+
}
|
14013
|
+
}
|
14014
|
+
|
14015
|
+
if (Object.keys(obj[category]).length === 0) {
|
14016
|
+
delete obj[category];
|
14017
|
+
}
|
14018
|
+
}
|
14019
|
+
|
14020
|
+
return obj;
|
14021
|
+
}
|
14022
|
+
|
14023
|
+
return this.emojiTable;
|
14024
|
+
}
|
14025
|
+
},
|
14026
|
+
methods: {
|
14027
|
+
insert: function insert(emoji) {
|
14028
|
+
this.$emit("emoji", emoji);
|
14029
|
+
},
|
14030
|
+
toggle: function toggle(e) {
|
14031
|
+
this.display.visible = !this.display.visible;
|
14032
|
+
this.display.x = e.clientX;
|
14033
|
+
this.display.y = e.clientY;
|
14034
|
+
},
|
14035
|
+
hide: function hide() {
|
14036
|
+
this.display.visible = false;
|
14037
|
+
},
|
14038
|
+
escape: function escape(e) {
|
14039
|
+
if (this.display.visible === true && e.keyCode === 27) {
|
14040
|
+
this.display.visible = false;
|
14041
|
+
}
|
14042
|
+
},
|
14043
|
+
close: function close(_evt) {
|
14044
|
+
if (!_evt.target.closest(".emoji-picker") && this.display.visible) {
|
14045
|
+
this.display.visible = false;
|
14046
|
+
}
|
14047
|
+
}
|
14048
|
+
},
|
14049
|
+
mounted: function mounted() {
|
14050
|
+
document.addEventListener("keyup", this.escape);
|
14051
|
+
document.addEventListener("click", this.close);
|
14052
|
+
},
|
14053
|
+
unmounted: function unmounted() {
|
14054
|
+
document.removeEventListener("keyup", this.escape);
|
14055
|
+
document.removeEventListener("click", this.close);
|
14056
|
+
}
|
14057
|
+
});
|
14058
|
+
// CONCATENATED MODULE: ./src/components/EmojiPicker/EmojiPicker.vue?vue&type=script&lang=js
|
14059
|
+
|
14060
|
+
// CONCATENATED MODULE: ./src/components/EmojiPicker/EmojiPicker.vue
|
14061
|
+
|
14062
|
+
|
14063
|
+
|
14064
|
+
|
14065
|
+
|
14066
|
+
const EmojiPicker_exports_ = /*#__PURE__*/exportHelper_default()(EmojiPickervue_type_script_lang_js, [['render',EmojiPickervue_type_template_id_d3492052_render]])
|
14067
|
+
|
14068
|
+
/* harmony default export */ var EmojiPicker = (EmojiPicker_exports_);
|
14069
|
+
// CONCATENATED MODULE: ./src/components/EmojiPicker/index.js
|
14070
|
+
|
14071
|
+
/* harmony default export */ var components_EmojiPicker = (EmojiPicker);
|
13230
14072
|
// CONCATENATED MODULE: ./src/components/index.js
|
13231
14073
|
|
13232
14074
|
|
@@ -13255,6 +14097,7 @@ const Select_exports_ = /*#__PURE__*/exportHelper_default()(Selectvue_type_scrip
|
|
13255
14097
|
|
13256
14098
|
|
13257
14099
|
|
14100
|
+
|
13258
14101
|
|
13259
14102
|
|
13260
14103
|
// CONCATENATED MODULE: ./lib/main.js
|