@appquality/unguess-design-system 4.0.3 → 4.0.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/CHANGELOG.md +12 -0
- package/build/index.d.ts +5 -2
- package/build/index.js +7177 -7181
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v4.0.4 (Mon Oct 21 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- feat: Allow disabling autowidth for selects [#431](https://github.com/AppQuality/unguess-design-system/pull/431) ([@d-beezee](https://github.com/d-beezee))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- [@d-beezee](https://github.com/d-beezee)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.0.3 (Mon Oct 21 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/build/index.d.ts
CHANGED
|
@@ -7747,6 +7747,7 @@ declare interface SelectArgs extends Omit<IComboboxProps, "onSelect"> {
|
|
|
7747
7747
|
children?: React.ReactNode;
|
|
7748
7748
|
onSelect?: (value: string) => Promise<void> | void;
|
|
7749
7749
|
isDisabled?: boolean;
|
|
7750
|
+
fullWidthOption?: boolean;
|
|
7750
7751
|
}
|
|
7751
7752
|
|
|
7752
7753
|
declare type SentenceType = {
|
|
@@ -11219,8 +11220,10 @@ export declare const theme: {
|
|
|
11219
11220
|
} | undefined;
|
|
11220
11221
|
borderColor?: string | undefined;
|
|
11221
11222
|
};
|
|
11222
|
-
"dropdowns.combobox
|
|
11223
|
-
|
|
11223
|
+
"dropdowns.combobox": (props: any) => {
|
|
11224
|
+
"[data-garden-id='dropdowns.combobox.floating']": {
|
|
11225
|
+
width?: string | undefined;
|
|
11226
|
+
};
|
|
11224
11227
|
};
|
|
11225
11228
|
"buttons.button": ({ isAccent, isBright, isPrimary, isBasic, isLink, }: ButtonArgs) => {
|
|
11226
11229
|
backgroundColor?: string | undefined;
|