playbook_ui_docs 14.11.0.pre.rc.10 → 14.11.0.pre.rc.11

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: 12ceade6f0a77d6ec5bffadd64fa9d095185d695cc5c1f156c3c7c410c03503a
4
- data.tar.gz: 69864a3aead56e7a20bca2564e61687f65a9a6922c34e70b90f84290f3acd08f
3
+ metadata.gz: 858c5a7899d38093150608868c9638198d8ea98201aff24b3d71eedcf5df85a4
4
+ data.tar.gz: 7a73e2e5333dff9caebab854c1ef4e04b2b4e1245b223810e5a288365de7b077
5
5
  SHA512:
6
- metadata.gz: c653695b8d784557af6f521442b0b1773721971209d74933eea73e27ec0b8f6fe66dc13a804b35542febfe46376db62c74cb16362691aa8923106bc1acbd7476
7
- data.tar.gz: 890277443da70983a74d0ddc60673996569b16a61b580739efa4a7384fcf9833f8c0696f7d7fb8fee9e0d8fc1ea0008031e69782b28d458f311db7a20e206d41
6
+ metadata.gz: 67d0f2cdd7c774c81e87411a646bd0db30e4b351925809e7565dca6b0f180b63f5490f6479c719eb125722d6b5670a95615f30371685a88eb430b8a1bb403be5
7
+ data.tar.gz: 9ebf7fec63b12bb28d44c2f1b83a6c56ae5b624fefc8f952d097710bf8a89b13bc16eff56cc6f09ddb17a33dddbad3fc11f62a9c0f553ab75a544e1637df52cf
@@ -88,3 +88,21 @@
88
88
  Body
89
89
  <% end %>
90
90
  <% end %>
91
+
92
+ <%= pb_rails("card", props: { padding: "none", header: true, margin_bottom: "sm"}) do %>
93
+ <%= pb_rails("card/card_header", props: { padding: "sm", header_color: "success_subtle" }) do %>
94
+ <%= pb_rails("body", props: { text: "Success Subtle" }) %>
95
+ <% end %>
96
+ <%= pb_rails("card/card_body", props: { padding: "md" }) do %>
97
+ Body
98
+ <% end %>
99
+ <% end %>
100
+
101
+ <%= pb_rails("card", props: { padding: "none", header: true, margin_bottom: "sm"}) do %>
102
+ <%= pb_rails("card/card_header", props: { padding: "sm", header_color: "error_subtle" }) do %>
103
+ <%= pb_rails("body", props: { text: "Error Subtle"}) %>
104
+ <% end %>
105
+ <%= pb_rails("card/card_body", props: { padding: "md" }) do %>
106
+ Body
107
+ <% end %>
108
+ <% end %>
@@ -231,6 +231,46 @@ const CardHeader = (props) => {
231
231
  />
232
232
  </Card.Body>
233
233
  </Card>
234
+
235
+ <Card
236
+ {...props}
237
+ marginBottom='sm'
238
+ padding="none"
239
+ >
240
+ <Card.Header
241
+ headerColor="success_subtle"
242
+ >
243
+ <Body
244
+ text="Success Subtle"
245
+ />
246
+ </Card.Header>
247
+ <Card.Body>
248
+ <Body
249
+ {...props}
250
+ text="Body"
251
+ />
252
+ </Card.Body>
253
+ </Card>
254
+
255
+ <Card
256
+ {...props}
257
+ marginBottom='sm'
258
+ padding="none"
259
+ >
260
+ <Card.Header
261
+ headerColor="error_subtle"
262
+ >
263
+ <Body
264
+ text="Error Subtle"
265
+ />
266
+ </Card.Header>
267
+ <Card.Body>
268
+ <Body
269
+ {...props}
270
+ text="Body"
271
+ />
272
+ </Card.Body>
273
+ </Card>
234
274
  </>
235
275
  )
236
276
  }