├── .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: /floating-label/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.16.2](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.16.1...v1.16.2) (2025-05-01) 2 | 3 | 4 | ### Bug Fixes 5 | 6 | * update [@cocreate](https://github.com/cocreate) dependencies ([45911a2](https://github.com/CoCreate-app/CoCreate-floating-label/commit/45911a26ab4fb353b8fa0242a60fa9b3ec091d58)) 7 | 8 | ## [1.16.1](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.16.0...v1.16.1) (2025-04-30) 9 | 10 | 11 | ### Bug Fixes 12 | 13 | * added css-loader ([2fc0363](https://github.com/CoCreate-app/CoCreate-floating-label/commit/2fc0363624fbc7256fd03b5c017a994dc7669b47)) 14 | * update query attributes ([50a8570](https://github.com/CoCreate-app/CoCreate-floating-label/commit/50a8570892deacdfc4f15b5e048b0266531a0e92)) 15 | * updated cocreate modules versions ([7eb4c5e](https://github.com/CoCreate-app/CoCreate-floating-label/commit/7eb4c5edffc5901382d9d8c64bf6ac5761d89959)) 16 | * webpack.config and devdependencies ([ec80972](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ec809721dab03089ec4f3bfc4e88aba23068f044)) 17 | 18 | # [1.16.0](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.15.0...v1.16.0) (2025-04-11) 19 | 20 | 21 | ### Bug Fixes 22 | 23 | * formating ([a05ad42](https://github.com/CoCreate-app/CoCreate-floating-label/commit/a05ad4233f436b4e9896df033a87012106c9d501)) 24 | * improved css ([ba20068](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ba200681bbac3795eb05ec724e3d121e2e1c4b75)) 25 | * update observer obseve param to type and and attributeName to attributeFilter ([511833a](https://github.com/CoCreate-app/CoCreate-floating-label/commit/511833ad5379886450f592400da64848cdcc4ae5)) 26 | 27 | 28 | ### Features 29 | 30 | * query for .floating-label if not found first element child is used ([f7193c1](https://github.com/CoCreate-app/CoCreate-floating-label/commit/f7193c1dc9bf3a705047e2b16e8610617b9cfc41)) 31 | 32 | # [1.15.0](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.14.0...v1.15.0) (2024-12-14) 33 | 34 | 35 | ### Bug Fixes 36 | 37 | * add cursor pointer to type file ([1919a5d](https://github.com/CoCreate-app/CoCreate-floating-label/commit/1919a5db9f99715e9f41fcd8a8c9953deeb59acb)) 38 | * autofill css ([8cbc0bc](https://github.com/CoCreate-app/CoCreate-floating-label/commit/8cbc0bcb5f627f2fc0a8e53dbf67fd3ec838cfdf)) 39 | 40 | 41 | ### Features 42 | 43 | * option tag supports dark mode ([034ad11](https://github.com/CoCreate-app/CoCreate-floating-label/commit/034ad1123d191a2fb81614f9bac8ce04c6f48e10)) 44 | 45 | # [1.14.0](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.13.5...v1.14.0) (2024-11-04) 46 | 47 | 48 | ### Bug Fixes 49 | 50 | * improved cocreate-select.floating-label css ([a1982c4](https://github.com/CoCreate-app/CoCreate-floating-label/commit/a1982c4785cf5516dddfbf9f77facb8508abd120)) 51 | * observer taget has been renamed to selector ([546ceb9](https://github.com/CoCreate-app/CoCreate-floating-label/commit/546ceb93df62048120f79b597672ca6ad1c5db4e)) 52 | * pretier.config.js and file formating ([258fb0c](https://github.com/CoCreate-app/CoCreate-floating-label/commit/258fb0c7d081bf2c3d34b5fe4f9f9a1b1d98a722)) 53 | 54 | 55 | ### Features 56 | 57 | * add prettier.config.js and format files ([2c0ef26](https://github.com/CoCreate-app/CoCreate-floating-label/commit/2c0ef263757c9ba53b62a207dd5c095548211d54)) 58 | * add prettier.config.js and format files ([9e4b55b](https://github.com/CoCreate-app/CoCreate-floating-label/commit/9e4b55b8e651a1b6acd20fc1094ff81efade4a6c)) 59 | 60 | ## [1.13.5](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.13.4...v1.13.5) (2024-06-19) 61 | 62 | 63 | ### Bug Fixes 64 | 65 | * css for type file ([3886b40](https://github.com/CoCreate-app/CoCreate-floating-label/commit/3886b408d81918f49f23deb72f99d310444caf58)) 66 | 67 | ## [1.13.4](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.13.3...v1.13.4) (2024-06-12) 68 | 69 | 70 | ### Bug Fixes 71 | 72 | * autofill css ([c738adb](https://github.com/CoCreate-app/CoCreate-floating-label/commit/c738adb8b5d1a37d5746ed6ed23b61a1d4eeb2f1)) 73 | * border ([6c62d4e](https://github.com/CoCreate-app/CoCreate-floating-label/commit/6c62d4ef69bb1e416f15fb7e0325fb501cc0a9bf)) 74 | * bump cocreate dependencies ([a76e400](https://github.com/CoCreate-app/CoCreate-floating-label/commit/a76e4000c46fc5e050af23c92a73e9cb04a602e3)) 75 | * improved handling of contenteditable elements ([e84dafc](https://github.com/CoCreate-app/CoCreate-floating-label/commit/e84dafc938656af27e8e4496dc7f8050b2be519e)) 76 | * inherit color to support light and dark theme ([c5f8719](https://github.com/CoCreate-app/CoCreate-floating-label/commit/c5f871992688230235b1a9b650e9d0b40dc3f1d0)) 77 | * not(:empty) ([3377e84](https://github.com/CoCreate-app/CoCreate-floating-label/commit/3377e8455095dfa8571b466b841561e9db89cf30)) 78 | * svg icon class ([a39c2a5](https://github.com/CoCreate-app/CoCreate-floating-label/commit/a39c2a58680ab6283159ce9ba20c048d5457f5bd)) 79 | 80 | ## [1.13.3](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.13.2...v1.13.3) (2024-04-29) 81 | 82 | 83 | ### Bug Fixes 84 | 85 | * bump cocreate dependencies ([37fef4e](https://github.com/CoCreate-app/CoCreate-floating-label/commit/37fef4ea3274277056432b5eb98a0d43e2c2a891)) 86 | 87 | ## [1.13.2](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.13.1...v1.13.2) (2024-03-18) 88 | 89 | 90 | ### Bug Fixes 91 | 92 | * handling validation and unique true or false ([ffa07d7](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ffa07d7f0511639023154187f16aa388a524fe95)) 93 | 94 | ## [1.13.1](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.13.0...v1.13.1) (2024-02-05) 95 | 96 | 97 | ### Bug Fixes 98 | 99 | * observe addNodes ([d3cdf88](https://github.com/CoCreate-app/CoCreate-floating-label/commit/d3cdf887d8e83bf6c62db6020dd9dfdb8be5457e)) 100 | * observer init ([7d3161f](https://github.com/CoCreate-app/CoCreate-floating-label/commit/7d3161f64f247f2d15637ac465b25c44e86f11cb)) 101 | 102 | # [1.13.0](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.12.0...v1.13.0) (2023-11-25) 103 | 104 | 105 | ### Features 106 | 107 | * upgrade dependencies for latest features and fixes ([94d30e3](https://github.com/CoCreate-app/CoCreate-floating-label/commit/94d30e3c24fc970e9b349aff794e86ec8138bf71)) 108 | 109 | # [1.12.0](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.11.0...v1.12.0) (2023-11-25) 110 | 111 | 112 | ### Bug Fixes 113 | 114 | * update nav, edit button and css path ([c35552d](https://github.com/CoCreate-app/CoCreate-floating-label/commit/c35552d678446d819c8a9d3f41dbb6ad0a08a446)) 115 | 116 | 117 | ### Features 118 | 119 | * upgrade dependencies for latest features and fixes ([20ca889](https://github.com/CoCreate-app/CoCreate-floating-label/commit/20ca88956c64210b7f4e1c8efbf8d4e89737e6be)) 120 | 121 | # [1.11.0](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.10.9...v1.11.0) (2023-11-19) 122 | 123 | 124 | ### Features 125 | 126 | * update dependecies for th latest features and bug fixes ([91bdef2](https://github.com/CoCreate-app/CoCreate-floating-label/commit/91bdef2a0ef37d947251604a5a5db71fa0654f1d)) 127 | 128 | ## [1.10.9](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.10.8...v1.10.9) (2023-11-12) 129 | 130 | 131 | ### Bug Fixes 132 | 133 | * bump dependencies for latest features ([bfde434](https://github.com/CoCreate-app/CoCreate-floating-label/commit/bfde434ae48fd1c69bf84d7c466f0a02111698e0)) 134 | 135 | ## [1.10.8](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.10.7...v1.10.8) (2023-11-09) 136 | 137 | 138 | ### Bug Fixes 139 | 140 | * meta name typo ([74c498d](https://github.com/CoCreate-app/CoCreate-floating-label/commit/74c498d185ab45307156fc474142e5bbbe78a624)) 141 | * update host ([ac78971](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ac7897117550139399ede23176b621b822e490b6)) 142 | 143 | ## [1.10.7](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.10.6...v1.10.7) (2023-11-03) 144 | 145 | 146 | ### Bug Fixes 147 | 148 | * favicon.ico path ([2c0cdc8](https://github.com/CoCreate-app/CoCreate-floating-label/commit/2c0cdc80ad4719836fdd614e9f52341390e7dbff)) 149 | * removed z-index ([e6d4058](https://github.com/CoCreate-app/CoCreate-floating-label/commit/e6d4058bf39730cd0ca633675f8efee9fb86b3da)) 150 | * update dependencies to the lates versions ([2ad109f](https://github.com/CoCreate-app/CoCreate-floating-label/commit/2ad109f24276fd3e7b65b07a7c64eaba806780a0)) 151 | 152 | ## [1.10.6](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.10.5...v1.10.6) (2023-10-25) 153 | 154 | 155 | ### Bug Fixes 156 | 157 | * bump dependencies ([210d11e](https://github.com/CoCreate-app/CoCreate-floating-label/commit/210d11e2ce2b4d0f57c65b53d7152409257983ae)) 158 | 159 | ## [1.10.5](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.10.4...v1.10.5) (2023-10-14) 160 | 161 | 162 | ### Bug Fixes 163 | 164 | * bump dependencies ([4058b4c](https://github.com/CoCreate-app/CoCreate-floating-label/commit/4058b4cc26d3de80f7dc3f00eb19ee80f3744b0d)) 165 | * remove margin-top ([9c66ffc](https://github.com/CoCreate-app/CoCreate-floating-label/commit/9c66ffc852dd1f561fe00651c9d400b665570382)) 166 | * wrapper classes or no longer overwritten ([c72d85d](https://github.com/CoCreate-app/CoCreate-floating-label/commit/c72d85db887a421b213095da8cd1bacaa1e81714)) 167 | 168 | ## [1.10.4](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.10.3...v1.10.4) (2023-10-09) 169 | 170 | 171 | ### Bug Fixes 172 | 173 | * bump dependencies ([95882d2](https://github.com/CoCreate-app/CoCreate-floating-label/commit/95882d20baee9cde3b4a719adf616e0cd37af306)) 174 | 175 | ## [1.10.3](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.10.2...v1.10.3) (2023-10-09) 176 | 177 | 178 | ### Bug Fixes 179 | 180 | * bump dependencies ([ea41a10](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ea41a10552340fd58c0fa16be6a233ca3eaff3b2)) 181 | 182 | ## [1.10.2](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.10.1...v1.10.2) (2023-09-18) 183 | 184 | 185 | ### Bug Fixes 186 | 187 | * Add path and pathname ([4f6a99b](https://github.com/CoCreate-app/CoCreate-floating-label/commit/4f6a99b6c478afd8971214b3e148a55c7a225e0b)) 188 | * Update CoCreate depndencies to latest versions ([58484f1](https://github.com/CoCreate-app/CoCreate-floating-label/commit/58484f11aa3fd461912e04ca7e603e2ad3104f54)) 189 | 190 | ## [1.10.1](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.10.0...v1.10.1) (2023-08-21) 191 | 192 | 193 | ### Bug Fixes 194 | 195 | * bump dependencies ([6b61472](https://github.com/CoCreate-app/CoCreate-floating-label/commit/6b61472d829f87b864e16473eb7adb10e5559d02)) 196 | 197 | # [1.10.0](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.9.1...v1.10.0) (2023-08-21) 198 | 199 | 200 | ### Features 201 | 202 | * Update cocreate dependencies for the latest features and bug fixes ([ae71a2d](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ae71a2db82469c3eefaccb01be59d99c00224490)) 203 | 204 | ## [1.9.1](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.9.0...v1.9.1) (2023-08-21) 205 | 206 | 207 | ### Bug Fixes 208 | 209 | * /dist/CoCreate.js updated to https://CoCreate.app/dist/CoCreate.js ([969ef43](https://github.com/CoCreate-app/CoCreate-floating-label/commit/969ef430a1c45388ef3e073312becf9e3fb85cea)) 210 | * replace cdn with /dist ([4af0130](https://github.com/CoCreate-app/CoCreate-floating-label/commit/4af0130fd652c34689d52dcc10560d337b897e1a)) 211 | * update file uploader ([d4d126f](https://github.com/CoCreate-app/CoCreate-floating-label/commit/d4d126fb85f06fa540262c302f8d3ea721107849)) 212 | 213 | # [1.9.0](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.8.0...v1.9.0) (2023-08-17) 214 | 215 | 216 | ### Features 217 | 218 | * bump cocreate dependencies for the latest updates and features ([0545672](https://github.com/CoCreate-app/CoCreate-floating-label/commit/05456720a008bde28af9ae7d7ded9a89e3b6f0bc)) 219 | 220 | # [1.8.0](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.21...v1.8.0) (2023-08-16) 221 | 222 | 223 | ### Bug Fixes 224 | 225 | * crud attributes renamed ([9ea753a](https://github.com/CoCreate-app/CoCreate-floating-label/commit/9ea753ac03b37a38fabceb614988154da6f08a1e)) 226 | * replace -target -selector ([56c8d66](https://github.com/CoCreate-app/CoCreate-floating-label/commit/56c8d66c013a725c7b70aaeaf80c02004c321b3c)) 227 | * webpack.config and package.json make use of mode=production instead of process.env ([264b338](https://github.com/CoCreate-app/CoCreate-floating-label/commit/264b338464d8664934d0a9f744f2c0b1e87c0b31)) 228 | 229 | 230 | ### Features 231 | 232 | * name attribute and variable renamed to key ([e6e412b](https://github.com/CoCreate-app/CoCreate-floating-label/commit/e6e412b06fb28e15729788de623801450cd0bd94)) 233 | 234 | ## [1.7.21](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.20...v1.7.21) (2023-06-14) 235 | 236 | 237 | ### Bug Fixes 238 | 239 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([0c237e2](https://github.com/CoCreate-app/CoCreate-floating-label/commit/0c237e2a2b0268197a14ef7ed0286f4a01b392e9)) 240 | 241 | ## [1.7.20](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.19...v1.7.20) (2023-06-11) 242 | 243 | 244 | ### Bug Fixes 245 | 246 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([487a29e](https://github.com/CoCreate-app/CoCreate-floating-label/commit/487a29e1990a3c50e4faf0032e20db292d12ba36)) 247 | 248 | ## [1.7.19](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.18...v1.7.19) (2023-06-11) 249 | 250 | 251 | ### Bug Fixes 252 | 253 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([25434be](https://github.com/CoCreate-app/CoCreate-floating-label/commit/25434be13a18b3b3912fa1d947d523c477444f94)) 254 | 255 | ## [1.7.18](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.17...v1.7.18) (2023-06-11) 256 | 257 | 258 | ### Bug Fixes 259 | 260 | * testing workflow ([c5e2bd1](https://github.com/CoCreate-app/CoCreate-floating-label/commit/c5e2bd1fbd7d965834c724a411e8fbbd805be089)) 261 | 262 | ## [1.7.17](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.16...v1.7.17) (2023-06-11) 263 | 264 | 265 | ### Bug Fixes 266 | 267 | * testing workflow ([c599662](https://github.com/CoCreate-app/CoCreate-floating-label/commit/c599662b0f041669edaa2dca2946cae5ad6a0751)) 268 | 269 | ## [1.7.16](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.15...v1.7.16) (2023-06-11) 270 | 271 | 272 | ### Bug Fixes 273 | 274 | * testing workflow ([f5830df](https://github.com/CoCreate-app/CoCreate-floating-label/commit/f5830df64f5a7b1215fd1816ebac0d52ccbb54f3)) 275 | * testing workflow ([f7f4ba8](https://github.com/CoCreate-app/CoCreate-floating-label/commit/f7f4ba8929adacd229cdcf5430a076b15a3ddcb7)) 276 | 277 | ## [1.7.15](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.14...v1.7.15) (2023-06-11) 278 | 279 | 280 | ### Bug Fixes 281 | 282 | * testing workflow ([2c55b27](https://github.com/CoCreate-app/CoCreate-floating-label/commit/2c55b2768242cdd51df97580b0a9ab0e16e7e30b)) 283 | 284 | ## [1.7.14](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.13...v1.7.14) (2023-06-11) 285 | 286 | 287 | ### Bug Fixes 288 | 289 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([32acbd6](https://github.com/CoCreate-app/CoCreate-floating-label/commit/32acbd6f6af465e2fde5c9cfb670d192a7171fea)) 290 | 291 | ## [1.7.13](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.12...v1.7.13) (2023-06-11) 292 | 293 | 294 | ### Bug Fixes 295 | 296 | * postintall error ([ba216fb](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ba216fbf16d9fef8c6ee04cc58c728b9709e0b75)) 297 | 298 | ## [1.7.12](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.11...v1.7.12) (2023-06-11) 299 | 300 | 301 | ### Bug Fixes 302 | 303 | * @cocreate/cli moved to dependencies ([aee2cc6](https://github.com/CoCreate-app/CoCreate-floating-label/commit/aee2cc61f4085649637c222da03d8aa0ea82c8b0)) 304 | 305 | ## [1.7.11](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.10...v1.7.11) (2023-06-11) 306 | 307 | 308 | ### Bug Fixes 309 | 310 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([620e2df](https://github.com/CoCreate-app/CoCreate-floating-label/commit/620e2dfea35f1aa6f5d78cf582da28bb3443b20d)) 311 | 312 | ## [1.7.10](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.9...v1.7.10) (2023-06-11) 313 | 314 | 315 | ### Bug Fixes 316 | 317 | * renamed hosts to host. the value can be a string or an array of strings ([a82a4e5](https://github.com/CoCreate-app/CoCreate-floating-label/commit/a82a4e5c71963a98363752cb18c568f37342a236)) 318 | 319 | ## [1.7.9](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.8...v1.7.9) (2023-06-10) 320 | 321 | 322 | ### Bug Fixes 323 | 324 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([975416b](https://github.com/CoCreate-app/CoCreate-floating-label/commit/975416b6befbae7b3c02441713f89c35e7d4cc17)) 325 | 326 | ## [1.7.8](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.7...v1.7.8) (2023-06-10) 327 | 328 | 329 | ### Bug Fixes 330 | 331 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([9213a6b](https://github.com/CoCreate-app/CoCreate-floating-label/commit/9213a6b1a0c2fe189f9b3c0a1c991f69e7150ee0)) 332 | 333 | ## [1.7.7](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.6...v1.7.7) (2023-06-04) 334 | 335 | 336 | ### Bug Fixes 337 | 338 | * Refactor CoCreate.config.js to remove hard-coded credentials ([34c4910](https://github.com/CoCreate-app/CoCreate-floating-label/commit/34c491056e11a05c09d4feed1b3890525ed28cd2)) 339 | 340 | ## [1.7.6](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.5...v1.7.6) (2023-06-04) 341 | 342 | 343 | ### Bug Fixes 344 | 345 | * replaced secert GITHUB_TOKEN with GITHUB ([f6ad241](https://github.com/CoCreate-app/CoCreate-floating-label/commit/f6ad2414b34d7649b90c019c0b726d4c63a6d06a)) 346 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([60e403b](https://github.com/CoCreate-app/CoCreate-floating-label/commit/60e403bbeaf2b15089bf8e6aab8989cc4e538caa)) 347 | 348 | ## [1.7.5](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.4...v1.7.5) (2023-06-04) 349 | 350 | 351 | ### Bug Fixes 352 | 353 | * **semantic-release:** worklow error solved by running node version 14 ([a3983dc](https://github.com/CoCreate-app/CoCreate-floating-label/commit/a3983dc73d96af460765431192bbe5cd3e01c11f)) 354 | 355 | ## [1.7.4](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.3...v1.7.4) (2023-06-02) 356 | 357 | 358 | ### Bug Fixes 359 | 360 | * format demo html ([cc3813d](https://github.com/CoCreate-app/CoCreate-floating-label/commit/cc3813d86cbe83788b7f6100ef09cb966eba01f4)) 361 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([73abde5](https://github.com/CoCreate-app/CoCreate-floating-label/commit/73abde540a6ff0dfb0d4e1657c01ce3fb80c4fc8)) 362 | 363 | ## [1.7.3](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.2...v1.7.3) (2023-05-21) 364 | 365 | 366 | ### Bug Fixes 367 | 368 | * Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([a182549](https://github.com/CoCreate-app/CoCreate-floating-label/commit/a18254986faf909054a5b0561f171d300660054f)) 369 | 370 | ## [1.7.2](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.1...v1.7.2) (2023-05-19) 371 | 372 | 373 | ### Bug Fixes 374 | 375 | * 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. ([4435f2f](https://github.com/CoCreate-app/CoCreate-floating-label/commit/4435f2fee7bada07dcfe2fa22c3420be93561d8e)) 376 | 377 | ## [1.7.1](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.7.0...v1.7.1) (2023-05-10) 378 | 379 | 380 | ### Bug Fixes 381 | 382 | * apikey renamed to key ([c5edc50](https://github.com/CoCreate-app/CoCreate-floating-label/commit/c5edc50ae12f06246fdd79d05dd8a3b9873cb153)) 383 | 384 | # [1.7.0](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.6.7...v1.7.0) (2023-05-09) 385 | 386 | 387 | ### Features 388 | 389 | * query floating-label tag and floating-label class ([99f0f58](https://github.com/CoCreate-app/CoCreate-floating-label/commit/99f0f58a692706a3b424aeff7876adaabe949d9b)) 390 | 391 | ## [1.6.7](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.6.6...v1.6.7) (2023-05-06) 392 | 393 | 394 | ### Bug Fixes 395 | 396 | * bump [@cocreate](https://github.com/cocreate) dependencies ([64430a6](https://github.com/CoCreate-app/CoCreate-floating-label/commit/64430a6b86150a2429028c7385d8a2991bdcf8f4)) 397 | 398 | ## [1.6.6](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.6.5...v1.6.6) (2023-05-01) 399 | 400 | 401 | ### Bug Fixes 402 | 403 | * update manifest.json to manifest.webmanifest ([ce370e3](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ce370e38a984e7d7db2b4e4f45ddd000fd30ce7b)) 404 | 405 | ## [1.6.5](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.6.4...v1.6.5) (2023-05-01) 406 | 407 | 408 | ### Bug Fixes 409 | 410 | * replace fontawesome with svg ([afcca3a](https://github.com/CoCreate-app/CoCreate-floating-label/commit/afcca3a73bc57a625a4e74d088c5d2d453c029c1)) 411 | 412 | ## [1.6.4](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.6.3...v1.6.4) (2023-04-30) 413 | 414 | 415 | ### Bug Fixes 416 | 417 | * fullscreen target updated to fullscreen fullscreen-target ([235765e](https://github.com/CoCreate-app/CoCreate-floating-label/commit/235765e9e8c16d252036739fc1de6ab43366ef03)) 418 | * package-lock.json and pnpm-lock.yaml added to .gitignore ([0c5d6eb](https://github.com/CoCreate-app/CoCreate-floating-label/commit/0c5d6eb2015c9a8a2bdc8499e4b8c5c4a015845e)) 419 | * removed toogle fullscreen icons. now using css content ([ff3864c](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ff3864cd1d2bb1ca768aa50c29a78cf520945a26)) 420 | 421 | ## [1.6.3](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.6.2...v1.6.3) (2023-04-24) 422 | 423 | 424 | ### Bug Fixes 425 | 426 | * updated worrkflows to v3 and node version 16 ([90028e6](https://github.com/CoCreate-app/CoCreate-floating-label/commit/90028e6024374d5562e7df5fa5b5cb73d51aadbe)) 427 | 428 | ## [1.6.2](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.6.1...v1.6.2) (2023-04-24) 429 | 430 | 431 | ### Bug Fixes 432 | 433 | * workflow node version updated 16 ([38c9b73](https://github.com/CoCreate-app/CoCreate-floating-label/commit/38c9b73746ce4bd2feccc7ac61d8150bdb1a3619)) 434 | 435 | ## [1.6.1](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.6.0...v1.6.1) (2023-04-24) 436 | 437 | 438 | ### Bug Fixes 439 | 440 | * bump [@cocreate](https://github.com/cocreate) dependencies ([39587ad](https://github.com/CoCreate-app/CoCreate-floating-label/commit/39587ad33dae2fb3e8a32483356585ed5fb754f9)) 441 | 442 | # [1.6.0](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.5.6...v1.6.0) (2023-04-24) 443 | 444 | 445 | ### Features 446 | 447 | * added pwa manifest ([e663ba7](https://github.com/CoCreate-app/CoCreate-floating-label/commit/e663ba780bbe487a67b544929c94286445b62ff1)) 448 | 449 | ## [1.5.6](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.5.5...v1.5.6) (2023-04-11) 450 | 451 | 452 | ### Bug Fixes 453 | 454 | * bump dependencies ([9e0eeb2](https://github.com/CoCreate-app/CoCreate-floating-label/commit/9e0eeb29e3294c497a52bb97842063f431bdf3f9)) 455 | 456 | ## [1.5.5](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.5.4...v1.5.5) (2023-04-11) 457 | 458 | 459 | ### Bug Fixes 460 | 461 | * bump [@cocreate](https://github.com/cocreate) dependencies ([13c2197](https://github.com/CoCreate-app/CoCreate-floating-label/commit/13c2197226ae8a58d9d66feb33828873cf7448c0)) 462 | 463 | ## [1.5.4](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.5.3...v1.5.4) (2023-04-11) 464 | 465 | 466 | ### Bug Fixes 467 | 468 | * renamed domains to hosts ([b756257](https://github.com/CoCreate-app/CoCreate-floating-label/commit/b75625708acba32d0176c25dd0d838435d2eaf9b)) 469 | 470 | ## [1.5.3](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.5.2...v1.5.3) (2023-03-30) 471 | 472 | 473 | ### Bug Fixes 474 | 475 | * bump [@cocreate](https://github.com/cocreate) dependencies' ([fd3a13b](https://github.com/CoCreate-app/CoCreate-floating-label/commit/fd3a13be1de6858532c352d8776673f096c02610)) 476 | 477 | ## [1.5.2](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.5.1...v1.5.2) (2023-03-16) 478 | 479 | 480 | ### Bug Fixes 481 | 482 | * bump dependencies' ([583975b](https://github.com/CoCreate-app/CoCreate-floating-label/commit/583975b87a741c69071304d71c0b0d616b342000)) 483 | 484 | ## [1.5.1](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.5.0...v1.5.1) (2023-03-16) 485 | 486 | 487 | ### Bug Fixes 488 | 489 | * bump dependencies' ([ca52649](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ca5264987c4ecde8fed51867f08b106494c11596)) 490 | 491 | # [1.5.0](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.70...v1.5.0) (2023-03-16) 492 | 493 | 494 | ### Features 495 | 496 | * replaced get-value and set-value with a super charged version of CoCreate-events ([6829ddc](https://github.com/CoCreate-app/CoCreate-floating-label/commit/6829ddc979f4edf4db6329f106879e367984ccdb)) 497 | 498 | ## [1.4.70](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.69...v1.4.70) (2023-02-01) 499 | 500 | 501 | ### Bug Fixes 502 | 503 | * bump dependencies ([a232912](https://github.com/CoCreate-app/CoCreate-floating-label/commit/a232912490a6058c8e3a69e381f42656ade1f63e)) 504 | 505 | ## [1.4.69](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.68...v1.4.69) (2023-01-31) 506 | 507 | 508 | ### Bug Fixes 509 | 510 | * bump dependencies ([5e243ef](https://github.com/CoCreate-app/CoCreate-floating-label/commit/5e243ef60378872091bdc77eca5f31af344e7d58)) 511 | 512 | ## [1.4.68](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.67...v1.4.68) (2023-01-30) 513 | 514 | 515 | ### Bug Fixes 516 | 517 | * bump dependencies ([fd8a53e](https://github.com/CoCreate-app/CoCreate-floating-label/commit/fd8a53e9374be86df842dd6d105174cf4d9ac330)) 518 | 519 | ## [1.4.67](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.66...v1.4.67) (2023-01-29) 520 | 521 | 522 | ### Bug Fixes 523 | 524 | * bump dependencies ([9bfc9dd](https://github.com/CoCreate-app/CoCreate-floating-label/commit/9bfc9dd2662458153d65a2400468c874a4c98058)) 525 | 526 | ## [1.4.66](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.65...v1.4.66) (2023-01-27) 527 | 528 | 529 | ### Bug Fixes 530 | 531 | * bump dependencies ([2442c46](https://github.com/CoCreate-app/CoCreate-floating-label/commit/2442c465cb6cab0c1274980a901b559992903019)) 532 | 533 | ## [1.4.65](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.64...v1.4.65) (2023-01-13) 534 | 535 | 536 | ### Bug Fixes 537 | 538 | * bump dependencies ([426390d](https://github.com/CoCreate-app/CoCreate-floating-label/commit/426390d8c763436465ef6ea7ab852b7efc633b48)) 539 | 540 | ## [1.4.64](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.63...v1.4.64) (2023-01-10) 541 | 542 | 543 | ### Bug Fixes 544 | 545 | * bump dependencies ([41dc576](https://github.com/CoCreate-app/CoCreate-floating-label/commit/41dc576bd0edeaa0b622cd7b9bd348c2ec1a210a)) 546 | 547 | ## [1.4.63](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.62...v1.4.63) (2023-01-09) 548 | 549 | 550 | ### Bug Fixes 551 | 552 | * bump dependnecies ([ed31198](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ed3119841b920cdcae1c90cd1a41808faf328f57)) 553 | 554 | ## [1.4.62](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.61...v1.4.62) (2023-01-06) 555 | 556 | 557 | ### Bug Fixes 558 | 559 | * bump dependencies, worklow [@v3](https://github.com/v3) ([a3be21c](https://github.com/CoCreate-app/CoCreate-floating-label/commit/a3be21c1ec25793d497499db9abf8779fd54f240)) 560 | * edit in github btn styles ([5d2036f](https://github.com/CoCreate-app/CoCreate-floating-label/commit/5d2036f8370bc727e7b05a8db246f7c9200f6e89)) 561 | 562 | ## [1.4.61](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.60...v1.4.61) (2023-01-05) 563 | 564 | 565 | ### Bug Fixes 566 | 567 | * bump cdn to 1.39.4 ([70fe438](https://github.com/CoCreate-app/CoCreate-floating-label/commit/70fe4382c15ae50b2cb31fe09c688074939011e0)) 568 | * bump dependencies ([e2cc494](https://github.com/CoCreate-app/CoCreate-floating-label/commit/e2cc494b25031f8e9513d4652535bb71d72f2669)) 569 | 570 | ## [1.4.60](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.59...v1.4.60) (2023-01-01) 571 | 572 | 573 | ### Bug Fixes 574 | 575 | * docs sanbox overflow ([f298975](https://github.com/CoCreate-app/CoCreate-floating-label/commit/f298975c456c521abc7abefc703528fa4a4688d7)) 576 | 577 | ## [1.4.59](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.58...v1.4.59) (2022-12-31) 578 | 579 | 580 | ### Bug Fixes 581 | 582 | * bump dependencies ([94b5eaa](https://github.com/CoCreate-app/CoCreate-floating-label/commit/94b5eaa977e33f2997939b4ecece598280ef15a8)) 583 | 584 | ## [1.4.58](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.57...v1.4.58) (2022-12-30) 585 | 586 | 587 | ### Bug Fixes 588 | 589 | * update config sources to use template braces with entry on src ([bd7eee0](https://github.com/CoCreate-app/CoCreate-floating-label/commit/bd7eee0410f1464e892709a7f8b687455d4504c7)) 590 | 591 | ## [1.4.57](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.56...v1.4.57) (2022-12-29) 592 | 593 | 594 | ### Bug Fixes 595 | 596 | * bump dependencies ([e3c8411](https://github.com/CoCreate-app/CoCreate-floating-label/commit/e3c8411f77f905d2727a82bc0c1296c0b60b78b3)) 597 | 598 | ## [1.4.56](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.55...v1.4.56) (2022-12-27) 599 | 600 | 601 | ### Bug Fixes 602 | 603 | * bump dependencies ([19f2f05](https://github.com/CoCreate-app/CoCreate-floating-label/commit/19f2f0506c37b983874e7469453a66b6e537a3e4)) 604 | 605 | ## [1.4.55](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.54...v1.4.55) (2022-12-25) 606 | 607 | 608 | ### Bug Fixes 609 | 610 | * bump dependencies ([9f40f94](https://github.com/CoCreate-app/CoCreate-floating-label/commit/9f40f94e00bf625d3fad91a206c75cd20b9923cf)) 611 | 612 | ## [1.4.54](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.53...v1.4.54) (2022-12-23) 613 | 614 | 615 | ### Bug Fixes 616 | 617 | * bump dependnecies ([f616201](https://github.com/CoCreate-app/CoCreate-floating-label/commit/f616201699083f12b84ac77dd14f4b2763cc84d4)) 618 | 619 | ## [1.4.53](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.52...v1.4.53) (2022-12-22) 620 | 621 | 622 | ### Bug Fixes 623 | 624 | * bump dependencies ([e6ce5b1](https://github.com/CoCreate-app/CoCreate-floating-label/commit/e6ce5b1f10fd4bbe2b2e24ea58a3aa224098cf72)) 625 | * update cdn ([17549b3](https://github.com/CoCreate-app/CoCreate-floating-label/commit/17549b3764782c1d90f3a4860a242c76ce062267)) 626 | 627 | ## [1.4.52](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.51...v1.4.52) (2022-12-22) 628 | 629 | 630 | ### Bug Fixes 631 | 632 | * update demos and bump dependencies ([1fe5ba7](https://github.com/CoCreate-app/CoCreate-floating-label/commit/1fe5ba7778fcbd9ecfa5c9b2af131371db7ec8f6)) 633 | 634 | ## [1.4.51](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.50...v1.4.51) (2022-12-21) 635 | 636 | 637 | ### Bug Fixes 638 | 639 | * bump dependencies ([263a4ca](https://github.com/CoCreate-app/CoCreate-floating-label/commit/263a4cae2102eaec775249b6ff7d80734a117b07)) 640 | 641 | ## [1.4.50](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.49...v1.4.50) (2022-12-20) 642 | 643 | 644 | ### Bug Fixes 645 | 646 | * bump dependencies ([aa6bd38](https://github.com/CoCreate-app/CoCreate-floating-label/commit/aa6bd381f2ee864ef87b4713e4c3bd322f88ae17)) 647 | 648 | ## [1.4.49](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.48...v1.4.49) (2022-12-15) 649 | 650 | 651 | ### Bug Fixes 652 | 653 | * add missing dev dependency style-loader ([98ea78a](https://github.com/CoCreate-app/CoCreate-floating-label/commit/98ea78ac90910905e9c0ff3c3062c681c9a5d6f6)) 654 | 655 | ## [1.4.48](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.47...v1.4.48) (2022-12-15) 656 | 657 | 658 | ### Bug Fixes 659 | 660 | * add class to wrapper after appending outline to improve rendering ([2c0cfa1](https://github.com/CoCreate-app/CoCreate-floating-label/commit/2c0cfa109cae9c9e3b3b138652ad5f7659ae9783)) 661 | 662 | ## [1.4.47](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.46...v1.4.47) (2022-12-13) 663 | 664 | 665 | ### Bug Fixes 666 | 667 | * add border css to floating-label element when not intialized ([e6e9eea](https://github.com/CoCreate-app/CoCreate-floating-label/commit/e6e9eea1ab55d0aef8d3460886f44d9289014b98)) 668 | 669 | ## [1.4.46](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.45...v1.4.46) (2022-12-13) 670 | 671 | 672 | ### Bug Fixes 673 | 674 | * removed un used devDependencies ([0790978](https://github.com/CoCreate-app/CoCreate-floating-label/commit/0790978ced1159c7b78a252b348b523e57d27c25)) 675 | 676 | ## [1.4.45](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.44...v1.4.45) (2022-12-13) 677 | 678 | 679 | ### Bug Fixes 680 | 681 | * bump dependencies ([cc25152](https://github.com/CoCreate-app/CoCreate-floating-label/commit/cc2515284d8725434acb0cdd7d288eff90e0f298)) 682 | 683 | ## [1.4.44](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.43...v1.4.44) (2022-12-12) 684 | 685 | 686 | ### Bug Fixes 687 | 688 | * add css for element floating-label ([b589d67](https://github.com/CoCreate-app/CoCreate-floating-label/commit/b589d6769a51f50982b673a82292d480ef3f09e9)) 689 | 690 | ## [1.4.43](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.42...v1.4.43) (2022-12-12) 691 | 692 | 693 | ### Bug Fixes 694 | 695 | * bump dependencies ([b069509](https://github.com/CoCreate-app/CoCreate-floating-label/commit/b0695095f501e2fea4632565d314fae610543506)) 696 | 697 | ## [1.4.42](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.41...v1.4.42) (2022-12-11) 698 | 699 | 700 | ### Bug Fixes 701 | 702 | * bump dependencies ([76b544a](https://github.com/CoCreate-app/CoCreate-floating-label/commit/76b544acd37d9c1a2822938ac5c7ef81571e41a7)) 703 | 704 | ## [1.4.41](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.40...v1.4.41) (2022-12-10) 705 | 706 | 707 | ### Bug Fixes 708 | 709 | * floating-label element to css ([4ab8955](https://github.com/CoCreate-app/CoCreate-floating-label/commit/4ab8955d407cc8265af721f25fea2cf48224edef)) 710 | 711 | ## [1.4.40](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.39...v1.4.40) (2022-12-09) 712 | 713 | 714 | ### Bug Fixes 715 | 716 | * bump dependencies ([82d01ec](https://github.com/CoCreate-app/CoCreate-floating-label/commit/82d01ec4cef56af733115f39c4161edb25f18af8)) 717 | 718 | ## [1.4.39](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.38...v1.4.39) (2022-12-08) 719 | 720 | 721 | ### Bug Fixes 722 | 723 | * bump dependencies ([131c399](https://github.com/CoCreate-app/CoCreate-floating-label/commit/131c39955ef1d4b0d76ca1206312b4b8ac193b75)) 724 | 725 | ## [1.4.38](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.37...v1.4.38) (2022-12-07) 726 | 727 | 728 | ### Bug Fixes 729 | 730 | * bump dependencies ([8143a6f](https://github.com/CoCreate-app/CoCreate-floating-label/commit/8143a6fa51822a9d203d5fff2bad7bbd762cdc4d)) 731 | 732 | ## [1.4.37](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.36...v1.4.37) (2022-12-04) 733 | 734 | 735 | ### Bug Fixes 736 | 737 | * bump dependencies ([6d80fcf](https://github.com/CoCreate-app/CoCreate-floating-label/commit/6d80fcf64772e246e11ac1ac7486fbd1391b5b3a)) 738 | 739 | ## [1.4.36](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.35...v1.4.36) (2022-12-02) 740 | 741 | 742 | ### Bug Fixes 743 | 744 | * docs ([14fcdfa](https://github.com/CoCreate-app/CoCreate-floating-label/commit/14fcdfa37f1638fe3995704c53f61846b571c3f9)) 745 | 746 | ## [1.4.35](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.34...v1.4.35) (2022-12-02) 747 | 748 | 749 | ### Bug Fixes 750 | 751 | * bump dependencies ([994cf07](https://github.com/CoCreate-app/CoCreate-floating-label/commit/994cf072d6c578fdddffbbd928b2fcdfb45b02e8)) 752 | 753 | ## [1.4.34](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.33...v1.4.34) (2022-11-28) 754 | 755 | 756 | ### Bug Fixes 757 | 758 | * bump dependencies ([3be0339](https://github.com/CoCreate-app/CoCreate-floating-label/commit/3be0339250af22d6f3793991c1dfe479220e3297)) 759 | 760 | ## [1.4.33](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.32...v1.4.33) (2022-11-28) 761 | 762 | 763 | ### Bug Fixes 764 | 765 | * bump dependencies ([18754c7](https://github.com/CoCreate-app/CoCreate-floating-label/commit/18754c79fa865f44aa85f1470652a9bb932e7275)) 766 | 767 | ## [1.4.32](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.31...v1.4.32) (2022-11-27) 768 | 769 | 770 | ### Bug Fixes 771 | 772 | * bump dependencies ([7035da0](https://github.com/CoCreate-app/CoCreate-floating-label/commit/7035da07953500352025ff5817ebe91d273e35c6)) 773 | 774 | ## [1.4.31](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.30...v1.4.31) (2022-11-26) 775 | 776 | 777 | ### Bug Fixes 778 | 779 | * bump dependencies ([d1d2b73](https://github.com/CoCreate-app/CoCreate-floating-label/commit/d1d2b7376c11ebca88f85099c75cd9999b131f96)) 780 | 781 | ## [1.4.30](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.29...v1.4.30) (2022-11-25) 782 | 783 | 784 | ### Bug Fixes 785 | 786 | * bump dependencies ([ce6dc8d](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ce6dc8d43e38ad9c5ffa6d10d5dc69db6b388e22)) 787 | 788 | ## [1.4.29](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.28...v1.4.29) (2022-11-24) 789 | 790 | 791 | ### Bug Fixes 792 | 793 | * bump depenedencies ([ea5ef72](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ea5ef727fed1dfe60b9d2db17e82278a0ece6e0e)) 794 | 795 | ## [1.4.28](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.27...v1.4.28) (2022-11-23) 796 | 797 | 798 | ### Bug Fixes 799 | 800 | * bumped [@cocreate](https://github.com/cocreate) dependencies ([a1f7485](https://github.com/CoCreate-app/CoCreate-floating-label/commit/a1f748538707dd20582493b936c19068a0cb7ba1)) 801 | 802 | ## [1.4.27](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.26...v1.4.27) (2022-11-22) 803 | 804 | 805 | ### Bug Fixes 806 | 807 | * workflow docs ([f343ba3](https://github.com/CoCreate-app/CoCreate-floating-label/commit/f343ba31ca79d996ee6c7770eeaa3e49c5df2fa0)) 808 | 809 | ## [1.4.26](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.25...v1.4.26) (2022-11-22) 810 | 811 | 812 | ### Bug Fixes 813 | 814 | * apply src: {{source}} to CoCreate.config ([0c8273d](https://github.com/CoCreate-app/CoCreate-floating-label/commit/0c8273dd189458549fb6513bd87cc21c9e92221c)) 815 | 816 | ## [1.4.25](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.24...v1.4.25) (2022-11-21) 817 | 818 | 819 | ### Bug Fixes 820 | 821 | * @cocreate/docs bug fix ([0734c4d](https://github.com/CoCreate-app/CoCreate-floating-label/commit/0734c4d61800a2b1153c0107453020773867bec6)) 822 | 823 | ## [1.4.24](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.23...v1.4.24) (2022-11-21) 824 | 825 | 826 | ### Bug Fixes 827 | 828 | * replaced document_id with document._id ([c3015fc](https://github.com/CoCreate-app/CoCreate-floating-label/commit/c3015fca5927e369df9f37504775a15e48081f1b)) 829 | 830 | ## [1.4.23](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.22...v1.4.23) (2022-11-21) 831 | 832 | 833 | ### Bug Fixes 834 | 835 | * bump [@cocreate](https://github.com/cocreate) dependencies ([fafdde7](https://github.com/CoCreate-app/CoCreate-floating-label/commit/fafdde7e040ca981c043793b9da7e9dcf6ae6a41)) 836 | 837 | ## [1.4.22](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.21...v1.4.22) (2022-11-21) 838 | 839 | 840 | ### Bug Fixes 841 | 842 | * bump d@cocreate ependencies ([ec8ea5e](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ec8ea5e7010925f932df1d38e9a0bbfda1d73017)) 843 | 844 | ## [1.4.21](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.20...v1.4.21) (2022-10-02) 845 | 846 | 847 | ### Bug Fixes 848 | 849 | * minor bug fixes ([65e9562](https://github.com/CoCreate-app/CoCreate-floating-label/commit/65e9562914fd41e2477ca929033bda34578b8cb6)) 850 | 851 | ## [1.4.20](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.19...v1.4.20) (2022-10-02) 852 | 853 | 854 | ### Bug Fixes 855 | 856 | * bump @cocreate/hosting and @cocreate/socket-client ([32766f0](https://github.com/CoCreate-app/CoCreate-floating-label/commit/32766f0b2ccaaa3e6398193dfdd0bb4006758a33)) 857 | 858 | ## [1.4.19](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.18...v1.4.19) (2022-10-01) 859 | 860 | 861 | ### Bug Fixes 862 | 863 | * bump dependencies ([b96ad04](https://github.com/CoCreate-app/CoCreate-floating-label/commit/b96ad048e6882ac612afee1ebdabacac18a5ffc0)) 864 | 865 | ## [1.4.18](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.17...v1.4.18) (2022-10-01) 866 | 867 | 868 | ### Bug Fixes 869 | 870 | * bump [@cocreate](https://github.com/cocreate) dependencies ([9e862c7](https://github.com/CoCreate-app/CoCreate-floating-label/commit/9e862c757b25f8819fa6a3907a89a4de152ac06e)) 871 | 872 | ## [1.4.17](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.16...v1.4.17) (2022-09-30) 873 | 874 | 875 | ### Bug Fixes 876 | 877 | * bump [@cocreate](https://github.com/cocreate) dependencies ([527d55e](https://github.com/CoCreate-app/CoCreate-floating-label/commit/527d55e14dc79eb3f1005214203aaa0b37aefeeb)) 878 | 879 | ## [1.4.16](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.15...v1.4.16) (2022-09-30) 880 | 881 | 882 | ### Bug Fixes 883 | 884 | * bump [@cocreate](https://github.com/cocreate) dependencies ([94d5083](https://github.com/CoCreate-app/CoCreate-floating-label/commit/94d5083ba1e0886c165605cd337b421c2a183f87)) 885 | 886 | ## [1.4.15](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.14...v1.4.15) (2022-09-30) 887 | 888 | 889 | ### Bug Fixes 890 | 891 | * bump [@cocreate](https://github.com/cocreate) dependencies ([39891ef](https://github.com/CoCreate-app/CoCreate-floating-label/commit/39891ef3ebcc9a1526b1fc04daebd52fe7c5ef79)) 892 | 893 | ## [1.4.14](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.13...v1.4.14) (2022-09-30) 894 | 895 | 896 | ### Bug Fixes 897 | 898 | * bump dependencies ([a022006](https://github.com/CoCreate-app/CoCreate-floating-label/commit/a022006f4e02adc66011f67f713e23c6be9c1e41)) 899 | 900 | ## [1.4.13](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.12...v1.4.13) (2022-09-01) 901 | 902 | 903 | ### Bug Fixes 904 | 905 | * bump all of [@cocreate](https://github.com/cocreate) dependencies ([8c60338](https://github.com/CoCreate-app/CoCreate-floating-label/commit/8c60338d3de21b00a9949c6b50b6c31bb5ea8670)) 906 | 907 | ## [1.4.12](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.11...v1.4.12) (2022-06-18) 908 | 909 | 910 | ### Bug Fixes 911 | 912 | * bump dependencies ([99a9fe1](https://github.com/CoCreate-app/CoCreate-floating-label/commit/99a9fe1b115bf39ac673f95d263823393e0c4fa3)) 913 | 914 | ## [1.4.11](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.10...v1.4.11) (2022-06-12) 915 | 916 | 917 | ### Bug Fixes 918 | 919 | * update dependencies ([b5a8896](https://github.com/CoCreate-app/CoCreate-floating-label/commit/b5a889673eb9e969b2b535851419144190187d8d)) 920 | * update docs css document_id ([c93a6e5](https://github.com/CoCreate-app/CoCreate-floating-label/commit/c93a6e54248929cef7ab4236f45d2c298cd2b43d)) 921 | 922 | ## [1.4.10](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.9...v1.4.10) (2022-05-26) 923 | 924 | 925 | ### Bug Fixes 926 | 927 | * webkit-transition-delay causing height issues in chrome has been removed ([7ecaa45](https://github.com/CoCreate-app/CoCreate-floating-label/commit/7ecaa45c8f1a65017ce407cf7ef102fda55454b7)) 928 | 929 | ## [1.4.9](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.8...v1.4.9) (2022-05-25) 930 | 931 | 932 | ### Bug Fixes 933 | 934 | * CSS to support non input elements that do not have a DOM placeholder ([d4cc1b9](https://github.com/CoCreate-app/CoCreate-floating-label/commit/d4cc1b92782c5b45371459dfa38974330cac20a8)) 935 | * was replacing element causing observer to fire ([baf770d](https://github.com/CoCreate-app/CoCreate-floating-label/commit/baf770dc3fd7cd1118b36c1e9a95550ed03f7771)) 936 | 937 | ## [1.4.8](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.7...v1.4.8) (2022-05-23) 938 | 939 | 940 | ### Bug Fixes 941 | 942 | * bump all dependencies ([7382be9](https://github.com/CoCreate-app/CoCreate-floating-label/commit/7382be9134fb548a593748c8865a3f52a6996c19)) 943 | 944 | ## [1.4.7](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.6...v1.4.7) (2022-05-19) 945 | 946 | 947 | ### Bug Fixes 948 | 949 | * update document_id on link index.css ([56dc872](https://github.com/CoCreate-app/CoCreate-floating-label/commit/56dc872ea250ca4c0a8cf393eda4d73cf34b5a36)) 950 | 951 | ## [1.4.6](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.5...v1.4.6) (2022-05-06) 952 | 953 | 954 | ### Bug Fixes 955 | 956 | * update config organization_Id to organization_id ([a230419](https://github.com/CoCreate-app/CoCreate-floating-label/commit/a230419f4f71fae7703b54b8d72ec1f6e0af532d)) 957 | 958 | ## [1.4.5](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.4...v1.4.5) (2022-02-24) 959 | 960 | 961 | ### Bug Fixes 962 | 963 | * CoCreate.config replace CoCreate.app with * ([b9271bf](https://github.com/CoCreate-app/CoCreate-floating-label/commit/b9271bf07e1358a4f0e3974f0c161c8eb13d7db6)) 964 | 965 | ## [1.4.4](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.3...v1.4.4) (2022-02-16) 966 | 967 | 968 | ### Bug Fixes 969 | 970 | * update dependencies ([d2d0091](https://github.com/CoCreate-app/CoCreate-floating-label/commit/d2d0091da7116c0326b7a6af1132db14ef566ffc)) 971 | 972 | ## [1.4.3](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.2...v1.4.3) (2022-02-10) 973 | 974 | 975 | ### Bug Fixes 976 | 977 | * bump dependencies ([86ae0da](https://github.com/CoCreate-app/CoCreate-floating-label/commit/86ae0da631c3055bba3921073c7e725a275082a5)) 978 | 979 | ## [1.4.2](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.1...v1.4.2) (2022-02-07) 980 | 981 | 982 | ### Bug Fixes 983 | 984 | * bump dependency versions ([182dea7](https://github.com/CoCreate-app/CoCreate-floating-label/commit/182dea77560c316264f83573f7d6f63355cdc183)) 985 | 986 | ## [1.4.1](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.4.0...v1.4.1) (2022-02-03) 987 | 988 | 989 | ### Bug Fixes 990 | 991 | * replaced show and hide class hidden with attribute hidden ([0807f6e](https://github.com/CoCreate-app/CoCreate-floating-label/commit/0807f6e5d4b6a19babaa8b234249513ed7647af9)) 992 | 993 | # [1.4.0](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.3.2...v1.4.0) (2022-02-02) 994 | 995 | 996 | ### Features 997 | 998 | * updating plachlder value will update label value ([842a9db](https://github.com/CoCreate-app/CoCreate-floating-label/commit/842a9db619b3c345cc2164efef56bf92399c7b22)) 999 | 1000 | ## [1.3.2](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.3.1...v1.3.2) (2022-02-01) 1001 | 1002 | 1003 | ### Bug Fixes 1004 | 1005 | * update dependency versions ([4512ddb](https://github.com/CoCreate-app/CoCreate-floating-label/commit/4512ddb1436f40c1f986b5adb0d7a0d82259e8bd)) 1006 | 1007 | ## [1.3.1](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.3.0...v1.3.1) (2022-01-01) 1008 | 1009 | 1010 | ### Bug Fixes 1011 | 1012 | * get-value attribute value now supports a selector added # to all values currently in get-value attributes ([1a8e3b9](https://github.com/CoCreate-app/CoCreate-floating-label/commit/1a8e3b99c5acfe8408082c470ce7d25b70ae1527)) 1013 | 1014 | # [1.3.0](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.31...v1.3.0) (2021-12-25) 1015 | 1016 | 1017 | ### Features 1018 | 1019 | * wrap in put with element to create floating label ([a3010ea](https://github.com/CoCreate-app/CoCreate-floating-label/commit/a3010ea4b52bf347d422c6cbb85c34ffefb93948)) 1020 | 1021 | ## [1.2.31](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.30...v1.2.31) (2021-12-15) 1022 | 1023 | 1024 | ### Bug Fixes 1025 | 1026 | * update dependencies ([51edd10](https://github.com/CoCreate-app/CoCreate-floating-label/commit/51edd10bee90af3a3a7f28d6b0367fe671f0b1fb)) 1027 | 1028 | ## [1.2.30](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.29...v1.2.30) (2021-12-14) 1029 | 1030 | 1031 | ### Bug Fixes 1032 | 1033 | * update dependencies ([2b045af](https://github.com/CoCreate-app/CoCreate-floating-label/commit/2b045af4d1aa01fb4806c5c1021f224052eed88f)) 1034 | 1035 | ## [1.2.29](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.28...v1.2.29) (2021-11-27) 1036 | 1037 | 1038 | ### Bug Fixes 1039 | 1040 | * update dependencies ([90c0bb1](https://github.com/CoCreate-app/CoCreate-floating-label/commit/90c0bb1f21206546132101d6168f8e160d762ed0)) 1041 | 1042 | ## [1.2.28](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.27...v1.2.28) (2021-11-27) 1043 | 1044 | 1045 | ### Bug Fixes 1046 | 1047 | * update dependencies ([7b7b8cc](https://github.com/CoCreate-app/CoCreate-floating-label/commit/7b7b8cc92283924382ca6f256b7b5ec5c3d0f69b)) 1048 | 1049 | ## [1.2.27](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.26...v1.2.27) (2021-11-27) 1050 | 1051 | 1052 | ### Bug Fixes 1053 | 1054 | * update docs api and cocreateJS script ([7959cd3](https://github.com/CoCreate-app/CoCreate-floating-label/commit/7959cd3fcbb2af355806dc906872592bb86bfc8b)) 1055 | 1056 | ## [1.2.26](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.25...v1.2.26) (2021-11-26) 1057 | 1058 | 1059 | ### Bug Fixes 1060 | 1061 | * docs sidenav width ([0f6265b](https://github.com/CoCreate-app/CoCreate-floating-label/commit/0f6265b352d762587e63fc8eaf9a2edafcb147b8)) 1062 | 1063 | ## [1.2.25](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.24...v1.2.25) (2021-11-26) 1064 | 1065 | 1066 | ### Bug Fixes 1067 | 1068 | * update dependencies ([3214a53](https://github.com/CoCreate-app/CoCreate-floating-label/commit/3214a536c83d72968f013e2fb2564c92b336eb64)) 1069 | 1070 | ## [1.2.24](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.23...v1.2.24) (2021-11-23) 1071 | 1072 | 1073 | ### Bug Fixes 1074 | 1075 | * update dependencies ([559e6d4](https://github.com/CoCreate-app/CoCreate-floating-label/commit/559e6d4672f6ff3b1fef48a2487e57930fd7d96b)) 1076 | 1077 | ## [1.2.23](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.22...v1.2.23) (2021-11-20) 1078 | 1079 | 1080 | ### Bug Fixes 1081 | 1082 | * remove cdn.CoCreate.min.css ([b2a1fea](https://github.com/CoCreate-app/CoCreate-floating-label/commit/b2a1feaa30a2b51c4416e90b05d0ef37570e8b5b)) 1083 | 1084 | ## [1.2.22](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.21...v1.2.22) (2021-11-20) 1085 | 1086 | 1087 | ### Bug Fixes 1088 | 1089 | * updated script tags and link tags ([10aa4c3](https://github.com/CoCreate-app/CoCreate-floating-label/commit/10aa4c3ea5b42b61d1a09434e0aca524dd968718)) 1090 | 1091 | ## [1.2.21](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.20...v1.2.21) (2021-11-20) 1092 | 1093 | 1094 | ### Bug Fixes 1095 | 1096 | * update dependencies ([178cafa](https://github.com/CoCreate-app/CoCreate-floating-label/commit/178cafa0b074a54153cd9a2f852ca14aaccb72d0)) 1097 | 1098 | ## [1.2.20](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.19...v1.2.20) (2021-11-19) 1099 | 1100 | 1101 | ### Bug Fixes 1102 | 1103 | * update dependencies ([b41842a](https://github.com/CoCreate-app/CoCreate-floating-label/commit/b41842a8f40096b9d16c9b045183dd45db0ddd91)) 1104 | 1105 | ## [1.2.19](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.18...v1.2.19) (2021-11-18) 1106 | 1107 | 1108 | ### Bug Fixes 1109 | 1110 | * update dependencies ([7555f6d](https://github.com/CoCreate-app/CoCreate-floating-label/commit/7555f6d4554026924c4c3f0fc154ada4c43f5c85)) 1111 | 1112 | ## [1.2.18](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.17...v1.2.18) (2021-11-16) 1113 | 1114 | 1115 | ### Bug Fixes 1116 | 1117 | * update dependencies ([89a52f9](https://github.com/CoCreate-app/CoCreate-floating-label/commit/89a52f9add21d1c8c8615b6ff22600ea89734214)) 1118 | 1119 | ## [1.2.17](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.16...v1.2.17) (2021-11-15) 1120 | 1121 | 1122 | ### Bug Fixes 1123 | 1124 | * update dependencies ([f6f66c5](https://github.com/CoCreate-app/CoCreate-floating-label/commit/f6f66c5544f1d6161232a2eb49f9ae61d79ddfc8)) 1125 | 1126 | ## [1.2.16](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.15...v1.2.16) (2021-11-11) 1127 | 1128 | 1129 | ### Bug Fixes 1130 | 1131 | * update readme ([d02b7bf](https://github.com/CoCreate-app/CoCreate-floating-label/commit/d02b7bf0e1771fb8bb910b8b45ef27b81c67cfb9)) 1132 | 1133 | ## [1.2.15](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.14...v1.2.15) (2021-11-07) 1134 | 1135 | 1136 | ### Bug Fixes 1137 | 1138 | * add init() directly above export default to fix bug in firefox ([35d7281](https://github.com/CoCreate-app/CoCreate-floating-label/commit/35d72810e397f99b730b1de7238456e4a83e1960)) 1139 | 1140 | ## [1.2.14](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.13...v1.2.14) (2021-11-06) 1141 | 1142 | 1143 | ### Bug Fixes 1144 | 1145 | * update dependencies ([d59a813](https://github.com/CoCreate-app/CoCreate-floating-label/commit/d59a813471a2c1b3263b6124a8b34d6e95df70b9)) 1146 | 1147 | ## [1.2.13](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.12...v1.2.13) (2021-11-04) 1148 | 1149 | 1150 | ### Bug Fixes 1151 | 1152 | * update dependencies ([be5400f](https://github.com/CoCreate-app/CoCreate-floating-label/commit/be5400f38180830827f66a1c9492e8862349a497)) 1153 | 1154 | ## [1.2.12](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.11...v1.2.12) (2021-11-04) 1155 | 1156 | 1157 | ### Bug Fixes 1158 | 1159 | * update packages ([309b7bf](https://github.com/CoCreate-app/CoCreate-floating-label/commit/309b7bf69c7b9cef291d462c0e04f4d073149738)) 1160 | 1161 | ## [1.2.11](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.10...v1.2.11) (2021-11-01) 1162 | 1163 | 1164 | ### Bug Fixes 1165 | 1166 | * update package dependencies ([2987d0d](https://github.com/CoCreate-app/CoCreate-floating-label/commit/2987d0d9821f883613487f4647e1c7cb456a2036)) 1167 | 1168 | ## [1.2.10](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.9...v1.2.10) (2021-10-29) 1169 | 1170 | 1171 | ### Bug Fixes 1172 | 1173 | * update dependencies ([1a3f3fa](https://github.com/CoCreate-app/CoCreate-floating-label/commit/1a3f3fadcdf343c6cc4fa250f87391d1d4e8da49)) 1174 | 1175 | ## [1.2.9](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.8...v1.2.9) (2021-10-17) 1176 | 1177 | 1178 | ### Bug Fixes 1179 | 1180 | * update dependendies ([aa18c71](https://github.com/CoCreate-app/CoCreate-floating-label/commit/aa18c717d3b15b8b79a4d8f1105fbde320115fb6)) 1181 | 1182 | ## [1.2.8](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.7...v1.2.8) (2021-10-16) 1183 | 1184 | 1185 | ### Bug Fixes 1186 | 1187 | * update socket package to fix bug in docs ([0976140](https://github.com/CoCreate-app/CoCreate-floating-label/commit/097614010c9ef565f75cce56323eb7e9b8bb6ebe)) 1188 | 1189 | ## [1.2.7](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.6...v1.2.7) (2021-10-15) 1190 | 1191 | 1192 | ### Bug Fixes 1193 | 1194 | * update dependencies ([8c587e1](https://github.com/CoCreate-app/CoCreate-floating-label/commit/8c587e1f805c4d8ddb415f744e5c1d51428fbf69)) 1195 | * update dependencies ([2d1ee3c](https://github.com/CoCreate-app/CoCreate-floating-label/commit/2d1ee3cbc4a02b7f0be7dc2dca3db107bdb58d08)) 1196 | 1197 | ## [1.2.6](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.5...v1.2.6) (2021-10-15) 1198 | 1199 | 1200 | ### Bug Fixes 1201 | 1202 | * update packages ([7db8836](https://github.com/CoCreate-app/CoCreate-floating-label/commit/7db8836e89508aad4ee5814615dcb186815d3b36)) 1203 | 1204 | ## [1.2.5](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.4...v1.2.5) (2021-10-15) 1205 | 1206 | 1207 | ### Bug Fixes 1208 | 1209 | * moved mini-css-extract-plugin to devDependencies ([9c53b45](https://github.com/CoCreate-app/CoCreate-floating-label/commit/9c53b4531cc3ad493788ce8fcae5e4f3f91cf82e)) 1210 | * updated dependencies ([b021f64](https://github.com/CoCreate-app/CoCreate-floating-label/commit/b021f649fa4019e5e618ac708d17f6c46fb48235)) 1211 | 1212 | ## [1.2.4](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.3...v1.2.4) (2021-10-13) 1213 | 1214 | 1215 | ### Bug Fixes 1216 | 1217 | * missing mini-css-extract-plugin ([e618aec](https://github.com/CoCreate-app/CoCreate-floating-label/commit/e618aec88574355f74ce0a3fcb5ca77943236bbf)) 1218 | 1219 | ## [1.2.3](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.2...v1.2.3) (2021-10-13) 1220 | 1221 | 1222 | ### Bug Fixes 1223 | 1224 | * fixed bug that cause label not to float if data inserted in input programtically ([9aa500e](https://github.com/CoCreate-app/CoCreate-floating-label/commit/9aa500ed916219aa5e0dc2369c69e99552f28824)) 1225 | 1226 | ## [1.2.2](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.1...v1.2.2) (2021-10-13) 1227 | 1228 | 1229 | ### Bug Fixes 1230 | 1231 | * update descriptions ([92a2889](https://github.com/CoCreate-app/CoCreate-floating-label/commit/92a288924eed4e0b0141702945a54afd12d5d9d4)) 1232 | 1233 | ## [1.2.1](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.2.0...v1.2.1) (2021-10-13) 1234 | 1235 | 1236 | ### Bug Fixes 1237 | 1238 | * update packages ([0e69379](https://github.com/CoCreate-app/CoCreate-floating-label/commit/0e6937920058320455cb65c44d3debde8f3c8404)) 1239 | 1240 | # [1.2.0](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.28...v1.2.0) (2021-10-11) 1241 | 1242 | 1243 | ### Features 1244 | 1245 | * inherit border-color and color from outline ([a452fe2](https://github.com/CoCreate-app/CoCreate-floating-label/commit/a452fe2b4a8b18126243b70ebd29784c9f1f9483)) 1246 | 1247 | ## [1.1.28](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.27...v1.1.28) (2021-10-11) 1248 | 1249 | 1250 | ### Bug Fixes 1251 | 1252 | * listen to change event. input have value make active ([df711b6](https://github.com/CoCreate-app/CoCreate-floating-label/commit/df711b6cbd498544092c4988fdffd1bddc2ee245)) 1253 | 1254 | ## [1.1.27](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.26...v1.1.27) (2021-10-06) 1255 | 1256 | 1257 | ### Bug Fixes 1258 | 1259 | * update dependencies ([1980006](https://github.com/CoCreate-app/CoCreate-floating-label/commit/19800068125b4528485b81dd1f4b8a2b7b8b3346)) 1260 | 1261 | ## [1.1.26](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.25...v1.1.26) (2021-10-05) 1262 | 1263 | 1264 | ### Bug Fixes 1265 | 1266 | * update dependencies ([1aadf14](https://github.com/CoCreate-app/CoCreate-floating-label/commit/1aadf14080f084cca94b44b98862283b1d46a295)) 1267 | * website_id in CoCreate.config ([7e1ebc6](https://github.com/CoCreate-app/CoCreate-floating-label/commit/7e1ebc6ff4b6c5e5c995fac6bd935ecf107f8863)) 1268 | 1269 | ## [1.1.25](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.24...v1.1.25) (2021-10-04) 1270 | 1271 | 1272 | ### Bug Fixes 1273 | 1274 | * update dependencies ([cf6dcde](https://github.com/CoCreate-app/CoCreate-floating-label/commit/cf6dcde449e7efe12f9473c116cc9471db228d17)) 1275 | 1276 | ## [1.1.24](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.23...v1.1.24) (2021-10-04) 1277 | 1278 | 1279 | ### Bug Fixes 1280 | 1281 | * update dependencies ([e4aba65](https://github.com/CoCreate-app/CoCreate-floating-label/commit/e4aba655941cd5e69f00a7b75454f9e9c74c4991)) 1282 | 1283 | ## [1.1.23](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.22...v1.1.23) (2021-10-01) 1284 | 1285 | 1286 | ### Bug Fixes 1287 | 1288 | * update packages ([6b1766e](https://github.com/CoCreate-app/CoCreate-floating-label/commit/6b1766ecc21717f7d2f628eeb56a2a26a67370f4)) 1289 | 1290 | ## [1.1.22](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.21...v1.1.22) (2021-10-01) 1291 | 1292 | 1293 | ### Bug Fixes 1294 | 1295 | * update dependencies ([c1b1559](https://github.com/CoCreate-app/CoCreate-floating-label/commit/c1b15596d97fdc1b9c5a5affd55efed6f88bd1d3)) 1296 | 1297 | ## [1.1.21](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.20...v1.1.21) (2021-09-28) 1298 | 1299 | 1300 | ### Bug Fixes 1301 | 1302 | * update dependencies ([ca24174](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ca2417498bb8342474816d053b2597f9598f6e4b)) 1303 | 1304 | ## [1.1.20](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.19...v1.1.20) (2021-09-16) 1305 | 1306 | 1307 | ### Bug Fixes 1308 | 1309 | * update dependencies ([485898c](https://github.com/CoCreate-app/CoCreate-floating-label/commit/485898cd6d287a76c9654d90cfca7049a88f7985)) 1310 | 1311 | ## [1.1.19](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.18...v1.1.19) (2021-09-14) 1312 | 1313 | 1314 | ### Bug Fixes 1315 | 1316 | * add cocreate.app to domains ([0723cb9](https://github.com/CoCreate-app/CoCreate-floating-label/commit/0723cb91101f60d17725657fc8890fa06495172b)) 1317 | 1318 | ## [1.1.18](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.17...v1.1.18) (2021-09-13) 1319 | 1320 | 1321 | ### Bug Fixes 1322 | 1323 | * upgrade dependencies ([7664828](https://github.com/CoCreate-app/CoCreate-floating-label/commit/766482868cdb5a57a50c3e147bd10df940bc88ef)) 1324 | 1325 | ## [1.1.17](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.16...v1.1.17) (2021-09-12) 1326 | 1327 | 1328 | ### Bug Fixes 1329 | 1330 | * update sidenav to use resize and toggle ([0dfd5f3](https://github.com/CoCreate-app/CoCreate-floating-label/commit/0dfd5f303174da65b41e170d92e8ed6b2929fbfb)) 1331 | 1332 | ## [1.1.16](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.15...v1.1.16) (2021-09-09) 1333 | 1334 | 1335 | ### Bug Fixes 1336 | 1337 | * update dependency @cocreate/docs ([92a00c6](https://github.com/CoCreate-app/CoCreate-floating-label/commit/92a00c6091c1dee0e8061b12b74a81ebede32852)) 1338 | 1339 | ## [1.1.15](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.14...v1.1.15) (2021-09-09) 1340 | 1341 | 1342 | ### Bug Fixes 1343 | 1344 | * ci docs ([7536cd7](https://github.com/CoCreate-app/CoCreate-floating-label/commit/7536cd757775a098b76f4dd315ba33ee2dc72cc9)) 1345 | 1346 | ## [1.1.14](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.13...v1.1.14) (2021-09-09) 1347 | 1348 | 1349 | ### Bug Fixes 1350 | 1351 | * update dependencies ([da78e52](https://github.com/CoCreate-app/CoCreate-floating-label/commit/da78e5259bcb85c92947a529c25de301d9d11f84)) 1352 | 1353 | ## [1.1.13](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.12...v1.1.13) (2021-09-09) 1354 | 1355 | 1356 | ### Bug Fixes 1357 | 1358 | * CoCreate.config directory, path, name and public ([ddfefea](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ddfefea11f6b4428c2d212184a416e16cc8a6b98)) 1359 | 1360 | ## [1.1.12](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.11...v1.1.12) (2021-09-08) 1361 | 1362 | 1363 | ### Bug Fixes 1364 | 1365 | * update dependencies ([88e4942](https://github.com/CoCreate-app/CoCreate-floating-label/commit/88e494247e83b94d000137e9407834950aa425bf)) 1366 | 1367 | ## [1.1.11](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.10...v1.1.11) (2021-09-04) 1368 | 1369 | 1370 | ### Bug Fixes 1371 | 1372 | * update dependencies ([9288708](https://github.com/CoCreate-app/CoCreate-floating-label/commit/9288708e22def3e921cfa161d51ea6f41df9ccd3)) 1373 | 1374 | ## [1.1.10](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.9...v1.1.10) (2021-08-31) 1375 | 1376 | 1377 | ### Bug Fixes 1378 | 1379 | * update dependencies ([f05579b](https://github.com/CoCreate-app/CoCreate-floating-label/commit/f05579b67b9b093044a8404f3dacbe3ad5aec343)) 1380 | 1381 | ## [1.1.9](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.8...v1.1.9) (2021-08-27) 1382 | 1383 | 1384 | ### Bug Fixes 1385 | 1386 | * updaed dependencies ([53a225e](https://github.com/CoCreate-app/CoCreate-floating-label/commit/53a225e8baae9ccd58505b5ea93eac168f616c42)) 1387 | 1388 | ## [1.1.8](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.7...v1.1.8) (2021-08-23) 1389 | 1390 | 1391 | ### Bug Fixes 1392 | 1393 | * update package versions ([18bf40c](https://github.com/CoCreate-app/CoCreate-floating-label/commit/18bf40ca9851a21e15be9004849fda5d4eb7a430)) 1394 | 1395 | ## [1.1.7](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.6...v1.1.7) (2021-08-22) 1396 | 1397 | 1398 | ### Bug Fixes 1399 | 1400 | * removed data- from main-content, clone, filter-value_type ([ed09802](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ed098021ef5161344cb4e26020859af3d79e779d)) 1401 | 1402 | ## [1.1.6](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.5...v1.1.6) (2021-08-22) 1403 | 1404 | 1405 | ### Bug Fixes 1406 | 1407 | * bump package versions ([bb85383](https://github.com/CoCreate-app/CoCreate-floating-label/commit/bb853834408308bbdd5f484bfb7efbdbaa4b4913)) 1408 | 1409 | ## [1.1.5](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.4...v1.1.5) (2021-08-22) 1410 | 1411 | 1412 | ### Bug Fixes 1413 | 1414 | * bump package versions ([aeb3df7](https://github.com/CoCreate-app/CoCreate-floating-label/commit/aeb3df787db8f3067f8960d70553b10372baeeb4)) 1415 | 1416 | ## [1.1.4](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.3...v1.1.4) (2021-08-14) 1417 | 1418 | 1419 | ### Bug Fixes 1420 | 1421 | * update to docs ([23d3528](https://github.com/CoCreate-app/CoCreate-floating-label/commit/23d352830b2a07d83ff17b5b8ddf046ae9b1caf3)) 1422 | 1423 | ## [1.1.3](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.2...v1.1.3) (2021-08-10) 1424 | 1425 | 1426 | ### Bug Fixes 1427 | 1428 | * active attribute ([2a96a45](https://github.com/CoCreate-app/CoCreate-floating-label/commit/2a96a4572e03e6d353fe73749e0ca3016a0870ea)) 1429 | 1430 | ## [1.1.2](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.1...v1.1.2) (2021-08-02) 1431 | 1432 | 1433 | ### Bug Fixes 1434 | 1435 | * remove data- from attributes ([408a7d5](https://github.com/CoCreate-app/CoCreate-floating-label/commit/408a7d5cc4e116212e7053b6808d68dfc4498ece)) 1436 | * update data-fullscreen to fullscreen ([ad7e5d5](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ad7e5d58c7856c9fbd8a808400f77b837df30ffc)) 1437 | 1438 | ## [1.1.1](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.1.0...v1.1.1) (2021-07-28) 1439 | 1440 | 1441 | ### Bug Fixes 1442 | 1443 | * remove data- from fetch, pass and filter ([ef9ddf6](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ef9ddf6f9727c7fa49aa7c146b11a35a3cd65a9b)) 1444 | 1445 | # [1.1.0](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.25...v1.1.0) (2021-07-28) 1446 | 1447 | 1448 | ### Features 1449 | 1450 | * add new is{attribute} system and remove data- from attributtes ([6c8f5e5](https://github.com/CoCreate-app/CoCreate-floating-label/commit/6c8f5e54bf9071649f25a46b4451f01610254970)) 1451 | 1452 | ## [1.0.25](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.24...v1.0.25) (2021-07-17) 1453 | 1454 | 1455 | ### Bug Fixes 1456 | 1457 | * init and update demos scripts ([d99098e](https://github.com/CoCreate-app/CoCreate-floating-label/commit/d99098e494490a5ac935c150aa189baaeab917c4)) 1458 | * workflows ([500c5bc](https://github.com/CoCreate-app/CoCreate-floating-label/commit/500c5bc4f1179a566e11ab79f54400867bdac905)) 1459 | 1460 | ## [1.0.24](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.23...v1.0.24) (2021-07-14) 1461 | 1462 | 1463 | ### Bug Fixes 1464 | 1465 | * upgrade all packages ([91ea08d](https://github.com/CoCreate-app/CoCreate-floating-label/commit/91ea08de4b053ef300bca0135c4d59954b479927)) 1466 | 1467 | ## [1.0.23](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.22...v1.0.23) (2021-07-13) 1468 | 1469 | 1470 | ### Bug Fixes 1471 | 1472 | * add yarn lockfile to git ignore ([3c82613](https://github.com/CoCreate-app/CoCreate-floating-label/commit/3c82613cade5746b8f466eee07d0841c472e335e)) 1473 | * remove yarn.lock ([d394812](https://github.com/CoCreate-app/CoCreate-floating-label/commit/d3948126b0e2071d74f9b8c2265d9f56c999244b)) 1474 | 1475 | ## [1.0.22](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.21...v1.0.22) (2021-07-13) 1476 | 1477 | 1478 | ### Bug Fixes 1479 | 1480 | * active open css ([702c243](https://github.com/CoCreate-app/CoCreate-floating-label/commit/702c243b1ed8a8888c77426d30275dc698cf8405)) 1481 | 1482 | ## [1.0.21](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.20...v1.0.21) (2021-07-10) 1483 | 1484 | 1485 | ### Bug Fixes 1486 | 1487 | * gitignore all logs ([ff8f70a](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ff8f70a40b052462516cd885dd7e436bb0c24004)) 1488 | 1489 | ## [1.0.20](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.19...v1.0.20) (2021-06-30) 1490 | 1491 | 1492 | ### Bug Fixes 1493 | 1494 | * Update readme.md ([91a7e6f](https://github.com/CoCreate-app/CoCreate-floating-label/commit/91a7e6f9687c9d2337cfab4f93735a82b31ebe61)) 1495 | 1496 | ## [1.0.19](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.18...v1.0.19) (2021-06-30) 1497 | 1498 | 1499 | ### Bug Fixes 1500 | 1501 | * automated and manual workflows ([4e0765b](https://github.com/CoCreate-app/CoCreate-floating-label/commit/4e0765bd1c619144a166ea75224f800a955b82c2)) 1502 | 1503 | ## [1.0.18](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.17...v1.0.18) (2021-06-25) 1504 | 1505 | 1506 | ### Bug Fixes 1507 | 1508 | * latest version numbers applied to all cocreate packages ([ff23ec2](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ff23ec2aaae0a4cf661f2abb8dfe870d625123bf)) 1509 | 1510 | ## [1.0.17](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.16...v1.0.17) (2021-06-24) 1511 | 1512 | 1513 | ### Bug Fixes 1514 | 1515 | * package versioningto 1.0.0 ([709b800](https://github.com/CoCreate-app/CoCreate-floating-label/commit/709b800b30fc0608fcf772de4845305f4fca0a74)) 1516 | 1517 | ## [1.0.16](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.15...v1.0.16) (2021-06-24) 1518 | 1519 | 1520 | ### Bug Fixes 1521 | 1522 | * update all [@cocreate](https://github.com/cocreate) to use latest versions ([3f4baad](https://github.com/CoCreate-app/CoCreate-floating-label/commit/3f4baaddabe72cbb95bac47e85f2a8b1e3d5365d)) 1523 | 1524 | ## [1.0.15](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.14...v1.0.15) (2021-06-20) 1525 | 1526 | 1527 | ### Bug Fixes 1528 | 1529 | * new mutaionObserver init function ([ec9bf3c](https://github.com/CoCreate-app/CoCreate-floating-label/commit/ec9bf3c3bbaaaff3bb5f9608a0a6cee2f3203bf0)) 1530 | 1531 | ## [1.0.14](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.13...v1.0.14) (2021-06-16) 1532 | 1533 | 1534 | ### Bug Fixes 1535 | 1536 | * added header for seo ([e9b38c5](https://github.com/CoCreate-app/CoCreate-floating-label/commit/e9b38c5264274091fa6cd066f17f1ebe95e1fcd8)) 1537 | 1538 | ## [1.0.13](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.12...v1.0.13) (2021-06-06) 1539 | 1540 | 1541 | ### Bug Fixes 1542 | 1543 | * update packages, add uuid, add data-parse to demos ([3a9582f](https://github.com/CoCreate-app/CoCreate-floating-label/commit/3a9582fb088940d7b07a65becdf19d5541a43410)) 1544 | 1545 | ## [1.0.12](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.11...v1.0.12) (2021-05-08) 1546 | 1547 | 1548 | ### Bug Fixes 1549 | 1550 | * add css auto parse and save to docs. ([58fc92d](https://github.com/CoCreate-app/CoCreate-floating-label/commit/58fc92d77bb484fe3dca98a465f1a8471216c58f)) 1551 | 1552 | ## [1.0.11](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.10...v1.0.11) (2021-04-27) 1553 | 1554 | 1555 | ### Bug Fixes 1556 | 1557 | * add host in docs ([bb415b4](https://github.com/CoCreate-app/CoCreate-floating-label/commit/bb415b48b6d26d513563dcc31034f45c1388f198)) 1558 | 1559 | ## [1.0.10](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.9...v1.0.10) (2021-04-27) 1560 | 1561 | 1562 | ### Bug Fixes 1563 | 1564 | * Update to readme, demo, added cdn scripts ([c0ccbcd](https://github.com/CoCreate-app/CoCreate-floating-label/commit/c0ccbcdaa58c2fe88510b6c30aeb4752cb41fdf9)) 1565 | 1566 | ## [1.0.9](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.8...v1.0.9) (2021-04-26) 1567 | 1568 | 1569 | ### Bug Fixes 1570 | 1571 | * border color change when focus applied ([394d6ea](https://github.com/CoCreate-app/CoCreate-floating-label/commit/394d6eaf1878e62f0d25cb708594e0bd17a4e722)) 1572 | 1573 | ## [1.0.8](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.7...v1.0.8) (2021-04-26) 1574 | 1575 | 1576 | ### Bug Fixes 1577 | 1578 | * add outline below input and update css to support adding active to input, select, etc which will activate floating label ([d5a72c0](https://github.com/CoCreate-app/CoCreate-floating-label/commit/d5a72c049ec455bfb6449fda6b3d163b78ba5c98)) 1579 | 1580 | ## [1.0.7](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.6...v1.0.7) (2021-04-23) 1581 | 1582 | 1583 | ### Bug Fixes 1584 | 1585 | * readme and documentation. Removed securitykeys ([6134ed5](https://github.com/CoCreate-app/CoCreate-floating-label/commit/6134ed5897c7e781c52a92847b8bc9747f147de8)) 1586 | 1587 | ## [1.0.6](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.5...v1.0.6) (2021-04-19) 1588 | 1589 | 1590 | ### Bug Fixes 1591 | 1592 | * add missing packages ([6ca6445](https://github.com/CoCreate-app/CoCreate-floating-label/commit/6ca6445a3405003deee0b941c607318d7174fc23)) 1593 | 1594 | ## [1.0.5](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.4...v1.0.5) (2021-04-19) 1595 | 1596 | 1597 | ### Bug Fixes 1598 | 1599 | * testing ci ([b320a87](https://github.com/CoCreate-app/CoCreate-floating-label/commit/b320a87e6e56d3a65335b7968b406b271c35b8ae)) 1600 | 1601 | ## [1.0.4](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.3...v1.0.4) (2021-04-19) 1602 | 1603 | 1604 | ### Bug Fixes 1605 | 1606 | * ci and build process ([20f547c](https://github.com/CoCreate-app/CoCreate-floating-label/commit/20f547c5579c212f1da3a20aa0c9baf0a2531bbc)) 1607 | * remove duplicate css ([5ff788c](https://github.com/CoCreate-app/CoCreate-floating-label/commit/5ff788cb748a382fac4328da3407c0618fe157f9)) 1608 | * testing ci ([431c985](https://github.com/CoCreate-app/CoCreate-floating-label/commit/431c98532665dd72cffe742b8a7a7da79fc05277)) 1609 | * testing ci ([459a304](https://github.com/CoCreate-app/CoCreate-floating-label/commit/459a30422d07271b305e65fc21c246a6e4f2148c)) 1610 | 1611 | ## [1.0.3](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.2...v1.0.3) (2021-04-16) 1612 | 1613 | 1614 | ### Bug Fixes 1615 | 1616 | * Removed cocreate-select ([3418b27](https://github.com/CoCreate-app/CoCreate-floating-label/commit/3418b27f34a1f1e43639c410d12b3f074fd6feea)) 1617 | 1618 | ## [1.0.2](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.1...v1.0.2) (2021-03-31) 1619 | 1620 | 1621 | ### Bug Fixes 1622 | 1623 | * remove yarn.lock and package-lock.json ([e572a1f](https://github.com/CoCreate-app/CoCreate-floating-label/commit/e572a1f797144f7b5ac87ce8f4ac65a3a8a9defb)) 1624 | 1625 | ## [1.0.1](https://github.com/CoCreate-app/CoCreate-floating-label/compare/v1.0.0...v1.0.1) (2021-03-29) 1626 | 1627 | 1628 | ### Bug Fixes 1629 | 1630 | * Package Paths ([c716be9](https://github.com/CoCreate-app/CoCreate-floating-label/commit/c716be988d622c4b8486f559582af944dbfbc6a6)) 1631 | 1632 | # 1.0.0 (2021-03-29) 1633 | 1634 | 1635 | ### Features 1636 | 1637 | * Initial Release ([fa048a2](https://github.com/CoCreate-app/CoCreate-floating-label/commit/fa048a2a159aba305fe02394b2bf5b8f8b94272f)) 1638 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to CoCreate-floating-label 2 | 3 | This project is work of [many contributors](https://github.com/CoCreate-app/CoCreate-floating-label/graphs/contributors). 4 | You're encouraged to submit [pull requests](https://github.com/CoCreate-app/CoCreate-floating-label/pulls), 5 | [propose features and discuss issues](https://github.com/CoCreate-app/CoCreate-floating-label/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-floating-label) and check out your copy. 12 | 13 | ``` 14 | git floating-label https://github.com/contributor/CoCreate-floating-label.git 15 | cd CoCreate-floating-label 16 | git remote add upstream https://github.com/CoCreate-app/CoCreate-floating-label.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-floating-label](https://github.com/CoCreate-app/CoCreate-floating-label) 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": "601f41106b402c72efc07e05", 10 | "name": "index.html", 11 | "path": "/docs/floating-label", 12 | "pathname": "/docs/floating-label/index.html", 13 | "src": "{{./docs/index.html}}", 14 | "host": [ 15 | "*" 16 | ], 17 | "directory": "floating-label", 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-floating-label 2 | 3 | A floating label design for inputs, textarea, select and any custom component. Creates beautiful form labels that float over form fields. Add class floating-label to see the magic. Easily configured using HTML5 attributes and/or JavaScript API. Take it for a spin in our [playground!](https://cocreate.app/docs/floating-label) 4 | 5 | ![minified](https://img.badgesize.io/https://cdn.cocreate.app/floating-label/latest/CoCreate-floating-label.min.js?style=flat-square&label=minified&color=orange) 6 | ![gzip](https://img.badgesize.io/https://cdn.cocreate.app/floating-label/latest/CoCreate-floating-label.min.js?compression=gzip&style=flat-square&label=gzip&color=yellow) 7 | ![brotli](https://img.badgesize.io/https://cdn.cocreate.app/floating-label/latest/CoCreate-floating-label.min.js?compression=brotli&style=flat-square&label=brotli) 8 | ![GitHub latest release](https://img.shields.io/github/v/release/CoCreate-app/CoCreate-floating-label?style=flat-square) 9 | ![License](https://img.shields.io/github/license/CoCreate-app/CoCreate-floating-label?style=flat-square) 10 | ![Hiring](https://img.shields.io/static/v1?style=flat-square&label=&message=Hiring&color=blueviolet) 11 | 12 | ![CoCreate-floating-label](https://cdn.cocreate.app/docs/CoCreate-floating-label.gif) 13 | 14 | ## [Docs & Demo](https://cocreate.app/docs/floating-label) 15 | 16 | For a complete guide and working demo refer to the [doumentation](https://cocreate.app/docs/floating-label) 17 | 18 | ## CDN 19 | 20 | ```html 21 | 22 | ``` 23 | 24 | ```html 25 | 26 | ``` 27 | 28 | ## NPM 29 | 30 | ```shell 31 | $ npm i @cocreate/floating-label 32 | ``` 33 | 34 | ## yarn 35 | 36 | ```shell 37 | $ yarn install @cocreate/floating-label 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-floating-label/blob/master/CHANGELOG.md) and [releases](https://github.com/CoCreate-app/CoCreate-floating-label/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-floating-label/issues) and [pull requests](https://github.com/CoCreate-app/CoCreate-floating-label/pulls). We would love to hear your feedback. 60 | 61 | 62 | 63 | # About 64 | 65 | CoCreate-floating-label 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-floating-label 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-floating-label/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-floating-label/issues) and [pull requests](https://github.com/CoCreate-app/CoCreate-floating-label/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-floating-label/blob/master/LICENSE) 86 | -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Floating Labels | CoCreateJS 5 | 6 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 25 | 26 | 27 | 34 | 35 | 42 | 43 | 50 | 51 | 58 | 59 | 66 | 67 | 74 | 75 | 86 | 87 | 97 | 98 | 102 |
103 | 104 | 105 | 106 | 107 | 108 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 10 | 13 | 14 | 17 | 18 | CoCreate-floating-label Documentation | CoCreateJS 19 | 20 | 25 | 26 | 34 | 35 | 36 | 37 | 38 | 39 | 47 | 54 | 58 |
59 |
60 |
64 |
66 |
67 |

