@appquality/unguess-design-system 4.0.22 → 4.0.24
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/.github/workflows/storybook.yml +0 -1
- package/CHANGELOG.md +30 -0
- package/build/index.d.ts +6 -6
- package/build/index.js +4791 -4761
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,33 @@
|
|
|
1
|
+
# v4.0.24 (Thu Feb 06 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- new version with fix accordion [#485](https://github.com/AppQuality/unguess-design-system/pull/485) ([@iacopolea](https://github.com/iacopolea) [@marcbon](https://github.com/marcbon))
|
|
6
|
+
- fix: remove typecheck job from Storybook workflow [#487](https://github.com/AppQuality/unguess-design-system/pull/487) ([@iacopolea](https://github.com/iacopolea))
|
|
7
|
+
- fix: move typecheck job in Storybook workflow after build [#486](https://github.com/AppQuality/unguess-design-system/pull/486) ([@iacopolea](https://github.com/iacopolea))
|
|
8
|
+
- Un 724 [#480](https://github.com/AppQuality/unguess-design-system/pull/480) ([@iacopolea](https://github.com/iacopolea))
|
|
9
|
+
- feat: add typecheck job to Storybook workflow for improved type safety [#477](https://github.com/AppQuality/unguess-design-system/pull/477) ([@iacopolea](https://github.com/iacopolea))
|
|
10
|
+
|
|
11
|
+
#### Authors: 2
|
|
12
|
+
|
|
13
|
+
- Iacopo Leardini ([@iacopolea](https://github.com/iacopolea))
|
|
14
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
# v4.0.23 (Tue Jan 21 2025)
|
|
19
|
+
|
|
20
|
+
#### 🐛 Bug Fix
|
|
21
|
+
|
|
22
|
+
- new version [#476](https://github.com/AppQuality/unguess-design-system/pull/476) ([@iacopolea](https://github.com/iacopolea))
|
|
23
|
+
- fix: update CheckboxCardArgs to use ICheckboxProps for improved type safety [#475](https://github.com/AppQuality/unguess-design-system/pull/475) ([@iacopolea](https://github.com/iacopolea))
|
|
24
|
+
|
|
25
|
+
#### Authors: 1
|
|
26
|
+
|
|
27
|
+
- Iacopo Leardini ([@iacopolea](https://github.com/iacopolea))
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
1
31
|
# v4.0.22 (Tue Jan 21 2025)
|
|
2
32
|
|
|
3
33
|
#### 🐛 Bug Fix
|
package/build/index.d.ts
CHANGED
|
@@ -13,7 +13,6 @@ import { ReactComponent as CampaignFunctionalIcon } from '../../assets/icons/cam
|
|
|
13
13
|
import { Cell } from '@zendeskgarden/react-tables';
|
|
14
14
|
import { ChangeEventHandler } from 'react';
|
|
15
15
|
import { Checkbox as Checkbox_2 } from '@zendeskgarden/react-forms';
|
|
16
|
-
import { CheckboxArgs } from '../_types';
|
|
17
16
|
import { ClipboardEventHandler } from 'react';
|
|
18
17
|
import { ComponentProps } from 'react';
|
|
19
18
|
import { CompositionEventHandler } from 'react';
|
|
@@ -181,8 +180,8 @@ export declare const Accordion: ForwardRefExoticComponent<AccordionArgs_2 & RefA
|
|
|
181
180
|
|
|
182
181
|
export declare interface AccordionArgs extends IAccordionProps {
|
|
183
182
|
hasCheckbox?: boolean;
|
|
183
|
+
responsiveBreakpoint?: number;
|
|
184
184
|
hasBorder?: boolean;
|
|
185
|
-
hasShadow?: boolean;
|
|
186
185
|
type?: "default" | "primary" | "danger" | "warning" | "success" | "info";
|
|
187
186
|
}
|
|
188
187
|
|
|
@@ -213,6 +212,7 @@ declare interface AccordionArgs_2 extends IAccordionProps {
|
|
|
213
212
|
|
|
214
213
|
export declare interface AccordionContext {
|
|
215
214
|
isCompact?: boolean;
|
|
215
|
+
responsiveBreakpoint?: number;
|
|
216
216
|
hasCheckbox?: boolean;
|
|
217
217
|
hasBorder?: boolean;
|
|
218
218
|
type?: "default" | "primary" | "danger" | "warning" | "success" | "info";
|
|
@@ -952,7 +952,7 @@ export declare const Checkbox: (props: ICheckboxProps) => JSX_2.Element;
|
|
|
952
952
|
|
|
953
953
|
export declare const CheckboxCard: (props: CheckboxCardArgs) => JSX_2.Element;
|
|
954
954
|
|
|
955
|
-
declare interface CheckboxCardArgs extends
|
|
955
|
+
declare interface CheckboxCardArgs extends ICheckboxProps {
|
|
956
956
|
card?: SpecialCardProps;
|
|
957
957
|
label: string;
|
|
958
958
|
icon: React.ReactNode;
|
|
@@ -5104,7 +5104,7 @@ export declare const ModalFullScreen: {
|
|
|
5104
5104
|
onTransitionEndCapture?: TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
5105
5105
|
key?: Key | null | undefined;
|
|
5106
5106
|
disabled?: boolean | undefined;
|
|
5107
|
-
type?: "button" | "
|
|
5107
|
+
type?: "button" | "submit" | "reset" | undefined;
|
|
5108
5108
|
name?: string | undefined;
|
|
5109
5109
|
formAction?: string | undefined;
|
|
5110
5110
|
formEncType?: string | undefined;
|
|
@@ -10351,7 +10351,7 @@ export declare const Tag: {
|
|
|
10351
10351
|
onTransitionEndCapture?: TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
10352
10352
|
key?: Key | null | undefined;
|
|
10353
10353
|
disabled?: boolean | undefined;
|
|
10354
|
-
type?: "button" | "
|
|
10354
|
+
type?: "button" | "submit" | "reset" | undefined;
|
|
10355
10355
|
name?: string | undefined;
|
|
10356
10356
|
formAction?: string | undefined;
|
|
10357
10357
|
formEncType?: string | undefined;
|
|
@@ -11892,7 +11892,7 @@ onTransitionEnd?: TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
|
11892
11892
|
onTransitionEndCapture?: TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
11893
11893
|
key?: Key | null | undefined;
|
|
11894
11894
|
disabled?: boolean | undefined;
|
|
11895
|
-
type?: "button" | "
|
|
11895
|
+
type?: "button" | "submit" | "reset" | undefined;
|
|
11896
11896
|
isPrimary?: boolean | undefined;
|
|
11897
11897
|
isSelected?: boolean | undefined;
|
|
11898
11898
|
isBasic?: boolean | undefined;
|