bullet_train 1.3.1 → 1.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/helpers/account/dates_helper.rb +13 -0
- data/config/locales/en/stimulus.yml +38 -0
- data/config/locales/localization.en.yml +13 -0
- data/docs/field-partials.md +2 -2
- data/lib/bullet_train/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 322354d8926872e4be2cdf0b0a220219ebbc3a946d087e3c0036d3fa0dd0726c
|
4
|
+
data.tar.gz: e9cabeccfead9c769af71aa68f4a57199d52c93723fcaefe57139798bd2b8463
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c4bbc13f9ded407f4b7c63d95a1baf0909b801ab842b1ee3e65b4a1dfb8d656e08209748ce7fc0e1fcd939321d2efb8c21d93042378bf1051a757fb2f0e0044
|
7
|
+
data.tar.gz: ec5e4bd9270da5cb74cfbdbe3b21071ba017dc2bcaf8ea92f7fbad967a072670767445c52cb28da2c01b159687db9b8b0e95329db9e2b30c1b54d09843e82998
|
@@ -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"
|
data/docs/field-partials.md
CHANGED
@@ -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` | |
|
122
|
-
| `date_field` | `date` | |
|
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) | |
|
data/lib/bullet_train/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bullet_train
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Culver
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-08-
|
11
|
+
date: 2023-08-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: standard
|
@@ -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
|