├── .github ├── FUNDING.yml └── workflows │ ├── automated.yml │ └── manual.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CoCreate.config.js ├── LICENSE ├── README.md ├── demo └── index.html ├── docs └── index.html ├── package.json ├── prettier.config.js ├── release.config.js ├── src ├── index.css └── index.js └── webpack.config.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: CoCreate-app 4 | -------------------------------------------------------------------------------- /.github/workflows/automated.yml: -------------------------------------------------------------------------------- 1 | name: Automated Workflow 2 | on: 3 | push: 4 | branches: 5 | - master 6 | jobs: 7 | about: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - name: Checkout 11 | uses: actions/checkout@v3 12 | - name: Setup Node.js 13 | uses: actions/setup-node@v3 14 | with: 15 | node-version: 16 16 | - name: Jaid/action-sync-node-meta 17 | uses: jaid/action-sync-node-meta@v1.4.0 18 | with: 19 | direction: overwrite-github 20 | githubToken: "${{ secrets.GITHUB }}" 21 | release: 22 | runs-on: ubuntu-latest 23 | steps: 24 | - name: Checkout 25 | uses: actions/checkout@v3 26 | - name: Setup Node.js 27 | uses: actions/setup-node@v3 28 | with: 29 | node-version: 14 30 | - name: Semantic Release 31 | uses: cycjimmy/semantic-release-action@v3 32 | id: semantic 33 | with: 34 | extra_plugins: | 35 | @semantic-release/changelog 36 | @semantic-release/git 37 | @semantic-release/github 38 | env: 39 | GITHUB_TOKEN: "${{ secrets.GITHUB }}" 40 | NPM_TOKEN: "${{ secrets.NPM_TOKEN }}" 41 | outputs: 42 | new_release_published: "${{ steps.semantic.outputs.new_release_published }}" 43 | new_release_version: "${{ steps.semantic.outputs.new_release_version }}" 44 | 45 | -------------------------------------------------------------------------------- /.github/workflows/manual.yml: -------------------------------------------------------------------------------- 1 | name: Manual Workflow 2 | on: 3 | workflow_dispatch: 4 | inputs: 5 | invalidations: 6 | description: | 7 | If set to 'true', invalidates previous upload. 8 | default: "true" 9 | required: true 10 | 11 | jobs: 12 | cdn: 13 | runs-on: ubuntu-latest 14 | env: 15 | DRY_RUN: ${{ github.event.inputs.dry_run }} 16 | GITHUB_TOKEN: "${{ secrets.GITHUB }}" 17 | NPM_TOKEN: "${{ secrets.NPM_TOKEN }}" 18 | 19 | steps: 20 | - name: Checkout 21 | uses: actions/checkout@v3 22 | - name: setup nodejs 23 | uses: actions/setup-node@v3 24 | with: 25 | node-version: 16 26 | - name: yarn install 27 | run: > 28 | echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > 29 | .npmrc 30 | 31 | yarn install 32 | - name: yarn build 33 | run: yarn build 34 | - name: upload latest bundle 35 | uses: CoCreate-app/CoCreate-s3@master 36 | with: 37 | aws-key-id: "${{ secrets.AWSACCESSKEYID }}" 38 | aws-access-key: "${{ secrets.AWSSECERTACCESSKEY }}" 39 | distributionId: "${{ secrets.DISTRIBUTION_ID }}" 40 | bucket: testcrudbucket 41 | source: ./dist 42 | destination: /parallax/latest 43 | acl: public-read 44 | invalidations: ${{ github.event.inputs.invalidations }} 45 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # ignore 2 | node_modules 3 | dist 4 | package-lock.json 5 | yarn.lock 6 | pnpm-lock.yaml 7 | 8 | logs 9 | *.log 10 | npm-debug.log* 11 | yarn-debug.log* 12 | yarn-error.log* 13 | lerna-debug.log* 14 | .pnpm-debug.log* 15 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## [1.10.2](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.10.1...v1.10.2) (2025-05-01) 2 | 3 | 4 | ### Bug Fixes 5 | 6 | * update [@cocreate](https://github.com/cocreate) dependencies ([70250c1](https://github.com/CoCreate-app/CoCreate-parallax/commit/70250c1e62a135ee1f192de1218790be78dabced)) 7 | 8 | ## [1.10.1](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.10.0...v1.10.1) (2025-04-30) 9 | 10 | 11 | ### Bug Fixes 12 | 13 | * added css-loader ([c1aa045](https://github.com/CoCreate-app/CoCreate-parallax/commit/c1aa0454142797c37d30dc7b3feace81a0e883ee)) 14 | * update query attributes ([a0cf356](https://github.com/CoCreate-app/CoCreate-parallax/commit/a0cf3560a57b83efb88fd3d58a079ca36a9cd426)) 15 | * updated cocreate modules versions ([261c925](https://github.com/CoCreate-app/CoCreate-parallax/commit/261c9255bd16a393c53720bdfdacbdc38be229ba)) 16 | * webpack.config and devdependencies ([9c286d4](https://github.com/CoCreate-app/CoCreate-parallax/commit/9c286d4d8969540fe171ef4d9b19d01c88890f3e)) 17 | 18 | # [1.10.0](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.9.3...v1.10.0) (2024-11-04) 19 | 20 | 21 | ### Bug Fixes 22 | 23 | * pretier.config.js and file formating ([21be2f1](https://github.com/CoCreate-app/CoCreate-parallax/commit/21be2f144087194a692de2c3e5ffaebdf029da23)) 24 | 25 | 26 | ### Features 27 | 28 | * add prettier.config.js and format files ([b60da24](https://github.com/CoCreate-app/CoCreate-parallax/commit/b60da24415eace831d1c09f0388099be79e52b7e)) 29 | * add prettier.config.js and format files ([92668ba](https://github.com/CoCreate-app/CoCreate-parallax/commit/92668bafdfa3694a39c35811707129a3409dc4f2)) 30 | 31 | ## [1.9.3](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.9.2...v1.9.3) (2024-06-12) 32 | 33 | 34 | ### Bug Fixes 35 | 36 | * bump cocreate dependencies ([d4eee56](https://github.com/CoCreate-app/CoCreate-parallax/commit/d4eee563d326973e3ff21b9dd73ebfc3f9d29dbe)) 37 | * svg icon class ([33a6c8b](https://github.com/CoCreate-app/CoCreate-parallax/commit/33a6c8be6b5859d86c24a4be9c7f6db509a755e3)) 38 | 39 | ## [1.9.2](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.9.1...v1.9.2) (2024-05-19) 40 | 41 | 42 | ### Bug Fixes 43 | 44 | * replaced localstorage-key with $user_id operator ([742aee8](https://github.com/CoCreate-app/CoCreate-parallax/commit/742aee8b73b7374351a31d46dc7b2a1adcfb2715)) 45 | 46 | ## [1.9.1](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.9.0...v1.9.1) (2024-04-29) 47 | 48 | 49 | ### Bug Fixes 50 | 51 | * bump cocreate dependencies ([a9e8212](https://github.com/CoCreate-app/CoCreate-parallax/commit/a9e821293ba516745782d2a05f329900e2065810)) 52 | 53 | # [1.9.0](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.8.0...v1.9.0) (2023-11-25) 54 | 55 | 56 | ### Features 57 | 58 | * upgrade dependencies for latest features and fixes ([88e9e10](https://github.com/CoCreate-app/CoCreate-parallax/commit/88e9e109c33035b2e9f757caf27dbc15051cf695)) 59 | 60 | # [1.8.0](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.7.0...v1.8.0) (2023-11-25) 61 | 62 | 63 | ### Bug Fixes 64 | 65 | * pass attributes renamed to state ([bcf8fbb](https://github.com/CoCreate-app/CoCreate-parallax/commit/bcf8fbb08011848e515d5718a352496c087fa6cb)) 66 | * update nav, edit button and css path ([7e83469](https://github.com/CoCreate-app/CoCreate-parallax/commit/7e83469d1751a505e160e66abbf0cc7728b2515b)) 67 | 68 | 69 | ### Features 70 | 71 | * upgrade dependencies for latest features and fixes ([393af97](https://github.com/CoCreate-app/CoCreate-parallax/commit/393af97f657fa3710fc3067fbb8ab6470f38ddd9)) 72 | 73 | # [1.7.0](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.6.5...v1.7.0) (2023-11-19) 74 | 75 | 76 | ### Features 77 | 78 | * update dependecies for th latest features and bug fixes ([251fc19](https://github.com/CoCreate-app/CoCreate-parallax/commit/251fc199b9f0a290cf31c2a37cf6a2c876efac92)) 79 | 80 | ## [1.6.5](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.6.4...v1.6.5) (2023-11-12) 81 | 82 | 83 | ### Bug Fixes 84 | 85 | * bump dependencies for latest features ([486d77f](https://github.com/CoCreate-app/CoCreate-parallax/commit/486d77fc67278021fdacc84f882fc83a4d90fe6c)) 86 | 87 | ## [1.6.4](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.6.3...v1.6.4) (2023-11-09) 88 | 89 | 90 | ### Bug Fixes 91 | 92 | * meta name typo ([c0e20bb](https://github.com/CoCreate-app/CoCreate-parallax/commit/c0e20bbc2207553344e56e5921d677a084d9b366)) 93 | * update host ([7ff6f35](https://github.com/CoCreate-app/CoCreate-parallax/commit/7ff6f353c91664f2f0115ebe5f5c511af229c65b)) 94 | 95 | ## [1.6.3](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.6.2...v1.6.3) (2023-11-03) 96 | 97 | 98 | ### Bug Fixes 99 | 100 | * favicon.ico path ([957c703](https://github.com/CoCreate-app/CoCreate-parallax/commit/957c70391b146bc2156628f56c41094e42dffe89)) 101 | 102 | ## [1.6.2](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.6.1...v1.6.2) (2023-09-18) 103 | 104 | 105 | ### Bug Fixes 106 | 107 | * Add path and pathname ([7fac16f](https://github.com/CoCreate-app/CoCreate-parallax/commit/7fac16f41bc15b1e79990ac194622a1ad00290bf)) 108 | * Update CoCreate depndencies to latest versions ([2334ae1](https://github.com/CoCreate-app/CoCreate-parallax/commit/2334ae151d6057c834e7cda44e04f30203cb59b8)) 109 | 110 | ## [1.6.1](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.6.0...v1.6.1) (2023-08-21) 111 | 112 | 113 | ### Bug Fixes 114 | 115 | * bump dependencies ([ccf00aa](https://github.com/CoCreate-app/CoCreate-parallax/commit/ccf00aa8a9b23debb556cd29778dc0731f016ad8)) 116 | 117 | # [1.6.0](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.5.1...v1.6.0) (2023-08-21) 118 | 119 | 120 | ### Features 121 | 122 | * Update cocreate dependencies for the latest features and bug fixes ([7c04d18](https://github.com/CoCreate-app/CoCreate-parallax/commit/7c04d1892a7f6904383353765ee88de052395feb)) 123 | 124 | ## [1.5.1](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.5.0...v1.5.1) (2023-08-21) 125 | 126 | 127 | ### Bug Fixes 128 | 129 | * /dist/CoCreate.js updated to https://CoCreate.app/dist/CoCreate.js ([56ab1c7](https://github.com/CoCreate-app/CoCreate-parallax/commit/56ab1c73215da24e6d5d9372f37714d95b8639bb)) 130 | * replace cdn with /dist ([4c331a7](https://github.com/CoCreate-app/CoCreate-parallax/commit/4c331a7856073576661014b09e9b974bd5c159a4)) 131 | * update file uploader ([9cd08e4](https://github.com/CoCreate-app/CoCreate-parallax/commit/9cd08e4845cde689c1910e445254d346f03f249d)) 132 | 133 | # [1.5.0](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.4.0...v1.5.0) (2023-08-17) 134 | 135 | 136 | ### Features 137 | 138 | * bump cocreate dependencies for the latest updates and features ([f396b74](https://github.com/CoCreate-app/CoCreate-parallax/commit/f396b74f3f584c146b80e71117c515630d7a04bd)) 139 | 140 | # [1.4.0](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.25...v1.4.0) (2023-08-16) 141 | 142 | 143 | ### Bug Fixes 144 | 145 | * crud attributes renamed ([2855d60](https://github.com/CoCreate-app/CoCreate-parallax/commit/2855d60effc2f01fa6f4f037f5744868741d7e20)) 146 | * replace -target -selector ([efca4dc](https://github.com/CoCreate-app/CoCreate-parallax/commit/efca4dc26aeaddbdada30994c19456b21ff358d1)) 147 | * webpack.config and package.json make use of mode=production instead of process.env ([780c2cd](https://github.com/CoCreate-app/CoCreate-parallax/commit/780c2cdbd734af5f4c12b25232c2e3b20b09435b)) 148 | 149 | 150 | ### Features 151 | 152 | * name attribute and variable renamed to key ([b1b5b98](https://github.com/CoCreate-app/CoCreate-parallax/commit/b1b5b98d04c459893ccd134f6658ef402ce3f298)) 153 | 154 | ## [1.3.25](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.24...v1.3.25) (2023-06-14) 155 | 156 | 157 | ### Bug Fixes 158 | 159 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([061dc39](https://github.com/CoCreate-app/CoCreate-parallax/commit/061dc398af2afd588e8608199210fcbdaa044b81)) 160 | 161 | ## [1.3.24](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.23...v1.3.24) (2023-06-11) 162 | 163 | 164 | ### Bug Fixes 165 | 166 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([1d5b6b3](https://github.com/CoCreate-app/CoCreate-parallax/commit/1d5b6b36730a9fb7fbb8ed993dca87812554e1c0)) 167 | 168 | ## [1.3.23](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.22...v1.3.23) (2023-06-11) 169 | 170 | 171 | ### Bug Fixes 172 | 173 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([8ecaf07](https://github.com/CoCreate-app/CoCreate-parallax/commit/8ecaf076710035470682044f98e6d36a621147f4)) 174 | 175 | ## [1.3.22](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.21...v1.3.22) (2023-06-11) 176 | 177 | 178 | ### Bug Fixes 179 | 180 | * testing workflow ([a82ead0](https://github.com/CoCreate-app/CoCreate-parallax/commit/a82ead0084f33321ff061154564d9378b9866075)) 181 | 182 | ## [1.3.21](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.20...v1.3.21) (2023-06-11) 183 | 184 | 185 | ### Bug Fixes 186 | 187 | * testing workflow ([02ba2d1](https://github.com/CoCreate-app/CoCreate-parallax/commit/02ba2d17130536e97c8b0ad90257e52778d88fd2)) 188 | 189 | ## [1.3.20](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.19...v1.3.20) (2023-06-11) 190 | 191 | 192 | ### Bug Fixes 193 | 194 | * testing workflow ([db72246](https://github.com/CoCreate-app/CoCreate-parallax/commit/db72246282486dc7daf8bd17ada7ef25a7ab2035)) 195 | * testing workflow ([eefb68d](https://github.com/CoCreate-app/CoCreate-parallax/commit/eefb68d81b47f8683b0562bcea8ea32473ecda65)) 196 | 197 | ## [1.3.19](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.18...v1.3.19) (2023-06-11) 198 | 199 | 200 | ### Bug Fixes 201 | 202 | * testing workflow ([58bf1e9](https://github.com/CoCreate-app/CoCreate-parallax/commit/58bf1e97b9439beb64e3c068ce4b7d6e0cf2dd3b)) 203 | 204 | ## [1.3.18](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.17...v1.3.18) (2023-06-11) 205 | 206 | 207 | ### Bug Fixes 208 | 209 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([80ba04e](https://github.com/CoCreate-app/CoCreate-parallax/commit/80ba04ebeefa52e2fcd4e4545662b1172dd9ff96)) 210 | 211 | ## [1.3.17](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.16...v1.3.17) (2023-06-11) 212 | 213 | 214 | ### Bug Fixes 215 | 216 | * postintall error ([661ec49](https://github.com/CoCreate-app/CoCreate-parallax/commit/661ec49b39f539d7cfbb0a638c7164c95d1fbc83)) 217 | 218 | ## [1.3.16](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.15...v1.3.16) (2023-06-11) 219 | 220 | 221 | ### Bug Fixes 222 | 223 | * @cocreate/cli moved to dependencies ([0f8541a](https://github.com/CoCreate-app/CoCreate-parallax/commit/0f8541ae4e4df1d1bccaaebbbbad254bbc9fe028)) 224 | 225 | ## [1.3.15](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.14...v1.3.15) (2023-06-11) 226 | 227 | 228 | ### Bug Fixes 229 | 230 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([373e20a](https://github.com/CoCreate-app/CoCreate-parallax/commit/373e20a5d5a8bf6a0b4555350623a0fb4b7641c7)) 231 | 232 | ## [1.3.14](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.13...v1.3.14) (2023-06-11) 233 | 234 | 235 | ### Bug Fixes 236 | 237 | * renamed hosts to host. the value can be a string or an array of strings ([16c0766](https://github.com/CoCreate-app/CoCreate-parallax/commit/16c0766b5a0b69784d35747fc46153efb0f29c3e)) 238 | 239 | ## [1.3.13](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.12...v1.3.13) (2023-06-10) 240 | 241 | 242 | ### Bug Fixes 243 | 244 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([69608aa](https://github.com/CoCreate-app/CoCreate-parallax/commit/69608aa08c212ee90763889d74163ded96474d19)) 245 | 246 | ## [1.3.12](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.11...v1.3.12) (2023-06-04) 247 | 248 | 249 | ### Bug Fixes 250 | 251 | * Refactor CoCreate.config.js to remove hard-coded credentials ([93a6fb3](https://github.com/CoCreate-app/CoCreate-parallax/commit/93a6fb345837638805471225300481d26d498baa)) 252 | 253 | ## [1.3.11](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.10...v1.3.11) (2023-06-04) 254 | 255 | 256 | ### Bug Fixes 257 | 258 | * replaced secert GITHUB_TOKEN with GITHUB ([0d3fefa](https://github.com/CoCreate-app/CoCreate-parallax/commit/0d3fefab5552345126c0a96f056727936ac80a38)) 259 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([0ab492b](https://github.com/CoCreate-app/CoCreate-parallax/commit/0ab492b98820068f1c60a3e52e6d67980aaa2827)) 260 | 261 | ## [1.3.10](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.9...v1.3.10) (2023-06-04) 262 | 263 | 264 | ### Bug Fixes 265 | 266 | * **semantic-release:** worklow error solved by running node version 14 ([8a73fc0](https://github.com/CoCreate-app/CoCreate-parallax/commit/8a73fc0bf3d768425e58b39d41865009081a62c4)) 267 | 268 | ## [1.3.9](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.8...v1.3.9) (2023-05-21) 269 | 270 | 271 | ### Bug Fixes 272 | 273 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([dc3c5f7](https://github.com/CoCreate-app/CoCreate-parallax/commit/dc3c5f7d8c878d653844b1dcd0ea5e50654a1578)) 274 | 275 | ## [1.3.8](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.7...v1.3.8) (2023-05-19) 276 | 277 | 278 | ### Bug Fixes 279 | 280 | * apikey renamed to key ([8b6b790](https://github.com/CoCreate-app/CoCreate-parallax/commit/8b6b790ca56f359413ff82678ea03a2bb611b9ae)) 281 | * update packages to latest version. This commit updates various packages in the dependencies section of the package.json file to their latest published versions, thereby fixing multiple bugs and improving overall performance. ([22eaf47](https://github.com/CoCreate-app/CoCreate-parallax/commit/22eaf470285f8b4d92661bf6c1dc11f300af92d7)) 282 | 283 | ## [1.3.7](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.6...v1.3.7) (2023-05-06) 284 | 285 | 286 | ### Bug Fixes 287 | 288 | * bump [@cocreate](https://github.com/cocreate) dependencies ([23f10aa](https://github.com/CoCreate-app/CoCreate-parallax/commit/23f10aa6ac3ba5b3d833f7ea931c5cd53bf8dc83)) 289 | 290 | ## [1.3.6](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.5...v1.3.6) (2023-05-01) 291 | 292 | 293 | ### Bug Fixes 294 | 295 | * update manifest.json to manifest.webmanifest ([1e76a7f](https://github.com/CoCreate-app/CoCreate-parallax/commit/1e76a7f4bf078fa143a16d5c7499d49f0ebbf172)) 296 | 297 | ## [1.3.5](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.4...v1.3.5) (2023-05-01) 298 | 299 | 300 | ### Bug Fixes 301 | 302 | * replace fontawesome with svg ([2b595d0](https://github.com/CoCreate-app/CoCreate-parallax/commit/2b595d0934b8b47b02dc5924019ba6bcbbf37a94)) 303 | 304 | ## [1.3.4](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.3...v1.3.4) (2023-04-30) 305 | 306 | 307 | ### Bug Fixes 308 | 309 | * fullscreen target updated to fullscreen fullscreen-target ([2dc5642](https://github.com/CoCreate-app/CoCreate-parallax/commit/2dc56425b94351d642417b8b925d96abee54d52d)) 310 | * package-lock.json and pnpm-lock.yaml added to .gitignore ([cc15e70](https://github.com/CoCreate-app/CoCreate-parallax/commit/cc15e70cfab769c32b8a0d3d9ca8ca416a20a597)) 311 | * removed toogle fullscreen icons. now using css content ([f193c54](https://github.com/CoCreate-app/CoCreate-parallax/commit/f193c54704f151f06a08f36ddff5b343cd3938a2)) 312 | * replaced sessionUser and sessionOrg with localstorage attributes ([217a577](https://github.com/CoCreate-app/CoCreate-parallax/commit/217a5778c56d3a7ac5fccd77f615486229e63ef7)) 313 | 314 | ## [1.3.3](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.2...v1.3.3) (2023-04-24) 315 | 316 | 317 | ### Bug Fixes 318 | 319 | * updated worrkflows to v3 and node version 16 ([38d74ad](https://github.com/CoCreate-app/CoCreate-parallax/commit/38d74ad07eb6d777309c5d8cefef9b18588f4d89)) 320 | * workflow node version updated 16 ([718067f](https://github.com/CoCreate-app/CoCreate-parallax/commit/718067f9b5763be82d7f3eef9b2313d763ee8511)) 321 | 322 | ## [1.3.2](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.1...v1.3.2) (2023-04-24) 323 | 324 | 325 | ### Bug Fixes 326 | 327 | * bump [@cocreate](https://github.com/cocreate) dependencies ([8f305a3](https://github.com/CoCreate-app/CoCreate-parallax/commit/8f305a37a505819cc703f1d7e965e8150e250dcf)) 328 | 329 | ## [1.3.1](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.3.0...v1.3.1) (2023-04-24) 330 | 331 | 332 | ### Bug Fixes 333 | 334 | * removed uglifyjs-webpack-plugin ([f7b0c99](https://github.com/CoCreate-app/CoCreate-parallax/commit/f7b0c9942fecfb4787faa217053f875fbb5403d2)) 335 | 336 | # [1.3.0](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.2.6...v1.3.0) (2023-04-24) 337 | 338 | 339 | ### Features 340 | 341 | * added pwa manifest ([1d035fa](https://github.com/CoCreate-app/CoCreate-parallax/commit/1d035fa99e4dc57b8c86f60295cada35f9fccb8a)) 342 | 343 | ## [1.2.6](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.2.5...v1.2.6) (2023-04-11) 344 | 345 | 346 | ### Bug Fixes 347 | 348 | * bump dependencies ([4e09760](https://github.com/CoCreate-app/CoCreate-parallax/commit/4e0976035ffbc0826c91b91f21e036e7a173eef4)) 349 | 350 | ## [1.2.5](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.2.4...v1.2.5) (2023-04-11) 351 | 352 | 353 | ### Bug Fixes 354 | 355 | * bump [@cocreate](https://github.com/cocreate) dependencies ([3ae9a0d](https://github.com/CoCreate-app/CoCreate-parallax/commit/3ae9a0daa3db89d67368e75de53d1c300db9185b)) 356 | 357 | ## [1.2.4](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.2.3...v1.2.4) (2023-04-11) 358 | 359 | 360 | ### Bug Fixes 361 | 362 | * renamed domains to hosts ([2de8229](https://github.com/CoCreate-app/CoCreate-parallax/commit/2de82297f470d9459c3f7eea4f252a0f8f159f45)) 363 | 364 | ## [1.2.3](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.2.2...v1.2.3) (2023-03-30) 365 | 366 | 367 | ### Bug Fixes 368 | 369 | * bump [@cocreate](https://github.com/cocreate) dependencies' ([a94aaec](https://github.com/CoCreate-app/CoCreate-parallax/commit/a94aaec1834447cf4ab14ad332481dee64c628a6)) 370 | 371 | ## [1.2.2](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.2.1...v1.2.2) (2023-03-16) 372 | 373 | 374 | ### Bug Fixes 375 | 376 | * bump dependencies' ([9ffc45b](https://github.com/CoCreate-app/CoCreate-parallax/commit/9ffc45be7743e525e44189d69a8a742c11a843f8)) 377 | 378 | ## [1.2.1](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.2.0...v1.2.1) (2023-03-16) 379 | 380 | 381 | ### Bug Fixes 382 | 383 | * bump dependencies' ([0b961b9](https://github.com/CoCreate-app/CoCreate-parallax/commit/0b961b90c73aaea7b72e740ee3e6b2e5044c99c3)) 384 | 385 | # [1.2.0](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.119...v1.2.0) (2023-03-16) 386 | 387 | 388 | ### Features 389 | 390 | * replaced get-value and set-value with a super charged version of CoCreate-events ([10325cb](https://github.com/CoCreate-app/CoCreate-parallax/commit/10325cba9fcf1ce30559f6874dbd780e830c444e)) 391 | 392 | ## [1.1.119](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.118...v1.1.119) (2023-02-01) 393 | 394 | 395 | ### Bug Fixes 396 | 397 | * bump dependencies ([c6f025f](https://github.com/CoCreate-app/CoCreate-parallax/commit/c6f025f88eb738308e6d16b5798f797d7fb9031a)) 398 | 399 | ## [1.1.118](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.117...v1.1.118) (2023-01-31) 400 | 401 | 402 | ### Bug Fixes 403 | 404 | * bump dependencies ([0c84b15](https://github.com/CoCreate-app/CoCreate-parallax/commit/0c84b15339e85a220f48053aefd151c58e6f49f0)) 405 | 406 | ## [1.1.117](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.116...v1.1.117) (2023-01-30) 407 | 408 | 409 | ### Bug Fixes 410 | 411 | * bump dependencies ([40bb654](https://github.com/CoCreate-app/CoCreate-parallax/commit/40bb654ddd1f42ace7529fb5526e5e76262614fb)) 412 | 413 | ## [1.1.116](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.115...v1.1.116) (2023-01-29) 414 | 415 | 416 | ### Bug Fixes 417 | 418 | * bump dependencies ([744f7f9](https://github.com/CoCreate-app/CoCreate-parallax/commit/744f7f9b47d7be473a60c1509e3106b6821d2b01)) 419 | 420 | ## [1.1.115](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.114...v1.1.115) (2023-01-27) 421 | 422 | 423 | ### Bug Fixes 424 | 425 | * bump dependencies ([0363cd2](https://github.com/CoCreate-app/CoCreate-parallax/commit/0363cd25ac2cc677528432ec80418f112becbb61)) 426 | 427 | ## [1.1.114](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.113...v1.1.114) (2023-01-13) 428 | 429 | 430 | ### Bug Fixes 431 | 432 | * bump dependencies ([695228b](https://github.com/CoCreate-app/CoCreate-parallax/commit/695228b5e18c2346ac5a26cf070e5bc8ad16a8f8)) 433 | 434 | ## [1.1.113](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.112...v1.1.113) (2023-01-10) 435 | 436 | 437 | ### Bug Fixes 438 | 439 | * bump dependencies ([ba2c2aa](https://github.com/CoCreate-app/CoCreate-parallax/commit/ba2c2aab698a49412f6f90fc336b43eb19d21766)) 440 | 441 | ## [1.1.112](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.111...v1.1.112) (2023-01-09) 442 | 443 | 444 | ### Bug Fixes 445 | 446 | * bump dependnecies ([7f91c60](https://github.com/CoCreate-app/CoCreate-parallax/commit/7f91c608a474b20868a8c582ec94da4c89433bf7)) 447 | 448 | ## [1.1.111](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.110...v1.1.111) (2023-01-06) 449 | 450 | 451 | ### Bug Fixes 452 | 453 | * bump dependencies, worklow [@v3](https://github.com/v3) ([984ac92](https://github.com/CoCreate-app/CoCreate-parallax/commit/984ac929a86e3f3ad53e386e72f2e4120b2ca294)) 454 | * edit in github btn styles ([fc67150](https://github.com/CoCreate-app/CoCreate-parallax/commit/fc671508f2c4060969c6c176f15645f2274c0013)) 455 | 456 | ## [1.1.110](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.109...v1.1.110) (2023-01-05) 457 | 458 | 459 | ### Bug Fixes 460 | 461 | * bump cdn to 1.39.4 ([d963ada](https://github.com/CoCreate-app/CoCreate-parallax/commit/d963ada7f14c5a1c5d5052d605abf12f8bdbf51c)) 462 | * bump dependencies ([e80eb5c](https://github.com/CoCreate-app/CoCreate-parallax/commit/e80eb5c2eddc9c7e3ad2a0f7333fa6dadc4494ce)) 463 | 464 | ## [1.1.109](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.108...v1.1.109) (2023-01-01) 465 | 466 | 467 | ### Bug Fixes 468 | 469 | * docs sanbox overflow ([150b92a](https://github.com/CoCreate-app/CoCreate-parallax/commit/150b92a988dc34eab4ff8fa7c9682afd14c06e69)) 470 | 471 | ## [1.1.108](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.107...v1.1.108) (2022-12-31) 472 | 473 | 474 | ### Bug Fixes 475 | 476 | * bump dependencies ([9efc002](https://github.com/CoCreate-app/CoCreate-parallax/commit/9efc002a955d055c5d46a01f6849be0fecbf85da)) 477 | 478 | ## [1.1.107](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.106...v1.1.107) (2022-12-30) 479 | 480 | 481 | ### Bug Fixes 482 | 483 | * update config sources to use template braces with entry on src ([2f8b611](https://github.com/CoCreate-app/CoCreate-parallax/commit/2f8b61177a5c97b51c708e076e1562c431e3fab8)) 484 | 485 | ## [1.1.106](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.105...v1.1.106) (2022-12-29) 486 | 487 | 488 | ### Bug Fixes 489 | 490 | * bump dependencies ([5ed2380](https://github.com/CoCreate-app/CoCreate-parallax/commit/5ed2380b6567bb8ff94a3438cd18716f723f9198)) 491 | 492 | ## [1.1.105](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.104...v1.1.105) (2022-12-27) 493 | 494 | 495 | ### Bug Fixes 496 | 497 | * bump dependencies ([a0c171b](https://github.com/CoCreate-app/CoCreate-parallax/commit/a0c171b036e135ec5baea416ac1f2259b672c87e)) 498 | * modal href updated to modal-src ([f8632b3](https://github.com/CoCreate-app/CoCreate-parallax/commit/f8632b3ae705a35c98d3f81a8ef9d4de80f8484b)) 499 | 500 | ## [1.1.104](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.103...v1.1.104) (2022-12-25) 501 | 502 | 503 | ### Bug Fixes 504 | 505 | * bump dependencies ([cc4f97f](https://github.com/CoCreate-app/CoCreate-parallax/commit/cc4f97f69fd1d7aa998a5754607964a969194a69)) 506 | * type="modal" and pass_to updated to action="pass, openModal" ([55c7cec](https://github.com/CoCreate-app/CoCreate-parallax/commit/55c7ceca31065415a1c844a34779e88fa78c9893)) 507 | 508 | ## [1.1.103](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.102...v1.1.103) (2022-12-23) 509 | 510 | 511 | ### Bug Fixes 512 | 513 | * bump dependnecies ([9915289](https://github.com/CoCreate-app/CoCreate-parallax/commit/9915289e280a566a7ce57690893e9af194a8ae9e)) 514 | 515 | ## [1.1.102](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.101...v1.1.102) (2022-12-22) 516 | 517 | 518 | ### Bug Fixes 519 | 520 | * bump dependencies ([0829a94](https://github.com/CoCreate-app/CoCreate-parallax/commit/0829a94768b826d46649f2cda73033741a852ae9)) 521 | * update cdn ([82f5d96](https://github.com/CoCreate-app/CoCreate-parallax/commit/82f5d96df31758fa9f147c35a66b31526813dfa5)) 522 | 523 | ## [1.1.101](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.100...v1.1.101) (2022-12-22) 524 | 525 | 526 | ### Bug Fixes 527 | 528 | * update demos and bump dependencies ([6a2c332](https://github.com/CoCreate-app/CoCreate-parallax/commit/6a2c332e0464ccb817a3a21ef5ca1d4879ee7df1)) 529 | 530 | ## [1.1.100](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.99...v1.1.100) (2022-12-21) 531 | 532 | 533 | ### Bug Fixes 534 | 535 | * bump dependencies ([7c50a4e](https://github.com/CoCreate-app/CoCreate-parallax/commit/7c50a4e4fe80427573d010b83b051fb743040b96)) 536 | 537 | ## [1.1.99](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.98...v1.1.99) (2022-12-20) 538 | 539 | 540 | ### Bug Fixes 541 | 542 | * bump dependencies ([3549142](https://github.com/CoCreate-app/CoCreate-parallax/commit/35491424d0cd774d87417dc99731b709304e15af)) 543 | 544 | ## [1.1.98](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.97...v1.1.98) (2022-12-15) 545 | 546 | 547 | ### Bug Fixes 548 | 549 | * add missing dev dependency style-loader ([e7b01e2](https://github.com/CoCreate-app/CoCreate-parallax/commit/e7b01e26351a64cc25dc28456a35d89ed92fc4e3)) 550 | 551 | ## [1.1.97](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.96...v1.1.97) (2022-12-13) 552 | 553 | 554 | ### Bug Fixes 555 | 556 | * removed un used devDependencies ([7a1d02b](https://github.com/CoCreate-app/CoCreate-parallax/commit/7a1d02bb00a8d94fea335732dfe4e27fe5c0259e)) 557 | 558 | ## [1.1.96](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.95...v1.1.96) (2022-12-13) 559 | 560 | 561 | ### Bug Fixes 562 | 563 | * bump dependencies ([ef35bb9](https://github.com/CoCreate-app/CoCreate-parallax/commit/ef35bb9cf813ff5a96d64e70b969e8521e9e49c0)) 564 | 565 | ## [1.1.95](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.94...v1.1.95) (2022-12-12) 566 | 567 | 568 | ### Bug Fixes 569 | 570 | * bump dependencies ([2427d99](https://github.com/CoCreate-app/CoCreate-parallax/commit/2427d995127e27b4ddca97268c5c7d95cbeb6b47)) 571 | 572 | ## [1.1.94](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.93...v1.1.94) (2022-12-11) 573 | 574 | 575 | ### Bug Fixes 576 | 577 | * bump dependencies ([af61d11](https://github.com/CoCreate-app/CoCreate-parallax/commit/af61d1155717180efa16fff49b037b0799b924ee)) 578 | 579 | ## [1.1.93](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.92...v1.1.93) (2022-12-09) 580 | 581 | 582 | ### Bug Fixes 583 | 584 | * bump dependencies ([90463ce](https://github.com/CoCreate-app/CoCreate-parallax/commit/90463ceb69352d4c7f8f0276dc74501678bdd4a7)) 585 | 586 | ## [1.1.92](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.91...v1.1.92) (2022-12-08) 587 | 588 | 589 | ### Bug Fixes 590 | 591 | * bump dependencies ([5651bc4](https://github.com/CoCreate-app/CoCreate-parallax/commit/5651bc4c16156a50fb1e324c2db2d0df13e4fc4a)) 592 | 593 | ## [1.1.91](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.90...v1.1.91) (2022-12-07) 594 | 595 | 596 | ### Bug Fixes 597 | 598 | * bump dependencies ([ce23c6d](https://github.com/CoCreate-app/CoCreate-parallax/commit/ce23c6d880e498fedd3341ef09999817b7d36aff)) 599 | 600 | ## [1.1.90](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.89...v1.1.90) (2022-12-04) 601 | 602 | 603 | ### Bug Fixes 604 | 605 | * bump dependencies ([1a28ac1](https://github.com/CoCreate-app/CoCreate-parallax/commit/1a28ac1c1a816032f1a13566904d92be0710b912)) 606 | 607 | ## [1.1.89](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.88...v1.1.89) (2022-12-02) 608 | 609 | 610 | ### Bug Fixes 611 | 612 | * docs ([d0b1796](https://github.com/CoCreate-app/CoCreate-parallax/commit/d0b17963bcb8ab893b395e1b1c873b1d0cf95cd1)) 613 | 614 | ## [1.1.88](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.87...v1.1.88) (2022-12-02) 615 | 616 | 617 | ### Bug Fixes 618 | 619 | * bump dependencies ([fe8e5a4](https://github.com/CoCreate-app/CoCreate-parallax/commit/fe8e5a4def31096ff4ca5fcd47f25323a9b98786)) 620 | 621 | ## [1.1.87](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.86...v1.1.87) (2022-11-28) 622 | 623 | 624 | ### Bug Fixes 625 | 626 | * bump dependencies ([6e085ee](https://github.com/CoCreate-app/CoCreate-parallax/commit/6e085eef6404679f0d4e0e5ff43e100ea3d6e227)) 627 | 628 | ## [1.1.86](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.85...v1.1.86) (2022-11-28) 629 | 630 | 631 | ### Bug Fixes 632 | 633 | * bump dependencies ([811e265](https://github.com/CoCreate-app/CoCreate-parallax/commit/811e2650b264b482d5e27996964e5b21938ec0ff)) 634 | 635 | ## [1.1.85](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.84...v1.1.85) (2022-11-27) 636 | 637 | 638 | ### Bug Fixes 639 | 640 | * bump dependencies ([1b7cb63](https://github.com/CoCreate-app/CoCreate-parallax/commit/1b7cb63984d7ad4971cbc2bd540ed582cf9cfee4)) 641 | 642 | ## [1.1.84](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.83...v1.1.84) (2022-11-26) 643 | 644 | 645 | ### Bug Fixes 646 | 647 | * bump dependencies ([afa646c](https://github.com/CoCreate-app/CoCreate-parallax/commit/afa646c1b37093c4f8cb7dafdfbffab6f0d1fe44)) 648 | 649 | ## [1.1.83](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.82...v1.1.83) (2022-11-25) 650 | 651 | 652 | ### Bug Fixes 653 | 654 | * bump dependencies ([3cb2b04](https://github.com/CoCreate-app/CoCreate-parallax/commit/3cb2b04b3c1df6ac6bcf9aeb593e5800cfe8aa06)) 655 | 656 | ## [1.1.82](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.81...v1.1.82) (2022-11-24) 657 | 658 | 659 | ### Bug Fixes 660 | 661 | * bump depenedencies ([ffe56d7](https://github.com/CoCreate-app/CoCreate-parallax/commit/ffe56d72748728df7ae1ae5138aab0c9606fe365)) 662 | 663 | ## [1.1.81](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.80...v1.1.81) (2022-11-23) 664 | 665 | 666 | ### Bug Fixes 667 | 668 | * bumped [@cocreate](https://github.com/cocreate) dependencies ([8289d2a](https://github.com/CoCreate-app/CoCreate-parallax/commit/8289d2af566f5d3042b5293ecde6eb8c79070052)) 669 | 670 | ## [1.1.80](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.79...v1.1.80) (2022-11-22) 671 | 672 | 673 | ### Bug Fixes 674 | 675 | * workflow docs ([02a2472](https://github.com/CoCreate-app/CoCreate-parallax/commit/02a2472d3fb6e8ac5212c7a764913c1a7b6059d0)) 676 | 677 | ## [1.1.79](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.78...v1.1.79) (2022-11-22) 678 | 679 | 680 | ### Bug Fixes 681 | 682 | * apply src: {{source}} to CoCreate.config ([d5968d2](https://github.com/CoCreate-app/CoCreate-parallax/commit/d5968d2482a7364e7025d41473ccdcb005035bb3)) 683 | 684 | ## [1.1.78](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.77...v1.1.78) (2022-11-21) 685 | 686 | 687 | ### Bug Fixes 688 | 689 | * @cocreate/docs bug fix ([1ee3322](https://github.com/CoCreate-app/CoCreate-parallax/commit/1ee33220956161779c868509f4bb88aa0c55cb17)) 690 | 691 | ## [1.1.77](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.76...v1.1.77) (2022-11-21) 692 | 693 | 694 | ### Bug Fixes 695 | 696 | * replaced document_id with document._id ([2f87420](https://github.com/CoCreate-app/CoCreate-parallax/commit/2f8742060fb452fc4a04611f65f3d4afe1af4508)) 697 | 698 | ## [1.1.76](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.75...v1.1.76) (2022-11-21) 699 | 700 | 701 | ### Bug Fixes 702 | 703 | * bump [@cocreate](https://github.com/cocreate) dependencies ([469d6be](https://github.com/CoCreate-app/CoCreate-parallax/commit/469d6be375a5bc774b13127c6ba7a322e73dd6f5)) 704 | 705 | ## [1.1.75](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.74...v1.1.75) (2022-11-21) 706 | 707 | 708 | ### Bug Fixes 709 | 710 | * bump d@cocreate ependencies ([2fe236f](https://github.com/CoCreate-app/CoCreate-parallax/commit/2fe236f59f15c0bfcd5ee5a6e5c2bbf992b05d25)) 711 | 712 | ## [1.1.74](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.73...v1.1.74) (2022-10-02) 713 | 714 | 715 | ### Bug Fixes 716 | 717 | * minor bug fixes ([8834b4a](https://github.com/CoCreate-app/CoCreate-parallax/commit/8834b4a69a575e58320c4bd87332853a6df9cce5)) 718 | 719 | ## [1.1.73](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.72...v1.1.73) (2022-10-02) 720 | 721 | 722 | ### Bug Fixes 723 | 724 | * bump @cocreate/hosting and @cocreate/socket-client ([1e35ab5](https://github.com/CoCreate-app/CoCreate-parallax/commit/1e35ab586e0b05bef5fcf274153127e54562e36c)) 725 | 726 | ## [1.1.72](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.71...v1.1.72) (2022-10-01) 727 | 728 | 729 | ### Bug Fixes 730 | 731 | * bump dependencies ([be95bf4](https://github.com/CoCreate-app/CoCreate-parallax/commit/be95bf46badd20865ddb515263cf75bb006bde1f)) 732 | 733 | ## [1.1.71](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.70...v1.1.71) (2022-09-30) 734 | 735 | 736 | ### Bug Fixes 737 | 738 | * bump [@cocreate](https://github.com/cocreate) dependencies ([0112b89](https://github.com/CoCreate-app/CoCreate-parallax/commit/0112b89b75578b572e8e932d628357b86d3745b6)) 739 | 740 | ## [1.1.70](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.69...v1.1.70) (2022-09-30) 741 | 742 | 743 | ### Bug Fixes 744 | 745 | * bump [@cocreate](https://github.com/cocreate) dependencies ([6ae84bf](https://github.com/CoCreate-app/CoCreate-parallax/commit/6ae84bf71cff87a32abb8878a3d80c1014362e2c)) 746 | 747 | ## [1.1.69](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.68...v1.1.69) (2022-09-30) 748 | 749 | 750 | ### Bug Fixes 751 | 752 | * bump [@cocreate](https://github.com/cocreate) dependencies ([11ead42](https://github.com/CoCreate-app/CoCreate-parallax/commit/11ead42083f2030d4fe7dd38114e79123f0d452c)) 753 | 754 | ## [1.1.68](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.67...v1.1.68) (2022-09-30) 755 | 756 | 757 | ### Bug Fixes 758 | 759 | * bump dependencies ([3fee4eb](https://github.com/CoCreate-app/CoCreate-parallax/commit/3fee4eb383386f02ac502f2d46a77d79f918f22b)) 760 | 761 | ## [1.1.67](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.66...v1.1.67) (2022-09-29) 762 | 763 | 764 | ### Bug Fixes 765 | 766 | * config renameed to CoCreateConfig ([0115af9](https://github.com/CoCreate-app/CoCreate-parallax/commit/0115af94d58dac74ce943da0304f0fbd899f5b68)) 767 | 768 | ## [1.1.66](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.65...v1.1.66) (2022-09-01) 769 | 770 | 771 | ### Bug Fixes 772 | 773 | * bump all of [@cocreate](https://github.com/cocreate) dependencies ([56f0d64](https://github.com/CoCreate-app/CoCreate-parallax/commit/56f0d64337e4e406ed8f88d416bf56e5dc35afac)) 774 | 775 | ## [1.1.65](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.64...v1.1.65) (2022-06-18) 776 | 777 | 778 | ### Bug Fixes 779 | 780 | * bump dependencies ([e3ffa3d](https://github.com/CoCreate-app/CoCreate-parallax/commit/e3ffa3d993a92ca4184f0c9df6a08b05b14b70e4)) 781 | 782 | ## [1.1.64](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.63...v1.1.64) (2022-06-12) 783 | 784 | 785 | ### Bug Fixes 786 | 787 | * update dependencies ([9bc7327](https://github.com/CoCreate-app/CoCreate-parallax/commit/9bc73273b59a5dcb0df4d237467a734166370dac)) 788 | * update docs css document_id ([d2216b6](https://github.com/CoCreate-app/CoCreate-parallax/commit/d2216b620a5621f4cca452b5a1770350f8b93dd4)) 789 | 790 | ## [1.1.63](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.62...v1.1.63) (2022-05-23) 791 | 792 | 793 | ### Bug Fixes 794 | 795 | * bump all dependencies ([9d63514](https://github.com/CoCreate-app/CoCreate-parallax/commit/9d63514064b5cf1c55d86d0c94158899241f9d64)) 796 | 797 | ## [1.1.62](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.61...v1.1.62) (2022-05-19) 798 | 799 | 800 | ### Bug Fixes 801 | 802 | * update document_id on link index.css ([182d813](https://github.com/CoCreate-app/CoCreate-parallax/commit/182d813881bb90701a06fa8c4fbcf6918302c9b3)) 803 | 804 | ## [1.1.61](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.60...v1.1.61) (2022-05-06) 805 | 806 | 807 | ### Bug Fixes 808 | 809 | * update config organization_Id to organization_id ([c3a89d6](https://github.com/CoCreate-app/CoCreate-parallax/commit/c3a89d61a049bf264fb71ebda425df83ed61096e)) 810 | 811 | ## [1.1.60](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.59...v1.1.60) (2022-02-24) 812 | 813 | 814 | ### Bug Fixes 815 | 816 | * CoCreate.config replace CoCreate.app with * ([d704ab3](https://github.com/CoCreate-app/CoCreate-parallax/commit/d704ab3c1ef532d40acb6f388f045129fd47d10a)) 817 | 818 | ## [1.1.59](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.58...v1.1.59) (2022-02-16) 819 | 820 | 821 | ### Bug Fixes 822 | 823 | * update dependencies ([dcb71c2](https://github.com/CoCreate-app/CoCreate-parallax/commit/dcb71c2f651995af9bf2f9f59c3badd81b27908e)) 824 | 825 | ## [1.1.58](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.57...v1.1.58) (2022-02-10) 826 | 827 | 828 | ### Bug Fixes 829 | 830 | * bump dependencies ([01f6170](https://github.com/CoCreate-app/CoCreate-parallax/commit/01f6170c923a5fa925ceee6cb781f436a4002768)) 831 | 832 | ## [1.1.57](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.56...v1.1.57) (2022-02-07) 833 | 834 | 835 | ### Bug Fixes 836 | 837 | * bump dependency versions ([2eebd07](https://github.com/CoCreate-app/CoCreate-parallax/commit/2eebd07738da58362e548b77a2e2bfd779d2ea86)) 838 | 839 | ## [1.1.56](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.55...v1.1.56) (2022-02-03) 840 | 841 | 842 | ### Bug Fixes 843 | 844 | * replaced show and hide class hidden with attribute hidden ([d314650](https://github.com/CoCreate-app/CoCreate-parallax/commit/d314650159f2136f9fd7ee026f1d0a2d1fcc675a)) 845 | 846 | ## [1.1.55](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.54...v1.1.55) (2022-02-01) 847 | 848 | 849 | ### Bug Fixes 850 | 851 | * update dependency versions ([f6957e9](https://github.com/CoCreate-app/CoCreate-parallax/commit/f6957e915ef2de09bed8f49667eb9574cb4d7eab)) 852 | 853 | ## [1.1.54](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.53...v1.1.54) (2022-01-01) 854 | 855 | 856 | ### Bug Fixes 857 | 858 | * get-value attribute value now supports a selector added # to all values currently in get-value attributes ([81746ee](https://github.com/CoCreate-app/CoCreate-parallax/commit/81746ee6ccf5fd0c40c67564a89551e8571220ec)) 859 | 860 | ## [1.1.53](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.52...v1.1.53) (2022-01-01) 861 | 862 | 863 | ### Bug Fixes 864 | 865 | * removed data- from attributes ([9f9a9a1](https://github.com/CoCreate-app/CoCreate-parallax/commit/9f9a9a1424577d00ae5511b3df41d84ebafb2437)) 866 | 867 | ## [1.1.52](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.51...v1.1.52) (2021-12-15) 868 | 869 | 870 | ### Bug Fixes 871 | 872 | * update dependencies ([d732544](https://github.com/CoCreate-app/CoCreate-parallax/commit/d732544ef1799c4ed100c3c56c944af86b71d569)) 873 | 874 | ## [1.1.51](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.50...v1.1.51) (2021-12-14) 875 | 876 | 877 | ### Bug Fixes 878 | 879 | * update dependencies ([f7be1da](https://github.com/CoCreate-app/CoCreate-parallax/commit/f7be1da81b2dbcf1598eeee64dfff8befc18fb06)) 880 | 881 | ## [1.1.50](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.49...v1.1.50) (2021-11-27) 882 | 883 | 884 | ### Bug Fixes 885 | 886 | * update dependencies ([44077e9](https://github.com/CoCreate-app/CoCreate-parallax/commit/44077e95f3592286e5a72e9d9a81ed0a8bd20cd1)) 887 | 888 | ## [1.1.49](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.48...v1.1.49) (2021-11-27) 889 | 890 | 891 | ### Bug Fixes 892 | 893 | * update dependencies ([fa47583](https://github.com/CoCreate-app/CoCreate-parallax/commit/fa475835d61dfe7f8648afebd5ffb5b60797a537)) 894 | 895 | ## [1.1.48](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.47...v1.1.48) (2021-11-27) 896 | 897 | 898 | ### Bug Fixes 899 | 900 | * update docs api and cocreateJS script ([23abbf1](https://github.com/CoCreate-app/CoCreate-parallax/commit/23abbf13bc5b9e791a7063302fae92903bbc01b9)) 901 | 902 | ## [1.1.47](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.46...v1.1.47) (2021-11-26) 903 | 904 | 905 | ### Bug Fixes 906 | 907 | * docs sidenav width ([c4eb379](https://github.com/CoCreate-app/CoCreate-parallax/commit/c4eb37922f6934dc648c674773e5e8859f89a741)) 908 | 909 | ## [1.1.46](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.45...v1.1.46) (2021-11-26) 910 | 911 | 912 | ### Bug Fixes 913 | 914 | * update dependencies ([9a2d2f0](https://github.com/CoCreate-app/CoCreate-parallax/commit/9a2d2f02b45746963d0dafa48e214f101e9e256d)) 915 | 916 | ## [1.1.45](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.44...v1.1.45) (2021-11-23) 917 | 918 | 919 | ### Bug Fixes 920 | 921 | * update dependencies ([7fe48d3](https://github.com/CoCreate-app/CoCreate-parallax/commit/7fe48d3e38b145ee1aaa156489b888dcd5b87e23)) 922 | 923 | ## [1.1.44](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.43...v1.1.44) (2021-11-20) 924 | 925 | 926 | ### Bug Fixes 927 | 928 | * remove cdn.CoCreate.min.css ([8233c7d](https://github.com/CoCreate-app/CoCreate-parallax/commit/8233c7dac97cf46e1b16db06cd309d68fd471293)) 929 | 930 | ## [1.1.43](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.42...v1.1.43) (2021-11-20) 931 | 932 | 933 | ### Bug Fixes 934 | 935 | * update dependencies ([9cc3436](https://github.com/CoCreate-app/CoCreate-parallax/commit/9cc343628d34acdb1d91b1888766c55df8d1ab03)) 936 | 937 | ## [1.1.42](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.41...v1.1.42) (2021-11-19) 938 | 939 | 940 | ### Bug Fixes 941 | 942 | * update dependencies ([7d5b7b3](https://github.com/CoCreate-app/CoCreate-parallax/commit/7d5b7b3cb6f88ca07657ce80a4eaabd97e51c907)) 943 | 944 | ## [1.1.41](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.40...v1.1.41) (2021-11-18) 945 | 946 | 947 | ### Bug Fixes 948 | 949 | * update dependencies ([953a264](https://github.com/CoCreate-app/CoCreate-parallax/commit/953a2640439a0c669a570d03bf5855786b3f29e2)) 950 | 951 | ## [1.1.40](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.39...v1.1.40) (2021-11-16) 952 | 953 | 954 | ### Bug Fixes 955 | 956 | * update dependencies ([7c6f562](https://github.com/CoCreate-app/CoCreate-parallax/commit/7c6f5620dbeb688f3b66cd54b0d903801c1807d3)) 957 | 958 | ## [1.1.39](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.38...v1.1.39) (2021-11-15) 959 | 960 | 961 | ### Bug Fixes 962 | 963 | * update dependencies ([456897c](https://github.com/CoCreate-app/CoCreate-parallax/commit/456897c8502056ca989e20f4232d7bbb5ece1b76)) 964 | 965 | ## [1.1.38](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.37...v1.1.38) (2021-11-11) 966 | 967 | 968 | ### Bug Fixes 969 | 970 | * update readme ([a94f6a7](https://github.com/CoCreate-app/CoCreate-parallax/commit/a94f6a77a0a8476c0adb96e5ec9a05c765522e87)) 971 | 972 | ## [1.1.37](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.36...v1.1.37) (2021-11-06) 973 | 974 | 975 | ### Bug Fixes 976 | 977 | * update dependencies ([f529957](https://github.com/CoCreate-app/CoCreate-parallax/commit/f529957bf3262427efa3dc063c91e5bc180f694c)) 978 | 979 | ## [1.1.36](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.35...v1.1.36) (2021-11-04) 980 | 981 | 982 | ### Bug Fixes 983 | 984 | * update dependencies ([afdb2f7](https://github.com/CoCreate-app/CoCreate-parallax/commit/afdb2f7b13ce355d4c51002daba001c44a412778)) 985 | 986 | ## [1.1.35](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.34...v1.1.35) (2021-11-04) 987 | 988 | 989 | ### Bug Fixes 990 | 991 | * update packages ([29955c1](https://github.com/CoCreate-app/CoCreate-parallax/commit/29955c1913c437acb075655da53d304c40476aa8)) 992 | 993 | ## [1.1.34](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.33...v1.1.34) (2021-11-01) 994 | 995 | 996 | ### Bug Fixes 997 | 998 | * update package dependencies ([cde9a33](https://github.com/CoCreate-app/CoCreate-parallax/commit/cde9a33aa2d8b43a07b0842fe45635b31700e04d)) 999 | 1000 | ## [1.1.33](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.32...v1.1.33) (2021-10-29) 1001 | 1002 | 1003 | ### Bug Fixes 1004 | 1005 | * update dependencies ([44f9460](https://github.com/CoCreate-app/CoCreate-parallax/commit/44f946070b1495df3da4a1be323fe2e0a4a932fd)) 1006 | 1007 | ## [1.1.32](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.31...v1.1.32) (2021-10-17) 1008 | 1009 | 1010 | ### Bug Fixes 1011 | 1012 | * update dependendies ([e0ef8c7](https://github.com/CoCreate-app/CoCreate-parallax/commit/e0ef8c7cb1fc762e40a2bc6b9e07c1a44a9538bc)) 1013 | 1014 | ## [1.1.31](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.30...v1.1.31) (2021-10-16) 1015 | 1016 | 1017 | ### Bug Fixes 1018 | 1019 | * update socket package to fix bug in docs ([99afc19](https://github.com/CoCreate-app/CoCreate-parallax/commit/99afc196d7e3a42a7175473c1819ae82c1be1d6c)) 1020 | 1021 | ## [1.1.30](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.29...v1.1.30) (2021-10-15) 1022 | 1023 | 1024 | ### Bug Fixes 1025 | 1026 | * update dependencies ([071e3e1](https://github.com/CoCreate-app/CoCreate-parallax/commit/071e3e15e30f4f7e3a50c3594fdf317053894308)) 1027 | * update dependencies ([54e452c](https://github.com/CoCreate-app/CoCreate-parallax/commit/54e452c42b76a43f2b9c61771649148c24db84f2)) 1028 | 1029 | ## [1.1.29](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.28...v1.1.29) (2021-10-15) 1030 | 1031 | 1032 | ### Bug Fixes 1033 | 1034 | * update packages ([287f9be](https://github.com/CoCreate-app/CoCreate-parallax/commit/287f9be0d599f91b0346915635f399618b84c44b)) 1035 | 1036 | ## [1.1.28](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.27...v1.1.28) (2021-10-15) 1037 | 1038 | 1039 | ### Bug Fixes 1040 | 1041 | * updated dependencies ([846b8ee](https://github.com/CoCreate-app/CoCreate-parallax/commit/846b8eeee1885e165d1e32dbcce8df1adf5c336c)) 1042 | 1043 | ## [1.1.27](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.26...v1.1.27) (2021-10-13) 1044 | 1045 | 1046 | ### Bug Fixes 1047 | 1048 | * update dependencies ([a90e65c](https://github.com/CoCreate-app/CoCreate-parallax/commit/a90e65c7644234d9971a7952da486f781917b05c)) 1049 | 1050 | ## [1.1.26](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.25...v1.1.26) (2021-10-06) 1051 | 1052 | 1053 | ### Bug Fixes 1054 | 1055 | * update dependencies ([71b4e50](https://github.com/CoCreate-app/CoCreate-parallax/commit/71b4e5033c0e5ab91f5a97897beeffc1e3a94f6e)) 1056 | 1057 | ## [1.1.25](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.24...v1.1.25) (2021-10-05) 1058 | 1059 | 1060 | ### Bug Fixes 1061 | 1062 | * update dependencies ([5340790](https://github.com/CoCreate-app/CoCreate-parallax/commit/534079074e822376c09aaf359cb6bee8f222a8c8)) 1063 | * website_id in CoCreate.config ([64a61fb](https://github.com/CoCreate-app/CoCreate-parallax/commit/64a61fb82ac2a60b11e9d265c89d4732782a0a36)) 1064 | 1065 | ## [1.1.24](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.23...v1.1.24) (2021-10-04) 1066 | 1067 | 1068 | ### Bug Fixes 1069 | 1070 | * update dependencies ([7dba17a](https://github.com/CoCreate-app/CoCreate-parallax/commit/7dba17a50da5231d41b6afaabd25e13684a2df10)) 1071 | 1072 | ## [1.1.23](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.22...v1.1.23) (2021-10-04) 1073 | 1074 | 1075 | ### Bug Fixes 1076 | 1077 | * update dependencies ([67f90b9](https://github.com/CoCreate-app/CoCreate-parallax/commit/67f90b92a16e9b2fabaf839b08758d66b66e8795)) 1078 | 1079 | ## [1.1.22](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.21...v1.1.22) (2021-10-01) 1080 | 1081 | 1082 | ### Bug Fixes 1083 | 1084 | * update packages ([401bdce](https://github.com/CoCreate-app/CoCreate-parallax/commit/401bdce571b7e55ddd1829c1e8b5cc3b6c4fb2c5)) 1085 | 1086 | ## [1.1.21](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.20...v1.1.21) (2021-10-01) 1087 | 1088 | 1089 | ### Bug Fixes 1090 | 1091 | * update dependencies ([7428508](https://github.com/CoCreate-app/CoCreate-parallax/commit/7428508692c243d6024a3e0b9d46c8159ec08585)) 1092 | 1093 | ## [1.1.20](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.19...v1.1.20) (2021-09-28) 1094 | 1095 | 1096 | ### Bug Fixes 1097 | 1098 | * update dependencies ([9f4dfb2](https://github.com/CoCreate-app/CoCreate-parallax/commit/9f4dfb2fa5aec04c3a9c8c33dd6d2aac55730c27)) 1099 | 1100 | ## [1.1.19](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.18...v1.1.19) (2021-09-16) 1101 | 1102 | 1103 | ### Bug Fixes 1104 | 1105 | * update dependencies ([552b6c2](https://github.com/CoCreate-app/CoCreate-parallax/commit/552b6c2ba75305ba3dcbfee3386210e942dcd20d)) 1106 | 1107 | ## [1.1.18](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.17...v1.1.18) (2021-09-14) 1108 | 1109 | 1110 | ### Bug Fixes 1111 | 1112 | * add cocreate.app to domains ([b5650b0](https://github.com/CoCreate-app/CoCreate-parallax/commit/b5650b0797b27c6642e97922556c12a9a8d93de4)) 1113 | 1114 | ## [1.1.17](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.16...v1.1.17) (2021-09-13) 1115 | 1116 | 1117 | ### Bug Fixes 1118 | 1119 | * upgrade dependencies ([1c6a399](https://github.com/CoCreate-app/CoCreate-parallax/commit/1c6a3998d2688070772fa432667b7f438aac2a80)) 1120 | 1121 | ## [1.1.16](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.15...v1.1.16) (2021-09-12) 1122 | 1123 | 1124 | ### Bug Fixes 1125 | 1126 | * update sidenav to use resize and toggle ([c8d62b7](https://github.com/CoCreate-app/CoCreate-parallax/commit/c8d62b7a6d30f2bd333905ff4cd7433f6c79dc0e)) 1127 | 1128 | ## [1.1.15](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.14...v1.1.15) (2021-09-09) 1129 | 1130 | 1131 | ### Bug Fixes 1132 | 1133 | * update dependency @cocreate/docs ([f0b25be](https://github.com/CoCreate-app/CoCreate-parallax/commit/f0b25be5894e89b28c85efdbb455316049f729f5)) 1134 | 1135 | ## [1.1.14](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.13...v1.1.14) (2021-09-09) 1136 | 1137 | 1138 | ### Bug Fixes 1139 | 1140 | * ci docs ([eb20329](https://github.com/CoCreate-app/CoCreate-parallax/commit/eb20329c0e66d903c7fc4c5b99ee5043712fca99)) 1141 | 1142 | ## [1.1.13](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.12...v1.1.13) (2021-09-09) 1143 | 1144 | 1145 | ### Bug Fixes 1146 | 1147 | * update dependencies ([0c5489d](https://github.com/CoCreate-app/CoCreate-parallax/commit/0c5489d236a790064d960f2cd616f124b5d52b34)) 1148 | 1149 | ## [1.1.12](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.11...v1.1.12) (2021-09-09) 1150 | 1151 | 1152 | ### Bug Fixes 1153 | 1154 | * CoCreate.config directory, path, name and public ([2e6334a](https://github.com/CoCreate-app/CoCreate-parallax/commit/2e6334a1a83f5bdc09c7cada2d301774f7dc2fd6)) 1155 | 1156 | ## [1.1.11](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.10...v1.1.11) (2021-09-08) 1157 | 1158 | 1159 | ### Bug Fixes 1160 | 1161 | * update dependencies ([7a948e8](https://github.com/CoCreate-app/CoCreate-parallax/commit/7a948e82786e8744f8b1081bdfa7bbc83b37bf7a)) 1162 | 1163 | ## [1.1.10](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.9...v1.1.10) (2021-09-04) 1164 | 1165 | 1166 | ### Bug Fixes 1167 | 1168 | * update dependencies ([c2bb5a6](https://github.com/CoCreate-app/CoCreate-parallax/commit/c2bb5a62446572aea224cd84eb40318647543ff6)) 1169 | 1170 | ## [1.1.9](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.8...v1.1.9) (2021-08-31) 1171 | 1172 | 1173 | ### Bug Fixes 1174 | 1175 | * update dependencies ([bc9487c](https://github.com/CoCreate-app/CoCreate-parallax/commit/bc9487c39376dd9e2cd90f8440a3ad24c50aaa11)) 1176 | 1177 | ## [1.1.8](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.7...v1.1.8) (2021-08-27) 1178 | 1179 | 1180 | ### Bug Fixes 1181 | 1182 | * updaed dependencies ([2f1211f](https://github.com/CoCreate-app/CoCreate-parallax/commit/2f1211fedf39b9a73a6960173f1d8b50170fd37b)) 1183 | 1184 | ## [1.1.7](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.6...v1.1.7) (2021-08-23) 1185 | 1186 | 1187 | ### Bug Fixes 1188 | 1189 | * update package versions ([5bf8aef](https://github.com/CoCreate-app/CoCreate-parallax/commit/5bf8aefe7eb929fae3a32d7d79e5ee16431a8513)) 1190 | 1191 | ## [1.1.6](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.5...v1.1.6) (2021-08-22) 1192 | 1193 | 1194 | ### Bug Fixes 1195 | 1196 | * removed data- from main-content, clone, filter-value_type ([74246b7](https://github.com/CoCreate-app/CoCreate-parallax/commit/74246b7352f714989c0e685c0a501f219fd52d5d)) 1197 | 1198 | ## [1.1.5](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.4...v1.1.5) (2021-08-22) 1199 | 1200 | 1201 | ### Bug Fixes 1202 | 1203 | * bump package versions ([9f2e7c2](https://github.com/CoCreate-app/CoCreate-parallax/commit/9f2e7c26d2a27b636df61ea4aefc8334cf254f3d)) 1204 | 1205 | ## [1.1.4](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.3...v1.1.4) (2021-08-22) 1206 | 1207 | 1208 | ### Bug Fixes 1209 | 1210 | * bump package versions ([c615737](https://github.com/CoCreate-app/CoCreate-parallax/commit/c615737c2815c6356e19f5cff2b2ea9176e64921)) 1211 | 1212 | ## [1.1.3](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.2...v1.1.3) (2021-08-12) 1213 | 1214 | 1215 | ### Bug Fixes 1216 | 1217 | * update data-module_id to document_id ([21a7ec1](https://github.com/CoCreate-app/CoCreate-parallax/commit/21a7ec184853c1566be5e49675e763b4d3aab422)) 1218 | 1219 | ## [1.1.2](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.1...v1.1.2) (2021-08-02) 1220 | 1221 | 1222 | ### Bug Fixes 1223 | 1224 | * remove data- from attributes ([beafc33](https://github.com/CoCreate-app/CoCreate-parallax/commit/beafc33fb3d5eb8a7e7c200bcf15f5c7bf510e88)) 1225 | * removed data- from parallax attributes ([2405c73](https://github.com/CoCreate-app/CoCreate-parallax/commit/2405c73227d2e6610bd9ed2752a9d03a50ddc6b3)) 1226 | * update data-fullscreen to fullscreen ([537da79](https://github.com/CoCreate-app/CoCreate-parallax/commit/537da790e8b388599d1fb93b33af0ecb6ccaae7c)) 1227 | 1228 | ## [1.1.1](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.1.0...v1.1.1) (2021-07-28) 1229 | 1230 | 1231 | ### Bug Fixes 1232 | 1233 | * remove data- from fetch, pass and filter ([5e50363](https://github.com/CoCreate-app/CoCreate-parallax/commit/5e5036329554a857d583293a2c16da98d262fb4b)) 1234 | 1235 | # [1.1.0](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.0.17...v1.1.0) (2021-07-28) 1236 | 1237 | 1238 | ### Features 1239 | 1240 | * add new is{attribute} system and remove data- from attributtes ([cc796c3](https://github.com/CoCreate-app/CoCreate-parallax/commit/cc796c3da5be0aeb81f020ba3dfb24ce73c26259)) 1241 | 1242 | ## [1.0.17](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.0.16...v1.0.17) (2021-07-17) 1243 | 1244 | 1245 | ### Bug Fixes 1246 | 1247 | * init and update demos scripts ([e573fa2](https://github.com/CoCreate-app/CoCreate-parallax/commit/e573fa2308b67887d5a2603bc1238a398fc4dde4)) 1248 | * workflows ([71236af](https://github.com/CoCreate-app/CoCreate-parallax/commit/71236afc55230f2d6bf4e510b4399b9a557dd498)) 1249 | 1250 | ## [1.0.16](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.0.15...v1.0.16) (2021-07-14) 1251 | 1252 | 1253 | ### Bug Fixes 1254 | 1255 | * upgrade all packages ([5aee774](https://github.com/CoCreate-app/CoCreate-parallax/commit/5aee77442a1c2fc67a5528395dc15c59431f33cd)) 1256 | 1257 | ## [1.0.15](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.0.14...v1.0.15) (2021-07-13) 1258 | 1259 | 1260 | ### Bug Fixes 1261 | 1262 | * add yarn lockfile to git ignore ([b96dcca](https://github.com/CoCreate-app/CoCreate-parallax/commit/b96dcca9c2f72c5d685ea5377dbce2fbaf6014f8)) 1263 | * remove yarn.lock ([29773ff](https://github.com/CoCreate-app/CoCreate-parallax/commit/29773ffca2fa6021fe11e8804b0a6fd20a180543)) 1264 | 1265 | ## [1.0.14](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.0.13...v1.0.14) (2021-07-10) 1266 | 1267 | 1268 | ### Bug Fixes 1269 | 1270 | * gitignore all logs ([f392c6f](https://github.com/CoCreate-app/CoCreate-parallax/commit/f392c6fc5b57b86539fb3d5e3b36e2e9516e623b)) 1271 | 1272 | ## [1.0.13](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.0.12...v1.0.13) (2021-07-07) 1273 | 1274 | 1275 | ### Bug Fixes 1276 | 1277 | * update package versions ([43ff279](https://github.com/CoCreate-app/CoCreate-parallax/commit/43ff279dd89d6372fd60054a62b585d5c973e656)) 1278 | 1279 | ## [1.0.12](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.0.11...v1.0.12) (2021-06-30) 1280 | 1281 | 1282 | ### Bug Fixes 1283 | 1284 | * Update readme.md ([18f1a42](https://github.com/CoCreate-app/CoCreate-parallax/commit/18f1a4281f8b5aae15bd4d686158f54620ce2b1e)) 1285 | 1286 | ## [1.0.11](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.0.10...v1.0.11) (2021-06-30) 1287 | 1288 | 1289 | ### Bug Fixes 1290 | 1291 | * automated and manual workflows ([859c620](https://github.com/CoCreate-app/CoCreate-parallax/commit/859c6203aaf78637c1f1ed4e88d3a63426aa29c3)) 1292 | 1293 | ## [1.0.10](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.0.9...v1.0.10) (2021-06-25) 1294 | 1295 | 1296 | ### Bug Fixes 1297 | 1298 | * latest version numbers applied to all cocreate packages ([a258122](https://github.com/CoCreate-app/CoCreate-parallax/commit/a2581224028f31d7f4a3019529957182efc8b113)) 1299 | 1300 | ## [1.0.9](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.0.8...v1.0.9) (2021-06-24) 1301 | 1302 | 1303 | ### Bug Fixes 1304 | 1305 | * package versioningto 1.0.0 ([1e54128](https://github.com/CoCreate-app/CoCreate-parallax/commit/1e54128083447e5c5936028c995cf3089be43e85)) 1306 | 1307 | ## [1.0.8](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.0.7...v1.0.8) (2021-06-24) 1308 | 1309 | 1310 | ### Bug Fixes 1311 | 1312 | * update all [@cocreate](https://github.com/cocreate) to use latest versions ([cc8d69f](https://github.com/CoCreate-app/CoCreate-parallax/commit/cc8d69f3dbde417a1da7b67536ab2e16d96aa344)) 1313 | 1314 | ## [1.0.7](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.0.6...v1.0.7) (2021-06-16) 1315 | 1316 | 1317 | ### Bug Fixes 1318 | 1319 | * added header for seo ([b715837](https://github.com/CoCreate-app/CoCreate-parallax/commit/b715837b1aed02ba6c162cfc94461e0b92fda7e9)) 1320 | 1321 | ## [1.0.6](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.0.5...v1.0.6) (2021-06-06) 1322 | 1323 | 1324 | ### Bug Fixes 1325 | 1326 | * Update docs and package.json descriptions ([17bbdcb](https://github.com/CoCreate-app/CoCreate-parallax/commit/17bbdcb6213a84968f61c3f832342c15aaaad034)) 1327 | 1328 | ## [1.0.5](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.0.4...v1.0.5) (2021-04-27) 1329 | 1330 | 1331 | ### Bug Fixes 1332 | 1333 | * add host in docs ([6393f40](https://github.com/CoCreate-app/CoCreate-parallax/commit/6393f400f3f0b18d1ab855742f504831e321a76e)) 1334 | 1335 | ## [1.0.4](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.0.3...v1.0.4) (2021-04-27) 1336 | 1337 | 1338 | ### Bug Fixes 1339 | 1340 | * Update to readme, demo, added cdn scripts ([4196d9e](https://github.com/CoCreate-app/CoCreate-parallax/commit/4196d9e35952fcf8f48666e3e9f9ffa5b9447acf)) 1341 | 1342 | ## [1.0.3](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.0.2...v1.0.3) (2021-04-23) 1343 | 1344 | 1345 | ### Bug Fixes 1346 | 1347 | * readme and documentation. Removed securitykeys ([38933cd](https://github.com/CoCreate-app/CoCreate-parallax/commit/38933cd33efb51aeae236cb3f51aa1aec7176a34)) 1348 | 1349 | ## [1.0.2](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.0.1...v1.0.2) (2021-04-19) 1350 | 1351 | 1352 | ### Bug Fixes 1353 | 1354 | * ci and build process ([677a084](https://github.com/CoCreate-app/CoCreate-parallax/commit/677a084d8926c918bef8717413499b061ed04565)) 1355 | * npm publish and cdn deployment ([5b138a5](https://github.com/CoCreate-app/CoCreate-parallax/commit/5b138a540a2d2c32f23db7e044e5c488c3dcbae5)) 1356 | 1357 | ## [1.0.1](https://github.com/CoCreate-app/CoCreate-parallax/compare/v1.0.0...v1.0.1) (2021-03-29) 1358 | 1359 | 1360 | ### Bug Fixes 1361 | 1362 | * Package Paths ([9540cf7](https://github.com/CoCreate-app/CoCreate-parallax/commit/9540cf7c3d6921db0da9abc16ab41ceda58d9b87)) 1363 | 1364 | # 1.0.0 (2021-03-26) 1365 | 1366 | 1367 | ### Features 1368 | 1369 | * Initial Release ([f93ff14](https://github.com/CoCreate-app/CoCreate-parallax/commit/f93ff14e3a3a29e97a293d08655ce0aefb3709e2)) 1370 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to CoCreate-parallax 2 | 3 | This project is work of [many contributors](https://github.com/CoCreate-app/CoCreate-parallax/graphs/contributors). 4 | You're encouraged to submit [pull requests](https://github.com/CoCreate-app/CoCreate-parallax/pulls), 5 | [propose features and discuss issues](https://github.com/CoCreate-app/CoCreate-parallax/issues). 6 | 7 | In the examples below, substitute your Github username for `contributor` in URLs. 8 | 9 | ## Fork the Project 10 | 11 | Fork the [project on Github](https://github.com/CoCreate-app/CoCreate-parallax) and check out your copy. 12 | 13 | ``` 14 | git parallax https://github.com/contributor/CoCreate-parallax.git 15 | cd CoCreate-parallax 16 | git remote add upstream https://github.com/CoCreate-app/CoCreate-parallax.git 17 | ``` 18 | 19 | ## Create a Topic Branch 20 | 21 | Make sure your fork is up-to-date and create a topic branch for your feature or bug fix on dev branch. 22 | 23 | ``` 24 | git checkout dev 25 | git pull upstream dev 26 | git checkout -b my-feature-branch 27 | ``` 28 | 29 | ## Write Tests 30 | 31 | Try to write a test that reproduces the problem you're trying to fix or describes a feature that you want to build. 32 | 33 | We definitely appreciate pull requests that highlight or reproduce a problem, even without a fix. 34 | 35 | ## Write Code 36 | 37 | Implement your feature or bug fix. 38 | 39 | ## Write Documentation 40 | 41 | Document any external behavior in the [README](README.md). 42 | 43 | ## Commit Changes 44 | 45 | Make sure git knows your name and email address: 46 | 47 | ``` 48 | git config --global user.name "Your Name" 49 | git config --global user.email "contributor@example.com" 50 | ``` 51 | 52 | We use [semantic-release](https://github.com/semantic-release/semantic-release) as process to generate changelog 53 | and to release. Write meaningful commits according to 54 | [Commit Message Formats](https://github.com/semantic-release/semantic-release#commit-message-format) is important. 55 | 56 | ``` 57 | git add ... 58 | git commit -am "commit-type(optional topic): a meaningful message" 59 | ``` 60 | 61 | Here is an example of the release type that should be done based on a [semantic-release](https://github.com/semantic-release/semantic-release): 62 | 63 | | Commit message | Release type | 64 | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------- | 65 | | `fix(pencil): stop graphite breaking when too much pressure applied` | Patch Release | 66 | | `feat(pencil): add 'graphiteWidth' option` | ~~Minor~~ Feature Release | 67 | | `perf(pencil): remove graphiteWidth option`

