@descope/web-components-ui 1.0.176 → 1.0.177

Sign up to get free protection for your applications and to get access to all the features.
@@ -1574,7 +1574,6 @@ const ButtonClass = compose(
1574
1574
  borderWidth: {},
1575
1575
 
1576
1576
  verticalPadding: [{ property: 'padding-top' }, { property: 'padding-bottom' }],
1577
- horizontalPadding: [{ property: 'padding-left' }, { property: 'padding-right' }],
1578
1577
 
1579
1578
  labelTextColor: { property: 'color' },
1580
1579
  labelTextDecoration: { ...label$a, property: 'text-decoration' },
@@ -1599,6 +1598,10 @@ const ButtonClass = compose(
1599
1598
  vaadin-button {
1600
1599
  height: calc(var(${ButtonClass.cssVarList.hostHeight}) - var(${ButtonClass.cssVarList.outlineWidth}) - var(${ButtonClass.cssVarList.outlineOffset}));
1601
1600
  }
1601
+ [square="true"]:not([full-width="true"]) {
1602
+ width: calc(var(${ButtonClass.cssVarList.hostWidth}) - var(${ButtonClass.cssVarList.outlineWidth}) - var(${ButtonClass.cssVarList.outlineOffset}));
1603
+ padding: 0;
1604
+ }
1602
1605
  `,
1603
1606
  excludeAttrsSync: ['tabindex'],
1604
1607
  componentName: componentName$t,
@@ -1651,9 +1654,6 @@ const mode = {
1651
1654
 
1652
1655
  const [helperTheme$3, helperRefs$3, helperVars$3] = createHelperVars({ mode }, componentName$t);
1653
1656
 
1654
- const verticalPaddingRatio = 3;
1655
- const horizontalPaddingRatio = 2;
1656
-
1657
1657
  const button = {
1658
1658
  ...helperTheme$3,
1659
1659
 
@@ -1661,6 +1661,7 @@ const button = {
1661
1661
 
1662
1662
  [compVars$3.cursor]: 'pointer',
1663
1663
  [compVars$3.hostHeight]: '3em',
1664
+ [compVars$3.hostWidth]: 'auto',
1664
1665
 
1665
1666
  [compVars$3.borderRadius]: globalRefs$b.radius.sm,
1666
1667
  [compVars$3.borderWidth]: globalRefs$b.border.xs,
@@ -1669,8 +1670,7 @@ const button = {
1669
1670
 
1670
1671
  [compVars$3.labelSpacing]: '0.25em',
1671
1672
 
1672
- [compVars$3.verticalPadding]: `calc(var(${compVars$3.fontSize}) / ${verticalPaddingRatio})`,
1673
- [compVars$3.horizontalPadding]: `calc(var(${compVars$3.fontSize}) / ${horizontalPaddingRatio})`,
1673
+ [compVars$3.verticalPadding]: '1em',
1674
1674
 
1675
1675
  [compVars$3.outlineWidth]: globals.border.sm,
1676
1676
  [compVars$3.outlineOffset]: '0px', // keep `px` unit for external calc
@@ -1684,6 +1684,12 @@ const button = {
1684
1684
  lg: { [compVars$3.fontSize]: '18px' },
1685
1685
  },
1686
1686
 
1687
+ _square: {
1688
+ [compVars$3.hostHeight]: '3em',
1689
+ [compVars$3.hostWidth]: '3em',
1690
+ [compVars$3.verticalPadding]: '0',
1691
+ },
1692
+
1687
1693
  _fullWidth: {
1688
1694
  [compVars$3.hostWidth]: '100%',
1689
1695
  },