@vue-skuilder/platform-ui 0.1.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 (108) hide show
  1. package/LICENCE +661 -0
  2. package/README.md +64 -0
  3. package/dist/assets/Roboto-Black-B0ZKieaB.woff +0 -0
  4. package/dist/assets/Roboto-Black-VhoA2qKx.woff2 +0 -0
  5. package/dist/assets/Roboto-BlackItalic-D0gSnuIb.woff +0 -0
  6. package/dist/assets/Roboto-BlackItalic-D4yie1YO.woff2 +0 -0
  7. package/dist/assets/Roboto-Bold-D9plYbeK.woff +0 -0
  8. package/dist/assets/Roboto-Bold-hN3duQhD.woff2 +0 -0
  9. package/dist/assets/Roboto-BoldItalic-BWDm51uc.woff2 +0 -0
  10. package/dist/assets/Roboto-BoldItalic-CyLKvOHD.woff +0 -0
  11. package/dist/assets/Roboto-Light-Cu-PAxXt.woff +0 -0
  12. package/dist/assets/Roboto-Light-DHTugVNA.woff2 +0 -0
  13. package/dist/assets/Roboto-LightItalic-CZg5kHIB.woff +0 -0
  14. package/dist/assets/Roboto-LightItalic-JQyp2Y3P.woff2 +0 -0
  15. package/dist/assets/Roboto-Medium-ByKogCTi.woff2 +0 -0
  16. package/dist/assets/Roboto-Medium-b81vv18W.woff +0 -0
  17. package/dist/assets/Roboto-MediumItalic-DFQ-RYa0.woff +0 -0
  18. package/dist/assets/Roboto-MediumItalic-i1eR0KbF.woff2 +0 -0
  19. package/dist/assets/Roboto-Regular-BX5l9hRW.woff +0 -0
  20. package/dist/assets/Roboto-Regular-C6rbFxYz.woff2 +0 -0
  21. package/dist/assets/Roboto-RegularItalic-BjnLZsam.woff +0 -0
  22. package/dist/assets/Roboto-RegularItalic-CvPUdkvM.woff2 +0 -0
  23. package/dist/assets/Roboto-Thin-BfJvJcog.woff +0 -0
  24. package/dist/assets/Roboto-Thin-NicBC1pN.woff2 +0 -0
  25. package/dist/assets/Roboto-ThinItalic-CKlCjrO_.woff2 +0 -0
  26. package/dist/assets/Roboto-ThinItalic-DnIWFxRE.woff +0 -0
  27. package/dist/assets/index-CQ-sNKGW.css +14 -0
  28. package/dist/assets/index-EbqpUgvM.js +161 -0
  29. package/dist/assets/materialdesignicons-webfont-B7mPwVP_.ttf +0 -0
  30. package/dist/assets/materialdesignicons-webfont-CSr8KVlo.eot +0 -0
  31. package/dist/assets/materialdesignicons-webfont-Dp5v-WZN.woff2 +0 -0
  32. package/dist/assets/materialdesignicons-webfont-PXm3-2wK.woff +0 -0
  33. package/dist/assets/workbox-window.prod.es5-p40uij6f.js +1 -0
  34. package/dist/favicon.ico +0 -0
  35. package/dist/img/icons/safari-pinned-tab.svg +149 -0
  36. package/dist/index.html +19 -0
  37. package/dist/manifest.json +20 -0
  38. package/dist/manifest.webmanifest +1 -0
  39. package/dist/robots.txt +2 -0
  40. package/dist/sw.js +1 -0
  41. package/dist/workbox-1be04862.js +1 -0
  42. package/package.json +105 -0
  43. package/src/App.vue +156 -0
  44. package/src/ENVIRONMENT_VARS.ts +79 -0
  45. package/src/components/Classrooms/ClassroomCtrlPanel.vue +206 -0
  46. package/src/components/Classrooms/CreateClassroom.vue +159 -0
  47. package/src/components/Classrooms/JoinCode.vue +83 -0
  48. package/src/components/Courses/CourseCardBrowser.vue +365 -0
  49. package/src/components/Courses/CourseEditor.vue +164 -0
  50. package/src/components/Courses/CourseInformation.vue +164 -0
  51. package/src/components/Courses/CourseRouter.vue +116 -0
  52. package/src/components/Courses/CourseStubCard.vue +76 -0
  53. package/src/components/Courses/EloModeration.vue +122 -0
  54. package/src/components/Courses/TagInformation.vue +209 -0
  55. package/src/components/Edit/BulkImport/CardPreviewList.vue +345 -0
  56. package/src/components/Edit/BulkImportView.vue +633 -0
  57. package/src/components/Edit/CardBrowser.vue +79 -0
  58. package/src/components/Edit/ComponentRegistration/ComponentRegistration.vue +235 -0
  59. package/src/components/Edit/ComponentRegistration/UnregisteredComponentsTable.vue +19 -0
  60. package/src/components/Edit/CourseEditor.vue +162 -0
  61. package/src/components/Edit/NavigationStrategy/NavigationStrategyEditor.vue +170 -0
  62. package/src/components/Edit/NavigationStrategy/NavigationStrategyList.vue +92 -0
  63. package/src/components/Edit/TagsInput.vue +247 -0
  64. package/src/components/Edit/ViewableDataInputForm/DataInputForm.vue +524 -0
  65. package/src/components/Edit/ViewableDataInputForm/FieldInput.types.ts +33 -0
  66. package/src/components/Edit/ViewableDataInputForm/FieldInputs/AudioInput.vue +188 -0
  67. package/src/components/Edit/ViewableDataInputForm/FieldInputs/ChessPuzzleInput.vue +79 -0
  68. package/src/components/Edit/ViewableDataInputForm/FieldInputs/FieldInput.css +12 -0
  69. package/src/components/Edit/ViewableDataInputForm/FieldInputs/ImageInput.vue +231 -0
  70. package/src/components/Edit/ViewableDataInputForm/FieldInputs/IntegerInput.vue +49 -0
  71. package/src/components/Edit/ViewableDataInputForm/FieldInputs/MarkdownInput.vue +34 -0
  72. package/src/components/Edit/ViewableDataInputForm/FieldInputs/MediaDragDropUploader.vue +246 -0
  73. package/src/components/Edit/ViewableDataInputForm/FieldInputs/MidiInput.vue +113 -0
  74. package/src/components/Edit/ViewableDataInputForm/FieldInputs/NumberInput.vue +49 -0
  75. package/src/components/Edit/ViewableDataInputForm/FieldInputs/StringInput.vue +49 -0
  76. package/src/components/Edit/ViewableDataInputForm/FieldInputs/typeValidators.ts +49 -0
  77. package/src/components/Edit/ViewableDataInputForm/OptionsFieldInput.ts +161 -0
  78. package/src/components/Study/SessionConfiguration.vue +371 -0
  79. package/src/components/TextSwap.vue +65 -0
  80. package/src/components/User/UserStats.vue +30 -0
  81. package/src/dev/DataInputFormTester.vue +117 -0
  82. package/src/dev/readme.md +3 -0
  83. package/src/enums.ts +0 -0
  84. package/src/glyphs.txt +933 -0
  85. package/src/main.ts +45 -0
  86. package/src/plugins/vuetify.ts +41 -0
  87. package/src/registerServiceWorker.ts +18 -0
  88. package/src/router.ts +184 -0
  89. package/src/server/index.spec.ts +192 -0
  90. package/src/server/index.ts +71 -0
  91. package/src/shims-vue.d.ts +5 -0
  92. package/src/store.mock.ts +122 -0
  93. package/src/stores/useDataInputFormStore.ts +49 -0
  94. package/src/stores/useFieldInputStore.ts +191 -0
  95. package/src/types/shims-vuetify.d.ts +12 -0
  96. package/src/types/svg.d.ts +4 -0
  97. package/src/utils/bulkImport/index.ts +94 -0
  98. package/src/views/About.vue +29 -0
  99. package/src/views/Admin.vue +128 -0
  100. package/src/views/Classrooms.vue +258 -0
  101. package/src/views/Courses.vue +265 -0
  102. package/src/views/Home.vue +154 -0
  103. package/src/views/Login.vue +75 -0
  104. package/src/views/ReleaseNotes.vue +20 -0
  105. package/src/views/SignUp.vue +32 -0
  106. package/src/views/Study.vue +261 -0
  107. package/src/views/User.vue +109 -0
  108. package/src/vite-env.d.ts +1 -0
