@purple/phoenix-components 4.34.0 → 4.35.1
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/CHANGELOG.md +14 -0
- package/dist/bundle.cjs.js +1 -1
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +1 -1
- package/dist/bundle.esm.js.map +1 -1
- package/dist/bundle.umd.js +1 -1
- package/dist/bundle.umd.js.map +1 -1
- package/dist/index.d.ts +15 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -454,9 +454,14 @@ declare const Dropdown: React__default.FC<DropdownProps>;
|
|
|
454
454
|
interface FileWithPreview extends File {
|
|
455
455
|
preview: string;
|
|
456
456
|
}
|
|
457
|
-
interface
|
|
458
|
-
files: FileWithPreview[];
|
|
457
|
+
interface FilePreviewCommonProps {
|
|
459
458
|
setFiles: (files: FileWithPreview[]) => void;
|
|
459
|
+
onPassword?(password: string): void;
|
|
460
|
+
passwordPromptText?: string;
|
|
461
|
+
passwordIncorrectText?: string;
|
|
462
|
+
}
|
|
463
|
+
interface FileUploadProps extends GenericComponentProps, FilePreviewCommonProps {
|
|
464
|
+
files: FileWithPreview[];
|
|
460
465
|
label?: string;
|
|
461
466
|
labelTouchDevice?: string;
|
|
462
467
|
dragInstructions?: string;
|
|
@@ -561,6 +566,13 @@ interface ModalProps extends GenericComponentProps, PaddingProps, MarginProps {
|
|
|
561
566
|
}
|
|
562
567
|
declare const Modal: React__default.FC<ModalProps>;
|
|
563
568
|
|
|
569
|
+
interface MultiSelectProps extends CommonSelectProps, GenericComponentProps {
|
|
570
|
+
onChange: (option: SelectOption[]) => void;
|
|
571
|
+
value: SelectOption[];
|
|
572
|
+
maxVisibleSelectedItems?: number;
|
|
573
|
+
}
|
|
574
|
+
declare const MultiSelect: React__default.FC<MultiSelectProps>;
|
|
575
|
+
|
|
564
576
|
declare type SubRange = number | [number] | [number, number];
|
|
565
577
|
interface CommonSliderProps extends GenericComponentProps {
|
|
566
578
|
range: {
|
|
@@ -978,4 +990,4 @@ declare const prefixedTheme: {
|
|
|
978
990
|
|
|
979
991
|
declare const GlobalStyles: styled_components.GlobalStyleComponent<{}, styled_components.DefaultTheme>;
|
|
980
992
|
|
|
981
|
-
export { Box, BoxProps, Button, ButtonGroup, ButtonGroupProps, ButtonProps, Card, CardProps, Checkbox, CheckboxProps, ClosableButton, ClosableButtonProps, ClosableItem, ClosableItemProps, Collapsible, CollapsibleCard, CollapsibleCardProps, CollapsibleProps, ColorTheme, ComponentSize, ComponentSizeMediumLarge, ComponentSizeSmallMedium, ComponentSizeSmallMediumLarge, DateInput, DateInputProps, DatePicker, DatePickerProps, DateRangePicker, DateRangePickerProps, DateRangeValue, DateValue, Dropdown, DropdownProps, FileUpload, FileUploadProps, FileWithPreview, Flex, GlobalStyles, Grid, Heading, HeadingProps, HeadingSizes, HorizontalDivider, HorizontalDividerProps, Icon, IconAlignment, IconProps, IconType, Label, LabelProps, Link, LinkButton, LinkButtonProps, LinkProps, List, ListItem, ListItemProps, ListProps, Menu, MenuDivider, MenuItem, MenuItemProps, MenuProps, Modal, ModalProps, MultiSlider, MultiSliderProps, MultiSliderValue, Notice, NoticeProps, NumberInput, NumberInputProps, Paragraph, ParagraphProps, PhoenixIcons, PhoenixIconsColored, PhoenixIconsColoredSrc, PhoenixIconsOutlined, PhoenixIconsOutlinedSrc, PhoenixIconsSrc, Radio, RadioProps, Select, SelectNative, SelectNativeProps, SelectOption, SelectPicker, SelectPickerOption, SelectPickerProps, SelectProps, Slider, SliderProps, SliderValue, Spacer, SpacerProps, Spacing, Spinner, SpinnerProps, Tab, TabFunctionProps, TabList, TabListProps, TabProps, Tag, TagProps, Text, TextArea, TextAreaProps, TextColor, TextInput, TextInputProps, TextProps, prefixedTheme as Theme, TimezonePicker, TimezonePickerProps, Tooltip, TooltipProps, getOptions as getTimezoneOptions };
|
|
993
|
+
export { Box, BoxProps, Button, ButtonGroup, ButtonGroupProps, ButtonProps, Card, CardProps, Checkbox, CheckboxProps, ClosableButton, ClosableButtonProps, ClosableItem, ClosableItemProps, Collapsible, CollapsibleCard, CollapsibleCardProps, CollapsibleProps, ColorTheme, ComponentSize, ComponentSizeMediumLarge, ComponentSizeSmallMedium, ComponentSizeSmallMediumLarge, DateInput, DateInputProps, DatePicker, DatePickerProps, DateRangePicker, DateRangePickerProps, DateRangeValue, DateValue, Dropdown, DropdownProps, FilePreviewCommonProps, FileUpload, FileUploadProps, FileWithPreview, Flex, GlobalStyles, Grid, Heading, HeadingProps, HeadingSizes, HorizontalDivider, HorizontalDividerProps, Icon, IconAlignment, IconProps, IconType, Label, LabelProps, Link, LinkButton, LinkButtonProps, LinkProps, List, ListItem, ListItemProps, ListProps, Menu, MenuDivider, MenuItem, MenuItemProps, MenuProps, Modal, ModalProps, MultiSelect, MultiSelectProps, MultiSlider, MultiSliderProps, MultiSliderValue, Notice, NoticeProps, NumberInput, NumberInputProps, Paragraph, ParagraphProps, PhoenixIcons, PhoenixIconsColored, PhoenixIconsColoredSrc, PhoenixIconsOutlined, PhoenixIconsOutlinedSrc, PhoenixIconsSrc, Radio, RadioProps, Select, SelectNative, SelectNativeProps, SelectOption, SelectPicker, SelectPickerOption, SelectPickerProps, SelectProps, Slider, SliderProps, SliderValue, Spacer, SpacerProps, Spacing, Spinner, SpinnerProps, Tab, TabFunctionProps, TabList, TabListProps, TabProps, Tag, TagProps, Text, TextArea, TextAreaProps, TextColor, TextInput, TextInputProps, TextProps, prefixedTheme as Theme, TimezonePicker, TimezonePickerProps, Tooltip, TooltipProps, getOptions as getTimezoneOptions };
|