playbook_ui_docs 14.24.0.pre.alpha.PLAY19989342 → 14.24.0.pre.alpha.PLAY23139411

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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui_docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 14.24.0.pre.alpha.PLAY19989342
4
+ version: 14.24.0.pre.alpha.PLAY23139411
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: 2025-08-04 00:00:00.000000000 Z
12
+ date: 2025-08-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: playbook_ui
@@ -96,6 +96,10 @@ files:
96
96
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading_react.md
97
97
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_no_subrows.html.erb
98
98
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_no_subrows.jsx
99
+ - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_padding_control.jsx
100
+ - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_padding_control.md
101
+ - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_padding_control_per_row.jsx
102
+ - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_padding_control_per_row.md
99
103
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pagination.jsx
100
104
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pagination.md
101
105
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pagination_with_props.jsx
@@ -575,9 +579,6 @@ files:
575
579
  - app/pb_kits/playbook/pb_date/docs/_date_variants.html.erb
576
580
  - app/pb_kits/playbook/pb_date/docs/_date_variants.jsx
577
581
  - app/pb_kits/playbook/pb_date/docs/_date_variants_swift.md
578
- - app/pb_kits/playbook/pb_date/docs/_date_with_show_current_year.html.erb
579
- - app/pb_kits/playbook/pb_date/docs/_date_with_show_current_year.jsx
580
- - app/pb_kits/playbook/pb_date/docs/_date_with_show_current_year.md
581
582
  - app/pb_kits/playbook/pb_date/docs/_description.md
582
583
  - app/pb_kits/playbook/pb_date/docs/example.yml
583
584
  - app/pb_kits/playbook/pb_date/docs/index.js
@@ -1,4 +0,0 @@
1
- <%= pb_rails("date", props: {
2
- date: Date.today,
3
- show_current_year: true
4
- }) %>
@@ -1,17 +0,0 @@
1
- import React from 'react'
2
-
3
- import FormattedDate from '../../pb_date/_date'
4
-
5
- const DateWithShowCurrentYear = (props) => {
6
- return (
7
- <>
8
- <FormattedDate
9
- showCurrentYear
10
- value={new Date()}
11
- {...props}
12
- />
13
- </>
14
- )
15
- }
16
-
17
- export default DateWithShowCurrentYear
@@ -1 +0,0 @@
1
- By default, the Date kit does NOT display the year if it is the current year. If you want to display the current year you can do so by setting `showCurrentYear`/`show_current_year` to true as shown here.