diff --git a/core/src/components.d.ts b/core/src/components.d.ts index 791481ad8b..830fd1df2a 100644 --- a/core/src/components.d.ts +++ b/core/src/components.d.ts @@ -523,7 +523,7 @@ declare global { */ 'href': string; /** - * When using a router, it specifies the transition direction when navigating a another page usign `href`. + * When using a router, it specifies the transition direction when navigating to another page using `href`. */ 'routerDirection': 'forward' | 'back'; } @@ -553,7 +553,7 @@ declare global { */ 'href'?: string; /** - * When using a router, it specifies the transition direction when navigating a another page usign `href`. + * When using a router, it specifies the transition direction when navigating to another page using `href`. */ 'routerDirection'?: 'forward' | 'back'; } @@ -874,7 +874,7 @@ declare global { */ 'round': boolean; /** - * When using a router, it specifies the transition direction when navigating a another page usign `href`. + * When using a router, it specifies the transition direction when navigating to another page using `href`. */ 'routerDirection': 'forward' | 'back'; /** @@ -952,7 +952,7 @@ declare global { */ 'round'?: boolean; /** - * When using a router, it specifies the transition direction when navigating a another page usign `href`. + * When using a router, it specifies the transition direction when navigating to another page using `href`. */ 'routerDirection'?: 'forward' | 'back'; /** @@ -2915,7 +2915,7 @@ declare global { namespace StencilComponents { interface IonItem { /** - * Whether or not this item should be tappable. If true, a button tag will be rendered. Defaults to `false`. + * If true, a button tag will be rendered and the item will be tappable. Defaults to `false`. */ 'button': boolean; /** @@ -2939,7 +2939,7 @@ declare global { */ 'mode': 'ios' | 'md'; /** - * When using a router, it specifies the transition direction when navigating a another page usign `href`. + * When using a router, it specifies the transition direction when navigating to another page using `href`. */ 'routerDirection': 'forward' | 'back'; } @@ -2965,7 +2965,7 @@ declare global { namespace JSXElements { export interface IonItemAttributes extends HTMLAttributes { /** - * Whether or not this item should be tappable. If true, a button tag will be rendered. Defaults to `false`. + * If true, a button tag will be rendered and the item will be tappable. Defaults to `false`. */ 'button'?: boolean; /** @@ -2989,7 +2989,7 @@ declare global { */ 'mode'?: 'ios' | 'md'; /** - * When using a router, it specifies the transition direction when navigating a another page usign `href`. + * When using a router, it specifies the transition direction when navigating to another page using `href`. */ 'routerDirection'?: 'forward' | 'back'; } @@ -7362,7 +7362,7 @@ declare global { 'itemHeight': ItemHeightFn; 'itemRender': ItemRenderFn; /** - * The data that builds the templates within the virtual scroll. This is the same data that you'd pass to `*ngFor`. It's important to note that when this data has changed, then the entire virtual scroll is reset, which is an expensive operation and should be avoided if possible. + * The data that builds the templates within the virtual scroll. It's important to note that when this data has changed, then the entire virtual scroll is reset, which is an expensive operation and should be avoided if possible. */ 'items': any[]; 'markDirty': (offset: number, len?: number) => void; @@ -7416,7 +7416,7 @@ declare global { 'itemHeight'?: ItemHeightFn; 'itemRender'?: ItemRenderFn; /** - * The data that builds the templates within the virtual scroll. This is the same data that you'd pass to `*ngFor`. It's important to note that when this data has changed, then the entire virtual scroll is reset, which is an expensive operation and should be avoided if possible. + * The data that builds the templates within the virtual scroll. It's important to note that when this data has changed, then the entire virtual scroll is reset, which is an expensive operation and should be avoided if possible. */ 'items'?: any[]; 'nodeHeight'?: NodeHeightFn; diff --git a/core/src/components/anchor/anchor.tsx b/core/src/components/anchor/anchor.tsx index d663689171..2f230d8250 100644 --- a/core/src/components/anchor/anchor.tsx +++ b/core/src/components/anchor/anchor.tsx @@ -14,8 +14,8 @@ export class Anchor { @Prop() href: string; /** - * When using a router, it specifies the transition direction when navigating a - * another page usign `href`. + * When using a router, it specifies the transition direction when navigating to + * another page using `href`. */ @Prop() routerDirection: 'forward' | 'back'; diff --git a/core/src/components/anchor/readme.md b/core/src/components/anchor/readme.md index f8cebf467a..ee01724307 100644 --- a/core/src/components/anchor/readme.md +++ b/core/src/components/anchor/readme.md @@ -19,8 +19,8 @@ If this property is set, an anchor tag will be rendered. string -When using a router, it specifies the transition direction when navigating a -another page usign `href`. +When using a router, it specifies the transition direction when navigating to +another page using `href`. ## Attributes @@ -37,8 +37,8 @@ If this property is set, an anchor tag will be rendered. string -When using a router, it specifies the transition direction when navigating a -another page usign `href`. +When using a router, it specifies the transition direction when navigating to +another page using `href`. diff --git a/core/src/components/button/button.tsx b/core/src/components/button/button.tsx index 21a13ef9ae..2596d8bfd1 100644 --- a/core/src/components/button/button.tsx +++ b/core/src/components/button/button.tsx @@ -55,8 +55,8 @@ export class Button { @Prop() fill: 'clear' | 'outline' | 'solid' | 'default' = 'default'; /** - * When using a router, it specifies the transition direction when navigating a - * another page usign `href`. + * When using a router, it specifies the transition direction when navigating to + * another page using `href`. */ @Prop() routerDirection: 'forward' | 'back'; diff --git a/core/src/components/button/readme.md b/core/src/components/button/readme.md index 51c4f67389..837b817543 100644 --- a/core/src/components/button/readme.md +++ b/core/src/components/button/readme.md @@ -106,8 +106,8 @@ If true, activates a button with rounded corners. string -When using a router, it specifies the transition direction when navigating a -another page usign `href`. +When using a router, it specifies the transition direction when navigating to +another page using `href`. #### size @@ -205,8 +205,8 @@ If true, activates a button with rounded corners. string -When using a router, it specifies the transition direction when navigating a -another page usign `href`. +When using a router, it specifies the transition direction when navigating to +another page using `href`. #### size diff --git a/core/src/components/infinite-scroll/readme.md b/core/src/components/infinite-scroll/readme.md index 74d8ad9548..10e9bc06c2 100644 --- a/core/src/components/infinite-scroll/readme.md +++ b/core/src/components/infinite-scroll/readme.md @@ -12,7 +12,7 @@ on the infinite scroll instance. - {% raw %}{{i}}{% endraw %} + {% raw %}{{i}}{% endraw %} @@ -59,7 +59,7 @@ In case if your async operation returns promise you can utilize - {{item}} + {{item}} diff --git a/core/src/components/item/test/buttons/index.html b/core/src/components/item/test/buttons/index.html index 78799fadbf..dafbaeea9e 100644 --- a/core/src/components/item/test/buttons/index.html +++ b/core/src/components/item/test/buttons/index.html @@ -98,7 +98,7 @@ ion-item right fill="clear" button - + Edit @@ -112,13 +112,13 @@ View - + -

ng-for {{i}}

+

Avatar Start

260k - +
diff --git a/core/src/components/item/test/text/index.html b/core/src/components/item/test/text/index.html index d53cce4560..69a49521d3 100644 --- a/core/src/components/item/test/text/index.html +++ b/core/src/components/item/test/text/index.html @@ -107,8 +107,8 @@ ion-label -
- [item-content] +
+ div
diff --git a/core/src/components/reorder-group/readme.md b/core/src/components/reorder-group/readme.md index 02461d81f9..3bfde2848b 100644 --- a/core/src/components/reorder-group/readme.md +++ b/core/src/components/reorder-group/readme.md @@ -14,7 +14,7 @@ example, the following code works because the items are grouped in the ```html - {% raw %}{{ item }}{% endraw %} + {% raw %}{{ item }}{% endraw %} ``` @@ -23,7 +23,7 @@ However, the below list includes a header that shouldn't be reordered: ```html Header - {% raw %}{{ item }}{% endraw %} + {% raw %}{{ item }}{% endraw %} ``` @@ -34,7 +34,7 @@ group the reorderable items: Header - {% raw %}{{ item }}{% endraw %} + {% raw %}{{ item }}{% endraw %} ``` @@ -59,7 +59,7 @@ See usage below for some examples. Header - {% raw %}{{ item }}{% endraw %} + {% raw %}{{ item }}{% endraw %} ``` @@ -109,7 +109,7 @@ Alternatevely you can execute helper function inside template: Header - {% raw %}{{ item }}{% endraw %} + {% raw %}{{ item }}{% endraw %} ``` diff --git a/core/src/components/virtual-scroll/readme.md b/core/src/components/virtual-scroll/readme.md index 5b50924797..5bd57115c1 100644 --- a/core/src/components/virtual-scroll/readme.md +++ b/core/src/components/virtual-scroll/readme.md @@ -270,9 +270,9 @@ and what data to give to the header template. The function must return The data that builds the templates within the virtual scroll. -This is the same data that you'd pass to `*ngFor`. It's important to note -that when this data has changed, then the entire virtual scroll is reset, -which is an expensive operation and should be avoided if possible. +It's important to note that when this data has changed, then the +entire virtual scroll is reset, which is an expensive operation and +should be avoided if possible. #### nodeHeight @@ -374,9 +374,9 @@ and what data to give to the header template. The function must return The data that builds the templates within the virtual scroll. -This is the same data that you'd pass to `*ngFor`. It's important to note -that when this data has changed, then the entire virtual scroll is reset, -which is an expensive operation and should be avoided if possible. +It's important to note that when this data has changed, then the +entire virtual scroll is reset, which is an expensive operation and +should be avoided if possible. #### node-height diff --git a/core/src/components/virtual-scroll/virtual-scroll.tsx b/core/src/components/virtual-scroll/virtual-scroll.tsx index 2d37b7919f..41b59a4a94 100644 --- a/core/src/components/virtual-scroll/virtual-scroll.tsx +++ b/core/src/components/virtual-scroll/virtual-scroll.tsx @@ -93,9 +93,9 @@ export class VirtualScroll { /** * The data that builds the templates within the virtual scroll. - * This is the same data that you'd pass to `*ngFor`. It's important to note - * that when this data has changed, then the entire virtual scroll is reset, - * which is an expensive operation and should be avoided if possible. + * It's important to note that when this data has changed, then the + * entire virtual scroll is reset, which is an expensive operation and + * should be avoided if possible. */ @Prop() items: any[];