@linzjs/windows 5.4.2 → 5.4.3

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.
@@ -1,4 +1,4 @@
1
- import { LuiButton, LuiIcon, LuiTooltip } from '@linzjs/lui';
1
+ import { LuiButton, LuiIcon } from '@linzjs/lui';
2
2
  import { LuiIconName } from '@linzjs/lui/dist/assets/svg-content';
3
3
 
4
4
  export interface PanelHeaderButtonProps {
@@ -16,16 +16,11 @@ export const PanelHeaderButton = ({ 'aria-label': ariaLabel, href, icon, onClick
16
16
  href={href}
17
17
  onClick={onClick}
18
18
  openInNewTab={!!href}
19
+ title={ariaLabel}
19
20
  buttonProps={{
20
21
  onTouchStart: onClick,
21
22
  }}
22
23
  >
23
- {ariaLabel ? (
24
- <LuiTooltip content={ariaLabel} placement={'bottom'}>
25
- <LuiIcon name={icon} alt={ariaLabel} size={'md'} />
26
- </LuiTooltip>
27
- ) : (
28
- <LuiIcon name={icon} alt={ariaLabel} size={'md'} />
29
- )}
24
+ <LuiIcon name={icon} alt={ariaLabel} size={'md'} />
30
25
  </LuiButton>
31
26
  );
package/package.json CHANGED
@@ -13,7 +13,7 @@
13
13
  "popout"
14
14
  ],
15
15
  "main": "./dist/index.ts",
16
- "version": "5.4.2",
16
+ "version": "5.4.3",
17
17
  "peerDependencies": {
18
18
  "@linzjs/lui": ">=21",
19
19
  "lodash-es": ">=4",