proje-react-panel 1.7.0 → 1.8.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.
@@ -527,5 +527,5 @@ The Dashboard components are part of the `proje-react-panel` library and require
527
527
 
528
528
  ## Related Components
529
529
 
530
- - [Counter Component](./README.md#counter-component) - For displaying animated counters
530
+ - [Counter Component](../README.md#counter-component) - For displaying animated counters
531
531
  - [Layout Component](./AUTH_LAYOUT_GUIDE.md) - For page layouts with sidebar
@@ -0,0 +1,85 @@
1
+ # React Panel Library
2
+
3
+ A powerful and flexible React-based panel library for building administrative interfaces and data management systems.
4
+
5
+ ## Features
6
+
7
+ - **List Page Component**: Built-in list view with customizable cells and image handling
8
+ - **Form Page Component**: Flexible form creation and management
9
+ - **Login Component**: Authentication handling
10
+ - **Layout System**: Consistent layout management
11
+ - **Panel Component**: Core panel functionality
12
+ - **Counter Component**: Utility component for counting operations
13
+ - **Dashboard Components**: Flexible grid-based dashboard layout system
14
+ - **Color System**: Centralized color system with SCSS variables and CSS custom properties
15
+
16
+ ## Decorators
17
+
18
+ The library provides several decorators for enhanced functionality:
19
+
20
+ ### List Decorators
21
+
22
+ - `@List`: Main list decorator for creating list views
23
+ - `@ImageCell`: Specialized cell for handling images in lists
24
+ - `@Cell`: Base cell decorator for list items
25
+
26
+ ### Form Decorators
27
+
28
+ - `@Input`: Form input decorator
29
+ - `@Crud`: CRUD operations decorator
30
+
31
+ ## Installation
32
+
33
+ ```bash
34
+ npm install proje-react-panel
35
+ # or
36
+ yarn add proje-react-panel
37
+ ```
38
+
39
+ ## Usage
40
+
41
+ ```typescript
42
+ import { Panel, ListPage, FormPage, Login, Layout, DashboardGrid, DashboardItem } from 'proje-react-panel';
43
+
44
+ // Initialize the panel
45
+ const panel = new Panel({
46
+ // configuration options
47
+ });
48
+
49
+ // Use components
50
+ <Layout>
51
+ <ListPage />
52
+ <FormPage />
53
+ <Login />
54
+ </Layout>
55
+
56
+ // Dashboard example
57
+ <DashboardGrid columns={3}>
58
+ <DashboardItem>Content 1</DashboardItem>
59
+ <DashboardItem>Content 2</DashboardItem>
60
+ <DashboardItem>Content 3</DashboardItem>
61
+ </DashboardGrid>
62
+ ```
63
+
64
+ ## Guides
65
+
66
+ - **[Dashboard Guide](./guides/DASHBOARD_GUIDE.md)** - Complete guide for using Dashboard components
67
+ - **[Auth Layout Guide](./guides/AUTH_LAYOUT_GUIDE.md)** - Guide for implementing authentication layouts with sidebar
68
+ - **[Auth Layout Example](./guides/AUTH_LAYOUT_EXAMPLE.md)** - Complete working example of AuthLayout implementation
69
+ - **[Color System Guide](./guides/COLOR_SYSTEM_GUIDE.md)** - Complete documentation of the color system, SCSS variables, and CSS custom properties
70
+ - **[Implementation Guide](./guides/IMPLEMENTATION_GUIDE.md)** - Comprehensive guide for implementing the library in your React applications
71
+
72
+ ## Type Definitions
73
+
74
+ The library includes TypeScript definitions for better development experience:
75
+
76
+ - `InitPanelOptions`: Configuration options for panel initialization
77
+ - `ScreenCreatorData`: Data structure for screen creation
78
+
79
+ ## Contributing
80
+
81
+ Contributions are welcome! Please feel free to submit a Pull Request.
82
+
83
+ ## License
84
+
85
+ This project is licensed under the MIT License - see the LICENSE file for details.
package/how_to.md ADDED
@@ -0,0 +1,184 @@
1
+ # How To — `proje-react-panel`
2
+
3
+ A decorator-driven admin-panel kit for React. You declare your resources as TypeScript classes (`@List`, `@Form`, `@Details`); the library renders the table / form / detail pages and talks to your REST backend.
4
+
5
+ For deep walkthroughs see [`guides/IMPLEMENTATION_GUIDE.md`](./guides/IMPLEMENTATION_GUIDE.md). For a runnable demo see [`examples/`](./examples).
6
+
7
+ ---
8
+
9
+ ## 1. What you're getting
10
+
11
+ - `<ListPage model={...} />`, `<FormPage model={...} />`, `<DetailsPage model={...} />` — page components driven by class metadata.
12
+ - `<Panel>`, `<Layout>`, `<Login>` — app shell, sidebar, and login page.
13
+ - `<Dashboard>`, `<DashboardGrid>`, `<DashboardItem>`, `<Counter>` — dashboard widgets.
14
+ - `initApi`, `setAuthToken`, `getAll`, `getOne`, `create`, `update`, `remove`, `createFormData`, `updateFormData` — backend wiring helpers.
15
+ - Decorators: `@List`, `@Form`, `@Details`, `@Cell`, `@LinkCell`, `@ImageCell`, `@DownloadCell`, `@Input`, `@SelectInput`, `@DetailsItem`.
16
+
17
+ See the full export surface in [`src/index.ts`](./src/index.ts).
18
+
19
+ ---
20
+
21
+ ## 2. Backend expectations
22
+
23
+ The library is built against a plain REST backend with these conventions. Any backend that respects them will work — a compatible NestJS reference implementation is available as a sibling project; use it as a starting point if you don't have a backend yet.
24
+
25
+ | Concern | Shape |
26
+ | --- | --- |
27
+ | Auth header | `Authorization: Bearer <jwt>` on every protected request |
28
+ | Login | `POST /auth/login` → `{ access_token, admin: { id, email } }` |
29
+ | List | `GET /:resource?page=<n>&limit=<n>` → `{ total: number, data: T[] }` |
30
+ | Item | `GET /:resource/:id` → entity JSON (no envelope) |
31
+ | Mutations | `POST /:resource`, `PUT /:resource/:id`, `DELETE /:resource/:id` |
32
+ | File upload | `multipart/form-data`, field name `file` |
33
+ | Errors | `{ statusCode, message, error }` (NestJS default works out of the box) |
34
+ | 401 | The library auto-clears the token and redirects to `/login` |
35
+
36
+ ---
37
+
38
+ ## 3. Client-side data flow
39
+
40
+ ```mermaid
41
+ flowchart LR
42
+ Model["Model class<br/>(@List/@Form/@Details)"] -->|reflect-metadata| Page["ListPage / FormPage / DetailsPage"]
43
+ Page -->|getData / onSubmit / getDetailsData| DF["dataFetchers"]
44
+ DF -->|getAll/getOne/create/update/remove| Crud["CrudApi (axios)"]
45
+ Crud -->|REST + Bearer| API[("Your backend")]
46
+ API -->|"{ total, data }" or entity| Crud
47
+ Crud --> Page
48
+ Page --> UI["Rendered table / form / details"]
49
+
50
+ LS[("localStorage<br/>token")] -.read on boot.- Crud
51
+ API -.401.-> Logout["setAuthLogout()<br/>→ /login"]
52
+ ```
53
+
54
+ ---
55
+
56
+ ## 4. Quick start (5 steps)
57
+
58
+ ### 4.1 Install
59
+
60
+ ```bash
61
+ npm install proje-react-panel \
62
+ react react-router react-hook-form \
63
+ zustand axios react-select use-sync-external-store
64
+ ```
65
+
66
+ Peer-dep versions: `react >= 19`, `react-router 7.3.0`, `react-hook-form >= 7.54.2`, `zustand >= 5.0.3`, `axios >= 1.0.0`, `react-select ^5.10.1`, `use-sync-external-store >= 1.4.0` (see [`package.json`](./package.json)).
67
+
68
+ ### 4.2 Initialize at app root
69
+
70
+ ```ts
71
+ import { Panel, initApi, initAuthToken, setAuthToken } from 'proje-react-panel';
72
+ import 'reflect-metadata';
73
+
74
+ initApi({ baseUrl: import.meta.env.VITE_API_BASE_URL });
75
+ initAuthToken();
76
+
77
+ export function App() {
78
+ return (
79
+ <Panel onInit={(appData) => { if (appData.token) setAuthToken(appData.token); }}>
80
+ <Router>{/* routes */}</Router>
81
+ </Panel>
82
+ );
83
+ }
84
+ ```
85
+
86
+ ### 4.3 Wire data fetchers
87
+
88
+ ```ts
89
+ // src/api/dataFetchers.ts
90
+ import { getAll, getOne, create, update, remove } from 'proje-react-panel';
91
+ import { ProductList, CreateProductForm, EditProductForm, ProductDetails } from '../models/Product';
92
+
93
+ export const dataFetchers = Object.freeze({
94
+ products: {
95
+ getAll: getAll<ProductList>('products'),
96
+ details: getOne<ProductDetails>('products'),
97
+ create: create<CreateProductForm>('products'),
98
+ update: update<EditProductForm>('products'),
99
+ remove: remove('products', 'id'),
100
+ },
101
+ });
102
+ ```
103
+
104
+ ### 4.4 Declare a model with decorators
105
+
106
+ ```ts
107
+ // src/models/Product.ts
108
+ import { List, Cell, LinkCell, Form, Input, Details, DetailsItem } from 'proje-react-panel';
109
+ import { IsNotEmpty, MinLength } from 'class-validator';
110
+ import { dataFetchers } from '../api/dataFetchers';
111
+
112
+ @List({ getData: dataFetchers.products.getAll, primaryId: 'id' })
113
+ export class ProductList {
114
+ @Cell({ title: 'ID', type: 'uuid' }) id!: string;
115
+ @Cell({ title: 'Name' }) name!: string;
116
+ @LinkCell({ path: '/products/:id', placeHolder: 'open' }) open!: string;
117
+ }
118
+
119
+ @Form({ onSubmit: dataFetchers.products.create, redirectSuccessUrl: '/products' })
120
+ export class CreateProductForm {
121
+ @Input({ label: 'Name' })
122
+ @IsNotEmpty()
123
+ @MinLength(2)
124
+ name!: string;
125
+ }
126
+
127
+ @Details({ getDetailsData: dataFetchers.products.details, primaryId: 'id' })
128
+ export class ProductDetails {
129
+ @DetailsItem() id!: string;
130
+ @DetailsItem() name!: string;
131
+ }
132
+ ```
133
+
134
+ ### 4.5 Route the pages
135
+
136
+ ```tsx
137
+ import { ListPage, FormPage, DetailsPage } from 'proje-react-panel';
138
+ import { ProductList, CreateProductForm, ProductDetails } from './models/Product';
139
+
140
+ <Route path="products">
141
+ <Route path="" element={<ListPage model={ProductList} />} />
142
+ <Route path="create" element={<FormPage model={CreateProductForm} />} />
143
+ <Route path=":id" element={<DetailsPage model={ProductDetails} />} />
144
+ </Route>
145
+ ```
146
+
147
+ That's it — you have a fully functional list / create / detail flow against `GET|POST|GET /products`.
148
+
149
+ ---
150
+
151
+ ## 5. File uploads
152
+
153
+ Swap `create` → `createFormData` (and `update` → `updateFormData`) in your `dataFetchers`, set `type: 'formData'` on the `@Form` decorator, and name the file field `file`. The library then sends `multipart/form-data` with the file under the `file` key — which is what the reference backend's upload endpoint expects.
154
+
155
+ A complete worked example lives in [`examples/src/models/Asset.ts`](./examples/src/models/Asset.ts) and [`examples/src/api/dataFetchers.ts`](./examples/src/api/dataFetchers.ts).
156
+
157
+ ---
158
+
159
+ ## 6. Login & 401
160
+
161
+ - `initAuthToken()` reads `localStorage["token"]` on boot and applies it to axios.
162
+ - `setAuthToken(token)` writes the token to `localStorage` and axios defaults — call it from your login form's success handler (or use the built-in `<Login model={DefaultLoginForm} />`).
163
+ - A 401 response anywhere triggers `setAuthLogout()` and a hard redirect to `/login`. See [`src/api/ApiConfig.ts`](./src/api/ApiConfig.ts) for the interceptor.
164
+
165
+ ---
166
+
167
+ ## 7. Where to next
168
+
169
+ | Topic | File |
170
+ | --- | --- |
171
+ | Step-by-step walkthrough (the deepest doc) | [`guides/IMPLEMENTATION_GUIDE.md`](./guides/IMPLEMENTATION_GUIDE.md) |
172
+ | Sidebar + authenticated layout | [`guides/AUTH_LAYOUT_GUIDE.md`](./guides/AUTH_LAYOUT_GUIDE.md) |
173
+ | Layout example code | [`guides/AUTH_LAYOUT_EXAMPLE.md`](./guides/AUTH_LAYOUT_EXAMPLE.md) |
174
+ | Dashboard widgets | [`guides/DASHBOARD_GUIDE.md`](./guides/DASHBOARD_GUIDE.md) |
175
+ | Colors / theme tokens | [`guides/COLOR_SYSTEM_GUIDE.md`](./guides/COLOR_SYSTEM_GUIDE.md) |
176
+ | Feature overview | [`guides/USAGE.md`](./guides/USAGE.md) |
177
+ | Live runnable example | [`examples/`](./examples) |
178
+ | Product/tech doc | [`PTD.md`](./PTD.md) |
179
+
180
+ ---
181
+
182
+ ## 8. Version & license
183
+
184
+ `proje-react-panel` v1.7.0 — ISC license. See [`package.json`](./package.json).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "proje-react-panel",
3
- "version": "1.7.0",
3
+ "version": "1.8.0",
4
4
  "type": "module",
5
5
  "description": "",
6
6
  "author": "SEFA DEMİR",
@@ -30,6 +30,8 @@
30
30
  "@rollup/plugin-commonjs": "^28.0.3",
31
31
  "@rollup/plugin-node-resolve": "^16.0.1",
32
32
  "@svgr/rollup": "^8.1.0",
33
+ "@testing-library/dom": "^10.4.1",
34
+ "@testing-library/react": "^16.3.2",
33
35
  "@types/react": "^19.0.10",
34
36
  "@typescript-eslint/eslint-plugin": "^8.26.1",
35
37
  "@typescript-eslint/parser": "^8.29.1",
@@ -41,9 +43,11 @@
41
43
  "eslint-plugin-react-hooks": "^5.2.0",
42
44
  "globals": "^16.0.0",
43
45
  "jest": "^29.7.0",
46
+ "jest-environment-jsdom": "^29.7.0",
44
47
  "prettier": "^3.5.3",
45
48
  "prettier-eslint": "^16.3.0",
46
49
  "react": "^19.0.0",
50
+ "react-dom": "19.0.0",
47
51
  "react-hook-form": "^7.54.2",
48
52
  "react-router": "^7.3.0",
49
53
  "react-select": "^5.10.1",
@@ -0,0 +1,92 @@
1
+ /**
2
+ * @jest-environment jsdom
3
+ */
4
+ import 'reflect-metadata';
5
+ import React from 'react';
6
+ import { describe, expect, it, beforeEach } from '@jest/globals';
7
+ import { render, screen, fireEvent } from '@testing-library/react';
8
+ import { FormProvider, useForm } from 'react-hook-form';
9
+ import { CustomInput, CustomRenderProps } from '../../../decorators/form/inputs/CustomInput';
10
+ import { Input, getInputFields } from '../../../decorators/form/Input';
11
+ import { FormField } from '../../../components/form/FormField';
12
+
13
+ // Every call the library makes into the consumer supplied render prop.
14
+ let renderCalls: CustomRenderProps[] = [];
15
+
16
+ function renderControl(props: CustomRenderProps) {
17
+ renderCalls.push(props);
18
+ return (
19
+ <button type="button" data-testid="custom-control" onClick={() => props.onChange('picked-42')}>
20
+ {String(props.value ?? '')}
21
+ </button>
22
+ );
23
+ }
24
+
25
+ class AssetForm {
26
+ @Input({ label: 'Title' })
27
+ title: string;
28
+
29
+ @CustomInput({ label: 'Asset', render: renderControl })
30
+ asset: unknown;
31
+ }
32
+
33
+ // The values react-hook-form currently holds, mirrored out of the harness.
34
+ let formValues: Record<string, unknown> = {};
35
+
36
+ function Harness() {
37
+ const form = useForm({ defaultValues: { title: '', asset: 'initial' } });
38
+ formValues = form.watch();
39
+ const inputs = getInputFields(AssetForm);
40
+ return (
41
+ <FormProvider {...form}>
42
+ {inputs.map(input => (
43
+ <FormField key={input.name} input={input} register={form.register} />
44
+ ))}
45
+ </FormProvider>
46
+ );
47
+ }
48
+
49
+ describe('CustomInput', () => {
50
+ beforeEach(() => {
51
+ renderCalls = [];
52
+ formValues = {};
53
+ });
54
+
55
+ it('carries the render function through the metadata', () => {
56
+ const asset = getInputFields(AssetForm).find(input => input.name === 'asset');
57
+ expect(asset?.type).toBe('custom');
58
+ expect(typeof (asset as unknown as { render?: unknown })?.render).toBe('function');
59
+ });
60
+
61
+ it('calls the render prop with the field name and current value', () => {
62
+ render(<Harness />);
63
+
64
+ expect(renderCalls.length).toBeGreaterThan(0);
65
+ expect(renderCalls[0].fieldName).toBe('asset');
66
+ expect(renderCalls[0].value).toBe('initial');
67
+ expect(renderCalls[0].error).toBeUndefined();
68
+ expect(screen.getByTestId('custom-control').textContent).toBe('initial');
69
+ });
70
+
71
+ it('renders the label like any other field', () => {
72
+ render(<Harness />);
73
+
74
+ expect(screen.getByText('Asset:')).toBeTruthy();
75
+ });
76
+
77
+ it('updates the form value when the render prop calls onChange', () => {
78
+ render(<Harness />);
79
+
80
+ fireEvent.click(screen.getByTestId('custom-control'));
81
+
82
+ expect(formValues.asset).toBe('picked-42');
83
+ expect(screen.getByTestId('custom-control').textContent).toBe('picked-42');
84
+ });
85
+
86
+ it('leaves the other field types untouched', () => {
87
+ render(<Harness />);
88
+
89
+ expect(screen.getByText('Title:')).toBeTruthy();
90
+ expect(formValues.title).toBe('');
91
+ });
92
+ });
@@ -0,0 +1,34 @@
1
+ import React from 'react';
2
+ import { InputConfiguration } from '../../decorators/form/Input';
3
+ import { useFormContext, Controller } from 'react-hook-form';
4
+ import { CustomInputConfiguration } from '../../decorators/form/inputs/CustomInput';
5
+
6
+ interface CustomFieldProps {
7
+ input: InputConfiguration;
8
+ fieldName: string;
9
+ error?: string;
10
+ }
11
+
12
+ export function CustomField({ input, fieldName, error }: CustomFieldProps) {
13
+ const inputCustom = input as CustomInputConfiguration;
14
+ const { control } = useFormContext();
15
+
16
+ return (
17
+ <Controller
18
+ name={fieldName}
19
+ control={control}
20
+ render={({ field }) => {
21
+ return (
22
+ <>
23
+ {inputCustom.render({
24
+ fieldName,
25
+ value: field.value,
26
+ onChange: field.onChange,
27
+ error,
28
+ })}
29
+ </>
30
+ );
31
+ }}
32
+ />
33
+ );
34
+ }
@@ -5,6 +5,7 @@ import { Uploader } from './Uploader';
5
5
  import { Checkbox } from './Checkbox';
6
6
  import { Label } from './Label';
7
7
  import { Select } from './Select';
8
+ import { CustomField } from './CustomField';
8
9
 
9
10
  interface FormFieldProps {
10
11
  input: InputConfiguration;
@@ -82,6 +83,8 @@ export function FormField({ input, register, error, baseName }: FormFieldProps)
82
83
  return <textarea {...register(fieldName)} placeholder={input.placeholder} />;
83
84
  case 'select':
84
85
  return <Select input={input} fieldName={fieldName} />;
86
+ case 'custom':
87
+ return <CustomField input={input} fieldName={fieldName} error={error?.message} />;
85
88
  case 'input': {
86
89
  return (
87
90
  <input type={input.inputType} {...register(fieldName)} placeholder={input.placeholder} />
@@ -98,7 +101,8 @@ export function FormField({ input, register, error, baseName }: FormFieldProps)
98
101
  default:
99
102
  return null;
100
103
  }
101
- }, [input, register, fieldName]);
104
+ // NOTE: error message is a dependency because 'custom' forwards it into the render prop.
105
+ }, [input, register, fieldName, error?.message]);
102
106
 
