ed-widget 1.8.0
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 +56 -0
- package/dist/assets/favicon.ico +0 -0
- package/dist/ed-widget.js +607 -0
- package/dist/en-Bl6-omxP.mjs +24 -0
- package/dist/no-KEr0c7Nd.mjs +24 -0
- package/npm/assets/favicon.ico +0 -0
- package/npm/ed-widget.js +427 -0
- package/npm/en-Bl6-omxP.mjs +24 -0
- package/npm/no-KEr0c7Nd.mjs +24 -0
- package/package.json +77 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
widget: {
|
|
3
|
+
label: {
|
|
4
|
+
click_here: "click here",
|
|
5
|
+
copy_code: "Copy code",
|
|
6
|
+
create_a_ticket: "Create a ticket",
|
|
7
|
+
easydesk: "Easydesk",
|
|
8
|
+
explore_more_articles: "Explore more articles",
|
|
9
|
+
knowledge_base: "Knowledge Base",
|
|
10
|
+
lets_explore: "Let's explore",
|
|
11
|
+
no_article_found: "We couldn't find any articles that match your search. Want to create a ticket?",
|
|
12
|
+
powerd_by: "Powered by",
|
|
13
|
+
soon_get_response: "Soon you will get an email",
|
|
14
|
+
ticket_created: "Ticket created",
|
|
15
|
+
thank_you_for_your_feedback: "Thank you for your valuable feedback!"
|
|
16
|
+
},
|
|
17
|
+
placeholder: {
|
|
18
|
+
search_for_articles: "Search for articles"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
e as default
|
|
24
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
widget: {
|
|
3
|
+
label: {
|
|
4
|
+
click_here: "klikk her",
|
|
5
|
+
copy_code: "Kopier kode",
|
|
6
|
+
create_a_ticket: "Opprett en sak",
|
|
7
|
+
easydesk: "Easydesk",
|
|
8
|
+
explore_more_articles: "Utforsk flere artikler",
|
|
9
|
+
knowledge_base: "Kunnskapsbase",
|
|
10
|
+
lets_explore: "La oss utforske",
|
|
11
|
+
no_article_found: "Vi fant ingen artikler som samsvarer med søket ditt. Vil du opprette en sak?",
|
|
12
|
+
powerd_by: "Drevet av",
|
|
13
|
+
soon_get_response: "Du vil snart motta en e-post",
|
|
14
|
+
ticket_created: "Sak opprettet",
|
|
15
|
+
thank_you_for_your_feedback: "Takk for tilbakemeldingen din!"
|
|
16
|
+
},
|
|
17
|
+
placeholder: {
|
|
18
|
+
search_for_articles: "Søk etter artikler"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
e as default
|
|
24
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ed-widget",
|
|
3
|
+
"description": "A flexible and lightweight EasyDesk chat widget for React apps and websites. Supports both React integration and CDN-based embedding for fast, real-time customer support.",
|
|
4
|
+
"version": "1.8.0",
|
|
5
|
+
"private": false,
|
|
6
|
+
"author": "Gain Solutions AS",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"main": "npm/ed-widget.js",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"npm",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"predev": "npm run lint",
|
|
16
|
+
"dev": "next dev",
|
|
17
|
+
"prebuild": "npm run lint",
|
|
18
|
+
"build": "next build",
|
|
19
|
+
"build:cdn": "vite build --config cdn.config.js",
|
|
20
|
+
"build:npm": "vite build --config npm.config.js --outDir npm",
|
|
21
|
+
"start": "next start",
|
|
22
|
+
"lint": "next lint",
|
|
23
|
+
"prepare": "husky"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"react": "^18.3.1",
|
|
27
|
+
"react-dom": "^18.3.1"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@apollo/client": "^3.10.4",
|
|
31
|
+
"@imgix/js-core": "^3.8.0",
|
|
32
|
+
"@rollup/plugin-graphql": "^2.0.5",
|
|
33
|
+
"@vitejs/plugin-react-swc": "^3.8.1",
|
|
34
|
+
"antd": "^5.18.0",
|
|
35
|
+
"autoprefixer": "^10.4.19",
|
|
36
|
+
"axios": "^1.7.2",
|
|
37
|
+
"dayjs": "^1.11.13",
|
|
38
|
+
"eslint": "^8.56.0",
|
|
39
|
+
"eslint-config-airbnb": "^19.0.4",
|
|
40
|
+
"eslint-config-next": "^14.1.0",
|
|
41
|
+
"eslint-config-prettier": "^9.1.0",
|
|
42
|
+
"eslint-import-resolver-alias": "^1.1.2",
|
|
43
|
+
"eslint-plugin-import": "^2.29.1",
|
|
44
|
+
"eslint-plugin-jsx-a11y": "^6.8.0",
|
|
45
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
46
|
+
"eslint-plugin-react": "^7.34.2",
|
|
47
|
+
"eslint-plugin-react-hooks": "^4.6.2",
|
|
48
|
+
"graphql": "^16.8.1",
|
|
49
|
+
"graphql-tag": "^2.12.6",
|
|
50
|
+
"graphql-ws": "^5.16.0",
|
|
51
|
+
"handlebars": "^4.7.8",
|
|
52
|
+
"html-react-parser": "^5.1.10",
|
|
53
|
+
"husky": "9.1.7",
|
|
54
|
+
"i18next": "^23.11.5",
|
|
55
|
+
"i18next-browser-languagedetector": "^8.0.0",
|
|
56
|
+
"i18next-resources-to-backend": "^1.2.1",
|
|
57
|
+
"js-cookie": "^3.0.5",
|
|
58
|
+
"jwt-decode": "^4.0.0",
|
|
59
|
+
"lodash": "^4.17.21",
|
|
60
|
+
"next": "^14.2.5",
|
|
61
|
+
"postcss": "^8.4.38",
|
|
62
|
+
"prettier": "^3.3.1",
|
|
63
|
+
"react-cookie": "^7.1.4",
|
|
64
|
+
"react-feather": "^2.0.10",
|
|
65
|
+
"react-i18next": "^14.1.2",
|
|
66
|
+
"react-infinite-scroll-component": "^6.1.0",
|
|
67
|
+
"react-toastify": "^10.0.5",
|
|
68
|
+
"tailwindcss": "^3.4.4",
|
|
69
|
+
"uid": "^2.0.2",
|
|
70
|
+
"vite": "^6.2.5",
|
|
71
|
+
"vite-plugin-css-injected-by-js": "^3.5.2"
|
|
72
|
+
}
|
|
73
|
+
,
|
|
74
|
+
"publishConfig": {
|
|
75
|
+
"@GainHQ:registry": "https://npm.pkg.github.com"
|
|
76
|
+
}
|
|
77
|
+
}
|