playbook_ui 12.16.0 → 12.17.0

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.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/pb_body/_body.scss +10 -0
  3. data/app/pb_kits/playbook/pb_body/docs/_body_styled.html.erb +12 -0
  4. data/app/pb_kits/playbook/pb_body/docs/_body_styled.jsx +14 -2
  5. data/app/pb_kits/playbook/pb_body/docs/_body_styled.md +1 -1
  6. data/app/pb_kits/playbook/pb_body/docs/example.yml +2 -2
  7. data/app/pb_kits/playbook/pb_button/_button_mixins.scss +7 -1
  8. data/app/pb_kits/playbook/pb_card/docs/_card_background.jsx +1 -1
  9. data/app/pb_kits/playbook/pb_date_stacked/_date_stacked.tsx +1 -1
  10. data/app/pb_kits/playbook/pb_docs/kit_api.html.erb +295 -8
  11. data/app/pb_kits/playbook/pb_docs/kit_api.rb +42 -0
  12. data/app/pb_kits/playbook/pb_docs/kit_example.html.erb +17 -0
  13. data/app/pb_kits/playbook/pb_docs/kit_example.rb +18 -1
  14. data/app/pb_kits/playbook/pb_image/docs/{_default_image.tsx → _default_image.jsx} +1 -1
  15. data/app/pb_kits/playbook/pb_lightbox/_lightbox.tsx +6 -1
  16. data/app/pb_kits/playbook/pb_lightbox/docs/_lightbox_compound_component.jsx +1 -5
  17. data/app/pb_kits/playbook/pb_lightbox/docs/_lightbox_current_photo.jsx +121 -0
  18. data/app/pb_kits/playbook/pb_lightbox/docs/_lightbox_current_photo.md +1 -0
  19. data/app/pb_kits/playbook/pb_lightbox/docs/_lightbox_custom_header.jsx +1 -5
  20. data/app/pb_kits/playbook/pb_lightbox/docs/_lightbox_default.jsx +1 -5
  21. data/app/pb_kits/playbook/pb_lightbox/docs/_lightbox_default.md +1 -1
  22. data/app/pb_kits/playbook/pb_lightbox/docs/_lightbox_multiple.jsx +1 -5
  23. data/app/pb_kits/playbook/pb_lightbox/docs/example.yml +1 -0
  24. data/app/pb_kits/playbook/pb_lightbox/docs/index.js +1 -0
  25. data/app/pb_kits/playbook/pb_lightbox/lightbox.test.jsx +1 -5
  26. data/app/pb_kits/playbook/pb_table/_table.tsx +4 -0
  27. data/app/pb_kits/playbook/pb_table/docs/_table_vertical_border.html.erb +34 -0
  28. data/app/pb_kits/playbook/pb_table/docs/_table_vertical_border.jsx +48 -0
  29. data/app/pb_kits/playbook/pb_table/docs/example.yml +2 -2
  30. data/app/pb_kits/playbook/pb_table/docs/index.js +1 -0
  31. data/app/pb_kits/playbook/pb_table/styles/_all.scss +1 -0
  32. data/app/pb_kits/playbook/pb_table/styles/_vertical_border.scss +16 -0
  33. data/app/pb_kits/playbook/pb_table/table.rb +7 -1
  34. data/app/pb_kits/playbook/pb_timeline/{_item.jsx → _item.tsx} +10 -12
  35. data/app/pb_kits/playbook/pb_timeline/{_timeline.jsx → _timeline.tsx} +9 -9
  36. data/app/pb_kits/playbook/pb_timeline/timeline.test.js +88 -0
  37. data/app/pb_kits/playbook/utilities/_cursor.scss +36 -36
  38. data/lib/playbook/version.rb +2 -2
  39. metadata +11 -5
@@ -1,143 +1,143 @@
1
1
  .cursor_default {
2
- cursor: default;
2
+ cursor: default !important;
3
3
  }
4
4
 
5
5
  .cursor_context_menu {
6
- cursor: context-menu;
6
+ cursor: context-menu !important;
7
7
  }
8
8
 
9
9
  .cursor_help {
10
- cursor: help;
10
+ cursor: help !important;
11
11
  }
12
12
 
13
13
  .cursor_pointer {
14
- cursor: pointer;
14
+ cursor: pointer !important;
15
15
  }
16
16
 
17
17
  .cursor_progress {
18
- cursor: progress;
18
+ cursor: progress !important;
19
19
  }
20
20
 
21
21
  .cursor_wait {
22
- cursor: wait;
22
+ cursor: wait !important;
23
23
  }
24
24
 
25
25
  .cursor_cell {
26
- cursor: cell;
26
+ cursor: cell !important;
27
27
  }
28
28
 
