@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,1226 @@
|
|
|
1
|
+
{
|
|
2
|
+
"cred/badge-check": {
|
|
3
|
+
"id": "tui-cred-badge-check",
|
|
4
|
+
"set": "cred",
|
|
5
|
+
"name": "badge-check",
|
|
6
|
+
"file": "cred/badge-check.svg",
|
|
7
|
+
"viewBox": "0 0 24 24",
|
|
8
|
+
"sprite": true
|
|
9
|
+
},
|
|
10
|
+
"cred/badge-ribbon": {
|
|
11
|
+
"id": "tui-cred-badge-ribbon",
|
|
12
|
+
"set": "cred",
|
|
13
|
+
"name": "badge-ribbon",
|
|
14
|
+
"file": "cred/badge-ribbon.svg",
|
|
15
|
+
"viewBox": "0 0 24 24",
|
|
16
|
+
"sprite": true
|
|
17
|
+
},
|
|
18
|
+
"cred/badge": {
|
|
19
|
+
"id": "tui-cred-badge",
|
|
20
|
+
"set": "cred",
|
|
21
|
+
"name": "badge",
|
|
22
|
+
"file": "cred/badge.svg",
|
|
23
|
+
"viewBox": "0 0 24 24",
|
|
24
|
+
"sprite": true
|
|
25
|
+
},
|
|
26
|
+
"cred/check-circle": {
|
|
27
|
+
"id": "tui-cred-check-circle",
|
|
28
|
+
"set": "cred",
|
|
29
|
+
"name": "check-circle",
|
|
30
|
+
"file": "cred/check-circle.svg",
|
|
31
|
+
"viewBox": "0 0 24 24",
|
|
32
|
+
"sprite": true
|
|
33
|
+
},
|
|
34
|
+
"cred/clock": {
|
|
35
|
+
"id": "tui-cred-clock",
|
|
36
|
+
"set": "cred",
|
|
37
|
+
"name": "clock",
|
|
38
|
+
"file": "cred/clock.svg",
|
|
39
|
+
"viewBox": "0 0 24 24",
|
|
40
|
+
"sprite": true
|
|
41
|
+
},
|
|
42
|
+
"cred/coin": {
|
|
43
|
+
"id": "tui-cred-coin",
|
|
44
|
+
"set": "cred",
|
|
45
|
+
"name": "coin",
|
|
46
|
+
"file": "cred/coin.svg",
|
|
47
|
+
"viewBox": "0 0 24 24",
|
|
48
|
+
"sprite": true
|
|
49
|
+
},
|
|
50
|
+
"cred/crown": {
|
|
51
|
+
"id": "tui-cred-crown",
|
|
52
|
+
"set": "cred",
|
|
53
|
+
"name": "crown",
|
|
54
|
+
"file": "cred/crown.svg",
|
|
55
|
+
"viewBox": "0 0 24 24",
|
|
56
|
+
"sprite": true
|
|
57
|
+
},
|
|
58
|
+
"cred/heart": {
|
|
59
|
+
"id": "tui-cred-heart",
|
|
60
|
+
"set": "cred",
|
|
61
|
+
"name": "heart",
|
|
62
|
+
"file": "cred/heart.svg",
|
|
63
|
+
"viewBox": "0 0 24 24",
|
|
64
|
+
"sprite": true
|
|
65
|
+
},
|
|
66
|
+
"cred/hourglass": {
|
|
67
|
+
"id": "tui-cred-hourglass",
|
|
68
|
+
"set": "cred",
|
|
69
|
+
"name": "hourglass",
|
|
70
|
+
"file": "cred/hourglass.svg",
|
|
71
|
+
"viewBox": "0 0 24 24",
|
|
72
|
+
"sprite": true
|
|
73
|
+
},
|
|
74
|
+
"cred/star": {
|
|
75
|
+
"id": "tui-cred-star",
|
|
76
|
+
"set": "cred",
|
|
77
|
+
"name": "star",
|
|
78
|
+
"file": "cred/star.svg",
|
|
79
|
+
"viewBox": "0 0 24 24",
|
|
80
|
+
"sprite": true
|
|
81
|
+
},
|
|
82
|
+
"cred/timer": {
|
|
83
|
+
"id": "tui-cred-timer",
|
|
84
|
+
"set": "cred",
|
|
85
|
+
"name": "timer",
|
|
86
|
+
"file": "cred/timer.svg",
|
|
87
|
+
"viewBox": "0 0 24 24",
|
|
88
|
+
"sprite": true
|
|
89
|
+
},
|
|
90
|
+
"cred/trophy": {
|
|
91
|
+
"id": "tui-cred-trophy",
|
|
92
|
+
"set": "cred",
|
|
93
|
+
"name": "trophy",
|
|
94
|
+
"file": "cred/trophy.svg",
|
|
95
|
+
"viewBox": "0 0 24 24",
|
|
96
|
+
"sprite": true
|
|
97
|
+
},
|
|
98
|
+
"lms/book": {
|
|
99
|
+
"id": "tui-lms-book",
|
|
100
|
+
"set": "lms",
|
|
101
|
+
"name": "book",
|
|
102
|
+
"file": "lms/book.svg",
|
|
103
|
+
"viewBox": "0 0 24 24",
|
|
104
|
+
"sprite": true
|
|
105
|
+
},
|
|
106
|
+
"lms/calendar": {
|
|
107
|
+
"id": "tui-lms-calendar",
|
|
108
|
+
"set": "lms",
|
|
109
|
+
"name": "calendar",
|
|
110
|
+
"file": "lms/calendar.svg",
|
|
111
|
+
"viewBox": "0 0 24 24",
|
|
112
|
+
"sprite": true
|
|
113
|
+
},
|
|
114
|
+
"lms/checkmark": {
|
|
115
|
+
"id": "tui-lms-checkmark",
|
|
116
|
+
"set": "lms",
|
|
117
|
+
"name": "checkmark",
|
|
118
|
+
"file": "lms/checkmark.svg",
|
|
119
|
+
"viewBox": "0 0 24 24",
|
|
120
|
+
"sprite": true
|
|
121
|
+
},
|
|
122
|
+
"lms/clock": {
|
|
123
|
+
"id": "tui-lms-clock",
|
|
124
|
+
"set": "lms",
|
|
125
|
+
"name": "clock",
|
|
126
|
+
"file": "lms/clock.svg",
|
|
127
|
+
"viewBox": "0 0 24 24",
|
|
128
|
+
"sprite": true
|
|
129
|
+
},
|
|
130
|
+
"lms/lock": {
|
|
131
|
+
"id": "tui-lms-lock",
|
|
132
|
+
"set": "lms",
|
|
133
|
+
"name": "lock",
|
|
134
|
+
"file": "lms/lock.svg",
|
|
135
|
+
"viewBox": "0 0 24 24",
|
|
136
|
+
"sprite": true
|
|
137
|
+
},
|
|
138
|
+
"lms/question-mark": {
|
|
139
|
+
"id": "tui-lms-question-mark",
|
|
140
|
+
"set": "lms",
|
|
141
|
+
"name": "question-mark",
|
|
142
|
+
"file": "lms/question-mark.svg",
|
|
143
|
+
"viewBox": "0 0 24 24",
|
|
144
|
+
"sprite": true
|
|
145
|
+
},
|
|
146
|
+
"lms/unlock": {
|
|
147
|
+
"id": "tui-lms-unlock",
|
|
148
|
+
"set": "lms",
|
|
149
|
+
"name": "unlock",
|
|
150
|
+
"file": "lms/unlock.svg",
|
|
151
|
+
"viewBox": "0 0 24 24",
|
|
152
|
+
"sprite": true
|
|
153
|
+
},
|
|
154
|
+
"player/captions-fill": {
|
|
155
|
+
"id": "tui-player-captions-fill",
|
|
156
|
+
"set": "player",
|
|
157
|
+
"name": "captions-fill",
|
|
158
|
+
"file": "player/captions-fill.svg",
|
|
159
|
+
"viewBox": "0 0 24 24",
|
|
160
|
+
"sprite": true
|
|
161
|
+
},
|
|
162
|
+
"player/captions-outline": {
|
|
163
|
+
"id": "tui-player-captions-outline",
|
|
164
|
+
"set": "player",
|
|
165
|
+
"name": "captions-outline",
|
|
166
|
+
"file": "player/captions-outline.svg",
|
|
167
|
+
"viewBox": "0 0 24 24",
|
|
168
|
+
"sprite": true
|
|
169
|
+
},
|
|
170
|
+
"player/next": {
|
|
171
|
+
"id": "tui-player-next",
|
|
172
|
+
"set": "player",
|
|
173
|
+
"name": "next",
|
|
174
|
+
"file": "player/next.svg",
|
|
175
|
+
"viewBox": "0 0 24 24",
|
|
176
|
+
"sprite": true
|
|
177
|
+
},
|
|
178
|
+
"player/pause": {
|
|
179
|
+
"id": "tui-player-pause",
|
|
180
|
+
"set": "player",
|
|
181
|
+
"name": "pause",
|
|
182
|
+
"file": "player/pause.svg",
|
|
183
|
+
"viewBox": "0 0 24 24",
|
|
184
|
+
"sprite": true
|
|
185
|
+
},
|
|
186
|
+
"player/picture-in-picture": {
|
|
187
|
+
"id": "tui-player-picture-in-picture",
|
|
188
|
+
"set": "player",
|
|
189
|
+
"name": "picture-in-picture",
|
|
190
|
+
"file": "player/picture-in-picture.svg",
|
|
191
|
+
"viewBox": "0 0 24 24",
|
|
192
|
+
"sprite": true
|
|
193
|
+
},
|
|
194
|
+
"player/play": {
|
|
195
|
+
"id": "tui-player-play",
|
|
196
|
+
"set": "player",
|
|
197
|
+
"name": "play",
|
|
198
|
+
"file": "player/play.svg",
|
|
199
|
+
"viewBox": "0 0 24 24",
|
|
200
|
+
"sprite": true
|
|
201
|
+
},
|
|
202
|
+
"player/playlist": {
|
|
203
|
+
"id": "tui-player-playlist",
|
|
204
|
+
"set": "player",
|
|
205
|
+
"name": "playlist",
|
|
206
|
+
"file": "player/playlist.svg",
|
|
207
|
+
"viewBox": "0 0 24 24",
|
|
208
|
+
"sprite": true
|
|
209
|
+
},
|
|
210
|
+
"player/previous": {
|
|
211
|
+
"id": "tui-player-previous",
|
|
212
|
+
"set": "player",
|
|
213
|
+
"name": "previous",
|
|
214
|
+
"file": "player/previous.svg",
|
|
215
|
+
"viewBox": "0 0 24 24",
|
|
216
|
+
"sprite": true
|
|
217
|
+
},
|
|
218
|
+
"player/repeat-one": {
|
|
219
|
+
"id": "tui-player-repeat-one",
|
|
220
|
+
"set": "player",
|
|
221
|
+
"name": "repeat-one",
|
|
222
|
+
"file": "player/repeat-one.svg",
|
|
223
|
+
"viewBox": "0 0 24 24",
|
|
224
|
+
"sprite": true
|
|
225
|
+
},
|
|
226
|
+
"player/repeat": {
|
|
227
|
+
"id": "tui-player-repeat",
|
|
228
|
+
"set": "player",
|
|
229
|
+
"name": "repeat",
|
|
230
|
+
"file": "player/repeat.svg",
|
|
231
|
+
"viewBox": "0 0 24 24",
|
|
232
|
+
"sprite": true
|
|
233
|
+
},
|
|
234
|
+
"player/shuffle": {
|
|
235
|
+
"id": "tui-player-shuffle",
|
|
236
|
+
"set": "player",
|
|
237
|
+
"name": "shuffle",
|
|
238
|
+
"file": "player/shuffle.svg",
|
|
239
|
+
"viewBox": "0 0 24 24",
|
|
240
|
+
"sprite": true
|
|
241
|
+
},
|
|
242
|
+
"player/skip-backwards": {
|
|
243
|
+
"id": "tui-player-skip-backwards",
|
|
244
|
+
"set": "player",
|
|
245
|
+
"name": "skip-backwards",
|
|
246
|
+
"file": "player/skip-backwards.svg",
|
|
247
|
+
"viewBox": "0 0 24 24",
|
|
248
|
+
"sprite": true
|
|
249
|
+
},
|
|
250
|
+
"player/skip-forward": {
|
|
251
|
+
"id": "tui-player-skip-forward",
|
|
252
|
+
"set": "player",
|
|
253
|
+
"name": "skip-forward",
|
|
254
|
+
"file": "player/skip-forward.svg",
|
|
255
|
+
"viewBox": "0 0 24 24",
|
|
256
|
+
"sprite": true
|
|
257
|
+
},
|
|
258
|
+
"player/stop": {
|
|
259
|
+
"id": "tui-player-stop",
|
|
260
|
+
"set": "player",
|
|
261
|
+
"name": "stop",
|
|
262
|
+
"file": "player/stop.svg",
|
|
263
|
+
"viewBox": "0 0 24 24",
|
|
264
|
+
"sprite": true
|
|
265
|
+
},
|
|
266
|
+
"player/transcript-fill": {
|
|
267
|
+
"id": "tui-player-transcript-fill",
|
|
268
|
+
"set": "player",
|
|
269
|
+
"name": "transcript-fill",
|
|
270
|
+
"file": "player/transcript-fill.svg",
|
|
271
|
+
"viewBox": "0 0 24 24",
|
|
272
|
+
"sprite": true
|
|
273
|
+
},
|
|
274
|
+
"player/transcript-outline": {
|
|
275
|
+
"id": "tui-player-transcript-outline",
|
|
276
|
+
"set": "player",
|
|
277
|
+
"name": "transcript-outline",
|
|
278
|
+
"file": "player/transcript-outline.svg",
|
|
279
|
+
"viewBox": "0 0 24 24",
|
|
280
|
+
"sprite": true
|
|
281
|
+
},
|
|
282
|
+
"player/view-default": {
|
|
283
|
+
"id": "tui-player-view-default",
|
|
284
|
+
"set": "player",
|
|
285
|
+
"name": "view-default",
|
|
286
|
+
"file": "player/view-default.svg",
|
|
287
|
+
"viewBox": "0 0 24 24",
|
|
288
|
+
"sprite": true
|
|
289
|
+
},
|
|
290
|
+
"player/view-expanded": {
|
|
291
|
+
"id": "tui-player-view-expanded",
|
|
292
|
+
"set": "player",
|
|
293
|
+
"name": "view-expanded",
|
|
294
|
+
"file": "player/view-expanded.svg",
|
|
295
|
+
"viewBox": "0 0 24 24",
|
|
296
|
+
"sprite": true
|
|
297
|
+
},
|
|
298
|
+
"player/view-full": {
|
|
299
|
+
"id": "tui-player-view-full",
|
|
300
|
+
"set": "player",
|
|
301
|
+
"name": "view-full",
|
|
302
|
+
"file": "player/view-full.svg",
|
|
303
|
+
"viewBox": "0 0 24 24",
|
|
304
|
+
"sprite": true
|
|
305
|
+
},
|
|
306
|
+
"player/volume-bar-h": {
|
|
307
|
+
"id": "tui-player-volume-bar-h",
|
|
308
|
+
"set": "player",
|
|
309
|
+
"name": "volume-bar-h",
|
|
310
|
+
"file": "player/volume-bar-h.svg",
|
|
311
|
+
"viewBox": "0 0 24 24",
|
|
312
|
+
"sprite": true
|
|
313
|
+
},
|
|
314
|
+
"player/volume-bar-v": {
|
|
315
|
+
"id": "tui-player-volume-bar-v",
|
|
316
|
+
"set": "player",
|
|
317
|
+
"name": "volume-bar-v",
|
|
318
|
+
"file": "player/volume-bar-v.svg",
|
|
319
|
+
"viewBox": "0 0 24 24",
|
|
320
|
+
"sprite": true
|
|
321
|
+
},
|
|
322
|
+
"player/volume-high": {
|
|
323
|
+
"id": "tui-player-volume-high",
|
|
324
|
+
"set": "player",
|
|
325
|
+
"name": "volume-high",
|
|
326
|
+
"file": "player/volume-high.svg",
|
|
327
|
+
"viewBox": "0 0 24 24",
|
|
328
|
+
"sprite": true
|
|
329
|
+
},
|
|
330
|
+
"player/volume-low": {
|
|
331
|
+
"id": "tui-player-volume-low",
|
|
332
|
+
"set": "player",
|
|
333
|
+
"name": "volume-low",
|
|
334
|
+
"file": "player/volume-low.svg",
|
|
335
|
+
"viewBox": "0 0 24 24",
|
|
336
|
+
"sprite": true
|
|
337
|
+
},
|
|
338
|
+
"player/volume-mute": {
|
|
339
|
+
"id": "tui-player-volume-mute",
|
|
340
|
+
"set": "player",
|
|
341
|
+
"name": "volume-mute",
|
|
342
|
+
"file": "player/volume-mute.svg",
|
|
343
|
+
"viewBox": "0 0 24 24",
|
|
344
|
+
"sprite": true
|
|
345
|
+
},
|
|
346
|
+
"reaction/arrow-thick-down-fill": {
|
|
347
|
+
"id": "tui-reaction-arrow-thick-down-fill",
|
|
348
|
+
"set": "reaction",
|
|
349
|
+
"name": "arrow-thick-down-fill",
|
|
350
|
+
"file": "reaction/arrow-thick-down-fill.svg",
|
|
351
|
+
"viewBox": "0 0 24 24",
|
|
352
|
+
"sprite": true
|
|
353
|
+
},
|
|
354
|
+
"reaction/arrow-thick-down-outline": {
|
|
355
|
+
"id": "tui-reaction-arrow-thick-down-outline",
|
|
356
|
+
"set": "reaction",
|
|
357
|
+
"name": "arrow-thick-down-outline",
|
|
358
|
+
"file": "reaction/arrow-thick-down-outline.svg",
|
|
359
|
+
"viewBox": "0 0 24 24",
|
|
360
|
+
"sprite": true
|
|
361
|
+
},
|
|
362
|
+
"reaction/arrow-thick-up-fill": {
|
|
363
|
+
"id": "tui-reaction-arrow-thick-up-fill",
|
|
364
|
+
"set": "reaction",
|
|
365
|
+
"name": "arrow-thick-up-fill",
|
|
366
|
+
"file": "reaction/arrow-thick-up-fill.svg",
|
|
367
|
+
"viewBox": "0 0 24 24",
|
|
368
|
+
"sprite": true
|
|
369
|
+
},
|
|
370
|
+
"reaction/arrow-thick-up-outline": {
|
|
371
|
+
"id": "tui-reaction-arrow-thick-up-outline",
|
|
372
|
+
"set": "reaction",
|
|
373
|
+
"name": "arrow-thick-up-outline",
|
|
374
|
+
"file": "reaction/arrow-thick-up-outline.svg",
|
|
375
|
+
"viewBox": "0 0 24 24",
|
|
376
|
+
"sprite": true
|
|
377
|
+
},
|
|
378
|
+
"reaction/arrow-thin-down-fill": {
|
|
379
|
+
"id": "tui-reaction-arrow-thin-down-fill",
|
|
380
|
+
"set": "reaction",
|
|
381
|
+
"name": "arrow-thin-down-fill",
|
|
382
|
+
"file": "reaction/arrow-thin-down-fill.svg",
|
|
383
|
+
"viewBox": "0 0 24 24",
|
|
384
|
+
"sprite": true
|
|
385
|
+
},
|
|
386
|
+
"reaction/arrow-thin-down-outline": {
|
|
387
|
+
"id": "tui-reaction-arrow-thin-down-outline",
|
|
388
|
+
"set": "reaction",
|
|
389
|
+
"name": "arrow-thin-down-outline",
|
|
390
|
+
"file": "reaction/arrow-thin-down-outline.svg",
|
|
391
|
+
"viewBox": "0 0 24 24",
|
|
392
|
+
"sprite": true
|
|
393
|
+
},
|
|
394
|
+
"reaction/arrow-thin-up-fill": {
|
|
395
|
+
"id": "tui-reaction-arrow-thin-up-fill",
|
|
396
|
+
"set": "reaction",
|
|
397
|
+
"name": "arrow-thin-up-fill",
|
|
398
|
+
"file": "reaction/arrow-thin-up-fill.svg",
|
|
399
|
+
"viewBox": "0 0 24 24",
|
|
400
|
+
"sprite": true
|
|
401
|
+
},
|
|
402
|
+
"reaction/arrow-thin-up-outline": {
|
|
403
|
+
"id": "tui-reaction-arrow-thin-up-outline",
|
|
404
|
+
"set": "reaction",
|
|
405
|
+
"name": "arrow-thin-up-outline",
|
|
406
|
+
"file": "reaction/arrow-thin-up-outline.svg",
|
|
407
|
+
"viewBox": "0 0 24 24",
|
|
408
|
+
"sprite": true
|
|
409
|
+
},
|
|
410
|
+
"reaction/bookmark-fill": {
|
|
411
|
+
"id": "tui-reaction-bookmark-fill",
|
|
412
|
+
"set": "reaction",
|
|
413
|
+
"name": "bookmark-fill",
|
|
414
|
+
"file": "reaction/bookmark-fill.svg",
|
|
415
|
+
"viewBox": "0 0 24 24",
|
|
416
|
+
"sprite": true
|
|
417
|
+
},
|
|
418
|
+
"reaction/bookmark-outline": {
|
|
419
|
+
"id": "tui-reaction-bookmark-outline",
|
|
420
|
+
"set": "reaction",
|
|
421
|
+
"name": "bookmark-outline",
|
|
422
|
+
"file": "reaction/bookmark-outline.svg",
|
|
423
|
+
"viewBox": "0 0 24 24",
|
|
424
|
+
"sprite": true
|
|
425
|
+
},
|
|
426
|
+
"reaction/chevron-down-fill": {
|
|
427
|
+
"id": "tui-reaction-chevron-down-fill",
|
|
428
|
+
"set": "reaction",
|
|
429
|
+
"name": "chevron-down-fill",
|
|
430
|
+
"file": "reaction/chevron-down-fill.svg",
|
|
431
|
+
"viewBox": "0 0 24 24",
|
|
432
|
+
"sprite": true
|
|
433
|
+
},
|
|
434
|
+
"reaction/chevron-down-outline": {
|
|
435
|
+
"id": "tui-reaction-chevron-down-outline",
|
|
436
|
+
"set": "reaction",
|
|
437
|
+
"name": "chevron-down-outline",
|
|
438
|
+
"file": "reaction/chevron-down-outline.svg",
|
|
439
|
+
"viewBox": "0 0 24 24",
|
|
440
|
+
"sprite": true
|
|
441
|
+
},
|
|
442
|
+
"reaction/chevron-up-fill": {
|
|
443
|
+
"id": "tui-reaction-chevron-up-fill",
|
|
444
|
+
"set": "reaction",
|
|
445
|
+
"name": "chevron-up-fill",
|
|
446
|
+
"file": "reaction/chevron-up-fill.svg",
|
|
447
|
+
"viewBox": "0 0 24 24",
|
|
448
|
+
"sprite": true
|
|
449
|
+
},
|
|
450
|
+
"reaction/chevron-up-outline": {
|
|
451
|
+
"id": "tui-reaction-chevron-up-outline",
|
|
452
|
+
"set": "reaction",
|
|
453
|
+
"name": "chevron-up-outline",
|
|
454
|
+
"file": "reaction/chevron-up-outline.svg",
|
|
455
|
+
"viewBox": "0 0 24 24",
|
|
456
|
+
"sprite": true
|
|
457
|
+
},
|
|
458
|
+
"reaction/clap-fill": {
|
|
459
|
+
"id": "tui-reaction-clap-fill",
|
|
460
|
+
"set": "reaction",
|
|
461
|
+
"name": "clap-fill",
|
|
462
|
+
"file": "reaction/clap-fill.svg",
|
|
463
|
+
"viewBox": "0 0 24 24",
|
|
464
|
+
"sprite": true
|
|
465
|
+
},
|
|
466
|
+
"reaction/clap-outline": {
|
|
467
|
+
"id": "tui-reaction-clap-outline",
|
|
468
|
+
"set": "reaction",
|
|
469
|
+
"name": "clap-outline",
|
|
470
|
+
"file": "reaction/clap-outline.svg",
|
|
471
|
+
"viewBox": "0 0 24 24",
|
|
472
|
+
"sprite": true
|
|
473
|
+
},
|
|
474
|
+
"reaction/exclamation-point-fill": {
|
|
475
|
+
"id": "tui-reaction-exclamation-point-fill",
|
|
476
|
+
"set": "reaction",
|
|
477
|
+
"name": "exclamation-point-fill",
|
|
478
|
+
"file": "reaction/exclamation-point-fill.svg",
|
|
479
|
+
"viewBox": "0 0 24 24",
|
|
480
|
+
"sprite": true
|
|
481
|
+
},
|
|
482
|
+
"reaction/exclamation-point-outline": {
|
|
483
|
+
"id": "tui-reaction-exclamation-point-outline",
|
|
484
|
+
"set": "reaction",
|
|
485
|
+
"name": "exclamation-point-outline",
|
|
486
|
+
"file": "reaction/exclamation-point-outline.svg",
|
|
487
|
+
"viewBox": "0 0 24 24",
|
|
488
|
+
"sprite": true
|
|
489
|
+
},
|
|
490
|
+
"reaction/heart-fill": {
|
|
491
|
+
"id": "tui-reaction-heart-fill",
|
|
492
|
+
"set": "reaction",
|
|
493
|
+
"name": "heart-fill",
|
|
494
|
+
"file": "reaction/heart-fill.svg",
|
|
495
|
+
"viewBox": "0 0 24 24",
|
|
496
|
+
"sprite": true
|
|
497
|
+
},
|
|
498
|
+
"reaction/heart-outline": {
|
|
499
|
+
"id": "tui-reaction-heart-outline",
|
|
500
|
+
"set": "reaction",
|
|
501
|
+
"name": "heart-outline",
|
|
502
|
+
"file": "reaction/heart-outline.svg",
|
|
503
|
+
"viewBox": "0 0 24 24",
|
|
504
|
+
"sprite": true
|
|
505
|
+
},
|
|
506
|
+
"reaction/laughing-fill": {
|
|
507
|
+
"id": "tui-reaction-laughing-fill",
|
|
508
|
+
"set": "reaction",
|
|
509
|
+
"name": "laughing-fill",
|
|
510
|
+
"file": "reaction/laughing-fill.svg",
|
|
511
|
+
"viewBox": "0 0 24 24",
|
|
512
|
+
"sprite": true
|
|
513
|
+
},
|
|
514
|
+
"reaction/laughing-outline": {
|
|
515
|
+
"id": "tui-reaction-laughing-outline",
|
|
516
|
+
"set": "reaction",
|
|
517
|
+
"name": "laughing-outline",
|
|
518
|
+
"file": "reaction/laughing-outline.svg",
|
|
519
|
+
"viewBox": "0 0 24 24",
|
|
520
|
+
"sprite": true
|
|
521
|
+
},
|
|
522
|
+
"reaction/question-mark-fill": {
|
|
523
|
+
"id": "tui-reaction-question-mark-fill",
|
|
524
|
+
"set": "reaction",
|
|
525
|
+
"name": "question-mark-fill",
|
|
526
|
+
"file": "reaction/question-mark-fill.svg",
|
|
527
|
+
"viewBox": "0 0 24 24",
|
|
528
|
+
"sprite": true
|
|
529
|
+
},
|
|
530
|
+
"reaction/question-mark-outline": {
|
|
531
|
+
"id": "tui-reaction-question-mark-outline",
|
|
532
|
+
"set": "reaction",
|
|
533
|
+
"name": "question-mark-outline",
|
|
534
|
+
"file": "reaction/question-mark-outline.svg",
|
|
535
|
+
"viewBox": "0 0 24 24",
|
|
536
|
+
"sprite": true
|
|
537
|
+
},
|
|
538
|
+
"reaction/star-fill": {
|
|
539
|
+
"id": "tui-reaction-star-fill",
|
|
540
|
+
"set": "reaction",
|
|
541
|
+
"name": "star-fill",
|
|
542
|
+
"file": "reaction/star-fill.svg",
|
|
543
|
+
"viewBox": "0 0 24 24",
|
|
544
|
+
"sprite": true
|
|
545
|
+
},
|
|
546
|
+
"reaction/star-outline": {
|
|
547
|
+
"id": "tui-reaction-star-outline",
|
|
548
|
+
"set": "reaction",
|
|
549
|
+
"name": "star-outline",
|
|
550
|
+
"file": "reaction/star-outline.svg",
|
|
551
|
+
"viewBox": "0 0 24 24",
|
|
552
|
+
"sprite": true
|
|
553
|
+
},
|
|
554
|
+
"reaction/star-shine-fill": {
|
|
555
|
+
"id": "tui-reaction-star-shine-fill",
|
|
556
|
+
"set": "reaction",
|
|
557
|
+
"name": "star-shine-fill",
|
|
558
|
+
"file": "reaction/star-shine-fill.svg",
|
|
559
|
+
"viewBox": "0 0 24 24",
|
|
560
|
+
"sprite": true
|
|
561
|
+
},
|
|
562
|
+
"reaction/star-shine-outline": {
|
|
563
|
+
"id": "tui-reaction-star-shine-outline",
|
|
564
|
+
"set": "reaction",
|
|
565
|
+
"name": "star-shine-outline",
|
|
566
|
+
"file": "reaction/star-shine-outline.svg",
|
|
567
|
+
"viewBox": "0 0 24 24",
|
|
568
|
+
"sprite": true
|
|
569
|
+
},
|
|
570
|
+
"reaction/thumbs-down-fill": {
|
|
571
|
+
"id": "tui-reaction-thumbs-down-fill",
|
|
572
|
+
"set": "reaction",
|
|
573
|
+
"name": "thumbs-down-fill",
|
|
574
|
+
"file": "reaction/thumbs-down-fill.svg",
|
|
575
|
+
"viewBox": "0 0 24 24",
|
|
576
|
+
"sprite": true
|
|
577
|
+
},
|
|
578
|
+
"reaction/thumbs-down-outline": {
|
|
579
|
+
"id": "tui-reaction-thumbs-down-outline",
|
|
580
|
+
"set": "reaction",
|
|
581
|
+
"name": "thumbs-down-outline",
|
|
582
|
+
"file": "reaction/thumbs-down-outline.svg",
|
|
583
|
+
"viewBox": "0 0 24 24",
|
|
584
|
+
"sprite": true
|
|
585
|
+
},
|
|
586
|
+
"reaction/thumbs-up-outline": {
|
|
587
|
+
"id": "tui-reaction-thumbs-up-outline",
|
|
588
|
+
"set": "reaction",
|
|
589
|
+
"name": "thumbs-up-outline",
|
|
590
|
+
"file": "reaction/thumbs-up-outline.svg",
|
|
591
|
+
"viewBox": "0 0 24 24",
|
|
592
|
+
"sprite": true
|
|
593
|
+
},
|
|
594
|
+
"reaction/thumbs-up": {
|
|
595
|
+
"id": "tui-reaction-thumbs-up",
|
|
596
|
+
"set": "reaction",
|
|
597
|
+
"name": "thumbs-up",
|
|
598
|
+
"file": "reaction/thumbs-up.svg",
|
|
599
|
+
"viewBox": "0 0 24 24",
|
|
600
|
+
"sprite": true
|
|
601
|
+
},
|
|
602
|
+
"reaction/triangle-down-fill": {
|
|
603
|
+
"id": "tui-reaction-triangle-down-fill",
|
|
604
|
+
"set": "reaction",
|
|
605
|
+
"name": "triangle-down-fill",
|
|
606
|
+
"file": "reaction/triangle-down-fill.svg",
|
|
607
|
+
"viewBox": "0 0 24 24",
|
|
608
|
+
"sprite": true
|
|
609
|
+
},
|
|
610
|
+
"reaction/triangle-down-outline": {
|
|
611
|
+
"id": "tui-reaction-triangle-down-outline",
|
|
612
|
+
"set": "reaction",
|
|
613
|
+
"name": "triangle-down-outline",
|
|
614
|
+
"file": "reaction/triangle-down-outline.svg",
|
|
615
|
+
"viewBox": "0 0 24 24",
|
|
616
|
+
"sprite": true
|
|
617
|
+
},
|
|
618
|
+
"reaction/triangle-up-fill": {
|
|
619
|
+
"id": "tui-reaction-triangle-up-fill",
|
|
620
|
+
"set": "reaction",
|
|
621
|
+
"name": "triangle-up-fill",
|
|
622
|
+
"file": "reaction/triangle-up-fill.svg",
|
|
623
|
+
"viewBox": "0 0 24 24",
|
|
624
|
+
"sprite": true
|
|
625
|
+
},
|
|
626
|
+
"reaction/triangle-up-outline": {
|
|
627
|
+
"id": "tui-reaction-triangle-up-outline",
|
|
628
|
+
"set": "reaction",
|
|
629
|
+
"name": "triangle-up-outline",
|
|
630
|
+
"file": "reaction/triangle-up-outline.svg",
|
|
631
|
+
"viewBox": "0 0 24 24",
|
|
632
|
+
"sprite": true
|
|
633
|
+
},
|
|
634
|
+
"system/alert-circle-fill": {
|
|
635
|
+
"id": "tui-system-alert-circle-fill",
|
|
636
|
+
"set": "system",
|
|
637
|
+
"name": "alert-circle-fill",
|
|
638
|
+
"file": "system/alert-circle-fill.svg",
|
|
639
|
+
"viewBox": "0 0 24 24",
|
|
640
|
+
"sprite": true
|
|
641
|
+
},
|
|
642
|
+
"system/alert-circle-outline": {
|
|
643
|
+
"id": "tui-system-alert-circle-outline",
|
|
644
|
+
"set": "system",
|
|
645
|
+
"name": "alert-circle-outline",
|
|
646
|
+
"file": "system/alert-circle-outline.svg",
|
|
647
|
+
"viewBox": "0 0 24 24",
|
|
648
|
+
"sprite": true
|
|
649
|
+
},
|
|
650
|
+
"system/arrow-clockwise": {
|
|
651
|
+
"id": "tui-system-arrow-clockwise",
|
|
652
|
+
"set": "system",
|
|
653
|
+
"name": "arrow-clockwise",
|
|
654
|
+
"file": "system/arrow-clockwise.svg",
|
|
655
|
+
"viewBox": "0 0 24 24",
|
|
656
|
+
"sprite": true
|
|
657
|
+
},
|
|
658
|
+
"system/arrow-counterclockwise": {
|
|
659
|
+
"id": "tui-system-arrow-counterclockwise",
|
|
660
|
+
"set": "system",
|
|
661
|
+
"name": "arrow-counterclockwise",
|
|
662
|
+
"file": "system/arrow-counterclockwise.svg",
|
|
663
|
+
"viewBox": "0 0 24 24",
|
|
664
|
+
"sprite": true
|
|
665
|
+
},
|
|
666
|
+
"system/arrow-down": {
|
|
667
|
+
"id": "tui-system-arrow-down",
|
|
668
|
+
"set": "system",
|
|
669
|
+
"name": "arrow-down",
|
|
670
|
+
"file": "system/arrow-down.svg",
|
|
671
|
+
"viewBox": "0 0 24 24",
|
|
672
|
+
"sprite": true
|
|
673
|
+
},
|
|
674
|
+
"system/arrow-left": {
|
|
675
|
+
"id": "tui-system-arrow-left",
|
|
676
|
+
"set": "system",
|
|
677
|
+
"name": "arrow-left",
|
|
678
|
+
"file": "system/arrow-left.svg",
|
|
679
|
+
"viewBox": "0 0 24 24",
|
|
680
|
+
"sprite": true
|
|
681
|
+
},
|
|
682
|
+
"system/arrow-right": {
|
|
683
|
+
"id": "tui-system-arrow-right",
|
|
684
|
+
"set": "system",
|
|
685
|
+
"name": "arrow-right",
|
|
686
|
+
"file": "system/arrow-right.svg",
|
|
687
|
+
"viewBox": "0 0 24 24",
|
|
688
|
+
"sprite": true
|
|
689
|
+
},
|
|
690
|
+
"system/arrow-up": {
|
|
691
|
+
"id": "tui-system-arrow-up",
|
|
692
|
+
"set": "system",
|
|
693
|
+
"name": "arrow-up",
|
|
694
|
+
"file": "system/arrow-up.svg",
|
|
695
|
+
"viewBox": "0 0 24 24",
|
|
696
|
+
"sprite": true
|
|
697
|
+
},
|
|
698
|
+
"system/attachment": {
|
|
699
|
+
"id": "tui-system-attachment",
|
|
700
|
+
"set": "system",
|
|
701
|
+
"name": "attachment",
|
|
702
|
+
"file": "system/attachment.svg",
|
|
703
|
+
"viewBox": "0 0 24 24",
|
|
704
|
+
"sprite": true
|
|
705
|
+
},
|
|
706
|
+
"system/bell-unread": {
|
|
707
|
+
"id": "tui-system-bell-unread",
|
|
708
|
+
"set": "system",
|
|
709
|
+
"name": "bell-unread",
|
|
710
|
+
"file": "system/bell-unread.svg",
|
|
711
|
+
"viewBox": "0 0 24 24",
|
|
712
|
+
"sprite": true
|
|
713
|
+
},
|
|
714
|
+
"system/bell": {
|
|
715
|
+
"id": "tui-system-bell",
|
|
716
|
+
"set": "system",
|
|
717
|
+
"name": "bell",
|
|
718
|
+
"file": "system/bell.svg",
|
|
719
|
+
"viewBox": "0 0 24 24",
|
|
720
|
+
"sprite": true
|
|
721
|
+
},
|
|
722
|
+
"system/check-small": {
|
|
723
|
+
"id": "tui-system-check-small",
|
|
724
|
+
"set": "system",
|
|
725
|
+
"name": "check-small",
|
|
726
|
+
"file": "system/check-small.svg",
|
|
727
|
+
"viewBox": "0 0 24 24",
|
|
728
|
+
"sprite": true
|
|
729
|
+
},
|
|
730
|
+
"system/check": {
|
|
731
|
+
"id": "tui-system-check",
|
|
732
|
+
"set": "system",
|
|
733
|
+
"name": "check",
|
|
734
|
+
"file": "system/check.svg",
|
|
735
|
+
"viewBox": "0 0 24 24",
|
|
736
|
+
"sprite": true
|
|
737
|
+
},
|
|
738
|
+
"system/checklist": {
|
|
739
|
+
"id": "tui-system-checklist",
|
|
740
|
+
"set": "system",
|
|
741
|
+
"name": "checklist",
|
|
742
|
+
"file": "system/checklist.svg",
|
|
743
|
+
"viewBox": "0 0 24 24",
|
|
744
|
+
"sprite": true
|
|
745
|
+
},
|
|
746
|
+
"system/chevron-down-small": {
|
|
747
|
+
"id": "tui-system-chevron-down-small",
|
|
748
|
+
"set": "system",
|
|
749
|
+
"name": "chevron-down-small",
|
|
750
|
+
"file": "system/chevron-down-small.svg",
|
|
751
|
+
"viewBox": "0 0 24 24",
|
|
752
|
+
"sprite": true
|
|
753
|
+
},
|
|
754
|
+
"system/chevron-down": {
|
|
755
|
+
"id": "tui-system-chevron-down",
|
|
756
|
+
"set": "system",
|
|
757
|
+
"name": "chevron-down",
|
|
758
|
+
"file": "system/chevron-down.svg",
|
|
759
|
+
"viewBox": "0 0 24 24",
|
|
760
|
+
"sprite": true
|
|
761
|
+
},
|
|
762
|
+
"system/chevron-left-small": {
|
|
763
|
+
"id": "tui-system-chevron-left-small",
|
|
764
|
+
"set": "system",
|
|
765
|
+
"name": "chevron-left-small",
|
|
766
|
+
"file": "system/chevron-left-small.svg",
|
|
767
|
+
"viewBox": "0 0 24 24",
|
|
768
|
+
"sprite": true
|
|
769
|
+
},
|
|
770
|
+
"system/chevron-left": {
|
|
771
|
+
"id": "tui-system-chevron-left",
|
|
772
|
+
"set": "system",
|
|
773
|
+
"name": "chevron-left",
|
|
774
|
+
"file": "system/chevron-left.svg",
|
|
775
|
+
"viewBox": "0 0 24 24",
|
|
776
|
+
"sprite": true
|
|
777
|
+
},
|
|
778
|
+
"system/chevron-right-small": {
|
|
779
|
+
"id": "tui-system-chevron-right-small",
|
|
780
|
+
"set": "system",
|
|
781
|
+
"name": "chevron-right-small",
|
|
782
|
+
"file": "system/chevron-right-small.svg",
|
|
783
|
+
"viewBox": "0 0 24 24",
|
|
784
|
+
"sprite": true
|
|
785
|
+
},
|
|
786
|
+
"system/chevron-right": {
|
|
787
|
+
"id": "tui-system-chevron-right",
|
|
788
|
+
"set": "system",
|
|
789
|
+
"name": "chevron-right",
|
|
790
|
+
"file": "system/chevron-right.svg",
|
|
791
|
+
"viewBox": "0 0 24 24",
|
|
792
|
+
"sprite": true
|
|
793
|
+
},
|
|
794
|
+
"system/chevron-up-small": {
|
|
795
|
+
"id": "tui-system-chevron-up-small",
|
|
796
|
+
"set": "system",
|
|
797
|
+
"name": "chevron-up-small",
|
|
798
|
+
"file": "system/chevron-up-small.svg",
|
|
799
|
+
"viewBox": "0 0 24 24",
|
|
800
|
+
"sprite": true
|
|
801
|
+
},
|
|
802
|
+
"system/chevron-up": {
|
|
803
|
+
"id": "tui-system-chevron-up",
|
|
804
|
+
"set": "system",
|
|
805
|
+
"name": "chevron-up",
|
|
806
|
+
"file": "system/chevron-up.svg",
|
|
807
|
+
"viewBox": "0 0 24 24",
|
|
808
|
+
"sprite": true
|
|
809
|
+
},
|
|
810
|
+
"system/circle-small-fill": {
|
|
811
|
+
"id": "tui-system-circle-small-fill",
|
|
812
|
+
"set": "system",
|
|
813
|
+
"name": "circle-small-fill",
|
|
814
|
+
"file": "system/circle-small-fill.svg",
|
|
815
|
+
"viewBox": "0 0 24 24",
|
|
816
|
+
"sprite": true
|
|
817
|
+
},
|
|
818
|
+
"system/circle-small-outline": {
|
|
819
|
+
"id": "tui-system-circle-small-outline",
|
|
820
|
+
"set": "system",
|
|
821
|
+
"name": "circle-small-outline",
|
|
822
|
+
"file": "system/circle-small-outline.svg",
|
|
823
|
+
"viewBox": "0 0 24 24",
|
|
824
|
+
"sprite": true
|
|
825
|
+
},
|
|
826
|
+
"system/close-circle-fill": {
|
|
827
|
+
"id": "tui-system-close-circle-fill",
|
|
828
|
+
"set": "system",
|
|
829
|
+
"name": "close-circle-fill",
|
|
830
|
+
"file": "system/close-circle-fill.svg",
|
|
831
|
+
"viewBox": "0 0 24 24",
|
|
832
|
+
"sprite": true
|
|
833
|
+
},
|
|
834
|
+
"system/close-circle-outline": {
|
|
835
|
+
"id": "tui-system-close-circle-outline",
|
|
836
|
+
"set": "system",
|
|
837
|
+
"name": "close-circle-outline",
|
|
838
|
+
"file": "system/close-circle-outline.svg",
|
|
839
|
+
"viewBox": "0 0 24 24",
|
|
840
|
+
"sprite": true
|
|
841
|
+
},
|
|
842
|
+
"system/close-small": {
|
|
843
|
+
"id": "tui-system-close-small",
|
|
844
|
+
"set": "system",
|
|
845
|
+
"name": "close-small",
|
|
846
|
+
"file": "system/close-small.svg",
|
|
847
|
+
"viewBox": "0 0 24 24",
|
|
848
|
+
"sprite": true
|
|
849
|
+
},
|
|
850
|
+
"system/close": {
|
|
851
|
+
"id": "tui-system-close",
|
|
852
|
+
"set": "system",
|
|
853
|
+
"name": "close",
|
|
854
|
+
"file": "system/close.svg",
|
|
855
|
+
"viewBox": "0 0 24 24",
|
|
856
|
+
"sprite": true
|
|
857
|
+
},
|
|
858
|
+
"system/cog": {
|
|
859
|
+
"id": "tui-system-cog",
|
|
860
|
+
"set": "system",
|
|
861
|
+
"name": "cog",
|
|
862
|
+
"file": "system/cog.svg",
|
|
863
|
+
"viewBox": "0 0 24 24",
|
|
864
|
+
"sprite": true
|
|
865
|
+
},
|
|
866
|
+
"system/copy": {
|
|
867
|
+
"id": "tui-system-copy",
|
|
868
|
+
"set": "system",
|
|
869
|
+
"name": "copy",
|
|
870
|
+
"file": "system/copy.svg",
|
|
871
|
+
"viewBox": "0 0 24 24",
|
|
872
|
+
"sprite": true
|
|
873
|
+
},
|
|
874
|
+
"system/download": {
|
|
875
|
+
"id": "tui-system-download",
|
|
876
|
+
"set": "system",
|
|
877
|
+
"name": "download",
|
|
878
|
+
"file": "system/download.svg",
|
|
879
|
+
"viewBox": "0 0 24 24",
|
|
880
|
+
"sprite": true
|
|
881
|
+
},
|
|
882
|
+
"system/duplicate": {
|
|
883
|
+
"id": "tui-system-duplicate",
|
|
884
|
+
"set": "system",
|
|
885
|
+
"name": "duplicate",
|
|
886
|
+
"file": "system/duplicate.svg",
|
|
887
|
+
"viewBox": "0 0 24 24",
|
|
888
|
+
"sprite": true
|
|
889
|
+
},
|
|
890
|
+
"system/edit": {
|
|
891
|
+
"id": "tui-system-edit",
|
|
892
|
+
"set": "system",
|
|
893
|
+
"name": "edit",
|
|
894
|
+
"file": "system/edit.svg",
|
|
895
|
+
"viewBox": "0 0 24 24",
|
|
896
|
+
"sprite": true
|
|
897
|
+
},
|
|
898
|
+
"system/ellipsis-h": {
|
|
899
|
+
"id": "tui-system-ellipsis-h",
|
|
900
|
+
"set": "system",
|
|
901
|
+
"name": "ellipsis-h",
|
|
902
|
+
"file": "system/ellipsis-h.svg",
|
|
903
|
+
"viewBox": "0 0 24 24",
|
|
904
|
+
"sprite": true
|
|
905
|
+
},
|
|
906
|
+
"system/ellipsis-v": {
|
|
907
|
+
"id": "tui-system-ellipsis-v",
|
|
908
|
+
"set": "system",
|
|
909
|
+
"name": "ellipsis-v",
|
|
910
|
+
"file": "system/ellipsis-v.svg",
|
|
911
|
+
"viewBox": "0 0 24 24",
|
|
912
|
+
"sprite": true
|
|
913
|
+
},
|
|
914
|
+
"system/envelope": {
|
|
915
|
+
"id": "tui-system-envelope",
|
|
916
|
+
"set": "system",
|
|
917
|
+
"name": "envelope",
|
|
918
|
+
"file": "system/envelope.svg",
|
|
919
|
+
"viewBox": "0 0 24 24",
|
|
920
|
+
"sprite": true
|
|
921
|
+
},
|
|
922
|
+
"system/external-link": {
|
|
923
|
+
"id": "tui-system-external-link",
|
|
924
|
+
"set": "system",
|
|
925
|
+
"name": "external-link",
|
|
926
|
+
"file": "system/external-link.svg",
|
|
927
|
+
"viewBox": "0 0 24 24",
|
|
928
|
+
"sprite": true
|
|
929
|
+
},
|
|
930
|
+
"system/funnel": {
|
|
931
|
+
"id": "tui-system-funnel",
|
|
932
|
+
"set": "system",
|
|
933
|
+
"name": "funnel",
|
|
934
|
+
"file": "system/funnel.svg",
|
|
935
|
+
"viewBox": "0 0 24 24",
|
|
936
|
+
"sprite": true
|
|
937
|
+
},
|
|
938
|
+
"system/globe": {
|
|
939
|
+
"id": "tui-system-globe",
|
|
940
|
+
"set": "system",
|
|
941
|
+
"name": "globe",
|
|
942
|
+
"file": "system/globe.svg",
|
|
943
|
+
"viewBox": "0 0 24 24",
|
|
944
|
+
"sprite": true
|
|
945
|
+
},
|
|
946
|
+
"system/handle-alt": {
|
|
947
|
+
"id": "tui-system-handle-alt",
|
|
948
|
+
"set": "system",
|
|
949
|
+
"name": "handle-alt",
|
|
950
|
+
"file": "system/handle-alt.svg",
|
|
951
|
+
"viewBox": "0 0 24 24",
|
|
952
|
+
"sprite": true
|
|
953
|
+
},
|
|
954
|
+
"system/handle": {
|
|
955
|
+
"id": "tui-system-handle",
|
|
956
|
+
"set": "system",
|
|
957
|
+
"name": "handle",
|
|
958
|
+
"file": "system/handle.svg",
|
|
959
|
+
"viewBox": "0 0 24 24",
|
|
960
|
+
"sprite": true
|
|
961
|
+
},
|
|
962
|
+
"system/help": {
|
|
963
|
+
"id": "tui-system-help",
|
|
964
|
+
"set": "system",
|
|
965
|
+
"name": "help",
|
|
966
|
+
"file": "system/help.svg",
|
|
967
|
+
"viewBox": "0 0 24 24",
|
|
968
|
+
"sprite": true
|
|
969
|
+
},
|
|
970
|
+
"system/hide": {
|
|
971
|
+
"id": "tui-system-hide",
|
|
972
|
+
"set": "system",
|
|
973
|
+
"name": "hide",
|
|
974
|
+
"file": "system/hide.svg",
|
|
975
|
+
"viewBox": "0 0 24 24",
|
|
976
|
+
"sprite": true
|
|
977
|
+
},
|
|
978
|
+
"system/highlight": {
|
|
979
|
+
"id": "tui-system-highlight",
|
|
980
|
+
"set": "system",
|
|
981
|
+
"name": "highlight",
|
|
982
|
+
"file": "system/highlight.svg",
|
|
983
|
+
"viewBox": "0 0 24 24",
|
|
984
|
+
"sprite": true
|
|
985
|
+
},
|
|
986
|
+
"system/inbox": {
|
|
987
|
+
"id": "tui-system-inbox",
|
|
988
|
+
"set": "system",
|
|
989
|
+
"name": "inbox",
|
|
990
|
+
"file": "system/inbox.svg",
|
|
991
|
+
"viewBox": "0 0 24 24",
|
|
992
|
+
"sprite": true
|
|
993
|
+
},
|
|
994
|
+
"system/key": {
|
|
995
|
+
"id": "tui-system-key",
|
|
996
|
+
"set": "system",
|
|
997
|
+
"name": "key",
|
|
998
|
+
"file": "system/key.svg",
|
|
999
|
+
"viewBox": "0 0 24 24",
|
|
1000
|
+
"sprite": true
|
|
1001
|
+
},
|
|
1002
|
+
"system/link": {
|
|
1003
|
+
"id": "tui-system-link",
|
|
1004
|
+
"set": "system",
|
|
1005
|
+
"name": "link",
|
|
1006
|
+
"file": "system/link.svg",
|
|
1007
|
+
"viewBox": "0 0 24 24",
|
|
1008
|
+
"sprite": true
|
|
1009
|
+
},
|
|
1010
|
+
"system/lock-outline": {
|
|
1011
|
+
"id": "tui-system-lock-outline",
|
|
1012
|
+
"set": "system",
|
|
1013
|
+
"name": "lock-outline",
|
|
1014
|
+
"file": "system/lock-outline.svg",
|
|
1015
|
+
"viewBox": "0 0 24 24",
|
|
1016
|
+
"sprite": true
|
|
1017
|
+
},
|
|
1018
|
+
"system/lock-small": {
|
|
1019
|
+
"id": "tui-system-lock-small",
|
|
1020
|
+
"set": "system",
|
|
1021
|
+
"name": "lock-small",
|
|
1022
|
+
"file": "system/lock-small.svg",
|
|
1023
|
+
"viewBox": "0 0 24 24",
|
|
1024
|
+
"sprite": true
|
|
1025
|
+
},
|
|
1026
|
+
"system/lock": {
|
|
1027
|
+
"id": "tui-system-lock",
|
|
1028
|
+
"set": "system",
|
|
1029
|
+
"name": "lock",
|
|
1030
|
+
"file": "system/lock.svg",
|
|
1031
|
+
"viewBox": "0 0 24 24",
|
|
1032
|
+
"sprite": true
|
|
1033
|
+
},
|
|
1034
|
+
"system/minus-circle-fill": {
|
|
1035
|
+
"id": "tui-system-minus-circle-fill",
|
|
1036
|
+
"set": "system",
|
|
1037
|
+
"name": "minus-circle-fill",
|
|
1038
|
+
"file": "system/minus-circle-fill.svg",
|
|
1039
|
+
"viewBox": "0 0 24 24",
|
|
1040
|
+
"sprite": true
|
|
1041
|
+
},
|
|
1042
|
+
"system/minus-circle-outline": {
|
|
1043
|
+
"id": "tui-system-minus-circle-outline",
|
|
1044
|
+
"set": "system",
|
|
1045
|
+
"name": "minus-circle-outline",
|
|
1046
|
+
"file": "system/minus-circle-outline.svg",
|
|
1047
|
+
"viewBox": "0 0 24 24",
|
|
1048
|
+
"sprite": true
|
|
1049
|
+
},
|
|
1050
|
+
"system/minus": {
|
|
1051
|
+
"id": "tui-system-minus",
|
|
1052
|
+
"set": "system",
|
|
1053
|
+
"name": "minus",
|
|
1054
|
+
"file": "system/minus.svg",
|
|
1055
|
+
"viewBox": "0 0 24 24",
|
|
1056
|
+
"sprite": true
|
|
1057
|
+
},
|
|
1058
|
+
"system/paste": {
|
|
1059
|
+
"id": "tui-system-paste",
|
|
1060
|
+
"set": "system",
|
|
1061
|
+
"name": "paste",
|
|
1062
|
+
"file": "system/paste.svg",
|
|
1063
|
+
"viewBox": "0 0 24 24",
|
|
1064
|
+
"sprite": true
|
|
1065
|
+
},
|
|
1066
|
+
"system/pin-small": {
|
|
1067
|
+
"id": "tui-system-pin-small",
|
|
1068
|
+
"set": "system",
|
|
1069
|
+
"name": "pin-small",
|
|
1070
|
+
"file": "system/pin-small.svg",
|
|
1071
|
+
"viewBox": "0 0 24 24",
|
|
1072
|
+
"sprite": true
|
|
1073
|
+
},
|
|
1074
|
+
"system/pin": {
|
|
1075
|
+
"id": "tui-system-pin",
|
|
1076
|
+
"set": "system",
|
|
1077
|
+
"name": "pin",
|
|
1078
|
+
"file": "system/pin.svg",
|
|
1079
|
+
"viewBox": "0 0 24 24",
|
|
1080
|
+
"sprite": true
|
|
1081
|
+
},
|
|
1082
|
+
"system/plus-circle-fill": {
|
|
1083
|
+
"id": "tui-system-plus-circle-fill",
|
|
1084
|
+
"set": "system",
|
|
1085
|
+
"name": "plus-circle-fill",
|
|
1086
|
+
"file": "system/plus-circle-fill.svg",
|
|
1087
|
+
"viewBox": "0 0 24 24",
|
|
1088
|
+
"sprite": true
|
|
1089
|
+
},
|
|
1090
|
+
"system/plus-circle-outline": {
|
|
1091
|
+
"id": "tui-system-plus-circle-outline",
|
|
1092
|
+
"set": "system",
|
|
1093
|
+
"name": "plus-circle-outline",
|
|
1094
|
+
"file": "system/plus-circle-outline.svg",
|
|
1095
|
+
"viewBox": "0 0 24 24",
|
|
1096
|
+
"sprite": true
|
|
1097
|
+
},
|
|
1098
|
+
"system/plus": {
|
|
1099
|
+
"id": "tui-system-plus",
|
|
1100
|
+
"set": "system",
|
|
1101
|
+
"name": "plus",
|
|
1102
|
+
"file": "system/plus.svg",
|
|
1103
|
+
"viewBox": "0 0 24 24",
|
|
1104
|
+
"sprite": true
|
|
1105
|
+
},
|
|
1106
|
+
"system/recurring": {
|
|
1107
|
+
"id": "tui-system-recurring",
|
|
1108
|
+
"set": "system",
|
|
1109
|
+
"name": "recurring",
|
|
1110
|
+
"file": "system/recurring.svg",
|
|
1111
|
+
"viewBox": "0 0 24 24",
|
|
1112
|
+
"sprite": true
|
|
1113
|
+
},
|
|
1114
|
+
"system/reverse": {
|
|
1115
|
+
"id": "tui-system-reverse",
|
|
1116
|
+
"set": "system",
|
|
1117
|
+
"name": "reverse",
|
|
1118
|
+
"file": "system/reverse.svg",
|
|
1119
|
+
"viewBox": "0 0 24 24",
|
|
1120
|
+
"sprite": true
|
|
1121
|
+
},
|
|
1122
|
+
"system/send": {
|
|
1123
|
+
"id": "tui-system-send",
|
|
1124
|
+
"set": "system",
|
|
1125
|
+
"name": "send",
|
|
1126
|
+
"file": "system/send.svg",
|
|
1127
|
+
"viewBox": "0 0 24 24",
|
|
1128
|
+
"sprite": true
|
|
1129
|
+
},
|
|
1130
|
+
"system/settings": {
|
|
1131
|
+
"id": "tui-system-settings",
|
|
1132
|
+
"set": "system",
|
|
1133
|
+
"name": "settings",
|
|
1134
|
+
"file": "system/settings.svg",
|
|
1135
|
+
"viewBox": "0 0 24 24",
|
|
1136
|
+
"sprite": true
|
|
1137
|
+
},
|
|
1138
|
+
"system/show": {
|
|
1139
|
+
"id": "tui-system-show",
|
|
1140
|
+
"set": "system",
|
|
1141
|
+
"name": "show",
|
|
1142
|
+
"file": "system/show.svg",
|
|
1143
|
+
"viewBox": "0 0 24 24",
|
|
1144
|
+
"sprite": true
|
|
1145
|
+
},
|
|
1146
|
+
"system/star-fill": {
|
|
1147
|
+
"id": "tui-system-star-fill",
|
|
1148
|
+
"set": "system",
|
|
1149
|
+
"name": "star-fill",
|
|
1150
|
+
"file": "system/star-fill.svg",
|
|
1151
|
+
"viewBox": "0 0 24 24",
|
|
1152
|
+
"sprite": true
|
|
1153
|
+
},
|
|
1154
|
+
"system/star-half": {
|
|
1155
|
+
"id": "tui-system-star-half",
|
|
1156
|
+
"set": "system",
|
|
1157
|
+
"name": "star-half",
|
|
1158
|
+
"file": "system/star-half.svg",
|
|
1159
|
+
"viewBox": "0 0 24 24",
|
|
1160
|
+
"sprite": true
|
|
1161
|
+
},
|
|
1162
|
+
"system/star-outline": {
|
|
1163
|
+
"id": "tui-system-star-outline",
|
|
1164
|
+
"set": "system",
|
|
1165
|
+
"name": "star-outline",
|
|
1166
|
+
"file": "system/star-outline.svg",
|
|
1167
|
+
"viewBox": "0 0 24 24",
|
|
1168
|
+
"sprite": true
|
|
1169
|
+
},
|
|
1170
|
+
"system/tool": {
|
|
1171
|
+
"id": "tui-system-tool",
|
|
1172
|
+
"set": "system",
|
|
1173
|
+
"name": "tool",
|
|
1174
|
+
"file": "system/tool.svg",
|
|
1175
|
+
"viewBox": "0 0 24 24",
|
|
1176
|
+
"sprite": true
|
|
1177
|
+
},
|
|
1178
|
+
"system/trash": {
|
|
1179
|
+
"id": "tui-system-trash",
|
|
1180
|
+
"set": "system",
|
|
1181
|
+
"name": "trash",
|
|
1182
|
+
"file": "system/trash.svg",
|
|
1183
|
+
"viewBox": "0 0 24 24",
|
|
1184
|
+
"sprite": true
|
|
1185
|
+
},
|
|
1186
|
+
"system/unlink": {
|
|
1187
|
+
"id": "tui-system-unlink",
|
|
1188
|
+
"set": "system",
|
|
1189
|
+
"name": "unlink",
|
|
1190
|
+
"file": "system/unlink.svg",
|
|
1191
|
+
"viewBox": "0 0 24 24",
|
|
1192
|
+
"sprite": true
|
|
1193
|
+
},
|
|
1194
|
+
"system/unlock": {
|
|
1195
|
+
"id": "tui-system-unlock",
|
|
1196
|
+
"set": "system",
|
|
1197
|
+
"name": "unlock",
|
|
1198
|
+
"file": "system/unlock.svg",
|
|
1199
|
+
"viewBox": "0 0 24 24",
|
|
1200
|
+
"sprite": true
|
|
1201
|
+
},
|
|
1202
|
+
"system/user-circle-fill": {
|
|
1203
|
+
"id": "tui-system-user-circle-fill",
|
|
1204
|
+
"set": "system",
|
|
1205
|
+
"name": "user-circle-fill",
|
|
1206
|
+
"file": "system/user-circle-fill.svg",
|
|
1207
|
+
"viewBox": "0 0 24 24",
|
|
1208
|
+
"sprite": true
|
|
1209
|
+
},
|
|
1210
|
+
"system/user-circle-outline": {
|
|
1211
|
+
"id": "tui-system-user-circle-outline",
|
|
1212
|
+
"set": "system",
|
|
1213
|
+
"name": "user-circle-outline",
|
|
1214
|
+
"file": "system/user-circle-outline.svg",
|
|
1215
|
+
"viewBox": "0 0 24 24",
|
|
1216
|
+
"sprite": true
|
|
1217
|
+
},
|
|
1218
|
+
"system/view": {
|
|
1219
|
+
"id": "tui-system-view",
|
|
1220
|
+
"set": "system",
|
|
1221
|
+
"name": "view",
|
|
1222
|
+
"file": "system/view.svg",
|
|
1223
|
+
"viewBox": "0 0 24 24",
|
|
1224
|
+
"sprite": true
|
|
1225
|
+
}
|
|
1226
|
+
}
|