playbook_ui_docs 13.34.0.pre.alpha.PLAY14143372 → 13.34.1.pre.alpha.PLAY14633399

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: f914ec3c48854fe0b3fba8d5a37a4c72658cc9871171b2ca94122fa8fe7ca94d
4
- data.tar.gz: f7f497250a099a0cc83ecdc7bdfb49e7fb3ec70025ee59e2b1ab878cfe5e33de
3
+ metadata.gz: 29b7dfa9fecc4f3e494dbc8ecbb33e0a6a9860ecbf3d963b2b96335b49f5c333
4
+ data.tar.gz: 39f79e2c5703cbcebf1c4a8bf52c636fa0915cd3d1244a9f3b775b8683f95a90
5
5
  SHA512:
6
- metadata.gz: 86bf27f57b32ff4a67fa404da16901994ae7a499b4c23d621c399aca435c5e4e5870750e10d210016c73ec4e1ec988456aef45f8e0778b1a6f46b274b971965e
7
- data.tar.gz: 58b0478bb69e07cca9e60b41bcff6213eed4965443a8a132d090c1b84607ae0322b018c91c2a1c8393ac9a5086596878e9a9e834da72738bbd6e0002fb34ce1f
6
+ metadata.gz: 13fdcf53821ba39cbd3cd97536de1af8e54f35d25438e464d56e55a1186e3efcb797e625573edb5a37aee271c588c637e7e15cfcb27ca7941d4ba80b313944b7
7
+ data.tar.gz: 6d3348808e35cadafe4b70fb2f99624465d00b21232c93fca38cc9808297ee7315d9aa47630e3a4583a478f98239d0222adc718fc29282a2d0013e4c68ed9d2c
@@ -1,4 +1,3 @@
1
- /* eslint-disable jsx-control-statements/jsx-use-if-tag */
2
1
  import React, { useState } from 'react'
3
2
  import { Flex, Image } from 'playbook-ui'
4
3
  import Lightbox from '../_lightbox.tsx'
@@ -1,4 +1,3 @@
1
- /* eslint-disable jsx-control-statements/jsx-use-if-tag */
2
1
  import React, { useState } from 'react'
3
2
  import { Flex, Image, Button, Body, FlexItem } from 'playbook-ui'
4
3
  import Lightbox from '../_lightbox.tsx'
@@ -1,4 +1,3 @@
1
- /* eslint-disable jsx-control-statements/jsx-use-if-tag */
2
1
  import React, { useState } from "react";
3
2
  import { Flex, Image, Title, Pill } from "playbook-ui";
4
3
  import Lightbox from "../_lightbox.tsx";
@@ -1,4 +1,3 @@
1
- /* eslint-disable jsx-control-statements/jsx-use-if-tag */
2
1
  import React, { useState } from 'react'
3
2
  import { Flex, Image } from 'playbook-ui'
4
3
  import Lightbox from '../_lightbox.tsx'
@@ -1,4 +1,3 @@
1
- /* eslint-disable jsx-control-statements/jsx-use-if-tag */
2
1
  import React, { useState } from 'react'
3
2
  import { Flex, Image } from 'playbook-ui'
4
3
  import Lightbox from '../_lightbox.tsx'
@@ -5,12 +5,12 @@ import TextInput from '../../pb_text_input/_text_input'
5
5
  import Title from '../../pb_title/_title'
6
6
 
7
7
  const TextInputDefault = (props) => {
8
+ const [firstName, setFirstName] = useState('')
8
9
  const handleOnChangeFirstName = ({ target }) => {
9
10
  setFirstName(target.value)
10
11
  }
11
12
  const ref = React.createRef()
12
13
 
13
- const [firstName, setFirstName] = useState('')
14
14
  const [formFields, setFormFields] = useState({
15
15
  firstName: 'Jane',
16
16
  lastName: 'Doe',