@davi-ai/retorik-framework 1.1.5 → 1.1.7
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/index.d.ts +4 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1017 -379
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1003 -372
- package/dist/index.modern.js.map +1 -1
- package/package.json +17 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@davi-ai/retorik-framework",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.7",
|
|
4
4
|
"description": "Retorik Framework package",
|
|
5
5
|
"author": "DAVI",
|
|
6
6
|
"license": "MIT",
|
|
@@ -64,7 +64,9 @@
|
|
|
64
64
|
"scripts": {
|
|
65
65
|
"build": "parcel build",
|
|
66
66
|
"start": "parcel watch",
|
|
67
|
-
"test": "
|
|
67
|
+
"test": "jest --env=jsdom --reporters=jest-junit",
|
|
68
|
+
"test-update-snapshots": "jest --env=jsdom --updateSnapshot",
|
|
69
|
+
"test-coverage": "jest --env=jsdom --reporters=jest-junit --coverage --coverageReporters=cobertura",
|
|
68
70
|
"report": "npx parcel build src/index.tsx --reporter @parcel/reporter-bundle-analyzer",
|
|
69
71
|
"credentials": "vsts-npm-auth -config .npmrc",
|
|
70
72
|
"storybook": "npm run build-tailwind && start-storybook -p 6006",
|
|
@@ -77,7 +79,11 @@
|
|
|
77
79
|
},
|
|
78
80
|
"devDependencies": {
|
|
79
81
|
"@babel/core": "^7.19.1",
|
|
82
|
+
"@babel/plugin-proposal-decorators": "^7.24.7",
|
|
80
83
|
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
|
|
84
|
+
"@babel/preset-env": "^7.25.4",
|
|
85
|
+
"@babel/preset-react": "^7.24.7",
|
|
86
|
+
"@babel/preset-typescript": "^7.24.7",
|
|
81
87
|
"@babel/runtime": "^7.23.8",
|
|
82
88
|
"@parcel/packager-ts": "^2.12.0",
|
|
83
89
|
"@parcel/reporter-bundle-analyzer": "^2.12.0",
|
|
@@ -96,10 +102,10 @@
|
|
|
96
102
|
"@storybook/preset-create-react-app": "^4.1.2",
|
|
97
103
|
"@storybook/react": "^6.5.12",
|
|
98
104
|
"@storybook/testing-library": "^0.0.13",
|
|
99
|
-
"@testing-library/jest-dom": "
|
|
100
|
-
"@testing-library/react": "
|
|
101
|
-
"@testing-library/react-hooks": "
|
|
102
|
-
"@testing-library/user-event": "
|
|
105
|
+
"@testing-library/jest-dom": "6.5.0",
|
|
106
|
+
"@testing-library/react": "16.0.1",
|
|
107
|
+
"@testing-library/react-hooks": "8.0.1",
|
|
108
|
+
"@testing-library/user-event": "14.5.2",
|
|
103
109
|
"@types/jest": "^27.5.1",
|
|
104
110
|
"@types/leaflet": "^1.8.0",
|
|
105
111
|
"@types/node": "^12.12.38",
|
|
@@ -111,6 +117,7 @@
|
|
|
111
117
|
"@typescript-eslint/parser": "^5.0",
|
|
112
118
|
"autoprefixer": "^10.4.7",
|
|
113
119
|
"babel-eslint": "^10.0.3",
|
|
120
|
+
"babel-jest": "^29.7.0",
|
|
114
121
|
"babel-loader": "^8.2.5",
|
|
115
122
|
"buffer": "^5.7.1",
|
|
116
123
|
"canvas": "^2.9.0",
|
|
@@ -127,6 +134,8 @@
|
|
|
127
134
|
"eslint-plugin-react": "^7.17.0",
|
|
128
135
|
"eslint-plugin-standard": "^4.0.1",
|
|
129
136
|
"https-browserify": "^1.0.0",
|
|
137
|
+
"jest": "^29.7.0",
|
|
138
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
130
139
|
"jest-junit": "16.0.0",
|
|
131
140
|
"npm-run-all": "^4.1.5",
|
|
132
141
|
"parcel": "^2.12.0",
|
|
@@ -141,7 +150,7 @@
|
|
|
141
150
|
"react-docgen-typescript-plugin": "^1.0.5",
|
|
142
151
|
"react-dom": "^18",
|
|
143
152
|
"react-scripts": "5.0.1",
|
|
144
|
-
"react-test-renderer": "^18",
|
|
153
|
+
"react-test-renderer": "^18.3.1",
|
|
145
154
|
"stream-browserify": "^3.0.0",
|
|
146
155
|
"stream-http": "^3.2.0",
|
|
147
156
|
"string_decoder": "^1.3.0",
|
|
@@ -175,7 +184,7 @@
|
|
|
175
184
|
"botframework-directlinejs": "^0.15.5",
|
|
176
185
|
"classnames": "^2.3.1",
|
|
177
186
|
"leaflet": "^1.9.2",
|
|
178
|
-
"markdown-it": "
|
|
187
|
+
"markdown-it": "14.1.0",
|
|
179
188
|
"pdfjs-dist": "3.11.174",
|
|
180
189
|
"postcss-copy": "^7.1.0",
|
|
181
190
|
"qrcode": "^1.5.1",
|