103
107
  return (
104
108
  <div className={`form-field ${input.type === 'nested' ? 'nested-form-field' : ''}`}>
@@ -1,5 +1,6 @@
1
- import React from 'react';
1
+ import React, { useEffect, useRef } from 'react';
2
2
  import { SideBar } from './SideBar';
3
+ import { LoadingScreen } from '../LoadingScreen';
3
4
  import { useAppStore } from '../../store/store';
4
5
 
5
6
  export function Layout<IconType>({
@@ -16,8 +17,23 @@ export function Layout<IconType>({
16
17
  const { user } = useAppStore(s => ({
17
18
  user: s.user,
18
19
  }));
19
- if (!user) {
20
+ const redirected = useRef(false);
21
+
22
+ // Yonlendirme render govdesinde degil effect'te yapiliyor: render sirasindaki
23
+ // yan etki React kuralini ihlal ediyor ve StrictMode'da iki kez tetikleniyordu.
24
+ useEffect(() => {
25
+ if (user || redirected.current) {
26
+ return;
27
+ }
28
+ redirected.current = true;
20
29
  logout?.('redirect');
30
+ }, [user, logout]);
31
+
32
+ // Oturum yokken children RENDER EDILMEZ. Eskiden `logout('redirect')` cagrilip
33
+ // yine de tum layout donuluyordu; tarayici korumali ekrani boyayip ancak
34
+ // ondan sonra login'e gidiyordu (panelin bir an gorunup kaybolmasi).
35
+ if (!user) {
36
+ return <LoadingScreen id="layout-auth-redirect" />;
21
37
  }
22
38
 
23
39
  return (
@@ -60,7 +60,7 @@ export function ListPage<T extends AnyClass>({
60
60
  const filtersFromUrl: Record<string, string> = {};
61
61
  searchParams.forEach((value, key) => {
62
62
  filtersFromUrl[key] = value;
63
- });
63
+ });
64
64
  setActiveFilters(filtersFromUrl);
65
65
  }, []);
66
66
 
@@ -8,7 +8,7 @@ const isFieldSensitive = (fieldName: string): boolean => {
8
8
  };
9
9
 
10
10
  export type InputTypes = 'input' | 'textarea' | 'file-upload' | 'checkbox' | 'hidden' | 'nested';
11
- export type ExtendedInputTypes = InputTypes | 'select';
11
+ export type ExtendedInputTypes = InputTypes | 'select' | 'custom';
12
12
 
13
13
  export interface InputOptions {
14
14
  type?: InputTypes;
@@ -0,0 +1,26 @@
1
+ import type { ReactNode } from 'react';
2
+ import { ExtendedInput, ExtendedInputOptions, InputConfiguration, InputOptions } from '../Input';
3
+
4
+ export interface CustomRenderProps {
5
+ fieldName: string;
6
+ value: unknown;
7
+ onChange: (value: unknown) => void;
8
+ error?: string;
9
+ }
10
+
11
+ export interface CustomInputOptions extends Omit<InputOptions, 'type'> {
12
+ render: (props: CustomRenderProps) => ReactNode;
13
+ }
14
+
15
+ export interface CustomInputConfiguration extends InputConfiguration {
16
+ type: 'custom';
17
+ render: (props: CustomRenderProps) => ReactNode;
18
+ }
19
+
20
+ //NOTE: the render function travels through Reflect metadata like any other option value.
21
+ export function CustomInput(options: CustomInputOptions): PropertyDecorator {
22
+ return ExtendedInput({
23
+ ...options,
24
+ type: 'custom',
25
+ } as ExtendedInputOptions);
26
+ }
package/src/index.ts CHANGED
@@ -21,6 +21,11 @@ export { FormPage } from './components/form/FormPage';
21
21
  export { Form, type OnSubmitFN } from './decorators/form/Form';
22
22
  export { Input } from './decorators/form/Input';
23
23
  export { SelectInput } from './decorators/form/inputs/SelectInput';
24
+ export {
25
+ CustomInput,
26
+ type CustomInputOptions,
27
+ type CustomRenderProps,
28
+ } from './decorators/form/inputs/CustomInput';
24
29
  //for nested form fields
25
30
  export { getInputFields } from './decorators/form/Input';
26
31