426 Commits

Author SHA1 Message Date
3134e0afcd chore(): fix form template typos (#23635) 2021-07-14 19:31:04 -04:00
6d94a27fb9 chore(): convert remaining issue templates to forms (#23634) 2021-07-14 18:54:18 -04:00
d2ca304c12 chore(): use supported form keys (#23633) 2021-07-14 16:26:48 -04:00
e35386a52d chore(): fix yaml errors (#23632) 2021-07-14 15:50:34 -04:00
d10d9f9f74 chore(): fix bug issue name (#23630) 2021-07-14 15:18:49 -04:00
c940bd18d2 chore(): use new github form template for bug reports (#23629) 2021-07-14 14:49:30 -04:00
1bb01c7634 fix merge conflicts 2021-07-01 12:08:32 -04:00
508f1a46fb chore(): add 6.x to bug report template (#23493) 2021-06-23 09:27:21 -04:00
3130dd3fd8 chore(): add 6.x to feature request template (#23494) 2021-06-23 09:26:25 -04:00
5db60d9697 chore(): resolve merge conflicts 2021-06-21 14:03:47 -04:00
3d474ec67f fix(title): large title scale animation is now correct in rtl mode (#23372)
resolves #23371
2021-05-26 13:40:44 -04:00
7d47c91641 chore(): sync next with main branch 2021-05-26 10:14:38 -04:00
2933531c44 docs(): fix typo in process doc (#23360) 2021-05-25 10:04:13 -04:00
4fb81b7450 chore(): sync with master 2021-04-05 16:40:39 -04:00
4bbbf89f43 chore(): update process guide for needs reproduction label (#23098) 2021-03-24 09:54:12 -04:00
073883a098 feat(accordion): add accordion and accordion-group components (#22865)
resolves #17094
2021-03-24 09:17:54 -04:00
e828a9a693 docs(github): update component guide to include switch (#22994)
adds a notice of webkit bug with VoiceOver
2021-03-03 14:10:05 -05:00
9a02ec8402 chore(): end holiday triage mode (#22741) 2021-01-07 12:20:08 -05:00
67b0853b28 chore(): start holiday triage mode (#22700) 2020-12-18 17:32:02 -05:00
bb519b8724 chore(): update "needs reproduction" wording for clarity (#22520) 2020-11-19 09:46:58 -05:00
813611a61b fix(toggle): use a native input to fix a11y issues with axe and screen readers (#22477)
fixes #22011
references #21552
2020-11-12 15:29:05 -05:00
7214a8401b fix(checkbox): use a native input to fix a11y issues with axe and screen readers (#22402)
fixes #21644
fixes #20517
fixes #17796
2020-11-12 11:25:33 -05:00
b885299082 chore(): point people to the forum (#22361)
Co-authored-by: Brandy Carney <brandyscarney@users.noreply.github.com>
2020-10-29 16:42:50 -04:00
a8fbb34844 chore(github): add pull request labeler for packages (#22219) 2020-09-30 18:10:25 -04:00
7c8f621536 chore(template): add v5.0 option to issue templates (#21498) 2020-06-11 11:21:18 -04:00
187917c746 chore(): exempt bugs and feature requests from stale issues (#21435) 2020-06-05 09:45:27 -04:00
ec4c0fe5bd chore(): revert changes until bot is updated (#21332)
This reverts commit cc780c80b2c2575ef7f90c757854601ceeffdabd.
2020-05-18 13:48:39 -04:00
cc780c80b2 chore(): update bot template to properly close issues (#21330) 2020-05-18 13:40:37 -04:00
e585a22ac9 chore(): change contributing link text (#21121) 2020-04-23 15:57:18 -04:00
395d7ec5a3 chore(): add extra lines for ionitron message (#21120) 2020-04-23 15:53:02 -04:00
71c7284ed5 chore(): update contributing docs, update ionitron bot (#21117) 2020-04-23 15:44:21 -04:00
fe175380d2 chore(github): remove weekly digest 2020-04-15 16:15:47 -04:00
59d064979f chore(github): update issue template to include v5 (#20232) 2020-01-24 13:11:56 -05:00
94159291b2 feat(components): improve button states and add new css properties (#19440)
Before users had to know the exact opacity that the MD/iOS spec called for in order to change the hover or focused background color. This allows them to change the background without having to know the opacity. 

- changes apply to Action Sheet (Buttons), Back Button, Button, FAB Button, Item, Menu Button, Segment Button, Tab Button
- greatly reduces the requirement by users to set the background hover, focused states for dark modes and custom themes, also eliminates the need to know what the hover opacity is for each based on the spec
- updates the MD dark theme per their spec
- adds a component guide for internal use changing Ionic components

references #18279 fixes #20213 fixes #19965

BREAKING CHANGE:

*Activated Class*

The `activated` class that is automatically added to buttons on press has been renamed to `ion-activated`. This will be more consistent with our `ion-focused` class we add and also will reduce conflicts with user's CSS.

*CSS Variables*

The `--background-hover`, `--background-focused` and `--background-activated` CSS variables on components that render native buttons will now have an opacity automatically set. If you are setting any of these like the following:

```
--background-hover: rgba(44, 44, 44, 0.08);
```

You will likely not see a hover state anymore. It should be updated to only set the desired color:

```
--background-hover: rgba(44, 44, 44);
```

If the opacity desired is something other than what the spec asks for, use:

```
--background-hover: rgba(44, 44, 44);
--background-hover-opacity: 1;
```
2020-01-23 16:57:47 -05:00
4ed525dbac chore(github): add weekly digest 2019-10-18 12:07:02 -04:00
2981eaa501 docs(contributing): add an example of multi-line breaking changes 2019-10-15 13:14:48 -04:00
c1bff121d9 docs(contributing): update commit message guidelines 2019-10-15 12:21:44 -04:00
94c13c2994 chore(scripts): update release script to include tag for rc
- adds support for changing the tag from `latest` to `next`
- checks the user's confirmation on the prepare and tag to end the script if the user selects no
- adds support for passing --dry-run to see what the publish will be
2019-10-14 20:07:55 -04:00
3e1dfc657b chore(github): update issue template to include stackblitz 2019-07-31 16:49:28 -04:00
cf27063aae docs(process): tiny typos (#18855) 2019-07-23 01:36:49 +02:00
eb9bad7a31 chore(): revise process doc (#18530) 2019-06-12 16:20:51 -04:00
8097f578f4 docs(process): update release process 2019-04-17 15:59:01 -04:00
0d17e05edc chore(docs): update PR wording 2019-04-09 11:13:35 -04:00
d87170db3a docs(github): update pull request template 2019-04-08 12:07:51 -04:00
a512287e4b chore(): add label for capacitor issues 2019-04-05 08:51:15 -04:00
48814ab134 chore(github): update issue template title 2019-04-04 16:29:30 -04:00
28249924a8 chore(github): update issue template title 2019-04-04 16:28:27 -04:00
e620d813b3 chore(github): update issue template title 2019-04-04 16:26:49 -04:00
06c4233a54 change I to lowercase 2019-04-03 12:16:48 -04:00
9585723dda chore(): update release process to document version branches 2019-04-03 12:13:35 -04:00