29
29
  .cursor_crosshair {
30
- cursor: crosshair;
30
+ cursor: crosshair !important;
31
31
  }
32
32
 
33
33
  .cursor_text {
34
- cursor: text;
34
+ cursor: text !important;
35
35
  }
36
36
 
37
37
  .cursor_vertical_text {
38
- cursor: vertical-text;
38
+ cursor: vertical-text !important;
39
39
  }
40
40
 
41
41
  .cursor_alias {
42
- cursor: alias;
42
+ cursor: alias !important;
43
43
  }
44
44
 
45
45
  .cursor_copy {
46
- cursor: copy;
46
+ cursor: copy !important;
47
47
  }
48
48
 
49
49
  .cursor_move {
50
- cursor: move;
50
+ cursor: move !important;
51
51
  }
52
52
 
53
53
  .cursor_no_drop {
54
- cursor: no-drop;
54
+ cursor: no-drop !important;
55
55
  }
56
56
 
57
57
  .cursor_not_allowed {
58
- cursor: not-allowed;
58
+ cursor: not-allowed !important;
59
59
  }
60
60
 
61
61
  .cursor_all_scroll {
62
- cursor: all-scroll;
62
+ cursor: all-scroll !important;
63
63
  }
64
64
 
65
65
  .cursor_col_resize {
66
- cursor: col-resize;
66
+ cursor: col-resize !important;
67
67
  }
68
68
 
69
69
  .cursor_row_resize {
70
- cursor: row-resize;
70
+ cursor: row-resize !important;
71
71
  }
72
72
 
73
73
  .cursor_n_resize {
74
- cursor: n-resize;
74
+ cursor: n-resize !important;
75
75
  }
76
76
 
77
77
  .cursor_e_resize {
78
- cursor: e-resize;
78
+ cursor: e-resize !important;
79
79
  }
80
80
 
81
81
  .cursor_s_resize {
82
- cursor: s-resize;
82
+ cursor: s-resize !important;
83
83
  }
84
84
 
85
85
  .cursor_w_resize {
86
- cursor: w-resize;
86
+ cursor: w-resize !important;
87
87
  }
88
88
 
89
89
  .cursor_ne_resize {
90
- cursor: ne-resize;
90
+ cursor: ne-resize !important;
91
91
  }
92
92
 
93
93
  .cursor_nw_resize {
94
- cursor: nw-resize;
94
+ cursor: nw-resize !important;
95
95
  }
96
96
 
97
97
  .cursor_se_resize {
98
- cursor: se-resize;
98
+ cursor: se-resize !important;
99
99
  }
100
100
 
101
101
  .cursor_sw_resize {
102
- cursor: sw-resize;
102
+ cursor: sw-resize !important;
103
103
  }
104
104
 
105
105
  .cursor_ew_resize {
106
- cursor: ew-resize;
106
+ cursor: ew-resize !important;
107
107
  }
108
108
 
109
109
  .cursor_ns_resize {
110
- cursor: ns-resize;
110
+ cursor: ns-resize !important;
111
111
  }
112
112
 
113
113
  .cursor_nsew_resize {
114
- cursor: nsew-resize;
114
+ cursor: nsew-resize !important;
115
115
  }
116
116
 
117
117
  .cursor_nwes_resize {
118
- cursor: nwes-resize;
118
+ cursor: nwes-resize !important;
119
119
  }
120
120
 
121
121
  .cursor_zoom_in {
122
- cursor: zoom-in;
122
+ cursor: zoom-in !important;
123
123
  }
124
124
 
125
125
  .cursor_zoom_out {
126
- cursor: zoom-out;
126
+ cursor: zoom-out !important;
127
127
  }
128
128
 
129
129
  .cursor_grab {
130
- cursor: grab;
130
+ cursor: grab !important;
131
131
  }
132
132
 
133
133
  .cursor_grabbing {
134
- cursor: grabbing;
134
+ cursor: grabbing !important;
135
135
  }
136
136
 
137
137
  .cursor_none {
138
- cursor: none;
138
+ cursor: none !important;
139
139
  }
140
140
 
141
141
  .cursor_auto {
142
- cursor: auto;
142
+ cursor: auto !important;
143
143
  }
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Playbook
4
- PREVIOUS_VERSION = "12.15.0"
5
- VERSION = "12.16.0"
4
+ PREVIOUS_VERSION = "12.16.0"
5
+ VERSION = "12.17.0"
6
6
  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: 12.16.0
4
+ version: 12.17.0
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: 2023-04-19 00:00:00.000000000 Z
12
+ date: 2023-04-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: actionpack
@@ -1221,7 +1221,7 @@ files:
1221
1221
  - app/pb_kits/playbook/pb_image/docs/_custom_error_image.html.erb
1222
1222
  - app/pb_kits/playbook/pb_image/docs/_custom_error_image.jsx