package/src/glyphs.txt ADDED
@@ -0,0 +1,933 @@
1
+ 3d_rotation
2
+ ac_unit
3
+ access_alarm
4
+ access_alarms
5
+ access_time
6
+ accessibility
7
+ accessible
8
+ account_balance
9
+ account_balance_wallet
10
+ account_box
11
+ account_circle
12
+ adb
13
+ add
14
+ add_a_photo
15
+ add_alarm
16
+ add_alert
17
+ add_box
18
+ add_circle
19
+ add_circle_outline
20
+ add_location
21
+ add_shopping_cart
22
+ add_to_photos
23
+ add_to_queue
24
+ adjust
25
+ airline_seat_flat
26
+ airline_seat_flat_angled
27
+ airline_seat_individual_suite
28
+ airline_seat_legroom_extra
29
+ airline_seat_legroom_normal
30
+ airline_seat_legroom_reduced
31
+ airline_seat_recline_extra
32
+ airline_seat_recline_normal
33
+ airplanemode_active
34
+ airplanemode_inactive
35
+ airplay
36
+ airport_shuttle
37
+ alarm
38
+ alarm_add
39
+ alarm_off
40
+ alarm_on
41
+ album
42
+ all_inclusive
43
+ all_out
44
+ android
45
+ announcement
46
+ apps
47
+ archive
48
+ arrow_back
49
+ arrow_downward
50
+ arrow_drop_down
51
+ arrow_drop_down_circle
52
+ arrow_drop_up
53
+ arrow_forward
54
+ arrow_upward
55
+ art_track
56
+ aspect_ratio
57
+ assessment
58
+ assignment
59
+ assignment_ind
60
+ assignment_late
61
+ assignment_return
62
+ assignment_returned
63
+ assignment_turned_in
64
+ assistant
65
+ assistant_photo
66
+ attach_file
67
+ attach_money
68
+ attachment
69
+ audiotrack
70
+ autorenew
71
+ av_timer
72
+ backspace
73
+ backup
74
+ battery_alert
75
+ battery_charging_full
76
+ battery_full
77
+ battery_std
78
+ battery_unknown
79
+ beach_access
80
+ beenhere
81
+ block
82
+ bluetooth
83
+ bluetooth_audio
84
+ bluetooth_connected
85
+ bluetooth_disabled
86
+ bluetooth_searching
87
+ blur_circular
88
+ blur_linear
89
+ blur_off
90
+ blur_on
91
+ book
92
+ bookmark
93
+ bookmark_border
94
+ border_all
95
+ border_bottom
96
+ border_clear
97
+ border_color
98
+ border_horizontal
99
+ border_inner
100
+ border_left
101
+ border_outer
102
+ border_right
103
+ border_style
104
+ border_top
105
+ border_vertical
106
+ branding_watermark
107
+ brightness_1
108
+ brightness_2
109
+ brightness_3
110
+ brightness_4
111
+ brightness_5
112
+ brightness_6
113
+ brightness_7
114
+ brightness_auto
115
+ brightness_high
116
+ brightness_low
117
+ brightness_medium
118
+ broken_image
119
+ brush
120
+ bubble_chart
121
+ bug_report
122
+ build
123
+ burst_mode
124
+ business
125
+ business_center
126
+ cached
127
+ cake
128
+ call
129
+ call_end
130
+ call_made
131
+ call_merge
132
+ call_missed
133
+ call_missed_outgoing
134
+ call_received
135
+ call_split
136
+ call_to_action
137
+ camera
138
+ camera_alt
139
+ camera_enhance
140
+ camera_front
141
+ camera_rear
142
+ camera_roll
143
+ cancel
144
+ card_giftcard
145
+ card_membership
146
+ card_travel
147
+ casino
148
+ cast
149
+ cast_connected
150
+ center_focus_strong
151
+ center_focus_weak
152
+ change_history
153
+ chat
154
+ chat_bubble
155
+ chat_bubble_outline
156
+ check
157
+ check_box
158
+ check_box_outline_blank
159
+ check_circle
160
+ chevron_left
161
+ chevron_right
162
+ child_care
163
+ child_friendly
164
+ chrome_reader_mode
165
+ class
166
+ clear
167
+ clear_all
168
+ close
169
+ closed_caption
170
+ cloud
171
+ cloud_circle
172
+ cloud_done
173
+ cloud_download
174
+ cloud_off
175
+ cloud_queue
176
+ cloud_upload
177
+ code
178
+ collections
179
+ collections_bookmark
180
+ color_lens
181
+ colorize
182
+ comment
183
+ compare
184
+ compare_arrows
185
+ computer
186
+ confirmation_number
187
+ contact_mail
188
+ contact_phone
189
+ contacts
190
+ content_copy
191
+ content_cut
192
+ content_paste
193
+ control_point
194
+ control_point_duplicate
195
+ copyright
196
+ create
197
+ create_new_folder
198
+ credit_card
199
+ crop
200
+ crop_16_9
201
+ crop_3_2
202
+ crop_5_4
203
+ crop_7_5
204
+ crop_din
205
+ crop_free
206
+ crop_landscape
207
+ crop_original
208
+ crop_portrait
209
+ crop_rotate
210
+ crop_square
211
+ dashboard
212
+ data_usage
213
+ date_range
214
+ dehaze
215
+ delete
216
+ delete_forever
217
+ delete_sweep
218
+ description
219
+ desktop_mac
220
+ desktop_windows
221
+ details
222
+ developer_board
223
+ developer_mode
224
+ device_hub
225
+ devices
226
+ devices_other
227
+ dialer_sip
228
+ dialpad
229
+ directions
230
+ directions_bike
231
+ directions_boat
232
+ directions_bus
233
+ directions_car
234
+ directions_railway
235
+ directions_run
236
+ directions_subway
237
+ directions_transit
238
+ directions_walk
239
+ disc_full
240
+ dns
241
+ do_not_disturb
242
+ do_not_disturb_alt
243
+ do_not_disturb_off
244
+ do_not_disturb_on
245
+ dock
246
+ domain
247
+ done
248
+ done_all
249
+ donut_large
250
+ donut_small
251
+ drafts
252
+ drag_handle
253
+ drive_eta
254
+ dvr
255
+ edit
256
+ edit_location
257
+ eject
258
+ email
259
+ enhanced_encryption
260
+ equalizer
261
+ error
262
+ error_outline
263
+ euro_symbol
264
+ ev_station
265
+ event
266
+ event_available
267
+ event_busy
268
+ event_note
269
+ event_seat
270
+ exit_to_app
271
+ expand_less
272
+ expand_more
273
+ explicit
274
+ explore
275
+ exposure
276
+ exposure_neg_1
277
+ exposure_neg_2
278
+ exposure_plus_1
279
+ exposure_plus_2
280
+ exposure_zero
281
+ extension
282
+ face
283
+ fast_forward
284
+ fast_rewind
285
+ favorite
286
+ favorite_border
287
+ featured_play_list
288
+ featured_video
289
+ feedback
290
+ fiber_dvr
291
+ fiber_manual_record
292
+ fiber_new
293
+ fiber_pin
294
+ fiber_smart_record
295
+ file_download
296
+ file_upload
297
+ filter
298
+ filter_1
299
+ filter_2
300
+ filter_3
301
+ filter_4
302
+ filter_5
303
+ filter_6
304
+ filter_7
305
+ filter_8
306
+ filter_9
307
+ filter_9_plus
308
+ filter_b_and_w
309
+ filter_center_focus
310
+ filter_drama
311
+ filter_frames
312
+ filter_hdr
313
+ filter_list
314
+ filter_none
315
+ filter_tilt_shift
316
+ filter_vintage
317
+ find_in_page
318
+ find_replace
319
+ fingerprint
320
+ first_page
321
+ fitness_center
322
+ flag
323
+ flare
324
+ flash_auto
325
+ flash_off
326
+ flash_on
327
+ flight
328
+ flight_land
329
+ flight_takeoff
330
+ flip
331
+ flip_to_back
332
+ flip_to_front
333
+ folder
334
+ folder_open
335
+ folder_shared
336
+ folder_special
337
+ font_download
338
+ format_align_center
339
+ format_align_justify
340
+ format_align_left
341
+ format_align_right
342
+ format_bold
343
+ format_clear
344
+ format_color_fill
345
+ format_color_reset
346
+ format_color_text
347
+ format_indent_decrease
348
+ format_indent_increase
349
+ format_italic
350
+ format_line_spacing
351
+ format_list_bulleted
352
+ format_list_numbered
353
+ format_paint
354
+ format_quote
355
+ format_shapes
356
+ format_size
357
+ format_strikethrough
358
+ format_textdirection_l_to_r
359
+ format_textdirection_r_to_l
360
+ format_underlined
361
+ forum
362
+ forward
363
+ forward_10
364
+ forward_30
365
+ forward_5
366
+ free_breakfast
367
+ fullscreen
368
+ fullscreen_exit
369
+ functions
370
+ g_translate
371
+ gamepad
372
+ games
373
+ gavel
374
+ gesture
375
+ get_app
376
+ gif
377
+ goat
378
+ golf_course
379
+ gps_fixed
380
+ gps_not_fixed
381
+ gps_off
382
+ grade
383
+ gradient
384
+ grain
385
+ graphic_eq
386
+ grid_off
387
+ grid_on
388
+ group
389
+ group_add
390
+ group_work
391
+ hd
392
+ hdr_off
393
+ hdr_on
394
+ hdr_strong
395
+ hdr_weak
396
+ headset
397
+ headset_mic
398
+ healing
399
+ hearing
400
+ help
401
+ help_outline
402
+ high_quality
403
+ highlight
404
+ highlight_off
405
+ history
406
+ home
407
+ hot_tub
408
+ hotel
409
+ hourglass_empty
410
+ hourglass_full
411
+ http
412
+ https
413
+ image
414
+ image_aspect_ratio
415
+ import_contacts
416
+ import_export
417
+ important_devices
418
+ inbox
419
+ indeterminate_check_box
420
+ info
421
+ info_outline
422
+ input
423
+ insert_chart
424
+ insert_comment
425
+ insert_drive_file
426
+ insert_emoticon
427
+ insert_invitation
428
+ insert_link
429
+ insert_photo
430
+ invert_colors
431
+ invert_colors_off
432
+ iso
433
+ keyboard
434
+ keyboard_arrow_down
435
+ keyboard_arrow_left
436
+ keyboard_arrow_right
437
+ keyboard_arrow_up
438
+ keyboard_backspace
439
+ keyboard_capslock
440
+ keyboard_hide
441
+ keyboard_return
442
+ keyboard_tab
443
+ keyboard_voice
444
+ kitchen
445
+ label
446
+ label_outline
447
+ landscape
448
+ language
449
+ laptop
450
+ laptop_chromebook
451
+ laptop_mac
452
+ laptop_windows
453
+ last_page
454
+ launch
455
+ layers
456
+ layers_clear
457
+ leak_add
458
+ leak_remove
459
+ lens
460
+ library_add
461
+ library_books
462
+ library_music
463
+ lightbulb_outline
464
+ line_style
465
+ line_weight
466
+ linear_scale
467
+ link
468
+ linked_camera
469
+ list
470
+ live_help
471
+ live_tv
472
+ local_activity
473
+ local_airport
474
+ local_atm
475
+ local_bar
476
+ local_cafe
477
+ local_car_wash
478
+ local_convenience_store
479
+ local_dining
480
+ local_drink
481
+ local_florist
482
+ local_gas_station
483
+ local_grocery_store
484
+ local_hospital
485
+ local_hotel
486
+ local_laundry_service
487
+ local_library
488
+ local_mall
489
+ local_movies
490
+ local_offer
491
+ local_parking
492
+ local_pharmacy
493
+ local_phone
494
+ local_pizza
495
+ local_play
496
+ local_post_office
497
+ local_printshop
498
+ local_see
499
+ local_shipping
500
+ local_taxi
501
+ location_city
502
+ location_disabled
503
+ location_off
504
+ location_on
505
+ location_searching
506
+ lock
507
+ lock_open
508
+ lock_outline
509
+ looks
510
+ looks_3
511
+ looks_4
512
+ looks_5
513
+ looks_6
514
+ looks_one
515
+ looks_two
516
+ loop
517
+ loupe
518
+ low_priority
519
+ loyalty
520
+ mail
521
+ mail_outline
522
+ map
523
+ markunread
524
+ markunread_mailbox
525
+ memory
526
+ menu
527
+ merge_type
528
+ message
529
+ mic
530
+ mic_none
531
+ mic_off
532
+ mms
533
+ mode_comment
534
+ mode_edit
535
+ monetization_on
536
+ money_off
537
+ monochrome_photos
538
+ mood
539
+ mood_bad
540
+ more
541
+ more_horiz
542
+ more_vert
543
+ motorcycle
544
+ mouse
545
+ move_to_inbox
546
+ movie
547
+ movie_creation
548
+ movie_filter
549
+ multiline_chart
550
+ music_note
551
+ music_video
552
+ my_location
553
+ nature
554
+ nature_people
555
+ navigate_before
556
+ navigate_next
557
+ navigation
558
+ near_me
559
+ network_cell
560
+ network_check
561
+ network_locked
562
+ network_wifi
563
+ new_releases
564
+ next_week
565
+ nfc
566
+ no_encryption
567
+ no_sim
568
+ not_interested
569
+ note
570
+ note_add
571
+ notifications
572
+ notifications_active
573
+ notifications_none
574
+ notifications_off
575
+ notifications_paused
576
+ offline_pin
577
+ ondemand_video
578
+ opacity
579
+ open_in_browser
580
+ open_in_new
581
+ open_with
582
+ pages
583
+ pageview
584
+ palette
585
+ pan_tool
586
+ panorama
587
+ panorama_fish_eye
588
+ panorama_horizontal
589
+ panorama_vertical
590
+ panorama_wide_angle
591
+ party_mode
592
+ pause
593
+ pause_circle_filled
594
+ pause_circle_outline
595
+ payment
596
+ people
597
+ people_outline
598
+ perm_camera_mic
599
+ perm_contact_calendar
600
+ perm_data_setting
601
+ perm_device_information
602
+ perm_identity
603
+ perm_media
604
+ perm_phone_msg
605
+ perm_scan_wifi
606
+ person
607
+ person_add
608
+ person_outline
609
+ person_pin
610
+ person_pin_circle
611
+ personal_video
612
+ pets
613
+ phone
614
+ phone_android
615
+ phone_bluetooth_speaker
616
+ phone_forwarded
617
+ phone_in_talk
618
+ phone_iphone
619
+ phone_locked
620
+ phone_missed
621
+ phone_paused
622
+ phonelink
623
+ phonelink_erase
624
+ phonelink_lock
625
+ phonelink_off
626
+ phonelink_ring
627
+ phonelink_setup
628
+ photo
629
+ photo_album
630
+ photo_camera
631
+ photo_filter
632
+ photo_library
633
+ photo_size_select_actual
634
+ photo_size_select_large
635
+ photo_size_select_small
636
+ picture_as_pdf
637
+ picture_in_picture
638
+ picture_in_picture_alt
639
+ pie_chart
640
+ pie_chart_outlined
641
+ pin_drop
642
+ place
643
+ play_arrow
644
+ play_circle_filled
645
+ play_circle_outline
646
+ play_for_work
647
+ playlist_add
648
+ playlist_add_check
649
+ playlist_play
650
+ plus_one
651
+ poll
652
+ polymer
653
+ pool
654
+ portable_wifi_off
655
+ portrait
656
+ power
657
+ power_input
658
+ power_settings_new
659
+ pregnant_woman
660
+ present_to_all
661
+ print
662
+ priority_high
663
+ public
664
+ publish
665
+ query_builder
666
+ question_answer
667
+ queue
668
+ queue_music
669
+ queue_play_next
670
+ radio
671
+ radio_button_checked
672
+ radio_button_unchecked
673
+ rate_review
674
+ receipt
675
+ recent_actors
676
+ record_voice_over
677
+ redeem
678
+ redo
679
+ refresh
680
+ remove
681
+ remove_circle
682
+ remove_circle_outline
683
+ remove_from_queue
684
+ remove_red_eye
685
+ remove_shopping_cart
686
+ reorder
687
+ repeat
688
+ repeat_one
689
+ replay
690
+ replay_10
691
+ replay_30
692
+ replay_5
693
+ reply
694
+ reply_all
695
+ report
696
+ report_problem
697
+ restaurant
698
+ restaurant_menu
699
+ restore
700
+ restore_page
701
+ ring_volume
702
+ room
703
+ room_service
704
+ rotate_90_degrees_ccw
705
+ rotate_left
706
+ rotate_right
707
+ rounded_corner
708
+ router
709
+ rowing
710
+ rss_feed
711
+ rv_hookup
712
+ satellite
713
+ save
714
+ scanner
715
+ schedule
716
+ school
717
+ screen_lock_landscape
718
+ screen_lock_portrait
719
+ screen_lock_rotation
720
+ screen_rotation
721
+ screen_share
722
+ sd_card
723
+ sd_storage
724
+ search
725
+ security
726
+ select_all
727
+ send
728
+ sentiment_dissatisfied
729
+ sentiment_neutral
730
+ sentiment_satisfied
731
+ sentiment_very_dissatisfied
732
+ sentiment_very_satisfied
733
+ settings
734
+ settings_applications
735
+ settings_backup_restore
736
+ settings_bluetooth
737
+ settings_brightness
738
+ settings_cell
739
+ settings_ethernet
740
+ settings_input_antenna
741
+ settings_input_component
742
+ settings_input_composite
743
+ settings_input_hdmi
744
+ settings_input_svideo
745
+ settings_overscan
746
+ settings_phone
747
+ settings_power
748
+ settings_remote
749
+ settings_system_daydream
750
+ settings_voice
751
+ share
752
+ shop
753
+ shop_two
754
+ shopping_basket
755
+ shopping_cart
756
+ short_text
757
+ show_chart
758
+ shuffle
759
+ signal_cellular_4_bar
760
+ signal_cellular_connected_no_internet_4_bar
761
+ signal_cellular_no_sim
762
+ signal_cellular_null
763
+ signal_cellular_off
764
+ signal_wifi_4_bar
765
+ signal_wifi_4_bar_lock
766
+ signal_wifi_off
767
+ sim_card
768
+ sim_card_alert
769
+ skip_next
770
+ skip_previous
771
+ slideshow
772
+ slow_motion_video
773
+ smartphone
774
+ smoke_free
775
+ smoking_rooms
776
+ sms
777
+ sms_failed
778
+ snooze
779
+ sort
780
+ sort_by_alpha
781
+ spa
782
+ space_bar
783
+ speaker
784
+ speaker_group
785
+ speaker_notes
786
+ speaker_notes_off
787
+ speaker_phone
788
+ spellcheck
789
+ star
790
+ star_border
791
+ star_half
792
+ stars
793
+ stay_current_landscape
794
+ stay_current_portrait
795
+ stay_primary_landscape
796
+ stay_primary_portrait
797
+ stop
798
+ stop_screen_share
799
+ storage
800
+ store
801
+ store_mall_directory
802
+ straighten
803
+ streetview
804
+ strikethrough_s
805
+ style
806
+ subdirectory_arrow_left
807
+ subdirectory_arrow_right
808
+ subject
809
+ subscriptions
810
+ subtitles
811
+ subway
812
+ supervisor_account
813
+ surround_sound
814
+ swap_calls
815
+ swap_horiz
816
+ swap_vert
817
+ swap_vertical_circle
818
+ switch_camera
819
+ switch_video
820
+ sync
821
+ sync_disabled
822
+ sync_problem
823
+ system_update
824
+ system_update_alt
825
+ tab
826
+ tab_unselected
827
+ tablet
828
+ tablet_android
829
+ tablet_mac
830
+ tag_faces
831
+ tap_and_play
832
+ terrain
833
+ text_fields
834
+ text_format
835
+ textsms
836
+ texture
837
+ theaters
838
+ thumb_down
839
+ thumb_up
840
+ thumbs_up_down
841
+ time_to_leave
842
+ timelapse
843
+ timeline
844
+ timer
845
+ timer_10
846
+ timer_3
847
+ timer_off
848
+ title
849
+ toc
850
+ today
851
+ toll
852
+ tonality
853
+ touch_app
854
+ toys
855
+ track_changes
856
+ traffic
857
+ train
858
+ tram
859
+ transfer_within_a_station
860
+ transform
861
+ translate
862
+ trending_down
863
+ trending_flat
864
+ trending_up
865
+ tune
866
+ turned_in
867
+ turned_in_not
868
+ tv
869
+ unarchive
870
+ undo
871
+ unfold_less
872
+ unfold_more
873
+ update
874
+ usb
875
+ verified_user
876
+ vertical_align_bottom
877
+ vertical_align_center
878
+ vertical_align_top
879
+ vibration
880
+ video_call
881
+ video_label
882
+ video_library
883
+ videocam
884
+ videocam_off
885
+ videogame_asset
886
+ view_agenda
887
+ view_array
888
+ view_carousel
889
+ view_column
890
+ view_comfy
891
+ view_compact
892
+ view_day
893
+ view_headline
894
+ view_list
895
+ view_module
896
+ view_quilt
897
+ view_stream
898
+ view_week
899
+ vignette
900
+ visibility
901
+ visibility_off
902
+ voice_chat
903
+ voicemail
904
+ volume_down
905
+ volume_mute
906
+ volume_off
907
+ volume_up
908
+ vpn_key
909
+ vpn_lock
910
+ wallpaper
911
+ warning
912
+ watch
913
+ watch_later
914
+ wb_auto
915
+ wb_cloudy
916
+ wb_incandescent
917
+ wb_iridescent
918
+ wb_sunny
919
+ wc
920
+ web
921
+ web_asset
922
+ weekend
923
+ whatshot
924
+ widgets
925
+ wifi
926
+ wifi_lock
927
+ wifi_tethering
928
+ work
929
+ wrap_text
930
+ youtube_searched_for
931
+ zoom_in
932
+ zoom_out
933
+ zoom_out_map