@appquality/unguess-design-system 4.1.0 → 4.1.2
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/CHANGELOG.md +14 -0
- package/build/index.d.ts +13 -0
- package/build/index.js +14729 -13893
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# v4.1.1 (Mon Jun 15 2026)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- release 20260615 [#598](https://github.com/AppQuality/unguess-design-system/pull/598) ([@iacopolea](https://github.com/iacopolea) [@marcbon](https://github.com/marcbon))
|
|
6
|
+
- feat: update version to 4.1.1-canary and add File component to forms [#597](https://github.com/AppQuality/unguess-design-system/pull/597) ([@iacopolea](https://github.com/iacopolea))
|
|
7
|
+
|
|
8
|
+
#### Authors: 2
|
|
9
|
+
|
|
10
|
+
- Iacopo Leardini ([@iacopolea](https://github.com/iacopolea))
|
|
11
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
1
15
|
# v4.1.0 (Wed May 13 2026)
|
|
2
16
|
|
|
3
17
|
#### 🚀 Enhancement
|
package/build/index.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ import { Extension } from '@tiptap/react';
|
|
|
29
29
|
import { Extension as Extension_2 } from '@tiptap/core';
|
|
30
30
|
import { FastOmit } from 'styled-components';
|
|
31
31
|
import { Fieldset } from '@zendeskgarden/react-forms';
|
|
32
|
+
import { FileList as FileList_3 } from '@zendeskgarden/react-forms';
|
|
32
33
|
import { First } from '@zendeskgarden/react-pagination/dist/typings/elements/CursorPagination/components/First';
|
|
33
34
|
import { Footer } from '@zendeskgarden/react-modals';
|
|
34
35
|
import { Hint as FormHint } from '@zendeskgarden/react-forms';
|
|
@@ -61,6 +62,8 @@ import { IDraggableProps } from '@zendeskgarden/react-draggable';
|
|
|
61
62
|
import { IDrawerHeaderProps } from '@zendeskgarden/react-modals/dist/typings/types';
|
|
62
63
|
import { IDrawerProps } from '@zendeskgarden/react-modals';
|
|
63
64
|
import { IEllipsisProps } from '@zendeskgarden/react-typography';
|
|
65
|
+
import { IFileProps } from '@zendeskgarden/react-forms';
|
|
66
|
+
import { IFileUploadProps } from '@zendeskgarden/react-forms';
|
|
64
67
|
import { IGlobalAlertProps } from '@zendeskgarden/react-notifications';
|
|
65
68
|
import { IGridProps } from '@zendeskgarden/react-grid';
|
|
66
69
|
import { IHeaderCellProps } from '@zendeskgarden/react-tables';
|
|
@@ -1165,6 +1168,16 @@ declare interface FieldArgs extends React.ComponentProps<React.ForwardRefExoticC
|
|
|
1165
1168
|
|
|
1166
1169
|
export { Fieldset }
|
|
1167
1170
|
|
|
1171
|
+
declare const File_2: (props: IFileProps) => JSX_2.Element;
|
|
1172
|
+
export { File_2 as File }
|
|
1173
|
+
|
|
1174
|
+
declare const FileList_2: (props: FileListProps) => JSX_2.Element;
|
|
1175
|
+
export { FileList_2 as FileList }
|
|
1176
|
+
|
|
1177
|
+
declare type FileListProps = Omit<ComponentProps<typeof FileList_3>, "ref">;
|
|
1178
|
+
|
|
1179
|
+
export declare const FileUpload: (props: IFileUploadProps) => JSX_2.Element;
|
|
1180
|
+
|
|
1168
1181
|
declare const FLEX_DIRECTION: string[];
|
|
1169
1182
|
|
|
1170
1183
|
declare const Footer_2: IStyledComponentBase<"web", FastOmit<Omit<HTMLAttributes<HTMLDivElement> & RefAttributes<HTMLDivElement>, "ref"> & {
|