@salutejs/sdds-dfa 0.180.0-canary.1585.12012734025.0 → 0.181.0-canary.1534.12015983366.0
Sign up to get free protection for your applications and to get access to all the features.
- package/api/sdds-dfa.api.md +38 -0
- package/components/Dropzone/Dropzone.config.d.ts +17 -0
- package/components/Dropzone/Dropzone.config.js +26 -0
- package/components/Dropzone/Dropzone.d.ts +28 -0
- package/components/Dropzone/Dropzone.js +10 -0
- package/components/Dropzone/index.d.ts +2 -0
- package/components/Dropzone/index.js +25 -0
- package/es/components/Dropzone/Dropzone.config.js +20 -0
- package/es/components/Dropzone/Dropzone.js +4 -0
- package/es/components/Dropzone/index.js +2 -0
- package/es/index.js +1 -0
- package/index.d.ts +1 -0
- package/index.js +11 -0
- package/package.json +6 -6
- package/temp/sdds-dfa.api.md +38 -0
package/api/sdds-dfa.api.md
CHANGED
@@ -84,6 +84,7 @@ import type { DistributivePick } from '@salutejs/plasma-new-hope';
|
|
84
84
|
import { DividerProps } from '@salutejs/plasma-new-hope/styled-components';
|
85
85
|
import { dividerTokens } from '@salutejs/plasma-new-hope/styled-components';
|
86
86
|
import { DoubleSliderProps } from '@salutejs/plasma-new-hope/styled-components';
|
87
|
+
import { DragEvent as DragEvent_2 } from 'react';
|
87
88
|
import { DrawerContentProps } from '@salutejs/plasma-new-hope/styled-components';
|
88
89
|
import { DrawerFooterProps } from '@salutejs/plasma-new-hope/styled-components';
|
89
90
|
import { DrawerHeaderProps } from '@salutejs/plasma-new-hope/styled-components';
|
@@ -93,6 +94,8 @@ import type { DropdownNewProps } from '@salutejs/plasma-new-hope';
|
|
93
94
|
import { DropdownNodeSelect } from '@salutejs/plasma-new-hope/styled-components';
|
94
95
|
import { DropdownPlacement } from '@salutejs/plasma-new-hope/types/components/Dropdown/Dropdown.types';
|
95
96
|
import { DropdownTrigger } from '@salutejs/plasma-new-hope/types/components/Dropdown/Dropdown.types';
|
97
|
+
import { dropzoneClasses } from '@salutejs/plasma-new-hope/styled-components';
|
98
|
+
import { dropzoneTokens } from '@salutejs/plasma-new-hope/styled-components';
|
96
99
|
import { dsplL } from '@salutejs/sdds-themes/tokens';
|
97
100
|
import { dsplLBold } from '@salutejs/sdds-themes/tokens';
|
98
101
|
import { dsplM } from '@salutejs/sdds-themes/tokens';
|
@@ -100,6 +103,7 @@ import { dsplMBold } from '@salutejs/sdds-themes/tokens';
|
|
100
103
|
import { dsplS } from '@salutejs/sdds-themes/tokens';
|
101
104
|
import { dsplSBold } from '@salutejs/sdds-themes/tokens';
|
102
105
|
import type { FC } from 'react';
|
106
|
+
import { FileProcessHandler } from '@salutejs/plasma-new-hope/types/components/Dropzone/Dropzone.types';
|
103
107
|
import { Filter } from '@salutejs/plasma-new-hope/types/engines/types';
|
104
108
|
import { FormTypeNumber } from '@salutejs/plasma-new-hope/types/types/FormType';
|
105
109
|
import { FormTypeString } from '@salutejs/plasma-new-hope/types/types/FormType';
|
@@ -218,6 +222,7 @@ import { TooltipProps } from '@salutejs/plasma-new-hope/styled-components';
|
|
218
222
|
import { usePopupContext } from '@salutejs/plasma-new-hope/styled-components';
|
219
223
|
import { useSegment } from '@salutejs/plasma-new-hope/styled-components';
|
220
224
|
import { useToast } from '@salutejs/plasma-new-hope/styled-components';
|
225
|
+
import { ValidatorReturnType } from '@salutejs/plasma-new-hope/types/components/Dropzone/Dropzone.types';
|
221
226
|
import { Variants } from '@salutejs/plasma-new-hope/types/engines/types';
|
222
227
|
import { ViewContainerCustomProps } from '@salutejs/plasma-new-hope/types/components/ViewContainer/ViewContainer';
|
223
228
|
|
@@ -1833,6 +1838,39 @@ default: PolymorphicClassName;
|
|
1833
1838
|
hoverIndex?: number | undefined;
|
1834
1839
|
} & React_2.HTMLAttributes<HTMLDivElement> & React_2.RefAttributes<HTMLDivElement>, "view" | "size"> & React_2.RefAttributes<HTMLButtonElement>) => React_2.ReactElement<any, string | React_2.JSXElementConstructor<any>> | null;
|
1835
1840
|
|
1841
|
+
// @public (undocumented)
|
1842
|
+
export const Dropzone: FunctionComponent<PropsType< {
|
1843
|
+
view: {
|
1844
|
+
default: PolymorphicClassName;
|
1845
|
+
};
|
1846
|
+
size: {
|
1847
|
+
m: PolymorphicClassName;
|
1848
|
+
};
|
1849
|
+
disabled: {
|
1850
|
+
true: PolymorphicClassName;
|
1851
|
+
};
|
1852
|
+
}> & {
|
1853
|
+
multiple?: boolean | undefined;
|
1854
|
+
title?: string | undefined;
|
1855
|
+
description?: string | undefined;
|
1856
|
+
icon?: ReactNode;
|
1857
|
+
iconPlacement?: "top" | "left" | undefined;
|
1858
|
+
size?: string | undefined;
|
1859
|
+
view?: string | undefined;
|
1860
|
+
disabled?: boolean | undefined;
|
1861
|
+
stretch?: boolean | undefined;
|
1862
|
+
onDragEnter?: ((event: DragEvent_2<HTMLDivElement>) => void) | undefined;
|
1863
|
+
onDragLeave?: ((event: DragEvent_2<HTMLDivElement>) => void) | undefined;
|
1864
|
+
onDragOver?: ((event: DragEvent_2<HTMLDivElement>) => void) | undefined;
|
1865
|
+
validator?: ((files: File[]) => ValidatorReturnType) | undefined;
|
1866
|
+
onDrop?: FileProcessHandler | undefined;
|
1867
|
+
onChoseFiles?: FileProcessHandler | undefined;
|
1868
|
+
} & InputHTMLAttributes_2<HTMLInputElement> & RefAttributes<HTMLInputElement>>;
|
1869
|
+
|
1870
|
+
export { dropzoneClasses }
|
1871
|
+
|
1872
|
+
export { dropzoneTokens }
|
1873
|
+
|
1836
1874
|
// @public (undocumented)
|
1837
1875
|
export const DsplL: FunctionComponent<PropsType< {
|
1838
1876
|
size: {
|
@@ -0,0 +1,17 @@
|
|
1
|
+
export declare const config: {
|
2
|
+
defaults: {
|
3
|
+
view: string;
|
4
|
+
size: string;
|
5
|
+
};
|
6
|
+
variations: {
|
7
|
+
view: {
|
8
|
+
default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
9
|
+
};
|
10
|
+
size: {
|
11
|
+
m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
12
|
+
};
|
13
|
+
disabled: {
|
14
|
+
true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
15
|
+
};
|
16
|
+
};
|
17
|
+
};
|
@@ -0,0 +1,26 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.config = void 0;
|
7
|
+
var _styledComponents = /*#__PURE__*/require("@salutejs/plasma-new-hope/styled-components");
|
8
|
+
var _templateObject, _templateObject2, _templateObject3;
|
9
|
+
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
10
|
+
var config = exports.config = {
|
11
|
+
defaults: {
|
12
|
+
view: 'default',
|
13
|
+
size: 'm'
|
14
|
+
},
|
15
|
+
variations: {
|
16
|
+
view: {
|
17
|
+
"default": /*#__PURE__*/(0, _styledComponents.css)(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--surface-solid-card);\n ", ": var(--surface-solid-card-hover);\n ", ": var(--overlay-soft);\n ", ": var(--outline-solid-secondary);\n ", ": var(--outline-solid-secondary-hover);\n ", ": var(--outline-accent);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n "])), _styledComponents.dropzoneTokens.background, _styledComponents.dropzoneTokens.backgroundHover, _styledComponents.dropzoneTokens.overlayColorActive, _styledComponents.dropzoneTokens.borderColor, _styledComponents.dropzoneTokens.borderColorHover, _styledComponents.dropzoneTokens.borderColorActive, _styledComponents.dropzoneTokens.titleColor, _styledComponents.dropzoneTokens.descriptionColor)
|
18
|
+
},
|
19
|
+
size: {
|
20
|
+
m: /*#__PURE__*/(0, _styledComponents.css)(_templateObject2 || (_templateObject2 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 1.5rem;\n ", ": 1.25rem;\n ", ": 0.75rem;\n ", ": 0.375rem;\n ", ": 0.5rem;\n\n ", ": var(--plasma-typo-h4-font-family);\n ", ": var(--plasma-typo-h4-font-size);\n ", ": var(--plasma-typo-h4-font-style);\n ", ": var(--plasma-typo-h4-bold-font-weight);\n ", ": var(--plasma-typo-h4-letter-spacing);\n ", ": var(--plasma-typo-h4-line-height);\n\n ", ": var(--plasma-typo-body-s-font-family);\n ", ": var(--plasma-typo-body-s-font-size);\n ", ": var(--plasma-typo-body-s-font-style);\n ", ": var(--plasma-typo-body-s-font-weight);\n ", ": var(--plasma-typo-body-s-letter-spacing);\n ", ": var(--plasma-typo-body-s-line-height);\n "])), _styledComponents.dropzoneTokens.padding, _styledComponents.dropzoneTokens.borderRadius, _styledComponents.dropzoneTokens.contentWrapperGap, _styledComponents.dropzoneTokens.contentGap, _styledComponents.dropzoneTokens.contentColumnGap, _styledComponents.dropzoneTokens.titleFontFamily, _styledComponents.dropzoneTokens.titleFontSize, _styledComponents.dropzoneTokens.titleFontStyle, _styledComponents.dropzoneTokens.titleFontWeight, _styledComponents.dropzoneTokens.titleLetterSpacing, _styledComponents.dropzoneTokens.titleLineHeight, _styledComponents.dropzoneTokens.descriptionFontFamily, _styledComponents.dropzoneTokens.descriptionFontSize, _styledComponents.dropzoneTokens.descriptionFontStyle, _styledComponents.dropzoneTokens.descriptionFontWeight, _styledComponents.dropzoneTokens.descriptionLetterSpacing, _styledComponents.dropzoneTokens.descriptionLineHeight)
|
21
|
+
},
|
22
|
+
disabled: {
|
23
|
+
"true": /*#__PURE__*/(0, _styledComponents.css)(_templateObject3 || (_templateObject3 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.4;\n "])), _styledComponents.dropzoneTokens.disabledOpacity)
|
24
|
+
}
|
25
|
+
}
|
26
|
+
};
|
@@ -0,0 +1,28 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
export declare const Dropzone: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
3
|
+
view: {
|
4
|
+
default: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
5
|
+
};
|
6
|
+
size: {
|
7
|
+
m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
8
|
+
};
|
9
|
+
disabled: {
|
10
|
+
true: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
11
|
+
};
|
12
|
+
}> & {
|
13
|
+
multiple?: boolean | undefined;
|
14
|
+
title?: string | undefined;
|
15
|
+
description?: string | undefined;
|
16
|
+
icon?: import("react").ReactNode;
|
17
|
+
iconPlacement?: "top" | "left" | undefined;
|
18
|
+
size?: string | undefined;
|
19
|
+
view?: string | undefined;
|
20
|
+
disabled?: boolean | undefined;
|
21
|
+
stretch?: boolean | undefined;
|
22
|
+
onDragEnter?: ((event: import("react").DragEvent<HTMLDivElement>) => void) | undefined;
|
23
|
+
onDragLeave?: ((event: import("react").DragEvent<HTMLDivElement>) => void) | undefined;
|
24
|
+
onDragOver?: ((event: import("react").DragEvent<HTMLDivElement>) => void) | undefined;
|
25
|
+
validator?: ((files: File[]) => import("@salutejs/plasma-new-hope/types/components/Dropzone/Dropzone.types").ValidatorReturnType) | undefined;
|
26
|
+
onDrop?: import("@salutejs/plasma-new-hope/types/components/Dropzone/Dropzone.types").FileProcessHandler | undefined;
|
27
|
+
onChoseFiles?: import("@salutejs/plasma-new-hope/types/components/Dropzone/Dropzone.types").FileProcessHandler | undefined;
|
28
|
+
} & import("react").InputHTMLAttributes<HTMLInputElement> & import("react").RefAttributes<HTMLInputElement>>;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.Dropzone = void 0;
|
7
|
+
var _styledComponents = /*#__PURE__*/require("@salutejs/plasma-new-hope/styled-components");
|
8
|
+
var _Dropzone = /*#__PURE__*/require("./Dropzone.config");
|
9
|
+
var mergedConfig = /*#__PURE__*/(0, _styledComponents.mergeConfig)(_styledComponents.dropzoneConfig, _Dropzone.config);
|
10
|
+
var Dropzone = exports.Dropzone = /*#__PURE__*/(0, _styledComponents.component)(mergedConfig);
|
@@ -0,0 +1,25 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
Object.defineProperty(exports, "Dropzone", {
|
7
|
+
enumerable: true,
|
8
|
+
get: function get() {
|
9
|
+
return _Dropzone.Dropzone;
|
10
|
+
}
|
11
|
+
});
|
12
|
+
Object.defineProperty(exports, "dropzoneClasses", {
|
13
|
+
enumerable: true,
|
14
|
+
get: function get() {
|
15
|
+
return _styledComponents.dropzoneClasses;
|
16
|
+
}
|
17
|
+
});
|
18
|
+
Object.defineProperty(exports, "dropzoneTokens", {
|
19
|
+
enumerable: true,
|
20
|
+
get: function get() {
|
21
|
+
return _styledComponents.dropzoneTokens;
|
22
|
+
}
|
23
|
+
});
|
24
|
+
var _Dropzone = /*#__PURE__*/require("./Dropzone");
|
25
|
+
var _styledComponents = /*#__PURE__*/require("@salutejs/plasma-new-hope/styled-components");
|
@@ -0,0 +1,20 @@
|
|
1
|
+
var _templateObject, _templateObject2, _templateObject3;
|
2
|
+
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
3
|
+
import { css, dropzoneTokens } from '@salutejs/plasma-new-hope/styled-components';
|
4
|
+
export var config = {
|
5
|
+
defaults: {
|
6
|
+
view: 'default',
|
7
|
+
size: 'm'
|
8
|
+
},
|
9
|
+
variations: {
|
10
|
+
view: {
|
11
|
+
"default": /*#__PURE__*/css(_templateObject || (_templateObject = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--surface-solid-card);\n ", ": var(--surface-solid-card-hover);\n ", ": var(--overlay-soft);\n ", ": var(--outline-solid-secondary);\n ", ": var(--outline-solid-secondary-hover);\n ", ": var(--outline-accent);\n ", ": var(--text-primary);\n ", ": var(--text-secondary);\n "])), dropzoneTokens.background, dropzoneTokens.backgroundHover, dropzoneTokens.overlayColorActive, dropzoneTokens.borderColor, dropzoneTokens.borderColorHover, dropzoneTokens.borderColorActive, dropzoneTokens.titleColor, dropzoneTokens.descriptionColor)
|
12
|
+
},
|
13
|
+
size: {
|
14
|
+
m: /*#__PURE__*/css(_templateObject2 || (_templateObject2 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 1.5rem;\n ", ": 1.25rem;\n ", ": 0.75rem;\n ", ": 0.375rem;\n ", ": 0.5rem;\n\n ", ": var(--plasma-typo-h4-font-family);\n ", ": var(--plasma-typo-h4-font-size);\n ", ": var(--plasma-typo-h4-font-style);\n ", ": var(--plasma-typo-h4-bold-font-weight);\n ", ": var(--plasma-typo-h4-letter-spacing);\n ", ": var(--plasma-typo-h4-line-height);\n\n ", ": var(--plasma-typo-body-s-font-family);\n ", ": var(--plasma-typo-body-s-font-size);\n ", ": var(--plasma-typo-body-s-font-style);\n ", ": var(--plasma-typo-body-s-font-weight);\n ", ": var(--plasma-typo-body-s-letter-spacing);\n ", ": var(--plasma-typo-body-s-line-height);\n "])), dropzoneTokens.padding, dropzoneTokens.borderRadius, dropzoneTokens.contentWrapperGap, dropzoneTokens.contentGap, dropzoneTokens.contentColumnGap, dropzoneTokens.titleFontFamily, dropzoneTokens.titleFontSize, dropzoneTokens.titleFontStyle, dropzoneTokens.titleFontWeight, dropzoneTokens.titleLetterSpacing, dropzoneTokens.titleLineHeight, dropzoneTokens.descriptionFontFamily, dropzoneTokens.descriptionFontSize, dropzoneTokens.descriptionFontStyle, dropzoneTokens.descriptionFontWeight, dropzoneTokens.descriptionLetterSpacing, dropzoneTokens.descriptionLineHeight)
|
15
|
+
},
|
16
|
+
disabled: {
|
17
|
+
"true": /*#__PURE__*/css(_templateObject3 || (_templateObject3 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": 0.4;\n "])), dropzoneTokens.disabledOpacity)
|
18
|
+
}
|
19
|
+
}
|
20
|
+
};
|
@@ -0,0 +1,4 @@
|
|
1
|
+
import { dropzoneConfig, component, mergeConfig } from '@salutejs/plasma-new-hope/styled-components';
|
2
|
+
import { config } from './Dropzone.config';
|
3
|
+
var mergedConfig = /*#__PURE__*/mergeConfig(dropzoneConfig, config);
|
4
|
+
export var Dropzone = /*#__PURE__*/component(mergedConfig);
|
package/es/index.js
CHANGED
@@ -52,5 +52,6 @@ export * from './components/EmptyState';
|
|
52
52
|
export * from './components/Attach';
|
53
53
|
export * from './components/ViewContainer';
|
54
54
|
export * from './components/NumberInput';
|
55
|
+
export * from './components/Dropzone';
|
55
56
|
export * from './mixins';
|
56
57
|
export * from './tokens';
|
package/index.d.ts
CHANGED
@@ -52,5 +52,6 @@ export * from './components/EmptyState';
|
|
52
52
|
export * from './components/Attach';
|
53
53
|
export * from './components/ViewContainer';
|
54
54
|
export * from './components/NumberInput';
|
55
|
+
export * from './components/Dropzone';
|
55
56
|
export * from './mixins';
|
56
57
|
export * from './tokens';
|
package/index.js
CHANGED
@@ -597,6 +597,17 @@ Object.keys(_NumberInput).forEach(function (key) {
|
|
597
597
|
}
|
598
598
|
});
|
599
599
|
});
|
600
|
+
var _Dropzone = /*#__PURE__*/require("./components/Dropzone");
|
601
|
+
Object.keys(_Dropzone).forEach(function (key) {
|
602
|
+
if (key === "default" || key === "__esModule") return;
|
603
|
+
if (key in exports && exports[key] === _Dropzone[key]) return;
|
604
|
+
Object.defineProperty(exports, key, {
|
605
|
+
enumerable: true,
|
606
|
+
get: function get() {
|
607
|
+
return _Dropzone[key];
|
608
|
+
}
|
609
|
+
});
|
610
|
+
});
|
600
611
|
var _mixins = /*#__PURE__*/require("./mixins");
|
601
612
|
Object.keys(_mixins).forEach(function (key) {
|
602
613
|
if (key === "default" || key === "__esModule") return;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salutejs/sdds-dfa",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.181.0-canary.1534.12015983366.0",
|
4
4
|
"description": "Salute Design System / React UI kit for SDDS DFA web applications",
|
5
5
|
"author": "Salute Frontend Team <salute.developers@gmail.com>",
|
6
6
|
"license": "MIT",
|
@@ -19,7 +19,7 @@
|
|
19
19
|
"directory": "packages/sdds-dfa"
|
20
20
|
},
|
21
21
|
"dependencies": {
|
22
|
-
"@salutejs/plasma-new-hope": "0.
|
22
|
+
"@salutejs/plasma-new-hope": "0.200.0-canary.1534.12015983366.0",
|
23
23
|
"@salutejs/sdds-themes": "0.27.0"
|
24
24
|
},
|
25
25
|
"peerDependencies": {
|
@@ -37,10 +37,10 @@
|
|
37
37
|
"@babel/preset-typescript": "7.24.1",
|
38
38
|
"@microsoft/api-extractor": "7.38.3",
|
39
39
|
"@salutejs/plasma-colors": "0.13.0",
|
40
|
-
"@salutejs/plasma-core": "1.
|
41
|
-
"@salutejs/plasma-cy-utils": "0.
|
40
|
+
"@salutejs/plasma-core": "1.187.0-canary.1534.12015983366.0",
|
41
|
+
"@salutejs/plasma-cy-utils": "0.118.0-canary.1534.12015983366.0",
|
42
42
|
"@salutejs/plasma-icons": "1.209.0-dev.0",
|
43
|
-
"@salutejs/plasma-sb-utils": "0.
|
43
|
+
"@salutejs/plasma-sb-utils": "0.185.0-canary.1534.12015983366.0",
|
44
44
|
"@storybook/addon-docs": "7.6.17",
|
45
45
|
"@storybook/addon-essentials": "7.6.17",
|
46
46
|
"@storybook/addons": "7.6.17",
|
@@ -95,5 +95,5 @@
|
|
95
95
|
"Anton Vinogradov"
|
96
96
|
],
|
97
97
|
"sideEffects": false,
|
98
|
-
"gitHead": "
|
98
|
+
"gitHead": "7186c65020b2b052bdd662995fdff85c0d0a6710"
|
99
99
|
}
|
package/temp/sdds-dfa.api.md
CHANGED
@@ -84,6 +84,7 @@ import type { DistributivePick } from '@salutejs/plasma-new-hope';
|
|
84
84
|
import { DividerProps } from '@salutejs/plasma-new-hope/styled-components';
|
85
85
|
import { dividerTokens } from '@salutejs/plasma-new-hope/styled-components';
|
86
86
|
import { DoubleSliderProps } from '@salutejs/plasma-new-hope/styled-components';
|
87
|
+
import { DragEvent as DragEvent_2 } from 'react';
|
87
88
|
import { DrawerContentProps } from '@salutejs/plasma-new-hope/styled-components';
|
88
89
|
import { DrawerFooterProps } from '@salutejs/plasma-new-hope/styled-components';
|
89
90
|
import { DrawerHeaderProps } from '@salutejs/plasma-new-hope/styled-components';
|
@@ -93,6 +94,8 @@ import type { DropdownNewProps } from '@salutejs/plasma-new-hope';
|
|
93
94
|
import { DropdownNodeSelect } from '@salutejs/plasma-new-hope/styled-components';
|
94
95
|
import { DropdownPlacement } from '@salutejs/plasma-new-hope/types/components/Dropdown/Dropdown.types';
|
95
96
|
import { DropdownTrigger } from '@salutejs/plasma-new-hope/types/components/Dropdown/Dropdown.types';
|
97
|
+
import { dropzoneClasses } from '@salutejs/plasma-new-hope/styled-components';
|
98
|
+
import { dropzoneTokens } from '@salutejs/plasma-new-hope/styled-components';
|
96
99
|
import { dsplL } from '@salutejs/sdds-themes/tokens';
|
97
100
|
import { dsplLBold } from '@salutejs/sdds-themes/tokens';
|
98
101
|
import { dsplM } from '@salutejs/sdds-themes/tokens';
|
@@ -100,6 +103,7 @@ import { dsplMBold } from '@salutejs/sdds-themes/tokens';
|
|
100
103
|
import { dsplS } from '@salutejs/sdds-themes/tokens';
|
101
104
|
import { dsplSBold } from '@salutejs/sdds-themes/tokens';
|
102
105
|
import type { FC } from 'react';
|
106
|
+
import { FileProcessHandler } from '@salutejs/plasma-new-hope/types/components/Dropzone/Dropzone.types';
|
103
107
|
import { Filter } from '@salutejs/plasma-new-hope/types/engines/types';
|
104
108
|
import { FormTypeNumber } from '@salutejs/plasma-new-hope/types/types/FormType';
|
105
109
|
import { FormTypeString } from '@salutejs/plasma-new-hope/types/types/FormType';
|
@@ -218,6 +222,7 @@ import { TooltipProps } from '@salutejs/plasma-new-hope/styled-components';
|
|
218
222
|
import { usePopupContext } from '@salutejs/plasma-new-hope/styled-components';
|
219
223
|
import { useSegment } from '@salutejs/plasma-new-hope/styled-components';
|
220
224
|
import { useToast } from '@salutejs/plasma-new-hope/styled-components';
|
225
|
+
import { ValidatorReturnType } from '@salutejs/plasma-new-hope/types/components/Dropzone/Dropzone.types';
|
221
226
|
import { Variants } from '@salutejs/plasma-new-hope/types/engines/types';
|
222
227
|
import { ViewContainerCustomProps } from '@salutejs/plasma-new-hope/types/components/ViewContainer/ViewContainer';
|
223
228
|
|
@@ -1833,6 +1838,39 @@ default: PolymorphicClassName;
|
|
1833
1838
|
hoverIndex?: number | undefined;
|
1834
1839
|
} & React_2.HTMLAttributes<HTMLDivElement> & React_2.RefAttributes<HTMLDivElement>, "view" | "size"> & React_2.RefAttributes<HTMLButtonElement>) => React_2.ReactElement<any, string | React_2.JSXElementConstructor<any>> | null;
|
1835
1840
|
|
1841
|
+
// @public (undocumented)
|
1842
|
+
export const Dropzone: FunctionComponent<PropsType< {
|
1843
|
+
view: {
|
1844
|
+
default: PolymorphicClassName;
|
1845
|
+
};
|
1846
|
+
size: {
|
1847
|
+
m: PolymorphicClassName;
|
1848
|
+
};
|
1849
|
+
disabled: {
|
1850
|
+
true: PolymorphicClassName;
|
1851
|
+
};
|
1852
|
+
}> & {
|
1853
|
+
multiple?: boolean | undefined;
|
1854
|
+
title?: string | undefined;
|
1855
|
+
description?: string | undefined;
|
1856
|
+
icon?: ReactNode;
|
1857
|
+
iconPlacement?: "top" | "left" | undefined;
|
1858
|
+
size?: string | undefined;
|
1859
|
+
view?: string | undefined;
|
1860
|
+
disabled?: boolean | undefined;
|
1861
|
+
stretch?: boolean | undefined;
|
1862
|
+
onDragEnter?: ((event: DragEvent_2<HTMLDivElement>) => void) | undefined;
|
1863
|
+
onDragLeave?: ((event: DragEvent_2<HTMLDivElement>) => void) | undefined;
|
1864
|
+
onDragOver?: ((event: DragEvent_2<HTMLDivElement>) => void) | undefined;
|
1865
|
+
validator?: ((files: File[]) => ValidatorReturnType) | undefined;
|
1866
|
+
onDrop?: FileProcessHandler | undefined;
|
1867
|
+
onChoseFiles?: FileProcessHandler | undefined;
|
1868
|
+
} & InputHTMLAttributes_2<HTMLInputElement> & RefAttributes<HTMLInputElement>>;
|
1869
|
+
|
1870
|
+
export { dropzoneClasses }
|
1871
|
+
|
1872
|
+
export { dropzoneTokens }
|
1873
|
+
|
1836
1874
|
// @public (undocumented)
|
1837
1875
|
export const DsplL: FunctionComponent<PropsType< {
|
1838
1876
|
size: {
|