@appquality/unguess-design-system 4.0.14 → 4.0.15
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 +17 -0
- package/build/index.d.ts +15 -5
- package/build/index.js +956 -925
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
# v4.0.15 (Wed Dec 11 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- new version [#458](https://github.com/AppQuality/unguess-design-system/pull/458) ([@d-beezee](https://github.com/d-beezee) [@cannarocks](https://github.com/cannarocks) [@iacopolea](https://github.com/iacopolea))
|
|
6
|
+
- feat: add cursor pagination styles for disabled state [#457](https://github.com/AppQuality/unguess-design-system/pull/457) ([@iacopolea](https://github.com/iacopolea))
|
|
7
|
+
- Update stories [#456](https://github.com/AppQuality/unguess-design-system/pull/456) ([@d-beezee](https://github.com/d-beezee))
|
|
8
|
+
- Update stories [#455](https://github.com/AppQuality/unguess-design-system/pull/455) ([@d-beezee](https://github.com/d-beezee))
|
|
9
|
+
|
|
10
|
+
#### Authors: 3
|
|
11
|
+
|
|
12
|
+
- [@d-beezee](https://github.com/d-beezee)
|
|
13
|
+
- Iacopo Leardini ([@iacopolea](https://github.com/iacopolea))
|
|
14
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
1
18
|
# v4.0.14 (Mon Dec 02 2024)
|
|
2
19
|
|
|
3
20
|
#### 🐛 Bug Fix
|
package/build/index.d.ts
CHANGED
|
@@ -2663,8 +2663,8 @@ declare type GetColorFunction = (hue: Hue, shade?: number, theme?: DefaultTheme,
|
|
|
2663
2663
|
|
|
2664
2664
|
export declare const GlobalAlert: ForwardRefExoticComponent<GlobalAlertProps & RefAttributes<HTMLDivElement>>;
|
|
2665
2665
|
|
|
2666
|
-
export declare interface GlobalAlertProps extends Omit<IGlobalAlertProps,
|
|
2667
|
-
type: IGlobalAlertProps[
|
|
2666
|
+
export declare interface GlobalAlertProps extends Omit<IGlobalAlertProps, "type"> {
|
|
2667
|
+
type: IGlobalAlertProps["type"] | "accent" | "primary";
|
|
2668
2668
|
message?: ReactNode;
|
|
2669
2669
|
dismissable?: boolean;
|
|
2670
2670
|
onClose?: () => void;
|
|
@@ -5336,8 +5336,8 @@ export declare const ModalFullScreen: {
|
|
|
5336
5336
|
onTransitionEnd?: TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
5337
5337
|
onTransitionEndCapture?: TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
5338
5338
|
key?: Key | null | undefined;
|
|
5339
|
-
type?: "button" | "submit" | "reset" | undefined;
|
|
5340
5339
|
disabled?: boolean | undefined;
|
|
5340
|
+
type?: "button" | "submit" | "reset" | undefined;
|
|
5341
5341
|
name?: string | undefined;
|
|
5342
5342
|
formAction?: string | undefined;
|
|
5343
5343
|
formEncType?: string | undefined;
|
|
@@ -10571,8 +10571,8 @@ export declare const Tag: {
|
|
|
10571
10571
|
onTransitionEnd?: TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
10572
10572
|
onTransitionEndCapture?: TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
10573
10573
|
key?: Key | null | undefined;
|
|
10574
|
-
type?: "button" | "submit" | "reset" | undefined;
|
|
10575
10574
|
disabled?: boolean | undefined;
|
|
10575
|
+
type?: "button" | "submit" | "reset" | undefined;
|
|
10576
10576
|
name?: string | undefined;
|
|
10577
10577
|
formAction?: string | undefined;
|
|
10578
10578
|
formEncType?: string | undefined;
|
|
@@ -11123,6 +11123,16 @@ export declare const theme: {
|
|
|
11123
11123
|
xxxl: string;
|
|
11124
11124
|
};
|
|
11125
11125
|
components: {
|
|
11126
|
+
"cursor_pagination.cursor": ({ disabled }: {
|
|
11127
|
+
disabled: boolean;
|
|
11128
|
+
}) => {
|
|
11129
|
+
color?: string | undefined;
|
|
11130
|
+
"&:hover, &:active"?: {
|
|
11131
|
+
color: string;
|
|
11132
|
+
backgroundColor: string;
|
|
11133
|
+
cursor: string;
|
|
11134
|
+
} | undefined;
|
|
11135
|
+
};
|
|
11126
11136
|
"text.primary": () => {
|
|
11127
11137
|
color: string | undefined;
|
|
11128
11138
|
};
|
|
@@ -12098,10 +12108,10 @@ onAnimationIterationCapture?: AnimationEventHandler<HTMLButtonElement> | undefin
|
|
|
12098
12108
|
onTransitionEnd?: TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
12099
12109
|
onTransitionEndCapture?: TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
12100
12110
|
key?: Key | null | undefined;
|
|
12111
|
+
disabled?: boolean | undefined;
|
|
12101
12112
|
type?: "button" | "submit" | "reset" | undefined;
|
|
12102
12113
|
isPrimary?: boolean | undefined;
|
|
12103
12114
|
isSelected?: boolean | undefined;
|
|
12104
|
-
disabled?: boolean | undefined;
|
|
12105
12115
|
isBasic?: boolean | undefined;
|
|
12106
12116
|
isLink?: boolean | undefined;
|
|
12107
12117
|
name?: string | undefined;
|