fae-railsz 2.1.0

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 (328) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +5 -0
  3. data/Rakefile +37 -0
  4. data/app/assets/fonts/fae/icons.eot +0 -0
  5. data/app/assets/fonts/fae/icons.svg +56 -0
  6. data/app/assets/fonts/fae/icons.ttf +0 -0
  7. data/app/assets/fonts/fae/icons.woff +0 -0
  8. data/app/assets/fonts/fae/lato-bold-webfont.eot +0 -0
  9. data/app/assets/fonts/fae/lato-bold-webfont.svg +4551 -0
  10. data/app/assets/fonts/fae/lato-bold-webfont.ttf +0 -0
  11. data/app/assets/fonts/fae/lato-bold-webfont.woff +0 -0
  12. data/app/assets/fonts/fae/lato-light-webfont.eot +0 -0
  13. data/app/assets/fonts/fae/lato-light-webfont.svg +4241 -0
  14. data/app/assets/fonts/fae/lato-light-webfont.ttf +0 -0
  15. data/app/assets/fonts/fae/lato-light-webfont.woff +0 -0
  16. data/app/assets/fonts/fae/lato-regular-webfont.eot +0 -0
  17. data/app/assets/fonts/fae/lato-regular-webfont.svg +4241 -0
  18. data/app/assets/fonts/fae/lato-regular-webfont.ttf +0 -0
  19. data/app/assets/fonts/fae/lato-regular-webfont.woff +0 -0
  20. data/app/assets/fonts/fae/selection.json +1334 -0
  21. data/app/assets/images/fae/error_bg.jpg +0 -0
  22. data/app/assets/images/fae/error_sad_face.png +0 -0
  23. data/app/assets/images/fae/icons/alert.svg +9 -0
  24. data/app/assets/images/fae/icons/arrow_down.svg +8 -0
  25. data/app/assets/images/fae/icons/arrow_left.svg +9 -0
  26. data/app/assets/images/fae/icons/arrow_right.svg +9 -0
  27. data/app/assets/images/fae/icons/arrow_stacked.svg +8 -0
  28. data/app/assets/images/fae/icons/arrow_up.svg +8 -0
  29. data/app/assets/images/fae/icons/calendar.svg +17 -0
  30. data/app/assets/images/fae/icons/check.svg +7 -0
  31. data/app/assets/images/fae/icons/checkmark.svg +8 -0
  32. data/app/assets/images/fae/icons/chevron_down.svg +7 -0
  33. data/app/assets/images/fae/icons/chevron_left.svg +10 -0
  34. data/app/assets/images/fae/icons/chevron_right.svg +10 -0
  35. data/app/assets/images/fae/icons/chevron_up.svg +7 -0
  36. data/app/assets/images/fae/icons/delete.svg +8 -0
  37. data/app/assets/images/fae/icons/delete_x.svg +8 -0
  38. data/app/assets/images/fae/icons/edit.svg +11 -0
  39. data/app/assets/images/fae/icons/handle.svg +13 -0
  40. data/app/assets/images/fae/icons/home.svg +10 -0
  41. data/app/assets/images/fae/icons/logout.svg +12 -0
  42. data/app/assets/images/fae/icons/magnifying_glass.svg +10 -0
  43. data/app/assets/images/fae/icons/menu.svg +11 -0
  44. data/app/assets/images/fae/icons/offlink.svg +25 -0
  45. data/app/assets/images/fae/icons/plus.svg +8 -0
  46. data/app/assets/images/fae/icons/pulldown.svg +11 -0
  47. data/app/assets/images/fae/icons/search.svg +11 -0
  48. data/app/assets/images/fae/icons/settings.svg +12 -0
  49. data/app/assets/images/fae/icons/sort.svg +11 -0
  50. data/app/assets/images/fae/icons/support.svg +15 -0
  51. data/app/assets/images/fae/icons/trash.svg +10 -0
  52. data/app/assets/images/fae/icons/trumbowyg.svg +1 -0
  53. data/app/assets/images/fae/icons/user.svg +13 -0
  54. data/app/assets/images/fae/icons/users.svg +19 -0
  55. data/app/assets/images/fae/icons/zoom.svg +12 -0
  56. data/app/assets/images/fae/tutorial_model_location.png +0 -0
  57. data/app/assets/images/fae/youtube_helper.jpg +0 -0
  58. data/app/assets/javascripts/fae/_modals.js +60 -0
  59. data/app/assets/javascripts/fae/_tables.js +403 -0
  60. data/app/assets/javascripts/fae/admin.js.erb +11 -0
  61. data/app/assets/javascripts/fae/application.js +63 -0
  62. data/app/assets/javascripts/fae/fae_init.js +8 -0
  63. data/app/assets/javascripts/fae/form/_ajax.js +380 -0
  64. data/app/assets/javascripts/fae/form/_cancel.js +38 -0
  65. data/app/assets/javascripts/fae/form/_filtering.js +276 -0
  66. data/app/assets/javascripts/fae/form/_form.js +60 -0
  67. data/app/assets/javascripts/fae/form/_slugger.js.erb +100 -0
  68. data/app/assets/javascripts/fae/form/_validator.js +459 -0
  69. data/app/assets/javascripts/fae/form/fae_chosen.js +44 -0
  70. data/app/assets/javascripts/fae/form/fileinputer.js +178 -0
  71. data/app/assets/javascripts/fae/form/hinter.js +111 -0
  72. data/app/assets/javascripts/fae/form/inputs/_checkbox.js +27 -0
  73. data/app/assets/javascripts/fae/form/inputs/_color.js +42 -0
  74. data/app/assets/javascripts/fae/form/inputs/_dates.js +78 -0
  75. data/app/assets/javascripts/fae/form/inputs/_select.js +162 -0
  76. data/app/assets/javascripts/fae/form/inputs/_text.js +118 -0
  77. data/app/assets/javascripts/fae/navigation/_global_search.js +184 -0
  78. data/app/assets/javascripts/fae/navigation/_language.js +89 -0
  79. data/app/assets/javascripts/fae/navigation/_navigation.js +206 -0
  80. data/app/assets/javascripts/fae/navigation/_subnav_highlighter.js +81 -0
  81. data/app/assets/javascripts/fae/navigation/sticky.js +186 -0
  82. data/app/assets/javascripts/fae/vendor/chosen.jquery.min.js +2 -0
  83. data/app/assets/javascripts/fae/vendor/frob_core_helpers.js +587 -0
  84. data/app/assets/javascripts/fae/vendor/fryr.js +437 -0
  85. data/app/assets/javascripts/fae/vendor/jqColorPicker.min.js +4 -0
  86. data/app/assets/javascripts/fae/vendor/jquery.daterangepicker.js +1292 -0
  87. data/app/assets/javascripts/fae/vendor/jquery.multi-select.js +534 -0
  88. data/app/assets/javascripts/fae/vendor/jquery.simplemodal.1.4.4.js +719 -0
  89. data/app/assets/javascripts/fae/vendor/jquery.tablesorter.js +1901 -0
  90. data/app/assets/javascripts/fae/vendor/js.cookie.js +139 -0
  91. data/app/assets/javascripts/fae/vendor/moment.min.js +7 -0
  92. data/app/assets/javascripts/fae/vendor/simplemde.min.js +13 -0
  93. data/app/assets/javascripts/fae/vendor/touch_punch.js +11 -0
  94. data/app/assets/javascripts/fae/vendor/trumbowyg.js.erb +4 -0
  95. data/app/assets/javascripts/fae/vendor/trumbowyg/plugins/upload/trumbowyg.upload.js +223 -0
  96. data/app/assets/javascripts/fae/vendor/trumbowyg/trumbowyg.js +1603 -0
  97. data/app/assets/stylesheets/fae/application.css +8 -0
  98. data/app/assets/stylesheets/fae/base.scss +82 -0
  99. data/app/assets/stylesheets/fae/globals/_fonts.scss +43 -0
  100. data/app/assets/stylesheets/fae/globals/_icons.scss +15 -0
  101. data/app/assets/stylesheets/fae/globals/_plugins.scss +51 -0
  102. data/app/assets/stylesheets/fae/globals/_tags.scss +68 -0
  103. data/app/assets/stylesheets/fae/globals/imports/_extends.scss +53 -0
  104. data/app/assets/stylesheets/fae/globals/imports/_mixins.scss +58 -0
  105. data/app/assets/stylesheets/fae/globals/imports/_variables.scss +165 -0
  106. data/app/assets/stylesheets/fae/globals/imports/finescss/_fine.scss +7 -0
  107. data/app/assets/stylesheets/fae/globals/imports/finescss/_fine_functions.scss +88 -0
  108. data/app/assets/stylesheets/fae/globals/imports/finescss/_fine_mixins.scss +280 -0
  109. data/app/assets/stylesheets/fae/globals/imports/finescss/_fine_variables.scss +30 -0
  110. data/app/assets/stylesheets/fae/globals/layout/_base.scss +48 -0
  111. data/app/assets/stylesheets/fae/globals/layout/_breadcrumbs.scss +45 -0
  112. data/app/assets/stylesheets/fae/globals/layout/_content-header.scss +99 -0
  113. data/app/assets/stylesheets/fae/globals/legacy/_pre-1.3.scss +659 -0
  114. data/app/assets/stylesheets/fae/globals/navigation/_base.scss +22 -0
  115. data/app/assets/stylesheets/fae/globals/navigation/_footer.scss +50 -0
  116. data/app/assets/stylesheets/fae/globals/navigation/_header.scss +149 -0
  117. data/app/assets/stylesheets/fae/globals/navigation/_mobilenav.scss +149 -0
  118. data/app/assets/stylesheets/fae/globals/navigation/_search.scss +76 -0
  119. data/app/assets/stylesheets/fae/globals/navigation/_sidenav.scss +142 -0
  120. data/app/assets/stylesheets/fae/globals/navigation/_utility.scss +95 -0
  121. data/app/assets/stylesheets/fae/modules/_alerts.scss +50 -0
  122. data/app/assets/stylesheets/fae/modules/_buttons.scss +62 -0
  123. data/app/assets/stylesheets/fae/modules/_modal.scss +78 -0
  124. data/app/assets/stylesheets/fae/modules/_toggles.scss +48 -0
  125. data/app/assets/stylesheets/fae/modules/forms/_asset-actions.scss +83 -0
  126. data/app/assets/stylesheets/fae/modules/forms/_base.scss +100 -0
  127. data/app/assets/stylesheets/fae/modules/forms/_checkbox.scss +87 -0
  128. data/app/assets/stylesheets/fae/modules/forms/_colorpicker.scss +57 -0
  129. data/app/assets/stylesheets/fae/modules/forms/_date.scss +335 -0
  130. data/app/assets/stylesheets/fae/modules/forms/_hints.scss +40 -0
  131. data/app/assets/stylesheets/fae/modules/forms/_label.scss +57 -0
  132. data/app/assets/stylesheets/fae/modules/forms/_radio.scss +69 -0
  133. data/app/assets/stylesheets/fae/modules/forms/_select.scss +317 -0
  134. data/app/assets/stylesheets/fae/modules/forms/_simple-mde.scss +29 -0
  135. data/app/assets/stylesheets/fae/modules/forms/_text.scss +62 -0
  136. data/app/assets/stylesheets/fae/modules/forms/_textarea.scss +16 -0
  137. data/app/assets/stylesheets/fae/modules/forms/_validation.scss +63 -0
  138. data/app/assets/stylesheets/fae/modules/tables/_actions.scss +41 -0
  139. data/app/assets/stylesheets/fae/modules/tables/_base.scss +63 -0
  140. data/app/assets/stylesheets/fae/modules/tables/_collapsible.scss +76 -0
  141. data/app/assets/stylesheets/fae/modules/tables/_filters.scss +61 -0
  142. data/app/assets/stylesheets/fae/modules/tables/_image.scss +21 -0
  143. data/app/assets/stylesheets/fae/modules/tables/_pagination.scss +34 -0
  144. data/app/assets/stylesheets/fae/modules/tables/_sorting.scss +58 -0
  145. data/app/assets/stylesheets/fae/modules/tables/_sticky.scss +9 -0
  146. data/app/assets/stylesheets/fae/modules/tables/_tooltips.scss +24 -0
  147. data/app/assets/stylesheets/fae/pages/_error.scss +35 -0
  148. data/app/assets/stylesheets/fae/pages/_help.scss +28 -0
  149. data/app/assets/stylesheets/fae/pages/_home.scss +18 -0
  150. data/app/assets/stylesheets/fae/pages/_login.scss +137 -0
  151. data/app/assets/stylesheets/fae/vendor/chosen.css +377 -0
  152. data/app/assets/stylesheets/fae/vendor/daterangepicker.css +227 -0
  153. data/app/assets/stylesheets/fae/vendor/reset.css +48 -0
  154. data/app/assets/stylesheets/fae/vendor/simplemde.min.css +7 -0
  155. data/app/assets/stylesheets/fae/vendor/trumbowyg.css +584 -0
  156. data/app/controllers/concerns/fae/application_controller_concern.rb +1 -0
  157. data/app/controllers/concerns/fae/asset_cloner.rb +46 -0
  158. data/app/controllers/concerns/fae/cloneable.rb +136 -0
  159. data/app/controllers/fae/application_controller.rb +123 -0
  160. data/app/controllers/fae/base_controller.rb +117 -0
  161. data/app/controllers/fae/files_controller.rb +26 -0
  162. data/app/controllers/fae/images_controller.rb +37 -0
  163. data/app/controllers/fae/nested_base_controller.rb +100 -0
  164. data/app/controllers/fae/options_controller.rb +29 -0
  165. data/app/controllers/fae/pages_controller.rb +44 -0
  166. data/app/controllers/fae/setup_controller.rb +54 -0
  167. data/app/controllers/fae/static_pages_controller.rb +54 -0
  168. data/app/controllers/fae/users_controller.rb +71 -0
  169. data/app/controllers/fae/utilities_controller.rb +61 -0
  170. data/app/helpers/fae/application_helper.rb +114 -0
  171. data/app/helpers/fae/fae_helper.rb +6 -0
  172. data/app/helpers/fae/form_helper.rb +240 -0
  173. data/app/helpers/fae/nested_form_helper.rb +39 -0
  174. data/app/helpers/fae/view_helper.rb +175 -0
  175. data/app/inputs/date_range_input.rb +17 -0
  176. data/app/inputs/radio_collection_input.rb +17 -0
  177. data/app/inputs/symbol_input.rb +5 -0
  178. data/app/models/concerns/fae/assets_validatable.rb +12 -0
  179. data/app/models/concerns/fae/authorization_concern.rb +12 -0
  180. data/app/models/concerns/fae/base_model_concern.rb +105 -0
  181. data/app/models/concerns/fae/change_concern.rb +1 -0
  182. data/app/models/concerns/fae/file_concern.rb +1 -0
  183. data/app/models/concerns/fae/image_concern.rb +1 -0
  184. data/app/models/concerns/fae/navigation_concern.rb +10 -0
  185. data/app/models/concerns/fae/option_concern.rb +1 -0
  186. data/app/models/concerns/fae/page_validatable.rb +26 -0
  187. data/app/models/concerns/fae/paper_trailer.rb +8 -0
  188. data/app/models/concerns/fae/role_concern.rb +1 -0
  189. data/app/models/concerns/fae/sortable.rb +51 -0
  190. data/app/models/concerns/fae/static_page_concern.rb +1 -0
  191. data/app/models/concerns/fae/text_area_concern.rb +1 -0
  192. data/app/models/concerns/fae/text_field_concern.rb +1 -0
  193. data/app/models/concerns/fae/trackable.rb +124 -0
  194. data/app/models/concerns/fae/user_concern.rb +7 -0
  195. data/app/models/fae/authorization.rb +8 -0
  196. data/app/models/fae/change.rb +53 -0
  197. data/app/models/fae/file.rb +24 -0
  198. data/app/models/fae/image.rb +33 -0
  199. data/app/models/fae/navigation.rb +132 -0
  200. data/app/models/fae/option.rb +38 -0
  201. data/app/models/fae/role.rb +18 -0
  202. data/app/models/fae/static_page.rb +109 -0
  203. data/app/models/fae/text_area.rb +14 -0
  204. data/app/models/fae/text_field.rb +14 -0
  205. data/app/models/fae/user.rb +67 -0
  206. data/app/uploaders/fae/file_uploader.rb +26 -0
  207. data/app/uploaders/fae/image_uploader.rb +28 -0
  208. data/app/validators/fae/cross_model_uniqueness_validator.rb +14 -0
  209. data/app/views/devise/confirmations/new.html.slim +13 -0
  210. data/app/views/devise/mailer/confirmation_instructions.html.slim +3 -0
  211. data/app/views/devise/mailer/reset_password_instructions.html.slim +5 -0
  212. data/app/views/devise/mailer/unlock_instructions.html.slim +4 -0
  213. data/app/views/devise/passwords/edit.html.slim +10 -0
  214. data/app/views/devise/passwords/new.html.slim +10 -0
  215. data/app/views/devise/registrations/edit.html.slim +22 -0
  216. data/app/views/devise/registrations/new.html.slim +15 -0
  217. data/app/views/devise/sessions/new.html.slim +7 -0
  218. data/app/views/devise/shared/_links.slim +25 -0
  219. data/app/views/devise/unlocks/new.html.slim +13 -0
  220. data/app/views/fae/application/_breadcrumb.html.slim +19 -0
  221. data/app/views/fae/application/_content_form.html.slim +55 -0
  222. data/app/views/fae/application/_credit.slim +6 -0
  223. data/app/views/fae/application/_file_uploader.html.slim +36 -0
  224. data/app/views/fae/application/_flash_messages.slim +2 -0
  225. data/app/views/fae/application/_global_search_results.html.slim +37 -0
  226. data/app/views/fae/application/_header.slim +50 -0
  227. data/app/views/fae/application/_markdown_helper.slim +41 -0
  228. data/app/views/fae/application/_mobilenav.slim +66 -0
  229. data/app/views/fae/application/_sidenav.slim +23 -0
  230. data/app/views/fae/application/_user_log.html.slim +36 -0
  231. data/app/views/fae/images/_image_uploader.html.slim +66 -0
  232. data/app/views/fae/options/_form.html.slim +16 -0
  233. data/app/views/fae/options/edit.html.slim +1 -0
  234. data/app/views/fae/pages/activity_log.html.slim +32 -0
  235. data/app/views/fae/pages/disabled_environment.html.slim +4 -0
  236. data/app/views/fae/pages/error404.html.slim +7 -0
  237. data/app/views/fae/pages/help.html.slim +35 -0
  238. data/app/views/fae/pages/home.html.slim +36 -0
  239. data/app/views/fae/setup/first_user.html.slim +11 -0
  240. data/app/views/fae/shared/_errors.slim +4 -0
  241. data/app/views/fae/shared/_form_header.html.slim +40 -0
  242. data/app/views/fae/shared/_index_header.html.slim +26 -0
  243. data/app/views/fae/shared/_nested_table.html.slim +49 -0
  244. data/app/views/fae/shared/_recent_changes.html.slim +22 -0
  245. data/app/views/fae/shared/_shared_nested_table.html.slim +46 -0
  246. data/app/views/fae/static_pages/index.html.slim +13 -0
  247. data/app/views/fae/users/_form.html.slim +19 -0
  248. data/app/views/fae/users/edit.html.slim +1 -0
  249. data/app/views/fae/users/index.html.slim +23 -0
  250. data/app/views/fae/users/new.html.slim +1 -0
  251. data/app/views/fae/users/settings.html.slim +1 -0
  252. data/app/views/kaminari/fae/_gap.html.slim +8 -0
  253. data/app/views/kaminari/fae/_next_page.html.slim +9 -0
  254. data/app/views/kaminari/fae/_page.html.slim +15 -0
  255. data/app/views/kaminari/fae/_paginator.html.slim +15 -0
  256. data/app/views/kaminari/fae/_prev_page.html.slim +9 -0
  257. data/app/views/layouts/devise.html.slim +29 -0
  258. data/app/views/layouts/fae/application.html.slim +23 -0
  259. data/app/views/layouts/fae/error.html.slim +11 -0
  260. data/config/deploy.rb +73 -0
  261. data/config/deploy/dev.rb +19 -0
  262. data/config/deploy/prod.rb +19 -0
  263. data/config/deploy/stage.rb +19 -0
  264. data/config/initializers/assets.rb +1 -0
  265. data/config/initializers/carrierwave.rb +3 -0
  266. data/config/initializers/devise.rb +258 -0
  267. data/config/initializers/devise_monkeypatch.rb +11 -0
  268. data/config/initializers/fae_judge.rb +3 -0
  269. data/config/initializers/inflections.rb +16 -0
  270. data/config/initializers/kaminari_config.rb +10 -0
  271. data/config/initializers/simple_form.rb +147 -0
  272. data/config/initializers/time_formats.rb +3 -0
  273. data/config/locales/devise.en.yml +59 -0
  274. data/config/locales/devise.zh-CN.yml +59 -0
  275. data/config/locales/fae.en.yml +10 -0
  276. data/config/locales/fae.zh-CN.yml +10 -0
  277. data/config/locales/simple_form.en.yml +26 -0
  278. data/config/locales/simple_form.zh-CN.yml +26 -0
  279. data/config/routes.rb +46 -0
  280. data/db/migrate/20140809222030_add_user_table.rb +49 -0
  281. data/db/migrate/20140822224029_create_fae_roles.rb +10 -0
  282. data/db/migrate/20141008180718_create_fae_images_table.rb +19 -0
  283. data/db/migrate/20141017194616_create_fae_options.rb +16 -0
  284. data/db/migrate/20141021181327_create_fae_files.rb +17 -0
  285. data/db/migrate/20141021183047_create_fae_text_areas.rb +16 -0
  286. data/db/migrate/20141021184311_create_fae_pages.rb +13 -0
  287. data/db/migrate/20141105214814_create_fae_text_fields.rb +15 -0
  288. data/db/migrate/20150930224821_create_fae_changes.rb +17 -0
  289. data/lib/fae-rails.rb +6 -0
  290. data/lib/fae/concerns/models/base.rb +8 -0
  291. data/lib/fae/engine.rb +37 -0
  292. data/lib/fae/options.rb +35 -0
  293. data/lib/fae/validation_helper_collection.rb +76 -0
  294. data/lib/fae/version.rb +3 -0
  295. data/lib/file_size_validator.rb +71 -0
  296. data/lib/generators/fae/base_generator.rb +156 -0
  297. data/lib/generators/fae/controller_generator.rb +13 -0
  298. data/lib/generators/fae/install_generator.rb +61 -0
  299. data/lib/generators/fae/model_generator.rb +11 -0
  300. data/lib/generators/fae/nested_index_scaffold_generator.rb +36 -0
  301. data/lib/generators/fae/nested_scaffold_generator.rb +51 -0
  302. data/lib/generators/fae/page_generator.rb +65 -0
  303. data/lib/generators/fae/scaffold_generator.rb +15 -0
  304. data/lib/generators/fae/templates/assets/fae.js +6 -0
  305. data/lib/generators/fae/templates/assets/fae.scss +2 -0
  306. data/lib/generators/fae/templates/controllers/nested_index_scaffold_controller.rb +81 -0
  307. data/lib/generators/fae/templates/controllers/nested_scaffold_controller.rb +13 -0
  308. data/lib/generators/fae/templates/controllers/scaffold_controller.rb +13 -0
  309. data/lib/generators/fae/templates/controllers/static_pages_controller.rb +10 -0
  310. data/lib/generators/fae/templates/initializers/fae.rb +63 -0
  311. data/lib/generators/fae/templates/initializers/fae_fine.rb +51 -0
  312. data/lib/generators/fae/templates/initializers/judge.rb +6 -0
  313. data/lib/generators/fae/templates/models/concerns/authorization_concern.rb +27 -0
  314. data/lib/generators/fae/templates/models/concerns/navigation_concern.rb +33 -0
  315. data/lib/generators/fae/templates/models/pages_model.rb +14 -0
  316. data/lib/generators/fae/templates/tasks/fae_tasks.rake +19 -0
  317. data/lib/generators/fae/templates/views/_form.html.slim +18 -0
  318. data/lib/generators/fae/templates/views/_form_index_nested.html.slim +13 -0
  319. data/lib/generators/fae/templates/views/_form_nested.html.slim +17 -0
  320. data/lib/generators/fae/templates/views/edit.html.slim +1 -0
  321. data/lib/generators/fae/templates/views/edit_nested.html.slim +3 -0
  322. data/lib/generators/fae/templates/views/index.html.slim +35 -0
  323. data/lib/generators/fae/templates/views/index_nested.html.slim +8 -0
  324. data/lib/generators/fae/templates/views/new.html.slim +1 -0
  325. data/lib/generators/fae/templates/views/new_nested.html.slim +3 -0
  326. data/lib/generators/fae/templates/views/static_page_form.html.slim +15 -0
  327. data/lib/generators/fae/templates/views/table_nested.html.slim +4 -0
  328. metadata +692 -0
