pejay-ui 1.3.0 → 1.3.1
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 +17 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -136,8 +136,23 @@ Below is the list of components you can add. Each has a copyable command block w
|
|
|
136
136
|
```bash
|
|
137
137
|
npx pejay-ui add tanstack-query-client
|
|
138
138
|
```
|
|
139
|
-
* **`react-router-client`**: Bare-bone React Router client layout, routing structure, and route guard setup
|
|
139
|
+
* **`react-router-client`**: Bare-bone React Router client layout, routing structure, and route guard setup, copied into `src/react-router/`.
|
|
140
140
|
```bash
|
|
141
141
|
npx pejay-ui add react-router-client
|
|
142
142
|
```
|
|
143
|
-
|
|
143
|
+
* **`tanstack-router-client`**: TanStack Router setup with layouts, route guards, and file-based route stubs, copied into `src/tanstack-router/`.
|
|
144
|
+
```bash
|
|
145
|
+
npx pejay-ui add tanstack-router-client
|
|
146
|
+
```
|
|
147
|
+
* **`axios-client`**: Axios instance with interceptors, request helpers, and a sample API module, copied into `src/axios/`.
|
|
148
|
+
```bash
|
|
149
|
+
npx pejay-ui add axios-client
|
|
150
|
+
```
|
|
151
|
+
* **`redux-store-client`**: Redux Toolkit store setup with `redux-persist`, reducers, slices, and selectors, copied into `src/redux-store/`.
|
|
152
|
+
```bash
|
|
153
|
+
npx pejay-ui add redux-store-client
|
|
154
|
+
```
|
|
155
|
+
* **`rtk-query-client`**: RTK Query base API with `fetchBaseQuery`, tag management, middleware, and a sample endpoint, copied into `src/rtk-query/`.
|
|
156
|
+
```bash
|
|
157
|
+
npx pejay-ui add rtk-query-client
|
|
158
|
+
```
|