`BREAKING CHANGE: The graphiteWidth option has been removed.`
`The default graphite width of 10mm is always used for performance reasons.` | ~~Major~~ Breaking Release | 68 | 69 | 70 | ## Push 71 | 72 | ``` 73 | git push origin my-feature-branch 74 | ``` 75 | 76 | ## Make a Pull Request 77 | 78 | Go to [https://github.com/CoCreate-app/CoCreate-parallax](https://github.com/CoCreate-app/CoCreate-parallax) and select your feature branch. 79 | Click the 'Pull Request' button and fill out the form. Pull requests are usually reviewed within a few days. 80 | 81 | ## Rebase 82 | 83 | If you've been working on a change for a while, rebase with upstream/dev. 84 | 85 | ``` 86 | git fetch upstream 87 | git rebase upstream/dev 88 | git push origin my-feature-branch -f 89 | ``` 90 | 91 | ## Be Patient 92 | 93 | It's likely that your change will not be merged and that the nitpicky maintainers will ask you to do more, or fix seemingly benign problems. Hang in there! 94 | 95 | ## Thank You 96 | 97 | Please do know that we really appreciate and value your time and work. We love you, really. -------------------------------------------------------------------------------- /CoCreate.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "organization_id": "", 3 | "key": "", 4 | "host": "", 5 | "sources": [ 6 | { 7 | "array": "files", 8 | "object": { 9 | "_id": "60208f6c3c260207bf49cabc", 10 | "name": "index.html", 11 | "path": "/docs/parallax", 12 | "pathname": "/docs/parallax/index.html", 13 | "src": "{{./docs/index.html}}", 14 | "host": [ 15 | "*" 16 | ], 17 | "directory": "parallax", 18 | "content-type": "{{content-type}}", 19 | "public": "true" 20 | } 21 | } 22 | ] 23 | }; -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 CoCreate LLC 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CoCreate-parallax 2 | 3 | A stunning css effect in which the background moves at a slower pace than the foreground. Resulting in 3D effect when users scroll up/down the webpage. Take it for a spin in our [playground!](https://cocreate.app/docs/parallax) 4 | 5 | ![minified](https://img.badgesize.io/https://cdn.cocreate.app/parallax/latest/CoCreate-parallax.min.js?style=flat-square&label=minified&color=orange) 6 | ![gzip](https://img.badgesize.io/https://cdn.cocreate.app/parallax/latest/CoCreate-parallax.min.js?compression=gzip&style=flat-square&label=gzip&color=yellow) 7 | ![brotli](https://img.badgesize.io/https://cdn.cocreate.app/parallax/latest/CoCreate-parallax.min.js?compression=brotli&style=flat-square&label=brotli) 8 | ![GitHub latest release](https://img.shields.io/github/v/release/CoCreate-app/CoCreate-parallax?style=flat-square) 9 | ![License](https://img.shields.io/github/license/CoCreate-app/CoCreate-parallax?style=flat-square) 10 | ![Hiring](https://img.shields.io/static/v1?style=flat-square&label=&message=Hiring&color=blueviolet) 11 | 12 | ![CoCreate-parallax](https://cdn.cocreate.app/docs/CoCreate-parallax.gif) 13 | 14 | ## [Docs & Demo](https://cocreate.app/docs/parallax) 15 | 16 | For a complete guide and working demo refer to the [doumentation](https://cocreate.app/docs/parallax) 17 | 18 | ## CDN 19 | 20 | ```html 21 | 22 | ``` 23 | 24 | ```html 25 | 26 | ``` 27 | 28 | ## NPM 29 | 30 | ```shell 31 | $ npm i @cocreate/parallax 32 | ``` 33 | 34 | ## yarn 35 | 36 | ```shell 37 | $ yarn install @cocreate/parallax 38 | ``` 39 | 40 | # Table of Contents 41 | 42 | - [Table of Contents](#table-of-contents) 43 | - [Announcements](#announcements) 44 | - [Roadmap](#roadmap) 45 | - [How to Contribute](#how-to-contribute) 46 | - [About](#about) 47 | - [License](#license) 48 | 49 | 50 | 51 | # Announcements 52 | 53 | All updates to this library are documented in our [CHANGELOG](https://github.com/CoCreate-app/CoCreate-parallax/blob/master/CHANGELOG.md) and [releases](https://github.com/CoCreate-app/CoCreate-parallax/releases). You may also subscribe to email for releases and breaking changes. 54 | 55 | 56 | 57 | # Roadmap 58 | 59 | If you are interested in the future direction of this project, please take a look at our open [issues](https://github.com/CoCreate-app/CoCreate-parallax/issues) and [pull requests](https://github.com/CoCreate-app/CoCreate-parallax/pulls). We would love to hear your feedback. 60 | 61 | 62 | 63 | # About 64 | 65 | CoCreate-parallax is guided and supported by the CoCreate Developer Experience Team. 66 | 67 | Please Email the Developer Experience Team [here](mailto:develop@cocreate.app) in case of any queries. 68 | 69 | CoCreate-parallax is maintained and funded by CoCreate. The names and logos for CoCreate are trademarks of CoCreate, LLC. 70 | 71 | 72 | 73 | # How to Contribute 74 | 75 | We encourage contribution to our libraries (you might even score some nifty swag), please see our [CONTRIBUTING](https://github.com/CoCreate-app/CoCreate-parallax/blob/master/CONTRIBUTING.md) guide for details. 76 | 77 | We want this library to be community-driven, and CoCreate led. We need your help to realize this goal. To help make sure we are building the right things in the right order, we ask that you create [issues](https://github.com/CoCreate-app/CoCreate-parallax/issues) and [pull requests](https://github.com/CoCreate-app/CoCreate-parallax/pulls) or merely upvote or comment on existing issues or pull requests. 78 | 79 | We appreciate your continued support, thank you! 80 | 81 | 82 | 83 | # License 84 | 85 | [The MIT License (MIT)](https://github.com/CoCreate-app/CoCreate-parallax/blob/master/LICENSE) 86 | -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Parallax | CoCreateJS 5 | 6 | 7 | 12 | 13 | 17 | 18 | 19 | 20 | 21 |
25 |
26 | 36 | B 43 | 48 | 51 | 52 | 53 |
54 |
55 | 56 |
57 |
60 |
61 | SCROLL DOWN 62 |
63 |
64 | 65 |
73 |

