This repository was archived by the owner on Mar 6, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"description":"@original ons-bottom-toolbar\n@category page\n@description\n[en] Back button component for Toolbar. It enables to automatically to pop the top page of the navigator. When only presented with one page, the button is hidden automatically. [/en]\n[jp][/jp]\n@example\n<BottomToolbar modifier=\"material\"> Content </BottomToolbar>","methods":[{"name":"_getDomNodeName","docblock":null,"modifiers":[],"params":[],"returns":null}],"props":{"modifier":{"type":{"name":"string"},"required":false,"description":"@name modifier\n@type string\n@description\n [en]\n Specify modifier name to specify custom styles. Optional.\n [/en]\n [jp][/jp]"}}} | ||
{"description":"@original ons-bottom-toolbar\n@category page\n@description\n[en]Toolbar component that is positioned at the bottom of the page.[/en]\n[jp][/jp]\n@example\n<BottomToolbar modifier=\"material\"> Content </BottomToolbar>","methods":[{"name":"_getDomNodeName","docblock":null,"modifiers":[],"params":[],"returns":null}],"props":{"modifier":{"type":{"name":"string"},"required":false,"description":"@name modifier\n@type string\n@description\n [en]Specify modifier name to specify custom styles. Optional.[/en]\n [jp][/jp]"}}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"description":"@original ons-carousel\n@category carousel\n@tutorial react/Reference/carousel\n@description\n[en] Carousel component. A carousel can be used to display several items in the same space.\n The component supports displaying content both horizontally and vertically. The user can scroll through the items by dragging and it can also be controller programmatically.\n [/en]\n[jp][/jp]\n@example\n <Carousel\n onPostChange={() => console.log('onPostChange')}\n onOverscroll={() => console.log('onOverscroll')}\n onRefresh={() => console.log('onRefresh')}\n ref='carousel' swipeable overscrollable autoScroll fullscreen autoScrollRatio={0.2}>\n <CarouselItem style={{backgroundColor: 'gray'}}>\n <div className='item-label'>GRAY</div>\n </CarouselItem>\n <CarouselItem style={{backgroundColor: '#085078'}}>\n <div className='item-label'>BLUE</div>\n </CarouselItem>\n </Carousel>","methods":[{"name":"_getDomNodeName","docblock":null,"modifiers":[],"params":[],"returns":null}],"props":{"direction":{"type":{"name":"enum","value":[{"value":"'horizontal'","computed":false},{"value":"'vertical'","computed":false}]},"required":false,"description":"@name direction\n@type string\n@required false\n@description\n [en]The direction of the carousel. Can be either \"horizontal\" or \"vertical\". Default is \"horizontal\".[/en]\n [jp] [/jp]"},"fullscreen":{"type":{"name":"bool"},"required":false,"description":"@name fullscreen\n@type bool\n@description\n [en]If true, the carousel will cover the whole screen.[/en]\n [jp] [/jp]"},"overscrollable":{"type":{"name":"bool"},"required":false,"description":"@name overscrollable\n@type bool\n@description\n [en]If true, the carousel will be scrollable over the edge. It will bounce back when released.[/en]\n [jp] [/jp]"},"centered":{"type":{"name":"bool"},"required":false,"description":"@name centered\n@type bool\n@description\n [en]If true, the carousel then the selected item will be in the center of the carousel instead of the beginning. Useful only when the items are smaller than the carousel.[/en]\n [jp] [/jp]"},"itemWidth":{"type":{"name":"enum","value":[{"value":"React.PropTypes.string","computed":true},{"value":"React.PropTypes.number","computed":true}]},"required":false,"description":"@name itemWidth\n@type number\n@description\n [en]ons-carousel-item's width. Only works when the direction is set to \"horizontal\".[/en]\n [jp] [/jp]"},"itemHeight":{"type":{"name":"enum","value":[{"value":"React.PropTypes.string","computed":true},{"value":"React.PropTypes.number","computed":true}]},"required":false,"description":"@name itemHeight\n@type number\n@description\n [en]ons-carousel-item's height. Only works when the direction is set to \"vertical\".[/en]\n [jp] [/jp]"},"autoScroll":{"type":{"name":"bool"},"required":false,"description":"@name autoScroll\n@type bool\n@description\n [en]If true, the carousel will be automatically scrolled to the closest item border when released.[/en]\n [jp] [/jp]"},"autoScrollRatio":{"type":{"name":"number"},"required":false,"description":"@name autoScrollRatio\n@type number\n@description\n [en]A number between 0.0 and 1.0 that specifies how much the user must drag the carousel in order for it to auto scroll to the next item.[/en]\n [jp] [/jp]"},"swipeable":{"type":{"name":"bool"},"required":false,"description":"@name swipeable\n@type bool\n@description\n [en]If true, the carousel can be scrolled by drag or swipe.[/en]\n [jp] [/jp]"},"disabled":{"type":{"name":"bool"},"required":false,"description":"@name disabled\n@type bool\n@description\n [en]If true, the carousel will be disabled.[/en]\n [jp] [/jp]"},"index":{"type":{"name":"number"},"required":false,"description":"@name index\n@type number\n@description\n [en]Specify the index of the ons-carousel-item to show. Default is 0.[/en]\n [jp] [/jp]"},"autoRefresh":{"type":{"name":"bool"},"required":false,"description":"@name autoRefresh\n@type bool\n@description\n [en]When this attribute is set the carousel will automatically refresh when the number of child nodes change.[/en]\n [jp] [/jp]"},"onPostChange":{"type":{"name":"func"},"required":false,"description":"@name onPostChange\n@type function\n@description\n [en]Called just after the current carousel item has changed. [/en]\n [jp] [/jp]"},"onRefresh":{"type":{"name":"func"},"required":false,"description":"@name onRefresh\n@type function\n@description\n [en]Called when the carousel has been refreshed. [/en]\n [jp] [/jp]"},"onOverscroll":{"type":{"name":"func"},"required":false,"description":"@name onOverscroll\n@type function\n@description\n [en]Called when the carousel has been overscrolled. [/en]\n [jp] [/jp]"},"animationOptions":{"type":{"name":"object"},"required":false,"description":"@name animationOptions\n@type object\n@required false\n@description\n [en]Specify the animation's duration, delay and timing. E.g. `{duration: 0.2, delay: 0.4, timing: 'ease-in'}`.[/en]\n [jp] [/jp]"}}} | ||
{"description":"@original ons-carousel\n@category carousel\n@tutorial react/Reference/carousel\n@description\n[en] Carousel component. A carousel can be used to display several items in the same space.\n The component supports displaying content both horizontally and vertically. The user can scroll through the items by dragging and it can also be controller programmatically.\n [/en]\n[jp][/jp]\n@example\n <Carousel\n onPostChange={() => console.log('onPostChange')}\n onOverscroll={() => console.log('onOverscroll')}\n onRefresh={() => console.log('onRefresh')}\n ref='carousel' swipeable overscrollable autoScroll fullscreen autoScrollRatio={0.2}>\n <CarouselItem style={{backgroundColor: 'gray'}}>\n <div className='item-label'>GRAY</div>\n </CarouselItem>\n <CarouselItem style={{backgroundColor: '#085078'}}>\n <div className='item-label'>BLUE</div>\n </CarouselItem>\n </Carousel>","methods":[{"name":"_getDomNodeName","docblock":null,"modifiers":[],"params":[],"returns":null}],"props":{"direction":{"type":{"name":"enum","value":[{"value":"'horizontal'","computed":false},{"value":"'vertical'","computed":false}]},"required":false,"description":"@name direction\n@type string\n@required false\n@description\n [en]The direction of the carousel. Can be either \"horizontal\" or \"vertical\". Default is \"horizontal\".[/en]\n [jp] [/jp]"},"fullscreen":{"type":{"name":"bool"},"required":false,"description":"@name fullscreen\n@type bool\n@description\n [en]If true, the carousel will cover the whole screen.[/en]\n [jp] [/jp]"},"overscrollable":{"type":{"name":"bool"},"required":false,"description":"@name overscrollable\n@type bool\n@description\n [en]If true, the carousel will be scrollable over the edge. It will bounce back when released.[/en]\n [jp] [/jp]"},"centered":{"type":{"name":"bool"},"required":false,"description":"@name centered\n@type bool\n@description\n [en]If true, the carousel then the selected item will be in the center of the carousel instead of the beginning. Useful only when the items are smaller than the carousel.[/en]\n [jp] [/jp]"},"itemWidth":{"type":{"name":"union","value":[{"name":"string"},{"name":"number"}]},"required":false,"description":"@name itemWidth\n@type number\n@description\n [en]ons-carousel-item's width. Only works when the direction is set to \"horizontal\".[/en]\n [jp] [/jp]"},"itemHeight":{"type":{"name":"union","value":[{"name":"string"},{"name":"number"}]},"required":false,"description":"@name itemHeight\n@type number\n@description\n [en]ons-carousel-item's height. Only works when the direction is set to \"vertical\".[/en]\n [jp] [/jp]"},"autoScroll":{"type":{"name":"bool"},"required":false,"description":"@name autoScroll\n@type bool\n@description\n [en]If true, the carousel will be automatically scrolled to the closest item border when released.[/en]\n [jp] [/jp]"},"autoScrollRatio":{"type":{"name":"number"},"required":false,"description":"@name autoScrollRatio\n@type number\n@description\n [en]A number between 0.0 and 1.0 that specifies how much the user must drag the carousel in order for it to auto scroll to the next item.[/en]\n [jp] [/jp]"},"swipeable":{"type":{"name":"bool"},"required":false,"description":"@name swipeable\n@type bool\n@description\n [en]If true, the carousel can be scrolled by drag or swipe.[/en]\n [jp] [/jp]"},"disabled":{"type":{"name":"bool"},"required":false,"description":"@name disabled\n@type bool\n@description\n [en]If true, the carousel will be disabled.[/en]\n [jp] [/jp]"},"index":{"type":{"name":"number"},"required":false,"description":"@name index\n@type number\n@description\n [en]Specify the index of the ons-carousel-item to show. Default is 0.[/en]\n [jp] [/jp]"},"autoRefresh":{"type":{"name":"bool"},"required":false,"description":"@name autoRefresh\n@type bool\n@description\n [en]When this attribute is set the carousel will automatically refresh when the number of child nodes change.[/en]\n [jp] [/jp]"},"onPostChange":{"type":{"name":"func"},"required":false,"description":"@name onPostChange\n@type function\n@description\n [en]Called just after the current carousel item has changed. [/en]\n [jp] [/jp]"},"onRefresh":{"type":{"name":"func"},"required":false,"description":"@name onRefresh\n@type function\n@description\n [en]Called when the carousel has been refreshed. [/en]\n [jp] [/jp]"},"onOverscroll":{"type":{"name":"func"},"required":false,"description":"@name onOverscroll\n@type function\n@description\n [en]Called when the carousel has been overscrolled. [/en]\n [jp] [/jp]"},"animationOptions":{"type":{"name":"object"},"required":false,"description":"@name animationOptions\n@type object\n@required false\n@description\n [en]Specify the animation's duration, delay and timing. E.g. `{duration: 0.2, delay: 0.4, timing: 'ease-in'}`.[/en]\n [jp] [/jp]"}}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"description":"@original ons-fab\n@category form\n@tutorial react/Reference/fab\n@description\n[en] The Floating action button is a circular button defined in the [Material Design specification](https://www.google.com/design/spec/components/buttons-floating-action-button.html). They are often used to promote the primary action of the app.\n It can be displayed either as an inline element or in one of the corners. Normally it will be positioned in the lower right corner of the screen.\n [/en]\n[jp][/jp]\n@example\n<SpeedDial disabled={false} direction='right' onClick={() => console.log('test1')} position='left bottom'>\n <Fab>\n <Icon icon='fa-twitter' size={26} fixedWidth={false} style={{verticalAlign: 'middle'}} />\n </Fab>\n <SpeedDialItem onClick={() => console.log('speed A')}> A </SpeedDialItem>\n <SpeedDialItem onClick={() => console.log('speed B')}> B </SpeedDialItem>\n <SpeedDialItem onClick={() => console.log('speed C')}> C </SpeedDialItem>\n <SpeedDialItem onClick={() => console.log('speed D')}> D </SpeedDialItem>\n </SpeedDial>","methods":[{"name":"_getDomNodeName","docblock":null,"modifiers":[],"params":[],"returns":null}],"props":{"modifier":{"type":{"name":"string"},"required":false,"description":"@name modifier\n@type string\n@required false\n@description\n [en]The appearance of the button.[/en]\n [jp] [/jp]"},"ripple":{"type":{"name":"bool"},"required":false,"description":"@name ripple\n@type bool\n@description\n [en]If true, the button will have a ripple effect when tapped.[/en]\n [jp] [/jp]"},"position":{"type":{"name":"string"},"required":false,"description":"@namep position\n@type string\n@required false\n@description\n [en]The position of the button. Should be a string like `\"bottom right\"` or `\"top left\"`. If this attribute is not defined it will be displayed as an inline element.[/en]\n [jp] [/jp]"},"disabled":{"type":{"name":"bool"},"required":false,"description":"@name disabled\n@type bool\n@description\n [en] If true, the button will be disabled. [/en]\n [jp] [/jp]"},"onClick":{"type":{"name":"func"},"required":false,"description":"@name onClick\n@type function\n@description\n [en] This function will be called ones the button is clicked. [/en]\n [jp] [/jp]"}}} | ||
{"description":"@original ons-fab\n@category form\n@tutorial react/Reference/fab\n@description\n[en] The Floating action button is a circular button defined in the [Material Design specification](https://www.google.com/design/spec/components/buttons-floating-action-button.html). They are often used to promote the primary action of the app.\n It can be displayed either as an inline element or in one of the corners. Normally it will be positioned in the lower right corner of the screen.\n [/en]\n[jp][/jp]\n@example\n<SpeedDial disabled={false} direction='right' onClick={() => console.log('test1')} position='left bottom'>\n <Fab>\n <Icon icon='fa-twitter' size={26} fixedWidth={false} style={{verticalAlign: 'middle'}} />\n </Fab>\n <SpeedDialItem onClick={() => console.log('speed A')}> A </SpeedDialItem>\n <SpeedDialItem onClick={() => console.log('speed B')}> B </SpeedDialItem>\n <SpeedDialItem onClick={() => console.log('speed C')}> C </SpeedDialItem>\n <SpeedDialItem onClick={() => console.log('speed D')}> D </SpeedDialItem>\n </SpeedDial>","methods":[{"name":"_getDomNodeName","docblock":null,"modifiers":[],"params":[],"returns":null}],"props":{"modifier":{"type":{"name":"string"},"required":false,"description":"@name modifier\n@type string\n@required false\n@description\n [en]The appearance of the button.[/en]\n [jp] [/jp]"},"ripple":{"type":{"name":"bool"},"required":false,"description":"@name ripple\n@type bool\n@description\n [en]If true, the button will have a ripple effect when tapped.[/en]\n [jp] [/jp]"},"position":{"type":{"name":"string"},"required":false,"description":"@name position\n@type string\n@required false\n@description\n [en]The position of the button. Should be a string like `\"bottom right\"` or `\"top left\"`. If this attribute is not defined it will be displayed as an inline element.[/en]\n [jp] [/jp]"},"disabled":{"type":{"name":"bool"},"required":false,"description":"@name disabled\n@type bool\n@description\n [en] If true, the button will be disabled. [/en]\n [jp] [/jp]"},"onClick":{"type":{"name":"func"},"required":false,"description":"@name onClick\n@type function\n@description\n [en] This function will be called ones the button is clicked. [/en]\n [jp] [/jp]"}}} |
Oops, something went wrong.