@ebay/ui-core-react 5.11.1 → 5.11.2

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.
@@ -10,7 +10,18 @@ import { EbayListboxButton, EbayListboxButtonOption } from '@ebay/ui-core-react/
10
10
  ## Import following styles from SKIN
11
11
  ```jsx harmony
12
12
  import '@ebay/skin/listbox-button';
13
+
14
+ // Add if you're using floating labels
15
+ import '@ebay/skin/floating-label';
13
16
  ```
17
+ ## Import styles using SCSS/CSS
18
+ ```jsx harmony
19
+ import '@ebay/skin/listbox-button.css'
20
+
21
+ // Add if you're using floating labels
22
+ import '@ebay/skin/floating-label.css';
23
+ ```
24
+
14
25
  ## Usage
15
26
  ```
16
27
  yarn add @ebay/ui-core-react
@@ -11,10 +11,16 @@ import { EbaySelect, EbaySelectOption } from '@ebay/ui-core-react/ebay-select'
11
11
  ## Import following styles from SKIN
12
12
  ```jsx harmony
13
13
  import '@ebay/skin/select';
14
+
15
+ // Add if you're using floating labels
16
+ import '@ebay/skin/floating-label';
14
17
  ```
15
18
  ## Import styles using SCSS/CSS
16
19
  ```jsx harmony
17
20
  import '@ebay/skin/select.css'
21
+
22
+ // Add if you're using floating labels
23
+ import '@ebay/skin/floating-label.css';
18
24
  ```
19
25
 
20
26
  ## Usage
@@ -18,10 +18,16 @@ import { EbayTextbox } from '@ebay/ui-core-react/ebay-textbox'
18
18
  ### Import following styles from SKIN
19
19
  ```jsx harmony
20
20
  import "@ebay/skin/textbox";
21
+
22
+ // Add if you're using floating labels
23
+ import "@ebay/skin/floating-label";
21
24
  ```
22
25
  ### or if using CSS/SCSS
23
26
  ```jsx
24
27
  import "@ebay/skin/textbox.css";
28
+
29
+ // Add if you're using floating labels
30
+ import "@ebay/skin/floating-label.css";
25
31
  ```
26
32
 
27
33
  ```jsx harmony
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ebay/ui-core-react",
3
- "version": "5.11.1",
3
+ "version": "5.11.2",
4
4
  "description": "Skin components build off React",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org"