@helpscout/ui-kit-react 0.6.0 → 0.6.2
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/lib/components/badge/badge.d.ts +3 -3
- package/dist/lib/components/badge/badge.d.ts.map +1 -1
- package/dist/lib/components/button/button.d.ts +4 -4
- package/dist/lib/components/button/button.d.ts.map +1 -1
- package/dist/lib/components/button-group/button-group.d.ts +2 -1
- package/dist/lib/components/divider/divider.d.ts +0 -1
- package/dist/lib/components/divider/divider.d.ts.map +1 -1
- package/dist/lib/components/icon/icon.d.ts +3 -3
- package/dist/lib/components/icon/icon.d.ts.map +1 -1
- package/dist/lib/components/input/input.d.ts +4 -4
- package/dist/lib/components/input/input.d.ts.map +1 -1
- package/dist/lib/components/label/label.d.ts +4 -4
- package/dist/lib/components/label/label.d.ts.map +1 -1
- package/dist/lib/components/link/link.d.ts +4 -4
- package/dist/lib/components/link/link.d.ts.map +1 -1
- package/dist/lib/components/list/list.d.ts +3 -3
- package/dist/lib/components/list/list.d.ts.map +1 -1
- package/dist/lib/components/menu/menu.d.ts +2 -2
- package/dist/lib/components/menu/menu.d.ts.map +1 -1
- package/dist/lib/components/modal/modal.d.ts +2 -2
- package/dist/lib/components/modal/modal.d.ts.map +1 -1
- package/dist/lib/components/modal/modal.test.d.ts +1 -0
- package/dist/lib/components/number-field/number-field.d.ts +2 -2
- package/dist/lib/components/number-field/number-field.d.ts.map +1 -1
- package/dist/lib/components/select/select.d.ts +3 -3
- package/dist/lib/components/select/select.d.ts.map +1 -1
- package/dist/lib/components/side-panel/components/side-panel.content.d.ts +2 -1
- package/dist/lib/components/side-panel/components/side-panel.footer.d.ts +2 -1
- package/dist/lib/components/side-panel/components/side-panel.header.d.ts +2 -1
- package/dist/lib/components/side-panel/components/side-panel.header.d.ts.map +1 -1
- package/dist/lib/components/side-panel/components/tooltip/tooltip.d.ts +2 -1
- package/dist/lib/components/side-panel/components/tooltip/tooltip.d.ts.map +1 -1
- package/dist/lib/components/side-panel/index.d.ts +3 -2
- package/dist/lib/components/side-panel/side-panel.context.d.ts +1 -2
- package/dist/lib/components/side-panel/side-panel.context.d.ts.map +1 -1
- package/dist/lib/components/side-panel/side-panel.d.ts +5 -4
- package/dist/lib/components/side-panel/side-panel.hooks.d.ts +1 -2
- package/dist/lib/components/side-panel/side-panel.hooks.d.ts.map +1 -1
- package/dist/lib/components/text/text.d.ts +6 -4
- package/dist/lib/components/text/text.d.ts.map +1 -1
- package/dist/lib/components/text/text.utils.d.ts +2 -1
- package/dist/lib/components/text/text.utils.d.ts.map +1 -1
- package/dist/lib/components/text-area/text-area.d.ts +4 -4
- package/dist/lib/components/text-area/text-area.d.ts.map +1 -1
- package/dist/lib/components/text-area-field/text-area-field.d.ts +2 -2
- package/dist/lib/components/text-area-field/text-area-field.d.ts.map +1 -1
- package/dist/lib/components/text-field/text-field.d.ts +3 -3
- package/dist/lib/components/text-field/text-field.d.ts.map +1 -1
- package/dist/lib/components/theme/theme.d.ts +0 -1
- package/dist/lib/components/theme/theme.d.ts.map +1 -1
- package/dist/lib/components/thumbnail/thumbnail.d.ts +3 -3
- package/dist/lib/components/thumbnail/thumbnail.d.ts.map +1 -1
- package/dist/lib/components/validation-alert/validation-alert.d.ts +3 -3
- package/dist/lib/components/validation-alert/validation-alert.d.ts.map +1 -1
- package/dist/lib/hooks/useFocusRing/useFocusRing.d.ts +2 -1
- package/dist/lib/ui-kit-react.d.ts +22 -22
- package/dist/prop-types.json +1868 -1148
- package/dist/ui-kit-react.css +1 -1
- package/dist/ui-kit-react.js +21752 -21739
- package/dist/ui-kit-react.umd.cjs +85 -70
- package/package.json +4 -4
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
export { Badge, type BadgeProps, type BadgeVariantProps, } from
|
|
2
|
-
export { Button, type ButtonProps, type ButtonVariantProps, } from
|
|
3
|
-
export { ButtonGroup, ButtonGroupItem, type ButtonGroupProps, type ButtonGroupItemProps, } from
|
|
4
|
-
export { Divider, type DividerProps } from
|
|
5
|
-
export { Icon, type IconProps, type IconVariantProps, } from
|
|
6
|
-
export { Input, type InputProps, type InputVariantProps, } from
|
|
7
|
-
export { Label, LabelDescription, LabelGroup, type LabelProps, type LabelVariantProps, type LabelDescriptionProps, type LabelGroupProps, } from
|
|
8
|
-
export { Link, type LinkProps, type LinkVariantProps, } from
|
|
9
|
-
export { List, ListItem, type ListProps, type ListVariantProps, } from
|
|
10
|
-
export { Menu, MenuItem, MenuTrigger, type MenuProps, } from
|
|
11
|
-
export { Modal, ModalContent, type ModalProps, ModalTrigger, } from
|
|
12
|
-
export { NumberField, type NumberFieldProps, } from
|
|
13
|
-
export { Select, SelectItem, type SelectProps, type ListBoxRenderProps, } from
|
|
14
|
-
export { SidePanel, type SidePanelProps } from
|
|
15
|
-
export { Text, type TextProps, type TextVariantProps, } from
|
|
16
|
-
export { TextArea, type TextAreaProps, type TextAreaVariantProps, } from
|
|
17
|
-
export { TextAreaField, type TextAreaFieldProps, } from
|
|
18
|
-
export { TextField, type TextFieldProps, } from
|
|
19
|
-
export { Theme, type ThemeProps } from
|
|
20
|
-
export { Thumbnail, type ThumbnailProps, type ThumbnailVariantProps, } from
|
|
21
|
-
export { useFocusRing } from
|
|
22
|
-
export { ValidationAlert, type ValidationAlertProps, type ValidationAlertVariantProps, } from
|
|
1
|
+
export { Badge, type BadgeProps, type BadgeVariantProps, } from './components/badge/badge';
|
|
2
|
+
export { Button, type ButtonProps, type ButtonVariantProps, } from './components/button/button';
|
|
3
|
+
export { ButtonGroup, ButtonGroupItem, type ButtonGroupProps, type ButtonGroupItemProps, } from './components/button-group/button-group';
|
|
4
|
+
export { Divider, type DividerProps } from './components/divider/divider';
|
|
5
|
+
export { Icon, type IconProps, type IconVariantProps, } from './components/icon/icon';
|
|
6
|
+
export { Input, type InputProps, type InputVariantProps, } from './components/input/input';
|
|
7
|
+
export { Label, LabelDescription, LabelGroup, type LabelProps, type LabelVariantProps, type LabelDescriptionProps, type LabelGroupProps, } from './components/label/label';
|
|
8
|
+
export { Link, type LinkProps, type LinkVariantProps, } from './components/link/link';
|
|
9
|
+
export { List, ListItem, type ListProps, type ListVariantProps, } from './components/list/list';
|
|
10
|
+
export { Menu, MenuItem, MenuTrigger, type MenuProps, } from './components/menu/menu';
|
|
11
|
+
export { Modal, ModalContent, type ModalProps, ModalTrigger, } from './components/modal/modal';
|
|
12
|
+
export { NumberField, type NumberFieldProps, } from './components/number-field/number-field';
|
|
13
|
+
export { Select, SelectItem, type SelectProps, type ListBoxRenderProps, } from './components/select/select';
|
|
14
|
+
export { SidePanel, type SidePanelProps } from './components/side-panel';
|
|
15
|
+
export { Text, type TextProps, type TextVariantProps, } from './components/text/text';
|
|
16
|
+
export { TextArea, type TextAreaProps, type TextAreaVariantProps, } from './components/text-area/text-area';
|
|
17
|
+
export { TextAreaField, type TextAreaFieldProps, } from './components/text-area-field/text-area-field';
|
|
18
|
+
export { TextField, type TextFieldProps, } from './components/text-field/text-field';
|
|
19
|
+
export { Theme, type ThemeProps } from './components/theme/theme';
|
|
20
|
+
export { Thumbnail, type ThumbnailProps, type ThumbnailVariantProps, } from './components/thumbnail/thumbnail';
|
|
21
|
+
export { useFocusRing } from './hooks/useFocusRing/useFocusRing';
|
|
22
|
+
export { ValidationAlert, type ValidationAlertProps, type ValidationAlertVariantProps, } from './components/validation-alert/validation-alert';
|
|
23
23
|
//# sourceMappingURL=ui-kit-react.d.ts.map
|