playbook_ui_docs 16.10.0.pre.rc.2 → 16.10.0.pre.rc.3
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 +4 -4
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_row_styling.html.erb +4 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_row_styling.jsx +4 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_row_styling_rails.md +1 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_row_styling_react.md +1 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_playground.json +2 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_playground.overrides.json +1 -1
- data/app/pb_kits/playbook/pb_filter/docs/_playground.json +7 -0
- data/app/pb_kits/playbook/pb_passphrase/docs/_passphrase_breached.html.erb +1 -1
- data/app/pb_kits/playbook/pb_passphrase/docs/_passphrase_common.html.erb +1 -1
- data/app/pb_kits/playbook/pb_passphrase/docs/_passphrase_meter_settings.html.erb +5 -5
- data/app/pb_kits/playbook/pb_passphrase/docs/_passphrase_strength_change.html.erb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b753448bea65da4bb04f64eea0b7882a99d96674476cad290610b9229826b479
|
|
4
|
+
data.tar.gz: 9274028c2d788c923325536d3cdf5697531476d8bc558f749c0799ccb0992bed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5357f063561a502848b16bb1027dd3af3308ec179cf7e1c12d2445148f7b98e418c6e6503469feec7f59fc99e6b96165c0f57f5274a0e8d3d3d581fbb49fc399
|
|
7
|
+
data.tar.gz: 78a2d92adb82f79228cdbd0245c0a8d1275d2abceba9d26a20264124482c9170ae6be88b4a29cf64dd4bd0841338b8081c007ba3c9bcec5c3d8f9ea6a763c64e
|
|
@@ -41,6 +41,10 @@
|
|
|
41
41
|
font_color: "white",
|
|
42
42
|
expand_button_color: "white",
|
|
43
43
|
},
|
|
44
|
+
{
|
|
45
|
+
row_id: "15",
|
|
46
|
+
font_weight: "bold",
|
|
47
|
+
},
|
|
44
48
|
] %>
|
|
45
49
|
|
|
46
50
|
<%= pb_rails("advanced_table", props: { id: "row-styling", table_data: @table_data_with_id, column_definitions: column_definitions, row_styling: row_styling }) %>
|
|
@@ -3,5 +3,6 @@ The `row_styling` prop can be used in conjunction with row ids to control certai
|
|
|
3
3
|
- `background_color` : use this to control the background color of the row
|
|
4
4
|
- `font_color`: use this to control font color for each row if needed, for example if using a darker background color.
|
|
5
5
|
- `expand_button_color`: use this to control the color of the expand icon if needed, for example if using a darker background color.
|
|
6
|
+
- `font_weight`: use this to control row font weight. Accepted values are `regular` (default appearance) and `bold`.
|
|
6
7
|
|
|
7
8
|
**NOTE:** Each object within the `table_data` Array must contain a unique id in order to attach an id to all Rows for this to function.
|
|
@@ -3,5 +3,6 @@ The `rowStyling` prop can be used in conjunction with row ids to control certain
|
|
|
3
3
|
- `backgroundColor` : use this to control the background color of the row
|
|
4
4
|
- `fontColor`: use this to control font color for each row if needed, for example if using a darker background color.
|
|
5
5
|
- `expandButtonColor`: use this to control the color of the expand icon if needed, for example if using a darker background color.
|
|
6
|
+
- `fontWeight`: use this to control row font weight. Accepted values are `regular` (default appearance) and `bold`.
|
|
6
7
|
|
|
7
8
|
**NOTE:** Each object within the `tableData` Array must contain a unique id in order to attach an id to all Rows for this to function.
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
"tableProps": {
|
|
105
105
|
"container": false
|
|
106
106
|
},
|
|
107
|
-
"rowStyling": [{ "rowId": "1", "backgroundColor": "#0056CF", "fontColor": "#FFFFFF", "expandButtonColor": "#FFFFFF" }],
|
|
107
|
+
"rowStyling": [{ "rowId": "1", "backgroundColor": "#0056CF", "fontColor": "#FFFFFF", "expandButtonColor": "#FFFFFF", "fontWeight": "bold" }],
|
|
108
108
|
"expandByDepth": [
|
|
109
109
|
{
|
|
110
110
|
"depth": 0,
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<%= pb_rails("progress_simple", props: { percent: 0, id: "bar_breached" }) %>
|
|
4
4
|
|
|
5
|
-
<%= pb_rails("caption", props: { size: 'xs', text: "
|
|
5
|
+
<%= pb_rails("caption", props: { size: 'xs', text: "", id: "caption_breached" }) %>
|
|
6
6
|
|
|
7
7
|
<script>
|
|
8
8
|
window.addEventListener("load", () => {
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
<%= pb_rails("progress_simple", props: { percent: 0, id: "bar_common" }) %>
|
|
9
9
|
|
|
10
|
-
<%= pb_rails("caption", props: { size: 'xs', text: "
|
|
10
|
+
<%= pb_rails("caption", props: { size: 'xs', text: "", id: "caption_common" }) %>
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
<script>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<%= pb_rails("progress_simple", props: { percent: 0, id: "def_bar" }) %>
|
|
4
4
|
|
|
5
|
-
<%= pb_rails("caption", props: { size: 'xs', text: "
|
|
5
|
+
<%= pb_rails("caption", props: { size: 'xs', text: "", id: "def_caption" }) %>
|
|
6
6
|
|
|
7
7
|
<%= pb_rails("text_input", props: { label: "Calculated Strength", value: "0", disabled: true, id: "calc_strength" }) %>
|
|
8
8
|
|
|
@@ -10,25 +10,25 @@
|
|
|
10
10
|
|
|
11
11
|
<%= pb_rails("progress_simple", props: { percent: 0, id: "min_5_bar" }) %>
|
|
12
12
|
|
|
13
|
-
<%= pb_rails("caption", props: { size: 'xs', text: "
|
|
13
|
+
<%= pb_rails("caption", props: { size: 'xs', text: "", id: "min_5_caption" }) %>
|
|
14
14
|
|
|
15
15
|
<%= pb_rails("passphrase", props: { label: "Min length = 30", classname: "min_30" }) %>
|
|
16
16
|
|
|
17
17
|
<%= pb_rails("progress_simple", props: { percent: 0, id: "min_30_bar" }) %>
|
|
18
18
|
|
|
19
|
-
<%= pb_rails("caption", props: { size: 'xs', text: "
|
|
19
|
+
<%= pb_rails("caption", props: { size: 'xs', text: "", id: "min_30_caption" }) %>
|
|
20
20
|
|
|
21
21
|
<%= pb_rails("passphrase", props: { label: "Average Threshold = 1", classname: "avg_1" }) %>
|
|
22
22
|
|
|
23
23
|
<%= pb_rails("progress_simple", props: { percent: 0, id: "avg_1_bar" }) %>
|
|
24
24
|
|
|
25
|
-
<%= pb_rails("caption", props: { size: 'xs', text: "
|
|
25
|
+
<%= pb_rails("caption", props: { size: 'xs', text: "", id: "avg_1_caption" }) %>
|
|
26
26
|
|
|
27
27
|
<%= pb_rails("passphrase", props: { label: "Strong Threshold = 4", classname: "strong_4" }) %>
|
|
28
28
|
|
|
29
29
|
<%= pb_rails("progress_simple", props: { percent: 0, id: "strong_4_bar" }) %>
|
|
30
30
|
|
|
31
|
-
<%= pb_rails("caption", props: { size: 'xs', text: "
|
|
31
|
+
<%= pb_rails("caption", props: { size: 'xs', text: "", id: "strong_4_caption" }) %>
|
|
32
32
|
|
|
33
33
|
|
|
34
34
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<%= pb_rails("progress_simple", props: { percent: 0, id: "bar_change" }) %>
|
|
4
4
|
|
|
5
|
-
<%= pb_rails("caption", props: { size: 'xs', text: "
|
|
5
|
+
<%= pb_rails("caption", props: { size: 'xs', text: "", id: "caption_change" }) %>
|
|
6
6
|
|
|
7
7
|
<%= pb_rails("text_input", props: { label: "Passphrase Strength", value: "0", disabled: true, id: "calc_strength_change" }) %>
|
|
8
8
|
|
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: 16.10.0.pre.rc.
|
|
4
|
+
version: 16.10.0.pre.rc.3
|
|
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: 2026-06-
|
|
12
|
+
date: 2026-06-25 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: playbook_ui
|