@semiont/react-ui 0.5.29 → 0.5.30
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semiont/react-ui",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.30",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=24.0.0"
|
|
6
6
|
},
|
|
@@ -102,8 +102,8 @@
|
|
|
102
102
|
"cssnano": "^8.0.8",
|
|
103
103
|
"fast-check": "^4.9.0",
|
|
104
104
|
"jest-axe": "^11.0.0",
|
|
105
|
-
"jsdom": "^
|
|
106
|
-
"postcss-import": "^
|
|
105
|
+
"jsdom": "^30.0.0",
|
|
106
|
+
"postcss-import": "^17.0.0",
|
|
107
107
|
"rollup": "^4.63.0",
|
|
108
108
|
"rollup-plugin-dts": "^6.4.1",
|
|
109
109
|
"styled-components": "^6.5.2",
|
|
@@ -122,9 +122,9 @@
|
|
|
122
122
|
"directory": "packages/react-ui"
|
|
123
123
|
},
|
|
124
124
|
"dependencies": {
|
|
125
|
-
"@semiont/core": "0.5.
|
|
126
|
-
"@semiont/http-transport": "0.5.
|
|
127
|
-
"@semiont/sdk": "0.5.
|
|
125
|
+
"@semiont/core": "0.5.30",
|
|
126
|
+
"@semiont/http-transport": "0.5.30",
|
|
127
|
+
"@semiont/sdk": "0.5.30",
|
|
128
128
|
"clsx": "^2.1.1",
|
|
129
129
|
"pdfjs-dist": "^6.2.108",
|
|
130
130
|
"react-error-boundary": "^6.1.3",
|
|
@@ -368,8 +368,8 @@ describe('RecentDocumentsPage', () => {
|
|
|
368
368
|
const props = createMockProps();
|
|
369
369
|
const { container } = render(<RecentDocumentsPage {...props} />);
|
|
370
370
|
|
|
371
|
-
const svg = container.querySelector('svg[viewBox
|
|
372
|
-
expect(svg).
|
|
371
|
+
const svg = container.querySelector('svg[viewBox]');
|
|
372
|
+
expect(svg).toHaveAttribute('viewBox', '0 0 24 24');
|
|
373
373
|
});
|
|
374
374
|
|
|
375
375
|
it('renders SVG path with correct attributes', () => {
|