pixel-react 1.4.1 → 1.4.2
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/components/Select/types.d.ts +1 -0
- package/lib/index.d.ts +4 -1
- package/lib/index.esm.js +70 -16
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +70 -15
- package/lib/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/utils/downloadFile/saveFileFromBlob.d.ts +1 -0
- package/package.json +1 -1
- package/src/assets/icons/add_label_icon.svg +3 -0
- package/src/assets/icons/label_icon.svg +8 -0
- package/src/assets/icons/sample_template_first.svg +29 -0
- package/src/assets/icons/sample_template_second.svg +47 -0
- package/src/components/AllProjectsDropdown/AllProjectsDropdown.scss +2 -3
- package/src/components/AllProjectsDropdown/AllProjectsDropdown.tsx +1 -0
- package/src/components/AppHeader/AppHeader.scss +0 -1
- package/src/components/Icon/Icon.tsx +1 -0
- package/src/components/Icon/iconList.ts +10 -2
- package/src/components/Modal/Modal.tsx +2 -2
- package/src/components/Select/Select.tsx +2 -0
- package/src/components/Select/types.ts +5 -0
- package/src/components/StateDropdown/StateDropdown.tsx +18 -6
- package/src/index.ts +2 -0
- package/src/utils/downloadFile/saveFileFromBlob.stories.tsx +62 -0
- package/src/utils/downloadFile/saveFileFromBlob.ts +40 -0
- /package/src/assets/icons/{fireflink_standard_template.svg → standard_template.svg} +0 -0
package/lib/index.d.ts
CHANGED
@@ -665,6 +665,7 @@ interface SelectProps$1 {
|
|
665
665
|
height?: number;
|
666
666
|
width?: number | string;
|
667
667
|
onBlur?: () => void;
|
668
|
+
disableInput?: boolean;
|
668
669
|
}
|
669
670
|
type OptionValue = any;
|
670
671
|
interface Option$2 {
|
@@ -2255,4 +2256,6 @@ declare const getSequentialPayload: (machineInstances?: MachineExecutionInstance
|
|
2255
2256
|
|
2256
2257
|
declare const ConnectingBranch: React__default.FC;
|
2257
2258
|
|
2258
|
-
|
2259
|
+
declare const saveFileFromBlob: (blob: Blob, filename: string) => void;
|
2260
|
+
|
2261
|
+
export { Accordion, AddButton as AddResourceButton, AllProjectsDropdown, AppHeader, AttachImage, AttachmentButton, BarChart, Button, Checkbox, Chip, Col, ConnectingBranch, Container, DashboardDonutChart, CustomDatePicker as DatePicker, DonutChart, DragAndDrop, Drawer, EditTextField, Editor, ExpandableMenu, FileDropzone, Forms as Form, HighlightText, Icon, IconButton, IconRadialChart, IconRadioGroup, Input, InputWithDropdown, LabelEditTextField, LineChart, MachineInputField, MenuOption, MiniModal, Modal, ModuleChip, MultiRadialChart, MultiSelect, NlpInput as NLPInput, Paper, PieChart, RadialChart, RadioButton, RadioGroup, Recaptcha, Row, Search, Select, SequentialConnectingBranch, StateDropdown, StatusButton, StatusCard, Table, TableTree, Tabs, Textarea as TextArea, ThemeProvider, Toaster, Toastify, Toggle, Tooltip, Typography, VariableInput, checkEmpty, compareArrays, compareObjects, debounce, ffid, findAndInsert, getEncryptedData, getExtension, getExtensionWithPeriod, getSequentialPayload, saveFileFromBlob, throttle, toast, truncateText, useTheme };
|