Commit Graph

98 Commits

Author SHA1 Message Date
Liam DeBeasi
e585a22ac9 chore(): change contributing link text (#21121) 2020-04-23 15:57:18 -04:00
Liam DeBeasi
395d7ec5a3 chore(): add extra lines for ionitron message (#21120) 2020-04-23 15:53:02 -04:00
Liam DeBeasi
71c7284ed5 chore(): update contributing docs, update ionitron bot (#21117) 2020-04-23 15:44:21 -04:00
Brandy Carney
fe175380d2 chore(github): remove weekly digest 2020-04-15 16:15:47 -04:00
Masahiko Sakakibara
59d064979f chore(github): update issue template to include v5 (#20232) 2020-01-24 13:11:56 -05:00
Brandy Carney
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
Brandy Carney
4ed525dbac chore(github): add weekly digest 2019-10-18 12:07:02 -04:00
Brandy Carney
2981eaa501 docs(contributing): add an example of multi-line breaking changes 2019-10-15 13:14:48 -04:00
Brandy Carney
c1bff121d9 docs(contributing): update commit message guidelines 2019-10-15 12:21:44 -04:00
Brandy Carney
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
Brandy Carney
3e1dfc657b chore(github): update issue template to include stackblitz 2019-07-31 16:49:28 -04:00
Matthew Harris
cf27063aae docs(process): tiny typos (#18855) 2019-07-23 01:36:49 +02:00
Liam DeBeasi
eb9bad7a31 chore(): revise process doc (#18530) 2019-06-12 16:20:51 -04:00
Brandy Carney
8097f578f4 docs(process): update release process 2019-04-17 15:59:01 -04:00
Liam DeBeasi
0d17e05edc chore(docs): update PR wording 2019-04-09 11:13:35 -04:00
Brandy Carney
d87170db3a docs(github): update pull request template 2019-04-08 12:07:51 -04:00
Liam DeBeasi
a512287e4b chore(): add label for capacitor issues 2019-04-05 08:51:15 -04:00
Brandy Carney
48814ab134 chore(github): update issue template title 2019-04-04 16:29:30 -04:00
Brandy Carney
28249924a8 chore(github): update issue template title 2019-04-04 16:28:27 -04:00
Brandy Carney
e620d813b3 chore(github): update issue template title 2019-04-04 16:26:49 -04:00
Liam DeBeasi
06c4233a54 change I to lowercase 2019-04-03 12:16:48 -04:00
Liam DeBeasi
9585723dda chore(): update release process to document version branches 2019-04-03 12:13:35 -04:00
Brandy Carney
b47c53df72 docs(issues): update bot to add more line breaks 2019-03-29 12:57:38 -04:00
Brandy Carney
fdd424a2c0 docs(issues): update issue bot to comment on help wanted issues 2019-03-29 11:50:25 -04:00
pwespi
29d0d0ef28 chore(): update beta url refs #17900) 2019-03-28 08:29:20 -04:00
Liam DeBeasi
9b71e47e0b clarify wording on process doc 2019-03-20 13:20:50 -04:00
Brandy Carney
7e6d511969 docs(process): update process document (#17581) 2019-03-06 14:00:48 -05:00
Brandy Carney
4d56dfe2ee docs(process): update process documentation 2019-02-19 12:24:46 -05:00
Brandy Carney
f9cc2c5947 chore(github): update issue templates (#17433) 2019-02-11 14:34:57 -05:00
Brandy Carney
9ffb4ef57a chore(github): update issue template 2019-02-07 16:17:12 -05:00
Abdelaziz Bennouna
39c119ab4b docs(contributing): specify how to preview changes in RTL (#17173) 2019-01-22 12:27:03 -05:00
Brandy Carney
82457d874b fix(action-sheet): remove the height shift on press and update iOS design (#16862)
This changes the border into a linear gradient background image which allows us to avoid the height decrease on press and have the same border as the background color when pressed.

- merges all action sheet tests to the basic directory (except standalone, translucent), references #16715
- removes the height shift on press, fixes #16790
- fixes the cancel button on iOS so it is `#ffffff` by default
- gets the look of the action sheet closer to native for iOS
- only applies the translucent and backdrop filter if it is supported by the browser (chrome will not show transparent anymore)
- updates documentation to describe when translucent will show up
- adds documentation on how to use screenshot tests
2019-01-10 18:13:31 -05:00
Paul Stelzer
ec83e994ef docs(contributing): update steps for v4 (#16705)
resolves #16672
2018-12-18 09:54:36 -05:00
Paul Stelzer
0c61e79268 chore(issues): fix Ionic Appflow support link (#16640) 2018-12-07 16:47:51 -05:00
Paul Stelzer
7c30689001 chore(issues): update the issue templates (#16578) 2018-12-07 11:07:01 -05:00
dwieeb
f0e0ac876d chore(github): revert text for v3 label (#16522) 2018-11-29 14:50:37 -06:00
Brandy Carney
4858bab3f9 chore(bot): update bot to use latest labels (#16513) 2018-11-29 13:22:46 -05:00
dwieeb
194667c62a chore(github): line breaks for move comment (#16501) 2018-11-28 15:22:40 -06:00
dwieeb
84d76c8630 chore(github): rewording in case of move mistake (#16500) 2018-11-28 15:13:19 -06:00
dwieeb
2f66ae4f62 chore: extract v3 into its own repository (#16131)
These should be the necessary changes to move v3 source code & issues to the new home for Ionic 3: https://github.com/ionic-team/ionic-v3
2018-10-29 15:10:29 -05:00
dwieeb
ee902e6e98 chore(screenshot): new config to operate on checks (#16112) 2018-10-26 17:25:29 -05:00
dwieeb
0602b6d1de chore(screenshot): add configuration (#16007) 2018-10-18 18:03:59 -05:00
Brandy Carney
a8f0f0d6c9 docs(process): add table of contents (#15990) 2018-10-17 14:23:32 -04:00
dwieeb
d33c6efb5a docs(process): add workflow docs (#15968) 2018-10-16 13:46:24 -05:00
Joseli.to
fe0c3b42ae fix(docs): Fix commit link on CONTRIBUTING.md (#15834) 2018-10-02 17:50:22 -05:00
Ken Sodemann
ec34f7283b chore(bot): exempt assigned from the stale auto-close task 2018-09-10 09:28:04 -05:00
Ken Sodemann
f15e994b98 chore(bot): put the lock message back
It looks like we are down to just a trickle of locks here and there.
2018-09-10 08:19:11 -05:00
Ken Sodemann
4b9cb730d5 chore(bot): comment out the lock message again
Looks like it is still plugging away.
2018-09-09 14:21:03 -05:00
Ken Sodemann
db69161e4f chore(bot): put the locking message back in 2018-09-09 14:03:53 -05:00
Ken Sodemann
abc9afcc35 chore(bot): quiet the bot during the "lock closed" task
This message should be put back in eventually:

  message: >
    Thanks for the issue! This issue is being locked to prevent comments that are not relevant to the original issue.
    If this is still an issue with the latest version of Ionic, please create a new issue and ensure the template is fully filled out.
2018-09-06 14:09:46 -05:00