playbook_ui 7.2.0 → 7.3.0.pre.alpha1

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: 923bb2a3586c197a5c26d22490b0de323332170dc657b22bd62e3d585a4ef853
4
- data.tar.gz: 4cd8de5c0c0eb75b29fef20d7d182bed50d6161a8fa29638e6f56de94520795c
3
+ metadata.gz: ca983cabd6299f4dfad9ce14371ab208cd0a4a07d33a96a982b1d8738fdab2fe
4
+ data.tar.gz: b595faf637896b674152d5d99447d68afb91167b73613a0968a4dc97bebef410
5
5
  SHA512:
6
- metadata.gz: 14c2b363c5544fd935d0ae869ef1c3d1aa5b6d353f6cde7dfab2ff58160253f6d3cc69e047da895746a7457bc84389542462d2f9e5510c02d014d02730be9fe6
7
- data.tar.gz: e92da77938a44999642573959a8c5236045bf9ca177e8eb7e52a4ee84391fbac05a2554a4ba2dc4fb0f67b506b2ae405f226d40394a65b0cba65f88c10798c9b
6
+ metadata.gz: 44ec7a1bbb7d5caac83eaff177c2901369d5ca0988443256ead755384181fb4dd93821ebba314e49cd777f543fa7f151ec7677913eb3ed7554297c49418770ff
7
+ data.tar.gz: da094e6d8c732361affbed9a1bc563afd9ce2a4a42d95206af73482a2db773ce488d93fb97efcaf0d0bf888bb271745f0b2491bab370156de11b1e83d2ec2162
@@ -16,7 +16,7 @@ module Playbook
16
16
  prop :subtitle
17
17
  prop :title
18
18
  prop :x_axis_categories, type: Playbook::Props::Array,
19
- default: []
19
+ default:[]
20
20
  prop :y_axis_min, type: Playbook::Props::Numeric
21
21
  prop :y_axis_max, type: Playbook::Props::Numeric
22
22
  prop :legend, type: Playbook::Props::Boolean,
@@ -32,7 +32,6 @@ module Playbook
32
32
  def chart_options
