@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.
Files changed (212) hide show
  1. package/README.md +100 -0
  2. package/components/Accordion/Accordion.d.ts +22 -0
  3. package/components/Accordion/Accordion.js +192 -0
  4. package/components/Accordion/AccordionContext.d.ts +5 -0
  5. package/components/Accordion/AccordionContext.js +23 -0
  6. package/components/Accordion/index.d.ts +2 -0
  7. package/components/Accordion/index.js +1 -0
  8. package/components/Accordion/types.d.ts +61 -0
  9. package/components/Accordion/types.js +1 -0
  10. package/components/Avatar/Avatar.d.ts +11 -0
  11. package/components/Avatar/Avatar.js +67 -0
  12. package/components/Avatar/AvatarGroup.d.ts +11 -0
  13. package/components/Avatar/AvatarGroup.js +45 -0
  14. package/components/Avatar/index.d.ts +9 -0
  15. package/components/Avatar/index.js +7 -0
  16. package/components/Avatar/types.d.ts +44 -0
  17. package/components/Avatar/types.js +12 -0
  18. package/components/Button/Button.d.ts +4 -0
  19. package/components/Button/Button.js +33 -0
  20. package/components/Button/index.d.ts +2 -0
  21. package/components/Button/index.js +1 -0
  22. package/components/Button/types.d.ts +127 -0
  23. package/components/Button/types.js +1 -0
  24. package/components/Card/Card.d.ts +29 -0
  25. package/components/Card/Card.js +47 -0
  26. package/components/Card/index.d.ts +2 -0
  27. package/components/Card/index.js +1 -0
  28. package/components/Chip/Chip.d.ts +24 -0
  29. package/components/Chip/Chip.js +37 -0
  30. package/components/Chip/index.d.ts +2 -0
  31. package/components/Chip/index.js +1 -0
  32. package/components/Chips/Chips.d.ts +31 -0
  33. package/components/Chips/Chips.js +21 -0
  34. package/components/Chips/index.d.ts +2 -0
  35. package/components/Chips/index.js +1 -0
  36. package/components/ContentIndicator/ContentIndicator.d.ts +2 -0
  37. package/components/ContentIndicator/ContentIndicator.js +21 -0
  38. package/components/ContentIndicator/index.d.ts +2 -0
  39. package/components/ContentIndicator/index.js +1 -0
  40. package/components/ContentIndicator/types.d.ts +57 -0
  41. package/components/ContentIndicator/types.js +1 -0
  42. package/components/Dropdown/Dropdown.d.ts +31 -0
  43. package/components/Dropdown/Dropdown.js +219 -0
  44. package/components/Dropdown/DropdownContext.d.ts +3 -0
  45. package/components/Dropdown/DropdownContext.js +9 -0
  46. package/components/Dropdown/index.d.ts +2 -0
  47. package/components/Dropdown/index.js +1 -0
  48. package/components/Dropdown/types.d.ts +102 -0
  49. package/components/Dropdown/types.js +8 -0
  50. package/components/Icon/Icon.d.ts +22 -0
  51. package/components/Icon/Icon.js +24 -0
  52. package/components/Icon/index.d.ts +2 -0
  53. package/components/Icon/index.js +1 -0
  54. package/components/IconButton/IconButton.d.ts +2 -0
  55. package/components/IconButton/IconButton.js +50 -0
  56. package/components/IconButton/index.d.ts +2 -0
  57. package/components/IconButton/index.js +1 -0
  58. package/components/IconButton/types.d.ts +79 -0
  59. package/components/IconButton/types.js +1 -0
  60. package/components/Modal/Modal.d.ts +52 -0
  61. package/components/Modal/Modal.js +133 -0
  62. package/components/Modal/context.d.ts +6 -0
  63. package/components/Modal/context.js +9 -0
  64. package/components/Modal/index.d.ts +2 -0
  65. package/components/Modal/index.js +1 -0
  66. package/components/Notice/Notice.d.ts +93 -0
  67. package/components/Notice/Notice.js +144 -0
  68. package/components/Notice/index.d.ts +2 -0
  69. package/components/Notice/index.js +1 -0
  70. package/components/OverlapStack/OverlapStack.d.ts +44 -0
  71. package/components/OverlapStack/OverlapStack.js +41 -0
  72. package/components/OverlapStack/index.d.ts +2 -0
  73. package/components/OverlapStack/index.js +1 -0
  74. package/components/Pager/Pager.d.ts +26 -0
  75. package/components/Pager/Pager.js +151 -0
  76. package/components/Pager/index.d.ts +2 -0
  77. package/components/Pager/index.js +1 -0
  78. package/components/Progress/Progress.d.ts +2 -0
  79. package/components/Progress/Progress.js +100 -0
  80. package/components/Progress/index.d.ts +4 -0
  81. package/components/Progress/index.js +2 -0
  82. package/components/Progress/types.d.ts +251 -0
  83. package/components/Progress/types.js +1 -0
  84. package/components/Progress/useProgressSegments.d.ts +40 -0
  85. package/components/Progress/useProgressSegments.js +42 -0
  86. package/components/Rating/Rating.d.ts +32 -0
  87. package/components/Rating/Rating.js +74 -0
  88. package/components/Rating/index.d.ts +2 -0
  89. package/components/Rating/index.js +1 -0
  90. package/components/SegmentedControl/SegmentedControl.d.ts +10 -0
  91. package/components/SegmentedControl/SegmentedControl.js +183 -0
  92. package/components/SegmentedControl/SegmentedControlContext.d.ts +3 -0
  93. package/components/SegmentedControl/SegmentedControlContext.js +9 -0
  94. package/components/SegmentedControl/index.d.ts +2 -0
  95. package/components/SegmentedControl/index.js +1 -0
  96. package/components/SegmentedControl/types.d.ts +63 -0
  97. package/components/SegmentedControl/types.js +1 -0
  98. package/components/Sidebar/Sidebar.d.ts +17 -0
  99. package/components/Sidebar/Sidebar.js +107 -0
  100. package/components/Sidebar/index.d.ts +2 -0
  101. package/components/Sidebar/index.js +1 -0
  102. package/components/Sidebar/types.d.ts +65 -0
  103. package/components/Sidebar/types.js +4 -0
  104. package/components/StepIndicator/StepIndicator.d.ts +2 -0
  105. package/components/StepIndicator/StepIndicator.js +64 -0
  106. package/components/StepIndicator/index.d.ts +2 -0
  107. package/components/StepIndicator/index.js +1 -0
  108. package/components/StepIndicator/types.d.ts +68 -0
  109. package/components/StepIndicator/types.js +1 -0
  110. package/components/StepList/StepList.d.ts +12 -0
  111. package/components/StepList/StepList.js +59 -0
  112. package/components/StepList/StepListContext.d.ts +3 -0
  113. package/components/StepList/StepListContext.js +9 -0
  114. package/components/StepList/index.d.ts +2 -0
  115. package/components/StepList/index.js +1 -0
  116. package/components/StepList/types.d.ts +91 -0
  117. package/components/StepList/types.js +4 -0
  118. package/components/Table/BulkActionsBar.d.ts +12 -0
  119. package/components/Table/BulkActionsBar.js +9 -0
  120. package/components/Table/DataTable.d.ts +35 -0
  121. package/components/Table/DataTable.js +184 -0
  122. package/components/Table/Pagination.d.ts +13 -0
  123. package/components/Table/Pagination.js +13 -0
  124. package/components/Table/index.d.ts +2 -0
  125. package/components/Table/index.js +1 -0
  126. package/components/Tabs/Tabs.d.ts +23 -0
  127. package/components/Tabs/Tabs.js +309 -0
  128. package/components/Tabs/TabsContext.d.ts +3 -0
  129. package/components/Tabs/TabsContext.js +12 -0
  130. package/components/Tabs/index.d.ts +2 -0
  131. package/components/Tabs/index.js +1 -0
  132. package/components/Tabs/types.d.ts +75 -0
  133. package/components/Tabs/types.js +1 -0
  134. package/components/Toolbar/Toolbar.d.ts +18 -0
  135. package/components/Toolbar/Toolbar.js +241 -0
  136. package/components/Toolbar/index.d.ts +2 -0
  137. package/components/Toolbar/index.js +1 -0
  138. package/components/Toolbar/types.d.ts +28 -0
  139. package/components/Toolbar/types.js +1 -0
  140. package/components/Tooltip/Tooltip.d.ts +15 -0
  141. package/components/Tooltip/Tooltip.js +166 -0
  142. package/components/Tooltip/TooltipContext.d.ts +15 -0
  143. package/components/Tooltip/TooltipContext.js +25 -0
  144. package/components/Tooltip/index.d.ts +2 -0
  145. package/components/Tooltip/index.js +1 -0
  146. package/components/Tooltip/types.d.ts +85 -0
  147. package/components/Tooltip/types.js +8 -0
  148. package/components/index.d.ts +52 -0
  149. package/components/index.js +26 -0
  150. package/constants.d.ts +16 -0
  151. package/constants.js +16 -0
  152. package/icons/cred/index.d.ts +31 -0
  153. package/icons/cred/index.js +136 -0
  154. package/icons/icons.svg +155 -0
  155. package/icons/lms/index.d.ts +21 -0
  156. package/icons/lms/index.js +81 -0
  157. package/icons/manifest.json +1226 -0
  158. package/icons/player/index.d.ts +55 -0
  159. package/icons/player/index.js +268 -0
  160. package/icons/reaction/index.d.ts +79 -0
  161. package/icons/reaction/index.js +400 -0
  162. package/icons/registry.d.ts +316 -0
  163. package/icons/registry.js +163 -0
  164. package/icons/system/index.d.ts +155 -0
  165. package/icons/system/index.js +818 -0
  166. package/package.json +121 -0
  167. package/styles/all.css +1 -0
  168. package/styles/all.expanded.css +4137 -0
  169. package/styles/all.expanded.unlayered.css +4137 -0
  170. package/styles/all.unlayered.css +1 -0
  171. package/styles/components/_bundle.scss +51 -0
  172. package/styles/components/index.scss +1 -0
  173. package/styles/components/input/index.scss +248 -0
  174. package/styles/index.scss +71 -0
  175. package/styles/system/_constants.scss +12 -0
  176. package/styles/system/_motion.scss +47 -0
  177. package/styles/system/_palette-fns.scss +10 -0
  178. package/styles/system/_palettes.scss +80 -0
  179. package/styles/system/_tokens.scss +249 -0
  180. package/styles/system/index.scss +4 -0
  181. package/styles/utilities/_index.scss +373 -0
  182. package/tui-manifest.json +1858 -0
  183. package/types/index.d.ts +2 -0
  184. package/types/index.js +1 -0
  185. package/types/index.ts +2 -0
  186. package/types/sizes.d.ts +17 -0
  187. package/types/sizes.js +10 -0
  188. package/types/sizes.ts +21 -0
  189. package/types/svg.d.ts +5 -0
  190. package/types/themes.d.ts +14 -0
  191. package/types/themes.js +9 -0
  192. package/types/themes.ts +17 -0
  193. package/utils/color/contrast.d.ts +33 -0
  194. package/utils/color/contrast.js +88 -0
  195. package/utils/color-scheme.d.ts +25 -0
  196. package/utils/color-scheme.js +55 -0
  197. package/utils/compose-refs.d.ts +17 -0
  198. package/utils/compose-refs.js +38 -0
  199. package/utils/cx.d.ts +12 -0
  200. package/utils/cx.js +14 -0
  201. package/utils/focus-trap.d.ts +40 -0
  202. package/utils/focus-trap.js +93 -0
  203. package/utils/index.d.ts +10 -0
  204. package/utils/index.js +16 -0
  205. package/utils/math.d.ts +4 -0
  206. package/utils/math.js +19 -0
  207. package/utils/merge-props.d.ts +25 -0
  208. package/utils/merge-props.js +60 -0
  209. package/utils/polymorphic.d.ts +28 -0
  210. package/utils/polymorphic.js +44 -0
  211. package/utils/portal.d.ts +11 -0
  212. package/utils/portal.js +105 -0
