thecore_ui_commons 2.1.5 → 2.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/config/trix/LICENSE +20 -0
- data/app/assets/config/trix/README.md +395 -0
- data/app/assets/config/trix/dist/trix-core.js +12 -0
- data/app/assets/config/trix/dist/trix.css +374 -0
- data/app/assets/config/trix/dist/trix.js +21 -0
- data/app/assets/config/trix/package.json +29 -0
- data/app/assets/images/android-chrome-192x192.png +0 -0
- data/app/assets/images/android-chrome-512x512.png +0 -0
- data/app/assets/images/apple-touch-icon.png +0 -0
- data/app/assets/images/favicon-16x16.png +0 -0
- data/app/assets/images/favicon-32x32.png +0 -0
- data/app/assets/images/favicon.ico +0 -0
- data/app/assets/images/logo.png +0 -0
- data/app/assets/images/mstile-150x150.png +0 -0
- data/app/assets/images/safari-pinned-tab.svg +1042 -0
- data/app/assets/images/up-arrow.png +0 -0
- data/app/assets/javascripts/browserconfig.xml +9 -0
- data/app/assets/javascripts/ie.js +19 -0
- data/app/assets/javascripts/manifest.json +20 -0
- data/app/assets/javascripts/pages.coffee +3 -0
- data/app/assets/javascripts/thecore.js +20 -0
- data/app/assets/javascripts/timer.js +135 -0
- data/app/assets/stylesheets/{thecore_ui_commons/actiontext.scss → actiontext.scss} +19 -20
- data/app/assets/stylesheets/thecore.scss +18 -0
- data/app/views/contact_mailer/contact_message.html.erb +5 -0
- data/app/views/devise/confirmations/new.html.erb +16 -0
- data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/devise/mailer/password_change.html.erb +5 -0
- data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/devise/menu/_login_items.html.erb +7 -0
- data/app/views/devise/passwords/edit.html.erb +25 -0
- data/app/views/devise/passwords/new.html.erb +18 -0
- data/app/views/devise/registrations/edit.html.erb +45 -0
- data/app/views/devise/registrations/new.html.erb +29 -0
- data/app/views/devise/sessions/new.html.erb +28 -0
- data/app/views/devise/shared/_links.html.erb +25 -0
- data/app/views/devise/unlocks/new.html.erb +16 -0
- data/app/views/kaminari/_first_page.html.erb +3 -0
- data/app/views/kaminari/_gap.html.erb +3 -0
- data/app/views/kaminari/_last_page.html.erb +3 -0
- data/app/views/kaminari/_next_page.html.erb +3 -0
- data/app/views/kaminari/_page.html.erb +9 -0
- data/app/views/kaminari/_paginator.html.erb +15 -0
- data/app/views/kaminari/_prev_page.html.erb +3 -0
- data/app/views/layouts/_footer.html.erb +3 -0
- data/app/views/layouts/_messages.html.erb +9 -0
- data/app/views/layouts/_navigation.html.erb +20 -0
- data/app/views/layouts/_navigation_links.html.erb +7 -0
- data/app/views/layouts/mailer.html.erb +6 -0
- data/app/views/layouts/mailer.text.erb +1 -0
- data/app/views/layouts/thecore.html.erb +42 -0
- data/app/views/shared/_flash.html.erb +10 -0
- data/config/initializers/thecore_ui_commons_application_config.rb +4 -3
- data/db/migrate/20200515070620_add_username_to_user.rb +11 -0
- data/db/migrate/20200515132932_add_rememberable_to_user.rb +5 -0
- data/lib/concerns/thecore_ui_commons_user.rb +10 -0
- data/lib/thecore_ui_commons/version.rb +1 -1
- data/lib/thecore_ui_commons.rb +4 -2
- metadata +58 -4
- data/app/controllers/pages_controller.rb +0 -43
@@ -0,0 +1,29 @@
|
|
1
|
+
{
|
2
|
+
"name": "trix",
|
3
|
+
"version": "1.2.3",
|
4
|
+
"description": "A rich text editor for everyday writing",
|
5
|
+
"main": "dist/trix.js",
|
6
|
+
"style": "dist/trix.css",
|
7
|
+
"files": [
|
8
|
+
"dist/*.css",
|
9
|
+
"dist/*.js"
|
10
|
+
],
|
11
|
+
"repository": {
|
12
|
+
"type": "git",
|
13
|
+
"url": "git+https://github.com/basecamp/trix.git"
|
14
|
+
},
|
15
|
+
"keywords": [
|
16
|
+
"rich text",
|
17
|
+
"wysiwyg",
|
18
|
+
"editor"
|
19
|
+
],
|
20
|
+
"author": "Basecamp, LLC",
|
21
|
+
"license": "MIT",
|
22
|
+
"bugs": {
|
23
|
+
"url": "https://github.com/basecamp/trix/issues"
|
24
|
+
},
|
25
|
+
"homepage": "https://trix-editor.org/",
|
26
|
+
"devDependencies": {
|
27
|
+
"svgo": "^0.6.1"
|
28
|
+
}
|
29
|
+
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|