bullet_train 1.3.1 → 1.3.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3e8839a83798a6b0f6cb390b45cf7b32b2d332b23474472d296d4d5d56182074
4
- data.tar.gz: 5a37fae85e7079df274dc18d398dcdbedc4a8e1c316dfd701b2fec8e4f7ec844
3
+ metadata.gz: 15b2e81f913961c47cd7ab675ed1ec307f556f12343c0b1f86f570ef28795d87
4
+ data.tar.gz: e0dc0683ceac645f273ae98d2ef681043595107cbed257d07a78954593a3b5bd
5
5
  SHA512:
6
- metadata.gz: b2f84890b0ec4c6cb993f0dc08e0487ed48b787761a9e5130a6f9d8203e4e6e86459a4f06f2aa19bcf28813b5ec7efbe3f7366decda3334eccd6e09b25092532
7
- data.tar.gz: c67cd314e9e323b09523b2babb42fdd0068de0544e6ac84fde651d89e8db7a678de33f58f88d0e23467972c1d768fad5bb9a7435b967f46dc3b8961d19ab12a4
6
+ metadata.gz: 93097fb9f2d180ed40e8b880f19a319c433eb87ad22a15319407c89fee24ce4e838a09af54fccc2fef4fb727e972600d5b2fede3759856d24dbf2269f0ff3af8
7
+ data.tar.gz: 5751619c7a2dd1616e5c2898c4ca292f1d4a90402f920c26de3a903240e9f0d14bc53f4ff4494744243ff11fcbd2fa01c4add6d32b18c63fa5a0dfaacc371339
@@ -54,4 +54,17 @@ module Account::DatesHelper
54
54
  def local_time(timestamp)
55
55
  timestamp&.in_time_zone(current_user.time_zone)
56
56
  end
57
+
58
+ def am_pm?
59
+ !"#{I18n.t("time.am", fallback: false, default: "")}#{I18n.t("time.pm", fallback: false, default: "")}".empty?
60
+ end
61
+
62
+ def time_zone_name_to_id
63
+ ActiveSupport::TimeZone.all.map { |tz| {tz.name.to_s => tz.tzinfo.name} }.reduce({}, :merge)
64
+ end
65
+
66
+ def current_time_zone
67
+ current_time_zone_name = current_user&.time_zone || current_user&.current_team&.time_zone || "UTC"
68
+ ActiveSupport::TimeZone.find_tzinfo(current_time_zone_name).name
69
+ end
57
70
  end
@@ -0,0 +1,38 @@
1
+ en:
2
+ daterangepicker:
3
+ firstDay: 1
4
+ separator: " - "
5
+ applyLabel: "Apply"
6
+ cancelLabel: "Cancel"
7
+ fromLabel: "From"
8
+ toLabel: "To"
9
+ customRangeLabel: "Custom"
10
+ weekLabel: "W"
11
+ daysOfWeek:
12
+ - "Su"
13
+ - "Mo"
14
+ - "Tu"
15
+ - "We"
16
+ - "Th"
17
+ - "Fr"
18
+ - "Sa"
19
+ monthNames:
20
+ - "January"
21
+ - "February"
22
+ - "March"
23
+ - "April"
24
+ - "May"
25
+ - "June"
26
+ - "July"
27
+ - "August"
28
+ - "September"
29
+ - "October"
30
+ - "November"
31
+ - "December"
32
+ date_range_controller:
33
+ today: Today
34
+ yesterday: yesterday
35
+ last7Days: Last 7 Days
36
+ last30Days: Last 30 Days
37
+ thisMonth: This Month
38
+ lastMonth: Last Month
@@ -0,0 +1,13 @@
1
+ en:
2
+ date:
3
+ formats:
4
+ date_field: "%m/%d/%Y"
5
+ date_and_time_field: "%m/%d/%Y %l:%M %p"
6
+ date_controller: "MM/DD/YYYY"
7
+ time:
8
+ am: AM
9
+ pm: PM
10
+ formats:
11
+ date_field: "%m/%d/%Y"
12
+ date_and_time_field: "%m/%d/%Y %l:%M %p"
13
+ date_controller: "MM/DD/YYYY h:mm A"
@@ -118,8 +118,8 @@ Certain form field partials like `buttons` and `super_select` can also have thei
118
118
  | [`buttons`](/docs/field-partials/buttons.md) | `string` | Optionally | `assign_checkboxes` | | |
119
119
  | `cloudinary_image` | `string` | | | | |
120
120
  | `color_picker` | `string` | | | [pickr](https://simonwep.github.io/pickr/) | |
121
- | `date_and_time_field` | `datetime` | | `assign_date_and_time` | [Date Range Picker](https://www.daterangepicker.com) | |
122
- | `date_field` | `date` | | `assign_date` | [Date Range Picker](https://www.daterangepicker.com) | |
121
+ | `date_and_time_field` | `datetime` | | | [Date Range Picker](https://www.daterangepicker.com) | |
122
+ | `date_field` | `date` | | | [Date Range Picker](https://www.daterangepicker.com) | |
123
123
  | `email_field` | `string` | | | | |
124
124
  | `emoji_field` | `string` | | | [Emoji Mart](https://missiveapp.com/open/emoji-mart) | A front-end library which allows users to browse and select emojis with ease. | |
125
125
  | [`file_field`](/docs/field-partials/file-field.md) | `attachment` | | | [Active Storage](https://edgeguides.rubyonrails.org/active_storage_overview.html) | |
@@ -1,3 +1,3 @@
1
1
  module BulletTrain
2
- VERSION = "1.3.1"
2
+ VERSION = "1.3.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bullet_train
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver
@@ -640,8 +640,10 @@ files:
640
640
  - config/locales/en/onboarding/user_details.en.yml
641
641
  - config/locales/en/onboarding/user_email.en.yml
642
642
  - config/locales/en/roles.en.yml
643
+ - config/locales/en/stimulus.yml
643
644
  - config/locales/en/teams.en.yml
644
645
  - config/locales/en/users.en.yml
646
+ - config/locales/localization.en.yml
645
647
  - config/routes.rb
646
648
  - db/migrate/20161115160419_devise_create_users.rb
647
649
  - db/migrate/20161116003852_add_api_key_to_user.rb