CoCreate-floating-label

68 |
69 |
71 |
81 | 101 | 107 |
108 | 114 |
115 | 121 |
122 | 123 |

124 | A floating label design for inputs, textarea, select and any 125 | custom component. Creates beautiful form labels that float over 126 | form fields. Add class floating-label to see the magic. Easily 127 | configured using HTML5 attributes and/or JavaScript API. 128 |

129 |
132 |
134 |
140 | 144 |

Install

145 | 150 |
151 |
152 |
npm i @cocreate/floating-label
153 |

154 | Or you can use cdn link: 155 |

156 |
<script>https://cdn.cocreate.app/floating-label/latest/CoCreate-floating-label.min.js</script>
157 | 158 |
164 | 168 |

Usage

169 | 174 |
175 |
176 |
177 |

178 | This is floating-label usage 179 |

180 | 181 |
182 |
<div></div>
183 |
184 |

185 | This is floating-label usage 186 |

187 |

188 | This is floating-label usage 189 |

190 |
191 | 192 |
193 |

194 | You only need to add "floating-label" into class 195 | list to use cocreate-floating-label. 196 |

197 | 198 |
199 |
200 |                         
201 |                         <input type="text" 
202 |                                 array="module_activities" 
203 |                                 object="5edda7608d5c7a7d656edecd" 
204 |                                 key="text" 
205 |                                 placeholder="Text" 
206 |                                 class="floating-label">
207 |                         
208 |                             
209 |
210 |

