@chayns-components/emoji-input 5.0.0-beta.910 → 5.0.0-beta.911
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.
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),Object.defineProperty(exports,"EmojiInput",{enumerable:!0,get:function(){return e.default}}),Object.defineProperty(exports,"EmojiPicker",{enumerable:!0,get:function(){return t.default}}),Object.defineProperty(exports,"EmojiPickerPopup",{enumerable:!0,get:function(){return r.default}}),Object.defineProperty(exports,"PopupAlignment",{enumerable:!0,get:function(){return n.PopupAlignment}}),Object.defineProperty(exports,"convertEmojisToUnicode",{enumerable:!0,get:function(){return o.convertEmojisToUnicode}});var e=i(require("./components/emoji-input/EmojiInput")),r=i(require("./components/emoji-picker-popup/EmojiPickerPopup")),t=i(require("./components/emoji-picker/EmojiPicker")),n=require("./constants/alignment"),o=require("./utils/emoji");function i(e){return e&&e.__esModule?e:{default:e}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["Object","defineProperty","exports","value","enumerable","get","_EmojiInput","default","_EmojiPicker","_EmojiPickerPopup","_alignment","PopupAlignment","_emoji","convertEmojisToUnicode","_interopRequireDefault","require","e","__esModule"],"sources":["lib/cjs/index.js"],"mappings":"AAAA,aAEAA,OAAOC,eAAeC,QAAS,aAAc,CAC3CC,OAAO,IAETH,OAAOC,eAAeC,QAAS,aAAc,CAC3CE,YAAY,EACZC,IAAK,WACH,OAAOC,EAAYC,OACrB,IAEFP,OAAOC,eAAeC,QAAS,cAAe,CAC5CE,YAAY,EACZC,IAAK,WACH,OAAOG,EAAaD,OACtB,IAEFP,OAAOC,eAAeC,QAAS,mBAAoB,CACjDE,YAAY,EACZC,IAAK,WACH,OAAOI,EAAkBF,OAC3B,IAEFP,OAAOC,eAAeC,QAAS,iBAAkB,CAC/CE,YAAY,EACZC,IAAK,WACH,OAAOK,EAAWC,cACpB,IAEFX,OAAOC,eAAeC,QAAS,yBAA0B,CACvDE,YAAY,EACZC,IAAK,WACH,OAAOO,EAAOC,sBAChB,IAEF,IAAIP,EAAcQ,EAAuBC,QAAQ,wCAC7CN,EAAoBK,EAAuBC,QAAQ,qDACnDP,EAAeM,EAAuBC,QAAQ,0CAC9CL,EAAaK,QAAQ,yBACrBH,EAASG,QAAQ,iBACrB,SAASD,EAAuBE,GAAK,OAAOA,GAAKA,EAAEC,WAAaD,EAAI,CAAET,QAASS,EAAK","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export{default as EmojiInput}from"./components/emoji-input/EmojiInput";export{default as EmojiPickerPopup}from"./components/emoji-picker-popup/EmojiPickerPopup";export{default as EmojiPicker}from"./components/emoji-picker/EmojiPicker";export{PopupAlignment}from"./constants/alignment";export{convertEmojisToUnicode}from"./utils/emoji";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["PopupAlignment","convertEmojisToUnicode"],"sources":["lib/esm/index.js"],"mappings":"OAAS,0BAA6B,6CAC7B,gCAAmC,0DACnC,2BAA8B,+CAC9BA,mBAAsB,+BACtBC,2BAA8B","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chayns-components/emoji-input",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.911",
|
|
4
4
|
"description": "Input field that supports HTML elements and emojis",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"browserslist": [
|
|
@@ -42,7 +42,8 @@
|
|
|
42
42
|
"url": "git+https://github.com/TobitSoftware/chayns-components.git"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
|
-
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
|
|
45
|
+
"build": "npm run build:cjs && npm run build:esm && npm run build:types && npm run minify",
|
|
46
|
+
"minify": "terser lib/cjs/index.js --compress --mangle --toplevel --source-map --output lib/cjs/index.min.js && terser lib/esm/index.js --compress --mangle --toplevel --source-map --output lib/esm/index.min.js",
|
|
46
47
|
"build:types": "tsc",
|
|
47
48
|
"build:cjs": "cross-env NODE_ENV=cjs babel src --out-dir lib/cjs --extensions=.ts,.tsx --source-maps --ignore=src/stories --copy-files",
|
|
48
49
|
"build:esm": "cross-env NODE_ENV=esm babel src --out-dir lib/esm --extensions=.ts,.tsx --source-maps --ignore=src/stories --copy-files",
|
|
@@ -68,11 +69,13 @@
|
|
|
68
69
|
"lerna": "^8.1.9",
|
|
69
70
|
"react": "^18.3.1",
|
|
70
71
|
"react-dom": "^18.3.1",
|
|
72
|
+
"source-map-explorer": "^2.5.3",
|
|
71
73
|
"styled-components": "^6.1.13",
|
|
74
|
+
"terser": "^5.36.0",
|
|
72
75
|
"typescript": "^5.7.2"
|
|
73
76
|
},
|
|
74
77
|
"dependencies": {
|
|
75
|
-
"@chayns-components/core": "^5.0.0-beta.
|
|
78
|
+
"@chayns-components/core": "^5.0.0-beta.911",
|
|
76
79
|
"emojilib": "^3.0.12",
|
|
77
80
|
"unicode-emoji-json": "^0.8.0"
|
|
78
81
|
},
|
|
@@ -86,5 +89,5 @@
|
|
|
86
89
|
"publishConfig": {
|
|
87
90
|
"access": "public"
|
|
88
91
|
},
|
|
89
|
-
"gitHead": "
|
|
92
|
+
"gitHead": "cbbad4cae26a078bf6ae2c4e7e52fe9a2edd8f94"
|
|
90
93
|
}
|