pxt-core 13.1.17 → 13.1.18

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,6 @@
1
+ import { DropdownProps } from "./Dropdown";
2
+ interface DropdownModalProps extends DropdownProps {
3
+ onClose: () => void;
4
+ }
5
+ export declare const DropdownModal: (props: DropdownModalProps) => JSX.Element;
6
+ export {};
@@ -4,7 +4,7 @@ export interface InputProps extends ControlProps {
4
4
  inputClassName?: string;
5
5
  groupClassName?: string;
6
6
  initialValue?: string;
7
- label?: string;
7
+ label?: string | JSX.Element;
8
8
  title?: string;
9
9
  placeholder?: string;
10
10
  icon?: string;