@appquality/unguess-design-system 3.1.89-tooltip → 3.1.89
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 +28 -0
- package/build/index.js +59 -52
- package/build/stories/buttons/button/index.stories.d.ts +0 -1
- package/build/stories/buttons/utils.d.ts +27 -27
- package/build/stories/chat/index.stories.d.ts +0 -1
- package/build/stories/dropdowns/select/index.stories.d.ts +0 -1
- package/build/stories/editor/index.stories.d.ts +0 -1
- package/build/stories/player/index.stories.d.ts +0 -1
- package/build/stories/player/parts/controlButton.d.ts +289 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
# v3.1.89 (Thu May 16 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Add tooltip to highlights and a brighter new player [#347](https://github.com/AppQuality/unguess-design-system/pull/347) ([@cannarocks](https://github.com/cannarocks))
|
|
6
|
+
- "Add isTransparent prop to TooltipArgs interface and implement transparent style in Tooltip component" [#345](https://github.com/AppQuality/unguess-design-system/pull/345) ([@cannarocks](https://github.com/cannarocks))
|
|
7
|
+
- "Update player controls and refactor styling" [#346](https://github.com/AppQuality/unguess-design-system/pull/346) ([@cannarocks](https://github.com/cannarocks))
|
|
8
|
+
- Demo [#344](https://github.com/AppQuality/unguess-design-system/pull/344) ([@cannarocks](https://github.com/cannarocks))
|
|
9
|
+
|
|
10
|
+
#### Authors: 1
|
|
11
|
+
|
|
12
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
# v3.1.88 (Mon May 13 2024)
|
|
17
|
+
|
|
18
|
+
#### 🐛 Bug Fix
|
|
19
|
+
|
|
20
|
+
- Player fixes [#343](https://github.com/AppQuality/unguess-design-system/pull/343) ([@cannarocks](https://github.com/cannarocks))
|
|
21
|
+
- Fix undefined state in player and reduce renders [#342](https://github.com/AppQuality/unguess-design-system/pull/342) ([@cannarocks](https://github.com/cannarocks))
|
|
22
|
+
|
|
23
|
+
#### Authors: 1
|
|
24
|
+
|
|
25
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
1
29
|
# v3.1.87 (Mon May 13 2024)
|
|
2
30
|
|
|
3
31
|
#### 🐛 Bug Fix
|
package/build/index.js
CHANGED
|
@@ -3918,6 +3918,10 @@ const SvgVolumeUnmutedFill = props => /*#__PURE__*/React__namespace.createElemen
|
|
|
3918
3918
|
d: "M11.77 9.77c.45-.45.73-1.08.73-1.77s-.28-1.31-.73-1.77m2.17 5.6c.97-.99 1.56-2.34 1.56-3.83 0-1.52-.62-2.89-1.61-3.89"
|
|
3919
3919
|
})));
|
|
3920
3920
|
|
|
3921
|
+
const ControlButton = styled__default["default"](IconButton) `
|
|
3922
|
+
color: ${({ theme }) => theme.palette.grey[700]};
|
|
3923
|
+
`;
|
|
3924
|
+
|
|
3921
3925
|
const AudioButton = () => {
|
|
3922
3926
|
const [hasAudio, setHasAudio] = React.useState(false);
|
|
3923
3927
|
const { isMuted, setMuted, context } = Video.useVideoContext();
|
|
@@ -3942,8 +3946,8 @@ const AudioButton = () => {
|
|
|
3942
3946
|
setMuted(!hasVolume(player.ref.current));
|
|
3943
3947
|
checkAudio(player.ref.current);
|
|
3944
3948
|
}
|
|
3945
|
-
}, [context.isPlaying, isMuted]);
|
|
3946
|
-
return (jsxRuntime.jsx(
|
|
3949
|
+
}, [context.isPlaying, isMuted, player, setMuted]);
|
|
3950
|
+
return (jsxRuntime.jsx(ControlButton, Object.assign({ disabled: !hasAudio, onClick: () => {
|
|
3947
3951
|
if (player === null || player === void 0 ? void 0 : player.ref.current) {
|
|
3948
3952
|
player.ref.current.volume = player.ref.current.volume > 0 ? 0 : 1;
|
|
3949
3953
|
setMuted(!player.ref.current.volume);
|
|
@@ -4280,18 +4284,18 @@ const ControlsGroupCenter = (props) => {
|
|
|
4280
4284
|
const nextTime = videoRef.currentTime + 10;
|
|
4281
4285
|
videoRef.currentTime = nextTime;
|
|
4282
4286
|
};
|
|
4283
|
-
return (jsxRuntime.jsxs(StyledDiv$3, Object.assign({}, props, { children: [jsxRuntime.jsx(
|
|
4287
|
+
return (jsxRuntime.jsxs(StyledDiv$3, Object.assign({}, props, { children: [jsxRuntime.jsx(ControlButton, Object.assign({ onClick: (e) => {
|
|
4284
4288
|
if (videoRef) {
|
|
4285
4289
|
videoRef.currentTime = 0;
|
|
4286
4290
|
}
|
|
4287
4291
|
e.stopPropagation();
|
|
4288
|
-
} }, { children: jsxRuntime.jsx(SvgPreviousFill, {}) })), jsxRuntime.jsx(
|
|
4292
|
+
} }, { children: jsxRuntime.jsx(SvgPreviousFill, {}) })), jsxRuntime.jsx(ControlButton, Object.assign({ onClick: (e) => {
|
|
4289
4293
|
onRewind();
|
|
4290
4294
|
e.stopPropagation();
|
|
4291
|
-
} }, { children: jsxRuntime.jsx(SvgBackSecondsFill, {}) })), jsxRuntime.jsx(
|
|
4295
|
+
} }, { children: jsxRuntime.jsx(SvgBackSecondsFill, {}) })), jsxRuntime.jsx(ControlButton, Object.assign({ size: "large", onClick: togglePlay }, { children: isPlaying ? (jsxRuntime.jsx(SvgPauseFill, { style: { width: "24px", height: "24px" } })) : (jsxRuntime.jsx(SvgPlayFill, { style: { width: "24px", height: "24px" } })) })), jsxRuntime.jsx(ControlButton, Object.assign({ onClick: (e) => {
|
|
4292
4296
|
onForward();
|
|
4293
4297
|
e.stopPropagation();
|
|
4294
|
-
} }, { children: jsxRuntime.jsx(SvgForwardSecondsFill, {}) })), jsxRuntime.jsx(
|
|
4298
|
+
} }, { children: jsxRuntime.jsx(SvgForwardSecondsFill, {}) })), jsxRuntime.jsx(ControlButton, Object.assign({ isPill: true, onClick: (e) => {
|
|
4295
4299
|
const newSpeed = getNextPlaybackRate(playBackRate);
|
|
4296
4300
|
if (videoRef === null || videoRef === void 0 ? void 0 : videoRef.playbackRate) {
|
|
4297
4301
|
setPlayBackRate(newSpeed);
|
|
@@ -4301,9 +4305,9 @@ const ControlsGroupCenter = (props) => {
|
|
|
4301
4305
|
} }, { children: jsxRuntime.jsxs(SM, Object.assign({ isBold: true, style: { lineHeight: "16px" } }, { children: [playBackRate, "x"] })) }))] })));
|
|
4302
4306
|
};
|
|
4303
4307
|
|
|
4304
|
-
var _path$f;
|
|
4308
|
+
var _path$f, _circle$1;
|
|
4305
4309
|
function _extends$i() { _extends$i = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$i.apply(this, arguments); }
|
|
4306
|
-
const
|
|
4310
|
+
const SvgTagStroke = props => /*#__PURE__*/React__namespace.createElement("svg", _extends$i({
|
|
4307
4311
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4308
4312
|
width: 16,
|
|
4309
4313
|
height: 16,
|
|
@@ -4312,19 +4316,54 @@ const SvgMaximizeStroke = props => /*#__PURE__*/React__namespace.createElement("
|
|
|
4312
4316
|
}, props), _path$f || (_path$f = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4313
4317
|
fill: "none",
|
|
4314
4318
|
stroke: "currentColor",
|
|
4315
|
-
|
|
4316
|
-
|
|
4319
|
+
d: "M.5 1v5.3c0 .1.1.3.1.4l8.5 8.5c.2.2.5.2.7 0l5.3-5.3c.2-.2.2-.5 0-.7L6.6.6S6.4.5 6.3.5H1C.7.5.5.7.5 1z"
|
|
4320
|
+
})), _circle$1 || (_circle$1 = /*#__PURE__*/React__namespace.createElement("circle", {
|
|
4321
|
+
cx: 4,
|
|
4322
|
+
cy: 4,
|
|
4323
|
+
r: 1,
|
|
4324
|
+
fill: "currentColor"
|
|
4317
4325
|
})));
|
|
4318
4326
|
|
|
4327
|
+
const Cutter = ({ onCutHandler, isCutting, i18n, }) => {
|
|
4328
|
+
var _a;
|
|
4329
|
+
const { context } = Video.useVideoContext();
|
|
4330
|
+
const videoRef = (_a = context.player) === null || _a === void 0 ? void 0 : _a.ref.current;
|
|
4331
|
+
if (!onCutHandler)
|
|
4332
|
+
return null;
|
|
4333
|
+
return (jsxRuntime.jsxs(Button, Object.assign({ isPrimary: true, isAccent: true, size: "small", onClick: (e) => {
|
|
4334
|
+
if (videoRef) {
|
|
4335
|
+
onCutHandler(videoRef.currentTime);
|
|
4336
|
+
}
|
|
4337
|
+
e.stopPropagation();
|
|
4338
|
+
} }, { children: [jsxRuntime.jsx(Button.StartIcon, { children: jsxRuntime.jsx(SvgTagStroke, {}) }), isCutting
|
|
4339
|
+
? (i18n === null || i18n === void 0 ? void 0 : i18n.onHighlight) || "Click again to stop"
|
|
4340
|
+
: (i18n === null || i18n === void 0 ? void 0 : i18n.beforeHighlight) || "New highlight"] })));
|
|
4341
|
+
};
|
|
4342
|
+
|
|
4319
4343
|
var _path$e;
|
|
4320
4344
|
function _extends$h() { _extends$h = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$h.apply(this, arguments); }
|
|
4321
|
-
const
|
|
4345
|
+
const SvgMaximizeStroke = props => /*#__PURE__*/React__namespace.createElement("svg", _extends$h({
|
|
4322
4346
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4323
4347
|
width: 16,
|
|
4324
4348
|
height: 16,
|
|
4325
4349
|
focusable: "false",
|
|
4326
4350
|
viewBox: "0 0 16 16"
|
|
4327
4351
|
}, props), _path$e || (_path$e = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4352
|
+
fill: "none",
|
|
4353
|
+
stroke: "currentColor",
|
|
4354
|
+
strokeLinecap: "round",
|
|
4355
|
+
d: "M4.5.5H1C.72.5.5.72.5 1v3.5m15 0V1c0-.28-.22-.5-.5-.5h-3.5m-11 11V15c0 .28.22.5.5.5h3.5m11-4V15c0 .28-.22.5-.5.5h-3.5m-7-11L1 1m10.5 3.5L15 1M4.5 11.5L1 15m10.5-3.5L15 15"
|
|
4356
|
+
})));
|
|
4357
|
+
|
|
4358
|
+
var _path$d;
|
|
4359
|
+
function _extends$g() { _extends$g = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$g.apply(this, arguments); }
|
|
4360
|
+
const SvgMinimizeStroke = props => /*#__PURE__*/React__namespace.createElement("svg", _extends$g({
|
|
4361
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4362
|
+
width: 16,
|
|
4363
|
+
height: 16,
|
|
4364
|
+
focusable: "false",
|
|
4365
|
+
viewBox: "0 0 16 16"
|
|
4366
|
+
}, props), _path$d || (_path$d = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4328
4367
|
fill: "none",
|
|
4329
4368
|
stroke: "currentColor",
|
|
4330
4369
|
strokeLinecap: "round",
|
|
@@ -4367,7 +4406,7 @@ const FullScreenButton = ({ container, }) => {
|
|
|
4367
4406
|
setFullScreen(false);
|
|
4368
4407
|
}
|
|
4369
4408
|
}
|
|
4370
|
-
}), [ref, isFullScreen]);
|
|
4409
|
+
}), [ref, isFullScreen, setFullScreen]);
|
|
4371
4410
|
const canGoFullScreen = React.useCallback(() => __awaiter(void 0, void 0, void 0, function* () {
|
|
4372
4411
|
if (ref) {
|
|
4373
4412
|
return (requestFullscreen ||
|
|
@@ -4392,7 +4431,7 @@ const FullScreenButton = ({ container, }) => {
|
|
|
4392
4431
|
}
|
|
4393
4432
|
};
|
|
4394
4433
|
}, [ref]);
|
|
4395
|
-
return (jsxRuntime.jsx(
|
|
4434
|
+
return (jsxRuntime.jsx(ControlButton, Object.assign({ onClick: (e) => {
|
|
4396
4435
|
handleFullScreen();
|
|
4397
4436
|
e.stopPropagation();
|
|
4398
4437
|
}, disabled: !canGoFullScreen() }, { children: document.fullscreenElement || isFullScreen ? (jsxRuntime.jsx(SvgMinimizeStroke, {})) : (jsxRuntime.jsx(SvgMaximizeStroke, {})) })));
|
|
@@ -4427,7 +4466,7 @@ const ProgressBar = React.forwardRef((props, ref) => {
|
|
|
4427
4466
|
|
|
4428
4467
|
const StyledDiv$2 = styled__default["default"].div `
|
|
4429
4468
|
display: flex;
|
|
4430
|
-
color: ${({ theme }) => theme.palette.grey[
|
|
4469
|
+
color: ${({ theme }) => theme.palette.grey[700]};
|
|
4431
4470
|
`;
|
|
4432
4471
|
const TimeLabel = ({ current, duration, }) => (jsxRuntime.jsx(StyledDiv$2, { children: jsxRuntime.jsxs(SM, Object.assign({ tag: "span" }, { children: [formatDuration(current), "/", formatDuration(duration)] })) }));
|
|
4433
4472
|
|
|
@@ -4453,48 +4492,13 @@ const PlayerTooltip = (_a) => {
|
|
|
4453
4492
|
return (jsxRuntime.jsx(Wrapper$1, Object.assign({}, props, { children: jsxRuntime.jsx(Content$1, { children: children }) })));
|
|
4454
4493
|
};
|
|
4455
4494
|
|
|
4456
|
-
var _path$d, _circle$1;
|
|
4457
|
-
function _extends$g() { _extends$g = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$g.apply(this, arguments); }
|
|
4458
|
-
const SvgTagStroke = props => /*#__PURE__*/React__namespace.createElement("svg", _extends$g({
|
|
4459
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
4460
|
-
width: 16,
|
|
4461
|
-
height: 16,
|
|
4462
|
-
focusable: "false",
|
|
4463
|
-
viewBox: "0 0 16 16"
|
|
4464
|
-
}, props), _path$d || (_path$d = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4465
|
-
fill: "none",
|
|
4466
|
-
stroke: "currentColor",
|
|
4467
|
-
d: "M.5 1v5.3c0 .1.1.3.1.4l8.5 8.5c.2.2.5.2.7 0l5.3-5.3c.2-.2.2-.5 0-.7L6.6.6S6.4.5 6.3.5H1C.7.5.5.7.5 1z"
|
|
4468
|
-
})), _circle$1 || (_circle$1 = /*#__PURE__*/React__namespace.createElement("circle", {
|
|
4469
|
-
cx: 4,
|
|
4470
|
-
cy: 4,
|
|
4471
|
-
r: 1,
|
|
4472
|
-
fill: "currentColor"
|
|
4473
|
-
})));
|
|
4474
|
-
|
|
4475
|
-
const Cutter = ({ onCutHandler, isCutting, i18n, }) => {
|
|
4476
|
-
var _a;
|
|
4477
|
-
const { context } = Video.useVideoContext();
|
|
4478
|
-
const videoRef = (_a = context.player) === null || _a === void 0 ? void 0 : _a.ref.current;
|
|
4479
|
-
if (!onCutHandler)
|
|
4480
|
-
return null;
|
|
4481
|
-
return (jsxRuntime.jsxs(Button, Object.assign({ isPrimary: true, isAccent: true, size: "small", onClick: (e) => {
|
|
4482
|
-
if (videoRef) {
|
|
4483
|
-
onCutHandler(videoRef.currentTime);
|
|
4484
|
-
}
|
|
4485
|
-
e.stopPropagation();
|
|
4486
|
-
} }, { children: [jsxRuntime.jsx(Button.StartIcon, { children: jsxRuntime.jsx(SvgTagStroke, {}) }), isCutting
|
|
4487
|
-
? (i18n === null || i18n === void 0 ? void 0 : i18n.onHighlight) || "Click again to stop"
|
|
4488
|
-
: (i18n === null || i18n === void 0 ? void 0 : i18n.beforeHighlight) || "New highlight"] })));
|
|
4489
|
-
};
|
|
4490
|
-
|
|
4491
4495
|
const ControlsWrapper = styled__default["default"].div `
|
|
4492
4496
|
position: absolute;
|
|
4493
4497
|
bottom: 0;
|
|
4494
4498
|
left: 0;
|
|
4495
4499
|
right: 0;
|
|
4496
4500
|
padding: ${({ theme }) => theme.space.xxs} 0;
|
|
4497
|
-
background-color: ${({ theme }) =>
|
|
4501
|
+
background-color: ${({ theme }) => theme.palette.grey[100]};
|
|
4498
4502
|
${({ isPlaying }) => isPlaying && "display: none;"}
|
|
4499
4503
|
z-index: 2;
|
|
4500
4504
|
`;
|
|
@@ -4634,6 +4638,10 @@ const BigButton = styled__default["default"](IconButton) `
|
|
|
4634
4638
|
min-width: ${({ theme }) => theme.space.base * 15}px;
|
|
4635
4639
|
width: 80px;
|
|
4636
4640
|
height: 80px;
|
|
4641
|
+
|
|
4642
|
+
box-shadow: ${({ theme }) => theme.shadows.boxShadow(theme)};
|
|
4643
|
+
|
|
4644
|
+
|
|
4637
4645
|
${PlayIcon} {
|
|
4638
4646
|
width: 60%;
|
|
4639
4647
|
height: 60%;
|
|
@@ -4700,8 +4708,7 @@ const Container$1 = styled__default["default"].div `
|
|
|
4700
4708
|
}
|
|
4701
4709
|
}
|
|
4702
4710
|
}
|
|
4703
|
-
|
|
4704
|
-
background-color: ${({ theme }) => theme.palette.grey[700]};
|
|
4711
|
+
background: ${({ theme }) => theme.palette.grey[100]};
|
|
4705
4712
|
`;
|
|
4706
4713
|
|
|
4707
4714
|
const UgSpinner = styled__default["default"](reactLoaders.Spinner) ``;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { ButtonArgs } from "./_types";
|
|
3
2
|
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, ButtonArgs>;
|
|
4
3
|
export declare const Basic: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, ButtonArgs>;
|
|
@@ -8,18 +8,18 @@ export declare const variants: readonly [{}, {
|
|
|
8
8
|
readonly disabled: true;
|
|
9
9
|
}];
|
|
10
10
|
export declare const Row: import("styled-components").IStyledComponent<"web", {
|
|
11
|
-
alignItems?: "start" | "
|
|
12
|
-
alignItemsXs?: "start" | "
|
|
13
|
-
alignItemsSm?: "start" | "
|
|
14
|
-
alignItemsMd?: "start" | "
|
|
15
|
-
alignItemsLg?: "start" | "
|
|
16
|
-
alignItemsXl?: "start" | "
|
|
17
|
-
justifyContent?: "start" | "
|
|
18
|
-
justifyContentXs?: "start" | "
|
|
19
|
-
justifyContentSm?: "start" | "
|
|
20
|
-
justifyContentMd?: "start" | "
|
|
21
|
-
justifyContentLg?: "start" | "
|
|
22
|
-
justifyContentXl?: "start" | "
|
|
11
|
+
alignItems?: "start" | "center" | "end" | "baseline" | "stretch" | undefined;
|
|
12
|
+
alignItemsXs?: "start" | "center" | "end" | "baseline" | "stretch" | undefined;
|
|
13
|
+
alignItemsSm?: "start" | "center" | "end" | "baseline" | "stretch" | undefined;
|
|
14
|
+
alignItemsMd?: "start" | "center" | "end" | "baseline" | "stretch" | undefined;
|
|
15
|
+
alignItemsLg?: "start" | "center" | "end" | "baseline" | "stretch" | undefined;
|
|
16
|
+
alignItemsXl?: "start" | "center" | "end" | "baseline" | "stretch" | undefined;
|
|
17
|
+
justifyContent?: "start" | "center" | "end" | "between" | "around" | undefined;
|
|
18
|
+
justifyContentXs?: "start" | "center" | "end" | "between" | "around" | undefined;
|
|
19
|
+
justifyContentSm?: "start" | "center" | "end" | "between" | "around" | undefined;
|
|
20
|
+
justifyContentMd?: "start" | "center" | "end" | "between" | "around" | undefined;
|
|
21
|
+
justifyContentLg?: "start" | "center" | "end" | "between" | "around" | undefined;
|
|
22
|
+
justifyContentXl?: "start" | "center" | "end" | "between" | "around" | undefined;
|
|
23
23
|
wrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
24
24
|
wrapXs?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
25
25
|
wrapSm?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
@@ -73,7 +73,7 @@ export declare const Row: import("styled-components").IStyledComponent<"web", {
|
|
|
73
73
|
results?: number | undefined;
|
|
74
74
|
security?: string | undefined;
|
|
75
75
|
unselectable?: "on" | "off" | undefined;
|
|
76
|
-
inputMode?: "
|
|
76
|
+
inputMode?: "decimal" | "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | undefined;
|
|
77
77
|
is?: string | undefined;
|
|
78
78
|
"aria-activedescendant"?: string | undefined;
|
|
79
79
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
@@ -299,18 +299,18 @@ export declare const Col: import("styled-components").IStyledComponent<"web", {
|
|
|
299
299
|
md?: string | number | boolean | undefined;
|
|
300
300
|
lg?: string | number | boolean | undefined;
|
|
301
301
|
xl?: string | number | boolean | undefined;
|
|
302
|
-
alignSelf?: "start" | "
|
|
303
|
-
alignSelfXs?: "start" | "
|
|
304
|
-
alignSelfSm?: "start" | "
|
|
305
|
-
alignSelfMd?: "start" | "
|
|
306
|
-
alignSelfLg?: "start" | "
|
|
307
|
-
alignSelfXl?: "start" | "
|
|
308
|
-
textAlign?: "start" | "
|
|
309
|
-
textAlignXs?: "start" | "
|
|
310
|
-
textAlignSm?: "start" | "
|
|
311
|
-
textAlignMd?: "start" | "
|
|
312
|
-
textAlignLg?: "start" | "
|
|
313
|
-
textAlignXl?: "start" | "
|
|
302
|
+
alignSelf?: "start" | "center" | "end" | "baseline" | "stretch" | "auto" | undefined;
|
|
303
|
+
alignSelfXs?: "start" | "center" | "end" | "baseline" | "stretch" | "auto" | undefined;
|
|
304
|
+
alignSelfSm?: "start" | "center" | "end" | "baseline" | "stretch" | "auto" | undefined;
|
|
305
|
+
alignSelfMd?: "start" | "center" | "end" | "baseline" | "stretch" | "auto" | undefined;
|
|
306
|
+
alignSelfLg?: "start" | "center" | "end" | "baseline" | "stretch" | "auto" | undefined;
|
|
307
|
+
alignSelfXl?: "start" | "center" | "end" | "baseline" | "stretch" | "auto" | undefined;
|
|
308
|
+
textAlign?: "start" | "center" | "end" | "justify" | undefined;
|
|
309
|
+
textAlignXs?: "start" | "center" | "end" | "justify" | undefined;
|
|
310
|
+
textAlignSm?: "start" | "center" | "end" | "justify" | undefined;
|
|
311
|
+
textAlignMd?: "start" | "center" | "end" | "justify" | undefined;
|
|
312
|
+
textAlignLg?: "start" | "center" | "end" | "justify" | undefined;
|
|
313
|
+
textAlignXl?: "start" | "center" | "end" | "justify" | undefined;
|
|
314
314
|
offset?: string | number | undefined;
|
|
315
315
|
offsetXs?: string | number | undefined;
|
|
316
316
|
offsetSm?: string | number | undefined;
|
|
@@ -370,7 +370,7 @@ export declare const Col: import("styled-components").IStyledComponent<"web", {
|
|
|
370
370
|
results?: number | undefined;
|
|
371
371
|
security?: string | undefined;
|
|
372
372
|
unselectable?: "on" | "off" | undefined;
|
|
373
|
-
inputMode?: "
|
|
373
|
+
inputMode?: "decimal" | "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | undefined;
|
|
374
374
|
is?: string | undefined;
|
|
375
375
|
"aria-activedescendant"?: string | undefined;
|
|
376
376
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
@@ -640,7 +640,7 @@ export declare const MD: import("styled-components").IStyledComponent<"web", {
|
|
|
640
640
|
results?: number | undefined;
|
|
641
641
|
security?: string | undefined;
|
|
642
642
|
unselectable?: "on" | "off" | undefined;
|
|
643
|
-
inputMode?: "
|
|
643
|
+
inputMode?: "decimal" | "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | undefined;
|
|
644
644
|
is?: string | undefined;
|
|
645
645
|
"aria-activedescendant"?: string | undefined;
|
|
646
646
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
@@ -0,0 +1,289 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const ControlButton: import("styled-components").IStyledComponent<"web", {
|
|
3
|
+
isBright?: boolean | undefined;
|
|
4
|
+
isAccent?: boolean | undefined;
|
|
5
|
+
isRotated?: boolean | undefined;
|
|
6
|
+
isDanger?: boolean | undefined;
|
|
7
|
+
size?: "small" | "medium" | "large" | undefined;
|
|
8
|
+
isNeutral?: boolean | undefined;
|
|
9
|
+
isPrimary?: boolean | undefined;
|
|
10
|
+
isBasic?: boolean | undefined;
|
|
11
|
+
isPill?: boolean | undefined;
|
|
12
|
+
focusInset?: boolean | undefined;
|
|
13
|
+
isSelected?: boolean | undefined;
|
|
14
|
+
disabled?: boolean | undefined;
|
|
15
|
+
form?: string | undefined;
|
|
16
|
+
formAction?: string | undefined;
|
|
17
|
+
formEncType?: string | undefined;
|
|
18
|
+
formMethod?: string | undefined;
|
|
19
|
+
formNoValidate?: boolean | undefined;
|
|
20
|
+
formTarget?: string | undefined;
|
|
21
|
+
name?: string | undefined;
|
|
22
|
+
type?: "button" | "submit" | "reset" | undefined;
|
|
23
|
+
value?: string | number | readonly string[] | undefined;
|
|
24
|
+
defaultChecked?: boolean | undefined;
|
|
25
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
26
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
27
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
28
|
+
accessKey?: string | undefined;
|
|
29
|
+
autoFocus?: boolean | undefined;
|
|
30
|
+
className?: string | undefined;
|
|
31
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
32
|
+
contextMenu?: string | undefined;
|
|
33
|
+
dir?: string | undefined;
|
|
34
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
35
|
+
hidden?: boolean | undefined;
|
|
36
|
+
id?: string | undefined;
|
|
37
|
+
lang?: string | undefined;
|
|
38
|
+
nonce?: string | undefined;
|
|
39
|
+
placeholder?: string | undefined;
|
|
40
|
+
slot?: string | undefined;
|
|
41
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
42
|
+
style?: import("react").CSSProperties | undefined;
|
|
43
|
+
tabIndex?: number | undefined;
|
|
44
|
+
title?: string | undefined;
|
|
45
|
+
translate?: "yes" | "no" | undefined;
|
|
46
|
+
radioGroup?: string | undefined;
|
|
47
|
+
role?: import("react").AriaRole | undefined;
|
|
48
|
+
about?: string | undefined;
|
|
49
|
+
content?: string | undefined;
|
|
50
|
+
datatype?: string | undefined;
|
|
51
|
+
inlist?: any;
|
|
52
|
+
prefix?: string | undefined;
|
|
53
|
+
property?: string | undefined;
|
|
54
|
+
rel?: string | undefined;
|
|
55
|
+
resource?: string | undefined;
|
|
56
|
+
rev?: string | undefined;
|
|
57
|
+
typeof?: string | undefined;
|
|
58
|
+
vocab?: string | undefined;
|
|
59
|
+
autoCapitalize?: string | undefined;
|
|
60
|
+
autoCorrect?: string | undefined;
|
|
61
|
+
autoSave?: string | undefined;
|
|
62
|
+
color?: string | undefined;
|
|
63
|
+
itemProp?: string | undefined;
|
|
64
|
+
itemScope?: boolean | undefined;
|
|
65
|
+
itemType?: string | undefined;
|
|
66
|
+
itemID?: string | undefined;
|
|
67
|
+
itemRef?: string | undefined;
|
|
68
|
+
results?: number | undefined;
|
|
69
|
+
security?: string | undefined;
|
|
70
|
+
unselectable?: "on" | "off" | undefined;
|
|
71
|
+
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
72
|
+
is?: string | undefined;
|
|
73
|
+
"aria-activedescendant"?: string | undefined;
|
|
74
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
75
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
76
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
77
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
78
|
+
"aria-colcount"?: number | undefined;
|
|
79
|
+
"aria-colindex"?: number | undefined;
|
|
80
|
+
"aria-colspan"?: number | undefined;
|
|
81
|
+
"aria-controls"?: string | undefined;
|
|
82
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
83
|
+
"aria-describedby"?: string | undefined;
|
|
84
|
+
"aria-details"?: string | undefined;
|
|
85
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
86
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
87
|
+
"aria-errormessage"?: string | undefined;
|
|
88
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
89
|
+
"aria-flowto"?: string | undefined;
|
|
90
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
91
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
92
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
93
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
94
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
95
|
+
"aria-label"?: string | undefined;
|
|
96
|
+
"aria-labelledby"?: string | undefined;
|
|
97
|
+
"aria-level"?: number | undefined;
|
|
98
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
99
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
100
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
101
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
102
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
103
|
+
"aria-owns"?: string | undefined;
|
|
104
|
+
"aria-placeholder"?: string | undefined;
|
|
105
|
+
"aria-posinset"?: number | undefined;
|
|
106
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
107
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
108
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
109
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
110
|
+
"aria-roledescription"?: string | undefined;
|
|
111
|
+
"aria-rowcount"?: number | undefined;
|
|
112
|
+
"aria-rowindex"?: number | undefined;
|
|
113
|
+
"aria-rowspan"?: number | undefined;
|
|
114
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
115
|
+
"aria-setsize"?: number | undefined;
|
|
116
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
117
|
+
"aria-valuemax"?: number | undefined;
|
|
118
|
+
"aria-valuemin"?: number | undefined;
|
|
119
|
+
"aria-valuenow"?: number | undefined;
|
|
120
|
+
"aria-valuetext"?: string | undefined;
|
|
121
|
+
children?: import("react").ReactNode;
|
|
122
|
+
dangerouslySetInnerHTML?: {
|
|
123
|
+
__html: string | TrustedHTML;
|
|
124
|
+
} | undefined;
|
|
125
|
+
onCopy?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
126
|
+
onCopyCapture?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
127
|
+
onCut?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
128
|
+
onCutCapture?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
129
|
+
onPaste?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
130
|
+
onPasteCapture?: import("react").ClipboardEventHandler<HTMLButtonElement> | undefined;
|
|
131
|
+
onCompositionEnd?: import("react").CompositionEventHandler<HTMLButtonElement> | undefined;
|
|
132
|
+
onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLButtonElement> | undefined;
|
|
133
|
+
onCompositionStart?: import("react").CompositionEventHandler<HTMLButtonElement> | undefined;
|
|
134
|
+
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLButtonElement> | undefined;
|
|
135
|
+
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLButtonElement> | undefined;
|
|
136
|
+
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLButtonElement> | undefined;
|
|
137
|
+
onFocus?: import("react").FocusEventHandler<HTMLButtonElement> | undefined;
|
|
138
|
+
onFocusCapture?: import("react").FocusEventHandler<HTMLButtonElement> | undefined;
|
|
139
|
+
onBlur?: import("react").FocusEventHandler<HTMLButtonElement> | undefined;
|
|
140
|
+
onBlurCapture?: import("react").FocusEventHandler<HTMLButtonElement> | undefined;
|
|
141
|
+
onChange?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
142
|
+
onChangeCapture?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
143
|
+
onBeforeInput?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
144
|
+
onBeforeInputCapture?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
145
|
+
onInput?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
146
|
+
onInputCapture?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
147
|
+
onReset?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
148
|
+
onResetCapture?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
149
|
+
onSubmit?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
150
|
+
onSubmitCapture?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
151
|
+
onInvalid?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
152
|
+
onInvalidCapture?: import("react").FormEventHandler<HTMLButtonElement> | undefined;
|
|
153
|
+
onLoad?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
154
|
+
onLoadCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
155
|
+
onError?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
156
|
+
onErrorCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
157
|
+
onKeyDown?: import("react").KeyboardEventHandler<HTMLButtonElement> | undefined;
|
|
158
|
+
onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLButtonElement> | undefined;
|
|
159
|
+
onKeyPress?: import("react").KeyboardEventHandler<HTMLButtonElement> | undefined;
|
|
160
|
+
onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLButtonElement> | undefined;
|
|
161
|
+
onKeyUp?: import("react").KeyboardEventHandler<HTMLButtonElement> | undefined;
|
|
162
|
+
onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLButtonElement> | undefined;
|
|
163
|
+
onAbort?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
164
|
+
onAbortCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
165
|
+
onCanPlay?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
166
|
+
onCanPlayCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
167
|
+
onCanPlayThrough?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
168
|
+
onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
169
|
+
onDurationChange?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
170
|
+
onDurationChangeCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
171
|
+
onEmptied?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
172
|
+
onEmptiedCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
173
|
+
onEncrypted?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
174
|
+
onEncryptedCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
175
|
+
onEnded?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
176
|
+
onEndedCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
177
|
+
onLoadedData?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
178
|
+
onLoadedDataCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
179
|
+
onLoadedMetadata?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
180
|
+
onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
181
|
+
onLoadStart?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
182
|
+
onLoadStartCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
183
|
+
onPause?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
184
|
+
onPauseCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
185
|
+
onPlay?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
186
|
+
onPlayCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
187
|
+
onPlaying?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
188
|
+
onPlayingCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
189
|
+
onProgress?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
190
|
+
onProgressCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
191
|
+
onRateChange?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
192
|
+
onRateChangeCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
193
|
+
onResize?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
194
|
+
onResizeCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
195
|
+
onSeeked?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
196
|
+
onSeekedCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
197
|
+
onSeeking?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
198
|
+
onSeekingCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
199
|
+
onStalled?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
200
|
+
onStalledCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
201
|
+
onSuspend?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
202
|
+
onSuspendCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
203
|
+
onTimeUpdate?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
204
|
+
onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
205
|
+
onVolumeChange?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
206
|
+
onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
207
|
+
onWaiting?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
208
|
+
onWaitingCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
209
|
+
onAuxClick?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
210
|
+
onAuxClickCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
211
|
+
onClick?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
212
|
+
onClickCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
213
|
+
onContextMenu?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
214
|
+
onContextMenuCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
215
|
+
onDoubleClick?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
216
|
+
onDoubleClickCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
217
|
+
onDrag?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
218
|
+
onDragCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
219
|
+
onDragEnd?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
220
|
+
onDragEndCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
221
|
+
onDragEnter?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
222
|
+
onDragEnterCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
223
|
+
onDragExit?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
224
|
+
onDragExitCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
225
|
+
onDragLeave?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
226
|
+
onDragLeaveCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
227
|
+
onDragOver?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
228
|
+
onDragOverCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
229
|
+
onDragStart?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
230
|
+
onDragStartCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
231
|
+
onDrop?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
232
|
+
onDropCapture?: import("react").DragEventHandler<HTMLButtonElement> | undefined;
|
|
233
|
+
onMouseDown?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
234
|
+
onMouseDownCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
235
|
+
onMouseEnter?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
236
|
+
onMouseLeave?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
237
|
+
onMouseMove?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
238
|
+
onMouseMoveCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
239
|
+
onMouseOut?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
240
|
+
onMouseOutCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
241
|
+
onMouseOver?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
242
|
+
onMouseOverCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
243
|
+
onMouseUp?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
244
|
+
onMouseUpCapture?: import("react").MouseEventHandler<HTMLButtonElement> | undefined;
|
|
245
|
+
onSelect?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
246
|
+
onSelectCapture?: import("react").ReactEventHandler<HTMLButtonElement> | undefined;
|
|
247
|
+
onTouchCancel?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
|
|
248
|
+
onTouchCancelCapture?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
|
|
249
|
+
onTouchEnd?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
|
|
250
|
+
onTouchEndCapture?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
|
|
251
|
+
onTouchMove?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
|
|
252
|
+
onTouchMoveCapture?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
|
|
253
|
+
onTouchStart?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
|
|
254
|
+
onTouchStartCapture?: import("react").TouchEventHandler<HTMLButtonElement> | undefined;
|
|
255
|
+
onPointerDown?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
256
|
+
onPointerDownCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
257
|
+
onPointerMove?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
258
|
+
onPointerMoveCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
259
|
+
onPointerUp?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
260
|
+
onPointerUpCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
261
|
+
onPointerCancel?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
262
|
+
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
263
|
+
onPointerEnter?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
264
|
+
onPointerEnterCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
265
|
+
onPointerLeave?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
266
|
+
onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
267
|
+
onPointerOver?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
268
|
+
onPointerOverCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
269
|
+
onPointerOut?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
270
|
+
onPointerOutCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
271
|
+
onGotPointerCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
272
|
+
onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
273
|
+
onLostPointerCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
274
|
+
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLButtonElement> | undefined;
|
|
275
|
+
onScroll?: import("react").UIEventHandler<HTMLButtonElement> | undefined;
|
|
276
|
+
onScrollCapture?: import("react").UIEventHandler<HTMLButtonElement> | undefined;
|
|
277
|
+
onWheel?: import("react").WheelEventHandler<HTMLButtonElement> | undefined;
|
|
278
|
+
onWheelCapture?: import("react").WheelEventHandler<HTMLButtonElement> | undefined;
|
|
279
|
+
onAnimationStart?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
280
|
+
onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
281
|
+
onAnimationEnd?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
282
|
+
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
283
|
+
onAnimationIteration?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
284
|
+
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
285
|
+
onTransitionEnd?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
286
|
+
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
287
|
+
ref?: import("react").Ref<HTMLButtonElement> | undefined;
|
|
288
|
+
key?: import("react").Key | null | undefined;
|
|
289
|
+
}> & import("react").ForwardRefExoticComponent<import("../../buttons/icon-button/_types").IconButtonArgs & import("react").RefAttributes<HTMLButtonElement>>;
|