@protonradio/proton-ui 0.6.18-beta.1 → 0.6.18-beta.11

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
@@ -316,8 +316,6 @@ declare interface DialogProps extends AriaDialogProps {
316
316
  children: React.ReactNode;
317
317
  }
318
318
 
319
- export declare const generatePalette: (primaryColor: RGBArray, adjustForLuminance?: boolean) => Palette;
320
-
321
319
  declare function generateThemeCssVariables(palette: Palette): Record<Theme, ThemeVariables>;
322
320
 
323
321
  declare const GRAYSCALE: {
@@ -449,8 +447,6 @@ export declare const ResponsiveSelect: {
449
447
  */
450
448
  declare function ResponsiveSelectMenu<T extends object>({ label, name, isDisabled, disabledKeys, selectedKey, onSelectionChange, onOpen, onClose, items, "data-testid": testId, children, }: SelectProps<T>): JSX_2.Element;
451
449
 
452
- declare type RGBArray = [number, number, number];
453
-
454
450
  export { Row }
455
451
 
456
452
  /**
@@ -658,8 +654,6 @@ declare interface TriggerProps {
658
654
  "aria-label": string;
659
655
  }
660
656
 
661
- export declare const usePalette: (backgroundImage: string | null) => Palette;
662
-
663
657
  /**
664
658
  * Hook for creating a popover trigger. This hook manages the state and events for the popover
665
659
  * and popover trigger. For examples see Popover.stories.tsx.