33
33
  {
34
34
  id: id,
35
- className: classname,
36
35
  chartData: chart_data,
37
36
  type: chart_type,
38
37
  title: title,
@@ -101,7 +101,7 @@ const CircleChart = (props: CircleChartProps) => {
101
101
  useEffect(() => {
102
102
  if (componentDidMount.current) {
103
103
  Highcharts.charts.forEach((chart) => {
104
- if (chart && chart.renderTo.id === id) {
104
+ if (chart.renderTo.id === id) {
105
105
  const updatedValueArray = chartData.map((obj) => {
106
106
  return obj.value
107
107
  })
@@ -1,14 +1,70 @@
1
1
  <%= content_tag(:div,
2
2
  id: object.id,
3
3
  data: object.data,
4
- class: object.classname) do %>
5
- <% if object.size == "lg" %>
6
- <%= pb_rails("title", props: { text: object.lg_date, size: 3 }) %>
7
- <% elsif object.size == "sm" %>
8
- <%= pb_rails("icon", props: { icon: "calendar", fixed_width: true }) %>
9
- <%= pb_rails("title", props: { tag: "span", text: object.sm_date, size: 4 }) %>
4
+ class: object.classname,
5
+ aria: object.aria) do %>
6
+
7
+ <% if object.size == "md" %>
8
+ <!-- icon -->
9
+ <% if object.show_icon %>
10
+ <%= pb_rails("body", props: {
11
+ color: "light",
12
+ tag: "div",
13
+ }) do %>
14
+ <%= pb_rails("icon", props: { icon: "calendar-alt", fixed_width: true }) %>
15
+ <% end %>
16
+ <% end %>
17
+
18
+ <!-- day_of_week -->
19
+ <% if object.show_day_of_week %>
20
+ <%= pb_rails("title", props: { tag: "div", text: object.day_of_week, size: 4 }) %>
21
+ <%= pb_rails("body", props: {
22
+ text: "•",
23
+ color: "light",
24
+ tag: "div",
25
+ }) %>
26
+ <% end %>
27
+
28
+ <!-- month day, year -->
29
+
30
+ <%# if not current year %>
31
+ <% if object.year.to_s == DateTime.now.year.to_s %>
32
+ <%= pb_rails("title", props: { tag: "div", text: "#{object.month} #{object.day}", size: 4 }) %>
33
+ <%# if is current year %>
10
34
  <% else %>
11
- <%= pb_rails("title", props: { text: object.xs_date, size: 4 }) %>
35
+ <%= pb_rails("title", props: { tag: "div", text: "#{object.month} #{object.day}, #{object.year}", size: 4 }) %>
36
+ <% end %>
37
+
38
+ <% else %>
39
+
40
+ <!-- icon -->
41
+ <% if object.show_icon %>
42
+ <%= pb_rails("body", props: {
43
+ color: "light",
44
+ tag: "div",
45
+ }) do %>
46
+ <%= pb_rails("icon", props: { icon: "calendar-alt", fixed_width: true }) %>
47
+ <% end %>
48
+ <% end %>
49
+
50
+ <!-- day_of_week -->
51
+ <% if object.show_day_of_week %>
52
+ <%= pb_rails("caption", props: { tag: "div", text: object.day_of_week }) %>
53
+ <%= pb_rails("caption", props: {
54
+ text: "•",
55
+ color: "light",
56
+ tag: "div",
57
+ }) %>
58
+ <% end %>
59
+
60
+ <!-- month day, year -->
61
+
62
+ <%# if not current year %>
63
+ <% if object.year.to_s == DateTime.now.year.to_s %>
64
+ <%= pb_rails("caption", props: { tag: "span", text: "#{object.month} #{object.day}" }) %>
65
+ <%# if is current year %>
66
+ <% else %>
67
+ <%= pb_rails("caption", props: { tag: "span", text: "#{object.month} #{object.day}, #{object.year}" }) %>
68
+ <% end %>
12
69
  <% end %>
13
70
  <% end %>
14
-
@@ -2,82 +2,131 @@
2
2
 
3
3
  import React from 'react'
4
4
  import DateTime from '../pb_kit/dateTime.js'
5
- import { Icon } from '../'
5
+ import { Body, Caption, Icon, Title } from '../'
6
6
  import classnames from 'classnames'
7
7
  import { globalProps } from '../utilities/globalProps.js'
8
+ import { buildAriaProps, buildCss, buildDataProps } from '../utilities/props'
8
9
 
9
- const defaultDateString = (value: DateTime) => {
10
- const weekday = value.toWeekday().toUpperCase()
11
- const month = value.toMonth().toUpperCase()
12
- const day = value.toDay()
13
-
14
- return `${weekday} · ${month} ${day}`
15
- }
16
-
17
- const largeDateString = (value: DateTime) => {
18
- const month = value.toMonth().toUpperCase()
19
- const day = value.toDay()
20
-
21
- return `${month} ${day}`
22
- }
23
-
24
- type DateSubcomponent = {
25
- value: DateTime,
10
+ type PbDateProps = {
11
+ alignment?: "left" | "center" | "right",
12
+ aria: Object,
13
+ className?: string,
14
+ data?: Object,
15
+ id?: string,
16
+ showDayOfWeek?: boolean,
17
+ showIcon?: boolean,
18
+ size?: string,
19
+ value: string | date,
26
20
  }
27
21
 
28
- const ExtraSmallDate = ({ value, ...props }: DateSubcomponent) => (
29
- <h3 className={classnames('pb_title_kit_4', globalProps(props))}>
30
- {defaultDateString(value)}
31
- </h3>
32
- )
33
-
34
- const SmallDate = ({ value, ...props }: DateSubcomponent) => (
35
- <h3 className={classnames('pb_title_kit_4', globalProps(props))}>
36
- <Icon
37
- fixedWidth
38
- icon="calendar"
39
- />
40
- {defaultDateString(value)}
41
- </h3>
42
- )
22
+ const PbDate = (props: PbDateProps) => {
23
+ const {
24
+ aria = {},
25
+ alignment = 'left',
26
+ className,
27
+ data = {},
28
+ id,
29
+ showDayOfWeek = false,
30
+ showIcon = false,
31
+ size = 'md',
32
+ value,
33
+ } = props
43
34
 
44
- const LargeDate = ({ value, ...props }: DateSubcomponent) => (
45
- <h3 className={classnames('pb_title_kit_3', globalProps(props))}>
46
- {largeDateString(value)}
47
- </h3>
48
- )
35
+ const dateTimestamp = new DateTime({ value: value })
36
+ const weekday = dateTimestamp.toWeekday()
37
+ const month = dateTimestamp.toMonth()
38
+ const day = dateTimestamp.toDay()
39
+ const year = dateTimestamp.toYear()
40
+ const currentYear = new Date().getFullYear().toString()
49
41
 
50
- type PbDateProps = {
51
- size?: "xs" | "sm" | "lg",
52
- value?: string,
53
- className?: string
54
- }
42
+ const ariaProps = buildAriaProps(aria)
43
+ const dataProps = buildDataProps(data)
55
44
 
56
- const PbDate = ({ size, value, className, ...props }: PbDateProps) => {
57
- const date = new DateTime({ value: value })
45
+ const classes = classnames(
46
+ buildCss('pb_date_kit', alignment),
47
+ globalProps(props),
48
+ className
49
+ )
58
50
 
59
- if (size == 'xs')
60
- return (
61
- <ExtraSmallDate
62
- {...props}
63
- className={className}
64
- value={date}
65
- />
66
- )
67
- if (size == 'lg')
68
- return (
69
- <LargeDate
70
- {...props}
71
- className={className}
72
- value={date}
73
- />
74
- )
75
51
  return (
76
- <SmallDate
77
- {...props}
78
- className={className}
79
- value={date}
80
- />
52
+ <div
53
+ {...ariaProps}
54
+ {...dataProps}
55
+ className={classes}
56
+ id={id}
57
+ >
58
+ <If condition={size == 'md' || size == 'lg'}>
59
+
60
+ <Title
61
+ size={4}
62
+ tag="h4"
63
+ >
64
+ <If condition={showIcon}>
65
+ <Body
66
+ className="pb_icon_kit_container"
67
+ color="light"
68
+ tag="span"
69
+ >
70
+ <Icon
71
+ fixedWidth
72
+ icon="calendar-alt"
73
+ />
74
+ </Body>
75
+ </If>
76
+ <If condition={showDayOfWeek}>
77
+ {weekday}
78
+ <Body
79
+ color="light"
80
+ tag="span"
81
+ text=" • "
82
+ />
83
+ </If>
84
+ <span>
85
+ {month}
86
+ {' '}
87
+ {day}
88
+ </span>
89
+ <If condition={currentYear != year}>
90
+ <span>
91
+ {`, ${year}`}
92
+ </span>
93
+ </If>
94
+ </Title>
95
+ <Else />
96
+ <>
97
+ <If condition={showIcon}>
98
+ <Body
99
+ className="pb_icon_kit_container"
100
+ color="light"
101
+ tag="span"
102
+ >
103
+ <Icon
104
+ fixedWidth
105
+ icon="calendar-alt"
106
+ />
107
+ </Body>
108
+ </If>
109
+ <If condition={showDayOfWeek}>
110
+ <Caption tag="div">
111
+ {weekday}
112
+ </Caption>
113
+ <Caption
114
+ color="light"
115
+ tag="div"
116
+ text=" • "
117
+ />
118
+ </If>
119
+ <Caption tag="span">
120
+ {month}
121
+ {' '}
122
+ {day}
123
+ <If condition={currentYear != year}>
124
+ {`, ${year}`}
125
+ </If>
126
+ </Caption>
127
+ </>
128
+ </If>
129
+ </div>
81
130
  )
82
131
  }
83
132
 
@@ -1,2 +1,32 @@
1
1
  @import "../pb_icon/icon";
2
2
  @import "../pb_title/title";
3
+
4
+ [class^=pb_date_kit] {
5
+ display: flex;
6
+ flex-direction: row;
7
+ align-items: center;
8
+ > div, .pb_icon_kit_container {
9
+ margin-right: 4px !important;
10
+ }
11
+
12
+ &[class*=_center] {
13
+ display: flex;
14
+ flex-direction: row;
15
+ align-items: center;
16
+ justify-content: center;
17
+ margin-right: 4px !important;
18
+ }
19
+
20
+ &[class*=_right] {
21
+ display: flex;
22
+ flex-direction: row;
23
+ align-items: center;
24
+ justify-content: flex-end;
25
+ margin-left: 4px !important;
26
+ }
27
+ &.dark {
28
+ [class^=pb_title_kit] {
29
+ color: $text_dk_default !important;
30
+ }
31
+ }
32
+ }
@@ -10,25 +10,37 @@ module Playbook
10
10
  partial "pb_date/date"
11
11
 
12
12
  prop :date, required: true
13
+ prop :alignment, type: Playbook::Props::Enum,
14
+ values: %w[left center right],
15
+ default: "left"
16
+ prop :show_icon, type: Playbook::Props::Boolean,
17
+ default: false
18
+ prop :show_day_of_week, type: Playbook::Props::Boolean,
19
+ default: false
20
+ # Size to be deprecated.
13
21
  prop :size, type: Playbook::Props::Enum,
14
- values: %w[lg sm xs],
15
- default: "sm"
22
+ values: %w[lg md sm xs],
23
+ default: "md"
16
24
  prop :timezone, default: "America/New_York"
17
25
 
18
26
  def classname
19
- generate_classname("pb_date_kit")
27
+ generate_classname("pb_date_kit", alignment)
20
28
  end
21
29
 
22
- def xs_date
23
- "#{pb_date_time.to_day_of_week.upcase} &middot; #{pb_date_time.to_month.upcase} #{pb_date_time.to_day}".html_safe
30
+ def day_of_week
31
+ pb_date_time.to_day_of_week
24
32
  end
25
33
 
26
- def lg_date
27
- "#{pb_date_time.to_month.upcase} #{pb_date_time.to_day}"
34
+ def day
35
+ pb_date_time.to_day
28
36
  end
29
37
 
30
- def sm_date
31
- "#{pb_date_time.to_day_of_week.upcase} &middot; #{pb_date_time.to_month.upcase} #{pb_date_time.to_day}".html_safe
38
+ def month
39
+ pb_date_time.to_month.capitalize
40
+ end
41
+
42
+ def year
43
+ pb_date_time.to_year
32
44
  end
33
45
 
34
46
  private
@@ -0,0 +1,24 @@
1
+ <%= pb_rails("date", props: {
2
+ date: DateTime.now,
3
+ show_icon: true,
4
+ show_day_of_week: true
5
+ }) %>
6
+
7
+ <br><br>
8
+
9
+ <%= pb_rails("date", props: {
10
+ date: DateTime.now,
11
+ show_icon: true,
12
+ show_day_of_week: true,
13
+ alignment: "center"
14
+ }) %>
15
+
16
+ <br><br>
17
+
18
+ <%= pb_rails("date", props: {
19
+ date: DateTime.now,
20
+ show_icon: true,
21
+ show_day_of_week: true,
22
+ alignment: "right"
23
+ }) %>
24
+
@@ -0,0 +1,35 @@
1
+ import React from 'react'
2
+ import { Date as FormattedDate } from '../..'
3
+
4
+ const DateAlignment = (props) => {
5
+ return (
6
+ <div>
7
+ <FormattedDate
8
+ dayOfWeek
9
+ icon
10
+ value="1995-12-25"
11
+ {...props}
12
+ />
13
+
14
+ <br />
15
+
16
+ <FormattedDate
17
+ alignment="center"
18
+ dayOfWeek
19
+ icon
20
+ value="2020-12-25"
21
+ {...props}
22
+ />
23
+
24
+ <br />
25
+
26
+ <FormattedDate
27
+ alignment="right"
28
+ value={new Date()}
29
+ {...props}
30
+ />
31
+ </div>
32
+ )
33
+ }
34
+
35
+ export default DateAlignment
@@ -1,24 +1,39 @@
1
1
  <%= pb_rails("date", props: {
2
2
  date: Date.today,
3
- size: "lg"
3
+ size: "sm"
4
4
  }) %>
5
5
 
6
6
  <br>
7
7
 
8
8
  <%= pb_rails("date", props: {
9
- date: DateTime.now
9
+ date: "2012-08-02T15:49:29Z",
10
+ size: "sm"
10
11
  }) %>
11
12
 
12
13
  <br>
13
14
 
14
15
  <%= pb_rails("date", props: {
15
- date: DateTime.now,
16
- timezone: "Asia/Tokyo"
16
+ date: "2017-12-02T15:49:29Z",
17
+ show_day_of_week: true,
18
+ size: "sm"
19
+ }) %>
20
+
21
+ <br>
22
+ <br>
23
+
24
+ <%= pb_rails("date", props: {
25
+ date: Date.today,
26
+ }) %>
27
+
28
+ <br>
29
+
30
+ <%= pb_rails("date", props: {
31
+ date: "2012-08-02T15:49:29Z",
17
32
  }) %>
18
33
 
19
34
  <br>
20
35
 
21
36
  <%= pb_rails("date", props: {
22
- date: Date.new(2010, 11, 12),
23
- size: "xs"
37
+ date: "2017-12-02T15:49:29Z",
38
+ show_day_of_week: true
24
39
  }) %>
@@ -1,28 +1,59 @@
1
1
  import React from 'react'
2
- import { Date } from '../../'
2
+ import { Date as FormattedDate } from '../../'
3
3
 
4
- const DateDefault = () => {
4
+ const DateDefault = (props) => {
5
5
  return (
6
- <div>
7
- <Date
8
- size="lg"
9
- value="1995-12-25"
6
+ <>
7
+ <FormattedDate
8
+ size="sm"
9
+ value={new Date()}
10
+ {...props}
10
11
  />
11
12
 
12
13
  <br />
13
14
 
14
- <Date
15
- value="17 Mar 69"
15
+ <FormattedDate
16
+ size="sm"
17
+ value="2012-08-03"
18
+ {...props}
16
19
  />
17
20
 
18
21
  <br />
19
22
 
20
- <Date
21
- size="xs"
22
- value="2020-04-20T04:20:00.000Z"
23
+ <FormattedDate
24
+ showDayOfWeek
25
+ size="sm"
26
+ value="2017-12-03"
27
+ {...props}
23
28
  />
24
- </div>
29
+
30
+ <br />
31
+ <br />
32
+
33
+ <FormattedDate
34
+ value={new Date()}
35
+ {...props}
36
+ />
37
+
38
+ <br />
39
+
40
+ <FormattedDate
41
+ value="2012-08-03"
42
+ {...props}
43
+ />
44
+
45
+ <br />
46
+
47
+ <FormattedDate
48
+ showDayOfWeek
49
+ value="2017-12-03"
50
+ {...props}
51
+ />
52
+ </>
25
53
  )
26
54
  }
27
55
 
28
56
  export default DateDefault
57
+
58
+ // *Development Note* - We are reviewing this kit for a potential name change due to naming collisions when `new Date()` is used.
59
+ // To avoid this bug, please use name spacing as shown in the code examples. ie `import { Date as AliasedComponentName } from '../../'
@@ -0,0 +1,27 @@
1
+ <div>
2
+ <%= pb_rails("date", props: {
3
+ date: DateTime.now,
4
+ }) %>
5
+
6
+ <br>
7
+
8
+ <%= pb_rails("date", props: {
9
+ date: DateTime.now,
10
+ show_icon: true
11
+ }) %>
12
+
13
+ <br>
14
+
15
+ <%= pb_rails("date", props: {
16
+ date: DateTime.now,
17
+ show_day_of_week: true
18
+ }) %>
19
+
20
+ <br>
21
+
22
+ <%= pb_rails("date", props: {
23
+ date: DateTime.now,
24
+ show_icon: true,
25
+ show_day_of_week: true
26
+ }) %>
27
+ </div>
@@ -0,0 +1,43 @@
1
+ import React from 'react'
2
+ import { Date as FormattedDate } from '../..'
3
+
4
+ const DateVariants = (props) => {
5
+ return (
6
+ <div>
7
+ <FormattedDate
8
+ value="1995-12-25"
9
+ {...props}
10
+ />
11
+
12
+ <br />
13
+ <br />
14
+
15
+ <FormattedDate
16
+ showIcon
17
+ value="1995-12-25"
18
+ {...props}
19
+ />
20
+
21
+ <br />
22
+ <br />
23
+
24
+ <FormattedDate
25
+ showDayOfWeek
26
+ value="1995-12-25"
27
+ {...props}
28
+ />
29
+
30
+ <br />
31
+ <br />
32
+
33
+ <FormattedDate
34
+ showDayOfWeek
35
+ showIcon
36
+ value="1995-12-25"
37
+ {...props}
38
+ />
39
+ </div>
40
+ )
41
+ }
42
+
43
+ export default DateVariants
@@ -2,9 +2,13 @@ examples:
2
2
 
3
3
  rails:
4
4
  - date_default: Default
5
+ - date_variants: Variants
6
+ - date_alignment: Alignment
5
7
  - date_timezone: Timezones
6
8
 
7
9
 
8
10
  react:
9
11
  - date_default: Default
12
+ - date_variants: Variants
13
+ - date_alignment: Alignment
10
14
 
@@ -1 +1,3 @@
1
1
  export { default as DateDefault } from './_date_default.jsx'
2
+ export { default as DateVariants } from './_date_variants.jsx'
3
+ export { default as DateAlignment } from './_date_alignment.jsx'
@@ -88,7 +88,7 @@ const Gauge = (props: GaugeProps) => {
88
88
  useEffect(() => {
89
89
  if (componentDidMount.current) {
90
90
  Highcharts.charts.forEach((chart) => {
91
- if (chart && chart.renderTo.id === id) {
91
+ if (chart.renderTo.id === id) {
92
92
  chart.series[0].setData([chartData[0].value])
93
93
  chart.series[0].data[0].name = chartData[0].name
94
94
  }
@@ -16,7 +16,7 @@ module Playbook
16
16
  prop :subtitle
17
17
  prop :title
18
18
  prop :x_axis_categories, type: Playbook::Props::Array,
19
- default: []
19
+ default:[]
20
20
  prop :y_axis_min, type: Playbook::Props::Numeric
21
21
  prop :y_axis_max, type: Playbook::Props::Numeric
22
22
  prop :legend, type: Playbook::Props::Boolean,
@@ -32,7 +32,6 @@ module Playbook
32
32
  def chart_options
33
33
  {
34
34
  id: id,
35
- className: classname,
36
35
  chartData: chart_data,
37
36
  type: chart_type,
38
37
  title: title,
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Playbook
3
- VERSION = "7.2.0"
3
+ VERSION = "7.3.0.pre.alpha1"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.2.0
4
+ version: 7.3.0.pre.alpha1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-10-16 00:00:00.000000000 Z
12
+ date: 2020-10-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: actionpack
@@ -668,10 +668,14 @@ files:
668
668
  - app/pb_kits/playbook/pb_date/_date.jsx
669
669
  - app/pb_kits/playbook/pb_date/_date.scss
670
670
  - app/pb_kits/playbook/pb_date/date.rb
671
+ - app/pb_kits/playbook/pb_date/docs/_date_alignment.html.erb
672
+ - app/pb_kits/playbook/pb_date/docs/_date_alignment.jsx
671
673
  - app/pb_kits/playbook/pb_date/docs/_date_default.html.erb
672
674
  - app/pb_kits/playbook/pb_date/docs/_date_default.jsx
673
675
  - app/pb_kits/playbook/pb_date/docs/_date_timezone.html.erb
674
676
  - app/pb_kits/playbook/pb_date/docs/_date_timezone.md
677
+ - app/pb_kits/playbook/pb_date/docs/_date_variants.html.erb
678
+ - app/pb_kits/playbook/pb_date/docs/_date_variants.jsx
675
679
  - app/pb_kits/playbook/pb_date/docs/_description.md
676
680
  - app/pb_kits/playbook/pb_date/docs/example.yml
677
681
  - app/pb_kits/playbook/pb_date/docs/index.js
@@ -1866,11 +1870,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
1866
1870
  version: '0'
1867
1871
  required_rubygems_version: !ruby/object:Gem::Requirement
1868
1872
  requirements:
1869
- - - ">="
1873
+ - - ">"
1870
1874
  - !ruby/object:Gem::Version
1871
- version: '0'
1875
+ version: 1.3.1
1872
1876
  requirements: []
1873
- rubygems_version: 3.1.4
1877
+ rubyforge_project:
1878
+ rubygems_version: 2.7.3
1874
1879
  signing_key:
1875
1880
  specification_version: 4
1876
1881
  summary: Playbook Design System