13787 Commits

Author SHA1 Message Date
c938054605 fix(datetime): month grid no longer loops on ios (#25857)
resolves #25752
2022-09-01 09:52:00 -04:00
121370e14c merge release-6.2.5
Release 6.2.5
2022-08-31 09:49:29 -05:00
1831381cb2 chore(): update package lock files 2022-08-31 10:24:04 -04:00
699ba2eae3 v6.2.5 v6.2.5 2022-08-31 13:32:58 +00:00
85af6ce436 fix(datetime): only log out of bounds warning if value set (#25835)
resolves #25833
2022-08-30 16:17:29 -04:00
a1171e8bd8 test(accordion): revert test change (#25854)
This reverts commit ac5626182d7097e6782f6389d831ac4c6ba7b681.
2022-08-30 11:52:59 -04:00
ac5626182d test(accordion): avoid scroll assist cloned input (#25853) 2022-08-30 10:59:46 -04:00
3c84d48cfa feat(angular): use standalone components with routing (#25589)
Resolves #25404
2022-08-30 10:38:16 -04:00
ff71ad492d fix(input): clear button is not activated on swipe (#25825)
resolves #24857
2022-08-29 17:41:02 -04:00
527015184e fix(action-sheet): add aria-labelledby (#25837) 2022-08-29 15:47:11 -05:00
9cedfcd3ef refactor(datetime): use key to preserve calendar body ref node (#25838) 2022-08-29 12:49:32 -05:00
8a1b3c5f30 feat(datetime): add header text to multiple selection; improve header consistency between modes (#25817)
Co-authored-by: Sean Perkins <sean@ionic.io>
2022-08-29 11:18:45 -05:00
41e338730d fix(datetime): next and previous buttons have correct labels (#25845)
resolves #25844
2022-08-29 11:27:07 -04:00
373b4ffe21 fix(searchbar): clear button has focus indicator (#25828) 2022-08-26 15:35:58 -04:00
c270756356 fix(searchbar): keypress can activate clear button (#25824) 2022-08-26 11:43:56 -04:00
0436fd7c4f chore(icon): update ionicons dependency (#25834)
resolves #25830
2022-08-26 09:42:15 -04:00
f5a6b5a4c4 refactor(core): remove global hidden attribute (#25829)
resolves #17583

BREAKING CHANGE: 

The `[hidden]` attribute has been removed from Ionic's global stylesheet. The `[hidden]` attribute can continue to be used, but developers will get the [native `hidden` implementation](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/hidden) instead. The main difference is that the native implementation is easier to override using `display` than Ionic's implementation.

Developers can add the following CSS to their global stylesheet if they need the old behavior:

```css
[hidden] {
  display: none !important;
}
```
2022-08-26 09:34:41 -04:00
ed966a68db test(alert): migrate to Playwright (#25826) 2022-08-25 16:55:59 -05:00
9e611f5c03 docs(breaking): add note on platform support for v7 (#25823) 2022-08-25 16:45:36 -04:00
ee3467c9f1 perf(item): remove delegatesFocus patch for iOS 13 (#25822) 2022-08-25 12:34:25 -04:00
79ef1b57dc fix(modal): handleBehavior can be used with controller (#25821)
resolves #25820
2022-08-25 10:14:10 -04:00
1eb6fd04d7 feat(virtual-scroll): remove virtual scroll component (#25808) 2022-08-24 15:42:12 -04:00
3b45ae7132 test(progress-bar): migrate to playwright (#25807) 2022-08-24 11:49:57 -04:00
afd0bbc60a fix(angular): router outlet has mode property (#25816)
resolves #25813
2022-08-24 11:16:38 -04:00
b642243214 merge release-6.2.4
Release 6.2.4
2022-08-24 08:53:54 -05:00
041df0657f chore(angular): run prettier 2022-08-24 09:17:47 -04:00
023e2f48d0 chore(): update package lock files 2022-08-24 13:04:19 +00:00
cdb972a2a3 v6.2.4 v6.2.4 2022-08-24 12:59:50 +00:00
a1ec9aabd8 fix(overlays): dismiss on keydown to avoid chrome for windows and firefox bug (#25811)
resolves #25802

BREAKING CHANGE:

Ionic now listens on the `keydown` event instead of the `keyup` event when determining when to dismiss overlays via the "Escape" key. Any applications that were listening on `keyup` to suppress this behavior should listen on `keydown` instead.
2022-08-23 17:14:56 -04:00
27318d75df fix(alert): use aria-labelledby and aria-describedby instead of aria-label (#25805)
Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>
2022-08-23 15:31:00 -05:00
65af865db7 test(vue): add multi-version testing (#25785) 2022-08-23 16:05:34 -04:00
037d579b2a fix(modal): role attribute can be customized (#25804) 2022-08-23 14:37:58 -04:00
a39d776f08 fix(react): duplicate page transitions do not happen on react 18 (#25798)
resolves #25797
2022-08-23 14:19:38 -04:00
30200051bb fix(vue): lifecycles now fire on tabs pages (#25786)
resolves #25784
2022-08-23 13:17:45 -04:00
ae6aa0cb8e chore(eslint): add strict-boolean-expressions rule (#25768) 2022-08-23 11:50:02 -05:00
71fad3884b fix(breadcrumb): separator is not announced by narrators (#25796) 2022-08-23 12:23:00 -04:00
d75386baef Merge pull request #25806 from ionic-team/sync-with-main
chore(): sync feature-6.3 with main
2022-08-23 11:16:24 -05:00
fe849cf331 Merge remote-tracking branch 'origin/main' into sync-with-main 2022-08-23 10:46:54 -05:00
d395a73cb6 fix(alert): add default aria-label (#25800) 2022-08-22 15:11:58 -05:00
4f24b0e9e3 chore(): update stencil to resolve css hmr issue (#25799) 2022-08-22 15:50:21 -04:00
bd715a5256 fix(refresher): use componentOnReady utility for CE build (#25783)
Resolves #25782
2022-08-22 12:52:47 -04:00
d631195124 fix(select): compareWith passes params in correct order (#25764)
resolves #25759
2022-08-22 11:34:22 -04:00
3b211b60fd fix(datetime): close month/year picker when hidden (#25789)
resolves #25787
2022-08-22 11:15:02 -04:00
08dd3e277b test(angular): add support for multi-version testing (#25665) 2022-08-18 16:46:15 -04:00
436a8ce508 merge release-6.2.3
Release 6.2.3
2022-08-17 13:06:16 -05:00
bfa97a5396 chore(angular): run prettier 2022-08-17 17:23:32 +00:00
419c8d758c chore(): update package lock files 2022-08-17 14:14:39 +00:00
9ed57d83e7 v6.2.3 v6.2.3 2022-08-17 14:10:20 +00:00
2547b0b4e1 chore(ci): account for components.d.ts in clean build (#25769) 2022-08-16 17:17:24 -04:00
bafa759655 fix(css): preserve whitespace in selectors when minifying css (#25767)
Resolves #25766
2022-08-16 16:26:59 -04:00