{"ast":null,"code":"var _this = this,\n    _jsxFileName = \"/Users/rohitsingh/Documents/projects/new-nativebase-setup/NativeBase/example/storybook/stories/components/primitives/Slider/index.tsx\";\n\nimport React from 'react';\nimport { storiesOf } from '@storybook/react-native';\nimport { withKnobs } from '@storybook/addon-knobs';\nimport Wrapper from \"./../../Wrapper\";\nimport { Example as Usage } from \"./usage\";\nimport { Example as Size } from \"./Size\";\nimport { Example as Vertical } from \"./Vertical\";\nimport { Example as Color } from \"./color\";\nimport { Example as Value } from \"./Value\";\nimport { Example as FormControlled } from \"./FormControlled\";\nimport { Example as Customized } from \"./Customized\";\nimport { Example as Playground } from \"./Playground\";\nimport { Example as Disabled } from \"./isDisabled\";\nimport { Example as ReadOnly } from \"./isReadOnly\";\nstoriesOf('Slider', module).addDecorator(withKnobs).addDecorator(function (getStory) {\n  return React.createElement(Wrapper, null, getStory());\n}).add('Playground', function () {\n  return React.createElement(Playground, null);\n}).add('Usage', function () {\n  return React.createElement(Usage, null);\n}).add('Size', function () {\n  return React.createElement(Size, null);\n}).add('Color', function () {\n  return React.createElement(Color, null);\n}).add('Vertical', function () {\n  return React.createElement(Vertical, null);\n}).add('Value', function () {\n  return React.createElement(Value, null);\n}).add('Customized', function () {\n  return React.createElement(Customized, null);\n}).add('Disabled', function () {\n  return React.createElement(Disabled, null);\n}).add('ReadOnly', function () {\n  return React.createElement(ReadOnly, null);\n}).add('Form Controlled', function () {\n  return React.createElement(FormControlled, null);\n});","map":{"version":3,"sources":["/Users/rohitsingh/Documents/projects/new-nativebase-setup/NativeBase/example/storybook/stories/components/primitives/Slider/index.tsx"],"names":["React","storiesOf","withKnobs","Wrapper","Example","Usage","Size","Vertical","Color","Value","FormControlled","Customized","Playground","Disabled","ReadOnly","module","addDecorator","getStory","add"],"mappings":";;;AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,SAASC,SAAT,QAA0B,yBAA1B;AACA,SAASC,SAAT,QAA0B,wBAA1B;AACA,OAAOC,OAAP;AACA,SAASC,OAAO,IAAIC,KAApB;AACA,SAASD,OAAO,IAAIE,IAApB;AACA,SAASF,OAAO,IAAIG,QAApB;AACA,SAASH,OAAO,IAAII,KAApB;AACA,SAASJ,OAAO,IAAIK,KAApB;AACA,SAASL,OAAO,IAAIM,cAApB;AACA,SAASN,OAAO,IAAIO,UAApB;AACA,SAASP,OAAO,IAAIQ,UAApB;AACA,SAASR,OAAO,IAAIS,QAApB;AACA,SAAST,OAAO,IAAIU,QAApB;AAEAb,SAAS,CAAC,QAAD,EAAWc,MAAX,CAAT,CACGC,YADH,CACgBd,SADhB,EAEGc,YAFH,CAEgB,UAACC,QAAD;AAAA,SAAmB,oBAAC,OAAD,QAAUA,QAAQ,EAAlB,CAAnB;AAAA,CAFhB,EAGGC,GAHH,CAGO,YAHP,EAGqB;AAAA,SAAM,oBAAC,UAAD,OAAN;AAAA,CAHrB,EAIGA,GAJH,CAIO,OAJP,EAIgB;AAAA,SAAM,oBAAC,KAAD,OAAN;AAAA,CAJhB,EAKGA,GALH,CAKO,MALP,EAKe;AAAA,SAAM,oBAAC,IAAD,OAAN;AAAA,CALf,EAMGA,GANH,CAMO,OANP,EAMgB;AAAA,SAAM,oBAAC,KAAD,OAAN;AAAA,CANhB,EAOGA,GAPH,CAOO,UAPP,EAOmB;AAAA,SAAM,oBAAC,QAAD,OAAN;AAAA,CAPnB,EAQGA,GARH,CAQO,OARP,EAQgB;AAAA,SAAM,oBAAC,KAAD,OAAN;AAAA,CARhB,EASGA,GATH,CASO,YATP,EASqB;AAAA,SAAM,oBAAC,UAAD,OAAN;AAAA,CATrB,EAUGA,GAVH,CAUO,UAVP,EAUmB;AAAA,SAAM,oBAAC,QAAD,OAAN;AAAA,CAVnB,EAWGA,GAXH,CAWO,UAXP,EAWmB;AAAA,SAAM,oBAAC,QAAD,OAAN;AAAA,CAXnB,EAYGA,GAZH,CAYO,iBAZP,EAY0B;AAAA,SAAM,oBAAC,cAAD,OAAN;AAAA,CAZ1B","sourcesContent":["import React from 'react';\nimport { storiesOf } from '@storybook/react-native';\nimport { withKnobs } from '@storybook/addon-knobs';\nimport Wrapper from './../../Wrapper';\nimport { Example as Usage } from './usage';\nimport { Example as Size } from './Size';\nimport { Example as Vertical } from './Vertical';\nimport { Example as Color } from './color';\nimport { Example as Value } from './Value';\nimport { Example as FormControlled } from './FormControlled';\nimport { Example as Customized } from './Customized';\nimport { Example as Playground } from './Playground';\nimport { Example as Disabled } from './isDisabled';\nimport { Example as ReadOnly } from './isReadOnly';\n\nstoriesOf('Slider', module)\n  .addDecorator(withKnobs)\n  .addDecorator((getStory: any) => <Wrapper>{getStory()}</Wrapper>)\n  .add('Playground', () => <Playground />)\n  .add('Usage', () => <Usage />)\n  .add('Size', () => <Size />)\n  .add('Color', () => <Color />)\n  .add('Vertical', () => <Vertical />)\n  .add('Value', () => <Value />)\n  .add('Customized', () => <Customized />)\n  .add('Disabled', () => <Disabled />)\n  .add('ReadOnly', () => <ReadOnly />)\n  .add('Form Controlled', () => <FormControlled />);\n"]},"metadata":{},"sourceType":"module"}