diff --git a/.gitignore b/.gitignore index 8cc7688..93372c5 100644 --- a/.gitignore +++ b/.gitignore @@ -43,17 +43,19 @@ packages/**/*.d.ts bin build Pods -!packages/platforms +!packages/*/platforms /packages/**/*.aar +/packages/**/*.framework +/packages/**/*.xcframework /demo-snippets/**/*.aar *.xcuserdatad /packages/README.md packages/**/*js.map packages/**/*js -packages/**/angular/*.json -packages/*.ngsummary.json -packages/*.metadata.json packages/angular packages/typings +packages/**/angular/*.json +packages/**/*.ngsummary.json +packages/**/*.metadata.json /blueprint.md \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 741b804..c483f90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,36 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [14.1.24](https://github.com/nativescript-community/ui-pager/compare/v14.1.23...v14.1.24) (2024-05-14) + +### Features + +* padding support ([3624df8](https://github.com/nativescript-community/ui-pager/commit/3624df8330fe33cc5d8517f18ebe907af81216dd)) + +## [14.1.23](https://github.com/nativescript-community/ui-pager/compare/v14.1.22...v14.1.23) (2024-04-17) + +### Bug Fixes + +* **angular:** Correct initialisation issue with angular ([c83c292](https://github.com/nativescript-community/ui-pager/commit/c83c2926bf92959c9eda8e4d705248841ce6c37d)) + +## [14.1.22](https://github.com/nativescript-community/ui-pager/compare/v14.1.21...v14.1.22) (2024-03-22) + +### Bug Fixes + +* **ios:** page item not updating on change ([9a38a43](https://github.com/nativescript-community/ui-pager/commit/9a38a43e18170387f157ed173d21c02918d4c37a)) + +## [14.1.21](https://github.com/nativescript-community/ui-pager/compare/v14.1.20...v14.1.21) (2024-03-22) + +### Bug Fixes + +* **ios:** ensure all templates are registered ([658e9c2](https://github.com/nativescript-community/ui-pager/commit/658e9c27a10cd714ab43f6674fdbf1ddd9abc8ac)) + +## [14.1.20](https://github.com/nativescript-community/ui-pager/compare/v14.1.19...v14.1.20) (2024-03-01) + +### Bug Fixes + +* **ios:** correctly apply transformer if start index is not 0 ([59c55a8](https://github.com/nativescript-community/ui-pager/commit/59c55a87d5abd8c807a6b7a45440e783dae4ddb6)) + ## [14.1.19](https://github.com/nativescript-community/ui-pager/compare/v14.1.18...v14.1.19) (2024-02-15) ### Bug Fixes diff --git a/demo-react b/demo-react index f2449ae..f15bc2c 160000 --- a/demo-react +++ b/demo-react @@ -1 +1 @@ -Subproject commit f2449ae9dc0c57c1cd268038eaf643e5c1d0d87c +Subproject commit f15bc2c50e952683ae627c565ec3585490187ee9 diff --git a/demo-snippets/vue/BasicPager.vue b/demo-snippets/vue/BasicPager.vue index 7a2c3cf..e284d86 100644 --- a/demo-snippets/vue/BasicPager.vue +++ b/demo-snippets/vue/BasicPager.vue @@ -27,12 +27,12 @@ export default { data() { return { items: [ - {title: "First", color: "#e67e22"}, - {title: "Second", color: "#3498db"}, - {title: "Third", color: "#e74c3c"}, - {title: "Fourth", color: "#9b59b6"}, + { title: 'First', color: '#e67e22' }, + { title: 'Second', color: '#3498db' }, + { title: 'Third', color: '#e74c3c' }, + { title: 'Fourth', color: '#9b59b6' } ] - } + }; }, methods: { moveTo3() { @@ -46,7 +46,6 @@ export default { \ No newline at end of file + diff --git a/demo-snippets/vue/Indicator.vue b/demo-snippets/vue/Indicator.vue index f3be2f7..612583c 100644 --- a/demo-snippets/vue/Indicator.vue +++ b/demo-snippets/vue/Indicator.vue @@ -13,23 +13,22 @@ - -