@appquality/unguess-design-system 4.0.3 → 4.0.5
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 +24 -0
- package/build/index.d.ts +5 -7
- package/build/index.js +9018 -9021
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v4.0.5 (Tue Oct 22 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- rework: Don't use wordwrapper [#432](https://github.com/AppQuality/unguess-design-system/pull/432) ([@d-beezee](https://github.com/d-beezee))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- [@d-beezee](https://github.com/d-beezee)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v4.0.4 (Mon Oct 21 2024)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- feat: Allow disabling autowidth for selects [#431](https://github.com/AppQuality/unguess-design-system/pull/431) ([@d-beezee](https://github.com/d-beezee))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- [@d-beezee](https://github.com/d-beezee)
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v4.0.3 (Mon Oct 21 2024)
|
|
2
26
|
|
|
3
27
|
#### 🐛 Bug Fix
|
package/build/index.d.ts
CHANGED
|
@@ -1436,10 +1436,6 @@ declare const DefaultTranslationWrapper: ({ content, translations, }: {
|
|
|
1436
1436
|
translations: ReactNode;
|
|
1437
1437
|
}) => JSX_2.Element;
|
|
1438
1438
|
|
|
1439
|
-
declare const DefaultWordWrapper: ({ children }: {
|
|
1440
|
-
children: ReactNode;
|
|
1441
|
-
}) => JSX_2.Element;
|
|
1442
|
-
|
|
1443
1439
|
declare const Details: IStyledComponent<"web", {
|
|
1444
1440
|
ref?: LegacyRef<HTMLDivElement> | undefined;
|
|
1445
1441
|
key?: Key | null | undefined;
|
|
@@ -7747,6 +7743,7 @@ declare interface SelectArgs extends Omit<IComboboxProps, "onSelect"> {
|
|
|
7747
7743
|
children?: React.ReactNode;
|
|
7748
7744
|
onSelect?: (value: string) => Promise<void> | void;
|
|
7749
7745
|
isDisabled?: boolean;
|
|
7746
|
+
fullWidthOption?: boolean;
|
|
7750
7747
|
}
|
|
7751
7748
|
|
|
7752
7749
|
declare type SentenceType = {
|
|
@@ -11219,8 +11216,10 @@ export declare const theme: {
|
|
|
11219
11216
|
} | undefined;
|
|
11220
11217
|
borderColor?: string | undefined;
|
|
11221
11218
|
};
|
|
11222
|
-
"dropdowns.combobox
|
|
11223
|
-
|
|
11219
|
+
"dropdowns.combobox": (props: any) => {
|
|
11220
|
+
"[data-garden-id='dropdowns.combobox.floating']": {
|
|
11221
|
+
width?: string | undefined;
|
|
11222
|
+
};
|
|
11224
11223
|
};
|
|
11225
11224
|
"buttons.button": ({ isAccent, isBright, isPrimary, isBasic, isLink, }: ButtonArgs) => {
|
|
11226
11225
|
backgroundColor?: string | undefined;
|
|
@@ -11328,7 +11327,6 @@ export declare const theme: {
|
|
|
11328
11327
|
|
|
11329
11328
|
declare interface ThemeOptions {
|
|
11330
11329
|
activeWrapper: typeof DefaultActiveWrapper;
|
|
11331
|
-
wordWrapper: typeof DefaultWordWrapper;
|
|
11332
11330
|
observationWrapper: typeof DefaultObservationWrapper;
|
|
11333
11331
|
paragraphWrapper: typeof DefaultParagraphWrapper;
|
|
11334
11332
|
speakerWrapper: typeof DefaultSpeakerWrapper;
|