mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-10 00:27:41 +08:00
chore(): sync with main
This commit is contained in:
16
core/package-lock.json
generated
16
core/package-lock.json
generated
@ -6,10 +6,10 @@
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@ionic/core",
|
||||
"version": "6.0.5",
|
||||
"version": "6.0.10",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@stencil/core": "~2.13.0",
|
||||
"@stencil/core": "^2.14.1",
|
||||
"ionicons": "^6.0.0",
|
||||
"tslib": "^2.1.0"
|
||||
},
|
||||
@ -1366,9 +1366,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@stencil/core": {
|
||||
"version": "2.13.0",
|
||||
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.13.0.tgz",
|
||||
"integrity": "sha512-EEKHOHgYpg3/iFUKMXTZJjUayRul7sXDwNw0OGgkEOe4t7JWiibDkzUHuruvpbqEydX+z1+ez5K2bMMY76c2wA==",
|
||||
"version": "2.14.1",
|
||||
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.14.1.tgz",
|
||||
"integrity": "sha512-G58fJeDbi58+7uQnyaGInnehfub9tJikFZ4PkT/FuelMV9wGq2FKB0fxKctKQ3mhhHAiFDuGNzRD1isZZQvUCg==",
|
||||
"bin": {
|
||||
"stencil": "bin/stencil"
|
||||
},
|
||||
@ -15055,9 +15055,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"@stencil/core": {
|
||||
"version": "2.13.0",
|
||||
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.13.0.tgz",
|
||||
"integrity": "sha512-EEKHOHgYpg3/iFUKMXTZJjUayRul7sXDwNw0OGgkEOe4t7JWiibDkzUHuruvpbqEydX+z1+ez5K2bMMY76c2wA=="
|
||||
"version": "2.14.1",
|
||||
"resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.14.1.tgz",
|
||||
"integrity": "sha512-G58fJeDbi58+7uQnyaGInnehfub9tJikFZ4PkT/FuelMV9wGq2FKB0fxKctKQ3mhhHAiFDuGNzRD1isZZQvUCg=="
|
||||
},
|
||||
"@stencil/react-output-target": {
|
||||
"version": "0.2.1",
|
||||
|
||||
@ -31,7 +31,7 @@
|
||||
"loader/"
|
||||
],
|
||||
"dependencies": {
|
||||
"@stencil/core": "~2.13.0",
|
||||
"@stencil/core": "^2.14.1",
|
||||
"ionicons": "^6.0.0",
|
||||
"tslib": "^2.1.0"
|
||||
},
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -229,11 +229,13 @@ describe('Routing', () => {
|
||||
routes: [
|
||||
{ path: '/', redirect: '/tabs/tab1' },
|
||||
{ path: '/parent', component: Parent },
|
||||
{ path: '/tabs/', component: Tabs, children: [
|
||||
{
|
||||
path: '/tabs/', component: Tabs, children: [
|
||||
{ path: '/', redirect: 'tab1' },
|
||||
{ path: 'tab1', component: Tab1 },
|
||||
{ path: 'tab2', component: Tab2 }
|
||||
]}
|
||||
]
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
@ -474,7 +476,7 @@ describe('Routing', () => {
|
||||
const router = createRouter({
|
||||
history: createWebHistory(process.env.BASE_URL),
|
||||
routes: [
|
||||
{ path: '/', component: Page }
|
||||
{ path: '/', component: Page },
|
||||
{ path: '/page2', component: Page2 }
|
||||
]
|
||||
});
|
||||
@ -527,7 +529,7 @@ describe('Routing', () => {
|
||||
const router = createRouter({
|
||||
history: createWebHistory(process.env.BASE_URL),
|
||||
routes: [
|
||||
{ path: '/', component: Page }
|
||||
{ path: '/', component: Page },
|
||||
{ path: '/page2', component: Page2 },
|
||||
{ path: '/page3', component: Page3 },
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user