@tangible/ui 0.0.1
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/README.md +100 -0
- package/components/Accordion/Accordion.d.ts +22 -0
- package/components/Accordion/Accordion.js +192 -0
- package/components/Accordion/AccordionContext.d.ts +5 -0
- package/components/Accordion/AccordionContext.js +23 -0
- package/components/Accordion/index.d.ts +2 -0
- package/components/Accordion/index.js +1 -0
- package/components/Accordion/types.d.ts +61 -0
- package/components/Accordion/types.js +1 -0
- package/components/Avatar/Avatar.d.ts +11 -0
- package/components/Avatar/Avatar.js +67 -0
- package/components/Avatar/AvatarGroup.d.ts +11 -0
- package/components/Avatar/AvatarGroup.js +45 -0
- package/components/Avatar/index.d.ts +9 -0
- package/components/Avatar/index.js +7 -0
- package/components/Avatar/types.d.ts +44 -0
- package/components/Avatar/types.js +12 -0
- package/components/Button/Button.d.ts +4 -0
- package/components/Button/Button.js +33 -0
- package/components/Button/index.d.ts +2 -0
- package/components/Button/index.js +1 -0
- package/components/Button/types.d.ts +127 -0
- package/components/Button/types.js +1 -0
- package/components/Card/Card.d.ts +29 -0
- package/components/Card/Card.js +47 -0
- package/components/Card/index.d.ts +2 -0
- package/components/Card/index.js +1 -0
- package/components/Chip/Chip.d.ts +24 -0
- package/components/Chip/Chip.js +37 -0
- package/components/Chip/index.d.ts +2 -0
- package/components/Chip/index.js +1 -0
- package/components/Chips/Chips.d.ts +31 -0
- package/components/Chips/Chips.js +21 -0
- package/components/Chips/index.d.ts +2 -0
- package/components/Chips/index.js +1 -0
- package/components/ContentIndicator/ContentIndicator.d.ts +2 -0
- package/components/ContentIndicator/ContentIndicator.js +21 -0
- package/components/ContentIndicator/index.d.ts +2 -0
- package/components/ContentIndicator/index.js +1 -0
- package/components/ContentIndicator/types.d.ts +57 -0
- package/components/ContentIndicator/types.js +1 -0
- package/components/Dropdown/Dropdown.d.ts +31 -0
- package/components/Dropdown/Dropdown.js +219 -0
- package/components/Dropdown/DropdownContext.d.ts +3 -0
- package/components/Dropdown/DropdownContext.js +9 -0
- package/components/Dropdown/index.d.ts +2 -0
- package/components/Dropdown/index.js +1 -0
- package/components/Dropdown/types.d.ts +102 -0
- package/components/Dropdown/types.js +8 -0
- package/components/Icon/Icon.d.ts +22 -0
- package/components/Icon/Icon.js +24 -0
- package/components/Icon/index.d.ts +2 -0
- package/components/Icon/index.js +1 -0
- package/components/IconButton/IconButton.d.ts +2 -0
- package/components/IconButton/IconButton.js +50 -0
- package/components/IconButton/index.d.ts +2 -0
- package/components/IconButton/index.js +1 -0
- package/components/IconButton/types.d.ts +79 -0
- package/components/IconButton/types.js +1 -0
- package/components/Modal/Modal.d.ts +52 -0
- package/components/Modal/Modal.js +133 -0
- package/components/Modal/context.d.ts +6 -0
- package/components/Modal/context.js +9 -0
- package/components/Modal/index.d.ts +2 -0
- package/components/Modal/index.js +1 -0
- package/components/Notice/Notice.d.ts +93 -0
- package/components/Notice/Notice.js +144 -0
- package/components/Notice/index.d.ts +2 -0
- package/components/Notice/index.js +1 -0
- package/components/OverlapStack/OverlapStack.d.ts +44 -0
- package/components/OverlapStack/OverlapStack.js +41 -0
- package/components/OverlapStack/index.d.ts +2 -0
- package/components/OverlapStack/index.js +1 -0
- package/components/Pager/Pager.d.ts +26 -0
- package/components/Pager/Pager.js +151 -0
- package/components/Pager/index.d.ts +2 -0
- package/components/Pager/index.js +1 -0
- package/components/Progress/Progress.d.ts +2 -0
- package/components/Progress/Progress.js +100 -0
- package/components/Progress/index.d.ts +4 -0
- package/components/Progress/index.js +2 -0
- package/components/Progress/types.d.ts +251 -0
- package/components/Progress/types.js +1 -0
- package/components/Progress/useProgressSegments.d.ts +40 -0
- package/components/Progress/useProgressSegments.js +42 -0
- package/components/Rating/Rating.d.ts +32 -0
- package/components/Rating/Rating.js +74 -0
- package/components/Rating/index.d.ts +2 -0
- package/components/Rating/index.js +1 -0
- package/components/SegmentedControl/SegmentedControl.d.ts +10 -0
- package/components/SegmentedControl/SegmentedControl.js +183 -0
- package/components/SegmentedControl/SegmentedControlContext.d.ts +3 -0
- package/components/SegmentedControl/SegmentedControlContext.js +9 -0
- package/components/SegmentedControl/index.d.ts +2 -0
- package/components/SegmentedControl/index.js +1 -0
- package/components/SegmentedControl/types.d.ts +63 -0
- package/components/SegmentedControl/types.js +1 -0
- package/components/Sidebar/Sidebar.d.ts +17 -0
- package/components/Sidebar/Sidebar.js +107 -0
- package/components/Sidebar/index.d.ts +2 -0
- package/components/Sidebar/index.js +1 -0
- package/components/Sidebar/types.d.ts +65 -0
- package/components/Sidebar/types.js +4 -0
- package/components/StepIndicator/StepIndicator.d.ts +2 -0
- package/components/StepIndicator/StepIndicator.js +64 -0
- package/components/StepIndicator/index.d.ts +2 -0
- package/components/StepIndicator/index.js +1 -0
- package/components/StepIndicator/types.d.ts +68 -0
- package/components/StepIndicator/types.js +1 -0
- package/components/StepList/StepList.d.ts +12 -0
- package/components/StepList/StepList.js +59 -0
- package/components/StepList/StepListContext.d.ts +3 -0
- package/components/StepList/StepListContext.js +9 -0
- package/components/StepList/index.d.ts +2 -0
- package/components/StepList/index.js +1 -0
- package/components/StepList/types.d.ts +91 -0
- package/components/StepList/types.js +4 -0
- package/components/Table/BulkActionsBar.d.ts +12 -0
- package/components/Table/BulkActionsBar.js +9 -0
- package/components/Table/DataTable.d.ts +35 -0
- package/components/Table/DataTable.js +184 -0
- package/components/Table/Pagination.d.ts +13 -0
- package/components/Table/Pagination.js +13 -0
- package/components/Table/index.d.ts +2 -0
- package/components/Table/index.js +1 -0
- package/components/Tabs/Tabs.d.ts +23 -0
- package/components/Tabs/Tabs.js +309 -0
- package/components/Tabs/TabsContext.d.ts +3 -0
- package/components/Tabs/TabsContext.js +12 -0
- package/components/Tabs/index.d.ts +2 -0
- package/components/Tabs/index.js +1 -0
- package/components/Tabs/types.d.ts +75 -0
- package/components/Tabs/types.js +1 -0
- package/components/Toolbar/Toolbar.d.ts +18 -0
- package/components/Toolbar/Toolbar.js +241 -0
- package/components/Toolbar/index.d.ts +2 -0
- package/components/Toolbar/index.js +1 -0
- package/components/Toolbar/types.d.ts +28 -0
- package/components/Toolbar/types.js +1 -0
- package/components/Tooltip/Tooltip.d.ts +15 -0
- package/components/Tooltip/Tooltip.js +166 -0
- package/components/Tooltip/TooltipContext.d.ts +15 -0
- package/components/Tooltip/TooltipContext.js +25 -0
- package/components/Tooltip/index.d.ts +2 -0
- package/components/Tooltip/index.js +1 -0
- package/components/Tooltip/types.d.ts +85 -0
- package/components/Tooltip/types.js +8 -0
- package/components/index.d.ts +52 -0
- package/components/index.js +26 -0
- package/constants.d.ts +16 -0
- package/constants.js +16 -0
- package/icons/cred/index.d.ts +31 -0
- package/icons/cred/index.js +136 -0
- package/icons/icons.svg +155 -0
- package/icons/lms/index.d.ts +21 -0
- package/icons/lms/index.js +81 -0
- package/icons/manifest.json +1226 -0
- package/icons/player/index.d.ts +55 -0
- package/icons/player/index.js +268 -0
- package/icons/reaction/index.d.ts +79 -0
- package/icons/reaction/index.js +400 -0
- package/icons/registry.d.ts +316 -0
- package/icons/registry.js +163 -0
- package/icons/system/index.d.ts +155 -0
- package/icons/system/index.js +818 -0
- package/package.json +121 -0
- package/styles/all.css +1 -0
- package/styles/all.expanded.css +4137 -0
- package/styles/all.expanded.unlayered.css +4137 -0
- package/styles/all.unlayered.css +1 -0
- package/styles/components/_bundle.scss +51 -0
- package/styles/components/index.scss +1 -0
- package/styles/components/input/index.scss +248 -0
- package/styles/index.scss +71 -0
- package/styles/system/_constants.scss +12 -0
- package/styles/system/_motion.scss +47 -0
- package/styles/system/_palette-fns.scss +10 -0
- package/styles/system/_palettes.scss +80 -0
- package/styles/system/_tokens.scss +249 -0
- package/styles/system/index.scss +4 -0
- package/styles/utilities/_index.scss +373 -0
- package/tui-manifest.json +1858 -0
- package/types/index.d.ts +2 -0
- package/types/index.js +1 -0
- package/types/index.ts +2 -0
- package/types/sizes.d.ts +17 -0
- package/types/sizes.js +10 -0
- package/types/sizes.ts +21 -0
- package/types/svg.d.ts +5 -0
- package/types/themes.d.ts +14 -0
- package/types/themes.js +9 -0
- package/types/themes.ts +17 -0
- package/utils/color/contrast.d.ts +33 -0
- package/utils/color/contrast.js +88 -0
- package/utils/color-scheme.d.ts +25 -0
- package/utils/color-scheme.js +55 -0
- package/utils/compose-refs.d.ts +17 -0
- package/utils/compose-refs.js +38 -0
- package/utils/cx.d.ts +12 -0
- package/utils/cx.js +14 -0
- package/utils/focus-trap.d.ts +40 -0
- package/utils/focus-trap.js +93 -0
- package/utils/index.d.ts +10 -0
- package/utils/index.js +16 -0
- package/utils/math.d.ts +4 -0
- package/utils/math.js +19 -0
- package/utils/merge-props.d.ts +25 -0
- package/utils/merge-props.js +60 -0
- package/utils/polymorphic.d.ts +28 -0
- package/utils/polymorphic.js +44 -0
- package/utils/portal.d.ts +11 -0
- package/utils/portal.js +105 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import type { FC, SVGProps } from 'react';
|
|
2
|
+
|
|
3
|
+
type IconComponent = FC<SVGProps<SVGSVGElement>>;
|
|
4
|
+
|
|
5
|
+
export declare const CaptionsFill: IconComponent;
|
|
6
|
+
export declare const CaptionsOutline: IconComponent;
|
|
7
|
+
export declare const Next: IconComponent;
|
|
8
|
+
export declare const Pause: IconComponent;
|
|
9
|
+
export declare const PictureInPicture: IconComponent;
|
|
10
|
+
export declare const Play: IconComponent;
|
|
11
|
+
export declare const Playlist: IconComponent;
|
|
12
|
+
export declare const Previous: IconComponent;
|
|
13
|
+
export declare const RepeatOne: IconComponent;
|
|
14
|
+
export declare const Repeat: IconComponent;
|
|
15
|
+
export declare const Shuffle: IconComponent;
|
|
16
|
+
export declare const SkipBackwards: IconComponent;
|
|
17
|
+
export declare const SkipForward: IconComponent;
|
|
18
|
+
export declare const Stop: IconComponent;
|
|
19
|
+
export declare const TranscriptFill: IconComponent;
|
|
20
|
+
export declare const TranscriptOutline: IconComponent;
|
|
21
|
+
export declare const ViewDefault: IconComponent;
|
|
22
|
+
export declare const ViewExpanded: IconComponent;
|
|
23
|
+
export declare const ViewFull: IconComponent;
|
|
24
|
+
export declare const VolumeBarH: IconComponent;
|
|
25
|
+
export declare const VolumeBarV: IconComponent;
|
|
26
|
+
export declare const VolumeHigh: IconComponent;
|
|
27
|
+
export declare const VolumeLow: IconComponent;
|
|
28
|
+
export declare const VolumeMute: IconComponent;
|
|
29
|
+
|
|
30
|
+
export declare const playerIcons: {
|
|
31
|
+
'captions-fill': IconComponent;
|
|
32
|
+
'captions-outline': IconComponent;
|
|
33
|
+
'next': IconComponent;
|
|
34
|
+
'pause': IconComponent;
|
|
35
|
+
'picture-in-picture': IconComponent;
|
|
36
|
+
'play': IconComponent;
|
|
37
|
+
'playlist': IconComponent;
|
|
38
|
+
'previous': IconComponent;
|
|
39
|
+
'repeat-one': IconComponent;
|
|
40
|
+
'repeat': IconComponent;
|
|
41
|
+
'shuffle': IconComponent;
|
|
42
|
+
'skip-backwards': IconComponent;
|
|
43
|
+
'skip-forward': IconComponent;
|
|
44
|
+
'stop': IconComponent;
|
|
45
|
+
'transcript-fill': IconComponent;
|
|
46
|
+
'transcript-outline': IconComponent;
|
|
47
|
+
'view-default': IconComponent;
|
|
48
|
+
'view-expanded': IconComponent;
|
|
49
|
+
'view-full': IconComponent;
|
|
50
|
+
'volume-bar-h': IconComponent;
|
|
51
|
+
'volume-bar-v': IconComponent;
|
|
52
|
+
'volume-high': IconComponent;
|
|
53
|
+
'volume-low': IconComponent;
|
|
54
|
+
'volume-mute': IconComponent;
|
|
55
|
+
};
|
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
import { createElement as _c } from "react";
|
|
2
|
+
|
|
3
|
+
export function CaptionsFill(props) {
|
|
4
|
+
return _c("svg", Object.assign({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
viewBox: "0 0 24 24",
|
|
7
|
+
width: "1em",
|
|
8
|
+
height: "1em",
|
|
9
|
+
fill: "currentColor"
|
|
10
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M18 4a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H9.554a2 2 0 0 0-1.029.285L4 20V6a2 2 0 0 1 2-2zm-9 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2m4-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0m2 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2",clipRule:"evenodd"}));
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export function CaptionsOutline(props) {
|
|
14
|
+
return _c("svg", Object.assign({
|
|
15
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
+
viewBox: "0 0 24 24",
|
|
17
|
+
width: "1em",
|
|
18
|
+
height: "1em",
|
|
19
|
+
fill: "currentColor"
|
|
20
|
+
}, props), [_c("path", {d:"M9 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2M13 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0M15 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2"}), _c("path", {fillRule:"evenodd",d:"M6 4a2 2 0 0 0-2 2v14l4.525-2.715A2 2 0 0 1 9.554 17H18a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm12 1.5H6a.5.5 0 0 0-.5.5v11.35L7.753 16a3.5 3.5 0 0 1 1.801-.499H18a.5.5 0 0 0 .5-.5V6a.5.5 0 0 0-.5-.5",clipRule:"evenodd"})]);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export function Next(props) {
|
|
24
|
+
return _c("svg", Object.assign({
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26
|
+
viewBox: "0 0 24 24",
|
|
27
|
+
width: "1em",
|
|
28
|
+
height: "1em",
|
|
29
|
+
fill: "currentColor"
|
|
30
|
+
}, props), _c("path", {d:"M19 4h-1.5v16H19zM15.054 12.774a1 1 0 0 0 0-1.548l-8.42-6.89A1 1 0 0 0 5 5.11v13.78a1 1 0 0 0 1.633.774z"}));
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export function Pause(props) {
|
|
34
|
+
return _c("svg", Object.assign({
|
|
35
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
36
|
+
viewBox: "0 0 24 24",
|
|
37
|
+
width: "1em",
|
|
38
|
+
height: "1em",
|
|
39
|
+
fill: "currentColor"
|
|
40
|
+
}, props), _c("path", {d:"M7 5c-.552 0-1 .392-1 .875v12.25c0 .483.448.875 1 .875h2c.552 0 1-.392 1-.875V5.875C10 5.392 9.552 5 9 5zM15 5c-.552 0-1 .392-1 .875v12.25c0 .483.448.875 1 .875h2c.552 0 1-.392 1-.875V5.875C18 5.392 17.552 5 17 5z"}));
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export function PictureInPicture(props) {
|
|
44
|
+
return _c("svg", Object.assign({
|
|
45
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
46
|
+
viewBox: "0 0 24 24",
|
|
47
|
+
width: "1em",
|
|
48
|
+
height: "1em",
|
|
49
|
+
fill: "currentColor"
|
|
50
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M6 20a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2zM6 5.5h12a.5.5 0 0 1 .5.5v6H13a1 1 0 0 0-1 1v5.5H6a.5.5 0 0 1-.5-.5V6a.5.5 0 0 1 .5-.5",clipRule:"evenodd"}));
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export function Play(props) {
|
|
54
|
+
return _c("svg", Object.assign({
|
|
55
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
56
|
+
viewBox: "0 0 24 24",
|
|
57
|
+
width: "1em",
|
|
58
|
+
height: "1em",
|
|
59
|
+
fill: "currentColor"
|
|
60
|
+
}, props), _c("path", {d:"M17.419 10.852c.775.546.775 1.75 0 2.296l-9.39 6.618C7.16 20.377 6 19.72 6 18.618V5.382c0-1.102 1.161-1.76 2.028-1.148z"}));
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export function Playlist(props) {
|
|
64
|
+
return _c("svg", Object.assign({
|
|
65
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
66
|
+
viewBox: "0 0 24 24",
|
|
67
|
+
width: "1em",
|
|
68
|
+
height: "1em",
|
|
69
|
+
fill: "currentColor"
|
|
70
|
+
}, props), _c("path", {d:"M4 4h16v1.5H4zM20 11.25h-7v1.5h7zM20 18.5H4V20h16zM5.555 9.036A1 1 0 0 0 4 9.87v4.263a1 1 0 0 0 1.555.832l3.197-2.132a1 1 0 0 0 0-1.664z"}));
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export function Previous(props) {
|
|
74
|
+
return _c("svg", Object.assign({
|
|
75
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
76
|
+
viewBox: "0 0 24 24",
|
|
77
|
+
width: "1em",
|
|
78
|
+
height: "1em",
|
|
79
|
+
fill: "currentColor"
|
|
80
|
+
}, props), _c("path", {d:"M5 4h1.5v16H5zM8.946 12.774a1 1 0 0 1 0-1.548l8.42-6.89A1 1 0 0 1 19 5.11v13.78a1 1 0 0 1-1.633.774z"}));
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export function RepeatOne(props) {
|
|
84
|
+
return _c("svg", Object.assign({
|
|
85
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
86
|
+
viewBox: "0 0 24 24",
|
|
87
|
+
width: "1em",
|
|
88
|
+
height: "1em",
|
|
89
|
+
fill: "currentColor"
|
|
90
|
+
}, props), [_c("path", {d:"m15 2 5 4-5 4V6.75H9A3.25 3.25 0 0 0 5.75 10v3h-1.5v-3A4.75 4.75 0 0 1 9 5.25h6zM9 22l-5-4 5-4v3.25h6A3.25 3.25 0 0 0 18.25 14v-3h1.5v3A4.75 4.75 0 0 1 15 18.75H9z"}), _c("path", {d:"M13.133 9.3V15h-1.125v-4.402l-1.352.43v-.887l2.356-.84z"})]);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export function Repeat(props) {
|
|
94
|
+
return _c("svg", Object.assign({
|
|
95
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
96
|
+
viewBox: "0 0 24 24",
|
|
97
|
+
width: "1em",
|
|
98
|
+
height: "1em",
|
|
99
|
+
fill: "currentColor"
|
|
100
|
+
}, props), _c("path", {d:"m15 2 5 4-5 4V6.75H9A3.25 3.25 0 0 0 5.75 10v3h-1.5v-3A4.75 4.75 0 0 1 9 5.25h6zM9 22l-5-4 5-4v3.25h6A3.25 3.25 0 0 0 18.25 14v-3h1.5v3A4.75 4.75 0 0 1 15 18.75H9z"}));
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
export function Shuffle(props) {
|
|
104
|
+
return _c("svg", Object.assign({
|
|
105
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
106
|
+
viewBox: "0 0 24 24",
|
|
107
|
+
width: "1em",
|
|
108
|
+
height: "1em",
|
|
109
|
+
fill: "currentColor"
|
|
110
|
+
}, props), _c("path", {d:"m15 2 5 4-5 4V6.76a3.25 3.25 0 0 0-2.522 1.568L10.275 12l2.203 3.672A3.25 3.25 0 0 0 15 17.24V14l5 4-5 4v-3.257a4.75 4.75 0 0 1-3.808-2.3L9.4 13.459l-.592.986a4.75 4.75 0 0 1-4.073 2.306H4v-1.5h.735a3.25 3.25 0 0 0 2.787-1.578L8.525 12l-1.003-1.672A3.25 3.25 0 0 0 4.735 8.75H4v-1.5h.735a4.75 4.75 0 0 1 4.073 2.306l.592.986 1.792-2.986A4.75 4.75 0 0 1 15 5.257z"}));
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
export function SkipBackwards(props) {
|
|
114
|
+
return _c("svg", Object.assign({
|
|
115
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
116
|
+
viewBox: "0 0 24 24",
|
|
117
|
+
width: "1em",
|
|
118
|
+
height: "1em",
|
|
119
|
+
fill: "currentColor"
|
|
120
|
+
}, props), _c("path", {d:"M12 9 7 5l5-4v3.25A7.75 7.75 0 1 1 4.25 12v-.75h1.5V12A6.25 6.25 0 1 0 12 5.75z"}));
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
export function SkipForward(props) {
|
|
124
|
+
return _c("svg", Object.assign({
|
|
125
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
126
|
+
viewBox: "0 0 24 24",
|
|
127
|
+
width: "1em",
|
|
128
|
+
height: "1em",
|
|
129
|
+
fill: "currentColor"
|
|
130
|
+
}, props), _c("path", {d:"m12 9 5-4-5-4v3.25A7.75 7.75 0 1 0 19.75 12v-.75h-1.5V12A6.25 6.25 0 1 1 12 5.75z"}));
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
export function Stop(props) {
|
|
134
|
+
return _c("svg", Object.assign({
|
|
135
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
136
|
+
viewBox: "0 0 24 24",
|
|
137
|
+
width: "1em",
|
|
138
|
+
height: "1em",
|
|
139
|
+
fill: "currentColor"
|
|
140
|
+
}, props), _c("path", {d:"M5 6a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z"}));
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
export function TranscriptFill(props) {
|
|
144
|
+
return _c("svg", Object.assign({
|
|
145
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
146
|
+
viewBox: "0 0 24 24",
|
|
147
|
+
width: "1em",
|
|
148
|
+
height: "1em",
|
|
149
|
+
fill: "currentColor"
|
|
150
|
+
}, props), _c("path", {fillRule:"evenodd",d:"M6 20a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h10l4 4v10a2 2 0 0 1-2 2zM19 9l-4-4v4zM6 14h9v1H6zm6-3H6v1h6zM6 8h7v1H6zm7 9H6v1h7z",clipRule:"evenodd"}));
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
export function TranscriptOutline(props) {
|
|
154
|
+
return _c("svg", Object.assign({
|
|
155
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
156
|
+
viewBox: "0 0 24 24",
|
|
157
|
+
width: "1em",
|
|
158
|
+
height: "1em",
|
|
159
|
+
fill: "currentColor"
|
|
160
|
+
}, props), [_c("path", {d:"M7 13h8v1H7zM12 10H7v1h5zM7 7h6v1H7zM13 16H7v1h6z"}), _c("path", {fillRule:"evenodd",d:"M20 18V8l-4-4H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2M5.5 18a.5.5 0 0 0 .5.5h12a.5.5 0 0 0 .5-.5V9H15V5.5H6a.5.5 0 0 0-.5.5z",clipRule:"evenodd"})]);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
export function ViewDefault(props) {
|
|
164
|
+
return _c("svg", Object.assign({
|
|
165
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
166
|
+
viewBox: "0 0 24 24",
|
|
167
|
+
width: "1em",
|
|
168
|
+
height: "1em",
|
|
169
|
+
fill: "currentColor"
|
|
170
|
+
}, props), _c("path", {d:"M5.5 6a.5.5 0 0 1 .5-.5h4V4H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h4v-1.5H6a.5.5 0 0 1-.5-.5zM18 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-4v-1.5h4a.5.5 0 0 0 .5-.5V6a.5.5 0 0 0-.5-.5h-4V4z"}));
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export function ViewExpanded(props) {
|
|
174
|
+
return _c("svg", Object.assign({
|
|
175
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
176
|
+
viewBox: "0 0 24 24",
|
|
177
|
+
width: "1em",
|
|
178
|
+
height: "1em",
|
|
179
|
+
fill: "currentColor"
|
|
180
|
+
}, props), _c("path", {d:"M5.5 9a.5.5 0 0 1 .5-.5h4V7H6a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h4v-1.5H6a.5.5 0 0 1-.5-.5zM18 7a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-4v-1.5h4a.5.5 0 0 0 .5-.5V9a.5.5 0 0 0-.5-.5h-4V7z"}));
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
export function ViewFull(props) {
|
|
184
|
+
return _c("svg", Object.assign({
|
|
185
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
186
|
+
viewBox: "0 0 24 24",
|
|
187
|
+
width: "1em",
|
|
188
|
+
height: "1em",
|
|
189
|
+
fill: "currentColor"
|
|
190
|
+
}, props), _c("path", {d:"M5.5 6a.5.5 0 0 1 .5-.5h4V4H6a2 2 0 0 0-2 2v4h1.5zM18.5 6a.5.5 0 0 0-.5-.5h-4V4h4a2 2 0 0 1 2 2v4h-1.5zM5.5 18a.5.5 0 0 0 .5.5h4V20H6a2 2 0 0 1-2-2v-4h1.5zM18 18.5a.5.5 0 0 0 .5-.5v-4H20v4a2 2 0 0 1-2 2h-4v-1.5z"}));
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
export function VolumeBarH(props) {
|
|
194
|
+
return _c("svg", Object.assign({
|
|
195
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
196
|
+
viewBox: "0 0 24 24",
|
|
197
|
+
width: "1em",
|
|
198
|
+
height: "1em",
|
|
199
|
+
fill: "currentColor"
|
|
200
|
+
}, props), _c("path", {d:"M9.07 11.25H4v1.5h5.07a4.001 4.001 0 0 0 7.86 0H20v-1.5h-3.07a4.001 4.001 0 0 0-7.86 0"}));
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
export function VolumeBarV(props) {
|
|
204
|
+
return _c("svg", Object.assign({
|
|
205
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
206
|
+
viewBox: "0 0 24 24",
|
|
207
|
+
width: "1em",
|
|
208
|
+
height: "1em",
|
|
209
|
+
fill: "currentColor"
|
|
210
|
+
}, props), _c("path", {d:"M11.25 14.93V20h1.5v-5.07a4.001 4.001 0 0 0 0-7.86V4h-1.5v3.07a4.001 4.001 0 0 0 0 7.86"}));
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
export function VolumeHigh(props) {
|
|
214
|
+
return _c("svg", Object.assign({
|
|
215
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
216
|
+
viewBox: "0 0 24 24",
|
|
217
|
+
width: "1em",
|
|
218
|
+
height: "1em",
|
|
219
|
+
fill: "currentColor"
|
|
220
|
+
}, props), [_c("path", {d:"M6.434 15a1 1 0 0 1 .857.486l2.418 4.029a1 1 0 0 0 .857.485H11a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1h-.434a1 1 0 0 0-.857.486L7.29 8.515A1 1 0 0 1 6.434 9H5a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1z"}), _c("path", {fillRule:"evenodd",d:"M13.712 15.712a5.25 5.25 0 0 0 0-7.424l1.061-1.061a6.75 6.75 0 0 1 0 9.546z",clipRule:"evenodd"}), _c("path", {fillRule:"evenodd",d:"M16.712 18.227a8.806 8.806 0 0 0 0-12.454l1.061-1.06c4.025 4.024 4.025 10.55 0 14.575z",clipRule:"evenodd"})]);
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
export function VolumeLow(props) {
|
|
224
|
+
return _c("svg", Object.assign({
|
|
225
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
226
|
+
viewBox: "0 0 24 24",
|
|
227
|
+
width: "1em",
|
|
228
|
+
height: "1em",
|
|
229
|
+
fill: "currentColor"
|
|
230
|
+
}, props), _c("path", {d:"M7.291 15.486A1 1 0 0 0 6.434 15H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h1.434a1 1 0 0 0 .857-.486L9.71 4.487A1 1 0 0 1 10.566 4H11a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-.434a1 1 0 0 1-.857-.485zM13.712 8.288a5.25 5.25 0 0 1 0 7.424l1.06 1.061a6.75 6.75 0 0 0 0-9.546z"}));
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
export function VolumeMute(props) {
|
|
234
|
+
return _c("svg", Object.assign({
|
|
235
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
236
|
+
viewBox: "0 0 24 24",
|
|
237
|
+
width: "1em",
|
|
238
|
+
height: "1em",
|
|
239
|
+
fill: "currentColor"
|
|
240
|
+
}, props), _c("path", {d:"M7.291 15.486A1 1 0 0 0 6.434 15H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h1.434a1 1 0 0 0 .857-.486L9.71 4.487A1 1 0 0 1 10.566 4H11a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-.434a1 1 0 0 1-.857-.485zM13.47 15.005 16.475 12 13.47 8.995l1.06-1.06 3.005 3.004 3.006-3.005 1.06 1.06L18.596 12l3.005 3.005-1.06 1.06-3.006-3.004-3.005 3.005z"}));
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
export const playerIcons = {
|
|
244
|
+
'captions-fill': CaptionsFill,
|
|
245
|
+
'captions-outline': CaptionsOutline,
|
|
246
|
+
'next': Next,
|
|
247
|
+
'pause': Pause,
|
|
248
|
+
'picture-in-picture': PictureInPicture,
|
|
249
|
+
'play': Play,
|
|
250
|
+
'playlist': Playlist,
|
|
251
|
+
'previous': Previous,
|
|
252
|
+
'repeat-one': RepeatOne,
|
|
253
|
+
'repeat': Repeat,
|
|
254
|
+
'shuffle': Shuffle,
|
|
255
|
+
'skip-backwards': SkipBackwards,
|
|
256
|
+
'skip-forward': SkipForward,
|
|
257
|
+
'stop': Stop,
|
|
258
|
+
'transcript-fill': TranscriptFill,
|
|
259
|
+
'transcript-outline': TranscriptOutline,
|
|
260
|
+
'view-default': ViewDefault,
|
|
261
|
+
'view-expanded': ViewExpanded,
|
|
262
|
+
'view-full': ViewFull,
|
|
263
|
+
'volume-bar-h': VolumeBarH,
|
|
264
|
+
'volume-bar-v': VolumeBarV,
|
|
265
|
+
'volume-high': VolumeHigh,
|
|
266
|
+
'volume-low': VolumeLow,
|
|
267
|
+
'volume-mute': VolumeMute,
|
|
268
|
+
};
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import type { FC, SVGProps } from 'react';
|
|
2
|
+
|
|
3
|
+
type IconComponent = FC<SVGProps<SVGSVGElement>>;
|
|
4
|
+
|
|
5
|
+
export declare const ArrowThickDownFill: IconComponent;
|
|
6
|
+
export declare const ArrowThickDownOutline: IconComponent;
|
|
7
|
+
export declare const ArrowThickUpFill: IconComponent;
|
|
8
|
+
export declare const ArrowThickUpOutline: IconComponent;
|
|
9
|
+
export declare const ArrowThinDownFill: IconComponent;
|
|
10
|
+
export declare const ArrowThinDownOutline: IconComponent;
|
|
11
|
+
export declare const ArrowThinUpFill: IconComponent;
|
|
12
|
+
export declare const ArrowThinUpOutline: IconComponent;
|
|
13
|
+
export declare const BookmarkFill: IconComponent;
|
|
14
|
+
export declare const BookmarkOutline: IconComponent;
|
|
15
|
+
export declare const ChevronDownFill: IconComponent;
|
|
16
|
+
export declare const ChevronDownOutline: IconComponent;
|
|
17
|
+
export declare const ChevronUpFill: IconComponent;
|
|
18
|
+
export declare const ChevronUpOutline: IconComponent;
|
|
19
|
+
export declare const ClapFill: IconComponent;
|
|
20
|
+
export declare const ClapOutline: IconComponent;
|
|
21
|
+
export declare const ExclamationPointFill: IconComponent;
|
|
22
|
+
export declare const ExclamationPointOutline: IconComponent;
|
|
23
|
+
export declare const HeartFill: IconComponent;
|
|
24
|
+
export declare const HeartOutline: IconComponent;
|
|
25
|
+
export declare const LaughingFill: IconComponent;
|
|
26
|
+
export declare const LaughingOutline: IconComponent;
|
|
27
|
+
export declare const QuestionMarkFill: IconComponent;
|
|
28
|
+
export declare const QuestionMarkOutline: IconComponent;
|
|
29
|
+
export declare const StarFill: IconComponent;
|
|
30
|
+
export declare const StarOutline: IconComponent;
|
|
31
|
+
export declare const StarShineFill: IconComponent;
|
|
32
|
+
export declare const StarShineOutline: IconComponent;
|
|
33
|
+
export declare const ThumbsDownFill: IconComponent;
|
|
34
|
+
export declare const ThumbsDownOutline: IconComponent;
|
|
35
|
+
export declare const ThumbsUpOutline: IconComponent;
|
|
36
|
+
export declare const ThumbsUp: IconComponent;
|
|
37
|
+
export declare const TriangleDownFill: IconComponent;
|
|
38
|
+
export declare const TriangleDownOutline: IconComponent;
|
|
39
|
+
export declare const TriangleUpFill: IconComponent;
|
|
40
|
+
export declare const TriangleUpOutline: IconComponent;
|
|
41
|
+
|
|
42
|
+
export declare const reactionIcons: {
|
|
43
|
+
'arrow-thick-down-fill': IconComponent;
|
|
44
|
+
'arrow-thick-down-outline': IconComponent;
|
|
45
|
+
'arrow-thick-up-fill': IconComponent;
|
|
46
|
+
'arrow-thick-up-outline': IconComponent;
|
|
47
|
+
'arrow-thin-down-fill': IconComponent;
|
|
48
|
+
'arrow-thin-down-outline': IconComponent;
|
|
49
|
+
'arrow-thin-up-fill': IconComponent;
|
|
50
|
+
'arrow-thin-up-outline': IconComponent;
|
|
51
|
+
'bookmark-fill': IconComponent;
|
|
52
|
+
'bookmark-outline': IconComponent;
|
|
53
|
+
'chevron-down-fill': IconComponent;
|
|
54
|
+
'chevron-down-outline': IconComponent;
|
|
55
|
+
'chevron-up-fill': IconComponent;
|
|
56
|
+
'chevron-up-outline': IconComponent;
|
|
57
|
+
'clap-fill': IconComponent;
|
|
58
|
+
'clap-outline': IconComponent;
|
|
59
|
+
'exclamation-point-fill': IconComponent;
|
|
60
|
+
'exclamation-point-outline': IconComponent;
|
|
61
|
+
'heart-fill': IconComponent;
|
|
62
|
+
'heart-outline': IconComponent;
|
|
63
|
+
'laughing-fill': IconComponent;
|
|
64
|
+
'laughing-outline': IconComponent;
|
|
65
|
+
'question-mark-fill': IconComponent;
|
|
66
|
+
'question-mark-outline': IconComponent;
|
|
67
|
+
'star-fill': IconComponent;
|
|
68
|
+
'star-outline': IconComponent;
|
|
69
|
+
'star-shine-fill': IconComponent;
|
|
70
|
+
'star-shine-outline': IconComponent;
|
|
71
|
+
'thumbs-down-fill': IconComponent;
|
|
72
|
+
'thumbs-down-outline': IconComponent;
|
|
73
|
+
'thumbs-up-outline': IconComponent;
|
|
74
|
+
'thumbs-up': IconComponent;
|
|
75
|
+
'triangle-down-fill': IconComponent;
|
|
76
|
+
'triangle-down-outline': IconComponent;
|
|
77
|
+
'triangle-up-fill': IconComponent;
|
|
78
|
+
'triangle-up-outline': IconComponent;
|
|
79
|
+
};
|