@zextras/carbonio-design-system 3.0.1 → 3.0.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 +8 -0
- package/dist/zapp-ui.bundle.d.ts +2 -2
- package/dist/zapp-ui.bundle.js +5 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [3.0.2](https://github.com/Zextras/carbonio-design-system/compare/v3.0.1...v3.0.2) (2023-10-23)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **ListV2:** fire onListBottom event when browser zoom is different from 100 percent ([f7880be](https://github.com/Zextras/carbonio-design-system/commit/f7880be866cc74afe5ba00d2867ea140ddce776a)), closes [#232](https://github.com/Zextras/carbonio-design-system/issues/232)
|
|
11
|
+
* **MultiButton,types:** omit children from dropdownProps ([271c594](https://github.com/Zextras/carbonio-design-system/commit/271c5940ae6cacc92f0a680754f44dad08d6ded0)), closes [#238](https://github.com/Zextras/carbonio-design-system/issues/238)
|
|
12
|
+
|
|
5
13
|
### [3.0.1](https://github.com/Zextras/carbonio-design-system/compare/v3.0.0...v3.0.1) (2023-09-29)
|
|
6
14
|
|
|
7
15
|
## [3.0.0](https://github.com/Zextras/carbonio-design-system/compare/v2.3.0...v3.0.0) (2023-09-27)
|
package/dist/zapp-ui.bundle.d.ts
CHANGED
|
@@ -1437,7 +1437,7 @@ export declare function generateHighlightSet(fromColorSet: Parameters<typeof gen
|
|
|
1437
1437
|
/** Button size */
|
|
1438
1438
|
size?: "medium" | "large" | "extralarge" | undefined;
|
|
1439
1439
|
/** Dropdown properties */
|
|
1440
|
-
dropdownProps?: DropdownProps | undefined;
|
|
1440
|
+
dropdownProps?: Omit<DropdownProps, "children"> | undefined;
|
|
1441
1441
|
} & Omit<ButtonProps, "disabled" | "icon" | "secondaryAction"> & React_2.RefAttributes<HTMLButtonElement>>;
|
|
1442
1442
|
|
|
1443
1443
|
export declare type MultiButtonProps = {
|
|
@@ -1460,7 +1460,7 @@ export declare function generateHighlightSet(fromColorSet: Parameters<typeof gen
|
|
|
1460
1460
|
/** Button size */
|
|
1461
1461
|
size?: Extract<ButtonProps['size'], 'medium' | 'large' | 'extralarge'>;
|
|
1462
1462
|
/** Dropdown properties */
|
|
1463
|
-
dropdownProps?: DropdownProps
|
|
1463
|
+
dropdownProps?: Omit<DropdownProps, 'children'>;
|
|
1464
1464
|
} & Omit<ButtonProps, 'secondaryAction' | 'icon' | 'disabled'>;
|
|
1465
1465
|
|
|
1466
1466
|
export declare type MultipleSelectionOnChange<T = string> = (value: Array<SelectItem<T>>) => void;
|
package/dist/zapp-ui.bundle.js
CHANGED
|
@@ -22039,7 +22039,11 @@ const BottomElement = _ref2 => {
|
|
|
22039
22039
|
}
|
|
22040
22040
|
}, [inView, onVisible]);
|
|
22041
22041
|
return /*#__PURE__*/React__namespace.default.createElement("div", {
|
|
22042
|
-
ref: ref
|
|
22042
|
+
ref: ref,
|
|
22043
|
+
style: {
|
|
22044
|
+
minHeight: '4px',
|
|
22045
|
+
minWidth: '1px'
|
|
22046
|
+
}
|
|
22043
22047
|
});
|
|
22044
22048
|
};
|
|
22045
22049
|
const ListV2 = /*#__PURE__*/React__namespace.default.forwardRef(function ListV2Fn(_ref3, ref) {
|