@appquality/unguess-design-system 3.1.91-alpha-marks → 3.1.91-multi-layers
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/build/index.js +73 -25
- package/build/stories/buttons/button/index.stories.d.ts +1 -0
- package/build/stories/buttons/utils.d.ts +33 -33
- package/build/stories/chat/index.stories.d.ts +1 -0
- package/build/stories/dropdowns/select/index.stories.d.ts +1 -0
- package/build/stories/editor/index.stories.d.ts +1 -0
- package/build/stories/highlight/_types.d.ts +1 -2
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -4037,6 +4037,9 @@ const StyledGrabber = styled.styled.div `
|
|
|
4037
4037
|
const activeBookMark = styled.css `
|
|
4038
4038
|
height: 250%;
|
|
4039
4039
|
transform: translateY(-30%);
|
|
4040
|
+
cursor: pointer;
|
|
4041
|
+
z-index: 2;
|
|
4042
|
+
border-radius: 4px;
|
|
4040
4043
|
|
|
4041
4044
|
${StyledGrabber} {
|
|
4042
4045
|
display: block;
|
|
@@ -4045,17 +4048,18 @@ const activeBookMark = styled.css `
|
|
|
4045
4048
|
const Rect = styled.styled.div `
|
|
4046
4049
|
position: absolute;
|
|
4047
4050
|
height: 110%;
|
|
4048
|
-
background-color: ${({ hue, theme }) => hue || theme.palette.grey[800]};
|
|
4051
|
+
background-color: ${({ hue, theme }) => getColor(hue || theme.palette.grey[800], undefined, undefined, 0.8)};
|
|
4049
4052
|
z-index: 1;
|
|
4050
4053
|
border-radius: 2px;
|
|
4054
|
+
color: white;
|
|
4055
|
+
transition: width 0.1s ease;
|
|
4056
|
+
|
|
4051
4057
|
&:hover {
|
|
4058
|
+
background-color: ${({ hue, theme }) => hue || theme.palette.grey[800]};
|
|
4052
4059
|
${activeBookMark}
|
|
4053
|
-
border-radius: 4px;
|
|
4054
4060
|
}
|
|
4055
|
-
color: white;
|
|
4056
|
-
${({ isActive }) => isActive && activeBookMark}
|
|
4057
4061
|
|
|
4058
|
-
|
|
4062
|
+
${({ isActive }) => isActive && activeBookMark}
|
|
4059
4063
|
`;
|
|
4060
4064
|
const StyledTooltip$1 = styled.styled(Tooltip) `
|
|
4061
4065
|
margin-bottom: ${({ theme }) => theme.space.sm};
|
|
@@ -4501,6 +4505,15 @@ const StyledDiv$1 = styled__default["default"].div `
|
|
|
4501
4505
|
display: flex;
|
|
4502
4506
|
align-items: center;
|
|
4503
4507
|
`;
|
|
4508
|
+
const CurrentTimeMarker = styled__default["default"].div `
|
|
4509
|
+
width: 2px;
|
|
4510
|
+
top: 0;
|
|
4511
|
+
left: ${({ left }) => `${left}%`};
|
|
4512
|
+
position: absolute;
|
|
4513
|
+
height: 110%;
|
|
4514
|
+
z-index: 1;
|
|
4515
|
+
background-color: white;
|
|
4516
|
+
`;
|
|
4504
4517
|
const Controls = ({ container, onCutHandler, bookmarks, isCutting, onBookMarkUpdated, i18n, }) => {
|
|
4505
4518
|
var _a, _b, _c;
|
|
4506
4519
|
const [progress, setProgress] = React.useState(0);
|
|
@@ -4512,6 +4525,9 @@ const Controls = ({ container, onCutHandler, bookmarks, isCutting, onBookMarkUpd
|
|
|
4512
4525
|
const { context, setCurrentTime } = Video.useVideoContext();
|
|
4513
4526
|
const debouncedMark = useDebounce(updatedMark, 500);
|
|
4514
4527
|
const { reset, isGrabbing, activeBookmark, fromEnd } = useProgressContext();
|
|
4528
|
+
React.useEffect(() => {
|
|
4529
|
+
setMarks(bookmarks);
|
|
4530
|
+
}, [bookmarks]);
|
|
4515
4531
|
const relCurrentTime = ((_a = context.player) === null || _a === void 0 ? void 0 : _a.currentTime)
|
|
4516
4532
|
? ((_b = context.player) === null || _b === void 0 ? void 0 : _b.currentTime) - context.part.start
|
|
4517
4533
|
: 0;
|
|
@@ -4584,7 +4600,7 @@ const Controls = ({ container, onCutHandler, bookmarks, isCutting, onBookMarkUpd
|
|
|
4584
4600
|
}
|
|
4585
4601
|
}, [debouncedMark, onBookMarkUpdated]);
|
|
4586
4602
|
return (jsxRuntime.jsxs(ControlsWrapper, Object.assign({ isPlaying: context.isPlaying }, { children: [jsxRuntime.jsxs(ProgressContainer, Object.assign({ onMouseEnter: onMouseEvent, onMouseMove: onMouseEvent, onMouseLeave: onMouseEvent }, { children: [jsxRuntime.jsx(StyledTooltip, Object.assign({ style: { marginLeft: `${tooltipMargin}px` } }, { children: tooltipLabel })), !!duration &&
|
|
4587
|
-
(marks === null || marks === void 0 ? void 0 : marks.map((bookmark, index) => (jsxRuntime.jsx(Bookmark, Object.assign({}, bookmark), `${index}${bookmark.start}`)))), jsxRuntime.jsx(ProgressBar, { ref: progressRef, progress: progress, handleSkipAhead: handleSkipAhead, duration: duration })] })), jsxRuntime.jsxs(ControlsBar, { children: [jsxRuntime.jsxs(StyledDiv$1, Object.assign({ style: { width: "20%", justifyContent: "start" } }, { children: [jsxRuntime.jsx(AudioButton, {}), jsxRuntime.jsx(TimeLabel, { current: relCurrentTime, duration: duration })] })), jsxRuntime.jsx(ControlsGroupCenter, { style: { width: "60%" } }), jsxRuntime.jsxs(StyledDiv$1, Object.assign({ style: { width: "20%", justifyContent: "end" } }, { children: [jsxRuntime.jsx(Cutter, { onCutHandler: onCutHandler, isCutting: isCutting, i18n: i18n }), jsxRuntime.jsx(FullScreenButton, { container: container })] }))] })] })));
|
|
4603
|
+
(marks === null || marks === void 0 ? void 0 : marks.map((bookmark, index) => (jsxRuntime.jsx(Bookmark, Object.assign({}, bookmark), `${index}${bookmark.start}`)))), jsxRuntime.jsx(ProgressBar, { ref: progressRef, progress: progress, handleSkipAhead: handleSkipAhead, duration: duration }), jsxRuntime.jsx(CurrentTimeMarker, { left: progress })] })), jsxRuntime.jsxs(ControlsBar, { children: [jsxRuntime.jsxs(StyledDiv$1, Object.assign({ style: { width: "20%", justifyContent: "start" } }, { children: [jsxRuntime.jsx(AudioButton, {}), jsxRuntime.jsx(TimeLabel, { current: relCurrentTime, duration: duration })] })), jsxRuntime.jsx(ControlsGroupCenter, { style: { width: "60%" } }), jsxRuntime.jsxs(StyledDiv$1, Object.assign({ style: { width: "20%", justifyContent: "end" } }, { children: [jsxRuntime.jsx(Cutter, { onCutHandler: onCutHandler, isCutting: isCutting, i18n: i18n }), jsxRuntime.jsx(FullScreenButton, { container: container })] }))] })] })));
|
|
4588
4604
|
};
|
|
4589
4605
|
|
|
4590
4606
|
var _path$c;
|
|
@@ -5594,24 +5610,23 @@ const Searchable = ({ text, }) => {
|
|
|
5594
5610
|
return jsxRuntime.jsx(jsxRuntime.Fragment, { children: text });
|
|
5595
5611
|
};
|
|
5596
5612
|
|
|
5597
|
-
const StyledWord = styled__default["default"]
|
|
5613
|
+
const StyledWord = styled__default["default"].div `
|
|
5614
|
+
display: inline;
|
|
5598
5615
|
font-size: ${({ theme, size }) => theme.fontSizes[size !== null && size !== void 0 ? size : "md"]};
|
|
5599
5616
|
padding: ${({ theme }) => theme.space.xxs} 0;
|
|
5617
|
+
position: relative;
|
|
5600
5618
|
|
|
5601
|
-
${({
|
|
5602
|
-
var _a
|
|
5603
|
-
return
|
|
5604
|
-
`
|
|
5605
|
-
|
|
5606
|
-
color: ${(_b = observation.color) !== null && _b !== void 0 ? _b : "white"};
|
|
5619
|
+
${({ observations, theme }) => {
|
|
5620
|
+
var _a;
|
|
5621
|
+
return observations && observations.length > 0 &&
|
|
5622
|
+
`
|
|
5623
|
+
color: ${(_a = observations[observations.length - 1].color) !== null && _a !== void 0 ? _a : theme.palette.grey[600]};
|
|
5607
5624
|
box-sizing: border-box;
|
|
5625
|
+
font-weight: ${theme.fontWeights.semibold};
|
|
5626
|
+
|
|
5608
5627
|
&:focus {
|
|
5609
5628
|
outline: none;
|
|
5610
5629
|
}
|
|
5611
|
-
|
|
5612
|
-
+ span:not([observation]) {
|
|
5613
|
-
margin-left: 2px;
|
|
5614
|
-
}
|
|
5615
5630
|
`;
|
|
5616
5631
|
}}
|
|
5617
5632
|
`;
|
|
@@ -5627,18 +5642,45 @@ const WordsContainer = styled__default["default"].div `
|
|
|
5627
5642
|
}
|
|
5628
5643
|
}
|
|
5629
5644
|
`;
|
|
5645
|
+
const Layer = styled__default["default"].div `
|
|
5646
|
+
position: absolute;
|
|
5647
|
+
top: 0;
|
|
5648
|
+
left: 0;
|
|
5649
|
+
width: 100%;
|
|
5650
|
+
height: 100%;
|
|
5651
|
+
z-index: 0;
|
|
5652
|
+
background-color: ${({ color }) => getColor(color, 700, undefined, 0.5)};
|
|
5653
|
+
`;
|
|
5630
5654
|
/**
|
|
5631
5655
|
* Use Highlight to use highlight interation on any text element
|
|
5632
5656
|
*/
|
|
5633
5657
|
const Highlight = (props) => {
|
|
5634
5658
|
const ref = React.useRef(null);
|
|
5659
|
+
const extractText = (selection) => {
|
|
5660
|
+
if (selection.anchorNode === null || selection.focusNode === null)
|
|
5661
|
+
return "";
|
|
5662
|
+
var range = selection.getRangeAt(0);
|
|
5663
|
+
var tempDiv = document.createElement("div");
|
|
5664
|
+
tempDiv.appendChild(range.cloneContents());
|
|
5665
|
+
var items = tempDiv.querySelectorAll("div");
|
|
5666
|
+
items.forEach(function (item) {
|
|
5667
|
+
if (item.getAttribute("data-unselectable")) {
|
|
5668
|
+
item.remove();
|
|
5669
|
+
}
|
|
5670
|
+
});
|
|
5671
|
+
var filteredText = tempDiv.textContent || tempDiv.innerText;
|
|
5672
|
+
return filteredText.length ? filteredText.trim() : selection.toString();
|
|
5673
|
+
};
|
|
5635
5674
|
const handleSelectionChange = React.useCallback(() => {
|
|
5636
5675
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
5637
5676
|
const activeSelection = document.getSelection();
|
|
5638
|
-
|
|
5639
|
-
if (!activeSelection || !text) {
|
|
5677
|
+
if (!activeSelection) {
|
|
5640
5678
|
return;
|
|
5641
5679
|
}
|
|
5680
|
+
// Extract the text from the selection cleaning unselectable items
|
|
5681
|
+
const text = extractText(activeSelection);
|
|
5682
|
+
if (!text)
|
|
5683
|
+
return;
|
|
5642
5684
|
const anchorNode = (_a = activeSelection === null || activeSelection === void 0 ? void 0 : activeSelection.anchorNode) === null || _a === void 0 ? void 0 : _a.parentElement;
|
|
5643
5685
|
const focusNode = (_b = activeSelection === null || activeSelection === void 0 ? void 0 : activeSelection.focusNode) === null || _b === void 0 ? void 0 : _b.parentElement;
|
|
5644
5686
|
if (anchorNode &&
|
|
@@ -5664,16 +5706,22 @@ const Highlight = (props) => {
|
|
|
5664
5706
|
return (jsxRuntime.jsx(HighlightContextProvider, Object.assign({ term: props.search }, { children: jsxRuntime.jsx(WordsContainer, Object.assign({ ref: ref }, { children: props.children })) })));
|
|
5665
5707
|
};
|
|
5666
5708
|
const Word = (props) => {
|
|
5667
|
-
var _a;
|
|
5668
5709
|
const isActive = props.currentTime &&
|
|
5669
5710
|
props.currentTime >= props.start &&
|
|
5670
5711
|
props.currentTime < props.end;
|
|
5671
|
-
//
|
|
5672
|
-
const
|
|
5673
|
-
|
|
5674
|
-
return (
|
|
5712
|
+
// Are there any observations containing this word?
|
|
5713
|
+
const foundObservations = React.useMemo(() => {
|
|
5714
|
+
var _a, _b;
|
|
5715
|
+
return (_b = (_a = props.observations) === null || _a === void 0 ? void 0 : _a.filter((obs) => props.start >= obs.start && props.end <= obs.end)) !== null && _b !== void 0 ? _b : [];
|
|
5716
|
+
}, [props.observations, props.start, props.end]);
|
|
5717
|
+
const ObsWord = React.useMemo(() => (jsxRuntime.jsxs(StyledWord, Object.assign({}, props, { "data-start": props.start, "data-end": props.end, className: foundObservations.length > 0 ? "highlighted" : "" }, (foundObservations && { observations: foundObservations }), { children: [foundObservations.length > 0 && foundObservations.map((obs) => {
|
|
5718
|
+
var _a;
|
|
5719
|
+
return (jsxRuntime.jsx(Layer, { color: (_a = obs.hue) !== null && _a !== void 0 ? _a : theme.palette.grey[600] }, obs.id));
|
|
5720
|
+
}), isActive ? (jsxRuntime.jsx(ActiveWord, { children: jsxRuntime.jsx(Searchable, { text: props.text }) })) : (jsxRuntime.jsx(Searchable, { text: props.text })), " "] }))), [props, foundObservations, isActive]);
|
|
5721
|
+
if (props.tooltipContent !== undefined && foundObservations.length > 0) {
|
|
5722
|
+
return (jsxRuntime.jsx(Tooltip, Object.assign({ content: props.tooltipContent(foundObservations), isTransparent: true }, { children: ObsWord })));
|
|
5675
5723
|
}
|
|
5676
|
-
return
|
|
5724
|
+
return jsxRuntime.jsx(jsxRuntime.Fragment, { children: ObsWord });
|
|
5677
5725
|
};
|
|
5678
5726
|
Highlight.Word = Word;
|
|
5679
5727
|
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import { ButtonArgs } from "./_types";
|
|
2
3
|
export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, ButtonArgs>;
|
|
3
4
|
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?: "
|
|
12
|
-
alignItemsXs?: "
|
|
13
|
-
alignItemsSm?: "
|
|
14
|
-
alignItemsMd?: "
|
|
15
|
-
alignItemsLg?: "
|
|
16
|
-
alignItemsXl?: "
|
|
17
|
-
justifyContent?: "
|
|
18
|
-
justifyContentXs?: "
|
|
19
|
-
justifyContentSm?: "
|
|
20
|
-
justifyContentMd?: "
|
|
21
|
-
justifyContentLg?: "
|
|
22
|
-
justifyContentXl?: "
|
|
11
|
+
alignItems?: "center" | "start" | "end" | "baseline" | "stretch" | undefined;
|
|
12
|
+
alignItemsXs?: "center" | "start" | "end" | "baseline" | "stretch" | undefined;
|
|
13
|
+
alignItemsSm?: "center" | "start" | "end" | "baseline" | "stretch" | undefined;
|
|
14
|
+
alignItemsMd?: "center" | "start" | "end" | "baseline" | "stretch" | undefined;
|
|
15
|
+
alignItemsLg?: "center" | "start" | "end" | "baseline" | "stretch" | undefined;
|
|
16
|
+
alignItemsXl?: "center" | "start" | "end" | "baseline" | "stretch" | undefined;
|
|
17
|
+
justifyContent?: "center" | "start" | "end" | "between" | "around" | undefined;
|
|
18
|
+
justifyContentXs?: "center" | "start" | "end" | "between" | "around" | undefined;
|
|
19
|
+
justifyContentSm?: "center" | "start" | "end" | "between" | "around" | undefined;
|
|
20
|
+
justifyContentMd?: "center" | "start" | "end" | "between" | "around" | undefined;
|
|
21
|
+
justifyContentLg?: "center" | "start" | "end" | "between" | "around" | undefined;
|
|
22
|
+
justifyContentXl?: "center" | "start" | "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?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
77
77
|
is?: string | undefined;
|
|
78
78
|
"aria-activedescendant"?: string | undefined;
|
|
79
79
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
@@ -84,7 +84,7 @@ export declare const Row: import("styled-components").IStyledComponent<"web", {
|
|
|
84
84
|
"aria-colindex"?: number | undefined;
|
|
85
85
|
"aria-colspan"?: number | undefined;
|
|
86
86
|
"aria-controls"?: string | undefined;
|
|
87
|
-
"aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" |
|
|
87
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
88
88
|
"aria-describedby"?: string | undefined;
|
|
89
89
|
"aria-details"?: string | undefined;
|
|
90
90
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
@@ -93,7 +93,7 @@ export declare const Row: import("styled-components").IStyledComponent<"web", {
|
|
|
93
93
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
94
94
|
"aria-flowto"?: string | undefined;
|
|
95
95
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
96
|
-
"aria-haspopup"?: boolean | "
|
|
96
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
97
97
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
98
98
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
99
99
|
"aria-keyshortcuts"?: string | 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?: "
|
|
303
|
-
alignSelfXs?: "
|
|
304
|
-
alignSelfSm?: "
|
|
305
|
-
alignSelfMd?: "
|
|
306
|
-
alignSelfLg?: "
|
|
307
|
-
alignSelfXl?: "
|
|
308
|
-
textAlign?: "
|
|
309
|
-
textAlignXs?: "
|
|
310
|
-
textAlignSm?: "
|
|
311
|
-
textAlignMd?: "
|
|
312
|
-
textAlignLg?: "
|
|
313
|
-
textAlignXl?: "
|
|
302
|
+
alignSelf?: "center" | "auto" | "start" | "end" | "baseline" | "stretch" | undefined;
|
|
303
|
+
alignSelfXs?: "center" | "auto" | "start" | "end" | "baseline" | "stretch" | undefined;
|
|
304
|
+
alignSelfSm?: "center" | "auto" | "start" | "end" | "baseline" | "stretch" | undefined;
|
|
305
|
+
alignSelfMd?: "center" | "auto" | "start" | "end" | "baseline" | "stretch" | undefined;
|
|
306
|
+
alignSelfLg?: "center" | "auto" | "start" | "end" | "baseline" | "stretch" | undefined;
|
|
307
|
+
alignSelfXl?: "center" | "auto" | "start" | "end" | "baseline" | "stretch" | undefined;
|
|
308
|
+
textAlign?: "center" | "start" | "end" | "justify" | undefined;
|
|
309
|
+
textAlignXs?: "center" | "start" | "end" | "justify" | undefined;
|
|
310
|
+
textAlignSm?: "center" | "start" | "end" | "justify" | undefined;
|
|
311
|
+
textAlignMd?: "center" | "start" | "end" | "justify" | undefined;
|
|
312
|
+
textAlignLg?: "center" | "start" | "end" | "justify" | undefined;
|
|
313
|
+
textAlignXl?: "center" | "start" | "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?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
374
374
|
is?: string | undefined;
|
|
375
375
|
"aria-activedescendant"?: string | undefined;
|
|
376
376
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
@@ -381,7 +381,7 @@ export declare const Col: import("styled-components").IStyledComponent<"web", {
|
|
|
381
381
|
"aria-colindex"?: number | undefined;
|
|
382
382
|
"aria-colspan"?: number | undefined;
|
|
383
383
|
"aria-controls"?: string | undefined;
|
|
384
|
-
"aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" |
|
|
384
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
385
385
|
"aria-describedby"?: string | undefined;
|
|
386
386
|
"aria-details"?: string | undefined;
|
|
387
387
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
@@ -390,7 +390,7 @@ export declare const Col: import("styled-components").IStyledComponent<"web", {
|
|
|
390
390
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
391
391
|
"aria-flowto"?: string | undefined;
|
|
392
392
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
393
|
-
"aria-haspopup"?: boolean | "
|
|
393
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
394
394
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
395
395
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
396
396
|
"aria-keyshortcuts"?: string | 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?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
644
644
|
is?: string | undefined;
|
|
645
645
|
"aria-activedescendant"?: string | undefined;
|
|
646
646
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
@@ -651,7 +651,7 @@ export declare const MD: import("styled-components").IStyledComponent<"web", {
|
|
|
651
651
|
"aria-colindex"?: number | undefined;
|
|
652
652
|
"aria-colspan"?: number | undefined;
|
|
653
653
|
"aria-controls"?: string | undefined;
|
|
654
|
-
"aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" |
|
|
654
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
655
655
|
"aria-describedby"?: string | undefined;
|
|
656
656
|
"aria-details"?: string | undefined;
|
|
657
657
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
@@ -660,7 +660,7 @@ export declare const MD: import("styled-components").IStyledComponent<"web", {
|
|
|
660
660
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
661
661
|
"aria-flowto"?: string | undefined;
|
|
662
662
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
663
|
-
"aria-haspopup"?: boolean | "
|
|
663
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
664
664
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
665
665
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
666
666
|
"aria-keyshortcuts"?: string | undefined;
|
|
@@ -31,7 +31,6 @@ export interface WordProps extends ISpanProps {
|
|
|
31
31
|
currentTime?: number;
|
|
32
32
|
observations?: Observation[];
|
|
33
33
|
text: string;
|
|
34
|
-
/** Adjusts the font size. By default font size is medium */
|
|
35
34
|
size?: "xs" | "sm" | "md" | "lg" | "xl" | "xxl" | "xxxl";
|
|
36
|
-
tooltipContent?: (
|
|
35
|
+
tooltipContent?: (observations: Observation[]) => ReactNode;
|
|
37
36
|
}
|