@murabei-data-science/pumpwood-ui 1.3.2 → 1.3.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/README.md CHANGED
@@ -8,7 +8,7 @@ The library is split into two entry points:
8
8
  - **`pumpwood-ui-components/components`** — primitives and reusable UI
9
9
  blocks (Button, Table, Select, Dialog, etc.)
10
10
  - **`pumpwood-ui-components/design-system`** — product patterns
11
- (Auth, AutoFormContent, DetailPage, M2MTable, Filters, etc.)
11
+ (Auth, AutoFormContent, DetailPage, Filters, etc.)
12
12
 
13
13
  ## Installation
14
14
 
@@ -69,7 +69,7 @@ function MyComponent() {
69
69
  Patterns under `design-system` may require additional peers depending on
70
70
  what you import:
71
71
 
72
- - `swr` — M2MTable, Filters with FKSelect
72
+ - `swr` — Filters with FKSelect
73
73
  - `react-hook-form` — forms integrated with AutoFormContent consumers
74
74
 
75
75
  ### Customized Prefix
@@ -1195,7 +1195,7 @@ interface IDownloadButtonProps<T extends ExpectedFile> {
1195
1195
  item: T;
1196
1196
  propertyName: keyof T;
1197
1197
  modelClass: string;
1198
- retrieveFile: RetrieveFileFn;
1198
+ retrieveFile?: RetrieveFileFn;
1199
1199
  }
1200
1200
  declare const DownloadButton: <T extends ExpectedFile>({ item, modelClass, propertyName, retrieveFile, }: IDownloadButtonProps<T>) => react_jsx_runtime.JSX.Element;
1201
1201