@indico-data/design-system 2.31.0 → 2.32.1

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/lib/index.css CHANGED
@@ -526,6 +526,14 @@ a:hover, .link:hover {
526
526
  font-size: var(--pf-font-size-h2);
527
527
  }
528
528
 
529
+ .btn--icon-only {
530
+ padding-left: var(--pf-padding-2);
531
+ padding-right: var(--pf-padding-2);
532
+ }
533
+ .btn--icon-only.btn--md {
534
+ height: 32px;
535
+ }
536
+
529
537
  .btn--primary {
530
538
  background: var(--pf-button-primary-color);
531
539
  color: var(--pf-button-primary-text-color);
package/lib/index.d.ts CHANGED
@@ -1065,10 +1065,11 @@ type FloatUIProps = {
1065
1065
  ariaLabel: string;
1066
1066
  floatingOptions?: UseFloatingOptions;
1067
1067
  isOpen?: boolean;
1068
+ isPortal?: boolean;
1068
1069
  setIsOpen?: React.Dispatch<React.SetStateAction<boolean>>;
1069
1070
  };
1070
1071
 
1071
- declare function FloatUI({ children, ariaLabel, isOpen: controlledIsOpen, setIsOpen: controlledSetIsOpen, floatingOptions, }: FloatUIProps): react_jsx_runtime.JSX.Element;
1072
+ declare function FloatUI({ children, ariaLabel, isOpen: controlledIsOpen, setIsOpen: controlledSetIsOpen, isPortal, floatingOptions, }: FloatUIProps): react_jsx_runtime.JSX.Element;
1072
1073
 
1073
1074
  type MenuProps = {
1074
1075
  children: React$1.ReactNode;
package/lib/index.esm.css CHANGED
@@ -526,6 +526,14 @@ a:hover, .link:hover {
526
526
  font-size: var(--pf-font-size-h2);
527
527
  }
528
528
 
529
+ .btn--icon-only {
530
+ padding-left: var(--pf-padding-2);
531
+ padding-right: var(--pf-padding-2);
532
+ }
533
+ .btn--icon-only.btn--md {
534
+ height: 32px;
535
+ }
536
+
529
537
  .btn--primary {
530
538
  background: var(--pf-button-primary-color);
531
539
  color: var(--pf-button-primary-text-color);