@geowiki/design-system 0.16.9-dev.6 → 0.16.9-dev.7

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
@@ -814,13 +814,44 @@ declare const DesignRadioGroupItem: React$1.ForwardRefExoticComponent<Omit<Radio
814
814
  declare const DesignSelect: React$1.FC<SelectPrimitive.SelectProps>;
815
815
  declare const DesignSelectGroup: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
816
816
  declare const DesignSelectValue: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>>;
817
- declare const DesignSelectTrigger: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
817
+ declare const selectVariants: (props?: ({
818
818
  variant?: "input" | "default" | null | undefined;
819
- } & class_variance_authority_dist_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLButtonElement>>;
820
- declare const DesignSelectContent: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
821
- declare const DesignSelectLabel: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
822
- declare const DesignSelectItem: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
823
- declare const DesignSelectSeparator: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
819
+ } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
820
+ type SelectTriggerProps = React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Trigger> & VariantProps<typeof selectVariants> & {
821
+ ref?: React$1.Ref<React$1.ElementRef<typeof SelectPrimitive.Trigger>>;
822
+ };
823
+ declare const DesignSelectTrigger: {
824
+ ({ className, children, variant, ref, ...props }: SelectTriggerProps): react_jsx_runtime.JSX.Element;
825
+ displayName: string | undefined;
826
+ };
827
+ type SelectContentProps = React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Content> & {
828
+ ref?: React$1.Ref<React$1.ElementRef<typeof SelectPrimitive.Content>>;
829
+ };
830
+ declare const DesignSelectContent: {
831
+ ({ className, children, position, ref, ...props }: SelectContentProps): react_jsx_runtime.JSX.Element;
832
+ displayName: string | undefined;
833
+ };
834
+ type SelectLabelProps = React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Label> & {
835
+ ref?: React$1.Ref<React$1.ElementRef<typeof SelectPrimitive.Label>>;
836
+ };
837
+ declare const DesignSelectLabel: {
838
+ ({ className, ref, ...props }: SelectLabelProps): react_jsx_runtime.JSX.Element;
839
+ displayName: string | undefined;
840
+ };
841
+ type SelectItemProps = React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Item> & {
842
+ ref?: React$1.Ref<React$1.ElementRef<typeof SelectPrimitive.Item>>;
843
+ };
844
+ declare const DesignSelectItem: {
845
+ ({ className, children, ref, ...props }: SelectItemProps): react_jsx_runtime.JSX.Element;
846
+ displayName: string | undefined;
847
+ };
848
+ type SelectSeparatorProps = React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Separator> & {
849
+ ref?: React$1.Ref<React$1.ElementRef<typeof SelectPrimitive.Separator>>;
850
+ };
851
+ declare const DesignSelectSeparator: {
852
+ ({ className, ref, ...props }: SelectSeparatorProps): react_jsx_runtime.JSX.Element;
853
+ displayName: string | undefined;
854
+ };
824
855
 
825
856
  interface Props$a {
826
857
  tag: string;