diff --git a/core/src/components.d.ts b/core/src/components.d.ts index faebb871a9..28644d2ceb 100644 --- a/core/src/components.d.ts +++ b/core/src/components.d.ts @@ -4019,7 +4019,7 @@ export namespace Components { * The text to display on the ok button. Default: `OK`. */ 'okText': string; - 'open': (ev?: UIEvent | undefined) => Promise; + 'open': (ev?: UIEvent | undefined) => Promise; /** * The text to display when the select is empty. */ diff --git a/core/src/components/datetime/readme.md b/core/src/components/datetime/readme.md index 46b8191918..3870742f08 100644 --- a/core/src/components/datetime/readme.md +++ b/core/src/components/datetime/readme.md @@ -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/)* diff --git a/core/src/components/slides/swiper/swiper.js b/core/src/components/slides/swiper/swiper.js index 65906cf6cb..da9c9e98f7 100644 --- a/core/src/components/slides/swiper/swiper.js +++ b/core/src/components/slides/swiper/swiper.js @@ -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 };