@toptal/picasso-charts 59.0.1-alpha-feature-tailwind-w21-1898583fe.57 → 59.0.1-alpha-fx-5530-environmentbanner-1d40522f1.101
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.
- package/package.json +4 -5
- package/src/story/index.jsx +7 -4
    
        package/package.json
    CHANGED
    
    | @@ -1,6 +1,6 @@ | |
| 1 1 | 
             
            {
         | 
| 2 2 | 
             
              "name": "@toptal/picasso-charts",
         | 
| 3 | 
            -
              "version": "59.0.1-alpha- | 
| 3 | 
            +
              "version": "59.0.1-alpha-fx-5530-environmentbanner-1d40522f1.101+1d40522f1",
         | 
| 4 4 | 
             
              "description": "Charts components of Picasso",
         | 
| 5 5 | 
             
              "author": "Toptal",
         | 
| 6 6 | 
             
              "license": "MIT",
         | 
| @@ -29,11 +29,10 @@ | |
| 29 29 | 
             
              },
         | 
| 30 30 | 
             
              "devDependencies": {
         | 
| 31 31 | 
             
                "@types/d3": "^7.4.0",
         | 
| 32 | 
            -
                "@types/d3-array": "3.0.4" | 
| 33 | 
            -
                "storybook-readme": "^5.0.9"
         | 
| 32 | 
            +
                "@types/d3-array": "3.0.4"
         | 
| 34 33 | 
             
              },
         | 
| 35 34 | 
             
              "dependencies": {
         | 
| 36 | 
            -
                "@toptal/picasso-utils": "1.0.4-alpha- | 
| 35 | 
            +
                "@toptal/picasso-utils": "1.0.4-alpha-fx-5530-environmentbanner-1d40522f1.101+1d40522f1",
         | 
| 37 36 | 
             
                "classnames": "^2.5.1",
         | 
| 38 37 | 
             
                "d3-array": "^3.2.2",
         | 
| 39 38 | 
             
                "debounce": "^1.2.1",
         | 
| @@ -48,5 +47,5 @@ | |
| 48 47 | 
             
                "!dist-package/tsconfig.tsbuildinfo",
         | 
| 49 48 | 
             
                "src"
         | 
| 50 49 | 
             
              ],
         | 
| 51 | 
            -
              "gitHead": " | 
| 50 | 
            +
              "gitHead": "1d40522f1bce32586aabee5e24d7366183f47611"
         | 
| 52 51 | 
             
            }
         | 
    
        package/src/story/index.jsx
    CHANGED
    
    | @@ -1,10 +1,13 @@ | |
| 1 | 
            -
            import {  | 
| 2 | 
            -
             | 
| 1 | 
            +
            import { createMarkdownPage } from '~/.storybook/components/Markdown'
         | 
| 3 2 | 
             
            import PicassoBook from '~/.storybook/components/PicassoBook'
         | 
| 4 3 | 
             
            import README from '../../README.md'
         | 
| 5 4 | 
             
            import CHANGELOG from '../../CHANGELOG.md'
         | 
| 6 5 |  | 
| 7 6 | 
             
            const section = PicassoBook.section('Picasso Charts')
         | 
| 8 7 |  | 
| 9 | 
            -
            section.createDocPage('README',  | 
| 10 | 
            -
             | 
| 8 | 
            +
            section.createDocPage('README', createMarkdownPage(README), {
         | 
| 9 | 
            +
              alwaysOnTop: true,
         | 
| 10 | 
            +
            })
         | 
| 11 | 
            +
            section.createDocPage('CHANGELOG', createMarkdownPage(CHANGELOG), {
         | 
| 12 | 
            +
              alwaysOnTop: true,
         | 
| 13 | 
            +
            })
         |