@protonradio/proton-ui 0.10.13-beta.2 → 0.10.13-beta.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/dist/index.d.ts CHANGED
@@ -1,14 +1,11 @@
1
1
  import { AriaDialogProps } from 'react-aria';
2
2
  import { AriaPopoverProps } from 'react-aria';
3
3
  import { AriaTableProps } from 'react-aria';
4
- import { CollectionChildren } from '@react-types/shared';
5
4
  import { ColumnProps } from '@react-stately/table';
6
5
  import { default as default_2 } from 'react';
7
6
  import { DOMProps } from '@react-types/shared';
8
7
  import { ForwardRefExoticComponent } from 'react';
9
- import { ItemProps } from 'react-stately';
10
8
  import { JSX as JSX_2 } from 'react/jsx-runtime';
11
- import { JSX as JSX_3 } from 'react';
12
9
  import { OverlayTriggerProps } from 'react-stately';
13
10
  import { OverlayTriggerState } from 'react-stately';
14
11
  import { PressEvent } from 'react-aria';
@@ -335,7 +332,7 @@ declare interface DialogProps extends AriaDialogProps {
335
332
  *
336
333
  * @interface ElevationProps
337
334
  */
338
- export declare const Elevation: ({ children, hasPrimaryGradient, backgroundGradientDirection, "data-testid": dataTestId, }: ElevationProps) => JSX_2.Element;
335
+ export declare const Elevation: ({ children, hasPrimaryGradient, "data-testid": dataTestId, }: ElevationProps) => JSX_2.Element;
339
336
 
340
337
  declare interface ElevationProps {
341
338
  /**
@@ -348,10 +345,6 @@ declare interface ElevationProps {
348
345
  * @default false
349
346
  */
350
347
  hasPrimaryGradient?: boolean;
351
- /**
352
- * The direction of the background gradient.
353
- */
354
- backgroundGradientDirection?: "left" | "right";
355
348
  /**
356
349
  * The data-testid attribute for testing purposes.
357
350
  */
@@ -571,18 +564,6 @@ declare interface ResponsiveMenuProps {
571
564
 
572
565
  export declare function ResponsiveMenuTrigger({ renderTrigger, menuId, size, actions, disabled, onClose, testId: triggerTestId, menuTestId, }: ResponsiveMenuProps): JSX_2.Element;
573
566
 
574
- export declare const ResponsiveSelect: {
575
- Menu: typeof ResponsiveSelectMenu;
576
- Option: <T>(props: ItemProps<T>) => JSX_3.Element;
577
- };
578
-
579
- /**
580
- * A dropdown select menu that opens a Popover, or an ActionMenu on mobile.
581
- * Supports controlled and uncontrolled modes.
582
- * @interface SelectProps
583
- */
584
- declare function ResponsiveSelectMenu({ label, name, isDisabled, disabledKeys, selectedKey, onSelectionChange, onOpen, onClose, items, "data-testid": testId, children, }: SelectProps<ActionMenuAction>): JSX_2.Element;
585
-
586
567
  export declare const Row: <T = object>(props: ProtonRowProps<T>) => JSX.Element;
587
568
 
588
569
  /**
@@ -632,19 +613,23 @@ export { Section }
632
613
 
633
614
  export declare const Select: {
634
615
  Menu: typeof SelectMenu;
635
- Option: <T>(props: ItemProps<T>) => JSX_3.Element;
636
616
  };
637
617
 
618
+ declare interface SelectItem {
619
+ key: string;
620
+ label: string;
621
+ to?: string;
622
+ onAction?: (key: string) => void;
623
+ }
624
+
638
625
  /**
639
- * A dropdown select menu that opens a popover. Supports controlled and uncontrolled modes.
640
- * @interface SelectProps
626
+ * A dropdown select menu that opens a popover on desktop and an action menu on mobile.
627
+ * Supports controlled and uncontrolled modes.
641
628
  */
642
- declare function SelectMenu<T extends object>({ label, name, isDisabled, disabledKeys, selectedKey, onSelectionChange, onOpen, onClose, items, "data-testid": testId, children, }: SelectProps<T>): JSX_2.Element;
629
+ declare function SelectMenu({ label, name, isDisabled, disabledKeys, selectedKey, onSelectionChange, onOpen, onClose, items, "data-testid": testId, }: SelectProps): JSX_2.Element;
643
630
 
644
- declare interface SelectProps<T> {
645
- /** The name of the select field
646
- * @external https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#name
647
- */
631
+ declare interface SelectProps {
632
+ /** The name of the select field */
648
633
  name: string;
649
634
  /** Label to display above the select
650
635
  * @external https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label#text
@@ -655,23 +640,21 @@ declare interface SelectProps<T> {
655
640
  /** Array of keys that should be disabled
656
641
  * @example ["Thing 1", "Thing 2"]
657
642
  */
658
- disabledKeys?: (string | number)[];
643
+ disabledKeys?: string[];
659
644
  /** Currently selected key */
660
- selectedKey?: string | number;
645
+ selectedKey?: string;
661
646
  /** Callback fired when selection changes */
662
- onSelectionChange?: (key: string | number) => void;
647
+ onSelectionChange?: (key: string) => void;
663
648
  /** Callback fired when the menu opens */
664
649
  onOpen?: () => void;
665
650
  /** Callback fired when the menu closes */
666
651
  onClose?: () => void;
667
652
  /** Array of items to display
668
- * @example [{ name: "thing 1", label: "Thing 1" }, { name: "thing 2", label: "Thing 2" }]
653
+ * @example [{ key: "thing-1", label: "Thing 1" }, { key: "thing-2", label: "Thing 2" }]
669
654
  */
670
- items?: T[];
655
+ items: SelectItem[];
671
656
  /** Test ID for the select */
672
657
  "data-testid"?: string;
673
- /** Children elements or render function */
674
- children: CollectionChildren<T>;
675
658
  }
676
659
 
677
660
  export declare function Switch(props: SwitchProps): JSX_2.Element;