211 | This is xxxxx usage 212 |

213 |

214 | This is xxxxx usage 215 |

216 |
217 | 218 |
224 | 228 |

Attributes

229 | 234 |
235 |
236 |
    237 |
  • 239 |

    240 | floating-label 241 | string 244 | optional 247 |

    248 |

    floating-label-attribute

    249 |
  • 250 |
  • 252 |

    253 | floating-label 254 | string 257 | optional 260 |

    261 |

    floating-label-attribute

    262 |
  • 263 |
264 |
265 | 266 |
268 | 269 |
275 | 279 |

Demo

280 | 285 |
286 |
287 |
289 | 290 |
293 |
297 | 306 |
309 |
310 | 311 |
314 |
315 |
316 | 317 |
319 | 330 | 340 | 347 | 357 | 361 |
362 |
363 | 364 |
365 |
366 |
367 | 373 |
374 | 375 | 376 | 377 | 378 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@cocreate/floating-label", 3 | "version": "1.16.2", 4 | "description": "A floating label design for inputs, textarea, select and any custom component. Creates beautiful form labels that float over form fields. Add class floating-label to see the magic. Easily configured using HTML5 attributes and/or JavaScript API.", 5 | "keywords": [ 6 | "floating-label", 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-floating-label.git" 35 | }, 36 | "author": "CoCreate LLC", 37 | "license": "MIT", 38 | "bugs": { 39 | "url": "https://github.com/CoCreate-app/CoCreate-floating-label/issues" 40 | }, 41 | "homepage": "https://cocreate.app/docs/floating-label", 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": "^2.4.2", 52 | "webpack": "^5.24.4", 53 | "webpack-cli": "^4.5.0", 54 | "webpack-log": "^3.0.1" 55 | }, 56 | "dependencies": { 57 | "@cocreate/observer": "^1.18.1" 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /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 | floating-label, 2 | .floating-label_field { 3 | position: relative; 4 | display: flex; 5 | align-items: center; 6 | box-sizing: border-box; 7 | border: none !important; 8 | min-height: 40px; 9 | padding: 8px 0px; 10 | } 11 | 12 | /* floating-label:not(.floating-label_field) { 13 | border-width: 1px; 14 | border-style: solid; 15 | border-radius: 4px 4px 4px 4px; 16 | border-color: rgba(0, 0, 0, 0.24) 17 | } */ 18 | 19 | floating-label *, 20 | .floating-label_field * { 21 | box-sizing: border-box; 22 | } 23 | 24 | .floating-label { 25 | width: 100%; 26 | min-height: 24px; 27 | padding: 0px 14px; 28 | border: none !important; 29 | outline: none !important; 30 | background-color: transparent; 31 | font-size: 16px; 32 | line-height: 1.5; 33 | color: inherit; 34 | /*color: rgba(0, 0, 0, 0.87);*/ 35 | /*z-index: 5;*/ 36 | } 37 | 38 | .floating-label[contenteditable] { 39 | display: block; 40 | } 41 | 42 | .floating-label::placeholder { 43 | color: inherit; 44 | } 45 | 46 | .floating-label.active::placeholder { 47 | opacity: 0; 48 | } 49 | 50 | cocreate-select.floating-label { 51 | /* min-height: 24px; */ 52 | padding: 0px 2px !important; 53 | } 54 | cocreate-select[multiple].floating-label { 55 | padding: 2px 2px 8px 2px !important; 56 | } 57 | 58 | input.floating-label[type="date"], 59 | input.floating-label[type="time"], 60 | input.floating-label[type="datetime-local"], 61 | input.floating-label[type="week"], 62 | input.floating-label[type="month"], 63 | select.floating-label { 64 | color: transparent; 65 | } 66 | input.floating-label.active[type="date"], 67 | input.floating-label.active[type="time"], 68 | input.floating-label.active[type="datetime-local"], 69 | input.floating-label.active[type="week"], 70 | input.floating-label.active[type="month"], 71 | select.floating-label.active { 72 | color: inherit; 73 | } 74 | .floating-label:has(input[type="color"]), 75 | .floating-label_field:has(input[type="color"]) { 76 | padding: 0px; 77 | } 78 | 79 | /* textarea.floating-label { 80 | padding: 8px 14px; 81 | } */ 82 | select.floating-label[multiple] { 83 | height: auto; 84 | /* padding: 8px 14px; */ 85 | } 86 | .floating-label[type="file"] { 87 | cursor: pointer; 88 | } 89 | 90 | .floating-label_outline { 91 | display: flex; 92 | position: absolute; 93 | top: 0; 94 | width: 100%; 95 | max-width: 100%; 96 | height: 100%; 97 | text-align: left; 98 | pointer-events: none; 99 | border-color: inherit; 100 | } 101 | 102 | .floating-label_leading, 103 | .floating-label_notch, 104 | .floating-label_trailing { 105 | border-color: inherit; 106 | border-width: 1px; 107 | border-style: solid; 108 | } 109 | 110 | .floating-label_leading { 111 | border-radius: 4px 0 0 4px; 112 | border-right: none; 113 | width: 12px; 114 | } 115 | 116 | .floating-label_notch { 117 | flex: 0 1 auto; 118 | border-right: none; 119 | border-left: none; 120 | } 121 | 122 | .floating-label_trailing { 123 | flex-grow: 1; 124 | border-radius: 0 4px 4px 0; 125 | border-left: none; 126 | } 127 | 128 | .floating-label_label { 129 | display: inline-block; 130 | position: relative; 131 | top: 11px; 132 | bottom: auto; 133 | margin-bottom: 0px !important; 134 | left: 4px; 135 | max-width: 100%; 136 | color: inherit; 137 | transform-origin: left top; 138 | transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), 139 | color 0.15s cubic-bezier(0.4, 0, 0.2, 1); 140 | will-change: transform; 141 | } 142 | 143 | input.floating-label ~ .floating-label_outline .floating-label_label, 144 | textarea.floating-label ~ .floating-label_outline .floating-label_label { 145 | opacity: 0; 146 | } 147 | 148 | .floating-label:hover ~ .floating-label_outline { 149 | border-color: inherit; 150 | } 151 | 152 | floating-label .open ~ .floating-label_outline .floating-label_leading, 153 | floating-label .open ~ .floating-label_outline .floating-label_notch, 154 | floating-label .open ~ .floating-label_outline .floating-label_trailing, 155 | .floating-label_field .open ~ .floating-label_outline .floating-label_leading, 156 | .floating-label_field .open ~ .floating-label_outline .floating-label_notch, 157 | .floating-label_field .open ~ .floating-label_outline .floating-label_trailing, 158 | .floating-label:focus ~ .floating-label_outline .floating-label_leading, 159 | .floating-label:focus ~ .floating-label_outline .floating-label_notch, 160 | .floating-label:focus ~ .floating-label_outline .floating-label_trailing, 161 | input:-webkit-autofill + .floating-label_outline .floating-label_leading, 162 | input:-webkit-autofill + .floating-label_outline .floating-label_notch, 163 | input:-webkit-autofill + .floating-label_outline .floating-label_trailing { 164 | border-color: inherit; 165 | border-width: 2px; 166 | } 167 | 168 | floating-label [active] ~ .floating-label_outline .floating-label_notch, 169 | floating-label .active ~ .floating-label_outline .floating-label_notch, 170 | floating-label .open ~ .floating-label_outline .floating-label_notch, 171 | floating-label:not(:empty) ~ .floating-label_outline .floating-label_label, 172 | .floating-label_field [active] ~ .floating-label_outline .floating-label_notch, 173 | .floating-label_field .active ~ .floating-label_outline .floating-label_notch, 174 | .floating-label_field .open ~ .floating-label_outline .floating-label_notch, 175 | .floating-label_field:not(:empty) ~ .floating-label_outline .floating-label_label, 176 | input.floating-label:not(:placeholder-shown) ~ .floating-label_outline .floating-label_notch, 177 | textarea.floating-label:not(:placeholder-shown) ~ .floating-label_outline .floating-label_notch, 178 | /*.floating-label:valid ~ .floating-label_outline .floating-label_notch,*/ 179 | .floating-label:focus ~ .floating-label_outline .floating-label_notch, 180 | input:-webkit-autofill + .floating-label_outline .floating-label_notch { 181 | border-top: none; 182 | } 183 | 184 | floating-label [active] ~ .floating-label_outline .floating-label_label, 185 | floating-label .active ~ .floating-label_outline .floating-label_label, 186 | floating-label .open ~ .floating-label_outline .floating-label_label, 187 | floating-label:not(:empty) ~ .floating-label_outline .floating-label_label, 188 | .floating-label_field [active] ~ .floating-label_outline .floating-label_label, 189 | .floating-label_field .active ~ .floating-label_outline .floating-label_label, 190 | .floating-label_field .open ~ .floating-label_outline .floating-label_label, 191 | .floating-label_field:not(:empty) ~ .floating-label_outline .floating-label_label, 192 | input.floating-label:not(:placeholder-shown) ~ .floating-label_outline .floating-label_label, 193 | textarea.floating-label:not(:placeholder-shown) ~ .floating-label_outline .floating-label_label, 194 | /*.floating-label:valid ~ .floating-label_outline .floating-label_label,*/ 195 | .floating-label:focus ~ .floating-label_outline .floating-label_label, 196 | input:-webkit-autofill + .floating-label_outline .floating-label_label { 197 | color: inherit; 198 | transform: translateY(-17px) scale(0.75); 199 | opacity: 1; 200 | } 201 | 202 | :-webkit-autofill { 203 | box-shadow: 0 0 0px 1000px transparent inset; 204 | background-color: transparent; 205 | color: inherit; 206 | transition: background-color 5000s ease-in-out 0s; 207 | -webkit-text-fill-color: inherit; 208 | } 209 | 210 | /* Firefox */ 211 | :autofill { 212 | background-color: transparent; 213 | color: inherit; 214 | border: 1px solid transparent; 215 | } 216 | 217 | @media (prefers-color-scheme: dark) { 218 | :-webkit-autofill { 219 | -webkit-text-fill-color: #fff; 220 | color: #fff; 221 | } 222 | 223 | /* Firefox */ 224 | :autofill { 225 | -webkit-text-fill-color: #fff; 226 | color: #fff; 227 | } 228 | option { 229 | background-color: #222; 230 | color: #fff; 231 | } 232 | } 233 | 234 | floating-label 235 | [validation="true"] 236 | ~ .floating-label_outline 237 | .floating-label_leading, 238 | floating-label 239 | [validation="true"] 240 | ~ .floating-label_outline 241 | .floating-label_notch, 242 | floating-label 243 | [validation="true"] 244 | ~ .floating-label_outline 245 | .floating-label_trailing, 246 | .floating-label_field 247 | [validation="true"] 248 | ~ .floating-label_outline 249 | .floating-label_leading, 250 | .floating-label_field 251 | [validation="true"] 252 | ~ .floating-label_outline 253 | .floating-label_notch, 254 | .floating-label_field 255 | [validation="true"] 256 | ~ .floating-label_outline 257 | .floating-label_trailing, 258 | floating-label 259 | [unique="true"] 260 | ~ .floating-label_outline 261 | .floating-label_leading, 262 | floating-label [unique="true"] ~ .floating-label_outline .floating-label_notch, 263 | floating-label 264 | [unique="true"] 265 | ~ .floating-label_outline 266 | .floating-label_trailing, 267 | .floating-label_field 268 | [unique="true"] 269 | ~ .floating-label_outline 270 | .floating-label_leading, 271 | .floating-label_field 272 | [unique="true"] 273 | ~ .floating-label_outline 274 | .floating-label_notch, 275 | .floating-label_field 276 | [unique="true"] 277 | ~ .floating-label_outline 278 | .floating-label_trailing { 279 | border-color: green; 280 | } 281 | 282 | floating-label 283 | [validation="false"] 284 | ~ .floating-label_outline 285 | .floating-label_leading, 286 | floating-label 287 | [validation="false"] 288 | ~ .floating-label_outline 289 | .floating-label_notch, 290 | floating-label 291 | [validation="false"] 292 | ~ .floating-label_outline 293 | .floating-label_trailing, 294 | .floating-label_field 295 | [validation="false"] 296 | ~ .floating-label_outline 297 | .floating-label_leading, 298 | .floating-label_field 299 | [validation="false"] 300 | ~ .floating-label_outline 301 | .floating-label_notch, 302 | .floating-label_field 303 | [validation="false"] 304 | ~ .floating-label_outline 305 | .floating-label_trailing, 306 | floating-label 307 | [unique="false"] 308 | ~ .floating-label_outline 309 | .floating-label_leading, 310 | floating-label [unique="false"] ~ .floating-label_outline .floating-label_notch, 311 | floating-label 312 | [unique="false"] 313 | ~ .floating-label_outline 314 | .floating-label_trailing, 315 | .floating-label_field 316 | [unique="false"] 317 | ~ .floating-label_outline 318 | .floating-label_leading, 319 | .floating-label_field 320 | [unique="false"] 321 | ~ .floating-label_outline 322 | .floating-label_notch, 323 | .floating-label_field 324 | [unique="false"] 325 | ~ .floating-label_outline 326 | .floating-label_trailing { 327 | border-color: red; 328 | } 329 | 330 | @keyframes shake { 331 | 33.33% { 332 | transform: translate3d(8px, -21px, 0) scale(0.75); 333 | } 334 | 66.33% { 335 | transform: translate3d(-2px, -21px, 0) scale(0.75); 336 | } 337 | 100% { 338 | transform: translate3d(0, -21px, 0) scale(0.75); 339 | } 340 | } 341 | 342 | textarea.floating-label::-webkit-scrollbar { 343 | width: 10px; 344 | } 345 | 346 | textarea.floating-label::-webkit-scrollbar-track { 347 | background: rgba(0, 0, 0, 0.04); 348 | } 349 | 350 | textarea.floating-label::-webkit-scrollbar-thumb { 351 | background: rgba(0, 0, 0, 0.1); 352 | } 353 | 354 | textarea.floating-label.scroll::-webkit-scrollbar-thumb { 355 | background: #f13b48; 356 | } 357 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import observer from "@cocreate/observer"; 2 | import "./index.css"; 3 | 4 | const CoCreateFloatingLabel = { 5 | className: "floating-label_field", 6 | initMap: new Map(), 7 | 8 | init: function (elements) { 9 | if (!elements) 10 | elements = document.querySelectorAll( 11 | ".floating-label, floating-label" 12 | ); 13 | else if (!Array.isArray(elements)) elements = [elements]; 14 | 15 | for (let node of elements) { 16 | if (node.tagName == "FLOATING-LABEL") { 17 | node = 18 | node.querySelector(".floating-label") || 19 | node.firstElementChild; 20 | if (!node.classList.contains("floating-label")) 21 | node.classList.add("floating-label"); 22 | } 23 | 24 | if (this.initMap.has(node)) continue; 25 | 26 | this.initMap.set(node, true); 27 | 28 | this.__initEvents(node); 29 | if ( 30 | node.parentNode && 31 | !node.parentNode.classList.contains(this.className) 32 | ) { 33 | this.__wrap(node); 34 | this.update(node); 35 | } 36 | } 37 | }, 38 | 39 | update: function (node, value) { 40 | if ( 41 | node.classList.contains("floating-label") && 42 | node.parentNode.classList.contains("floating-label_field") 43 | ) { 44 | const active = node.hasAttribute("active"); 45 | if (node.value || node.innerHTML || value || active) { 46 | node.classList.add("active"); 47 | } else { 48 | node.classList.remove("active"); 49 | } 50 | } 51 | }, 52 | 53 | __wrap: function (el) { 54 | const placeholder = el.getAttribute("placeholder"); 55 | let wrapper = el.parentNode; 56 | if (wrapper.tagName != "FLOATING-LABEL") { 57 | wrapper = document.createElement("div"); 58 | el.parentNode.insertBefore(wrapper, el); 59 | wrapper.appendChild(el); 60 | } 61 | // el.setAttribute("placeholder", " "); 62 | 63 | const outline = document.createElement("div"); 64 | outline.className = "floating-label_outline"; 65 | const leading = document.createElement("div"); 66 | leading.className = "floating-label_leading"; 67 | const notch = document.createElement("div"); 68 | notch.className = "floating-label_notch"; 69 | const trailing = document.createElement("div"); 70 | trailing.className = "floating-label_trailing"; 71 | const label = document.createElement("label"); 72 | label.className = "floating-label_label"; 73 | label.innerHTML = placeholder; 74 | 75 | outline.appendChild(leading); 76 | outline.appendChild(notch); 77 | outline.appendChild(trailing); 78 | notch.appendChild(label); 79 | 80 | wrapper.appendChild(outline); 81 | wrapper.classList.add(this.className); 82 | }, 83 | 84 | __initEvents: function (node) { 85 | node.addEventListener("focus", () => { 86 | node.classList.add("active"); 87 | }); 88 | 89 | node.addEventListener("blur", () => { 90 | const active = node.hasAttribute("active"); 91 | if (node.value == "" && !active) { 92 | node.classList.remove("active"); 93 | } 94 | }); 95 | 96 | node.addEventListener("change", () => { 97 | const active = node.hasAttribute("active"); 98 | if (node.value && !active) { 99 | node.classList.add("active"); 100 | } 101 | }); 102 | 103 | if (node.hasAttribute("contenteditable")) { 104 | node.addEventListener("input", () => { 105 | const active = node.hasAttribute("active"); 106 | if (node.innerHTML && !active) { 107 | node.classList.add("active"); 108 | } 109 | }); 110 | } 111 | } 112 | }; 113 | 114 | observer.init({ 115 | name: "CoCreateFloatingLabelInit", 116 | types: ["addedNodes"], 117 | selector: "floating-label, .floating-label", 118 | callback: (mutation) => { 119 | CoCreateFloatingLabel.init(mutation.target); 120 | } 121 | }); 122 | 123 | observer.init({ 124 | name: "CoCreateFloatingLabelInit", 125 | types: ["attributes"], 126 | attributeFilter: ["placeholder"], 127 | selector: ".floating-label", 128 | callback: (mutation) => { 129 | let value = mutation.target.getAttribute("placeholder"); 130 | let floatinglabel = mutation.target.parentElement; 131 | let label = floatinglabel.querySelector(".floating-label_label"); 132 | label.innerText = value; 133 | } 134 | }); 135 | 136 | CoCreateFloatingLabel.init(); 137 | 138 | export default CoCreateFloatingLabel; 139 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require("path"); 2 | const MiniCssExtractPlugin = require("mini-css-extract-plugin"); 3 | const { EsbuildPlugin } = require("esbuild-loader"); 4 | const { FileUploader } = require("@cocreate/webpack"); 5 | 6 | module.exports = async (env, argv) => { 7 | const isProduction = argv && argv.mode === "production"; 8 | const config = { 9 | entry: { 10 | "CoCreate-floating-label": "./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", "floatingLabel"], 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 | --------------------------------------------------------------------------------