playbook_ui_docs 13.31.0.pre.alpha.powercentrainplaybookpt23212 → 13.31.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d441e50f00946e7fd02767217ed170a78da47b8aaa63652e700873c75718bf40
4
- data.tar.gz: f7e8bf2bcb450d1b07e6e346c0b68a554992d8637c7521cc42b98d7350a36383
3
+ metadata.gz: feb3f7b0088898a56fd33f513dc7c8b3ab7cc1bfcb4f405e5aba095ddf6c4e9c
4
+ data.tar.gz: 4a0f3a03d13e89a26268dfdde7e7d151c3398f82465468378c26d53287a6611d
5
5
  SHA512:
6
- metadata.gz: 3a6166b44023fe8117f3a9434e485507ecb2dd5fae84b25626bb60e92a816dddc4d5b251dbd79f26a91426a78d980120f1471ac557fdc4ee480d778a5a90ca07
7
- data.tar.gz: 6b631e15afb3103a1302cae21bfaaa0930621280fb12692ff26f4d71758d04974483f82f8d36fb04dba1a864d831cd025a890179487e6c132b71e24ebb515ecf
6
+ metadata.gz: 49aee6ca71429ab79d36cd539f27dc2b4a389b0e1470f6b8cceabfe2d0110f00af73df3239dfbd685b7a525fe206841681abf05d7f1d2774771079fbd3bccc83
7
+ data.tar.gz: 73eb5c34285155897770c87eb236b8b8f6064f71efaedc8c544155c246144033f1d4ab61cd93f31ccd06d716983b47a0f4bb7cb5ee42899054f51e470d616505
@@ -4,10 +4,7 @@ import { DateYearStacked } from '../../'
4
4
  const DateYearStackedDefault = (props) => {
5
5
  return (
6
6
  <div>
7
- <DateYearStacked
8
- date={new Date()}
9
- {...props}
10
- />
7
+ <DateYearStacked date={new Date()} />
11
8
  <DateYearStacked
12
9
  align="center"
13
10
  date={new Date()}
@@ -1,19 +1,23 @@
1
1
  import React, { useState } from "react";
2
- import { Flex, Image, Draggable, DraggableProvider } from "../../";
2
+ import { SelectableList, Draggable, DraggableProvider } from "../../";
3
3
 
4
4
  // Initial items to be dragged
5
5
  const data = [
6
6
  {
7
- id: "21",
8
- url: "https://unsplash.it/500/400/?image=633",
7
+ id: "1",
8
+ text: "Task 1",
9
9
  },
10
10
  {
11
- id: "22",
12
- url: "https://unsplash.it/500/400/?image=634",
11
+ id: "2",
12
+ text: "Task 2",
13
13
  },
14
14
  {
15
- id: "23",
16
- url: "https://unsplash.it/500/400/?image=637",
15
+ id: "3",
16
+ text: "Task 3",
17
+ },
18
+ {
19
+ id: "4",
20
+ text: "Task 4",
17
21
  },
18
22
  ];
19
23
 
@@ -26,19 +30,20 @@ const DraggableDefault = (props) => {
26
30
  onReorder={(items) => setInitialState(items)}
27
31
  >
28
32
  <Draggable.Container {...props}>
29
- <Flex>
30
- {initialState.map(({ id, url }) => (
33
+ <SelectableList variant="checkbox">
34
+ {initialState.map(({ id, text }) => (
31
35
  <Draggable.Item dragId={id}
32
36
  key={id}
33
37
  >
34
- <Image alt={id}
35
- margin="xs"
36
- size="md"
37
- url={url}
38
+ <SelectableList.Item
39
+ label={text}
40
+ name={id}
41
+ value={id}
42
+ {...props}
38
43
  />
39
44
  </Draggable.Item>
40
45
  ))}
41
- </Flex>
46
+ </SelectableList>
42
47
  </Draggable.Container>
43
48
  </DraggableProvider>
44
49
  </>
@@ -1,6 +1,4 @@
1
- The Draggable kit gives you a full subcomponent structure that allows it to be used with almost any kits.
1
+ To use the Draggable kit, you must use the DraggableProvider and pass in `initialItems`. The `onReorder` is a function that returns the data as it changes as items are reordered. Use this to manage state as shown.
2
2
 
3
- `DraggableProvider` = This provider manages all settings that allows drag and drop to function and must be used as the outermost wrapper. It has 2 REQUIRED props: `initialItems` (initial data) and `onReorder` (function that returns mutated data as items are reordered via drag and drop). Devs must manage state as shown.
4
-
5
- `Draggable.Container` = This specifies the container within which items can be dropped.
6
- `Draggable.Item` = This specifies the items that can be dragged and dropped. `dragId` is a REQUIRED prop for Draggable.Item.
3
+ The `Draggable.Container` specifies the container within which items can be dropped.
4
+ The `Draggable.Item` specifies the items that can be dragged and dropped. `dragId` is a REQUIRED prop for Draggable.Item.
@@ -1,9 +1,5 @@
1
- For a simplified version of the Draggable API for the Card kit, you can do the following:
2
-
3
- Use `DraggableProvider` and manage state as shown.
4
-
5
- `Draggable.Container` creates the container within which the cards can be dragged and dropped.
6
-
7
- The Card kit is optimized to work with the draggable kit. To enable drag, use the `draggableItem` and `dragId` props on the Card kit as shown. An additional optional boolean prop (set to true by default) of `dragHandle` is also available to show the drag handle icon.
1
+ For a simplified version of the Draggable API for the Card kit, You can use the the Card kit as the Draggable Item by using the `draggableItem` prop. The dragHandle is added by default but this can be opted out of by setting `dragHandle` to false on the Card kit.
8
2
 
3
+ In addition to the above `dragId` is a REQUIRED prop to be passedd to the Card kit when implementing dragging.
9
4
 
5
+ The dev must manage state as shown.
@@ -1,5 +1,7 @@
1
- For a simplified version of the Draggable API for the List kit, you can do the following:
1
+ For a simplified version of the Draggable API for the List kit, use the DraggableProvider to wrap the List kit and use the `enableDrag` prop.
2
2
 
3
- Use `DraggableProvider` and manage state as shown.
3
+ In addition to the above `dragId` is a REQUIRED prop to be passed to the List kit when implementing dragging.
4
4
 
5
- The List kit is optimized to work with the draggable kit. To enable drag, use the `enableDrag` prop on List kit AND `dragId` prop on ListItem. An additional optional boolean prop (set to true by default) of `dragHandle` is also available on List kit to show the drag handle icon.
5
+ The dev must manage state as shown.
6
+
7
+ The dragHandle is added by default but this can be opted out of by setting `dragHandle` to false on the List kit.
@@ -1,5 +1,7 @@
1
- For a simplified version of the Draggable API for the SelectableList kit, you can do the following:
1
+ For a simplified version of the Draggable API for the SelectableList kit, use the DraggableProvider to wrap the SelectableList kit and use the `enableDrag` prop.
2
2
 
3
- Use `DraggableProvider` and manage state as shown.
3
+ In addition to the above `dragId` is a REQUIRED prop to be passed to the SelectableList kit when implementing dragging.
4
4
 
5
- The SelectableList kit is optimized to work with the draggable kit. To enable drag, use the `enableDrag` prop on SelectableList kit AND `dragId` prop on SelectableList.Item. An additional optional boolean prop (set to true by default) of `dragHandle` is also available on SelectableList kit to show the drag handle icon.
5
+ The dev must manage state as shown.
6
+
7
+ The dragHandle is added by default but this can be opted out of by setting `dragHandle` to false on the SelectableList kit.
@@ -13,14 +13,6 @@
13
13
  ]
14
14
  %>
15
15
 
16
- <%
17
- example_dropdown_options = [
18
- { label: 'United States', value: 'United States', id: 'us' },
19
- { label: 'Canada', value: 'Canada', id: 'ca' },
20
- { label: 'Pakistan', value: 'Pakistan', id: 'pk' },
21
- ]
22
- %>
23
-
24
16
  <%= pb_form_with(scope: :example, method: :get, url: "", validate: true) do |form| %>
25
17
  <%= form.text_field :example_text_field, props: { label: true, required: true } %>
26
18
  <%= form.phone_number_field :example_phone_number_field, props: { label: "Example phone field" } %>
@@ -30,7 +22,6 @@
30
22
  <%= form.password_field :example_password_field, props: { label: true, required: true } %>
31
23
  <%= form.url_field :example_url_field, props: { label: true, required: true } %>
32
24
  <%= form.text_area :example_text_area, props: { label: true, required: true } %>
33
- <%= form.dropdown_field :example_dropdown, props: { label: true, options: example_dropdown_options, required: true } %>
34
25
  <%= form.select :example_select, [ ["Yes", 1], ["No", 2] ], props: { label: true, blank_selection: "Select One...", required: true } %>
35
26
  <%= form.collection_select :example_collection_select, example_collection, :value, :name, props: { label: true, blank_selection: "Select One...", required: true } %>
36
27
  <%= form.check_box :example_checkbox, props: { text: "Example Checkbox", label: true, required: true } %>