mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 04:14:21 +08:00
2
core/src/components.d.ts
vendored
2
core/src/components.d.ts
vendored
@ -4019,7 +4019,7 @@ export namespace Components {
|
||||
* The text to display on the ok button. Default: `OK`.
|
||||
*/
|
||||
'okText': string;
|
||||
'open': (ev?: UIEvent | undefined) => Promise<HTMLIonPopoverElement | HTMLIonActionSheetElement | HTMLIonAlertElement>;
|
||||
'open': (ev?: UIEvent | undefined) => Promise<HTMLIonActionSheetElement | HTMLIonAlertElement | HTMLIonPopoverElement>;
|
||||
/**
|
||||
* The text to display when the select is empty.
|
||||
*/
|
||||
|
@ -244,6 +244,17 @@ dates in JavaScript.
|
||||
| `open` | |
|
||||
|
||||
|
||||
## CSS Custom Properties
|
||||
|
||||
| Name | Description |
|
||||
| --------------------- | --------------------------------- |
|
||||
| `--padding-bottom` | Padding bottom of the datetime |
|
||||
| `--padding-end` | Padding end of the datetime |
|
||||
| `--padding-start` | Padding start of the datetime |
|
||||
| `--padding-top` | Padding top of the datetime |
|
||||
| `--placeholder-color` | Color of the datetime placeholder |
|
||||
|
||||
|
||||
----------------------------------------------
|
||||
|
||||
*Built with [StencilJS](https://stenciljs.com/)*
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { Autoplay, Pagination, Scrollbar, Swiper } from 'swiper/dist/js/swiper.esm';
|
||||
import { Autoplay, Pagination, Scrollbar, Swiper, Zoom } from 'swiper/dist/js/swiper.esm';
|
||||
|
||||
Swiper.use([Pagination, Scrollbar, Autoplay]);
|
||||
Swiper.use([Pagination, Scrollbar, Autoplay, Zoom]);
|
||||
export { Swiper };
|
||||
|
Reference in New Issue
Block a user