@@ -0,0 +1,1334 @@
1
+ {
2
+ "IcoMoonType": "selection",
3
+ "icons": [
4
+ {
5
+ "icon": {
6
+ "paths": [
7
+ "M408.638 923.042h-254.798v-411.042h-153.84l512-461.521 512 461.521h-153.84v411.042h-254.798v-307.681h-206.723v307.681z"
8
+ ],
9
+ "attrs": [],
10
+ "isMulticolor": false,
11
+ "tags": [
12
+ "home"
13
+ ],
14
+ "grid": 24
15
+ },
16
+ "attrs": [],
17
+ "properties": {
18
+ "order": 1,
19
+ "id": 0,
20
+ "prevSize": 24,
21
+ "code": 59652,
22
+ "name": "home"
23
+ },
24
+ "setIdx": 0,
25
+ "setId": 6,
26
+ "iconIdx": 0
27
+ },
28
+ {
29
+ "icon": {
30
+ "paths": [
31
+ "M0 832h1024v128h-1024v-128zM128 576h128v192h-128v-192zM320 320h128v448h-128v-448zM512 512h128v256h-128v-256zM704 128h128v640h-128v-640z"
32
+ ],
33
+ "attrs": [],
34
+ "isMulticolor": false,
35
+ "grid": 0,
36
+ "tags": [
37
+ "bars"
38
+ ]
39
+ },
40
+ "attrs": [],
41
+ "properties": {
42
+ "order": 46,
43
+ "id": 0,
44
+ "prevSize": 32,
45
+ "code": 59649,
46
+ "name": "bars"
47
+ },
48
+ "setIdx": 1,
49
+ "setId": 5,
50
+ "iconIdx": 0
51
+ },
52
+ {
53
+ "icon": {
54
+ "paths": [
55
+ "M864 0c88.4 0 160 71.6 160 160 0 36-12 69.2-32 96l-64 64-224-224 64-64c26.8-20 60-32 96-32zM64 736l-64 288 288-64 592-592-224-224-592 592zM715.6 363.6l-448 448-55.2-55.2 448-448 55.2 55.2z"
56
+ ],
57
+ "attrs": [],
58
+ "isMulticolor": false,
59
+ "grid": 0,
60
+ "tags": [
61
+ "edit"
62
+ ]
63
+ },
64
+ "attrs": [],
65
+ "properties": {
66
+ "order": 52,
67
+ "id": 30,
68
+ "name": "edit",
69
+ "prevSize": 32,
70
+ "code": 59648
71
+ },
72
+ "setIdx": 3,
73
+ "setId": 1,
74
+ "iconIdx": 0
75
+ },
76
+ {
77
+ "icon": {
78
+ "paths": [
79
+ "M934.4 0h-704c-12.8 0-21.333 8.533-21.333 21.333v110.933h618.667v750.933h110.933c12.8 0 21.333-8.533 21.333-21.333v-840.533c-4.267-12.8-12.8-21.333-25.6-21.333z",
80
+ "M68.267 213.333h678.4v810.667h-678.4v-810.667z"
81
+ ],
82
+ "attrs": [],
83
+ "isMulticolor": false,
84
+ "grid": 0,
85
+ "tags": [
86
+ "copy"
87
+ ]
88
+ },
89
+ "attrs": [],
90
+ "properties": {
91
+ "order": 53,
92
+ "id": 29,
93
+ "name": "copy",
94
+ "prevSize": 32,
95
+ "code": 59653
96
+ },
97
+ "setIdx": 3,
98
+ "setId": 1,
99
+ "iconIdx": 1
100
+ },
101
+ {
102
+ "icon": {
103
+ "paths": [
104
+ "M799.944 128.075h-575.888c-52.99 0-95.981 42.992-95.981 95.981v31.994h767.85v-31.994c0-52.99-42.992-95.981-95.981-95.981zM632.376 64.087l14.197 100.98h-268.947l14.197-100.98h240.553zM639.975 0.1h-255.95c-26.395 0-50.99 21.396-54.589 47.591l-18.796 133.974c-3.599 26.195 14.997 47.591 41.392 47.591h319.938c26.395 0 44.991-21.396 41.392-47.591l-18.796-133.974c-3.599-26.195-28.194-47.591-54.589-47.591v0zM815.941 320.037h-607.881c-35.193 0-61.388 28.594-58.189 63.788l52.39 576.487c3.199 34.993 34.593 63.788 69.786 63.788h479.906c35.193 0 66.587-28.594 69.786-63.788l52.39-576.487c3.199-35.193-22.996-63.788-58.189-63.788zM384.025 895.925h-95.981l-31.994-447.913h127.975v447.913zM575.988 895.925h-127.975v-447.913h127.975v447.913zM735.956 895.925h-95.981v-447.913h127.975l-31.994 447.913z"
105
+ ],
106
+ "attrs": [],
107
+ "isMulticolor": false,
108
+ "grid": 0,
109
+ "tags": [
110
+ "trash"
111
+ ]
112
+ },
113
+ "attrs": [],
114
+ "properties": {
115
+ "order": 50,
116
+ "id": 28,
117
+ "name": "trash",
118
+ "prevSize": 32,
119
+ "code": 59654
120
+ },
121
+ "setIdx": 3,
122
+ "setId": 1,
123
+ "iconIdx": 2
124
+ },
125
+ {
126
+ "icon": {
127
+ "paths": [
128
+ "M918.229 432.896c-17.493-2.517-36.096-18.261-41.515-34.987l-25.984-63.189c-8.149-15.573-6.229-39.893 4.267-53.931l42.24-56.235c10.496-14.080 9.685-36.437-2.005-49.579l-46.251-46.336c-13.184-11.605-35.499-12.501-49.664-1.92l-56.149 42.155c-14.080 10.581-38.315 12.501-53.931 4.309l-63.147-25.984c-16.853-5.376-32.597-23.979-34.987-41.429l-9.984-69.504c-2.432-17.451-18.816-33.195-36.267-35.072 0 0-10.88-1.109-32.853-1.109-21.931 0-32.811 1.109-32.811 1.109-17.493 1.877-33.877 17.621-36.352 35.072l-9.941 69.504c-2.475 17.451-18.219 36.053-34.987 41.429l-63.147 25.984c-15.616 8.149-39.851 6.272-53.931-4.309l-56.235-42.197c-14.080-10.581-36.437-9.728-49.621 1.92l-46.251 46.336c-11.605 13.184-12.544 35.499-1.963 49.579l42.155 56.235c10.624 14.080 12.501 38.357 4.352 53.931l-26.069 63.232c-5.333 16.768-23.979 32.512-41.429 34.987l-69.504 9.856c-17.408 2.517-33.152 18.859-34.987 36.395 0 0-1.152 10.88-1.152 32.853s1.152 32.853 1.152 32.853c1.835 17.536 17.579 33.835 34.987 36.352l69.504 9.899c17.408 2.517 36.096 18.261 41.429 34.987l26.069 63.147c8.149 15.573 6.229 39.936-4.352 53.931l-42.155 56.235c-10.581 14.080-13.141 33.237-5.632 42.411 7.467 9.259 28.885 32.085 28.928 32.171s7.296 6.656 16 14.677 44.459 19.157 58.539 8.661l56.192-42.24c14.080-10.496 38.315-12.501 53.931-4.267l63.147 25.984c16.811 5.333 32.555 23.979 34.987 41.429l9.941 69.504c2.475 17.408 18.816 33.237 36.352 35.072 0 0 10.88 1.152 32.811 1.152 21.973 0 32.853-1.152 32.853-1.152 17.451-1.835 33.835-17.664 36.267-35.072l9.984-69.504c2.432-17.408 18.176-36.096 34.987-41.429l63.147-26.069c15.573-8.149 39.851-6.229 53.931 4.352l56.235 42.24c14.165 10.496 36.437 9.685 49.664-2.005l46.165-46.251c11.648-13.269 12.501-35.584 2.005-49.664l-42.24-56.235c-10.496-13.995-12.416-38.315-4.267-53.931l25.984-63.147c5.419-16.768 23.979-32.512 41.515-34.987l69.419-9.899c17.493-2.517 33.237-18.816 35.072-36.352 0 0 1.152-10.88 1.152-32.853s-1.152-32.853-1.152-32.853c-1.835-17.493-17.579-33.877-35.072-36.395l-69.376-9.856zM512 640c-70.699 0-128-57.344-128-128 0-70.699 57.301-128 128-128s128 57.344 128 128c0 70.656-57.344 128-128 128z"
129
+ ],
130
+ "attrs": [],
131
+ "isMulticolor": false,
132
+ "grid": 0,
133
+ "tags": [
134
+ "admin"
135
+ ]
136
+ },
137
+ "attrs": [],
138
+ "properties": {
139
+ "order": 48,
140
+ "id": 27,
141
+ "prevSize": 32,
142
+ "code": 59650,
143
+ "name": "settings"
144
+ },
145
+ "setIdx": 3,
146
+ "setId": 1,
147
+ "iconIdx": 3
148
+ },
149
+ {
150
+ "icon": {
151
+ "paths": [
152
+ "M512 64c-247.4 0-448 200.6-448 448s200.6 448 448 448c247.4 0 448-200.6 448-448s-200.6-448-448-448zM552.4 717.4c-1 35.6-27.4 57.6-61.6 56.6-32.8-1-58.6-24.4-57.6-60.2 1-35.6 28.2-58.2 61-57.2 34.4 1 59.4 25.2 58.2 60.8zM649.8 462.8c-8.4 11.8-27.2 27-50.8 45.4l-26.2 18c-12.8 9.8-20.8 21.4-25 34.6-2.2 7-3.8 25.2-4.2 37.4-0.2 2.4-1.6 7.8-9 7.8s-70 0-78.2 0c-8.2 0-9.2-4.8-9-7.2 1.2-33.2 6-60.6 19.8-82.6 18.6-29.6 71-60.8 71-60.8 8-6 14.2-12.4 19-19.4 8.8-12 16-25.4 16-39.8 0-16.6-4-32.4-14.6-45.6-12.4-15.4-25.8-22.8-51.6-22.8-25.4 0-40.2 12.8-50.8 29.6s-8.8 36.6-8.8 54.6h-97.4c0-68 17.8-111.4 55.4-137 25.4-17.4 57.8-25 95.6-25 49.6 0 89 9.2 123.8 35.6 32.2 24.4 49.2 58.8 49.2 105.2 0 28.6-10 52.6-24.2 72z"
153
+ ],
154
+ "attrs": [],
155
+ "isMulticolor": false,
156
+ "grid": 0,
157
+ "tags": [
158
+ "help"
159
+ ]
160
+ },
161
+ "attrs": [],
162
+ "properties": {
163
+ "order": 47,
164
+ "id": 26,
165
+ "prevSize": 32,
166
+ "code": 59651,
167
+ "name": "support"
168
+ },
169
+ "setIdx": 3,
170
+ "setId": 1,
171
+ "iconIdx": 4
172
+ },
173
+ {
174
+ "icon": {
175
+ "paths": [
176
+ "M992 384h-352v-352c0-17.6-14.4-32-32-32h-192c-17.6 0-32 14.4-32 32v352h-352c-17.6 0-32 14.4-32 32v192c0 17.6 14.4 32 32 32h352v352c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-352h352c17.6 0 32-14.4 32-32v-192c0-17.6-14.4-32-32-32z"
177
+ ],
178
+ "attrs": [
179
+ {}
180
+ ],
181
+ "isMulticolor": false,
182
+ "grid": 0,
183
+ "tags": [
184
+ "plus"
185
+ ]
186
+ },
187
+ "attrs": [
188
+ {}
189
+ ],
190
+ "properties": {
191
+ "order": 20,
192
+ "id": 0,
193
+ "name": "heavy_plus",
194
+ "prevSize": 32,
195
+ "code": 58906
196
+ },
197
+ "setIdx": 3,
198
+ "setId": 1,
199
+ "iconIdx": 5
200
+ },
201
+ {
202
+ "icon": {
203
+ "paths": [
204
+ "M812.138 1024.353l812.138-1024h-1624.276l812.138 1024z"
205
+ ],
206
+ "attrs": [
207
+ {}
208
+ ],
209
+ "isMulticolor": false,
210
+ "width": 1624,
211
+ "defaultCode": 58880,
212
+ "grid": 0,
213
+ "tags": [
214
+ ""
215
+ ]
216
+ },
217
+ "attrs": [
218
+ {}
219
+ ],
220
+ "properties": {
221
+ "id": 0,
222
+ "order": 21,
223
+ "prevSize": 32,
224
+ "code": 58880,
225
+ "name": "arrow_down"
226
+ },
227
+ "setIdx": 3,
228
+ "setId": 1,
229
+ "iconIdx": 6
230
+ },
231
+ {
232
+ "icon": {
233
+ "paths": [
234
+ "M1007.644 861.609v0 0l-255.562-255.562c36.509-58.414 51.112-124.13 51.112-197.148 0-226.355-175.242-408.899-401.597-408.899v0c-219.053 0-401.597 182.544-401.597 401.597 0 226.355 175.169 408.899 401.597 408.899v0c73.018 0 146.035-21.905 204.45-58.414l255.562 255.562c21.905 21.905 51.112 21.905 65.716 0l80.319-80.319c21.905-21.905 21.905-51.112 0-65.716zM620.65 620.65c-58.414 58.414-131.432 87.621-211.751 87.621v0c-167.941 0-299.373-138.734-299.373-306.674 0-80.319 29.134-153.337 87.621-211.751 51.112-58.414 124.13-87.621 204.45-87.621v0c80.319 0 153.337 29.207 211.678 87.621 58.487 58.414 87.621 131.432 87.621 211.751 7.375 80.319-29.134 160.639-80.246 219.053zM474.615 189.846h-124.13v138.734h-138.734v124.13h138.734v138.734h124.13v-138.734h138.734v-124.13h-138.734v-138.734z"
235
+ ],
236
+ "attrs": [
237
+ {}
238
+ ],
239
+ "isMulticolor": false,
240
+ "defaultCode": 58881,
241
+ "grid": 0,
242
+ "tags": [
243
+ ""
244
+ ]
245
+ },
246
+ "attrs": [
247
+ {}
248
+ ],
249
+ "properties": {
250
+ "id": 1,
251
+ "order": 22,
252
+ "prevSize": 32,
253
+ "code": 58881,
254
+ "name": "zoom"
255
+ },
256
+ "setIdx": 3,
257
+ "setId": 1,
258
+ "iconIdx": 7
259
+ },
260
+ {
261
+ "icon": {
262
+ "paths": [
263
+ "M1521.555 890.009c-46.853-46.853-134.058-73.732-207.789-93.773-93.84-26.812-134.058-100.543-140.761-167.572 13.339-13.406 20.109-26.812 33.514-40.284 60.259 20.176 134.058 26.812 201.087-20.109-87.138-87.138-20.109-194.384-80.435-388.767-53.623-167.572-274.818-154.166-301.63-100.543-120.652-40.217-207.789 13.406-241.304 187.681-40.217 201.087 33.514 221.195-53.623 308.4 67.029 40.217 127.355 26.745 180.978 6.703 13.406 13.406 20.109 26.812 33.514 40.217-13.406 67.029-46.92 140.828-140.761 167.572-73.732 20.042-154.166 46.853-207.789 93.773-40.217 40.217-13.406 134.058-13.406 134.058h951.81c0 6.703 26.812-87.138-13.406-127.355zM549.637 869.901c46.92-46.92 127.355-73.732 194.384-93.773 6.703 0 13.406-6.77 20.109-6.77 26.812-6.703 53.623-20.109 73.799-40.217-20.176-6.77-46.92-20.109-67.029-26.812-13.406-6.703-33.514-6.703-46.92-13.406-20.176-13.406-40.284-53.623-46.987-80.435-13.406 0-20.109 0-26.812-6.77 0-33.514 20.176-33.514 26.812-60.326 6.703-20.109 0-53.623 13.406-73.732 6.703-13.339 20.109-13.339 26.812-20.042v-6.703c0-33.514-6.703-87.138 6.77-160.869v0c0-20.109 6.703-87.138 6.703-107.246 0-40.217 0-40.217-6.703-80.435 0 0-13.406-33.514-26.812-46.92l-33.514-6.703-20.109-20.109c-93.907-40.217-187.748-6.703-241.371 20.109-73.732 20.109-120.652 93.84-87.138 241.304 6.703 26.812-13.406 40.217-13.406 53.623 0 33.514 6.703 107.246 33.514 120.652l20.109 6.703c0 26.812 6.703 60.326 6.703 87.138 6.77 20.109 26.812 20.109 26.812 53.623l-20.109 6.703c-13.406 20.109-26.812 67.029-46.92 80.368-13.406 6.77-33.514 6.77-46.92 13.473-53.623 20.109-93.84 46.92-147.464 73.732-53.623 20.109-113.949 26.812-127.355 80.435 0 33.514 0 120.719 0 167.572h522.825c0-26.812-13.406-107.246 26.812-154.166z"
264
+ ],
265
+ "attrs": [
266
+ {}
267
+ ],
268
+ "isMulticolor": false,
269
+ "width": 1544,
270
+ "defaultCode": 58882,
271
+ "grid": 0,
272
+ "tags": [
273
+ ""
274
+ ]
275
+ },
276
+ "attrs": [
277
+ {}
278
+ ],
279
+ "properties": {
280
+ "id": 2,
281
+ "order": 23,
282
+ "prevSize": 32,
283
+ "code": 58882,
284
+ "name": "users"
285
+ },
286
+ "setIdx": 3,
287
+ "setId": 1,
288
+ "iconIdx": 8
289
+ },
290
+ {
291
+ "icon": {
292
+ "paths": [
293
+ "M751.901 93.429c7.445 37.223 7.445 37.223 7.445 81.89 0 14.889-7.519 81.89-7.519 104.224 0 14.889 7.519 22.334 14.889 29.778 14.889 22.334 7.445 59.557 0 81.89 0 14.889-7.445 29.778-14.889 44.667-7.37 14.889-29.704 14.889-37.148 29.778-14.889 22.334-7.445 52.112-14.889 74.446-7.445 22.334-29.704 29.778-29.704 59.557 7.445 0 22.334 0 29.704 7.519 7.519 22.334 29.778 66.927 44.742 74.446 14.815 7.37 29.704 7.37 44.593 14.815 52.112 22.408 119.187 52.112 171.225 74.446 52.112 22.408 111.668 29.778 126.558 81.965 0 37.223 0 119.113 0 171.225h-1086.907c0-44.667 0-134.002 0-171.225 14.889-52.112 81.89-59.557 126.558-81.965 59.557-22.334 119.113-52.038 171.225-74.446 14.889-7.445 29.778-7.445 44.667-14.889 22.334-14.889 37.223-59.631 44.742-74.446l22.259-7.445c-7.445-29.778-22.334-29.778-29.778-52.112 0-29.704-7.445-59.557-7.445-89.335l-22.334-7.445c-14.889-14.889-14.889-89.335-22.334-119.113 0-14.889 14.889-22.334 14.889-52.112-29.704-156.336 14.889-223.337 89.335-245.671 52.112-22.334 148.891-59.557 230.782-7.445l22.334 22.334 37.223 7.445c14.889 7.445 29.778 37.223 29.778 37.223z"
294
+ ],
295
+ "attrs": [
296
+ {}
297
+ ],
298
+ "isMulticolor": false,
299
+ "width": 1087,
300
+ "defaultCode": 58883,
301
+ "grid": 0,
302
+ "tags": [
303
+ ""
304
+ ]
305
+ },
306
+ "attrs": [
307
+ {}
308
+ ],
309
+ "properties": {
310
+ "id": 3,
311
+ "order": 24,
312
+ "prevSize": 32,
313
+ "code": 58883,
314
+ "name": "user"
315
+ },
316
+ "setIdx": 3,
317
+ "setId": 1,
318
+ "iconIdx": 9
319
+ },
320
+ {
321
+ "icon": {
322
+ "paths": [
323
+ "M315.077 1024l315.077-393.846h-630.154l315.077 393.846zM315.077 0l-315.077 393.846h630.154l-315.077-393.846z"
324
+ ],
325
+ "attrs": [
326
+ {}
327
+ ],
328
+ "isMulticolor": false,
329
+ "width": 630,
330
+ "defaultCode": 58886,
331
+ "grid": 0,
332
+ "tags": [
333
+ ""
334
+ ]
335
+ },
336
+ "attrs": [
337
+ {}
338
+ ],
339
+ "properties": {
340
+ "id": 6,
341
+ "order": 27,
342
+ "prevSize": 32,
343
+ "code": 58886,
344
+ "name": "sort"
345
+ },
346
+ "setIdx": 3,
347
+ "setId": 1,
348
+ "iconIdx": 10
349
+ },
350
+ {
351
+ "icon": {
352
+ "paths": [
353
+ "M992.2 871.4l-242.4-206.2c-25-22.6-51.8-33-73.6-32 57.2-67 91.8-154 91.8-249.2 0-212-172-384-384-384s-384 172-384 384 172 384 384 384c95 0 182.2-34.6 249.2-91.8-1 21.6 9.4 48.4 32 73.6l206.2 242.6c35.4 39.2 93 42.6 128.2 7.4s32-93-7.4-128.4zM384 640c-141.4 0-256-114.6-256-256s114.6-256 256-256 256 114.6 256 256-114.6 256-256 256z"
354
+ ],
355
+ "attrs": [
356
+ {}
357
+ ],
358
+ "isMulticolor": false,
359
+ "defaultCode": 58888,
360
+ "grid": 0,
361
+ "tags": [
362
+ ""
363
+ ]
364
+ },
365
+ "attrs": [
366
+ {}
367
+ ],
368
+ "properties": {
369
+ "id": 8,
370
+ "order": 49,
371
+ "prevSize": 32,
372
+ "code": 58888,
373
+ "name": "search"
374
+ },
375
+ "setIdx": 3,
376
+ "setId": 1,
377
+ "iconIdx": 11
378
+ },
379
+ {
380
+ "icon": {
381
+ "paths": [
382
+ "M601.187 1024v-416.206h416.206v-191.587h-416.206v-416.206h-184.981v416.206h-416.206v184.981h416.206v416.206l184.981 6.606z"
383
+ ],
384
+ "attrs": [
385
+ {}
386
+ ],
387
+ "isMulticolor": false,
388
+ "width": 1017,
389
+ "defaultCode": 58889,
390
+ "grid": 0,
391
+ "tags": [
392
+ ""
393
+ ]
394
+ },
395
+ "attrs": [
396
+ {}
397
+ ],
398
+ "properties": {
399
+ "id": 9,
400
+ "order": 6,
401
+ "prevSize": 32,
402
+ "code": 58889,
403
+ "name": "plus"
404
+ },
405
+ "setIdx": 3,
406
+ "setId": 1,
407
+ "iconIdx": 12
408
+ },
409
+ {
410
+ "icon": {
411
+ "paths": [
412
+ "M1219.048 902.095h-1105.27v-788.317h585.143v-113.778h-698.921v1024h1332.825v-357.587h-113.778v235.683zM934.603 0l130.032 130.032-308.825 308.825 146.367 146.286 308.744-308.825 130.032 130.032v-406.349h-406.349z"
413
+ ],
414
+ "attrs": [
415
+ {}
416
+ ],
417
+ "isMulticolor": false,
418
+ "width": 1341,
419
+ "defaultCode": 58890,
420
+ "grid": 0,
421
+ "tags": [
422
+ ""
423
+ ]
424
+ },
425
+ "attrs": [
426
+ {}
427
+ ],
428
+ "properties": {
429
+ "id": 10,
430
+ "order": 39,
431
+ "prevSize": 32,
432
+ "code": 58890,
433
+ "name": "offlink"
434
+ },
435
+ "setIdx": 3,
436
+ "setId": 1,
437
+ "iconIdx": 13
438
+ },
439
+ {
440
+ "icon": {
441
+ "paths": [
442
+ "M0 1024h1347.368v-161.684h-1347.368v161.684zM0 592.842h1347.368v-161.684h-1347.368v161.684zM0 0v161.684h1347.368v-161.684h-1347.368z"
443
+ ],
444
+ "attrs": [
445
+ {}
446
+ ],
447
+ "isMulticolor": false,
448
+ "width": 1347,
449
+ "defaultCode": 58891,
450
+ "grid": 0,
451
+ "tags": [
452
+ ""
453
+ ]
454
+ },
455
+ "attrs": [
456
+ {}
457
+ ],
458
+ "properties": {
459
+ "id": 11,
460
+ "order": 40,
461
+ "prevSize": 32,
462
+ "code": 58891,
463
+ "name": "menu"
464
+ },
465
+ "setIdx": 3,
466
+ "setId": 1,
467
+ "iconIdx": 14
468
+ },
469
+ {
470
+ "icon": {
471
+ "paths": [
472
+ "M705.546 580.534v-136.999h-424.697v-212.349l-280.848 280.848 280.848 280.848v-212.349h424.697zM363.048 148.987l95.899 95.899c75.35-75.35 171.249-109.599 267.080-109.599 95.899 0 191.799 34.25 267.148 109.599v0c75.35 75.35 109.599 171.249 109.599 267.148s-34.25 191.799-109.599 267.148v0c-75.418 75.35-171.249 109.599-267.148 109.599-95.831 0-191.799-34.25-267.080-109.599l-95.899 95.899c198.649 198.58 527.447 198.58 726.095 0l47.95-54.868c150.699-198.58 136.999-486.347-47.95-671.296v0c-198.649-198.58-527.447-198.58-726.095 0.068z"
473
+ ],
474
+ "attrs": [
475
+ {}
476
+ ],
477
+ "isMulticolor": false,
478
+ "width": 1240,
479
+ "defaultCode": 58892,
480
+ "grid": 0,
481
+ "tags": [
482
+ ""
483
+ ]
484
+ },
485
+ "attrs": [
486
+ {}
487
+ ],
488
+ "properties": {
489
+ "id": 12,
490
+ "order": 41,
491
+ "prevSize": 32,
492
+ "code": 58892,
493
+ "name": "logout"
494
+ },
495
+ "setIdx": 3,
496
+ "setId": 1,
497
+ "iconIdx": 15
498
+ },
499
+ {
500
+ "icon": {
501
+ "paths": [
502
+ "M1024 136.533l-136.533-136.533-375.467 375.467-375.467-375.467-136.533 136.533 375.467 375.467-375.467 375.467 136.533 136.533 375.467-375.467 375.381 375.467 136.619-136.533-375.467-375.467 375.467-375.467z"
503
+ ],
504
+ "attrs": [
505
+ {}
506
+ ],
507
+ "isMulticolor": false,
508
+ "defaultCode": 58895,
509
+ "grid": 0,
510
+ "tags": [
511
+ ""
512
+ ]
513
+ },
514
+ "attrs": [
515
+ {}
516
+ ],
517
+ "properties": {
518
+ "id": 15,
519
+ "order": 44,
520
+ "prevSize": 32,
521
+ "code": 58895,
522
+ "name": "delete_x"
523
+ },
524
+ "setIdx": 3,
525
+ "setId": 1,
526
+ "iconIdx": 16
527
+ },
528
+ {
529
+ "icon": {
530
+ "paths": [
531
+ "M138.148 0l-138.148 138.148 373.812 373.812-373.812 373.812 138.148 138.148 520.086-520.086-520.086-503.833z"
532
+ ],
533
+ "attrs": [
534
+ {}
535
+ ],
536
+ "isMulticolor": false,
537
+ "width": 658,
538
+ "defaultCode": 58896,
539
+ "grid": 0,
540
+ "tags": [
541
+ ""
542
+ ]
543
+ },
544
+ "attrs": [
545
+ {}
546
+ ],
547
+ "properties": {
548
+ "id": 16,
549
+ "order": 28,
550
+ "prevSize": 32,
551
+ "code": 58896,
552
+ "name": "chevron_right"
553
+ },
554
+ "setIdx": 3,
555
+ "setId": 1,
556
+ "iconIdx": 17
557
+ },
558
+ {
559
+ "icon": {
560
+ "paths": [
561
+ "M520.127 1024l138.077-138.159-373.841-373.841 373.841-373.841-138.077-138.159-520.127 520.127 520.127 503.873z"
562
+ ],
563
+ "attrs": [
564
+ {}
565
+ ],
566
+ "isMulticolor": false,
567
+ "width": 658,
568
+ "defaultCode": 58897,
569
+ "grid": 0,
570
+ "tags": [
571
+ ""
572
+ ]
573
+ },
574
+ "attrs": [
575
+ {}
576
+ ],
577
+ "properties": {
578
+ "id": 17,
579
+ "order": 29,
580
+ "prevSize": 32,
581
+ "code": 58897,
582
+ "name": "chevron_left"
583
+ },
584
+ "setIdx": 3,
585
+ "setId": 1,
586
+ "iconIdx": 18
587
+ },
588
+ {
589
+ "icon": {
590
+ "paths": [
591
+ "M492.308 1024l-492.308-505.436 124.718-105.026 288.821 223.179c118.154-137.846 380.718-420.103 735.179-636.718l32.821 72.205c-328.205 308.513-603.897 735.179-689.231 951.795z"
592
+ ],
593
+ "attrs": [
594
+ {}
595
+ ],
596
+ "isMulticolor": false,
597
+ "width": 1182,
598
+ "defaultCode": 58898,
599
+ "grid": 0,
600
+ "tags": [
601
+ ""
602
+ ]
603
+ },
604
+ "attrs": [
605
+ {}
606
+ ],
607
+ "properties": {
608
+ "id": 18,
609
+ "order": 30,
610
+ "prevSize": 32,
611
+ "code": 58898,
612
+ "name": "check"
613
+ },
614
+ "setIdx": 3,
615
+ "setId": 1,
616
+ "iconIdx": 19
617
+ },
618
+ {
619
+ "icon": {
620
+ "paths": [
621
+ "M721.92 742.4h-107.52v107.52h107.52v-107.52zM573.44 455.68h-107.52v107.52h107.52v-107.52zM721.92 599.040h-107.52v107.52h107.52v-107.52zM721.92 455.68h-107.52v107.52h107.52v-107.52zM870.4 599.040h-107.52v107.52h107.52v-107.52zM256 245.76c25.6 0 46.080-20.48 46.080-46.080v-153.6c0-25.6-20.48-46.080-46.080-46.080s-46.080 20.48-46.080 46.080v158.72c0 20.48 20.48 40.96 46.080 40.96zM783.36 245.76c25.6 0 46.029-20.48 46.029-46.080v-153.6c0.051-25.6-20.429-46.080-46.029-46.080s-46.080 20.48-46.080 46.080v158.72c5.12 20.48 25.6 40.96 46.080 40.96zM870.4 455.68h-107.52v107.52h107.52v-107.52zM419.84 742.4h-107.52v107.52h107.52v-107.52zM271.36 742.4h-107.52v107.52h107.52v-107.52zM844.8 81.92v46.080c15.36 15.36 30.72 40.96 30.72 66.56 0 51.2-40.96 87.040-87.040 87.040s-87.040-40.96-87.040-87.040c0-25.6 10.24-51.2 30.771-66.56v-46.080h-419.891v46.080c20.429 15.36 30.72 40.96 30.72 66.56 0 51.2-40.96 87.040-87.040 87.040-51.2 0-87.040-40.96-87.040-87.040 0-25.6 10.189-51.2 30.72-66.56v-46.080h-199.68v942.080h1034.24v-942.080h-189.44zM936.96 931.84h-844.8v-588.8h844.8v588.8zM271.36 599.040h-107.52v107.52h107.52v-107.52zM419.84 599.040h-107.52v107.52h107.52v-107.52zM573.44 742.4h-107.52v107.52h107.52v-107.52zM419.84 455.68h-107.52v107.52h107.52v-107.52zM573.44 599.040h-107.52v107.52h107.52v-107.52zM271.36 455.68h-107.52v107.52h107.52v-107.52z"
622
+ ],
623
+ "attrs": [
624
+ {}
625
+ ],
626
+ "isMulticolor": false,
627
+ "width": 1034,
628
+ "defaultCode": 58899,
629
+ "grid": 0,
630
+ "tags": [
631
+ ""
632
+ ]
633
+ },
634
+ "attrs": [
635
+ {}
636
+ ],
637
+ "properties": {
638
+ "id": 19,
639
+ "order": 31,
640
+ "prevSize": 32,
641
+ "code": 58899,
642
+ "name": "calendar"
643
+ },
644
+ "setIdx": 3,
645
+ "setId": 1,
646
+ "iconIdx": 20
647
+ },
648
+ {
649
+ "icon": {
650
+ "paths": [
651
+ "M313.469 0l-303.020 386.612h616.49l-313.469-386.612zM313.469 1024l303.020-386.612h-616.49l313.469 386.612z"
652
+ ],
653
+ "attrs": [
654
+ {}
655
+ ],
656
+ "isMulticolor": false,
657
+ "width": 627,
658
+ "defaultCode": 58900,
659
+ "grid": 0,
660
+ "tags": [
661
+ ""
662
+ ]
663
+ },
664
+ "attrs": [
665
+ {}
666
+ ],
667
+ "properties": {
668
+ "id": 20,
669
+ "order": 32,
670
+ "prevSize": 32,
671
+ "code": 58900,
672
+ "name": "pulldown"
673
+ },
674
+ "setIdx": 3,
675
+ "setId": 1,
676
+ "iconIdx": 21
677
+ },
678
+ {
679
+ "icon": {
680
+ "paths": [
681
+ "M812.138 0l-812.138 1024h1624.276l-812.138-1024z"
682
+ ],
683
+ "attrs": [
684
+ {}
685
+ ],
686
+ "isMulticolor": false,
687
+ "width": 1624,
688
+ "defaultCode": 58901,
689
+ "grid": 0,
690
+ "tags": [
691
+ ""
692
+ ]
693
+ },
694
+ "attrs": [
695
+ {}
696
+ ],
697
+ "properties": {
698
+ "id": 21,
699
+ "order": 33,
700
+ "prevSize": 32,
701
+ "code": 58901,
702
+ "name": "arrow_up"
703
+ },
704
+ "setIdx": 3,
705
+ "setId": 1,
706
+ "iconIdx": 22
707
+ },
708
+ {
709
+ "icon": {
710
+ "paths": [
711
+ "M239.657 119.406c0 65.975-53.673 119.406-119.829 119.406s-119.829-53.492-119.829-119.406 53.673-119.406 119.829-119.406 119.829 53.431 119.829 119.406zM239.657 512c0 65.975-53.673 119.406-119.829 119.406s-119.829-53.492-119.829-119.406 53.673-119.406 119.829-119.406 119.829 53.431 119.829 119.406zM239.657 904.594c0 65.975-53.673 119.406-119.829 119.406s-119.829-53.492-119.829-119.406c0-66.096 53.673-119.527 119.829-119.527s119.829 53.431 119.829 119.527z"
712
+ ],
713
+ "attrs": [
714
+ {}
715
+ ],
716
+ "isMulticolor": false,
717
+ "width": 240,
718
+ "defaultCode": 58902,
719
+ "grid": 0,
720
+ "tags": [
721
+ ""
722
+ ]
723
+ },
724
+ "attrs": [
725
+ {}
726
+ ],
727
+ "properties": {
728
+ "id": 22,
729
+ "order": 34,
730
+ "prevSize": 32,
731
+ "code": 58902,
732
+ "name": "handle"
733
+ },
734
+ "setIdx": 3,
735
+ "setId": 1,
736
+ "iconIdx": 23
737
+ },
738
+ {
739
+ "icon": {
740
+ "paths": [
741
+ "M585.112 0l-585.185 1024h1170.369l-585.185-1024zM644.142 899.502h-123.62v-121.206h123.62v121.206zM613.566 728.335h-61.664l-34.38-288.277v-156.829h129.545v156.756l-33.502 288.35z"
742
+ ],
743
+ "attrs": [
744
+ {}
745
+ ],
746
+ "isMulticolor": false,
747
+ "width": 1170,
748
+ "defaultCode": 58903,
749
+ "grid": 0,
750
+ "tags": [
751
+ ""
752
+ ]
753
+ },
754
+ "attrs": [
755
+ {}
756
+ ],
757
+ "properties": {
758
+ "id": 23,
759
+ "order": 35,
760
+ "prevSize": 32,
761
+ "code": 58903,
762
+ "name": "alert"
763
+ },
764
+ "setIdx": 3,
765
+ "setId": 1,
766
+ "iconIdx": 24
767
+ },
768
+ {
769
+ "icon": {
770
+ "paths": [
771
+ "M1048.137 749.568l-481.573-382.391-467.456 382.391-99.109-99.109 566.565-467.456 566.565 467.456-84.992 99.109z"
772
+ ],
773
+ "attrs": [
774
+ {}
775
+ ],
776
+ "isMulticolor": false,
777
+ "width": 1170,
778
+ "defaultCode": 58904,
779
+ "grid": 0,
780
+ "tags": [
781
+ ""
782
+ ]
783
+ },
784
+ "attrs": [
785
+ {}
786
+ ],
787
+ "properties": {
788
+ "id": 24,
789
+ "order": 36,
790
+ "prevSize": 32,
791
+ "code": 58904,
792
+ "name": "chevron_up"
793
+ },
794
+ "setIdx": 3,
795
+ "setId": 1,
796
+ "iconIdx": 25
797
+ },
798
+ {
799
+ "icon": {
800
+ "paths": [
801
+ "M89.015 297.984l496.128 394.167 481.646-394.167 102.034 101.961-583.68 482.523-583.68-481.792 87.552-102.693z"
802
+ ],
803
+ "attrs": [
804
+ {}
805
+ ],
806
+ "isMulticolor": false,
807
+ "width": 1170,
808
+ "defaultCode": 58905,
809
+ "grid": 0,
810
+ "tags": [
811
+ ""
812
+ ]
813
+ },
814
+ "attrs": [
815
+ {}
816
+ ],
817
+ "properties": {
818
+ "id": 25,
819
+ "order": 38,
820
+ "prevSize": 32,
821
+ "code": 58905,
822
+ "name": "chevron_down"
823
+ },
824
+ "setIdx": 3,
825
+ "setId": 1,
826
+ "iconIdx": 26
827
+ },
828
+ {
829
+ "icon": {
830
+ "paths": [
831
+ "M733.143 309.143l-202.857 202.857 202.857 202.857 82.286-82.286q16.571-17.714 40-8 22.286 9.714 22.286 33.714v256q0 14.857-10.857 25.714t-25.714 10.857h-256q-24 0-33.714-22.857-9.714-22.286 8-39.429l82.286-82.286-202.857-202.857-202.857 202.857 82.286 82.286q17.714 17.143 8 39.429-9.714 22.857-33.714 22.857h-256q-14.857 0-25.714-10.857t-10.857-25.714v-256q0-24 22.857-33.714 22.286-9.714 39.429 8l82.286 82.286 202.857-202.857-202.857-202.857-82.286 82.286q-10.857 10.857-25.714 10.857-6.857 0-13.714-2.857-22.857-9.714-22.857-33.714v-256q0-14.857 10.857-25.714t25.714-10.857h256q24 0 33.714 22.857 9.714 22.286-8 39.429l-82.286 82.286 202.857 202.857 202.857-202.857-82.286-82.286q-17.714-17.143-8-39.429 9.714-22.857 33.714-22.857h256q14.857 0 25.714 10.857t10.857 25.714v256q0 24-22.286 33.714-7.429 2.857-14.286 2.857-14.857 0-25.714-10.857z"
832
+ ],
833
+ "width": 878,
834
+ "attrs": [],
835
+ "isMulticolor": false,
836
+ "tags": [
837
+ "arrows-alt"
838
+ ],
839
+ "grid": 14
840
+ },
841
+ "attrs": [],
842
+ "properties": {
843
+ "order": 1,
844
+ "id": 1590,
845
+ "prevSize": 32,
846
+ "code": 58910,
847
+ "name": "fullscreen"
848
+ },
849
+ "setIdx": 2,
850
+ "setId": 3,
851
+ "iconIdx": 0
852
+ },
853
+ {
854
+ "icon": {
855
+ "paths": [
856
+ "M402.286 717.714v137.143q0 9.143-6.857 16t-16 6.857h-137.143q-9.143 0-16-6.857t-6.857-16v-137.143q0-9.143 6.857-16t16-6.857h137.143q9.143 0 16 6.857t6.857 16zM582.857 374.857q0 30.857-8.857 57.714t-20 43.714-31.429 34-32.857 24.857-34.857 20.286q-23.429 13.143-39.143 37.143t-15.714 38.286q0 9.714-6.857 18.571t-16 8.857h-137.143q-8.571 0-14.571-10.571t-6-21.429v-25.714q0-47.429 37.143-89.429t81.714-62q33.714-15.429 48-32t14.286-43.429q0-24-26.571-42.286t-61.429-18.286q-37.143 0-61.714 16.571-20 14.286-61.143 65.714-7.429 9.143-17.714 9.143-6.857 0-14.286-4.571l-93.714-71.429q-7.429-5.714-8.857-14.286t3.143-16q91.429-152 265.143-152 45.714 0 92 17.714t83.429 47.429 60.571 72.857 23.429 90.571z"
857
+ ],
858
+ "width": 585,
859
+ "attrs": [],
860
+ "isMulticolor": false,
861
+ "tags": [
862
+ "question"
863
+ ],
864
+ "grid": 14
865
+ },
866
+ "attrs": [],
867
+ "properties": {
868
+ "order": 2,
869
+ "id": 1591,
870
+ "prevSize": 32,
871
+ "code": 58907,
872
+ "name": "question"
873
+ },
874
+ "setIdx": 2,
875
+ "setId": 3,
876
+ "iconIdx": 1
877
+ },
878
+ {
879
+ "icon": {
880
+ "paths": [
881
+ "M950.857 548.571q-86.857-134.857-217.714-201.714 34.857 59.429 34.857 128.571 0 105.714-75.143 180.857t-180.857 75.143-180.857-75.143-75.143-180.857q0-69.143 34.857-128.571-130.857 66.857-217.714 201.714 76 117.143 190.571 186.571t248.286 69.429 248.286-69.429 190.571-186.571zM539.429 329.143q0-11.429-8-19.429t-19.429-8q-71.429 0-122.571 51.143t-51.143 122.571q0 11.429 8 19.429t19.429 8 19.429-8 8-19.429q0-49.143 34.857-84t84-34.857q11.429 0 19.429-8t8-19.429zM1024 548.571q0 19.429-11.429 39.429-80 131.429-215.143 210.571t-285.429 79.143-285.429-79.429-215.143-210.286q-11.429-20-11.429-39.429t11.429-39.429q80-130.857 215.143-210.286t285.429-79.429 285.429 79.429 215.143 210.286q11.429 20 11.429 39.429z"
882
+ ],
883
+ "attrs": [],
884
+ "isMulticolor": false,
885
+ "tags": [
886
+ "eye"
887
+ ],
888
+ "grid": 14
889
+ },
890
+ "attrs": [],
891
+ "properties": {
892
+ "order": 3,
893
+ "id": 1592,
894
+ "prevSize": 32,
895
+ "code": 58908,
896
+ "name": "eye"
897
+ },
898
+ "setIdx": 2,
899
+ "setId": 3,
900
+ "iconIdx": 2
901
+ },
902
+ {
903
+ "icon": {
904
+ "paths": [
905
+ "M91.429 877.714h347.429v-658.286h-365.714v640q0 7.429 5.429 12.857t12.857 5.429zM877.714 859.429v-640h-365.714v658.286h347.429q7.429 0 12.857-5.429t5.429-12.857zM950.857 164.571v694.857q0 37.714-26.857 64.571t-64.571 26.857h-768q-37.714 0-64.571-26.857t-26.857-64.571v-694.857q0-37.714 26.857-64.571t64.571-26.857h768q37.714 0 64.571 26.857t26.857 64.571z"
906
+ ],
907
+ "width": 951,
908
+ "attrs": [],
909
+ "isMulticolor": false,
910
+ "tags": [
911
+ "columns"
912
+ ],
913
+ "grid": 14
914
+ },
915
+ "attrs": [],
916
+ "properties": {
917
+ "order": 4,
918
+ "id": 1593,
919
+ "prevSize": 32,
920
+ "code": 58909,
921
+ "name": "columns"
922
+ },
923
+ "setIdx": 2,
924
+ "setId": 3,
925
+ "iconIdx": 3
926
+ },
927
+ {
928
+ "icon": {
929
+ "paths": [
930
+ "M959.884 128c0.040 0.034 0.082 0.076 0.116 0.116v767.77c-0.034 0.040-0.076 0.082-0.116 0.116h-895.77c-0.040-0.034-0.082-0.076-0.114-0.116v-767.772c0.034-0.040 0.076-0.082 0.114-0.114h895.77zM960 64h-896c-35.2 0-64 28.8-64 64v768c0 35.2 28.8 64 64 64h896c35.2 0 64-28.8 64-64v-768c0-35.2-28.8-64-64-64v0z",
931
+ "M832 288c0 53.020-42.98 96-96 96s-96-42.98-96-96 42.98-96 96-96 96 42.98 96 96z",
932
+ "M896 832h-768v-128l224-384 256 320h64l224-192z"
933
+ ],
934
+ "attrs": [],
935
+ "isMulticolor": false,
936
+ "tags": [
937
+ "image",
938
+ "picture",
939
+ "photo",
940
+ "graphic"
941
+ ],
942
+ "defaultCode": 57388,
943
+ "grid": 16
944
+ },
945
+ "attrs": [],
946
+ "properties": {
947
+ "order": 7,
948
+ "id": 1589,
949
+ "prevSize": 32,
950
+ "code": 59661,
951
+ "ligatures": "image, picture",
952
+ "name": "image"
953
+ },
954
+ "setIdx": 2,
955
+ "setId": 3,
956
+ "iconIdx": 4
957
+ },
958
+ {
959
+ "icon": {
960
+ "paths": [
961
+ "M896 0h-896v1024h1024v-896l-128-128zM512 128h128v256h-128v-256zM896 896h-768v-768h64v320h576v-320h74.978l53.022 53.018v714.982z"
962
+ ],
963
+ "attrs": [],
964
+ "isMulticolor": false,
965
+ "tags": [
966
+ "floppy-disk",
967
+ "save"
968
+ ],
969
+ "defaultCode": 57652,
970
+ "grid": 16
971
+ },
972
+ "attrs": [],
973
+ "properties": {
974
+ "id": 376,
975
+ "order": 8,
976
+ "prevSize": 32,
977
+ "code": 59746,
978
+ "ligatures": "floppy-disk, save2",
979
+ "name": "save"
980
+ },
981
+ "setIdx": 2,
982
+ "setId": 3,
983
+ "iconIdx": 5
984
+ },
985
+ {
986
+ "icon": {
987
+ "paths": [
988
+ "M225 448c123.712 0 224 100.29 224 224 0 123.712-100.288 224-224 224s-224-100.288-224-224l-1-32c0-247.424 200.576-448 448-448v128c-85.474 0-165.834 33.286-226.274 93.726-11.634 11.636-22.252 24.016-31.83 37.020 11.438-1.8 23.16-2.746 35.104-2.746zM801 448c123.71 0 224 100.29 224 224 0 123.712-100.29 224-224 224s-224-100.288-224-224l-1-32c0-247.424 200.576-448 448-448v128c-85.474 0-165.834 33.286-226.274 93.726-11.636 11.636-22.254 24.016-31.832 37.020 11.44-1.8 23.16-2.746 35.106-2.746z"
989
+ ],
990
+ "attrs": [],
991
+ "isMulticolor": false,
992
+ "tags": [
993
+ "quotes-left",
994
+ "ldquo"
995
+ ],
996
+ "defaultCode": 57759,
997
+ "grid": 16
998
+ },
999
+ "attrs": [],
1000
+ "properties": {
1001
+ "id": 502,
1002
+ "order": 9,
1003
+ "prevSize": 32,
1004
+ "code": 59767,
1005
+ "ligatures": "quotes-left, ldquo",
1006
+ "name": "quote"
1007
+ },
1008
+ "setIdx": 2,
1009
+ "setId": 3,
1010
+ "iconIdx": 6
1011
+ },
1012
+ {
1013
+ "icon": {
1014
+ "paths": [
1015
+ "M992.262 871.396l-242.552-206.294c-25.074-22.566-51.89-32.926-73.552-31.926 57.256-67.068 91.842-154.078 91.842-249.176 0-212.078-171.922-384-384-384-212.076 0-384 171.922-384 384s171.922 384 384 384c95.098 0 182.108-34.586 249.176-91.844-1 21.662 9.36 48.478 31.926 73.552l206.294 242.552c35.322 39.246 93.022 42.554 128.22 7.356s31.892-92.898-7.354-128.22zM384 640c-141.384 0-256-114.616-256-256s114.616-256 256-256 256 114.616 256 256-114.614 256-256 256z"
1016
+ ],
1017
+ "attrs": [],
1018
+ "isMulticolor": false,
1019
+ "tags": [
1020
+ "search",
1021
+ "magnifier",
1022
+ "magnifying-glass",
1023
+ "inspect",
1024
+ "find"
1025
+ ],
1026
+ "defaultCode": 57786,
1027
+ "grid": 16
1028
+ },
1029
+ "attrs": [],
1030
+ "properties": {
1031
+ "id": 532,
1032
+ "order": 10,
1033
+ "prevSize": 32,
1034
+ "code": 59782,
1035
+ "ligatures": "search, magnifier",
1036
+ "name": "search2"
1037
+ },
1038
+ "setIdx": 2,
1039
+ "setId": 3,
1040
+ "iconIdx": 7
1041
+ },
1042
+ {
1043
+ "icon": {
1044
+ "paths": [
1045
+ "M384 832h640v128h-640zM384 448h640v128h-640zM384 64h640v128h-640zM192 0v256h-64v-192h-64v-64zM128 526v50h128v64h-192v-146l128-60v-50h-128v-64h192v146zM256 704v320h-192v-64h128v-64h-128v-64h128v-64h-128v-64z"
1046
+ ],
1047
+ "attrs": [],
1048
+ "isMulticolor": false,
1049
+ "tags": [
1050
+ "list-numbered",
1051
+ "options"
1052
+ ],
1053
+ "defaultCode": 58012,
1054
+ "grid": 16
1055
+ },
1056
+ "attrs": [],
1057
+ "properties": {
1058
+ "id": 758,
1059
+ "order": 11,
1060
+ "prevSize": 32,
1061
+ "code": 59833,
1062
+ "ligatures": "list-numbered, options",
1063
+ "name": "list-ol"
1064
+ },
1065
+ "setIdx": 2,
1066
+ "setId": 3,
1067
+ "iconIdx": 8
1068
+ },
1069
+ {
1070
+ "icon": {
1071
+ "paths": [
1072
+ "M0 0h256v256h-256zM384 64h640v128h-640zM0 384h256v256h-256zM384 448h640v128h-640zM0 768h256v256h-256zM384 832h640v128h-640z"
1073
+ ],
1074
+ "attrs": [],
1075
+ "isMulticolor": false,
1076
+ "tags": [
1077
+ "list",
1078
+ "todo",
1079
+ "bullet",
1080
+ "menu",
1081
+ "options"
1082
+ ],
1083
+ "defaultCode": 58009,
1084
+ "grid": 16
1085
+ },
1086
+ "attrs": [],
1087
+ "properties": {
1088
+ "id": 755,
1089
+ "order": 12,
1090
+ "prevSize": 32,
1091
+ "code": 59834,
1092
+ "ligatures": "list, todo",
1093
+ "name": "list-ul"
1094
+ },
1095
+ "setIdx": 2,
1096
+ "setId": 3,
1097
+ "iconIdx": 9
1098
+ },
1099
+ {
1100
+ "icon": {
1101
+ "paths": [
1102
+ "M440.236 635.766c-13.31 0-26.616-5.076-36.77-15.23-95.134-95.136-95.134-249.934 0-345.070l192-192c46.088-46.086 107.36-71.466 172.534-71.466s126.448 25.38 172.536 71.464c95.132 95.136 95.132 249.934 0 345.070l-87.766 87.766c-20.308 20.308-53.23 20.308-73.54 0-20.306-20.306-20.306-53.232 0-73.54l87.766-87.766c54.584-54.586 54.584-143.404 0-197.99-26.442-26.442-61.6-41.004-98.996-41.004s-72.552 14.562-98.996 41.006l-192 191.998c-54.586 54.586-54.586 143.406 0 197.992 20.308 20.306 20.306 53.232 0 73.54-10.15 10.152-23.462 15.23-36.768 15.23z",
1103
+ "M256 1012c-65.176 0-126.45-25.38-172.534-71.464-95.134-95.136-95.134-249.934 0-345.070l87.764-87.764c20.308-20.306 53.234-20.306 73.54 0 20.308 20.306 20.308 53.232 0 73.54l-87.764 87.764c-54.586 54.586-54.586 143.406 0 197.992 26.44 26.44 61.598 41.002 98.994 41.002s72.552-14.562 98.998-41.006l192-191.998c54.584-54.586 54.584-143.406 0-197.992-20.308-20.308-20.306-53.232 0-73.54 20.306-20.306 53.232-20.306 73.54 0.002 95.132 95.134 95.132 249.932 0.002 345.068l-192.002 192c-46.090 46.088-107.364 71.466-172.538 71.466z"
1104
+ ],
1105
+ "attrs": [],
1106
+ "isMulticolor": false,
1107
+ "tags": [
1108
+ "link",
1109
+ "chain",
1110
+ "url",
1111
+ "uri",
1112
+ "anchor"
1113
+ ],
1114
+ "defaultCode": 58061,
1115
+ "grid": 16
1116
+ },
1117
+ "attrs": [],
1118
+ "properties": {
1119
+ "order": 13,
1120
+ "id": 1557,
1121
+ "prevSize": 32,
1122
+ "code": 59851,
1123
+ "ligatures": "link, chain",
1124
+ "name": "link"
1125
+ },
1126
+ "setIdx": 2,
1127
+ "setId": 3,
1128
+ "iconIdx": 10
1129
+ },
1130
+ {
1131
+ "icon": {
1132
+ "paths": [
1133
+ "M0 416v192c0 17.672 14.328 32 32 32h960c17.672 0 32-14.328 32-32v-192c0-17.672-14.328-32-32-32h-960c-17.672 0-32 14.328-32 32z"
1134
+ ],
1135
+ "attrs": [],
1136
+ "isMulticolor": false,
1137
+ "tags": [
1138
+ "minus",
1139
+ "subtract",
1140
+ "minimize",
1141
+ "line"
1142
+ ],
1143
+ "defaultCode": 58229,
1144
+ "grid": 16
1145
+ },
1146
+ "attrs": [],
1147
+ "properties": {
1148
+ "id": 985,
1149
+ "order": 14,
1150
+ "prevSize": 32,
1151
+ "code": 59915,
1152
+ "ligatures": "minus, subtract",
1153
+ "name": "minus"
1154
+ },
1155
+ "setIdx": 2,
1156
+ "setId": 3,
1157
+ "iconIdx": 11
1158
+ },
1159
+ {
1160
+ "icon": {
1161
+ "paths": [
1162
+ "M64 512h384v128h-128v384h-128v-384h-128zM960 256h-251.75v768h-136.5v-768h-251.75v-128h640z"
1163
+ ],
1164
+ "attrs": [],
1165
+ "isMulticolor": false,
1166
+ "tags": [
1167
+ "font-size",
1168
+ "wysiwyg"
1169
+ ],
1170
+ "defaultCode": 58451,
1171
+ "grid": 16
1172
+ },
1173
+ "attrs": [],
1174
+ "properties": {
1175
+ "id": 1226,
1176
+ "order": 15,
1177
+ "prevSize": 32,
1178
+ "code": 60001,
1179
+ "ligatures": "font-size, wysiwyg3",
1180
+ "name": "font"
1181
+ },
1182
+ "setIdx": 2,
1183
+ "setId": 3,
1184
+ "iconIdx": 12
1185
+ },
1186
+ {
1187
+ "icon": {
1188
+ "paths": [
1189
+ "M707.88 484.652c37.498-44.542 60.12-102.008 60.12-164.652 0-141.16-114.842-256-256-256h-320v896h384c141.158 0 256-114.842 256-256 0-92.956-49.798-174.496-124.12-219.348zM384 192h101.5c55.968 0 101.5 57.42 101.5 128s-45.532 128-101.5 128h-101.5v-256zM543 832h-159v-256h159c58.45 0 106 57.42 106 128s-47.55 128-106 128z"
1190
+ ],
1191
+ "attrs": [],
1192
+ "isMulticolor": false,
1193
+ "tags": [
1194
+ "bold",
1195
+ "wysiwyg"
1196
+ ],
1197
+ "defaultCode": 58452,
1198
+ "grid": 16
1199
+ },
1200
+ "attrs": [],
1201
+ "properties": {
1202
+ "id": 1227,
1203
+ "order": 16,
1204
+ "prevSize": 32,
1205
+ "code": 60002,
1206
+ "ligatures": "bold, wysiwyg4",
1207
+ "name": "bold"
1208
+ },
1209
+ "setIdx": 2,
1210
+ "setId": 3,
1211
+ "iconIdx": 13
1212
+ },
1213
+ {
1214
+ "icon": {
1215
+ "paths": [
1216
+ "M704 64h128v416c0 159.058-143.268 288-320 288-176.73 0-320-128.942-320-288v-416h128v416c0 40.166 18.238 78.704 51.354 108.506 36.896 33.204 86.846 51.494 140.646 51.494s103.75-18.29 140.646-51.494c33.116-29.802 51.354-68.34 51.354-108.506v-416zM192 832h640v128h-640z"
1217
+ ],
1218
+ "attrs": [],
1219
+ "isMulticolor": false,
1220
+ "tags": [
1221
+ "underline",
1222
+ "wysiwyg"
1223
+ ],
1224
+ "defaultCode": 58453,
1225
+ "grid": 16
1226
+ },
1227
+ "attrs": [],
1228
+ "properties": {
1229
+ "id": 1228,
1230
+ "order": 17,
1231
+ "prevSize": 32,
1232
+ "code": 60003,
1233
+ "ligatures": "underline, wysiwyg5",
1234
+ "name": "underline"
1235
+ },
1236
+ "setIdx": 2,
1237
+ "setId": 3,
1238
+ "iconIdx": 14
1239
+ },
1240
+ {
1241
+ "icon": {
1242
+ "paths": [
1243
+ "M896 64v64h-128l-320 768h128v64h-448v-64h128l320-768h-128v-64z"
1244
+ ],
1245
+ "attrs": [],
1246
+ "isMulticolor": false,
1247
+ "tags": [
1248
+ "italic",
1249
+ "wysiwyg"
1250
+ ],
1251
+ "defaultCode": 58454,
1252
+ "grid": 16
1253
+ },
1254
+ "attrs": [],
1255
+ "properties": {
1256
+ "id": 1229,
1257
+ "order": 18,
1258
+ "prevSize": 32,
1259
+ "code": 60004,
1260
+ "ligatures": "italic, wysiwyg6",
1261
+ "name": "italic"
1262
+ },
1263
+ "setIdx": 2,
1264
+ "setId": 3,
1265
+ "iconIdx": 15
1266
+ },
1267
+ {
1268
+ "icon": {
1269
+ "paths": [
1270
+ "M832 736l96 96 320-320-320-320-96 96 224 224z",
1271
+ "M448 288l-96-96-320 320 320 320 96-96-224-224z",
1272
+ "M701.298 150.519l69.468 18.944-191.987 704.026-69.468-18.944 191.987-704.026z"
1273
+ ],
1274
+ "width": 1280,
1275
+ "attrs": [],
1276
+ "isMulticolor": false,
1277
+ "tags": [
1278
+ "embed",
1279
+ "code",
1280
+ "html",
1281
+ "xml"
1282
+ ],
1283
+ "defaultCode": 58496,
1284
+ "grid": 16
1285
+ },
1286
+ "attrs": [],
1287
+ "properties": {
1288
+ "id": 1272,
1289
+ "order": 19,
1290
+ "prevSize": 32,
1291
+ "code": 60032,
1292
+ "ligatures": "embed2, code2",
1293
+ "name": "code"
1294
+ },
1295
+ "setIdx": 2,
1296
+ "setId": 3,
1297
+ "iconIdx": 16
1298
+ }
1299
+ ],
1300
+ "height": 1024,
1301
+ "metadata": {
1302
+ "name": "icons"
1303
+ },
1304
+ "preferences": {
1305
+ "showGlyphs": true,
1306
+ "showQuickUse": true,
1307
+ "showQuickUse2": true,
1308
+ "showSVGs": true,
1309
+ "fontPref": {
1310
+ "prefix": "icon-",
1311
+ "metadata": {
1312
+ "fontFamily": "icons",
1313
+ "majorVersion": 1,
1314
+ "minorVersion": 0
1315
+ },
1316
+ "metrics": {
1317
+ "emSize": 1024,
1318
+ "baseline": 6.25,
1319
+ "whitespace": 50
1320
+ },
1321
+ "embed": false
1322
+ },
1323
+ "imagePref": {
1324
+ "prefix": "icon-",
1325
+ "png": true,
1326
+ "useClassSelector": true,
1327
+ "color": 4473924,
1328
+ "bgColor": 16777215
1329
+ },
1330
+ "historySize": 100,
1331
+ "gridSize": 16,
1332
+ "showCodes": true
1333
+ }
1334
+ }