@nycplanning/streetscape 0.19.2-0 → 0.21.0
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/StreetscapeProvider.d.ts +0 -1
- package/dist/components/Accordion/Accordion.d.ts +4 -4
- package/dist/components/Button/ButtonGroup.d.ts +1 -1
- package/dist/components/Button/IconButton.d.ts +1 -1
- package/dist/components/Checkbox/Checkbox.d.ts +1 -1
- package/dist/components/CloseButton/CloseButton.d.ts +1 -1
- package/dist/components/Combobox/Combobox.d.ts +29 -0
- package/dist/components/Combobox/index.d.ts +2 -0
- package/dist/components/Drawer/Drawer.d.ts +6 -6
- package/dist/components/FormControl/FormControl.d.ts +1 -1
- package/dist/components/FormControl/FormErrorMessage.d.ts +1 -1
- package/dist/components/FormControl/FormLabel.d.ts +1 -1
- package/dist/components/Icon/MapPinIcon.d.ts +2 -0
- package/dist/components/Icon/index.d.ts +1 -0
- package/dist/components/Input/Input.d.ts +1 -1
- package/dist/components/Modal/Modal.d.ts +6 -6
- package/dist/components/NumberInput/Number-Decrement-Stepper.d.ts +1 -1
- package/dist/components/NumberInput/Number-Increment-Stepper.d.ts +1 -1
- package/dist/components/NumberInput/Number-Input-Field.d.ts +1 -1
- package/dist/components/NumberInput/Number-Input-Stepper.d.ts +1 -1
- package/dist/components/NumberInput/Number-Input.d.ts +1 -1
- package/dist/components/Popover/Popover.d.ts +21 -0
- package/dist/components/Popover/index.d.ts +2 -0
- package/dist/components/Skeleton/Skeleton.d.ts +1 -1
- package/dist/components/Slider/Slider.d.ts +16 -0
- package/dist/components/Slider/index.d.ts +2 -0
- package/dist/components/Switch/Switch.d.ts +1 -1
- package/dist/components/Table/Table.d.ts +9 -9
- package/dist/components/Tabs/Tabs.d.ts +5 -5
- package/dist/components/Tag/Tag.d.ts +5 -5
- package/dist/components/Toast/index.d.ts +2 -0
- package/dist/components/index.d.ts +4 -0
- package/dist/index.js +1397 -2326
- package/dist/index.js.map +1 -1
- package/dist/theme/components/alert.d.ts +75 -0
- package/dist/theme/components/card.d.ts +1 -1
- package/dist/theme/components/close-button.d.ts +1 -1
- package/dist/theme/components/combobox.d.ts +113 -0
- package/dist/theme/components/form-control.d.ts +2 -2
- package/dist/theme/components/form-error.d.ts +2 -2
- package/dist/theme/components/index.d.ts +342 -23
- package/dist/theme/components/popover.d.ts +83 -0
- package/dist/theme/components/slider.d.ts +53 -0
- package/dist/theme/components/switch.d.ts +24 -6
- package/dist/theme/components/tabs.d.ts +54 -7
- package/dist/theme/components/tag.d.ts +2 -2
- package/dist/theme/semantic-tokens/colors.d.ts +1 -0
- package/dist/theme/semantic-tokens/index.d.ts +1 -0
- package/dist/theme/tokens/colors.d.ts +1 -0
- package/dist/theme/tokens/font-sizes.d.ts +1 -0
- package/dist/theme/tokens/index.d.ts +3 -0
- package/dist/theme/tokens/radii.d.ts +1 -0
- package/package.json +16 -11
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { AccordionProps as ChakraAccordionProps, AccordionItemProps as ChakraAccordionItemProps, AccordionButtonProps as ChakraAccordionButtonProps, AccordionPanelProps as ChakraAccordionPanelProps, AccordionIcon as ChakraAccordionIcon, IconProps as ChakraIconProps } from '@chakra-ui/react';
|
|
2
|
-
export declare const Accordion: import('@chakra-ui/
|
|
2
|
+
export declare const Accordion: import('@chakra-ui/system').ComponentWithAs<"div", ChakraAccordionProps>;
|
|
3
3
|
export interface AccordionProps extends ChakraAccordionProps {
|
|
4
4
|
}
|
|
5
|
-
export declare const AccordionItem: import('@chakra-ui/
|
|
5
|
+
export declare const AccordionItem: import('@chakra-ui/system').ComponentWithAs<"div", ChakraAccordionItemProps>;
|
|
6
6
|
export interface AccordionItemProps extends ChakraAccordionItemProps {
|
|
7
7
|
}
|
|
8
|
-
export declare const AccordionButton: import('@chakra-ui/
|
|
8
|
+
export declare const AccordionButton: import('@chakra-ui/system').ComponentWithAs<"button", ChakraAccordionButtonProps>;
|
|
9
9
|
export interface AccordionButtonProps extends ChakraAccordionButtonProps {
|
|
10
10
|
}
|
|
11
|
-
export declare const AccordionPanel: import('@chakra-ui/
|
|
11
|
+
export declare const AccordionPanel: import('@chakra-ui/system').ComponentWithAs<"div", ChakraAccordionPanelProps>;
|
|
12
12
|
export interface AccordionPanelProps extends ChakraAccordionPanelProps {
|
|
13
13
|
}
|
|
14
14
|
export declare const AccordionIcon: typeof ChakraAccordionIcon;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ButtonGroupProps as ChakraButtonGroupProps } from '@chakra-ui/react';
|
|
2
|
-
export declare const ButtonGroup: import('@chakra-ui/
|
|
2
|
+
export declare const ButtonGroup: import('@chakra-ui/system').ComponentWithAs<"div", ChakraButtonGroupProps>;
|
|
3
3
|
export interface ButtonGroupProps extends ChakraButtonGroupProps {
|
|
4
4
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { IconButtonProps as ChakraIconButtonProps } from '@chakra-ui/react';
|
|
2
|
-
export declare const IconButton: import('@chakra-ui/
|
|
2
|
+
export declare const IconButton: import('@chakra-ui/system').ComponentWithAs<"button", ChakraIconButtonProps>;
|
|
3
3
|
export interface IconButtonProps extends ChakraIconButtonProps {
|
|
4
4
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { CheckboxProps as ChakraCheckboxProps } from '@chakra-ui/react';
|
|
2
|
-
export declare const Checkbox: import('@chakra-ui/
|
|
2
|
+
export declare const Checkbox: import('@chakra-ui/system').ComponentWithAs<"input", ChakraCheckboxProps>;
|
|
3
3
|
export interface CheckboxProps extends ChakraCheckboxProps {
|
|
4
4
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { CloseButtonProps as ChakraCloseButtonProps } from '@chakra-ui/react';
|
|
2
|
-
export declare const CloseButton: import('@chakra-ui/
|
|
2
|
+
export declare const CloseButton: import('@chakra-ui/system').ComponentWithAs<"button", ChakraCloseButtonProps>;
|
|
3
3
|
export interface CloseButtonProps extends ChakraCloseButtonProps {
|
|
4
4
|
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Combobox as ArkCombobox, useListCollection as arkUseListCollection } from '@ark-ui/react/combobox';
|
|
2
|
+
import { CollectionItem as ArkComboboxCollectionItemProps } from '@ark-ui/react/collection';
|
|
3
|
+
export declare const Combobox: {
|
|
4
|
+
Root: import('@chakra-ui/system').ChakraComponent<ArkCombobox.RootComponent<{}>, {}>;
|
|
5
|
+
Input: import('@chakra-ui/system').ChakraComponent<import('react').ForwardRefExoticComponent<ArkCombobox.InputProps & import('react').RefAttributes<HTMLInputElement>>, {}>;
|
|
6
|
+
Control: import('@chakra-ui/system').ChakraComponent<import('react').ForwardRefExoticComponent<ArkCombobox.ControlProps & import('react').RefAttributes<HTMLDivElement>>, {}>;
|
|
7
|
+
ClearTrigger: import('@chakra-ui/system').ChakraComponent<import('react').ForwardRefExoticComponent<ArkCombobox.ClearTriggerProps & import('react').RefAttributes<HTMLButtonElement>>, {}>;
|
|
8
|
+
Content: import('@chakra-ui/system').ChakraComponent<import('react').ForwardRefExoticComponent<ArkCombobox.ContentProps & import('react').RefAttributes<HTMLDivElement>>, {}>;
|
|
9
|
+
Item: import('@chakra-ui/system').ChakraComponent<import('react').ForwardRefExoticComponent<ArkCombobox.ItemProps & import('react').RefAttributes<HTMLDivElement>>, {}>;
|
|
10
|
+
ItemText: import('@chakra-ui/system').ChakraComponent<import('react').ForwardRefExoticComponent<ArkCombobox.ItemTextProps & import('react').RefAttributes<HTMLDivElement>>, {}>;
|
|
11
|
+
Context: <T extends unknown>(props: ArkCombobox.ContextProps<T>) => import('react').ReactNode;
|
|
12
|
+
Empty: import('react').ForwardRefExoticComponent<ArkCombobox.EmptyProps & import('react').RefAttributes<HTMLDivElement>>;
|
|
13
|
+
ItemContext: (props: ArkCombobox.ItemContextProps) => import('react').ReactNode;
|
|
14
|
+
ItemGroup: import('react').ForwardRefExoticComponent<ArkCombobox.ItemGroupProps & import('react').RefAttributes<HTMLDivElement>>;
|
|
15
|
+
ItemGroupLabel: import('react').ForwardRefExoticComponent<ArkCombobox.ItemGroupLabelProps & import('react').RefAttributes<HTMLDivElement>>;
|
|
16
|
+
ItemIndicator: import('react').ForwardRefExoticComponent<ArkCombobox.ItemIndicatorProps & import('react').RefAttributes<HTMLDivElement>>;
|
|
17
|
+
Label: import('react').ForwardRefExoticComponent<ArkCombobox.LabelProps & import('react').RefAttributes<HTMLLabelElement>>;
|
|
18
|
+
List: import('react').ForwardRefExoticComponent<ArkCombobox.ListProps & import('react').RefAttributes<HTMLDivElement>>;
|
|
19
|
+
Positioner: import('react').ForwardRefExoticComponent<ArkCombobox.PositionerProps & import('react').RefAttributes<HTMLDivElement>>;
|
|
20
|
+
RootProvider: ArkCombobox.RootProviderComponent<{}>;
|
|
21
|
+
Trigger: import('react').ForwardRefExoticComponent<ArkCombobox.TriggerProps & import('react').RefAttributes<HTMLButtonElement>>;
|
|
22
|
+
};
|
|
23
|
+
export interface ComboboxCollectionItemProps extends ArkComboboxCollectionItemProps {
|
|
24
|
+
}
|
|
25
|
+
export type ComboboxListCollectionProps = {
|
|
26
|
+
label: string;
|
|
27
|
+
value: string;
|
|
28
|
+
};
|
|
29
|
+
export declare const useListCollection: typeof arkUseListCollection;
|
|
@@ -2,11 +2,11 @@ import { Drawer as ChakraDrawer, DrawerProps as ChakaDrawerProps, DrawerContentP
|
|
|
2
2
|
export declare const Drawer: typeof ChakraDrawer;
|
|
3
3
|
export interface DrawerProps extends ChakaDrawerProps {
|
|
4
4
|
}
|
|
5
|
-
export declare const DrawerBody: import('@chakra-ui/
|
|
6
|
-
export declare const DrawerFooter: import('@chakra-ui/
|
|
7
|
-
export declare const DrawerHeader: import('@chakra-ui/
|
|
8
|
-
export declare const DrawerOverlay: import('@chakra-ui/
|
|
9
|
-
export declare const DrawerContent: import('@chakra-ui/
|
|
5
|
+
export declare const DrawerBody: import('@chakra-ui/system').ComponentWithAs<"div", import('@chakra-ui/modal').ModalBodyProps>;
|
|
6
|
+
export declare const DrawerFooter: import('@chakra-ui/system').ComponentWithAs<"footer", import('@chakra-ui/modal').ModalFooterProps>;
|
|
7
|
+
export declare const DrawerHeader: import('@chakra-ui/system').ComponentWithAs<"header", import('@chakra-ui/modal').ModalHeaderProps>;
|
|
8
|
+
export declare const DrawerOverlay: import('@chakra-ui/system').ComponentWithAs<"div", import('@chakra-ui/modal').ModalOverlayProps>;
|
|
9
|
+
export declare const DrawerContent: import('@chakra-ui/system').ComponentWithAs<"section", ChakraDrawerContentProps>;
|
|
10
10
|
export interface DrawerContentProps extends ChakraDrawerContentProps {
|
|
11
11
|
}
|
|
12
|
-
export declare const DrawerCloseButton: import('@chakra-ui/
|
|
12
|
+
export declare const DrawerCloseButton: import('@chakra-ui/system').ComponentWithAs<"button", import('@chakra-ui/close-button').CloseButtonProps>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { FormControlProps as ChakraFormControlProps } from '@chakra-ui/react';
|
|
2
|
-
export declare const FormControl: import('@chakra-ui/
|
|
2
|
+
export declare const FormControl: import('@chakra-ui/system').ComponentWithAs<"div", ChakraFormControlProps>;
|
|
3
3
|
export interface FormControlProps extends ChakraFormControlProps {
|
|
4
4
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { FormErrorMessageProps as ChakraFormErrorMessageProps } from '@chakra-ui/react';
|
|
2
|
-
export declare const FormErrorMessage: import('@chakra-ui/
|
|
2
|
+
export declare const FormErrorMessage: import('@chakra-ui/system').ComponentWithAs<"div", ChakraFormErrorMessageProps>;
|
|
3
3
|
export interface FormErrorMessageProps extends ChakraFormErrorMessageProps {
|
|
4
4
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { FormLabelProps as ChakraFormLabelProps } from '@chakra-ui/react';
|
|
2
|
-
export declare const FormLabel: import('@chakra-ui/
|
|
2
|
+
export declare const FormLabel: import('@chakra-ui/system').ComponentWithAs<"label", ChakraFormLabelProps>;
|
|
3
3
|
export interface FormLabelProps extends ChakraFormLabelProps {
|
|
4
4
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { InputProps as ChakraInputProps } from '@chakra-ui/react';
|
|
2
|
-
export declare const Input: import('@chakra-ui/
|
|
2
|
+
export declare const Input: import('@chakra-ui/system').ComponentWithAs<"input", ChakraInputProps>;
|
|
3
3
|
export interface InputProps extends ChakraInputProps {
|
|
4
4
|
}
|
|
@@ -2,21 +2,21 @@ import { ModalProps as ChakraModalProps, ModalBodyProps as ChakraModalBodyProps,
|
|
|
2
2
|
export declare const Modal: import('react').FC<ChakraModalProps>;
|
|
3
3
|
export interface ModalProps extends ChakraModalProps {
|
|
4
4
|
}
|
|
5
|
-
export declare const ModalBody: import('@chakra-ui/
|
|
5
|
+
export declare const ModalBody: import('@chakra-ui/system').ComponentWithAs<"div", ChakraModalBodyProps>;
|
|
6
6
|
export interface ModalBodyProps extends ChakraModalBodyProps {
|
|
7
7
|
}
|
|
8
|
-
export declare const ModalFooter: import('@chakra-ui/
|
|
8
|
+
export declare const ModalFooter: import('@chakra-ui/system').ComponentWithAs<"footer", ChakraModalFooterProps>;
|
|
9
9
|
export interface ModalFooterProps extends ChakraModalFooterProps {
|
|
10
10
|
}
|
|
11
|
-
export declare const ModalHeader: import('@chakra-ui/
|
|
11
|
+
export declare const ModalHeader: import('@chakra-ui/system').ComponentWithAs<"header", ChakraModalHeaderProps>;
|
|
12
12
|
export interface ModalHeaderProps extends ChakraModalHeaderProps {
|
|
13
13
|
}
|
|
14
|
-
export declare const ModalOverlay: import('@chakra-ui/
|
|
14
|
+
export declare const ModalOverlay: import('@chakra-ui/system').ComponentWithAs<"div", ChakraModalOverlayProps>;
|
|
15
15
|
export interface ModalOverlayProps extends ChakraModalOverlayProps {
|
|
16
16
|
}
|
|
17
|
-
export declare const ModalContent: import('@chakra-ui/
|
|
17
|
+
export declare const ModalContent: import('@chakra-ui/system').ComponentWithAs<"section", ChakraModalContentProps>;
|
|
18
18
|
export interface ModalContentProps extends ChakraModalContentProps {
|
|
19
19
|
}
|
|
20
|
-
export declare const ModalCloseButton: import('@chakra-ui/
|
|
20
|
+
export declare const ModalCloseButton: import('@chakra-ui/system').ComponentWithAs<"button", import('@chakra-ui/close-button').CloseButtonProps>;
|
|
21
21
|
export interface ModalCloseButtonProps extends ChakraModalCloseButtonProps {
|
|
22
22
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { NumberDecrementStepperProps as ChakraNumberDecrementStepperProps } from '@chakra-ui/react';
|
|
2
|
-
export declare const NumberDecrementStepper: import('@chakra-ui/
|
|
2
|
+
export declare const NumberDecrementStepper: import('@chakra-ui/system').ComponentWithAs<"div", ChakraNumberDecrementStepperProps>;
|
|
3
3
|
export interface NumberDecrementStepperProps extends ChakraNumberDecrementStepperProps {
|
|
4
4
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { NumberIncrementStepperProps as ChakraNumberIncrementStepperProps } from '@chakra-ui/react';
|
|
2
|
-
export declare const NumberIncrementStepper: import('@chakra-ui/
|
|
2
|
+
export declare const NumberIncrementStepper: import('@chakra-ui/system').ComponentWithAs<"div", ChakraNumberIncrementStepperProps>;
|
|
3
3
|
export interface NumberIncrementStepperProps extends ChakraNumberIncrementStepperProps {
|
|
4
4
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { NumberInputFieldProps as ChakraNumberInputFieldProps } from '@chakra-ui/react';
|
|
2
|
-
export declare const NumberInputField: import('@chakra-ui/
|
|
2
|
+
export declare const NumberInputField: import('@chakra-ui/system').ComponentWithAs<"input", ChakraNumberInputFieldProps>;
|
|
3
3
|
export interface NumberInputFieldProps extends ChakraNumberInputFieldProps {
|
|
4
4
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { NumberInputStepperProps as ChakraNumberInputStepperProps } from '@chakra-ui/react';
|
|
2
|
-
export declare const NumberInputStepper: import('@chakra-ui/
|
|
2
|
+
export declare const NumberInputStepper: import('@chakra-ui/system').ComponentWithAs<"div", ChakraNumberInputStepperProps>;
|
|
3
3
|
export interface NumberInputStepperProps extends ChakraNumberInputStepperProps {
|
|
4
4
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { NumberInputProps as ChakraNumberInputProps } from '@chakra-ui/react';
|
|
2
|
-
export declare const NumberInput: import('@chakra-ui/
|
|
2
|
+
export declare const NumberInput: import('@chakra-ui/system').ComponentWithAs<"div", ChakraNumberInputProps>;
|
|
3
3
|
export interface NumberInputProps extends ChakraNumberInputProps {
|
|
4
4
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Popover as ChakraPopover, PopoverProps as ChakaPopoverProps, PopoverTrigger as ChakraPopoverTrigger, PopoverContentProps as ChakraPopoverContentProps, PopoverHeaderProps as ChakraPopoverHeaderProps, PopoverBodyProps as ChakraPopoverBodyProps, PopoverFooter as ChakraPopoverFooter, PopoverFooterProps as ChakraPopoverFooterProps, PopoverCloseButtonProps as ChakraPopoverCloseButtonProps, PopoverAnchor as ChakraPopoverAnchor } from '@chakra-ui/react';
|
|
2
|
+
export declare const Popover: typeof ChakraPopover;
|
|
3
|
+
export interface PopoverProps extends ChakaPopoverProps {
|
|
4
|
+
}
|
|
5
|
+
export declare const PopoverTrigger: typeof ChakraPopoverTrigger;
|
|
6
|
+
export declare const PopoverContent: import('@chakra-ui/system').ComponentWithAs<"section", ChakraPopoverContentProps>;
|
|
7
|
+
export interface PopoverContentProps extends ChakraPopoverContentProps {
|
|
8
|
+
}
|
|
9
|
+
export declare const PopoverHeader: import('@chakra-ui/system').ComponentWithAs<"header", ChakraPopoverHeaderProps>;
|
|
10
|
+
export interface PopoverHeaderProps extends ChakraPopoverHeaderProps {
|
|
11
|
+
}
|
|
12
|
+
export declare const PopoverBody: import('@chakra-ui/system').ComponentWithAs<"div", ChakraPopoverBodyProps>;
|
|
13
|
+
export interface PopoverBodyProps extends ChakraPopoverBodyProps {
|
|
14
|
+
}
|
|
15
|
+
export declare const PopoverFooter: typeof ChakraPopoverFooter;
|
|
16
|
+
export interface PopoverFooterProps extends ChakraPopoverFooterProps {
|
|
17
|
+
}
|
|
18
|
+
export declare const PopoverCloseButton: import('@chakra-ui/system').ComponentWithAs<"button", import('@chakra-ui/close-button').CloseButtonProps>;
|
|
19
|
+
export interface PopoverCloseButtonProps extends ChakraPopoverCloseButtonProps {
|
|
20
|
+
}
|
|
21
|
+
export declare const PopoverAnchor: typeof ChakraPopoverAnchor;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export { Popover, PopoverTrigger, PopoverContent, PopoverHeader, PopoverBody, PopoverFooter, PopoverCloseButton, PopoverAnchor, } from './Popover';
|
|
2
|
+
export type { PopoverProps, PopoverContentProps, PopoverHeaderProps, PopoverBodyProps, PopoverFooterProps, PopoverCloseButtonProps, } from './Popover';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SkeletonProps as ChakraSkeletonProps, SkeletonTextProps as ChakraSkeletonTextProps } from '@chakra-ui/react';
|
|
2
|
-
export declare const Skeleton: import('@chakra-ui/
|
|
2
|
+
export declare const Skeleton: import('@chakra-ui/system').ComponentWithAs<"div", ChakraSkeletonProps>;
|
|
3
3
|
export interface SkeletonProps extends ChakraSkeletonProps {
|
|
4
4
|
}
|
|
5
5
|
export declare const SkeletonCircle: import('react').FC<ChakraSkeletonProps>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { SliderProps as ChakraSliderProps, SliderTrackProps as ChakraSliderTrackProps, BoxProps as ChakraSliderFilledTrackProps, SliderThumbProps as ChakraSliderThumbProps, SliderMarkProps as ChakraSliderMarkProps } from '@chakra-ui/react';
|
|
2
|
+
export declare const Slider: import('@chakra-ui/system').ComponentWithAs<"div", ChakraSliderProps>;
|
|
3
|
+
export interface SliderProps extends ChakraSliderProps {
|
|
4
|
+
}
|
|
5
|
+
export declare const SliderTrack: import('@chakra-ui/system').ComponentWithAs<"div", ChakraSliderTrackProps>;
|
|
6
|
+
export interface SliderTrackProps extends ChakraSliderTrackProps {
|
|
7
|
+
}
|
|
8
|
+
export declare const SliderFilledTrack: import('@chakra-ui/system').ComponentWithAs<"div", import('@chakra-ui/slider').SliderInnerTrackProps>;
|
|
9
|
+
export interface SliderFilledTrackProps extends ChakraSliderFilledTrackProps {
|
|
10
|
+
}
|
|
11
|
+
export declare const SliderThumb: import('@chakra-ui/system').ComponentWithAs<"div", ChakraSliderThumbProps>;
|
|
12
|
+
export interface SliderThumbProps extends ChakraSliderThumbProps {
|
|
13
|
+
}
|
|
14
|
+
export declare const SliderMark: import('@chakra-ui/system').ComponentWithAs<"div", ChakraSliderMarkProps>;
|
|
15
|
+
export interface SliderMarkProps extends ChakraSliderMarkProps {
|
|
16
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { SwitchProps as ChakraSwitchProps } from '@chakra-ui/react';
|
|
2
|
-
export declare const Switch: import('@chakra-ui/
|
|
2
|
+
export declare const Switch: import('@chakra-ui/system').ComponentWithAs<"input", ChakraSwitchProps>;
|
|
3
3
|
export interface SwitchProps extends ChakraSwitchProps {
|
|
4
4
|
}
|
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
import { TableProps as ChakraTableProps, TableHeadProps as ChakraTableHeadProps, TableBodyProps as ChakraTableBodyProps, TableFooterProps as ChakraTableFooterProps, TableRowProps as ChakraTableRowProps, TableColumnHeaderProps as ChakraTableColumnHeaderProps, TableCellProps as ChakraTableCellProps, TableCaptionProps as ChakraTableCaptionProps, TableContainerProps as ChakraTableContainerProps } from '@chakra-ui/react';
|
|
2
|
-
export declare const Table: import('@chakra-ui/
|
|
2
|
+
export declare const Table: import('@chakra-ui/system').ComponentWithAs<"table", ChakraTableProps>;
|
|
3
3
|
export interface TableProps extends ChakraTableProps {
|
|
4
4
|
}
|
|
5
|
-
export declare const Thead: import('@chakra-ui/
|
|
5
|
+
export declare const Thead: import('@chakra-ui/system').ComponentWithAs<"thead", ChakraTableHeadProps>;
|
|
6
6
|
export interface TableHeadProps extends ChakraTableHeadProps {
|
|
7
7
|
}
|
|
8
|
-
export declare const Tbody: import('@chakra-ui/
|
|
8
|
+
export declare const Tbody: import('@chakra-ui/system').ComponentWithAs<"tbody", ChakraTableBodyProps>;
|
|
9
9
|
export interface TableBodyProps extends ChakraTableBodyProps {
|
|
10
10
|
}
|
|
11
|
-
export declare const Tfoot: import('@chakra-ui/
|
|
11
|
+
export declare const Tfoot: import('@chakra-ui/system').ComponentWithAs<"tfoot", ChakraTableFooterProps>;
|
|
12
12
|
export interface TableFooterProps extends ChakraTableFooterProps {
|
|
13
13
|
}
|
|
14
|
-
export declare const Tr: import('@chakra-ui/
|
|
14
|
+
export declare const Tr: import('@chakra-ui/system').ComponentWithAs<"tr", ChakraTableRowProps>;
|
|
15
15
|
export interface TableRowProps extends ChakraTableRowProps {
|
|
16
16
|
}
|
|
17
|
-
export declare const Th: import('@chakra-ui/
|
|
17
|
+
export declare const Th: import('@chakra-ui/system').ComponentWithAs<"th", ChakraTableColumnHeaderProps>;
|
|
18
18
|
export interface TableColumnHeaderProps extends ChakraTableColumnHeaderProps {
|
|
19
19
|
}
|
|
20
|
-
export declare const Td: import('@chakra-ui/
|
|
20
|
+
export declare const Td: import('@chakra-ui/system').ComponentWithAs<"td", ChakraTableCellProps>;
|
|
21
21
|
export interface TableCellProps extends ChakraTableCellProps {
|
|
22
22
|
}
|
|
23
|
-
export declare const TableCaption: import('@chakra-ui/
|
|
23
|
+
export declare const TableCaption: import('@chakra-ui/system').ComponentWithAs<"caption", ChakraTableCaptionProps>;
|
|
24
24
|
export interface TableCaptionProps extends ChakraTableCaptionProps {
|
|
25
25
|
}
|
|
26
|
-
export declare const TableContainer: import('@chakra-ui/
|
|
26
|
+
export declare const TableContainer: import('@chakra-ui/system').ComponentWithAs<"div", ChakraTableContainerProps>;
|
|
27
27
|
export interface TableContainerProps extends ChakraTableContainerProps {
|
|
28
28
|
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { TabsProps as ChakraTabsProps, TabProps as ChakraTabProps, TabListProps as ChakraTabListProps, TabPanelsProps as ChakraTabPanelsProps, TabPanelProps as ChakraTabPanelProps } from '@chakra-ui/react';
|
|
2
|
-
export declare const Tabs: import('@chakra-ui/
|
|
2
|
+
export declare const Tabs: import('@chakra-ui/system').ComponentWithAs<"div", ChakraTabsProps>;
|
|
3
3
|
export interface TabsProps extends ChakraTabsProps {
|
|
4
4
|
}
|
|
5
|
-
export declare const Tab: import('@chakra-ui/
|
|
5
|
+
export declare const Tab: import('@chakra-ui/system').ComponentWithAs<"button", ChakraTabProps>;
|
|
6
6
|
export interface TabProps extends ChakraTabProps {
|
|
7
7
|
}
|
|
8
|
-
export declare const TabList: import('@chakra-ui/
|
|
8
|
+
export declare const TabList: import('@chakra-ui/system').ComponentWithAs<"div", ChakraTabListProps>;
|
|
9
9
|
export interface TabListProps extends ChakraTabListProps {
|
|
10
10
|
}
|
|
11
|
-
export declare const TabPanels: import('@chakra-ui/
|
|
11
|
+
export declare const TabPanels: import('@chakra-ui/system').ComponentWithAs<"div", ChakraTabPanelsProps>;
|
|
12
12
|
export interface TabPanelsProps extends ChakraTabPanelsProps {
|
|
13
13
|
}
|
|
14
|
-
export declare const TabPanel: import('@chakra-ui/
|
|
14
|
+
export declare const TabPanel: import('@chakra-ui/system').ComponentWithAs<"div", ChakraTabPanelProps>;
|
|
15
15
|
export interface TabPanelProps extends ChakraTabPanelProps {
|
|
16
16
|
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { TagProps as ChakraTagProps, TagLabelProps as ChakraTagLabelProps, TagCloseButtonProps as ChakraTagCloseButtonProps, IconProps } from '@chakra-ui/react';
|
|
2
|
-
export declare const Tag: import('@chakra-ui/
|
|
2
|
+
export declare const Tag: import('@chakra-ui/system').ComponentWithAs<"span", ChakraTagProps>;
|
|
3
3
|
export interface TagProps extends ChakraTagProps {
|
|
4
4
|
}
|
|
5
|
-
export declare const TagLabel: import('@chakra-ui/
|
|
5
|
+
export declare const TagLabel: import('@chakra-ui/system').ComponentWithAs<"span", ChakraTagLabelProps>;
|
|
6
6
|
export interface TagLabelProps extends ChakraTagLabelProps {
|
|
7
7
|
}
|
|
8
|
-
export declare const TagLeftIcon: import('@chakra-ui/
|
|
8
|
+
export declare const TagLeftIcon: import('@chakra-ui/system').ComponentWithAs<"svg", IconProps>;
|
|
9
9
|
export interface TagLeftIconProps extends IconProps {
|
|
10
10
|
}
|
|
11
|
-
export declare const TagRightIcon: import('@chakra-ui/
|
|
11
|
+
export declare const TagRightIcon: import('@chakra-ui/system').ComponentWithAs<"svg", IconProps>;
|
|
12
12
|
export interface TagRightIconProps extends IconProps {
|
|
13
13
|
}
|
|
14
|
-
export declare const TagCloseButton: import('@chakra-ui/
|
|
14
|
+
export declare const TagCloseButton: import('@chakra-ui/system').ComponentWithAs<"button", ChakraTagCloseButtonProps>;
|
|
15
15
|
export interface TagCloseButtonProps extends ChakraTagCloseButtonProps {
|
|
16
16
|
}
|
|
@@ -2,6 +2,7 @@ export * from './Accordion';
|
|
|
2
2
|
export * from './Button';
|
|
3
3
|
export * from './Card';
|
|
4
4
|
export * from './CloseButton';
|
|
5
|
+
export * from './Combobox';
|
|
5
6
|
export * from './Checkbox';
|
|
6
7
|
export * from './Switch';
|
|
7
8
|
export * from './Input';
|
|
@@ -12,8 +13,11 @@ export * from './Select';
|
|
|
12
13
|
export * from './Drawer';
|
|
13
14
|
export * from './Tabs';
|
|
14
15
|
export * from './Table';
|
|
16
|
+
export * from './Toast';
|
|
15
17
|
export * from './Transitions';
|
|
16
18
|
export * from './Modal';
|
|
17
19
|
export * from './Skeleton';
|
|
20
|
+
export * from './Slider';
|
|
18
21
|
export * from './Tooltip';
|
|
19
22
|
export * from './Tag';
|
|
23
|
+
export * from './Popover';
|