@nycplanning/streetscape 0.16.0 → 0.17.1-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.
@@ -0,0 +1,2 @@
1
+ import { DarkableIconProps } from './Icon';
2
+ export declare function EducationIcon(props: DarkableIconProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { DarkableIconProps } from './Icon';
2
+ export declare function HealthIcon(props: DarkableIconProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { DarkableIconProps } from './Icon';
2
+ export declare function HousingIcon(props: DarkableIconProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '@chakra-ui/react';
2
+ export { Icon, AddIcon, ArrowBackIcon, ArrowDownIcon, ArrowForwardIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpDownIcon, AtSignIcon, AttachmentIcon, BellIcon, CalendarIcon, ChatIcon, CheckIcon, CheckCircleIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CloseIcon, CopyIcon, DeleteIcon, DownloadIcon, DragHandleIcon, EditIcon, EmailIcon, ExternalLinkIcon, HamburgerIcon, InfoIcon, InfoOutlineIcon, LinkIcon, LockIcon, MinusIcon, MoonIcon, NotAllowedIcon, PhoneIcon, PlusSquareIcon, QuestionIcon, QuestionOutlineIcon, RepeatIcon, RepeatClockIcon, SearchIcon, Search2Icon, SettingsIcon, SmallAddIcon, SmallCloseIcon, SpinnerIcon, StarIcon, SunIcon, TimeIcon, TriangleDownIcon, TriangleUpIcon, UnlockIcon, UpDownIcon, ViewIcon, ViewOffIcon, WarningIcon, WarningTwoIcon, } from '@chakra-ui/icons';
3
+ export type { IconProps } from '@chakra-ui/icons';
4
+ export type DarkableIconProps = IconProps & {
5
+ dark?: boolean;
6
+ };
@@ -0,0 +1,2 @@
1
+ import { DarkableIconProps } from './Icon';
2
+ export declare function InfrastructureIcon(props: DarkableIconProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { DarkableIconProps } from './Icon';
2
+ export declare function ParksIcon(props: DarkableIconProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { DarkableIconProps } from './Icon';
2
+ export declare function PeopleIcon(props: DarkableIconProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { DarkableIconProps } from './Icon';
2
+ export declare function SafetyIcon(props: DarkableIconProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { DarkableIconProps } from './Icon';
2
+ export declare function TransportationIcon(props: DarkableIconProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,9 @@
1
+ export * from './Icon';
2
+ export * from './EducationIcon';
3
+ export * from './HealthIcon';
4
+ export * from './HousingIcon';
5
+ export * from './InfrastructureIcon';
6
+ export * from './ParksIcon';
7
+ export * from './PeopleIcon';
8
+ export * from './SafetyIcon';
9
+ export * from './TransportationIcon';
@@ -0,0 +1,16 @@
1
+ import { TagProps as ChakraTagProps, TagLabelProps as ChakraTagLabelProps, TagCloseButtonProps as ChakraTagCloseButtonProps, IconProps } from '@chakra-ui/react';
2
+ export declare const Tag: import('@chakra-ui/react').ComponentWithAs<"span", ChakraTagProps>;
3
+ export interface TagProps extends ChakraTagProps {
4
+ }
5
+ export declare const TagLabel: import('@chakra-ui/react').ComponentWithAs<"span", ChakraTagLabelProps>;
6
+ export interface TagLabelProps extends ChakraTagLabelProps {
7
+ }
8
+ export declare const TagLeftIcon: import('@chakra-ui/react').ComponentWithAs<"svg", IconProps>;
9
+ export interface TagLeftIconProps extends IconProps {
10
+ }
11
+ export declare const TagRightIcon: import('@chakra-ui/react').ComponentWithAs<"svg", IconProps>;
12
+ export interface TagRightIconProps extends IconProps {
13
+ }
14
+ export declare const TagCloseButton: import('@chakra-ui/react').ComponentWithAs<"button", ChakraTagCloseButtonProps>;
15
+ export interface TagCloseButtonProps extends ChakraTagCloseButtonProps {
16
+ }
@@ -0,0 +1,2 @@
1
+ export { Tag, TagLabel, TagLeftIcon, TagRightIcon, TagCloseButton, } from './Tag';
2
+ export type { TagProps, TagLabelProps, TagLeftIconProps, TagRightIconProps, TagCloseButtonProps, } from './Tag';
@@ -6,6 +6,7 @@ export * from './Switch';
6
6
  export * from './Input';
7
7
  export * from './NumberInput';
8
8
  export * from './FormControl';
9
+ export * from './Icon';
9
10
  export * from './Select';
10
11
  export * from './Drawer';
11
12
  export * from './Tabs';
@@ -14,3 +15,4 @@ export * from './Transitions';
14
15
  export * from './Modal';
15
16
  export * from './Skeleton';
16
17
  export * from './Tooltip';
18
+ export * from './Tag';