@@ -0,0 +1,316 @@
1
+ import type { FC, SVGProps } from 'react';
2
+
3
+ type IconComponent = FC<SVGProps<SVGSVGElement>>;
4
+
5
+ export type IconName =
6
+ | 'cred/badge-check'
7
+ | 'cred/badge-ribbon'
8
+ | 'cred/badge'
9
+ | 'cred/check-circle'
10
+ | 'cred/clock'
11
+ | 'cred/coin'
12
+ | 'cred/crown'
13
+ | 'cred/heart'
14
+ | 'cred/hourglass'
15
+ | 'cred/star'
16
+ | 'cred/timer'
17
+ | 'cred/trophy'
18
+ | 'lms/book'
19
+ | 'lms/calendar'
20
+ | 'lms/checkmark'
21
+ | 'lms/clock'
22
+ | 'lms/lock'
23
+ | 'lms/question-mark'
24
+ | 'lms/unlock'
25
+ | 'player/captions-fill'
26
+ | 'player/captions-outline'
27
+ | 'player/next'
28
+ | 'player/pause'
29
+ | 'player/picture-in-picture'
30
+ | 'player/play'
31
+ | 'player/playlist'
32
+ | 'player/previous'
33
+ | 'player/repeat-one'
34
+ | 'player/repeat'
35
+ | 'player/shuffle'
36
+ | 'player/skip-backwards'
37
+ | 'player/skip-forward'
38
+ | 'player/stop'
39
+ | 'player/transcript-fill'
40
+ | 'player/transcript-outline'
41
+ | 'player/view-default'
42
+ | 'player/view-expanded'
43
+ | 'player/view-full'
44
+ | 'player/volume-bar-h'
45
+ | 'player/volume-bar-v'
46
+ | 'player/volume-high'
47
+ | 'player/volume-low'
48
+ | 'player/volume-mute'
49
+ | 'reaction/arrow-thick-down-fill'
50
+ | 'reaction/arrow-thick-down-outline'
51
+ | 'reaction/arrow-thick-up-fill'
52
+ | 'reaction/arrow-thick-up-outline'
53
+ | 'reaction/arrow-thin-down-fill'
54
+ | 'reaction/arrow-thin-down-outline'
55
+ | 'reaction/arrow-thin-up-fill'
56
+ | 'reaction/arrow-thin-up-outline'
57
+ | 'reaction/bookmark-fill'
58
+ | 'reaction/bookmark-outline'
59
+ | 'reaction/chevron-down-fill'
60
+ | 'reaction/chevron-down-outline'
61
+ | 'reaction/chevron-up-fill'
62
+ | 'reaction/chevron-up-outline'
63
+ | 'reaction/clap-fill'
64
+ | 'reaction/clap-outline'
65
+ | 'reaction/exclamation-point-fill'
66
+ | 'reaction/exclamation-point-outline'
67
+ | 'reaction/heart-fill'
68
+ | 'reaction/heart-outline'
69
+ | 'reaction/laughing-fill'
70
+ | 'reaction/laughing-outline'
71
+ | 'reaction/question-mark-fill'
72
+ | 'reaction/question-mark-outline'
73
+ | 'reaction/star-fill'
74
+ | 'reaction/star-outline'
75
+ | 'reaction/star-shine-fill'
76
+ | 'reaction/star-shine-outline'
77
+ | 'reaction/thumbs-down-fill'
78
+ | 'reaction/thumbs-down-outline'
79
+ | 'reaction/thumbs-up-outline'
80
+ | 'reaction/thumbs-up'
81
+ | 'reaction/triangle-down-fill'
82
+ | 'reaction/triangle-down-outline'
83
+ | 'reaction/triangle-up-fill'
84
+ | 'reaction/triangle-up-outline'
85
+ | 'system/alert-circle-fill'
86
+ | 'system/alert-circle-outline'
87
+ | 'system/arrow-clockwise'
88
+ | 'system/arrow-counterclockwise'
89
+ | 'system/arrow-down'
90
+ | 'system/arrow-left'
91
+ | 'system/arrow-right'
92
+ | 'system/arrow-up'
93
+ | 'system/attachment'
94
+ | 'system/bell-unread'
95
+ | 'system/bell'
96
+ | 'system/check-small'
97
+ | 'system/check'
98
+ | 'system/checklist'
99
+ | 'system/chevron-down-small'
100
+ | 'system/chevron-down'
101
+ | 'system/chevron-left-small'
102
+ | 'system/chevron-left'
103
+ | 'system/chevron-right-small'
104
+ | 'system/chevron-right'
105
+ | 'system/chevron-up-small'
106
+ | 'system/chevron-up'
107
+ | 'system/circle-small-fill'
108
+ | 'system/circle-small-outline'
109
+ | 'system/close-circle-fill'
110
+ | 'system/close-circle-outline'
111
+ | 'system/close-small'
112
+ | 'system/close'
113
+ | 'system/cog'
114
+ | 'system/copy'
115
+ | 'system/download'
116
+ | 'system/duplicate'
117
+ | 'system/edit'
118
+ | 'system/ellipsis-h'
119
+ | 'system/ellipsis-v'
120
+ | 'system/envelope'
121
+ | 'system/external-link'
122
+ | 'system/funnel'
123
+ | 'system/globe'
124
+ | 'system/handle-alt'
125
+ | 'system/handle'
126
+ | 'system/help'
127
+ | 'system/hide'
128
+ | 'system/highlight'
129
+ | 'system/inbox'
130
+ | 'system/key'
131
+ | 'system/link'
132
+ | 'system/lock-outline'
133
+ | 'system/lock-small'
134
+ | 'system/lock'
135
+ | 'system/minus-circle-fill'
136
+ | 'system/minus-circle-outline'
137
+ | 'system/minus'
138
+ | 'system/paste'
139
+ | 'system/pin-small'
140
+ | 'system/pin'
141
+ | 'system/plus-circle-fill'
142
+ | 'system/plus-circle-outline'
143
+ | 'system/plus'
144
+ | 'system/recurring'
145
+ | 'system/reverse'
146
+ | 'system/send'
147
+ | 'system/settings'
148
+ | 'system/show'
149
+ | 'system/star-fill'
150
+ | 'system/star-half'
151
+ | 'system/star-outline'
152
+ | 'system/tool'
153
+ | 'system/trash'
154
+ | 'system/unlink'
155
+ | 'system/unlock'
156
+ | 'system/user-circle-fill'
157
+ | 'system/user-circle-outline'
158
+ | 'system/view';
159
+
160
+ export declare const iconRegistry: {
161
+ 'cred/badge-check': IconComponent;
162
+ 'cred/badge-ribbon': IconComponent;
163
+ 'cred/badge': IconComponent;
164
+ 'cred/check-circle': IconComponent;
165
+ 'cred/clock': IconComponent;
166
+ 'cred/coin': IconComponent;
167
+ 'cred/crown': IconComponent;
168
+ 'cred/heart': IconComponent;
169
+ 'cred/hourglass': IconComponent;
170
+ 'cred/star': IconComponent;
171
+ 'cred/timer': IconComponent;
172
+ 'cred/trophy': IconComponent;
173
+ 'lms/book': IconComponent;
174
+ 'lms/calendar': IconComponent;
175
+ 'lms/checkmark': IconComponent;
176
+ 'lms/clock': IconComponent;
177
+ 'lms/lock': IconComponent;
178
+ 'lms/question-mark': IconComponent;
179
+ 'lms/unlock': IconComponent;
180
+ 'player/captions-fill': IconComponent;
181
+ 'player/captions-outline': IconComponent;
182
+ 'player/next': IconComponent;
183
+ 'player/pause': IconComponent;
184
+ 'player/picture-in-picture': IconComponent;
185
+ 'player/play': IconComponent;
186
+ 'player/playlist': IconComponent;
187
+ 'player/previous': IconComponent;
188
+ 'player/repeat-one': IconComponent;
189
+ 'player/repeat': IconComponent;
190
+ 'player/shuffle': IconComponent;
191
+ 'player/skip-backwards': IconComponent;
192
+ 'player/skip-forward': IconComponent;
193
+ 'player/stop': IconComponent;
194
+ 'player/transcript-fill': IconComponent;
195
+ 'player/transcript-outline': IconComponent;
196
+ 'player/view-default': IconComponent;
197
+ 'player/view-expanded': IconComponent;
198
+ 'player/view-full': IconComponent;
199
+ 'player/volume-bar-h': IconComponent;
200
+ 'player/volume-bar-v': IconComponent;
201
+ 'player/volume-high': IconComponent;
202
+ 'player/volume-low': IconComponent;
203
+ 'player/volume-mute': IconComponent;
204
+ 'reaction/arrow-thick-down-fill': IconComponent;
205
+ 'reaction/arrow-thick-down-outline': IconComponent;
206
+ 'reaction/arrow-thick-up-fill': IconComponent;
207
+ 'reaction/arrow-thick-up-outline': IconComponent;
208
+ 'reaction/arrow-thin-down-fill': IconComponent;
209
+ 'reaction/arrow-thin-down-outline': IconComponent;
210
+ 'reaction/arrow-thin-up-fill': IconComponent;
211
+ 'reaction/arrow-thin-up-outline': IconComponent;
212
+ 'reaction/bookmark-fill': IconComponent;
213
+ 'reaction/bookmark-outline': IconComponent;
214
+ 'reaction/chevron-down-fill': IconComponent;
215
+ 'reaction/chevron-down-outline': IconComponent;
216
+ 'reaction/chevron-up-fill': IconComponent;
217
+ 'reaction/chevron-up-outline': IconComponent;
218
+ 'reaction/clap-fill': IconComponent;
219
+ 'reaction/clap-outline': IconComponent;
220
+ 'reaction/exclamation-point-fill': IconComponent;
221
+ 'reaction/exclamation-point-outline': IconComponent;
222
+ 'reaction/heart-fill': IconComponent;
223
+ 'reaction/heart-outline': IconComponent;
224
+ 'reaction/laughing-fill': IconComponent;
225
+ 'reaction/laughing-outline': IconComponent;
226
+ 'reaction/question-mark-fill': IconComponent;
227
+ 'reaction/question-mark-outline': IconComponent;
228
+ 'reaction/star-fill': IconComponent;
229
+ 'reaction/star-outline': IconComponent;
230
+ 'reaction/star-shine-fill': IconComponent;
231
+ 'reaction/star-shine-outline': IconComponent;
232
+ 'reaction/thumbs-down-fill': IconComponent;
233
+ 'reaction/thumbs-down-outline': IconComponent;
234
+ 'reaction/thumbs-up-outline': IconComponent;
235
+ 'reaction/thumbs-up': IconComponent;
236
+ 'reaction/triangle-down-fill': IconComponent;
237
+ 'reaction/triangle-down-outline': IconComponent;
238
+ 'reaction/triangle-up-fill': IconComponent;
239
+ 'reaction/triangle-up-outline': IconComponent;
240
+ 'system/alert-circle-fill': IconComponent;
241
+ 'system/alert-circle-outline': IconComponent;
242
+ 'system/arrow-clockwise': IconComponent;
243
+ 'system/arrow-counterclockwise': IconComponent;
244
+ 'system/arrow-down': IconComponent;
245
+ 'system/arrow-left': IconComponent;
246
+ 'system/arrow-right': IconComponent;
247
+ 'system/arrow-up': IconComponent;
248
+ 'system/attachment': IconComponent;
249
+ 'system/bell-unread': IconComponent;
250
+ 'system/bell': IconComponent;
251
+ 'system/check-small': IconComponent;
252
+ 'system/check': IconComponent;
253
+ 'system/checklist': IconComponent;
254
+ 'system/chevron-down-small': IconComponent;
255
+ 'system/chevron-down': IconComponent;
256
+ 'system/chevron-left-small': IconComponent;
257
+ 'system/chevron-left': IconComponent;
258
+ 'system/chevron-right-small': IconComponent;
259
+ 'system/chevron-right': IconComponent;
260
+ 'system/chevron-up-small': IconComponent;
261
+ 'system/chevron-up': IconComponent;
262
+ 'system/circle-small-fill': IconComponent;
263
+ 'system/circle-small-outline': IconComponent;
264
+ 'system/close-circle-fill': IconComponent;
265
+ 'system/close-circle-outline': IconComponent;
266
+ 'system/close-small': IconComponent;
267
+ 'system/close': IconComponent;
268
+ 'system/cog': IconComponent;
269
+ 'system/copy': IconComponent;
270
+ 'system/download': IconComponent;
271
+ 'system/duplicate': IconComponent;
272
+ 'system/edit': IconComponent;
273
+ 'system/ellipsis-h': IconComponent;
274
+ 'system/ellipsis-v': IconComponent;
275
+ 'system/envelope': IconComponent;
276
+ 'system/external-link': IconComponent;
277
+ 'system/funnel': IconComponent;
278
+ 'system/globe': IconComponent;
279
+ 'system/handle-alt': IconComponent;
280
+ 'system/handle': IconComponent;
281
+ 'system/help': IconComponent;
282
+ 'system/hide': IconComponent;
283
+ 'system/highlight': IconComponent;
284
+ 'system/inbox': IconComponent;
285
+ 'system/key': IconComponent;
286
+ 'system/link': IconComponent;
287
+ 'system/lock-outline': IconComponent;
288
+ 'system/lock-small': IconComponent;
289
+ 'system/lock': IconComponent;
290
+ 'system/minus-circle-fill': IconComponent;
291
+ 'system/minus-circle-outline': IconComponent;
292
+ 'system/minus': IconComponent;
293
+ 'system/paste': IconComponent;
294
+ 'system/pin-small': IconComponent;
295
+ 'system/pin': IconComponent;
296
+ 'system/plus-circle-fill': IconComponent;
297
+ 'system/plus-circle-outline': IconComponent;
298
+ 'system/plus': IconComponent;
299
+ 'system/recurring': IconComponent;
300
+ 'system/reverse': IconComponent;
301
+ 'system/send': IconComponent;
302
+ 'system/settings': IconComponent;
303
+ 'system/show': IconComponent;
304
+ 'system/star-fill': IconComponent;
305
+ 'system/star-half': IconComponent;
306
+ 'system/star-outline': IconComponent;
307
+ 'system/tool': IconComponent;
308
+ 'system/trash': IconComponent;
309
+ 'system/unlink': IconComponent;
310
+ 'system/unlock': IconComponent;
311
+ 'system/user-circle-fill': IconComponent;
312
+ 'system/user-circle-outline': IconComponent;
313
+ 'system/view': IconComponent;
314
+ };
315
+
316
+ export declare const iconOptions: IconName[];
@@ -0,0 +1,163 @@
1
+ import { credIcons } from './cred/index.js';
2
+ import { lmsIcons } from './lms/index.js';
3
+ import { playerIcons } from './player/index.js';
4
+ import { reactionIcons } from './reaction/index.js';
5
+ import { systemIcons } from './system/index.js';
6
+
7
+ export const iconRegistry = {
8
+ 'cred/badge-check': credIcons['badge-check'],
9
+ 'cred/badge-ribbon': credIcons['badge-ribbon'],
10
+ 'cred/badge': credIcons['badge'],
11
+ 'cred/check-circle': credIcons['check-circle'],
12
+ 'cred/clock': credIcons['clock'],
13
+ 'cred/coin': credIcons['coin'],
14
+ 'cred/crown': credIcons['crown'],
15
+ 'cred/heart': credIcons['heart'],
16
+ 'cred/hourglass': credIcons['hourglass'],
17
+ 'cred/star': credIcons['star'],
18
+ 'cred/timer': credIcons['timer'],
19
+ 'cred/trophy': credIcons['trophy'],
20
+ 'lms/book': lmsIcons['book'],
21
+ 'lms/calendar': lmsIcons['calendar'],
22
+ 'lms/checkmark': lmsIcons['checkmark'],
23
+ 'lms/clock': lmsIcons['clock'],
24
+ 'lms/lock': lmsIcons['lock'],
25
+ 'lms/question-mark': lmsIcons['question-mark'],
26
+ 'lms/unlock': lmsIcons['unlock'],
27
+ 'player/captions-fill': playerIcons['captions-fill'],
28
+ 'player/captions-outline': playerIcons['captions-outline'],
29
+ 'player/next': playerIcons['next'],
30
+ 'player/pause': playerIcons['pause'],
31
+ 'player/picture-in-picture': playerIcons['picture-in-picture'],
32
+ 'player/play': playerIcons['play'],
33
+ 'player/playlist': playerIcons['playlist'],
34
+ 'player/previous': playerIcons['previous'],
35
+ 'player/repeat-one': playerIcons['repeat-one'],
36
+ 'player/repeat': playerIcons['repeat'],
37
+ 'player/shuffle': playerIcons['shuffle'],
38
+ 'player/skip-backwards': playerIcons['skip-backwards'],
39
+ 'player/skip-forward': playerIcons['skip-forward'],
40
+ 'player/stop': playerIcons['stop'],
41
+ 'player/transcript-fill': playerIcons['transcript-fill'],
42
+ 'player/transcript-outline': playerIcons['transcript-outline'],
43
+ 'player/view-default': playerIcons['view-default'],
44
+ 'player/view-expanded': playerIcons['view-expanded'],
45
+ 'player/view-full': playerIcons['view-full'],
46
+ 'player/volume-bar-h': playerIcons['volume-bar-h'],
47
+ 'player/volume-bar-v': playerIcons['volume-bar-v'],
48
+ 'player/volume-high': playerIcons['volume-high'],
49
+ 'player/volume-low': playerIcons['volume-low'],
50
+ 'player/volume-mute': playerIcons['volume-mute'],
51
+ 'reaction/arrow-thick-down-fill': reactionIcons['arrow-thick-down-fill'],
52
+ 'reaction/arrow-thick-down-outline': reactionIcons['arrow-thick-down-outline'],
53
+ 'reaction/arrow-thick-up-fill': reactionIcons['arrow-thick-up-fill'],
54
+ 'reaction/arrow-thick-up-outline': reactionIcons['arrow-thick-up-outline'],
55
+ 'reaction/arrow-thin-down-fill': reactionIcons['arrow-thin-down-fill'],
56
+ 'reaction/arrow-thin-down-outline': reactionIcons['arrow-thin-down-outline'],
57
+ 'reaction/arrow-thin-up-fill': reactionIcons['arrow-thin-up-fill'],
58
+ 'reaction/arrow-thin-up-outline': reactionIcons['arrow-thin-up-outline'],
59
+ 'reaction/bookmark-fill': reactionIcons['bookmark-fill'],
60
+ 'reaction/bookmark-outline': reactionIcons['bookmark-outline'],
61
+ 'reaction/chevron-down-fill': reactionIcons['chevron-down-fill'],
62
+ 'reaction/chevron-down-outline': reactionIcons['chevron-down-outline'],
63
+ 'reaction/chevron-up-fill': reactionIcons['chevron-up-fill'],
64
+ 'reaction/chevron-up-outline': reactionIcons['chevron-up-outline'],
65
+ 'reaction/clap-fill': reactionIcons['clap-fill'],
66
+ 'reaction/clap-outline': reactionIcons['clap-outline'],
67
+ 'reaction/exclamation-point-fill': reactionIcons['exclamation-point-fill'],
68
+ 'reaction/exclamation-point-outline': reactionIcons['exclamation-point-outline'],
69
+ 'reaction/heart-fill': reactionIcons['heart-fill'],
70
+ 'reaction/heart-outline': reactionIcons['heart-outline'],
71
+ 'reaction/laughing-fill': reactionIcons['laughing-fill'],
72
+ 'reaction/laughing-outline': reactionIcons['laughing-outline'],
73
+ 'reaction/question-mark-fill': reactionIcons['question-mark-fill'],
74
+ 'reaction/question-mark-outline': reactionIcons['question-mark-outline'],
75
+ 'reaction/star-fill': reactionIcons['star-fill'],
76
+ 'reaction/star-outline': reactionIcons['star-outline'],
77
+ 'reaction/star-shine-fill': reactionIcons['star-shine-fill'],
78
+ 'reaction/star-shine-outline': reactionIcons['star-shine-outline'],
79
+ 'reaction/thumbs-down-fill': reactionIcons['thumbs-down-fill'],
80
+ 'reaction/thumbs-down-outline': reactionIcons['thumbs-down-outline'],
81
+ 'reaction/thumbs-up-outline': reactionIcons['thumbs-up-outline'],
82
+ 'reaction/thumbs-up': reactionIcons['thumbs-up'],
83
+ 'reaction/triangle-down-fill': reactionIcons['triangle-down-fill'],
84
+ 'reaction/triangle-down-outline': reactionIcons['triangle-down-outline'],
85
+ 'reaction/triangle-up-fill': reactionIcons['triangle-up-fill'],
86
+ 'reaction/triangle-up-outline': reactionIcons['triangle-up-outline'],
87
+ 'system/alert-circle-fill': systemIcons['alert-circle-fill'],
88
+ 'system/alert-circle-outline': systemIcons['alert-circle-outline'],
89
+ 'system/arrow-clockwise': systemIcons['arrow-clockwise'],
90
+ 'system/arrow-counterclockwise': systemIcons['arrow-counterclockwise'],
91
+ 'system/arrow-down': systemIcons['arrow-down'],
92
+ 'system/arrow-left': systemIcons['arrow-left'],
93
+ 'system/arrow-right': systemIcons['arrow-right'],
94
+ 'system/arrow-up': systemIcons['arrow-up'],
95
+ 'system/attachment': systemIcons['attachment'],
96
+ 'system/bell-unread': systemIcons['bell-unread'],
97
+ 'system/bell': systemIcons['bell'],
98
+ 'system/check-small': systemIcons['check-small'],
99
+ 'system/check': systemIcons['check'],
100
+ 'system/checklist': systemIcons['checklist'],
101
+ 'system/chevron-down-small': systemIcons['chevron-down-small'],
102
+ 'system/chevron-down': systemIcons['chevron-down'],
103
+ 'system/chevron-left-small': systemIcons['chevron-left-small'],
104
+ 'system/chevron-left': systemIcons['chevron-left'],
105
+ 'system/chevron-right-small': systemIcons['chevron-right-small'],
106
+ 'system/chevron-right': systemIcons['chevron-right'],
107
+ 'system/chevron-up-small': systemIcons['chevron-up-small'],
108
+ 'system/chevron-up': systemIcons['chevron-up'],
109
+ 'system/circle-small-fill': systemIcons['circle-small-fill'],
110
+ 'system/circle-small-outline': systemIcons['circle-small-outline'],
111
+ 'system/close-circle-fill': systemIcons['close-circle-fill'],
112
+ 'system/close-circle-outline': systemIcons['close-circle-outline'],
113
+ 'system/close-small': systemIcons['close-small'],
114
+ 'system/close': systemIcons['close'],
115
+ 'system/cog': systemIcons['cog'],
116
+ 'system/copy': systemIcons['copy'],
117
+ 'system/download': systemIcons['download'],
118
+ 'system/duplicate': systemIcons['duplicate'],
119
+ 'system/edit': systemIcons['edit'],
120
+ 'system/ellipsis-h': systemIcons['ellipsis-h'],
121
+ 'system/ellipsis-v': systemIcons['ellipsis-v'],
122
+ 'system/envelope': systemIcons['envelope'],
123
+ 'system/external-link': systemIcons['external-link'],
124
+ 'system/funnel': systemIcons['funnel'],
125
+ 'system/globe': systemIcons['globe'],
126
+ 'system/handle-alt': systemIcons['handle-alt'],
127
+ 'system/handle': systemIcons['handle'],
128
+ 'system/help': systemIcons['help'],
129
+ 'system/hide': systemIcons['hide'],
130
+ 'system/highlight': systemIcons['highlight'],
131
+ 'system/inbox': systemIcons['inbox'],
132
+ 'system/key': systemIcons['key'],
133
+ 'system/link': systemIcons['link'],
134
+ 'system/lock-outline': systemIcons['lock-outline'],
135
+ 'system/lock-small': systemIcons['lock-small'],
136
+ 'system/lock': systemIcons['lock'],
137
+ 'system/minus-circle-fill': systemIcons['minus-circle-fill'],
138
+ 'system/minus-circle-outline': systemIcons['minus-circle-outline'],
139
+ 'system/minus': systemIcons['minus'],
140
+ 'system/paste': systemIcons['paste'],
141
+ 'system/pin-small': systemIcons['pin-small'],
142
+ 'system/pin': systemIcons['pin'],
143
+ 'system/plus-circle-fill': systemIcons['plus-circle-fill'],
144
+ 'system/plus-circle-outline': systemIcons['plus-circle-outline'],
145
+ 'system/plus': systemIcons['plus'],
146
+ 'system/recurring': systemIcons['recurring'],
147
+ 'system/reverse': systemIcons['reverse'],
148
+ 'system/send': systemIcons['send'],
149
+ 'system/settings': systemIcons['settings'],
150
+ 'system/show': systemIcons['show'],
151
+ 'system/star-fill': systemIcons['star-fill'],
152
+ 'system/star-half': systemIcons['star-half'],
153
+ 'system/star-outline': systemIcons['star-outline'],
154
+ 'system/tool': systemIcons['tool'],
155
+ 'system/trash': systemIcons['trash'],
156
+ 'system/unlink': systemIcons['unlink'],
157
+ 'system/unlock': systemIcons['unlock'],
158
+ 'system/user-circle-fill': systemIcons['user-circle-fill'],
159
+ 'system/user-circle-outline': systemIcons['user-circle-outline'],
160
+ 'system/view': systemIcons['view'],
161
+ };
162
+
163
+ export const iconOptions = Object.keys(iconRegistry);
@@ -0,0 +1,155 @@
1
+ import type { FC, SVGProps } from 'react';
2
+
3
+ type IconComponent = FC<SVGProps<SVGSVGElement>>;
4
+
5
+ export declare const AlertCircleFill: IconComponent;
6
+ export declare const AlertCircleOutline: IconComponent;
7
+ export declare const ArrowClockwise: IconComponent;
8
+ export declare const ArrowCounterclockwise: IconComponent;
9
+ export declare const ArrowDown: IconComponent;
10
+ export declare const ArrowLeft: IconComponent;
11
+ export declare const ArrowRight: IconComponent;
12
+ export declare const ArrowUp: IconComponent;
13
+ export declare const Attachment: IconComponent;
14
+ export declare const BellUnread: IconComponent;
15
+ export declare const Bell: IconComponent;
16
+ export declare const CheckSmall: IconComponent;
17
+ export declare const Check: IconComponent;
18
+ export declare const Checklist: IconComponent;
19
+ export declare const ChevronDownSmall: IconComponent;
20
+ export declare const ChevronDown: IconComponent;
21
+ export declare const ChevronLeftSmall: IconComponent;
22
+ export declare const ChevronLeft: IconComponent;
23
+ export declare const ChevronRightSmall: IconComponent;
24
+ export declare const ChevronRight: IconComponent;
25
+ export declare const ChevronUpSmall: IconComponent;
26
+ export declare const ChevronUp: IconComponent;
27
+ export declare const CircleSmallFill: IconComponent;
28
+ export declare const CircleSmallOutline: IconComponent;
29
+ export declare const CloseCircleFill: IconComponent;
30
+ export declare const CloseCircleOutline: IconComponent;
31
+ export declare const CloseSmall: IconComponent;
32
+ export declare const Close: IconComponent;
33
+ export declare const Cog: IconComponent;
34
+ export declare const Copy: IconComponent;
35
+ export declare const Download: IconComponent;
36
+ export declare const Duplicate: IconComponent;
37
+ export declare const Edit: IconComponent;
38
+ export declare const EllipsisH: IconComponent;
39
+ export declare const EllipsisV: IconComponent;
40
+ export declare const Envelope: IconComponent;
41
+ export declare const ExternalLink: IconComponent;
42
+ export declare const Funnel: IconComponent;
43
+ export declare const Globe: IconComponent;
44
+ export declare const HandleAlt: IconComponent;
45
+ export declare const Handle: IconComponent;
46
+ export declare const Help: IconComponent;
47
+ export declare const Hide: IconComponent;
48
+ export declare const Highlight: IconComponent;
49
+ export declare const Inbox: IconComponent;
50
+ export declare const Key: IconComponent;
51
+ export declare const Link: IconComponent;
52
+ export declare const LockOutline: IconComponent;
53
+ export declare const LockSmall: IconComponent;
54
+ export declare const Lock: IconComponent;
55
+ export declare const MinusCircleFill: IconComponent;
56
+ export declare const MinusCircleOutline: IconComponent;
57
+ export declare const Minus: IconComponent;
58
+ export declare const Paste: IconComponent;
59
+ export declare const PinSmall: IconComponent;
60
+ export declare const Pin: IconComponent;
61
+ export declare const PlusCircleFill: IconComponent;
62
+ export declare const PlusCircleOutline: IconComponent;
63
+ export declare const Plus: IconComponent;
64
+ export declare const Recurring: IconComponent;
65
+ export declare const Reverse: IconComponent;
66
+ export declare const Send: IconComponent;
67
+ export declare const Settings: IconComponent;
68
+ export declare const Show: IconComponent;
69
+ export declare const StarFill: IconComponent;
70
+ export declare const StarHalf: IconComponent;
71
+ export declare const StarOutline: IconComponent;
72
+ export declare const Tool: IconComponent;
73
+ export declare const Trash: IconComponent;
74
+ export declare const Unlink: IconComponent;
75
+ export declare const Unlock: IconComponent;
76
+ export declare const UserCircleFill: IconComponent;
77
+ export declare const UserCircleOutline: IconComponent;
78
+ export declare const View: IconComponent;
79
+
80
+ export declare const systemIcons: {
81
+ 'alert-circle-fill': IconComponent;
82
+ 'alert-circle-outline': IconComponent;
83
+ 'arrow-clockwise': IconComponent;
84
+ 'arrow-counterclockwise': IconComponent;
85
+ 'arrow-down': IconComponent;
86
+ 'arrow-left': IconComponent;
87
+ 'arrow-right': IconComponent;
88
+ 'arrow-up': IconComponent;
89
+ 'attachment': IconComponent;
90
+ 'bell-unread': IconComponent;
91
+ 'bell': IconComponent;
92
+ 'check-small': IconComponent;
93
+ 'check': IconComponent;
94
+ 'checklist': IconComponent;
95
+ 'chevron-down-small': IconComponent;
96
+ 'chevron-down': IconComponent;
97
+ 'chevron-left-small': IconComponent;
98
+ 'chevron-left': IconComponent;
99
+ 'chevron-right-small': IconComponent;
100
+ 'chevron-right': IconComponent;
101
+ 'chevron-up-small': IconComponent;
102
+ 'chevron-up': IconComponent;
103
+ 'circle-small-fill': IconComponent;
104
+ 'circle-small-outline': IconComponent;
105
+ 'close-circle-fill': IconComponent;
106
+ 'close-circle-outline': IconComponent;
107
+ 'close-small': IconComponent;
108
+ 'close': IconComponent;
109
+ 'cog': IconComponent;
110
+ 'copy': IconComponent;
111
+ 'download': IconComponent;
112
+ 'duplicate': IconComponent;
113
+ 'edit': IconComponent;
114
+ 'ellipsis-h': IconComponent;
115
+ 'ellipsis-v': IconComponent;
116
+ 'envelope': IconComponent;
117
+ 'external-link': IconComponent;
118
+ 'funnel': IconComponent;
119
+ 'globe': IconComponent;
120
+ 'handle-alt': IconComponent;
121
+ 'handle': IconComponent;
122
+ 'help': IconComponent;
123
+ 'hide': IconComponent;
124
+ 'highlight': IconComponent;
125
+ 'inbox': IconComponent;
126
+ 'key': IconComponent;
127
+ 'link': IconComponent;
128
+ 'lock-outline': IconComponent;
129
+ 'lock-small': IconComponent;
130
+ 'lock': IconComponent;
131
+ 'minus-circle-fill': IconComponent;
132
+ 'minus-circle-outline': IconComponent;
133
+ 'minus': IconComponent;
134
+ 'paste': IconComponent;
135
+ 'pin-small': IconComponent;
136
+ 'pin': IconComponent;
137
+ 'plus-circle-fill': IconComponent;
138
+ 'plus-circle-outline': IconComponent;
139
+ 'plus': IconComponent;
140
+ 'recurring': IconComponent;
141
+ 'reverse': IconComponent;
142
+ 'send': IconComponent;
143
+ 'settings': IconComponent;
144
+ 'show': IconComponent;
145
+ 'star-fill': IconComponent;
146
+ 'star-half': IconComponent;
147
+ 'star-outline': IconComponent;
148
+ 'tool': IconComponent;
149
+ 'trash': IconComponent;
150
+ 'unlink': IconComponent;
151
+ 'unlock': IconComponent;
152
+ 'user-circle-fill': IconComponent;
153
+ 'user-circle-outline': IconComponent;
154
+ 'view': IconComponent;
155
+ };