Parallax Demo

74 |

75 | Parallax scrolling is a web site trend where the background 76 | content is moved at a different speed than the foreground 77 | content while scrolling. Nascetur per nec posuere turpis, 78 | lectus nec libero turpis nunc at, sed posuere mollis 79 | ullamcorper libero ante lectus, blandit pellentesque a, 80 | magna turpis est sapien duis blandit dignissim. Viverra 81 | interdum mi magna mi, morbi sociis. Condimentum dui ipsum 82 | consequat morbi, curabitur aliquam pede, nullam vitae eu 83 | placerat eget et vehicula. Varius quisque non molestie 84 | dolor, nunc nisl dapibus vestibulum at, sodales tincidunt 85 | mauris ullamcorper, dapibus pulvinar, in in neque risus 86 | odio. Accumsan fringilla vulputate at quibusdam sociis 87 | eleifend, aenean maecenas vulputate, non id vehicula lorem 88 | mattis, ratione interdum sociis ornare. Suscipit proin magna 89 | cras vel, non sit platea sit, maecenas ante augue etiam 90 | maecenas, porta porttitor placerat leo. 91 |

92 |
93 | 94 |
98 |
99 | LESS HEIGHT 108 |
109 |
110 | 111 |
112 |
120 |

121 | Scroll up and down to really get the feeling of how 122 | Parallax Scrolling works. 123 |

