@abi-software/gallery 0.3.2 → 0.3.4-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +79 -0
- package/dist/gallery.common.js +1077 -5710
- package/dist/gallery.common.js.map +1 -1
- package/dist/gallery.css +1 -1
- package/dist/gallery.umd.js +1077 -5710
- package/dist/gallery.umd.js.map +1 -1
- package/dist/gallery.umd.min.js +1 -1
- package/dist/gallery.umd.min.js.map +1 -1
- package/package-lock.json +16795 -0
- package/package.json +23 -9
- package/src/assets/_variables.scss +43 -0
- package/src/assets/styles.scss +7 -0
- package/src/components/Card.vue +21 -15
- package/src/components/Gallery.vue +2 -2
- package/src/components/IndexIndicator.vue +2 -2
- package/vue.config.js +8 -0
- package/.browserslistrc +0 -3
- package/.prettierrc +0 -6
- package/public/favicon.ico +0 -0
- package/public/index.html +0 -17
- package/tests/unit/example.spec.js +0 -12
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
9
|
+
|
|
10
|
+
## [v0.3.4-beta.0](https://github.com/alan-wu/mapcore-gallery/compare/v0.3.3...v0.3.4-beta.0)
|
|
11
|
+
|
|
12
|
+
### Merged
|
|
13
|
+
|
|
14
|
+
- Update build to vue2.7.14 [`#7`](https://github.com/alan-wu/mapcore-gallery/pull/7)
|
|
15
|
+
|
|
16
|
+
### Commits
|
|
17
|
+
|
|
18
|
+
- Add autochangelog to release command. [`6af8b18`](https://github.com/alan-wu/mapcore-gallery/commit/6af8b18476727a847eed9ca3c78a8d3a214b4f27)
|
|
19
|
+
- Add new commands for version release. [`383d3f4`](https://github.com/alan-wu/mapcore-gallery/commit/383d3f48805ca16290a4596aad04b0079f9381e2)
|
|
20
|
+
- Downgrad vue version. [`7d2faa1`](https://github.com/alan-wu/mapcore-gallery/commit/7d2faa16cf2eb0cb9eee5b11948d261d6e30826f)
|
|
21
|
+
|
|
22
|
+
## [v0.3.3](https://github.com/alan-wu/mapcore-gallery/compare/v0.3.2...v0.3.3) - 2023-04-10
|
|
23
|
+
|
|
24
|
+
### Commits
|
|
25
|
+
|
|
26
|
+
- Use scss instead. [`67d7834`](https://github.com/alan-wu/mapcore-gallery/commit/67d7834be929efa4b42416e8641006d9af0c3902)
|
|
27
|
+
|
|
28
|
+
## [v0.3.2](https://github.com/alan-wu/mapcore-gallery/compare/v0.3.1...v0.3.2) - 2023-03-23
|
|
29
|
+
|
|
30
|
+
### Merged
|
|
31
|
+
|
|
32
|
+
- Add s3 bucket information [`#6`](https://github.com/alan-wu/mapcore-gallery/pull/6)
|
|
33
|
+
- Make gallery thumbnail clickable, gallery can now be run locally [`#5`](https://github.com/alan-wu/mapcore-gallery/pull/5)
|
|
34
|
+
|
|
35
|
+
### Commits
|
|
36
|
+
|
|
37
|
+
- Fix package name being incorrect [`6979a0e`](https://github.com/alan-wu/mapcore-gallery/commit/6979a0e6236a1693f0b2ef93fed39833648de3e2)
|
|
38
|
+
- Fix a typo. [`ef77f03`](https://github.com/alan-wu/mapcore-gallery/commit/ef77f033991addb6c6a18f26312cf1381f2d8a37)
|
|
39
|
+
- Fix name having a typo [`85d3983`](https://github.com/alan-wu/mapcore-gallery/commit/85d39835737787534ed8e45f972d9bb3075020ae)
|
|
40
|
+
|
|
41
|
+
## [v0.3.1](https://github.com/alan-wu/mapcore-gallery/compare/v0.3.0...v0.3.1) - 2022-06-09
|
|
42
|
+
|
|
43
|
+
### Commits
|
|
44
|
+
|
|
45
|
+
- Dynamically calculate if tooltip is required. [`2eab349`](https://github.com/alan-wu/mapcore-gallery/commit/2eab349f9918ad6aa43f37004aba178100dbd3a7)
|
|
46
|
+
- Make sure the height is kept the same when the title is hidden. [`ee50a78`](https://github.com/alan-wu/mapcore-gallery/commit/ee50a78b6d1ce515689c36c05a30c91281a2b35d)
|
|
47
|
+
- Do not display undfined cards. [`9076c5b`](https://github.com/alan-wu/mapcore-gallery/commit/9076c5b67e058dede001f4343c13c96e933b3919)
|
|
48
|
+
|
|
49
|
+
## [v0.3.0](https://github.com/alan-wu/mapcore-gallery/compare/v0.3.0-beta.5...v0.3.0) - 2022-05-27
|
|
50
|
+
|
|
51
|
+
### Merged
|
|
52
|
+
|
|
53
|
+
- Gallery on sidebar [`#4`](https://github.com/alan-wu/mapcore-gallery/pull/4)
|
|
54
|
+
|
|
55
|
+
### Commits
|
|
56
|
+
|
|
57
|
+
- Increment to version 0.3.0 [`7a49a3d`](https://github.com/alan-wu/mapcore-gallery/commit/7a49a3d6bb2d1c588ce7044ce9930953c61278a4)
|
|
58
|
+
- Reuse functions from gallery helper. [`e49bb37`](https://github.com/alan-wu/mapcore-gallery/commit/e49bb37be0be8dadffb31a98a2b6caa5977fab3f)
|
|
59
|
+
- Fix a bug causing error on sparc-app build process. [`ceb7a81`](https://github.com/alan-wu/mapcore-gallery/commit/ceb7a816f0de5d81c5a331bbb81224c4dec72678)
|
|
60
|
+
|
|
61
|
+
## [v0.3.0-beta.5](https://github.com/alan-wu/mapcore-gallery/compare/v0.3.0-beta.4...v0.3.0-beta.5) - 2022-05-23
|
|
62
|
+
|
|
63
|
+
### Commits
|
|
64
|
+
|
|
65
|
+
- Remove unused codes and provide comments on some new implementations. [`3c5a0ff`](https://github.com/alan-wu/mapcore-gallery/commit/3c5a0ff044165c6837a24d150c9b7bac2cd9a2ae)
|
|
66
|
+
- Extract css [`0f98067`](https://github.com/alan-wu/mapcore-gallery/commit/0f980677a308e555ed00965318fd2dfed7328b4b)
|
|
67
|
+
|
|
68
|
+
## v0.3.0-beta.4 - 2022-05-13
|
|
69
|
+
|
|
70
|
+
### Merged
|
|
71
|
+
|
|
72
|
+
- Autohide indicator bar when the indicator icon becomes very small [`#2`](https://github.com/alan-wu/mapcore-gallery/pull/2)
|
|
73
|
+
- Improve efficiency of loading a large number of cards [`#1`](https://github.com/alan-wu/mapcore-gallery/pull/1)
|
|
74
|
+
|
|
75
|
+
### Commits
|
|
76
|
+
|
|
77
|
+
- Improve package.json file content. [`5bdf180`](https://github.com/alan-wu/mapcore-gallery/commit/5bdf18080f72eb2454a364b11a56f6356aeb0d99)
|
|
78
|
+
- Update caniuse. [`9608ced`](https://github.com/alan-wu/mapcore-gallery/commit/9608ced800c342349e5939681cff2ec65705b602)
|
|
79
|
+
- Upgrade core-js. [`572d323`](https://github.com/alan-wu/mapcore-gallery/commit/572d323f3e6136d124b9878f4342d4769f167792)
|