@abpjs/theme-basic 1.0.0 → 2.0.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/dist/index.d.ts +3 -3
- package/package.json +10 -5
package/dist/index.d.ts
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
* @abpjs/theme-basic
|
|
3
3
|
*
|
|
4
4
|
* ABP Framework Theme Basic components for React.
|
|
5
|
-
* Translated from @abp/ng.theme.basic
|
|
5
|
+
* Translated from @abp/ng.theme.basic v2.0.0
|
|
6
6
|
*
|
|
7
7
|
* This package provides the basic theme layout components for ABP React applications.
|
|
8
8
|
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
9
|
+
* @version 2.0.0
|
|
10
|
+
* @since 2.0.0 - Removed legacy .abp-confirm styles (no impact on React - we use Chakra UI)
|
|
11
11
|
*/
|
|
12
12
|
export * from './models';
|
|
13
13
|
export { LayoutProvider, useLayoutContext, useLayoutService, useNavigationElements, BrandingProvider, useBranding, useLogo, } from './contexts';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abpjs/theme-basic",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "ABP Framework Theme Basic components for React - translated from @abp/ng.theme.basic",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -27,11 +27,15 @@
|
|
|
27
27
|
"lucide-react": "^0.400.0",
|
|
28
28
|
"react-hook-form": "^7.48.0",
|
|
29
29
|
"react-icons": "^5.0.0",
|
|
30
|
-
"@abpjs/
|
|
31
|
-
"@abpjs/
|
|
30
|
+
"@abpjs/core": "2.0.0",
|
|
31
|
+
"@abpjs/theme-shared": "2.0.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@abp/ng.theme.basic": "
|
|
34
|
+
"@abp/ng.theme.basic": "2.0.0",
|
|
35
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
36
|
+
"@testing-library/react": "^16.1.0",
|
|
37
|
+
"@vitest/coverage-v8": "^3.2.0",
|
|
38
|
+
"vitest": "^3.2.0"
|
|
35
39
|
},
|
|
36
40
|
"author": "tekthar.com",
|
|
37
41
|
"license": "LGPL-3.0",
|
|
@@ -40,7 +44,8 @@
|
|
|
40
44
|
},
|
|
41
45
|
"repository": {
|
|
42
46
|
"type": "git",
|
|
43
|
-
"url": "https://github.com/abpjs/abp-react"
|
|
47
|
+
"url": "https://github.com/abpjs/abp-react",
|
|
48
|
+
"directory": "packages/theme-basic"
|
|
44
49
|
},
|
|
45
50
|
"homepage": "https://docs.abpjs.io/docs/packages/theme-basic/overview",
|
|
46
51
|
"bugs": {
|