124 |
125 |
126 | 127 |
131 |
132 | SCROLL UP 141 |
142 |
143 | 144 |
145 |
153 |

154 | Scroll up and down to really get the feeling of how 155 | Parallax Scrolling works. 156 |

157 |
158 |
159 | 160 |
164 |
165 | COOL! 166 |
167 |
168 |
169 | 170 | 178 | 179 | 180 | 181 | 182 | 183 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | CoCreate-parallax Documentation | CoCreateJS 8 | 13 | 16 | 19 | 20 | 23 | 24 | 32 | 33 | 34 | 35 | 36 | 37 | 45 | 52 | 56 |
57 |
58 |
62 |
64 |
65 |

CoCreate-parallax

66 |
67 |
69 |
79 | 99 | 105 |
106 | 112 |
113 |
114 |

116 | A stunning css effect in which the background moves at a slower 117 | pace than the foreground. Resulting in 3D effect when users 118 | scroll up/down the webpage. 119 |

120 |
121 |
123 |
129 | 133 |

Install

134 | 139 |
140 |
141 |
npm i @cocreate/parallax
142 |

143 | Or you can use cdn link: 144 |

145 |
<script>https://cdn.cocreate.app/parallax/latest/CoCreate-parallax.min.js</script>
146 | 147 |
153 | 157 |

