@oliasoft-open-source/react-ui-library 5.23.0-beta-2 → 5.23.0-beta-4
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/components/audit-log/audit-log.d.ts +34 -6
- package/dist/components/audit-log/audit-log.d.ts.map +1 -1
- package/dist/components/audit-log/comparison-view-modal.d.ts +10 -2
- package/dist/components/audit-log/comparison-view-modal.d.ts.map +1 -1
- package/dist/components/audit-log/utils.d.ts.map +1 -1
- package/dist/index.js +386 -361
- package/package.json +20 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oliasoft-open-source/react-ui-library",
|
|
3
|
-
"version": "5.23.0-beta-
|
|
3
|
+
"version": "5.23.0-beta-4",
|
|
4
4
|
"description": "Reusable UI components for React projects",
|
|
5
5
|
"homepage": "https://oliasoft-open-source.gitlab.io/react-ui-library",
|
|
6
6
|
"bugs": {
|
|
@@ -44,13 +44,16 @@
|
|
|
44
44
|
"@tiptap/markdown": "^3.20.0",
|
|
45
45
|
"@tiptap/react": "^3.20.0",
|
|
46
46
|
"@tiptap/starter-kit": "^3.20.0",
|
|
47
|
+
"@types/rc-slider": "^9.3.1",
|
|
47
48
|
"@types/react-resizable": "^3.0.8",
|
|
48
49
|
"@types/react-window": "^1.8.8",
|
|
50
|
+
"@types/styled-components": "^5.1.34",
|
|
49
51
|
"classnames": "^2.5.1",
|
|
50
52
|
"csstype": "^3.1.3",
|
|
51
53
|
"memoize-one": "^5.2.1",
|
|
52
54
|
"normalize.css": "^8.0.1",
|
|
53
55
|
"papaparse": "^5.5.2",
|
|
56
|
+
"path": "^0.12.7",
|
|
54
57
|
"rc-slider": "11.1.9",
|
|
55
58
|
"react-diff-viewer-continued": "^4.0.6",
|
|
56
59
|
"react-dnd": "^16.0.1",
|
|
@@ -73,21 +76,30 @@
|
|
|
73
76
|
"@dnd-kit/core": "^6.3.1",
|
|
74
77
|
"@dnd-kit/sortable": "^8.0.0",
|
|
75
78
|
"@dnd-kit/utilities": "^3.2.2",
|
|
79
|
+
"@mdx-js/react": "^3",
|
|
76
80
|
"@oliasoft-open-source/units": "^4.5.3",
|
|
77
81
|
"@storybook/addon-docs": "^10.2.8",
|
|
82
|
+
"@storybook/addon-links": "^10.2.8",
|
|
78
83
|
"@storybook/addon-themes": "^10.2.8",
|
|
79
84
|
"@storybook/addon-vitest": "^10.3.6",
|
|
80
85
|
"@storybook/react-vite": "^10.3.6",
|
|
81
86
|
"@testing-library/dom": "^10.4.1",
|
|
82
87
|
"@testing-library/react": "^16.3.1",
|
|
88
|
+
"@testing-library/user-event": "^14.6.1",
|
|
89
|
+
"@types/jest": "^29.5.14",
|
|
83
90
|
"@types/papaparse": "^5.3.16",
|
|
84
91
|
"@types/react": "^18.3.18",
|
|
85
92
|
"@types/react-dom": "^18.3.5",
|
|
93
|
+
"@types/react-redux": "^7.1.34",
|
|
86
94
|
"@types/react-transition-group": "^4.4.12",
|
|
95
|
+
"@types/seamless-immutable": "^7.1.19",
|
|
87
96
|
"@vitejs/plugin-react": "^6.0.1",
|
|
88
97
|
"@vitest/browser": "^4.1.6",
|
|
89
98
|
"@vitest/browser-playwright": "^4.1.6",
|
|
90
99
|
"@vitest/coverage-v8": "^4.1.6",
|
|
100
|
+
"ajv": "^8.17.1",
|
|
101
|
+
"ajv-errors": "^3.0.0",
|
|
102
|
+
"ajv-keywords": "^5.1.0",
|
|
91
103
|
"es-toolkit": "^1.43.0",
|
|
92
104
|
"http-server": "^14.1.1",
|
|
93
105
|
"husky": "^9",
|
|
@@ -99,12 +111,15 @@
|
|
|
99
111
|
"oxlint": "^1.46.0",
|
|
100
112
|
"playwright": "^1.58.2",
|
|
101
113
|
"prettier": "3.5.3",
|
|
114
|
+
"prop-types": "^15",
|
|
102
115
|
"react": "^18.3.1",
|
|
103
116
|
"react-dom": "^18.3.1",
|
|
104
117
|
"storybook": "^10.2.8",
|
|
105
118
|
"typescript": "^5.9.3",
|
|
106
119
|
"vite": "^8.0.12",
|
|
107
120
|
"vite-plugin-dts": "^5.0.0",
|
|
121
|
+
"vite-plugin-html": "^3.2.2",
|
|
122
|
+
"vite-preset-react": "^2.3.0",
|
|
108
123
|
"vitest": "^4.1.6",
|
|
109
124
|
"wait-on": "^9.0.3"
|
|
110
125
|
},
|
|
@@ -113,7 +128,11 @@
|
|
|
113
128
|
"@dnd-kit/sortable": "^8.0.0",
|
|
114
129
|
"@dnd-kit/utilities": "^3.2.2",
|
|
115
130
|
"@oliasoft-open-source/units": "^4",
|
|
131
|
+
"ajv": "^8.17.1",
|
|
132
|
+
"ajv-errors": "^3.0.0",
|
|
133
|
+
"ajv-keywords": "^5.1.0",
|
|
116
134
|
"es-toolkit": "^1",
|
|
135
|
+
"prop-types": "^15",
|
|
117
136
|
"react": ">=17 <19",
|
|
118
137
|
"react-dom": ">= 17 <19"
|
|
119
138
|
},
|