1223
1223
  - app/pb_kits/playbook/pb_image/docs/_default_image.html.erb
1224
- - app/pb_kits/playbook/pb_image/docs/_default_image.tsx
1224
+ - app/pb_kits/playbook/pb_image/docs/_default_image.jsx
1225
1225
  - app/pb_kits/playbook/pb_image/docs/_description.md
1226
1226
  - app/pb_kits/playbook/pb_image/docs/_rounded_image.html.erb
1227
1227
  - app/pb_kits/playbook/pb_image/docs/_rounded_image.jsx
@@ -1332,6 +1332,8 @@ files:
1332
1332
  - app/pb_kits/playbook/pb_lightbox/docs/_description.md
1333
1333
  - app/pb_kits/playbook/pb_lightbox/docs/_lightbox_compound_component.jsx
1334
1334
  - app/pb_kits/playbook/pb_lightbox/docs/_lightbox_compound_component.md
1335
+ - app/pb_kits/playbook/pb_lightbox/docs/_lightbox_current_photo.jsx
1336
+ - app/pb_kits/playbook/pb_lightbox/docs/_lightbox_current_photo.md
1335
1337
  - app/pb_kits/playbook/pb_lightbox/docs/_lightbox_custom_header.jsx
1336
1338
  - app/pb_kits/playbook/pb_lightbox/docs/_lightbox_custom_header.md
1337
1339
  - app/pb_kits/playbook/pb_lightbox/docs/_lightbox_default.jsx
@@ -1972,6 +1974,8 @@ files:
1972
1974
  - app/pb_kits/playbook/pb_table/docs/_table_two_plus_actions.html.erb
1973
1975
  - app/pb_kits/playbook/pb_table/docs/_table_two_plus_actions.jsx
1974
1976
  - app/pb_kits/playbook/pb_table/docs/_table_two_plus_actions.md
1977
+ - app/pb_kits/playbook/pb_table/docs/_table_vertical_border.html.erb
1978
+ - app/pb_kits/playbook/pb_table/docs/_table_vertical_border.jsx
1975
1979
  - app/pb_kits/playbook/pb_table/docs/_table_with_background_kit.html.erb
1976
1980
  - app/pb_kits/playbook/pb_table/docs/_table_with_background_kit.jsx
1977
1981
  - app/pb_kits/playbook/pb_table/docs/example.yml
@@ -1994,6 +1998,7 @@ files:
1994
1998
  - app/pb_kits/playbook/pb_table/styles/_table-dark.scss
1995
1999
  - app/pb_kits/playbook/pb_table/styles/_tablet_collapse.scss
1996
2000
  - app/pb_kits/playbook/pb_table/styles/_variables.scss
2001
+ - app/pb_kits/playbook/pb_table/styles/_vertical_border.scss
1997
2002
  - app/pb_kits/playbook/pb_table/table.html.erb
1998
2003
  - app/pb_kits/playbook/pb_table/table.rb
1999
2004
  - app/pb_kits/playbook/pb_table/table.test.js
@@ -2086,9 +2091,9 @@ files:
2086
2091
  - app/pb_kits/playbook/pb_time_stacked/time_stacked.html.erb
2087
2092
  - app/pb_kits/playbook/pb_time_stacked/time_stacked.rb
2088
2093
  - app/pb_kits/playbook/pb_time_stacked/time_stacked.test.js
2089
- - app/pb_kits/playbook/pb_timeline/_item.jsx
2090
- - app/pb_kits/playbook/pb_timeline/_timeline.jsx
2094
+ - app/pb_kits/playbook/pb_timeline/_item.tsx
2091
2095
  - app/pb_kits/playbook/pb_timeline/_timeline.scss
2096
+ - app/pb_kits/playbook/pb_timeline/_timeline.tsx
2092
2097
  - app/pb_kits/playbook/pb_timeline/docs/_description.md
2093
2098
  - app/pb_kits/playbook/pb_timeline/docs/_timeline_default.html.erb
2094
2099
  - app/pb_kits/playbook/pb_timeline/docs/_timeline_default.jsx
@@ -2103,6 +2108,7 @@ files:
2103
2108
  - app/pb_kits/playbook/pb_timeline/item.rb
2104
2109
  - app/pb_kits/playbook/pb_timeline/timeline.html.erb
2105
2110
  - app/pb_kits/playbook/pb_timeline/timeline.rb
2111
+ - app/pb_kits/playbook/pb_timeline/timeline.test.js
2106
2112
  - app/pb_kits/playbook/pb_timestamp/_timestamp-mixins.scss
2107
2113
  - app/pb_kits/playbook/pb_timestamp/_timestamp.scss
2108
2114
  - app/pb_kits/playbook/pb_timestamp/_timestamp.tsx