Usage

158 | 163 |
164 |
165 |
166 |

167 | This is parallax usage 168 |

169 | 170 |
171 |
<div></div>
172 |
173 |

174 | This is parallax usage 175 |

176 |

177 | This is parallax usage 178 |

179 |
180 |
186 | 190 |

Attributes

191 | 196 |
197 |
198 |
    199 |
  • 201 |

    202 | parallax 203 | string 206 | optional 209 |

    210 |

    parallax-attribute

    211 |
  • 212 |
  • 214 |

    215 | parallax 216 | string 219 | optional 222 |

    223 |

    parallax-attribute

    224 |
  • 225 |
226 |
227 | 228 |
230 | 231 |
237 | 241 |

Demo

242 | 247 |
248 |
249 |
251 | 252 |
255 |
259 | 268 |
271 |
272 | 273 |
276 |
277 |
278 | 279 |
281 | 292 | 302 | 309 | 319 | 323 |
324 |
325 | 326 |
327 |
328 |
329 | 335 |
336 | 337 | 338 | 339 | 340 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@cocreate/parallax", 3 | "version": "1.10.2", 4 | "description": "A stunning css effect in which the background moves at a slower pace than the foreground. Resulting in 3D effect when users scroll up/down the webpage.", 5 | "keywords": [ 6 | "parallax", 7 | "cocreate", 8 | "low-code-framework", 9 | "no-code-framework", 10 | "cocreatejs", 11 | "cocreatejs-component", 12 | "cocreate-framework", 13 | "no-code", 14 | "low-code", 15 | "collaborative-framework", 16 | "realtime", 17 | "realtime-framework", 18 | "collaboration", 19 | "shared-editing", 20 | "html5-framework", 21 | "javascript-framework" 22 | ], 23 | "publishConfig": { 24 | "access": "public" 25 | }, 26 | "scripts": { 27 | "start": "npx webpack --config webpack.config.js", 28 | "build": "npx webpack --mode=production --config webpack.config.js", 29 | "dev": "npx webpack --config webpack.config.js --watch", 30 | "postinstall": "node -e \"const { execSync } = require('child_process'); try { execSync('coc --version', { stdio: 'ignore' }); } catch (error) { try { execSync('npm install -g @cocreate/cli', { stdio: 'inherit' }); console.log('Installed \"@cocreate/cli\" globally.'); } catch (error) { console.error('Failed to install \"@cocreate/cli\" globally:', error); } }\"" 31 | }, 32 | "repository": { 33 | "type": "git", 34 | "url": "git+https://github.com/CoCreate-app/CoCreate-parallax.git" 35 | }, 36 | "author": "CoCreate LLC", 37 | "license": "MIT", 38 | "bugs": { 39 | "url": "https://github.com/CoCreate-app/CoCreate-parallax/issues" 40 | }, 41 | "homepage": "https://cocreate.app/docs/parallax", 42 | "funding": { 43 | "type": "GitHub Sponsors ❤", 44 | "url": "https://github.com/sponsors/CoCreate-app" 45 | }, 46 | "main": "./src/index.js", 47 | "devDependencies": { 48 | "css-loader": "^5.1.3", 49 | "esbuild": "^0.25.2", 50 | "esbuild-loader": "^4.3.0", 51 | "mini-css-extract-plugin": "^1.5.0", 52 | "webpack": "^5.24.4", 53 | "webpack-cli": "^4.5.0", 54 | "webpack-log": "^3.0.1" 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | tabWidth: 4, 3 | semi: true, 4 | trailingComma: "none", 5 | bracketSameLine: true, 6 | useTabs: true, 7 | overrides: [ 8 | { 9 | files: ["*.json", "*.yml", "*.yaml"], 10 | options: { 11 | tabWidth: 2, 12 | useTabs: false 13 | }, 14 | } 15 | ], 16 | }; -------------------------------------------------------------------------------- /release.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | dryRun: false, 3 | branches: ["master"], 4 | plugins: [ 5 | "@semantic-release/commit-analyzer", 6 | "@semantic-release/release-notes-generator", 7 | [ 8 | "@semantic-release/changelog", 9 | { 10 | changelogFile: "CHANGELOG.md", 11 | }, 12 | ], 13 | "@semantic-release/npm", 14 | "@semantic-release/github", 15 | [ 16 | "@semantic-release/git", 17 | { 18 | assets: ["CHANGELOG.md", "package.json"], 19 | }, 20 | ], 21 | ], 22 | }; -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | [parallax-src] { 2 | position: relative; 3 | opacity: 0.65; 4 | background-attachment: fixed; 5 | background-position: center; 6 | background-repeat: no-repeat; 7 | background-size: cover; 8 | } 9 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import './index.css'; 2 | 3 | function CoCreateParallax() 4 | { 5 | var parallaxEls = document.getElementsByClassName("parallax"); 6 | 7 | for (var i=0; i { 7 | const isProduction = argv && argv.mode === "production"; 8 | const config = { 9 | entry: { 10 | "CoCreate-parallax": "./src/index.js" 11 | }, 12 | output: { 13 | path: path.resolve(__dirname, "dist"), 14 | filename: isProduction ? "[name].min.js" : "[name].js", 15 | libraryExport: "default", 16 | library: ["CoCreate", "parallax"], 17 | clean: true 18 | }, 19 | plugins: [ 20 | new MiniCssExtractPlugin({ 21 | filename: isProduction ? "[name].min.css" : "[name].css" 22 | }), 23 | new FileUploader(env, argv) 24 | ], 25 | mode: isProduction ? "production" : "development", 26 | devtool: isProduction ? "source-map" : "eval-source-map", 27 | module: { 28 | rules: [ 29 | { 30 | test: /.js$/, 31 | exclude: /node_modules/, 32 | use: { 33 | loader: "esbuild-loader", 34 | options: { 35 | loader: "js", 36 | target: "es2017" 37 | } 38 | } 39 | }, 40 | { 41 | test: /.css$/i, 42 | use: [MiniCssExtractPlugin.loader, "css-loader"] 43 | } 44 | ] 45 | }, 46 | optimization: { 47 | minimize: isProduction, 48 | minimizer: [ 49 | new EsbuildPlugin({ 50 | target: "es2017", 51 | css: true 52 | }) 53 | ], 54 | splitChunks: { 55 | cacheGroups: { 56 | defaultVendors: false 57 | } 58 | } 59 | }, 60 | performance: { 61 | hints: isProduction ? "warning" : false 62 | } 63 | }; 64 | return config; 65 | }; 66 | --------------------------------------------------------------------------------