mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
chore(): update to latest stencil
* fix(): Update to latest stencil and change types to export from interface not index. * chore(): fix merge conflict of file added.
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
],
|
||||
"module": "dist/collection/index.js",
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/types/index.d.ts",
|
||||
"types": "dist/types/interface.d.ts",
|
||||
"collection": "dist/collection/collection-manifest.json",
|
||||
"unpkg": "dist/ionic.js",
|
||||
"files": [
|
||||
@@ -27,7 +27,7 @@
|
||||
"ionicons": "4.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@stencil/core": "0.11.4",
|
||||
"@stencil/core": "^0.12.0-3",
|
||||
"@stencil/dev-server": "latest",
|
||||
"@stencil/sass": "0.1.0",
|
||||
"@stencil/utils": "latest",
|
||||
|
||||
6439
core/src/components.d.ts
vendored
6439
core/src/components.d.ts
vendored
File diff suppressed because it is too large
Load Diff
@@ -232,7 +232,9 @@ export class Datetime {
|
||||
const pickerOptions = this.generatePickerOptions();
|
||||
this.picker = await this.pickerCtrl.create(pickerOptions);
|
||||
this.validate();
|
||||
await this.picker.present();
|
||||
if (this.picker) {
|
||||
await this.picker.present();
|
||||
}
|
||||
}
|
||||
|
||||
private emitStyle() {
|
||||
|
||||
6089
core/src/generated.d.ts
vendored
Normal file
6089
core/src/generated.d.ts
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -14,6 +14,3 @@ export * from './utils/haptic';
|
||||
export * from './utils/framework-delegate';
|
||||
export * from './utils/platform';
|
||||
export * from './utils/config';
|
||||
|
||||
// interface
|
||||
export * from './interface';
|
||||
|
||||
3
core/src/interface.d.ts
vendored
3
core/src/interface.d.ts
vendored
@@ -1,5 +1,6 @@
|
||||
// Components interfaces
|
||||
export * from './components';
|
||||
export * from './generated';
|
||||
export * from './index';
|
||||
export * from './components/animation-controller/animation-interface';
|
||||
export * from './components/alert/alert-interface';
|
||||
export * from './components/action-sheet/action-sheet-interface';
|
||||
|
||||
Reference in New Issue
Block a user