@nemme/js-sdk 0.2.3 → 0.3.1
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/dist/assets/js-sdk.css +1 -1
- package/dist/forms/form-manager.d.ts +1 -0
- package/dist/forms/question-choice/question-choice.d.ts +2 -0
- package/dist/forms/question-text/question-text.d.ts +2 -0
- package/dist/forms/question-wrapper.d.ts +2 -0
- package/dist/forms/transition-end/transition-end.d.ts +1 -1
- package/dist/index.cjs +18 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.esm.js +4607 -1786
- package/dist/index.esm.js.map +1 -1
- package/dist/nemme-sdk.umd.js +18 -5
- package/dist/nemme-sdk.umd.js.map +1 -1
- package/dist/translations/en.json.d.ts +2 -0
- package/package.json +13 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nemme/js-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
@@ -38,26 +38,27 @@
|
|
|
38
38
|
"i18next-browser-languagedetector": "^8.2.0",
|
|
39
39
|
"react": "^18.0.0",
|
|
40
40
|
"react-dom": "^18.0.0",
|
|
41
|
-
"react-i18next": "^
|
|
41
|
+
"react-i18next": "^16.0.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@nemme/ui-kit": "^0.2.1",
|
|
45
44
|
"@chromatic-com/storybook": "^4.0.1",
|
|
46
|
-
"@eslint/compat": "^1.
|
|
45
|
+
"@eslint/compat": "^1.4.0",
|
|
47
46
|
"@eslint/eslintrc": "^3.2.0",
|
|
48
47
|
"@eslint/js": "^9.28.0",
|
|
49
|
-
"@
|
|
50
|
-
"@storybook/addon-
|
|
48
|
+
"@nemme/ui-kit": "^0.2.1",
|
|
49
|
+
"@storybook/addon-a11y": "^9.1.8",
|
|
50
|
+
"@storybook/addon-docs": "^9.1.8",
|
|
51
51
|
"@storybook/addon-vitest": "^9.0.13",
|
|
52
52
|
"@storybook/react-vite": "^9.0.13",
|
|
53
|
+
"@tailwindcss/postcss": "^4.1.13",
|
|
54
|
+
"@tailwindcss/vite": "^4.1.13",
|
|
53
55
|
"@testing-library/jest-dom": "^6.6.3",
|
|
54
56
|
"@testing-library/react": "^16.3.0",
|
|
55
57
|
"@typescript-eslint/eslint-plugin": "^8.33.1",
|
|
56
58
|
"@typescript-eslint/parser": "^8.33.1",
|
|
57
|
-
"@vitejs/plugin-react": "^
|
|
59
|
+
"@vitejs/plugin-react": "^5.0.3",
|
|
58
60
|
"@vitest/browser": "^3.2.4",
|
|
59
61
|
"@vitest/coverage-v8": "^3.2.4",
|
|
60
|
-
"autoprefixer": "^10.4.20",
|
|
61
62
|
"eslint": "^9.28.0",
|
|
62
63
|
"eslint-config-prettier": "^10.1.5",
|
|
63
64
|
"eslint-plugin-prettier": "^5.4.1",
|
|
@@ -65,18 +66,18 @@
|
|
|
65
66
|
"eslint-plugin-react-hooks": "^5.1.0",
|
|
66
67
|
"eslint-plugin-storybook": "^9.0.13",
|
|
67
68
|
"globals": "^16.2.0",
|
|
68
|
-
"happy-dom": "^
|
|
69
|
+
"happy-dom": "^18.0.1",
|
|
69
70
|
"husky": "^9.1.7",
|
|
70
71
|
"lint-staged": "^16.1.0",
|
|
71
72
|
"playwright": "^1.53.1",
|
|
72
73
|
"postcss": "^8.5.6",
|
|
73
74
|
"postcss-import": "^16.1.1",
|
|
74
|
-
"postcss-prefixwrap": "^1.
|
|
75
|
+
"postcss-prefixwrap": "^1.57.0",
|
|
75
76
|
"prettier": "^3.5.1",
|
|
76
77
|
"storybook": "^9.0.13",
|
|
77
|
-
"tailwindcss": "^
|
|
78
|
+
"tailwindcss": "^4.1.13",
|
|
78
79
|
"typescript": "^5.8.3",
|
|
79
|
-
"vite": "^
|
|
80
|
+
"vite": "^7.1.7",
|
|
80
81
|
"vite-plugin-dts": "^4.5.4",
|
|
81
82
|
"vitest": "^3.2.1"
|
|
82
83
|
}
|