playbook_ui_docs 16.2.0.pre.alpha.PLAY2798idvsinputoptionsidfortextarea14471 → 16.2.0.pre.alpha.PLAY2806emailcampaignmlsfix14645

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: 86257cae5e7d87dcfcf61181debc44fcd932178f83095afeb7cd39c98bdf74b2
4
- data.tar.gz: 9419c6db216b2ebd0f04e097361a67729e82b7717c3b452ed80698cd6bfd4ed7
3
+ metadata.gz: 2bf4fb0c830c54bf2ef95bcec1be207cc04aabdcb0756eeb57f1af09696b6269
4
+ data.tar.gz: c1158e25f118274b53e42f6d633bbb2d9b07dba642c529eacf6811f8e84749ec
5
5
  SHA512:
6
- metadata.gz: 9d43d2a65d93cea51e1c4255dcff236b8b14f5b5f9707e68fa2d29fe0f071688c94153246adeddb1d4f043a020c3dd1effd17901080a6dda2763a7571140516a
7
- data.tar.gz: eaf3e5afa8b9aa3262d27d9158a4c44edbd2411a9c6aedebd673c36736f98072689a9bae9ac68dfe87dbd2728ef5a2bbec2f8f06d09e7d2e1d404a442750fcba
6
+ metadata.gz: 2194022c2b7187e68975345ff5655eb2652a65a72c62a0148548ae552cc26e286e76b9f371d8d49e59fc02746fba884bec9bdbd037665f13fd1dad5cb5a6e82a
7
+ data.tar.gz: 7045605fac49bb4bf46e96f1a0b5b02d66eb051248c399ee101e3675bca814d4c4e09bf7ce42330698febcb6de37e6f57718dbb302b703b5bdbe4b20df724e0e
@@ -1,4 +1,6 @@
1
- <%= pb_rails("caption", props: { text: "Test colors" }) %>
2
- <%= pb_rails("caption", props: { text: "Test colors", color: "success" }) %>
3
- <%= pb_rails("caption", props: { text: "Test colors", color: "error" }) %>
4
- <%= pb_rails("caption", props: { text: "Test colors", color: "link" }) %>
1
+ <%= pb_rails("caption", props: { text: "Caption light" }) %>
2
+ <%= pb_rails("caption", props: { text: "Caption default", color: "default" }) %>
3
+ <%= pb_rails("caption", props: { text: "Caption lighter", color: "lighter" }) %>
4
+ <%= pb_rails("caption", props: { text: "Caption success", color: "success" }) %>
5
+ <%= pb_rails("caption", props: { text: "Caption error", color: "error" }) %>
6
+ <%= pb_rails("caption", props: { text: "Caption link", color: "link" }) %>
@@ -4,23 +4,33 @@ import Caption from "../../pb_caption/_caption"
4
4
  const CaptionColors = (props) => {
5
5
  return (
6
6
  <div>
7
+ <Caption
8
+ text="Caption light"
9
+ {...props}
10
+ />
11
+ <Caption
12
+ color="default"
13
+ text="Caption default"
14
+ {...props}
15
+ />
7
16
  <Caption
8
- text="Test colors"
17
+ color="lighter"
18
+ text="Caption lighter"
9
19
  {...props}
10
20
  />
11
21
  <Caption
12
22
  color="success"
13
- text="Test colors"
23
+ text="Caption success"
14
24
  {...props}
15
25
  />
16
26
  <Caption
17
27
  color="error"
18
- text="Test colors"
28
+ text="Caption error"
19
29
  {...props}
20
30
  />
21
31
  <Caption
22
32
  color="link"
23
- text="Test colors"
33
+ text="Caption link"
24
34
  {...props}
25
35
  />
26
36
  </div>
@@ -1,24 +1,6 @@
1
- <%= pb_rails("detail", props: {
2
- text: "I am a detail kit",
3
- color: "default"
4
- }) %>
5
-
6
- <%= pb_rails("detail", props: {
7
- text: "I am a detail kit",
8
- color: "lighter"
9
- }) %>
10
-
11
- <%= pb_rails("detail", props: {
12
- text: "I am a detail kit",
13
- color: "link"
14
- }) %>
15
-
16
- <%= pb_rails("detail", props: {
17
- text: "I am a detail kit",
18
- color: "error"
19
- }) %>
20
-
21
- <%= pb_rails("detail", props: {
22
- text: "I am a detail kit",
23
- color: "success"
24
- }) %>
1
+ <%= pb_rails("detail", props: { text: "I am a detail kit" }) %>
2
+ <%= pb_rails("detail", props: { text: "I am a detail kit", color: "default" }) %>
3
+ <%= pb_rails("detail", props: { text: "I am a detail kit", color: "lighter" }) %>
4
+ <%= pb_rails("detail", props: { text: "I am a detail kit", color: "link" }) %>
5
+ <%= pb_rails("detail", props: { text: "I am a detail kit", color: "error" }) %>
6
+ <%= pb_rails("detail", props: { text: "I am a detail kit", color: "success" }) %>
@@ -1,38 +1,40 @@
1
1
  import React from 'react'
2
2
  import Detail from '../../pb_detail/_detail'
3
3
 
4
- const DetailColors = (props) => (
5
- <div>
6
- <Detail
7
- color="default"
8
- text="I am a detail kit"
9
- {...props}
10
- />
11
-
12
- <Detail
13
- color="lighter"
14
- text="I am a detail kit"
15
- {...props}
16
- />
17
-
18
- <Detail
19
- color="link"
20
- text="I am a detail kit"
21
- {...props}
22
- />
23
-
24
- <Detail
25
- color="error"
26
- text="I am a detail kit"
27
- {...props}
28
- />
29
-
30
- <Detail
31
- color="success"
32
- text="I am a detail kit"
33
- {...props}
34
- />
35
- </div>
36
- )
4
+ const DetailColors = (props) => {
5
+ return (
6
+ <div>
7
+ <Detail
8
+ text="I am a detail kit"
9
+ {...props}
10
+ />
11
+ <Detail
12
+ color="default"
13
+ text="I am a detail kit"
14
+ {...props}
15
+ />
16
+ <Detail
17
+ color="lighter"
18
+ text="I am a detail kit"
19
+ {...props}
20
+ />
21
+ <Detail
22
+ color="link"
23
+ text="I am a detail kit"
24
+ {...props}
25
+ />
26
+ <Detail
27
+ color="error"
28
+ text="I am a detail kit"
29
+ {...props}
30
+ />
31
+ <Detail
32
+ color="success"
33
+ text="I am a detail kit"
34
+ {...props}
35
+ />
36
+ </div>
37
+ )
38
+ }
37
39
 
38
40
  export default DetailColors
@@ -0,0 +1,100 @@
1
+ import React, { useState } from "react";
2
+ import MultiLevelSelect from "../_multi_level_select";
3
+ import { Button } from "playbook-ui";
4
+
5
+ const treeData = [
6
+ {
7
+ label: "Power Home Remodeling",
8
+ value: "powerHomeRemodeling",
9
+ id: "100",
10
+ expanded: true,
11
+ children: [
12
+ {
13
+ label: "People",
14
+ value: "people",
15
+ id: "101",
16
+ expanded: true,
17
+ children: [
18
+ {
19
+ label: "Talent Acquisition",
20
+ value: "talentAcquisition",
21
+ id: "102",
22
+ },
23
+ {
24
+ label: "Business Affairs",
25
+ value: "businessAffairs",
26
+ id: "103",
27
+ children: [
28
+ {
29
+ label: "Initiatives",
30
+ value: "initiatives",
31
+ id: "104",
32
+ },
33
+ {
34
+ label: "Learning & Development",
35
+ value: "learningAndDevelopment",
36
+ id: "105",
37
+ },
38
+ ],
39
+ },
40
+ {
41
+ label: "People Experience",
42
+ value: "peopleExperience",
43
+ id: "106",
44
+ },
45
+ ],
46
+ },
47
+ {
48
+ label: "Contact Center",
49
+ value: "contactCenter",
50
+ id: "107",
51
+ children: [
52
+ {
53
+ label: "Appointment Management",
54
+ value: "appointmentManagement",
55
+ id: "108",
56
+ },
57
+ {
58
+ label: "Customer Service",
59
+ value: "customerService",
60
+ id: "109",
61
+ },
62
+ {
63
+ label: "Energy",
64
+ value: "energy",
65
+ id: "110",
66
+ },
67
+ ],
68
+ },
69
+ ],
70
+ },
71
+ ];
72
+
73
+ const MultiLevelSelectReactResetKey = (props) => {
74
+ const [resetKey, setResetKey] = useState(0);
75
+
76
+ const handleReset = () => {
77
+ setResetKey((k) => k + 1);
78
+ };
79
+
80
+ return (
81
+ <>
82
+ <MultiLevelSelect
83
+ {...props}
84
+ id="multi-level-select-reset-example"
85
+ key={`multi-level-select-reset-${resetKey}`}
86
+ name="my_array"
87
+ returnAllSelected
88
+ treeData={treeData}
89
+ />
90
+ <Button
91
+ id="multilevelselect-reset-button"
92
+ marginTop="lg"
93
+ onClick={handleReset}
94
+ text="Reset"
95
+ />
96
+ </>
97
+ );
98
+ };
99
+
100
+ export default MultiLevelSelectReactResetKey;
@@ -0,0 +1 @@
1
+ When a parent resets a Multi Level Select (e.g., “Default” or “Clear”), the kit needs a `key` that changes with the selection because React uses the `key` to determine component identity and whether to preserve internal state. If the `key` doesn’t change, React reuses the existing instance and may keep showing the old selection instead of resetting to the new one.
@@ -39,3 +39,4 @@ examples:
39
39
  - multi_level_select_disabled_options_parent: Disabled Parent Option (Return All Selected)
40
40
  - multi_level_select_single_disabled: Disabled Options (Single Select)
41
41
  - multi_level_select_required_indicator: Required Indicator
42
+ - multi_level_select_react_reset_key: Reset with Key (React)
@@ -17,3 +17,4 @@ export { default as MultiLevelSelectDisabledOptionsDefault } from "./_multi_leve
17
17
  export { default as MultiLevelSelectLabel } from "./_multi_level_select_label.jsx"
18
18
  export { default as MultiLevelSelectSingleDisabled } from "./_multi_level_select_single_disabled.jsx"
19
19
  export { default as MultiLevelSelectRequiredIndicator } from "./_multi_level_select_required_indicator.jsx"
20
+ export { default as MultiLevelSelectReactResetKey } from "./_multi_level_select_react_reset_key.jsx"
@@ -9,7 +9,7 @@ const PaginationDefault = (props) => {
9
9
  <Pagination
10
10
  current={1}
11
11
  range={5}
12
- total={10}
12
+ total={1000}
13
13
  {...props}
14
14
  />
15
15
  </>
@@ -2,19 +2,17 @@ import React from 'react'
2
2
 
3
3
  import TextInput from '../_text_input'
4
4
 
5
- class TextInputDisabled extends React.Component {
6
- render(props) {
7
- return (
8
- <div>
9
- <TextInput
10
- disabled
11
- label="Last Name"
12
- placeholder="Enter last name"
13
- {...props}
14
- />
15
- </div>
16
- )
17
- }
5
+ const TextInputDisabled = (props) => {
6
+ return (
7
+ <div>
8
+ <TextInput
9
+ disabled
10
+ label="Last Name"
11
+ placeholder="Enter last name"
12
+ {...props}
13
+ />
14
+ </div>
15
+ )
18
16
  }
19
17
 
20
18
  export default TextInputDisabled
@@ -1,4 +1,6 @@
1
1
  <%= pb_rails("title", props: { text: "Default Color", tag: "h1", size: 3 }) %>
2
+ <%= pb_rails("title", props: { text: "Title Color", tag: "h1", size: 3, color: "light" }) %>
3
+ <%= pb_rails("title", props: { text: "Title Color", tag: "h1", size: 3, color: "lighter" }) %>
2
4
  <%= pb_rails("title", props: { text: "Title Color", tag: "h1", size: 3, color: "link" }) %>
3
5
  <%= pb_rails("title", props: { text: "Title Color", tag: "h1", size: 3, color: "success" }) %>
4
6
  <%= pb_rails("title", props: { text: "Title Color", tag: "h1", size: 3, color: "error" }) %>
@@ -9,6 +9,20 @@ const TitleColors = (props) => {
9
9
  text="Default Color"
10
10
  {...props}
11
11
  />
12
+ <Title
13
+ color="light"
14
+ size={3}
15
+ tag="h1"
16
+ text="Title Color"
17
+ {...props}
18
+ />
19
+ <Title
20
+ color="lighter"
21
+ size={3}
22
+ tag="h1"
23
+ text="Title Color"
24
+ {...props}
25
+ />
12
26
  <Title
13
27
  color="link"
14
28
  size={3}
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.2.0.pre.alpha.PLAY2798idvsinputoptionsidfortextarea14471
4
+ version: 16.2.0.pre.alpha.PLAY2806emailcampaignmlsfix14645
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-02-17 00:00:00.000000000 Z
12
+ date: 2026-02-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: playbook_ui
@@ -1449,6 +1449,8 @@ files:
1449
1449
  - app/pb_kits/playbook/pb_multi_level_select/docs/_multi_level_select_label.md
1450
1450
  - app/pb_kits/playbook/pb_multi_level_select/docs/_multi_level_select_react_hook.jsx
1451
1451
  - app/pb_kits/playbook/pb_multi_level_select/docs/_multi_level_select_react_hook.md
1452
+ - app/pb_kits/playbook/pb_multi_level_select/docs/_multi_level_select_react_reset_key.jsx
1453
+ - app/pb_kits/playbook/pb_multi_level_select/docs/_multi_level_select_react_reset_key.md
1452
1454
  - app/pb_kits/playbook/pb_multi_level_select/docs/_multi_level_select_required_indicator.html.erb
1453
1455
  - app/pb_kits/playbook/pb_multi_level_select/docs/_multi_level_select_required_indicator.jsx
1454
1456
  - app/pb_kits/playbook/pb_multi_level_select/docs/_multi_level_select_required_indicator.md