+
`);
const input = page.locator('ion-input');
@@ -200,4 +200,17 @@ test.describe('input: clear button', () => {
await expect(nativeInput).toBeFocused();
});
+
+ test('should inherit color when used in item with color property', async ({ page }) => {
+ await page.setContent(`
+
+
+
+ `);
+
+ const item = page.locator('ion-item');
+ expect(await item.screenshot()).toMatchSnapshot(
+ `input-with-clear-button-item-color-${page.getSnapshotSettings()}.png`
+ );
+ });
});
diff --git a/core/src/components/input/test/basic/input.e2e.ts-snapshots/input-with-clear-button-item-color-ios-ltr-Mobile-Chrome-linux.png b/core/src/components/input/test/basic/input.e2e.ts-snapshots/input-with-clear-button-item-color-ios-ltr-Mobile-Chrome-linux.png
new file mode 100644
index 0000000000..29f9df8bc5
Binary files /dev/null and b/core/src/components/input/test/basic/input.e2e.ts-snapshots/input-with-clear-button-item-color-ios-ltr-Mobile-Chrome-linux.png differ
diff --git a/core/src/components/input/test/basic/input.e2e.ts-snapshots/input-with-clear-button-item-color-ios-ltr-Mobile-Firefox-linux.png b/core/src/components/input/test/basic/input.e2e.ts-snapshots/input-with-clear-button-item-color-ios-ltr-Mobile-Firefox-linux.png
new file mode 100644
index 0000000000..adbe7cbfd0
Binary files /dev/null and b/core/src/components/input/test/basic/input.e2e.ts-snapshots/input-with-clear-button-item-color-ios-ltr-Mobile-Firefox-linux.png differ
diff --git a/core/src/components/input/test/basic/input.e2e.ts-snapshots/input-with-clear-button-item-color-ios-ltr-Mobile-Safari-linux.png b/core/src/components/input/test/basic/input.e2e.ts-snapshots/input-with-clear-button-item-color-ios-ltr-Mobile-Safari-linux.png
new file mode 100644
index 0000000000..020a770c0f
Binary files /dev/null and b/core/src/components/input/test/basic/input.e2e.ts-snapshots/input-with-clear-button-item-color-ios-ltr-Mobile-Safari-linux.png differ
diff --git a/core/src/components/input/test/basic/input.e2e.ts-snapshots/input-with-clear-button-item-color-md-ltr-Mobile-Chrome-linux.png b/core/src/components/input/test/basic/input.e2e.ts-snapshots/input-with-clear-button-item-color-md-ltr-Mobile-Chrome-linux.png
new file mode 100644
index 0000000000..d1edfee7f5
Binary files /dev/null and b/core/src/components/input/test/basic/input.e2e.ts-snapshots/input-with-clear-button-item-color-md-ltr-Mobile-Chrome-linux.png differ
diff --git a/core/src/components/input/test/basic/input.e2e.ts-snapshots/input-with-clear-button-item-color-md-ltr-Mobile-Firefox-linux.png b/core/src/components/input/test/basic/input.e2e.ts-snapshots/input-with-clear-button-item-color-md-ltr-Mobile-Firefox-linux.png
new file mode 100644
index 0000000000..6fb9add3ef
Binary files /dev/null and b/core/src/components/input/test/basic/input.e2e.ts-snapshots/input-with-clear-button-item-color-md-ltr-Mobile-Firefox-linux.png differ
diff --git a/core/src/components/input/test/basic/input.e2e.ts-snapshots/input-with-clear-button-item-color-md-ltr-Mobile-Safari-linux.png b/core/src/components/input/test/basic/input.e2e.ts-snapshots/input-with-clear-button-item-color-md-ltr-Mobile-Safari-linux.png
new file mode 100644
index 0000000000..c9111934f5
Binary files /dev/null and b/core/src/components/input/test/basic/input.e2e.ts-snapshots/input-with-clear-button-item-color-md-ltr-Mobile-Safari-linux.png differ
diff --git a/core/src/components/item/item.tsx b/core/src/components/item/item.tsx
index f25ac50790..9d3b980fa0 100644
--- a/core/src/components/item/item.tsx
+++ b/core/src/components/item/item.tsx
@@ -405,6 +405,7 @@ export class Item implements ComponentInterface, AnchorInterface, ButtonInterfac
...createColorClasses(this.color, {
item: true,
[mode]: true,
+ 'item-lines-default': lines === undefined,
[`item-lines-${lines}`]: lines !== undefined,
[`item-fill-${fillValue}`]: true,
[`item-shape-${shape}`]: shape !== undefined,
diff --git a/core/src/components/list/list.ios.scss b/core/src/components/list/list.ios.scss
index b3a88c8bee..c0863aa7f9 100644
--- a/core/src/components/list/list.ios.scss
+++ b/core/src/components/list/list.ios.scss
@@ -19,11 +19,6 @@
@include border-radius($list-inset-ios-border-radius);
}
-.list-ios.list-inset ion-item {
- --border-width: 0 0 1px 0;
- --inner-border-width: 0;
-}
-
.list-ios.list-inset ion-item:last-child {
--border-width: 0;
--inner-border-width: 0;
@@ -38,49 +33,27 @@
// iOS No Lines List
// --------------------------------------------------
-.list-ios-lines-none .item {
- --border-width: 0;
- --inner-border-width: 0;
+.list-ios-lines-none .item-lines-default {
+ --inner-border-width: 0px;
+ --border-width: 0px;
}
// iOS Full Lines List
// --------------------------------------------------
-.list-ios-lines-full .item,
-.list-ios .item-lines-full {
+.list-ios-lines-full .item-lines-default {
+ --inner-border-width: 0px;
--border-width: #{0 0 $list-ios-item-border-bottom-width 0};
}
-.list-ios-lines-full .item {
- --inner-border-width: 0;
-}
-
-
// iOS Inset Lines List
// --------------------------------------------------
-.list-ios-lines-inset .item,
-.list-ios .item-lines-inset {
+.list-ios-lines-inset .item-lines-default {
--inner-border-width: #{0 0 $list-ios-item-border-bottom-width 0};
+ --border-width: 0px;
}
-// Remove the border from items in lists
-// if they are explicitly styled by the item
-// to be different than the list
-.list-ios .item-lines-inset {
- --border-width: 0;
-}
-
-.list-ios .item-lines-full {
- --inner-border-width: 0;
-}
-
-.list-ios .item-lines-none {
- --border-width: 0;
- --inner-border-width: 0;
-}
-
-
// iOS List Inside A Card
// --------------------------------------------------
diff --git a/core/src/components/list/list.md.scss b/core/src/components/list/list.md.scss
index ccb58490a7..2c5d896726 100644
--- a/core/src/components/list/list.md.scss
+++ b/core/src/components/list/list.md.scss
@@ -15,7 +15,6 @@
@include position-horizontal(0, null);
}
-
// Material Design Inset List
// --------------------------------------------------
@@ -34,11 +33,6 @@
--inner-border-width: 0;
}
-.list-md.list-inset .item-interactive {
- --padding-start: 0;
- --padding-end: 0;
-}
-
.list-md.list-inset + ion-list.list-inset {
@include margin(0, null, null, null);
}
@@ -47,49 +41,27 @@
// Material Design No Lines List
// --------------------------------------------------
-.list-md-lines-none .item {
- --border-width: 0;
- --inner-border-width: 0;
+.list-md-lines-none .item-lines-default {
+ --inner-border-width: 0px;
+ --border-width: 0px;
}
// Material Design Full Lines List
// --------------------------------------------------
-.list-md-lines-full .item,
-.list-md .item-lines-full {
+.list-md-lines-full .item-lines-default {
+ --inner-border-width: 0px;
--border-width: #{0 0 $list-md-item-border-bottom-width 0};
}
-.list-md-lines-full .item {
- --inner-border-width: 0;
-}
-
-
// Material Design Inset Lines List
// --------------------------------------------------
-.list-md-lines-inset .item,
-.list-md .item-lines-inset {
+.list-md-lines-inset .item-lines-default {
--inner-border-width: #{0 0 $list-md-item-border-bottom-width 0};
+ --border-width: 0px;
}
-// Remove the border from items in lists
-// if they are explicitly styled by the item
-// to be different than the list
-.list-md .item-lines-inset {
- --border-width: 0;
-}
-
-.list-md .item-lines-full {
- --inner-border-width: 0;
-}
-
-.list-md .item-lines-none {
- --border-width: 0;
- --inner-border-width: 0;
-}
-
-
// Material Design List Inside A Card
// --------------------------------------------------
diff --git a/core/src/components/list/test/inset/list.e2e.ts b/core/src/components/list/test/inset/list.e2e.ts
index 69ec0d9e91..7d3c0471c7 100644
--- a/core/src/components/list/test/inset/list.e2e.ts
+++ b/core/src/components/list/test/inset/list.e2e.ts
@@ -2,25 +2,73 @@ import { expect } from '@playwright/test';
import { test } from '@utils/test/playwright';
test.describe('list: inset', () => {
- test.describe('list: rendering', () => {
- test('should not have visual regressions', async ({ page }) => {
- await page.setContent(`
-
-
-
- Pokémon Yellow
- Super Metroid
- Mega Man X
- The Legend of Zelda
- Halo
-
-
-
- `);
+ test.beforeEach(({ skip }) => {
+ skip.rtl();
+ });
+ test('should render full lines while allowing for overrides', async ({ page }) => {
+ await page.setContent(`
+
+
+
+
+
+
+ Pokémon Yellow
+ Super Metroid (with Inset Line)
+ Mega Man X (with No Line)
+ The Legend of Zelda
+ Halo
+
+
+
+ `);
- const listWrapper = page.locator('.wrapper');
+ const listWrapper = page.locator('.wrapper');
- expect(await listWrapper.screenshot()).toMatchSnapshot(`list-inset-diff-${page.getSnapshotSettings()}.png`);
- });
+ expect(await listWrapper.screenshot()).toMatchSnapshot(`list-inset-full-lines-${page.getSnapshotSettings()}.png`);
+ });
+ test('should render inset lines while allowing for overrides', async ({ page }) => {
+ await page.setContent(`
+
+
+
+
+
+
+ Pokémon Yellow
+ Super Metroid (with Full Line)
+ Mega Man X (with No Line)
+ The Legend of Zelda
+ Halo
+
+
+
+ `);
+
+ const listWrapper = page.locator('.wrapper');
+
+ expect(await listWrapper.screenshot()).toMatchSnapshot(`list-inset-inset-lines-${page.getSnapshotSettings()}.png`);
+ });
+ test('should render no lines while allowing for overrides', async ({ page }) => {
+ await page.setContent(`
+
+
+
+
+
+
+ Pokémon Yellow
+ Super Metroid (with Full Line)
+ Mega Man X (with Inset Line)
+ The Legend of Zelda
+ Halo
+
+
+
+ `);
+
+ const listWrapper = page.locator('.wrapper');
+
+ expect(await listWrapper.screenshot()).toMatchSnapshot(`list-inset-no-lines-${page.getSnapshotSettings()}.png`);
});
});
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-ios-ltr-Mobile-Chrome-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-ios-ltr-Mobile-Chrome-linux.png
deleted file mode 100644
index 5c6d9721bd..0000000000
Binary files a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-ios-ltr-Mobile-Chrome-linux.png and /dev/null differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-ios-ltr-Mobile-Firefox-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-ios-ltr-Mobile-Firefox-linux.png
deleted file mode 100644
index acb3c5a19c..0000000000
Binary files a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-ios-ltr-Mobile-Firefox-linux.png and /dev/null differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-ios-ltr-Mobile-Safari-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-ios-ltr-Mobile-Safari-linux.png
deleted file mode 100644
index 35a5d5a8e9..0000000000
Binary files a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-ios-ltr-Mobile-Safari-linux.png and /dev/null differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-ios-rtl-Mobile-Chrome-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-ios-rtl-Mobile-Chrome-linux.png
deleted file mode 100644
index 487e22f7dc..0000000000
Binary files a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-ios-rtl-Mobile-Chrome-linux.png and /dev/null differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-ios-rtl-Mobile-Firefox-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-ios-rtl-Mobile-Firefox-linux.png
deleted file mode 100644
index 4a8f3a556e..0000000000
Binary files a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-ios-rtl-Mobile-Firefox-linux.png and /dev/null differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-ios-rtl-Mobile-Safari-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-ios-rtl-Mobile-Safari-linux.png
deleted file mode 100644
index fd721e900e..0000000000
Binary files a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-ios-rtl-Mobile-Safari-linux.png and /dev/null differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-md-ltr-Mobile-Chrome-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-md-ltr-Mobile-Chrome-linux.png
deleted file mode 100644
index e96cb4d099..0000000000
Binary files a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-md-ltr-Mobile-Chrome-linux.png and /dev/null differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-md-ltr-Mobile-Firefox-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-md-ltr-Mobile-Firefox-linux.png
deleted file mode 100644
index 393901b4a3..0000000000
Binary files a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-md-ltr-Mobile-Firefox-linux.png and /dev/null differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-md-ltr-Mobile-Safari-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-md-ltr-Mobile-Safari-linux.png
deleted file mode 100644
index c3ebbee25c..0000000000
Binary files a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-md-ltr-Mobile-Safari-linux.png and /dev/null differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-md-rtl-Mobile-Chrome-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-md-rtl-Mobile-Chrome-linux.png
deleted file mode 100644
index a9012713ac..0000000000
Binary files a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-md-rtl-Mobile-Chrome-linux.png and /dev/null differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-md-rtl-Mobile-Firefox-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-md-rtl-Mobile-Firefox-linux.png
deleted file mode 100644
index 2fc724e293..0000000000
Binary files a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-md-rtl-Mobile-Firefox-linux.png and /dev/null differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-md-rtl-Mobile-Safari-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-md-rtl-Mobile-Safari-linux.png
deleted file mode 100644
index 016eb3a1d1..0000000000
Binary files a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-diff-md-rtl-Mobile-Safari-linux.png and /dev/null differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-full-lines-ios-ltr-Mobile-Chrome-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-full-lines-ios-ltr-Mobile-Chrome-linux.png
new file mode 100644
index 0000000000..8b8aa8b472
Binary files /dev/null and b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-full-lines-ios-ltr-Mobile-Chrome-linux.png differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-full-lines-ios-ltr-Mobile-Firefox-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-full-lines-ios-ltr-Mobile-Firefox-linux.png
new file mode 100644
index 0000000000..9d2e4b2dd1
Binary files /dev/null and b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-full-lines-ios-ltr-Mobile-Firefox-linux.png differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-full-lines-ios-ltr-Mobile-Safari-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-full-lines-ios-ltr-Mobile-Safari-linux.png
new file mode 100644
index 0000000000..15c2dfe38f
Binary files /dev/null and b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-full-lines-ios-ltr-Mobile-Safari-linux.png differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-full-lines-md-ltr-Mobile-Chrome-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-full-lines-md-ltr-Mobile-Chrome-linux.png
new file mode 100644
index 0000000000..6cf62ce20f
Binary files /dev/null and b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-full-lines-md-ltr-Mobile-Chrome-linux.png differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-full-lines-md-ltr-Mobile-Firefox-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-full-lines-md-ltr-Mobile-Firefox-linux.png
new file mode 100644
index 0000000000..2b7e9a789c
Binary files /dev/null and b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-full-lines-md-ltr-Mobile-Firefox-linux.png differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-full-lines-md-ltr-Mobile-Safari-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-full-lines-md-ltr-Mobile-Safari-linux.png
new file mode 100644
index 0000000000..49e10cb776
Binary files /dev/null and b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-full-lines-md-ltr-Mobile-Safari-linux.png differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-inset-lines-ios-ltr-Mobile-Chrome-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-inset-lines-ios-ltr-Mobile-Chrome-linux.png
new file mode 100644
index 0000000000..45f9356f8f
Binary files /dev/null and b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-inset-lines-ios-ltr-Mobile-Chrome-linux.png differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-inset-lines-ios-ltr-Mobile-Firefox-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-inset-lines-ios-ltr-Mobile-Firefox-linux.png
new file mode 100644
index 0000000000..6758059fef
Binary files /dev/null and b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-inset-lines-ios-ltr-Mobile-Firefox-linux.png differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-inset-lines-ios-ltr-Mobile-Safari-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-inset-lines-ios-ltr-Mobile-Safari-linux.png
new file mode 100644
index 0000000000..895b992a53
Binary files /dev/null and b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-inset-lines-ios-ltr-Mobile-Safari-linux.png differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-inset-lines-md-ltr-Mobile-Chrome-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-inset-lines-md-ltr-Mobile-Chrome-linux.png
new file mode 100644
index 0000000000..2a7c812276
Binary files /dev/null and b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-inset-lines-md-ltr-Mobile-Chrome-linux.png differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-inset-lines-md-ltr-Mobile-Firefox-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-inset-lines-md-ltr-Mobile-Firefox-linux.png
new file mode 100644
index 0000000000..748758bafe
Binary files /dev/null and b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-inset-lines-md-ltr-Mobile-Firefox-linux.png differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-inset-lines-md-ltr-Mobile-Safari-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-inset-lines-md-ltr-Mobile-Safari-linux.png
new file mode 100644
index 0000000000..5996d878ed
Binary files /dev/null and b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-inset-lines-md-ltr-Mobile-Safari-linux.png differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-no-lines-ios-ltr-Mobile-Chrome-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-no-lines-ios-ltr-Mobile-Chrome-linux.png
new file mode 100644
index 0000000000..47c07d8595
Binary files /dev/null and b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-no-lines-ios-ltr-Mobile-Chrome-linux.png differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-no-lines-ios-ltr-Mobile-Firefox-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-no-lines-ios-ltr-Mobile-Firefox-linux.png
new file mode 100644
index 0000000000..405bf45040
Binary files /dev/null and b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-no-lines-ios-ltr-Mobile-Firefox-linux.png differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-no-lines-ios-ltr-Mobile-Safari-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-no-lines-ios-ltr-Mobile-Safari-linux.png
new file mode 100644
index 0000000000..d0f7e3b67c
Binary files /dev/null and b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-no-lines-ios-ltr-Mobile-Safari-linux.png differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-no-lines-md-ltr-Mobile-Chrome-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-no-lines-md-ltr-Mobile-Chrome-linux.png
new file mode 100644
index 0000000000..ed9e17a80d
Binary files /dev/null and b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-no-lines-md-ltr-Mobile-Chrome-linux.png differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-no-lines-md-ltr-Mobile-Firefox-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-no-lines-md-ltr-Mobile-Firefox-linux.png
new file mode 100644
index 0000000000..749a9203d3
Binary files /dev/null and b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-no-lines-md-ltr-Mobile-Firefox-linux.png differ
diff --git a/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-no-lines-md-ltr-Mobile-Safari-linux.png b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-no-lines-md-ltr-Mobile-Safari-linux.png
new file mode 100644
index 0000000000..c66faa7795
Binary files /dev/null and b/core/src/components/list/test/inset/list.e2e.ts-snapshots/list-inset-no-lines-md-ltr-Mobile-Safari-linux.png differ
diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md
index 046ead9a2e..366a801107 100644
--- a/docs/CHANGELOG.md
+++ b/docs/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.4.3](https://github.com/ionic-team/ionic-docs/compare/v6.4.2...v6.4.3) (2023-01-18)
+
+**Note:** Version bump only for package @ionic/docs
+
+
+
+
+
## [6.4.2](https://github.com/ionic-team/ionic-docs/compare/v6.4.1...v6.4.2) (2023-01-11)
**Note:** Version bump only for package @ionic/docs
diff --git a/docs/package-lock.json b/docs/package-lock.json
index a2774886ac..9d94963eba 100644
--- a/docs/package-lock.json
+++ b/docs/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "@ionic/docs",
- "version": "6.4.2",
+ "version": "6.4.3",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/docs",
- "version": "6.4.2",
+ "version": "6.4.3",
"license": "MIT"
}
}
diff --git a/docs/package.json b/docs/package.json
index e923c67961..2896e6f394 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -1,6 +1,6 @@
{
"name": "@ionic/docs",
- "version": "6.4.2",
+ "version": "6.4.3",
"description": "Pre-packaged API documentation for the Ionic docs.",
"main": "core.json",
"types": "core.d.ts",
diff --git a/lerna.json b/lerna.json
index 5185f06e58..7f67551d04 100644
--- a/lerna.json
+++ b/lerna.json
@@ -5,5 +5,5 @@
"angular",
"packages/*"
],
- "version": "6.4.2"
+ "version": "6.4.3"
}
diff --git a/packages/angular-server/CHANGELOG.md b/packages/angular-server/CHANGELOG.md
index e3fba65d46..3d2e7e23b1 100644
--- a/packages/angular-server/CHANGELOG.md
+++ b/packages/angular-server/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.4.3](https://github.com/ionic-team/ionic/compare/v6.4.2...v6.4.3) (2023-01-18)
+
+**Note:** Version bump only for package @ionic/angular-server
+
+
+
+
+
## [6.4.2](https://github.com/ionic-team/ionic/compare/v6.4.1...v6.4.2) (2023-01-11)
**Note:** Version bump only for package @ionic/angular-server
diff --git a/packages/angular-server/package-lock.json b/packages/angular-server/package-lock.json
index 3df012250c..c1a772b42d 100644
--- a/packages/angular-server/package-lock.json
+++ b/packages/angular-server/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "@ionic/angular-server",
- "version": "6.4.2",
+ "version": "6.4.3",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/angular-server",
- "version": "6.4.2",
+ "version": "6.4.3",
"license": "MIT",
"devDependencies": {
"@angular-eslint/eslint-plugin": "^12.6.1",
@@ -18,7 +18,7 @@
"@angular/platform-browser": "^12.0.0",
"@angular/platform-browser-dynamic": "^12.2.10",
"@angular/platform-server": "^12.0.0",
- "@ionic/core": "^6.4.2",
+ "@ionic/core": "^6.4.3",
"@ionic/eslint-config": "^0.3.0",
"@ionic/prettier-config": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.2.0",
@@ -786,9 +786,9 @@
"license": "BSD-3-Clause"
},
"node_modules/@ionic/core": {
- "version": "6.4.2",
- "resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.2.tgz",
- "integrity": "sha512-X6lKIrVL68UC3HenkUpOMw2Wu6D+XN42EbBPJdKFxGiW8ozhpzYj8QMUcX6ESC7jk44CrpUN3GpHhb+Lrw78OA==",
+ "version": "6.4.3",
+ "resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.3.tgz",
+ "integrity": "sha512-CBtDO2kbFzwB3UcmOsp6hizK2Wm/FuhfQhvqPz4D8cv2TotNHZ1oOvF224g6dw8Djw+v5baebDzS1h2ckYx+kw==",
"dev": true,
"dependencies": {
"@stencil/core": "^2.18.0",
@@ -7103,9 +7103,9 @@
"dev": true
},
"@ionic/core": {
- "version": "6.4.2",
- "resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.2.tgz",
- "integrity": "sha512-X6lKIrVL68UC3HenkUpOMw2Wu6D+XN42EbBPJdKFxGiW8ozhpzYj8QMUcX6ESC7jk44CrpUN3GpHhb+Lrw78OA==",
+ "version": "6.4.3",
+ "resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.3.tgz",
+ "integrity": "sha512-CBtDO2kbFzwB3UcmOsp6hizK2Wm/FuhfQhvqPz4D8cv2TotNHZ1oOvF224g6dw8Djw+v5baebDzS1h2ckYx+kw==",
"dev": true,
"requires": {
"@stencil/core": "^2.18.0",
diff --git a/packages/angular-server/package.json b/packages/angular-server/package.json
index 9d777a7157..13188032a7 100644
--- a/packages/angular-server/package.json
+++ b/packages/angular-server/package.json
@@ -1,6 +1,6 @@
{
"name": "@ionic/angular-server",
- "version": "6.4.2",
+ "version": "6.4.3",
"description": "Angular SSR Module for Ionic",
"keywords": [
"ionic",
@@ -55,7 +55,7 @@
"@angular/platform-browser": "^12.0.0",
"@angular/platform-browser-dynamic": "^12.2.10",
"@angular/platform-server": "^12.0.0",
- "@ionic/core": "^6.4.2",
+ "@ionic/core": "^6.4.3",
"@ionic/eslint-config": "^0.3.0",
"@ionic/prettier-config": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.2.0",
diff --git a/packages/react-router/CHANGELOG.md b/packages/react-router/CHANGELOG.md
index 45d2453274..a7da6d3a93 100644
--- a/packages/react-router/CHANGELOG.md
+++ b/packages/react-router/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.4.3](https://github.com/ionic-team/ionic/compare/v6.4.2...v6.4.3) (2023-01-18)
+
+**Note:** Version bump only for package @ionic/react-router
+
+
+
+
+
## [6.4.2](https://github.com/ionic-team/ionic/compare/v6.4.1...v6.4.2) (2023-01-11)
**Note:** Version bump only for package @ionic/react-router
diff --git a/packages/react-router/package-lock.json b/packages/react-router/package-lock.json
index cd5a68522e..bbddcda6e5 100644
--- a/packages/react-router/package-lock.json
+++ b/packages/react-router/package-lock.json
@@ -1,15 +1,15 @@
{
"name": "@ionic/react-router",
- "version": "6.4.2",
+ "version": "6.4.3",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/react-router",
- "version": "6.4.2",
+ "version": "6.4.3",
"license": "MIT",
"dependencies": {
- "@ionic/react": "^6.4.2",
+ "@ionic/react": "^6.4.3",
"tslib": "*"
},
"devDependencies": {
@@ -147,9 +147,9 @@
}
},
"node_modules/@ionic/core": {
- "version": "6.4.2",
- "resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.2.tgz",
- "integrity": "sha512-X6lKIrVL68UC3HenkUpOMw2Wu6D+XN42EbBPJdKFxGiW8ozhpzYj8QMUcX6ESC7jk44CrpUN3GpHhb+Lrw78OA==",
+ "version": "6.4.3",
+ "resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.3.tgz",
+ "integrity": "sha512-CBtDO2kbFzwB3UcmOsp6hizK2Wm/FuhfQhvqPz4D8cv2TotNHZ1oOvF224g6dw8Djw+v5baebDzS1h2ckYx+kw==",
"dependencies": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.0.4",
@@ -157,11 +157,11 @@
}
},
"node_modules/@ionic/react": {
- "version": "6.4.2",
- "resolved": "https://registry.npmjs.org/@ionic/react/-/react-6.4.2.tgz",
- "integrity": "sha512-6cXT9NFpvKsN6jlt/hawIdTSgQpKbCphdpOiU5RVdQbwR6haakP5tWmX4Yrivgq/VG5f93JrwOlIYDQwYW4sqg==",
+ "version": "6.4.3",
+ "resolved": "https://registry.npmjs.org/@ionic/react/-/react-6.4.3.tgz",
+ "integrity": "sha512-jQ8PylkSpWdNki/9bJdS2+uAyp5f4bscM4z0eQp55qLd9l4VHpOkM7gfm2cnpfHCIzW4FtktBjoXXMsFMIewTw==",
"dependencies": {
- "@ionic/core": "6.4.2",
+ "@ionic/core": "6.4.3",
"ionicons": "^6.0.2",
"tslib": "*"
},
@@ -207,9 +207,9 @@
}
},
"node_modules/@stencil/core": {
- "version": "2.21.0",
- "resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.21.0.tgz",
- "integrity": "sha512-c4mVCl87wTV8u7ExQqiiQU5XrkzXjq8ll8skPlFHlJ7+5hGWhRpuVqKgVYJPN1mC/ucRqCUfjzSNUD7cFKHhkw==",
+ "version": "2.22.1",
+ "resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.1.tgz",
+ "integrity": "sha512-L4EsWLXYkg24BfrR3aS1df3BSkH0RFyza+Tu84MaYoF2csiKTJxDTZuFHSnJeF8UdgzV7CBfnsIEV6r3s0+h3g==",
"bin": {
"stencil": "bin/stencil"
},
@@ -493,9 +493,9 @@
"license": "ISC"
},
"node_modules/ionicons": {
- "version": "6.0.4",
- "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-6.0.4.tgz",
- "integrity": "sha512-uDNOkBo0OVYV+kIhb51g9mb7r3Z0b+78GPZQBsjXuaetNmrB/mNTqN/uFtO+vxL/rQySKjzk8qeKJI5NWL9Ueg==",
+ "version": "6.1.1",
+ "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-6.1.1.tgz",
+ "integrity": "sha512-Qe6mx25DFNwA9UL1rhewI5StI3uD4+BqB2KdvLjyWhtvoUXwyAsmfHLZuDANAHQowIKtTt6BZCt5/g5NIQ635Q==",
"dependencies": {
"@stencil/core": "^2.18.0"
}
@@ -1145,9 +1145,9 @@
}
},
"@ionic/core": {
- "version": "6.4.2",
- "resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.2.tgz",
- "integrity": "sha512-X6lKIrVL68UC3HenkUpOMw2Wu6D+XN42EbBPJdKFxGiW8ozhpzYj8QMUcX6ESC7jk44CrpUN3GpHhb+Lrw78OA==",
+ "version": "6.4.3",
+ "resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.3.tgz",
+ "integrity": "sha512-CBtDO2kbFzwB3UcmOsp6hizK2Wm/FuhfQhvqPz4D8cv2TotNHZ1oOvF224g6dw8Djw+v5baebDzS1h2ckYx+kw==",
"requires": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.0.4",
@@ -1155,11 +1155,11 @@
}
},
"@ionic/react": {
- "version": "6.4.2",
- "resolved": "https://registry.npmjs.org/@ionic/react/-/react-6.4.2.tgz",
- "integrity": "sha512-6cXT9NFpvKsN6jlt/hawIdTSgQpKbCphdpOiU5RVdQbwR6haakP5tWmX4Yrivgq/VG5f93JrwOlIYDQwYW4sqg==",
+ "version": "6.4.3",
+ "resolved": "https://registry.npmjs.org/@ionic/react/-/react-6.4.3.tgz",
+ "integrity": "sha512-jQ8PylkSpWdNki/9bJdS2+uAyp5f4bscM4z0eQp55qLd9l4VHpOkM7gfm2cnpfHCIzW4FtktBjoXXMsFMIewTw==",
"requires": {
- "@ionic/core": "6.4.2",
+ "@ionic/core": "6.4.3",
"ionicons": "^6.0.2",
"tslib": "*"
}
@@ -1187,9 +1187,9 @@
}
},
"@stencil/core": {
- "version": "2.21.0",
- "resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.21.0.tgz",
- "integrity": "sha512-c4mVCl87wTV8u7ExQqiiQU5XrkzXjq8ll8skPlFHlJ7+5hGWhRpuVqKgVYJPN1mC/ucRqCUfjzSNUD7cFKHhkw=="
+ "version": "2.22.1",
+ "resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.1.tgz",
+ "integrity": "sha512-L4EsWLXYkg24BfrR3aS1df3BSkH0RFyza+Tu84MaYoF2csiKTJxDTZuFHSnJeF8UdgzV7CBfnsIEV6r3s0+h3g=="
},
"@types/estree": {
"version": "0.0.39",
@@ -1385,9 +1385,9 @@
"dev": true
},
"ionicons": {
- "version": "6.0.4",
- "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-6.0.4.tgz",
- "integrity": "sha512-uDNOkBo0OVYV+kIhb51g9mb7r3Z0b+78GPZQBsjXuaetNmrB/mNTqN/uFtO+vxL/rQySKjzk8qeKJI5NWL9Ueg==",
+ "version": "6.1.1",
+ "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-6.1.1.tgz",
+ "integrity": "sha512-Qe6mx25DFNwA9UL1rhewI5StI3uD4+BqB2KdvLjyWhtvoUXwyAsmfHLZuDANAHQowIKtTt6BZCt5/g5NIQ635Q==",
"requires": {
"@stencil/core": "^2.18.0"
}
diff --git a/packages/react-router/package.json b/packages/react-router/package.json
index 44edbf2eec..883abbc849 100644
--- a/packages/react-router/package.json
+++ b/packages/react-router/package.json
@@ -1,6 +1,6 @@
{
"name": "@ionic/react-router",
- "version": "6.4.2",
+ "version": "6.4.3",
"description": "React Router wrapper for @ionic/react",
"keywords": [
"ionic",
@@ -36,7 +36,7 @@
"dist/"
],
"dependencies": {
- "@ionic/react": "^6.4.2",
+ "@ionic/react": "^6.4.3",
"tslib": "*"
},
"peerDependencies": {
diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md
index 626bccf860..5cb41837b4 100644
--- a/packages/react/CHANGELOG.md
+++ b/packages/react/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.4.3](https://github.com/ionic-team/ionic/compare/v6.4.2...v6.4.3) (2023-01-18)
+
+**Note:** Version bump only for package @ionic/react
+
+
+
+
+
## [6.4.2](https://github.com/ionic-team/ionic/compare/v6.4.1...v6.4.2) (2023-01-11)
**Note:** Version bump only for package @ionic/react
diff --git a/packages/react/package-lock.json b/packages/react/package-lock.json
index 6c0408a319..8cbb219bcd 100644
--- a/packages/react/package-lock.json
+++ b/packages/react/package-lock.json
@@ -1,15 +1,15 @@
{
"name": "@ionic/react",
- "version": "6.4.2",
+ "version": "6.4.3",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/react",
- "version": "6.4.2",
+ "version": "6.4.3",
"license": "MIT",
"dependencies": {
- "@ionic/core": "^6.4.2",
+ "@ionic/core": "^6.4.3",
"ionicons": "^6.0.2",
"tslib": "*"
},
@@ -607,9 +607,9 @@
}
},
"node_modules/@ionic/core": {
- "version": "6.4.2",
- "resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.2.tgz",
- "integrity": "sha512-X6lKIrVL68UC3HenkUpOMw2Wu6D+XN42EbBPJdKFxGiW8ozhpzYj8QMUcX6ESC7jk44CrpUN3GpHhb+Lrw78OA==",
+ "version": "6.4.3",
+ "resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.3.tgz",
+ "integrity": "sha512-CBtDO2kbFzwB3UcmOsp6hizK2Wm/FuhfQhvqPz4D8cv2TotNHZ1oOvF224g6dw8Djw+v5baebDzS1h2ckYx+kw==",
"dependencies": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.0.4",
@@ -9522,9 +9522,9 @@
}
},
"@ionic/core": {
- "version": "6.4.2",
- "resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.2.tgz",
- "integrity": "sha512-X6lKIrVL68UC3HenkUpOMw2Wu6D+XN42EbBPJdKFxGiW8ozhpzYj8QMUcX6ESC7jk44CrpUN3GpHhb+Lrw78OA==",
+ "version": "6.4.3",
+ "resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.3.tgz",
+ "integrity": "sha512-CBtDO2kbFzwB3UcmOsp6hizK2Wm/FuhfQhvqPz4D8cv2TotNHZ1oOvF224g6dw8Djw+v5baebDzS1h2ckYx+kw==",
"requires": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.0.4",
diff --git a/packages/react/package.json b/packages/react/package.json
index 018af6d018..7aee57b24d 100644
--- a/packages/react/package.json
+++ b/packages/react/package.json
@@ -1,6 +1,6 @@
{
"name": "@ionic/react",
- "version": "6.4.2",
+ "version": "6.4.3",
"description": "React specific wrapper for @ionic/core",
"keywords": [
"ionic",
@@ -40,7 +40,7 @@
"css/"
],
"dependencies": {
- "@ionic/core": "^6.4.2",
+ "@ionic/core": "^6.4.3",
"ionicons": "^6.0.2",
"tslib": "*"
},
diff --git a/packages/vue-router/CHANGELOG.md b/packages/vue-router/CHANGELOG.md
index 98ba2ae1a8..e9844eda74 100644
--- a/packages/vue-router/CHANGELOG.md
+++ b/packages/vue-router/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.4.3](https://github.com/ionic-team/ionic/compare/v6.4.2...v6.4.3) (2023-01-18)
+
+**Note:** Version bump only for package @ionic/vue-router
+
+
+
+
+
## [6.4.2](https://github.com/ionic-team/ionic/compare/v6.4.1...v6.4.2) (2023-01-11)
**Note:** Version bump only for package @ionic/vue-router
diff --git a/packages/vue-router/package-lock.json b/packages/vue-router/package-lock.json
index 974f114bc1..a5a2d68a5c 100644
--- a/packages/vue-router/package-lock.json
+++ b/packages/vue-router/package-lock.json
@@ -1,15 +1,15 @@
{
"name": "@ionic/vue-router",
- "version": "6.4.2",
+ "version": "6.4.3",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/vue-router",
- "version": "6.4.2",
+ "version": "6.4.3",
"license": "MIT",
"dependencies": {
- "@ionic/vue": "^6.4.2"
+ "@ionic/vue": "^6.4.3"
},
"devDependencies": {
"@types/jest": "^28.1.1",
@@ -578,9 +578,9 @@
"dev": true
},
"node_modules/@ionic/core": {
- "version": "6.4.2",
- "resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.2.tgz",
- "integrity": "sha512-X6lKIrVL68UC3HenkUpOMw2Wu6D+XN42EbBPJdKFxGiW8ozhpzYj8QMUcX6ESC7jk44CrpUN3GpHhb+Lrw78OA==",
+ "version": "6.4.3",
+ "resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.3.tgz",
+ "integrity": "sha512-CBtDO2kbFzwB3UcmOsp6hizK2Wm/FuhfQhvqPz4D8cv2TotNHZ1oOvF224g6dw8Djw+v5baebDzS1h2ckYx+kw==",
"dependencies": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.0.4",
@@ -588,11 +588,11 @@
}
},
"node_modules/@ionic/vue": {
- "version": "6.4.2",
- "resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-6.4.2.tgz",
- "integrity": "sha512-6qYuHm8QWmjtdR+DE2hwkw93rq+trLUyoexqNRLTxAO3nqB+0WmtqaXbFYZgTAj0/IkmVV4aLXOz0zBTZFlT8w==",
+ "version": "6.4.3",
+ "resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-6.4.3.tgz",
+ "integrity": "sha512-yHSxs7Ql1GF/VAcY3LuZHOz9SJD0EHPGp5IQTkjOVeyfIIVgQbh0uV2aqqMjBzeasFuy7/RFkRPmDlsgQUN8lg==",
"dependencies": {
- "@ionic/core": "6.4.2",
+ "@ionic/core": "6.4.3",
"ionicons": "^6.0.2"
}
},
@@ -1005,9 +1005,9 @@
}
},
"node_modules/@stencil/core": {
- "version": "2.21.0",
- "resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.21.0.tgz",
- "integrity": "sha512-c4mVCl87wTV8u7ExQqiiQU5XrkzXjq8ll8skPlFHlJ7+5hGWhRpuVqKgVYJPN1mC/ucRqCUfjzSNUD7cFKHhkw==",
+ "version": "2.22.1",
+ "resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.1.tgz",
+ "integrity": "sha512-L4EsWLXYkg24BfrR3aS1df3BSkH0RFyza+Tu84MaYoF2csiKTJxDTZuFHSnJeF8UdgzV7CBfnsIEV6r3s0+h3g==",
"bin": {
"stencil": "bin/stencil"
},
@@ -2374,9 +2374,9 @@
"license": "ISC"
},
"node_modules/ionicons": {
- "version": "6.0.4",
- "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-6.0.4.tgz",
- "integrity": "sha512-uDNOkBo0OVYV+kIhb51g9mb7r3Z0b+78GPZQBsjXuaetNmrB/mNTqN/uFtO+vxL/rQySKjzk8qeKJI5NWL9Ueg==",
+ "version": "6.1.1",
+ "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-6.1.1.tgz",
+ "integrity": "sha512-Qe6mx25DFNwA9UL1rhewI5StI3uD4+BqB2KdvLjyWhtvoUXwyAsmfHLZuDANAHQowIKtTt6BZCt5/g5NIQ635Q==",
"dependencies": {
"@stencil/core": "^2.18.0"
}
@@ -5221,9 +5221,9 @@
"dev": true
},
"@ionic/core": {
- "version": "6.4.2",
- "resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.2.tgz",
- "integrity": "sha512-X6lKIrVL68UC3HenkUpOMw2Wu6D+XN42EbBPJdKFxGiW8ozhpzYj8QMUcX6ESC7jk44CrpUN3GpHhb+Lrw78OA==",
+ "version": "6.4.3",
+ "resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.3.tgz",
+ "integrity": "sha512-CBtDO2kbFzwB3UcmOsp6hizK2Wm/FuhfQhvqPz4D8cv2TotNHZ1oOvF224g6dw8Djw+v5baebDzS1h2ckYx+kw==",
"requires": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.0.4",
@@ -5231,11 +5231,11 @@
}
},
"@ionic/vue": {
- "version": "6.4.2",
- "resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-6.4.2.tgz",
- "integrity": "sha512-6qYuHm8QWmjtdR+DE2hwkw93rq+trLUyoexqNRLTxAO3nqB+0WmtqaXbFYZgTAj0/IkmVV4aLXOz0zBTZFlT8w==",
+ "version": "6.4.3",
+ "resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-6.4.3.tgz",
+ "integrity": "sha512-yHSxs7Ql1GF/VAcY3LuZHOz9SJD0EHPGp5IQTkjOVeyfIIVgQbh0uV2aqqMjBzeasFuy7/RFkRPmDlsgQUN8lg==",
"requires": {
- "@ionic/core": "6.4.2",
+ "@ionic/core": "6.4.3",
"ionicons": "^6.0.2"
}
},
@@ -5568,9 +5568,9 @@
}
},
"@stencil/core": {
- "version": "2.21.0",
- "resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.21.0.tgz",
- "integrity": "sha512-c4mVCl87wTV8u7ExQqiiQU5XrkzXjq8ll8skPlFHlJ7+5hGWhRpuVqKgVYJPN1mC/ucRqCUfjzSNUD7cFKHhkw=="
+ "version": "2.22.1",
+ "resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.1.tgz",
+ "integrity": "sha512-L4EsWLXYkg24BfrR3aS1df3BSkH0RFyza+Tu84MaYoF2csiKTJxDTZuFHSnJeF8UdgzV7CBfnsIEV6r3s0+h3g=="
},
"@tootallnate/once": {
"version": "2.0.0",
@@ -6634,9 +6634,9 @@
"dev": true
},
"ionicons": {
- "version": "6.0.4",
- "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-6.0.4.tgz",
- "integrity": "sha512-uDNOkBo0OVYV+kIhb51g9mb7r3Z0b+78GPZQBsjXuaetNmrB/mNTqN/uFtO+vxL/rQySKjzk8qeKJI5NWL9Ueg==",
+ "version": "6.1.1",
+ "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-6.1.1.tgz",
+ "integrity": "sha512-Qe6mx25DFNwA9UL1rhewI5StI3uD4+BqB2KdvLjyWhtvoUXwyAsmfHLZuDANAHQowIKtTt6BZCt5/g5NIQ635Q==",
"requires": {
"@stencil/core": "^2.18.0"
}
diff --git a/packages/vue-router/package.json b/packages/vue-router/package.json
index 03cac4b08b..2faed613dd 100644
--- a/packages/vue-router/package.json
+++ b/packages/vue-router/package.json
@@ -1,6 +1,6 @@
{
"name": "@ionic/vue-router",
- "version": "6.4.2",
+ "version": "6.4.3",
"description": "Vue Router integration for @ionic/vue",
"scripts": {
"test.spec": "jest",
@@ -43,7 +43,7 @@
},
"homepage": "https://github.com/ionic-team/ionic#readme",
"dependencies": {
- "@ionic/vue": "^6.4.2"
+ "@ionic/vue": "^6.4.3"
},
"devDependencies": {
"@types/jest": "^28.1.1",
diff --git a/packages/vue/CHANGELOG.md b/packages/vue/CHANGELOG.md
index 4f10adaf54..d49597470d 100644
--- a/packages/vue/CHANGELOG.md
+++ b/packages/vue/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.4.3](https://github.com/ionic-team/ionic/compare/v6.4.2...v6.4.3) (2023-01-18)
+
+**Note:** Version bump only for package @ionic/vue
+
+
+
+
+
## [6.4.2](https://github.com/ionic-team/ionic/compare/v6.4.1...v6.4.2) (2023-01-11)
diff --git a/packages/vue/package-lock.json b/packages/vue/package-lock.json
index ddeed26355..11048d4a7b 100644
--- a/packages/vue/package-lock.json
+++ b/packages/vue/package-lock.json
@@ -1,15 +1,15 @@
{
"name": "@ionic/vue",
- "version": "6.4.2",
+ "version": "6.4.3",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/vue",
- "version": "6.4.2",
+ "version": "6.4.3",
"license": "MIT",
"dependencies": {
- "@ionic/core": "^6.4.2",
+ "@ionic/core": "^6.4.3",
"ionicons": "^6.0.2"
},
"devDependencies": {
@@ -59,9 +59,9 @@
}
},
"node_modules/@ionic/core": {
- "version": "6.4.2",
- "resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.2.tgz",
- "integrity": "sha512-X6lKIrVL68UC3HenkUpOMw2Wu6D+XN42EbBPJdKFxGiW8ozhpzYj8QMUcX6ESC7jk44CrpUN3GpHhb+Lrw78OA==",
+ "version": "6.4.3",
+ "resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.3.tgz",
+ "integrity": "sha512-CBtDO2kbFzwB3UcmOsp6hizK2Wm/FuhfQhvqPz4D8cv2TotNHZ1oOvF224g6dw8Djw+v5baebDzS1h2ckYx+kw==",
"dependencies": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.0.4",
@@ -768,9 +768,9 @@
}
},
"@ionic/core": {
- "version": "6.4.2",
- "resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.2.tgz",
- "integrity": "sha512-X6lKIrVL68UC3HenkUpOMw2Wu6D+XN42EbBPJdKFxGiW8ozhpzYj8QMUcX6ESC7jk44CrpUN3GpHhb+Lrw78OA==",
+ "version": "6.4.3",
+ "resolved": "https://registry.npmjs.org/@ionic/core/-/core-6.4.3.tgz",
+ "integrity": "sha512-CBtDO2kbFzwB3UcmOsp6hizK2Wm/FuhfQhvqPz4D8cv2TotNHZ1oOvF224g6dw8Djw+v5baebDzS1h2ckYx+kw==",
"requires": {
"@stencil/core": "^2.18.0",
"ionicons": "^6.0.4",
diff --git a/packages/vue/package.json b/packages/vue/package.json
index 41f4e0f2ea..876af400a6 100644
--- a/packages/vue/package.json
+++ b/packages/vue/package.json
@@ -1,6 +1,6 @@
{
"name": "@ionic/vue",
- "version": "6.4.2",
+ "version": "6.4.3",
"description": "Vue specific wrapper for @ionic/core",
"scripts": {
"lint": "echo add linter",
@@ -60,7 +60,7 @@
"vue-router": "^4.0.16"
},
"dependencies": {
- "@ionic/core": "^6.4.2",
+ "@ionic/core": "^6.4.3",
"ionicons": "^6.0.2"
},
"vetur": {