@cundi/refine-xaf 1.0.2 → 1.0.3
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/README.md +5 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ This is an SDK integrating XAF backend with Refine frontend, including core logi
|
|
|
9
9
|
- **UI Components**:
|
|
10
10
|
- `Header`: Application header including user menu and theme toggle (Dark/Light Mode).
|
|
11
11
|
- `LoginPage`: Standard login page.
|
|
12
|
-
- `SmartList`, `RelatedList`: Highly encapsulated generic list and detail components.
|
|
12
|
+
- `SmartList`, `RelatedList`: Highly encapsulated generic list and detail components. (**Note**: To use `defaultVisible` prop, import `@cundi/refine-xaf/dist/antd-column-ext` in your app entry)
|
|
13
13
|
- `TiptapEditor`: Rich text editor with support for Images, Tables, Tasks, Math (LaTeX), YouTube, Emoji, Highlight, and Text Color.
|
|
14
14
|
- `ApplicationUser`: Complete user management (List, Create, Edit, Role Assignment).
|
|
15
15
|
- `PermissionPolicyRole`: Complete role and permission management.
|
|
@@ -299,7 +299,10 @@ console.log(claims.sub, claims.exp);
|
|
|
299
299
|
|
|
300
300
|
## Changelog
|
|
301
301
|
|
|
302
|
-
### v1.0.
|
|
302
|
+
### v1.0.2 (Latest)
|
|
303
|
+
- Fixed `defaultVisible` type definition for `SmartList`. Consumers must add `import "@cundi/refine-xaf/dist/antd-column-ext";` to their entry file (e.g., `App.tsx`) to enable this feature.
|
|
304
|
+
|
|
305
|
+
### v1.0.1
|
|
303
306
|
- Added `generatePassword` and `validatePasswordStrength` utilities
|
|
304
307
|
- Added retry mechanism to `httpClient` (exponential backoff)
|
|
305
308
|
- Improved `SmartList` performance with `useMemo`
|