diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
index 4af9f46..f61dfea 100644
--- a/.github/FUNDING.yml
+++ b/.github/FUNDING.yml
@@ -1,3 +1,3 @@
-# These are supported funding model platforms
-
-github: CoCreate-app
+# These are supported funding model platforms
+
+github: CoCreate-app
diff --git a/.github/workflows/automated.yml b/.github/workflows/automated.yml
index 81d9483..c8ea0ff 100644
--- a/.github/workflows/automated.yml
+++ b/.github/workflows/automated.yml
@@ -1,5 +1,5 @@
-name: Automated
-"on":
+name: Automated Workflow
+on:
push:
branches:
- master
@@ -8,7 +8,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
+ - name: Setup Node.js
+ uses: actions/setup-node@v3
+ with:
+ node-version: 16
- name: Jaid/action-sync-node-meta
uses: jaid/action-sync-node-meta@v1.4.0
with:
@@ -18,9 +22,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
+ - name: Setup Node.js
+ uses: actions/setup-node@v3
+ with:
+ node-version: 14
- name: Semantic Release
- uses: cycjimmy/semantic-release-action@v2
+ uses: cycjimmy/semantic-release-action@v3
id: semantic
with:
extra_plugins: |
@@ -28,56 +36,9 @@ jobs:
@semantic-release/git
@semantic-release/github
env:
- GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
+ GITHUB_TOKEN: "${{ secrets.GITHUB }}"
NPM_TOKEN: "${{ secrets.NPM_TOKEN }}"
outputs:
new_release_published: "${{ steps.semantic.outputs.new_release_published }}"
new_release_version: "${{ steps.semantic.outputs.new_release_version }}"
- cdn:
- runs-on: ubuntu-latest
- needs: release
- if: needs.release.outputs.new_release_published == 'true'
- env:
- VERSION: "${{ needs.release.outputs.new_release_version }}"
- steps:
- - name: Checkout
- uses: actions/checkout@v2
- - name: setup nodejs
- uses: actions/setup-node@v2
- with:
- node-version: 14.15.4
- - name: yarn install
- run: >
- echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >
- .npmrc
-
- yarn install
- - name: yarn build
- run: yarn build
- - name: upload bundle as version
- uses: CoCreate-app/CoCreate-s3@master
- with:
- aws-key-id: "${{ secrets.AWSACCESSKEYID }}"
- aws-access-key: "${{ secrets.AWSSECERTACCESSKEY }}"
- bucket: testcrudbucket
- source: ./dist
- destination: "/css-parser/${{env.VERSION}}"
- acl: public-read
- - name: upload bundle as latest
- uses: CoCreate-app/CoCreate-s3@master
- with:
- aws-key-id: "${{ secrets.AWSACCESSKEYID }}"
- aws-access-key: "${{ secrets.AWSSECERTACCESSKEY }}"
- bucket: testcrudbucket
- source: ./dist
- destination: /css-parser/latest
- acl: public-read
- invalidations: true
- docs:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout
- uses: actions/checkout@v2
- - name: update documentation
- uses: CoCreate-app/CoCreate-docs@master
diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml
index 5a96888..5238b65 100644
--- a/.github/workflows/manual.yml
+++ b/.github/workflows/manual.yml
@@ -1,44 +1,44 @@
-name: Manual Workflow
-on:
- workflow_dispatch:
- inputs:
- invalidations:
- description: |
- If set to 'true', invalidates previous upload.
- default: "true"
- required: true
-
-jobs:
- cdn:
- runs-on: ubuntu-latest
- env:
- DRY_RUN: ${{ github.event.inputs.dry_run }}
- GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- NPM_TOKEN: "${{ secrets.NPM_TOKEN }}"
-
- steps:
- - name: Checkout
- uses: actions/checkout@v2
- - name: setup nodejs
- uses: actions/setup-node@v2
- with:
- node-version: 14.15.4
- - name: yarn install
- run: >
- echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >
- .npmrc
-
- yarn install
- - name: yarn build
- run: yarn build
- - name: upload latest bundle
- uses: CoCreate-app/CoCreate-s3@master
- with:
- aws-key-id: "${{ secrets.AWSACCESSKEYID }}"
- aws-access-key: "${{ secrets.AWSSECERTACCESSKEY }}"
- distributionId: "${{ secrets.DISTRIBUTION_ID }}"
- bucket: testcrudbucket
- source: ./dist
- destination: /css-parser/latest
- acl: public-read
- invalidations: ${{ github.event.inputs.invalidations }}
+name: Manual Workflow
+on:
+ workflow_dispatch:
+ inputs:
+ invalidations:
+ description: |
+ If set to 'true', invalidates previous upload.
+ default: "true"
+ required: true
+
+jobs:
+ cdn:
+ runs-on: ubuntu-latest
+ env:
+ DRY_RUN: ${{ github.event.inputs.dry_run }}
+ GITHUB_TOKEN: "${{ secrets.GITHUB }}"
+ NPM_TOKEN: "${{ secrets.NPM_TOKEN }}"
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: setup nodejs
+ uses: actions/setup-node@v3
+ with:
+ node-version: 16
+ - name: yarn install
+ run: >
+ echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >
+ .npmrc
+
+ yarn install
+ - name: yarn build
+ run: yarn build
+ - name: upload latest bundle
+ uses: CoCreate-app/CoCreate-s3@master
+ with:
+ aws-key-id: "${{ secrets.AWSACCESSKEYID }}"
+ aws-access-key: "${{ secrets.AWSSECERTACCESSKEY }}"
+ distributionId: "${{ secrets.DISTRIBUTION_ID }}"
+ bucket: testcrudbucket
+ source: ./dist
+ destination: /css-parser/latest
+ acl: public-read
+ invalidations: ${{ github.event.inputs.invalidations }}
diff --git a/.gitignore b/.gitignore
index 97ec91f..c8ae56f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,13 +1,14 @@
-# ignore
-node_modules
-dist
-.npmrc
-yarn.lock
-
-logs
-*.log
-npm-debug.log*
-yarn-debug.log*
-yarn-error.log*
-lerna-debug.log*
-.pnpm-debug.log*
+# ignore
+node_modules
+dist
+package-lock.json
+yarn.lock
+pnpm-lock.yaml
+
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+lerna-debug.log*
+.pnpm-debug.log*
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b177133..0155ef9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,84 +1,964 @@
-## [1.0.11](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.10...v1.0.11) (2022-10-02)
+# [1.17.0](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.16.3...v1.17.0) (2025-10-11)
+
+
+### Features
+
+* enhance media query parsing to support height-based breakpoints and improve condition handling ([41e919d](https://github.com/CoCreate-app/CoCreate-css-parser/commit/41e919db3b6bb24f21b30ddd575f342637b8dc38))
+* expand media query support with height breakpoints and enhance range definitions ([17bf842](https://github.com/CoCreate-app/CoCreate-css-parser/commit/17bf842652deb928dde3f8a59fcb10f9ad12c4f7))
+
+## [1.16.3](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.16.2...v1.16.3) (2025-05-01)
+
+
+### Bug Fixes
+
+* update [@cocreate](https://github.com/cocreate) dependencies ([8e0e4a4](https://github.com/CoCreate-app/CoCreate-css-parser/commit/8e0e4a48930bb28e8d5ec3b1c4c496ce3c5b9c96))
+
+## [1.16.2](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.16.1...v1.16.2) (2025-04-30)
+
+
+### Bug Fixes
+
+* added css-loader ([4dc5823](https://github.com/CoCreate-app/CoCreate-css-parser/commit/4dc582334ab5c8ba48e96871fdadc9c94c04897a))
+* update query attributes ([a831817](https://github.com/CoCreate-app/CoCreate-css-parser/commit/a831817b332e792a5c8a5d842d4966befd35ae2f))
+* updated cocreate modules versions ([67356f2](https://github.com/CoCreate-app/CoCreate-css-parser/commit/67356f27997750f8c948f16be5c515e299fc5ed5))
+* webpack.config and devdependencies ([9595a6b](https://github.com/CoCreate-app/CoCreate-css-parser/commit/9595a6b92ed9381570f6775548f4927c4a991f7f))
+
+## [1.16.1](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.16.0...v1.16.1) (2025-04-11)
+
+
+### Bug Fixes
+
+* update observer obseve parame to type and and attribute name to attributeFilter ([90fe9a4](https://github.com/CoCreate-app/CoCreate-css-parser/commit/90fe9a46542054abec5d4798f7699e9762b0cca6))
+
+# [1.16.0](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.15.0...v1.16.0) (2025-01-18)
+
+
+### Features
+
+* debounce save ([548ead8](https://github.com/CoCreate-app/CoCreate-css-parser/commit/548ead85bcae6b6f308757ed5ec776a92e8e3b2e))
+
+# [1.15.0](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.14.5...v1.15.0) (2024-11-04)
### Bug Fixes
-* minor bug fixes ([632491d](https://github.com/CoCreate-app/CoCreate-css-parser/commit/632491d18135eb3ea6b10e51e090b9ab0871dda9))
+* observer taget has been renamed to selector ([7ae87bb](https://github.com/CoCreate-app/CoCreate-css-parser/commit/7ae87bbdb2397055f7f74fe698c6e2290f54f6b7))
+* pretier.config.js and file formating ([5e18a18](https://github.com/CoCreate-app/CoCreate-css-parser/commit/5e18a18ef0b11accc68d810e89c0119f13f01216))
+
+
+### Features
+
+* add prettier.config.js and format files ([160d5f8](https://github.com/CoCreate-app/CoCreate-css-parser/commit/160d5f85171a3c96fc3225d1b4558692e67afd7b))
+* add prettier.config.js and format files ([d94b026](https://github.com/CoCreate-app/CoCreate-css-parser/commit/d94b0267e7560bb7d7e212ddb4a732f67fa5a6ad))
-## [1.0.10](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.9...v1.0.10) (2022-10-02)
+## [1.14.5](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.14.4...v1.14.5) (2024-06-12)
### Bug Fixes
-* bump @cocreate/hosting and @cocreate/socket-client ([3f41bc9](https://github.com/CoCreate-app/CoCreate-css-parser/commit/3f41bc93dc7b96c5a8a6e73f55eef82a367f1514))
+* bump cocreate dependencies ([ea1b6fc](https://github.com/CoCreate-app/CoCreate-css-parser/commit/ea1b6fca49f2dc55cceba26f4419efbfa76f4f79))
+* Handlig importan in theme rules ([7078105](https://github.com/CoCreate-app/CoCreate-css-parser/commit/70781057f761557080360535d9ba47ef7aee8e67))
+* handling dark and light mode ([5217148](https://github.com/CoCreate-app/CoCreate-css-parser/commit/52171481883c33d30650366ef70f3b19445266d2))
+* svg icon class ([3864815](https://github.com/CoCreate-app/CoCreate-css-parser/commit/3864815ef136a8b95c7a871fbd69bb37a05583d0))
-## [1.0.9](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.8...v1.0.9) (2022-10-01)
+## [1.14.4](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.14.3...v1.14.4) (2024-04-29)
### Bug Fixes
-* bump dependencies ([cacf527](https://github.com/CoCreate-app/CoCreate-css-parser/commit/cacf527a04427476726ddbf0724f6a80b87725bd))
-* CoCreate.cssParser global scope ([a10d581](https://github.com/CoCreate-app/CoCreate-css-parser/commit/a10d581e45f84e1e96cd8b58c4d20a68e9b6e6de))
+* bump cocreate dependencies ([48e6acc](https://github.com/CoCreate-app/CoCreate-css-parser/commit/48e6acc95ba197d076d4356d59e1ad3bc513913d))
-## [1.0.8](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.7...v1.0.8) (2022-09-30)
+## [1.14.3](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.14.2...v1.14.3) (2024-02-05)
### Bug Fixes
-* bump [@cocreate](https://github.com/cocreate) dependencies ([674a62f](https://github.com/CoCreate-app/CoCreate-css-parser/commit/674a62f1c15b298225f4d3d0569d4cb2b6bff577))
+* Removed https://cdn.cocreate.app/latest/CoCreate.min.css ([7d59765](https://github.com/CoCreate-app/CoCreate-css-parser/commit/7d597658028de62476729c65fa844d1795b598de))
-## [1.0.7](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.6...v1.0.7) (2022-09-30)
+## [1.14.2](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.14.1...v1.14.2) (2024-01-30)
### Bug Fixes
-* bump [@cocreate](https://github.com/cocreate) dependencies ([9ebdb31](https://github.com/CoCreate-app/CoCreate-css-parser/commit/9ebdb311561f0c4d4c9b07c12a1af765ab5d11e0))
+* Handling of !important when @ mediaQueries are defined ([b38e4d9](https://github.com/CoCreate-app/CoCreate-css-parser/commit/b38e4d9d6cb4d4651b4274a19b52a1464c9efd52))
-## [1.0.6](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.5...v1.0.6) (2022-09-30)
+## [1.14.1](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.14.0...v1.14.1) (2023-12-09)
### Bug Fixes
-* bump [@cocreate](https://github.com/cocreate) dependencies ([eaf3f5c](https://github.com/CoCreate-app/CoCreate-css-parser/commit/eaf3f5ceb4bb98816c5ec81b44e2d3cd8e3f908f))
+* oder of splice ([d03c2cf](https://github.com/CoCreate-app/CoCreate-css-parser/commit/d03c2cfd26c9f54c77ab8f1aba934df2cefcfdc2))
-## [1.0.5](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.4...v1.0.5) (2022-09-30)
+# [1.14.0](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.13.0...v1.14.0) (2023-11-25)
+
+
+### Features
+
+* upgrade dependencies for latest features and fixes ([2e2070e](https://github.com/CoCreate-app/CoCreate-css-parser/commit/2e2070ea19cb36613e9824beacc9691542e8eaf2))
+
+# [1.13.0](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.12.0...v1.13.0) (2023-11-25)
### Bug Fixes
-* bump dependencies ([333a21a](https://github.com/CoCreate-app/CoCreate-css-parser/commit/333a21a1f94ba0cc36d21a93e12fe5091307c689))
+* update nav, edit button and css path ([1487af1](https://github.com/CoCreate-app/CoCreate-css-parser/commit/1487af11164027dc7dc2d1bf2d8c48af93703879))
-## [1.0.4](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.3...v1.0.4) (2022-09-29)
+
+### Features
+
+* upgrade dependencies for latest features and fixes ([9c42dfb](https://github.com/CoCreate-app/CoCreate-css-parser/commit/9c42dfb477ec169f4167e9aa5e84b308e134b177))
+
+# [1.12.0](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.11.9...v1.12.0) (2023-11-19)
+
+
+### Features
+
+* update dependecies for th latest features and bug fixes ([2eb2598](https://github.com/CoCreate-app/CoCreate-css-parser/commit/2eb25988167de863f6b3e7255d120b4eb5f9ae15))
+
+## [1.11.9](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.11.8...v1.11.9) (2023-11-12)
### Bug Fixes
-* config renameed to CoCreateConfig ([25c9442](https://github.com/CoCreate-app/CoCreate-css-parser/commit/25c9442d089de8331e218b3ebbeac7904d6bac54))
+* bump dependencies for latest features ([363b0ce](https://github.com/CoCreate-app/CoCreate-css-parser/commit/363b0ce26eae056decda319f1a325435615d3fd9))
-## [1.0.3](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.2...v1.0.3) (2022-09-22)
+## [1.11.8](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.11.7...v1.11.8) (2023-11-09)
### Bug Fixes
-* bumped dependencies ([20ded50](https://github.com/CoCreate-app/CoCreate-css-parser/commit/20ded50cae017ad84a9ac9570d5a31cf86cb0dba))
+* meta name typo ([e6cdb81](https://github.com/CoCreate-app/CoCreate-css-parser/commit/e6cdb8174495e9a4085e4bf4c4e920b0ce1e03d7))
-## [1.0.2](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.1...v1.0.2) (2022-09-01)
+## [1.11.7](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.11.6...v1.11.7) (2023-11-03)
### Bug Fixes
-* bump all of [@cocreate](https://github.com/cocreate) dependencies ([e3166f7](https://github.com/CoCreate-app/CoCreate-css-parser/commit/e3166f719d7a27255a838748652f53f8e82581be))
+* favicon.ico path ([ef13533](https://github.com/CoCreate-app/CoCreate-css-parser/commit/ef1353378259ab4c63f000cad30271af9c81891a))
+* update dependencies to the lates versions ([c9e80e2](https://github.com/CoCreate-app/CoCreate-css-parser/commit/c9e80e26398daae9e699f57f68ad97731a77f730))
-## [1.0.1](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.0...v1.0.1) (2022-07-31)
+## [1.11.6](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.11.5...v1.11.6) (2023-10-25)
### Bug Fixes
-* update readme ([ad98442](https://github.com/CoCreate-app/CoCreate-css-parser/commit/ad984428d2ef0d8ac9303e4c760cf79c941023d5))
+* bump dependencies ([4b27254](https://github.com/CoCreate-app/CoCreate-css-parser/commit/4b27254d8b574ec6f5732f03aa0f440dd2ddfad8))
+
+## [1.11.5](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.11.4...v1.11.5) (2023-10-16)
+
+
+### Bug Fixes
+
+* if parser not explicitly set to false observer will observe classes ([510343b](https://github.com/CoCreate-app/CoCreate-css-parser/commit/510343b3fd6d794aef71b39e4372eeed025e6bb1))
+* parse conditions ([8a9558b](https://github.com/CoCreate-app/CoCreate-css-parser/commit/8a9558b63cf47991f779cc3adcbea23cbb3c762e))
+
+## [1.11.4](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.11.3...v1.11.4) (2023-10-14)
+
+
+### Bug Fixes
+
+* bump dependencies ([2b9c5fa](https://github.com/CoCreate-app/CoCreate-css-parser/commit/2b9c5fa5d3447412ddad0091f35ab4590c0b01b9))
+
+## [1.11.3](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.11.2...v1.11.3) (2023-10-09)
+
+
+### Bug Fixes
+
+* bump dependencies ([01b2e82](https://github.com/CoCreate-app/CoCreate-css-parser/commit/01b2e822dcc5c28151e59d94d225286c229bfeae))
+
+## [1.11.2](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.11.1...v1.11.2) (2023-10-09)
+
+
+### Bug Fixes
+
+* bump dependencies ([ba5ff75](https://github.com/CoCreate-app/CoCreate-css-parser/commit/ba5ff75ae3db81dbf5918ca5e3154730526c0044))
+
+## [1.11.1](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.11.0...v1.11.1) (2023-09-18)
+
+
+### Bug Fixes
+
+* Add path and pathname ([3f4825e](https://github.com/CoCreate-app/CoCreate-css-parser/commit/3f4825e1898930ab6f643c30d51acdcc68b426fb))
+* Update CoCreate depndencies to latest versions ([b711c68](https://github.com/CoCreate-app/CoCreate-css-parser/commit/b711c684209737a7376eac2a6ae8d7ad2f1bac3a))
+
+# [1.11.0](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.10.1...v1.11.0) (2023-09-17)
+
+
+### Features
+
+* save css src with name, path, pathname and content-type ([572c34e](https://github.com/CoCreate-app/CoCreate-css-parser/commit/572c34e8ebd204b901bcc02742ba7824d90ff5be))
+
+## [1.10.1](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.10.0...v1.10.1) (2023-08-21)
+
+
+### Bug Fixes
+
+* bump dependencies ([e9b9644](https://github.com/CoCreate-app/CoCreate-css-parser/commit/e9b964436d854fbc1c851ca9eaeb5345d5c2be21))
+
+# [1.10.0](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.9.1...v1.10.0) (2023-08-21)
+
+
+### Features
+
+* Update cocreate dependencies for the latest features and bug fixes ([97d655d](https://github.com/CoCreate-app/CoCreate-css-parser/commit/97d655d4fc49ebe492394c57557f4bff03158474))
+
+## [1.9.1](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.9.0...v1.9.1) (2023-08-21)
+
+
+### Bug Fixes
+
+* /dist/CoCreate.js updated to https://CoCreate.app/dist/CoCreate.js ([08cb9e5](https://github.com/CoCreate-app/CoCreate-css-parser/commit/08cb9e53ed94e67e898d9562415c5b05ec4264db))
+* replace cdn with /dist ([688b4bc](https://github.com/CoCreate-app/CoCreate-css-parser/commit/688b4bc7c89e6436f48dab5406c6f86c138daaa2))
+* update file uploader ([549af24](https://github.com/CoCreate-app/CoCreate-css-parser/commit/549af240382c6738b1b71a71fa522ec58e3654da))
+
+# [1.9.0](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.8.0...v1.9.0) (2023-08-17)
+
+
+### Features
+
+* bump cocreate dependencies for the latest updates and features ([ffb68b5](https://github.com/CoCreate-app/CoCreate-css-parser/commit/ffb68b5fcd17c4c0a5ef97f4862c9101c64e6ac1))
+
+# [1.8.0](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.29...v1.8.0) (2023-08-16)
+
+
+### Bug Fixes
-# 1.0.0 (2022-07-31)
+* crud attributes renamed ([4e317ef](https://github.com/CoCreate-app/CoCreate-css-parser/commit/4e317efe622a6a741e7f26bcc26a5f70daf969c0))
+* Remove redundant dependency ([ca37c3a](https://github.com/CoCreate-app/CoCreate-css-parser/commit/ca37c3a9b101cfde1b0f95f16ff8ec5c1a84b76c))
+* replace -target -selector ([345d8af](https://github.com/CoCreate-app/CoCreate-css-parser/commit/345d8af1b8cf67fe98ee2314f52156701991076a))
+* webpack.config and package.json make use of mode=production instead of process.env ([6382cc5](https://github.com/CoCreate-app/CoCreate-css-parser/commit/6382cc56209d43a4b35309ef1c5745baccf3e0f4))
### Features
+* element.setValue and Remove unused import statement and optimize code for joining parsedCSS and linkCSS arrays into a single string with unique values. Also, remove unused code related to saving the linkTag. ([4e0affd](https://github.com/CoCreate-app/CoCreate-css-parser/commit/4e0affd917c4dfd7cab0ae619490dcc2d0fc4a78))
+* getValue function and use element.save() to execute crud save ([d2a289f](https://github.com/CoCreate-app/CoCreate-css-parser/commit/d2a289fad2c17058baa733f2068087ebd334a954))
+* name attribute and variable renamed to key ([3a130e3](https://github.com/CoCreate-app/CoCreate-css-parser/commit/3a130e38f88c23c34ba294023f66732992103d6f))
+
+## [1.7.29](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.28...v1.7.29) (2023-06-14)
+
+
+### Bug Fixes
+
+* Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([21afea7](https://github.com/CoCreate-app/CoCreate-css-parser/commit/21afea7d9a0fc7264770a4643ccd93ed3d914421))
+
+## [1.7.28](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.27...v1.7.28) (2023-06-11)
+
+
+### Bug Fixes
+
+* Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([991727c](https://github.com/CoCreate-app/CoCreate-css-parser/commit/991727c18270dd31fb1c2d9f1f1389bde125d4bf))
+
+## [1.7.27](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.26...v1.7.27) (2023-06-11)
+
+
+### Bug Fixes
+
+* Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([7f3e1e1](https://github.com/CoCreate-app/CoCreate-css-parser/commit/7f3e1e19a3af935b5961fb739abfd03583feb518))
+
+## [1.7.26](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.25...v1.7.26) (2023-06-11)
+
+
+### Bug Fixes
+
+* testing workflow ([2afb53e](https://github.com/CoCreate-app/CoCreate-css-parser/commit/2afb53ee348744cf59ca595578c12642c248e093))
+
+## [1.7.25](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.24...v1.7.25) (2023-06-11)
+
+
+### Bug Fixes
+
+* testing workflow ([4d42136](https://github.com/CoCreate-app/CoCreate-css-parser/commit/4d421368a0dc5c21477ed2028b7bc712c01570cd))
+
+## [1.7.24](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.23...v1.7.24) (2023-06-11)
+
+
+### Bug Fixes
+
+* testing workflow ([e9d022a](https://github.com/CoCreate-app/CoCreate-css-parser/commit/e9d022a0d778baa855c2e00d943f88bca0c2e8dd))
+* testing workflow ([e879d57](https://github.com/CoCreate-app/CoCreate-css-parser/commit/e879d57d32ab403df8c22ee7e364949cd33ba40b))
+
+## [1.7.23](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.22...v1.7.23) (2023-06-11)
+
+
+### Bug Fixes
+
+* testing workflow ([29198e6](https://github.com/CoCreate-app/CoCreate-css-parser/commit/29198e6a44fdeffe862f86c0232974301f4f5d65))
+
+## [1.7.22](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.21...v1.7.22) (2023-06-11)
+
+
+### Bug Fixes
+
+* Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([75f7c17](https://github.com/CoCreate-app/CoCreate-css-parser/commit/75f7c17b1c850961a0bcff014d9c7d1aa8f205c4))
+
+## [1.7.21](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.20...v1.7.21) (2023-06-11)
+
+
+### Bug Fixes
+
+* postintall error ([5f8aadf](https://github.com/CoCreate-app/CoCreate-css-parser/commit/5f8aadf2bd2d9065374e19f58d6a94b00b5c4227))
+
+## [1.7.20](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.19...v1.7.20) (2023-06-11)
+
+
+### Bug Fixes
+
+* @cocreate/cli moved to dependencies ([12a6e48](https://github.com/CoCreate-app/CoCreate-css-parser/commit/12a6e487eaa1ca5bd6981682c19f38b999170853))
+
+## [1.7.19](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.18...v1.7.19) (2023-06-11)
+
+
+### Bug Fixes
+
+* Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([3919637](https://github.com/CoCreate-app/CoCreate-css-parser/commit/39196372fef37fe7d437fa0179c607fc81bd53e2))
+
+## [1.7.18](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.17...v1.7.18) (2023-06-11)
+
+
+### Bug Fixes
+
+* renamed hosts to host. the value can be a string or an array of strings ([a647c92](https://github.com/CoCreate-app/CoCreate-css-parser/commit/a647c92f1ad530b497731ff045d8e4ce31fea44e))
+
+## [1.7.17](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.16...v1.7.17) (2023-06-10)
+
+
+### Bug Fixes
+
+* Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([b065a24](https://github.com/CoCreate-app/CoCreate-css-parser/commit/b065a24d730fd8401f975fb37b1073c84ee2636e))
+
+## [1.7.16](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.15...v1.7.16) (2023-06-10)
+
+
+### Bug Fixes
+
+* Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([3e524a6](https://github.com/CoCreate-app/CoCreate-css-parser/commit/3e524a6c6fcda823906cdfed382642c8c3643e4e))
+
+## [1.7.15](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.14...v1.7.15) (2023-06-04)
+
+
+### Bug Fixes
+
+* Refactor CoCreate.config.js to remove hard-coded credentials ([a96f369](https://github.com/CoCreate-app/CoCreate-css-parser/commit/a96f369e94d031dd78f5724ddb143a142601e122))
+
+## [1.7.14](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.13...v1.7.14) (2023-06-04)
+
+
+### Bug Fixes
+
+* replaced secert GITHUB_TOKEN with GITHUB ([1ff3965](https://github.com/CoCreate-app/CoCreate-css-parser/commit/1ff3965d420c04486ac52979e7189630db8c7722))
+* Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([a3ee4d0](https://github.com/CoCreate-app/CoCreate-css-parser/commit/a3ee4d013e94facaecffcf4580ca788908acf4d4))
+
+## [1.7.13](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.12...v1.7.13) (2023-06-04)
+
+
+### Bug Fixes
+
+* **semantic-release:** worklow error solved by running node version 14 ([5d887e8](https://github.com/CoCreate-app/CoCreate-css-parser/commit/5d887e89191e51866c035d3e75c3e80d7e4f2be0))
+
+## [1.7.12](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.11...v1.7.12) (2023-06-02)
+
+
+### Bug Fixes
+
+* format demo html ([d5d9410](https://github.com/CoCreate-app/CoCreate-css-parser/commit/d5d9410320d8e01e17d65c99a7ca501e2e7504dd))
+* Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([795cf35](https://github.com/CoCreate-app/CoCreate-css-parser/commit/795cf35a7c5a09da2dc58c20f47a2a73714b837d))
+
+## [1.7.11](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.10...v1.7.11) (2023-05-21)
+
+
+### Bug Fixes
+
+* Update dependencies versions for [@cocreate](https://github.com/cocreate) libraries ([971eb2a](https://github.com/CoCreate-app/CoCreate-css-parser/commit/971eb2a7af755333c0e5f16ca34ea19610279a8a))
+
+## [1.7.10](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.9...v1.7.10) (2023-05-19)
+
+
+### Bug Fixes
+
+* 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. ([eb77a15](https://github.com/CoCreate-app/CoCreate-css-parser/commit/eb77a152c3b1d091c8fbe0b2e980ea35c13d0ca5))
+
+## [1.7.9](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.8...v1.7.9) (2023-05-10)
+
+
+### Bug Fixes
+
+* apikey renamed to key ([44837f9](https://github.com/CoCreate-app/CoCreate-css-parser/commit/44837f9a80cf59d92ceb846468dba179702a11c1))
+
+## [1.7.8](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.7...v1.7.8) (2023-05-06)
+
+
+### Bug Fixes
+
+* bump [@cocreate](https://github.com/cocreate) dependencies ([c854eb9](https://github.com/CoCreate-app/CoCreate-css-parser/commit/c854eb99b3e79fef0cd28c7fff94cc95ef86a594))
+
+## [1.7.7](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.6...v1.7.7) (2023-05-01)
+
+
+### Bug Fixes
+
+* update manifest.json to manifest.webmanifest ([d71bfd1](https://github.com/CoCreate-app/CoCreate-css-parser/commit/d71bfd1dfc48ececc5c4111df8ea898cbada5195))
+
+## [1.7.6](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.5...v1.7.6) (2023-05-01)
+
+
+### Bug Fixes
+
+* replace fontawesome with svg ([6cba9af](https://github.com/CoCreate-app/CoCreate-css-parser/commit/6cba9afb598c866bd6e12c4d3d06e0774d609644))
+
+## [1.7.5](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.4...v1.7.5) (2023-04-30)
+
+
+### Bug Fixes
+
+* fullscreen target updated to fullscreen fullscreen-target ([23b03f1](https://github.com/CoCreate-app/CoCreate-css-parser/commit/23b03f1a55922279e771437d93f4740b53d4c8de))
+* package-lock.json and pnpm-lock.yaml added to .gitignore ([a7d8865](https://github.com/CoCreate-app/CoCreate-css-parser/commit/a7d8865dbd603fd04b34424ad3396735ecd137ea))
+* removed toogle fullscreen icons. now using css content ([71953aa](https://github.com/CoCreate-app/CoCreate-css-parser/commit/71953aa86c7d0b29d5271fab9551bb7135786c17))
+
+## [1.7.4](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.3...v1.7.4) (2023-04-24)
+
+
+### Bug Fixes
+
+* updated worrkflows to v3 and node version 16 ([f34b788](https://github.com/CoCreate-app/CoCreate-css-parser/commit/f34b7885405c3e54791876db470430087020dce1))
+
+## [1.7.3](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.2...v1.7.3) (2023-04-24)
+
+
+### Bug Fixes
+
+* workflow node version updated 16 ([08fe7bd](https://github.com/CoCreate-app/CoCreate-css-parser/commit/08fe7bded189f71d4dfca56600339de100f30996))
+
+## [1.7.2](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.1...v1.7.2) (2023-04-24)
+
+
+### Bug Fixes
+
+* bump [@cocreate](https://github.com/cocreate) dependencies ([76eae36](https://github.com/CoCreate-app/CoCreate-css-parser/commit/76eae364b98a31c6f57a379f9557496fe8ba1a49))
+
+## [1.7.1](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.7.0...v1.7.1) (2023-04-24)
+
+
+### Bug Fixes
+
+* removed uglifyjs-webpack-plugin ([3227b95](https://github.com/CoCreate-app/CoCreate-css-parser/commit/3227b95fb788f26c91c41112323e93b71f4ac220))
+
+# [1.7.0](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.6.6...v1.7.0) (2023-04-24)
+
+
+### Features
+
+* added pwa manifest ([5ab1f00](https://github.com/CoCreate-app/CoCreate-css-parser/commit/5ab1f00cb32264970b8ce81494fbc0db728e9e88))
+
+## [1.6.6](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.6.5...v1.6.6) (2023-04-11)
+
+
+### Bug Fixes
+
+* bump dependencies ([06f4284](https://github.com/CoCreate-app/CoCreate-css-parser/commit/06f42840aed3066bc237e05535d7de6b14d5514c))
+
+## [1.6.5](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.6.4...v1.6.5) (2023-04-11)
+
+
+### Bug Fixes
+
+* bump [@cocreate](https://github.com/cocreate) dependencies ([f4cff68](https://github.com/CoCreate-app/CoCreate-css-parser/commit/f4cff680f251c5961bf0b9caeda92a20cc4d4b07))
+
+## [1.6.4](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.6.3...v1.6.4) (2023-04-11)
+
+
+### Bug Fixes
+
+* renamed domains to hosts ([048c7f4](https://github.com/CoCreate-app/CoCreate-css-parser/commit/048c7f4f80a372e1c1ec52cf229ad83b5ea1b856))
+
+## [1.6.3](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.6.2...v1.6.3) (2023-03-30)
+
+
+### Bug Fixes
+
+* bump [@cocreate](https://github.com/cocreate) dependencies' ([e5a626f](https://github.com/CoCreate-app/CoCreate-css-parser/commit/e5a626f8ac7260fd354aab423c88d03d9470d615))
+
+## [1.6.2](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.6.1...v1.6.2) (2023-03-16)
+
+
+### Bug Fixes
+
+* bump dependencies' ([984f293](https://github.com/CoCreate-app/CoCreate-css-parser/commit/984f2931fbdad9150d6637bbabfb2b228be916c9))
+
+## [1.6.1](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.6.0...v1.6.1) (2023-03-16)
+
+
+### Bug Fixes
+
+* bump dependencies' ([3a8d160](https://github.com/CoCreate-app/CoCreate-css-parser/commit/3a8d160cda160e1d109d9c7db3907c827b870cc1))
+
+# [1.6.0](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.5.5...v1.6.0) (2023-03-16)
+
+
+### Features
+
+* replaced get-value and set-value with a super charged version of CoCreate-events ([db8293f](https://github.com/CoCreate-app/CoCreate-css-parser/commit/db8293f47770f39830585cef540ecb4a597c71ba))
+
+## [1.5.5](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.5.4...v1.5.5) (2023-02-01)
+
+
+### Bug Fixes
+
+* bump dependencies ([19f105e](https://github.com/CoCreate-app/CoCreate-css-parser/commit/19f105e1a2c25727b233c5896707cbfe9755ed67))
+
+## [1.5.4](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.5.3...v1.5.4) (2023-01-31)
+
+
+### Bug Fixes
+
+* bump dependencies ([62f6e60](https://github.com/CoCreate-app/CoCreate-css-parser/commit/62f6e60df846adbad19c4df6449da4ebb81ee9b4))
+
+## [1.5.3](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.5.2...v1.5.3) (2023-01-30)
+
+
+### Bug Fixes
+
+* bump dependencies ([f0c6708](https://github.com/CoCreate-app/CoCreate-css-parser/commit/f0c6708fc03c30c16f1e21dea380a4d430942d66))
+
+## [1.5.2](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.5.1...v1.5.2) (2023-01-29)
+
+
+### Bug Fixes
+
+* bump dependencies ([6616994](https://github.com/CoCreate-app/CoCreate-css-parser/commit/66169943749900e5fb6c57dc30e077c7febe528c))
+
+## [1.5.1](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.5.0...v1.5.1) (2023-01-29)
+
+
+### Bug Fixes
+
+* bump dependencies ([56d0376](https://github.com/CoCreate-app/CoCreate-css-parser/commit/56d03766e4e2e89bd6caf17b7c19968f24b857a0))
+
+# [1.5.0](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.4.9...v1.5.0) (2023-01-29)
+
+
+### Features
+
+* import @cocreate/local-storage ([e71b717](https://github.com/CoCreate-app/CoCreate-css-parser/commit/e71b71755f028c4073316dc5822e351d12cefa06))
+
+## [1.4.9](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.4.8...v1.4.9) (2023-01-27)
+
+
+### Bug Fixes
+
+* bump dependencies ([f013ecf](https://github.com/CoCreate-app/CoCreate-css-parser/commit/f013ecf17d4770bb6be479f45e058672cea994e4))
+
+## [1.4.8](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.4.7...v1.4.8) (2023-01-13)
+
+
+### Bug Fixes
+
+* bump dependencies ([7dce60b](https://github.com/CoCreate-app/CoCreate-css-parser/commit/7dce60bcf620dc2b01e164cd410949524080b1fe))
+
+## [1.4.7](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.4.6...v1.4.7) (2023-01-10)
+
+
+### Bug Fixes
+
+* bump dependencies ([5ab23e6](https://github.com/CoCreate-app/CoCreate-css-parser/commit/5ab23e6ab9c9175775972d7ab8fb0283a6b38fb3))
+
+## [1.4.6](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.4.5...v1.4.6) (2023-01-09)
+
+
+### Bug Fixes
+
+* bump dependnecies ([e83f940](https://github.com/CoCreate-app/CoCreate-css-parser/commit/e83f9406ad93a35fc15477f6c9c0983598e5d4d3))
+
+## [1.4.5](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.4.4...v1.4.5) (2023-01-06)
+
+
+### Bug Fixes
+
+* bump dependencies, worklow [@v3](https://github.com/v3) ([aa5adf1](https://github.com/CoCreate-app/CoCreate-css-parser/commit/aa5adf1f7049a99819d2b90bbc75d666876f3ba1))
+* edit in github btn styles ([e9850ad](https://github.com/CoCreate-app/CoCreate-css-parser/commit/e9850ad39a5e78bb5ff05ebe49215764ef431a2a))
+
+## [1.4.4](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.4.3...v1.4.4) (2023-01-05)
+
+
+### Bug Fixes
+
+* bump cdn to 1.39.4 ([991d804](https://github.com/CoCreate-app/CoCreate-css-parser/commit/991d804fc929d85d67dc091c976be35c75b69675))
+* bump dependencies ([f58b7bb](https://github.com/CoCreate-app/CoCreate-css-parser/commit/f58b7bbaa9ed9b451fcc8b42cf57e3af2672f67b))
+
+## [1.4.3](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.4.2...v1.4.3) (2023-01-01)
+
+
+### Bug Fixes
+
+* docs sanbox overflow ([9b74b92](https://github.com/CoCreate-app/CoCreate-css-parser/commit/9b74b9281fae6289bf0100d2cbd34df916955a8f))
+
+## [1.4.2](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.4.1...v1.4.2) (2022-12-31)
+
+
+### Bug Fixes
+
+* bump dependencies ([e0b9975](https://github.com/CoCreate-app/CoCreate-css-parser/commit/e0b9975479a4fdbb11d44dac5cc2ac53e75f5d39))
+
+## [1.4.1](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.4.0...v1.4.1) (2022-12-30)
+
+
+### Bug Fixes
+
+* update config sources to use template braces with entry on src ([e45b99d](https://github.com/CoCreate-app/CoCreate-css-parser/commit/e45b99d2c5b68258a91339ccb408740f1747847c))
+
+# [1.4.0](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.3.9...v1.4.0) (2022-12-29)
+
+
+### Bug Fixes
+
+* bump dependencies ([f223efd](https://github.com/CoCreate-app/CoCreate-css-parser/commit/f223efd0c97386e7d5ed04d8ebea7f49b5661788))
+
+
+### Features
+
+* debounce save function ([879a6dc](https://github.com/CoCreate-app/CoCreate-css-parser/commit/879a6dca783ccec04465cc621911f4ea7c1dcddb))
+
+## [1.3.9](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.3.8...v1.3.9) (2022-12-27)
+
+
+### Bug Fixes
+
+* bump dependecies ([bd09f05](https://github.com/CoCreate-app/CoCreate-css-parser/commit/bd09f05dedca9f016b49d8bd54b6b2d604c2e88b))
+* bump dependencies ([36288dd](https://github.com/CoCreate-app/CoCreate-css-parser/commit/36288dda9f659885127a1ab1ce55db6dc1db7ee9))
+
+## [1.3.8](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.3.7...v1.3.8) (2022-12-25)
+
+
+### Bug Fixes
+
+* bump dependencies ([d599ac5](https://github.com/CoCreate-app/CoCreate-css-parser/commit/d599ac585d3d5af5ac4b75576ea9879e05f8af57))
+* bumpcdn to 1.34.4 ([c82f1c5](https://github.com/CoCreate-app/CoCreate-css-parser/commit/c82f1c58a9d91e03ea28de0b9448b7eb914235e4))
+
+## [1.3.7](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.3.6...v1.3.7) (2022-12-23)
+
+
+### Bug Fixes
+
+* bump dependnecies ([4791c5f](https://github.com/CoCreate-app/CoCreate-css-parser/commit/4791c5f6966fe3bbdd60d044b9c9a86da76cec1f))
+
+## [1.3.6](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.3.5...v1.3.6) (2022-12-22)
+
+
+### Bug Fixes
+
+* bump dependencies ([83e3b2c](https://github.com/CoCreate-app/CoCreate-css-parser/commit/83e3b2cf6b3b4b6736ac21b0046d3671d3d71eea))
+* update cdn ([8505a52](https://github.com/CoCreate-app/CoCreate-css-parser/commit/8505a52ecc47a27d8c8a38edb9efff5accdb668a))
+
+## [1.3.5](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.3.4...v1.3.5) (2022-12-22)
+
+
+### Bug Fixes
+
+* update demos and bump dependencies ([5d01ba8](https://github.com/CoCreate-app/CoCreate-css-parser/commit/5d01ba85eb04f672b7bb931e4e597b7c8639e5c7))
+
+## [1.3.4](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.3.3...v1.3.4) (2022-12-21)
+
+
+### Bug Fixes
+
+* bump dependencies ([a4130a3](https://github.com/CoCreate-app/CoCreate-css-parser/commit/a4130a34921db8bc7fbbf81e1e3522ad76e803af))
+
+## [1.3.3](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.3.2...v1.3.3) (2022-12-20)
+
+
+### Bug Fixes
+
+* bump dependencies ([820b274](https://github.com/CoCreate-app/CoCreate-css-parser/commit/820b274820278f4fb12f2da36e455e9dee2fa6ae))
+* style component name updated to css-parser ([1ceb045](https://github.com/CoCreate-app/CoCreate-css-parser/commit/1ceb0457785925929319da31745e9e4cea198478))
+
+## [1.3.2](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.3.1...v1.3.2) (2022-12-15)
+
+
+### Bug Fixes
+
+* add missing dev dependency style-loader ([3be1e23](https://github.com/CoCreate-app/CoCreate-css-parser/commit/3be1e23fccf00f85eda339881d8441041a71abc6))
+
+## [1.3.1](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.3.0...v1.3.1) (2022-12-14)
+
+
+### Bug Fixes
+
+* init bug ([661b05a](https://github.com/CoCreate-app/CoCreate-css-parser/commit/661b05ae77bb9cfadded41be397dc559e8d61b40))
+
+# [1.3.0](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.2.5...v1.3.0) (2022-12-14)
+
+
+### Features
+
+* oberver link tag for changes and react accordingly ([4f0112e](https://github.com/CoCreate-app/CoCreate-css-parser/commit/4f0112e63e78a8360c934e90e53a36ca1aaeed20))
+
+## [1.2.5](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.2.4...v1.2.5) (2022-12-13)
+
+
+### Bug Fixes
+
+* removed un used devDependencies ([445b189](https://github.com/CoCreate-app/CoCreate-css-parser/commit/445b1891a4298d2c7a513e59ece13c02de158ab4))
+
+## [1.2.4](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.2.3...v1.2.4) (2022-12-13)
+
+
+### Bug Fixes
+
+* bump dependencies ([8183784](https://github.com/CoCreate-app/CoCreate-css-parser/commit/818378472b7eacf0622d80e80171179b8d3b0d50))
+
+## [1.2.3](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.2.2...v1.2.3) (2022-12-12)
+
+
+### Bug Fixes
+
+* bump dependencies ([924a130](https://github.com/CoCreate-app/CoCreate-css-parser/commit/924a13004eb6e2dccc85f86386afb21cdb0e08b1))
+
+## [1.2.2](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.2.1...v1.2.2) (2022-12-11)
+
+
+### Bug Fixes
+
+* bump dependencies ([e4ade8d](https://github.com/CoCreate-app/CoCreate-css-parser/commit/e4ade8d2501399aeeeef5245d51916923fd9091c))
+
+## [1.2.1](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.2.0...v1.2.1) (2022-12-09)
+
+
+### Bug Fixes
+
+* bump dependencies ([e72de02](https://github.com/CoCreate-app/CoCreate-css-parser/commit/e72de028e4e5b53e840cfed33e5725f9a9dd4c03))
+
+# [1.2.0](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.1.13...v1.2.0) (2022-12-09)
+
+
+### Features
+
+* set cssParser true or false from localStorage ([3270345](https://github.com/CoCreate-app/CoCreate-css-parser/commit/3270345dbc6731c53bda766734c57a4281f05c49))
+
+## [1.1.13](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.1.12...v1.1.13) (2022-12-09)
+
+
+### Bug Fixes
+
+* typo getAttribute save was not a string ([811913e](https://github.com/CoCreate-app/CoCreate-css-parser/commit/811913e4ff22501c00f809e559e6946a1728ca71))
+
+## [1.1.12](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.1.11...v1.1.12) (2022-12-08)
+
+
+### Bug Fixes
+
+* bump dependencies ([bb33d21](https://github.com/CoCreate-app/CoCreate-css-parser/commit/bb33d217581654723faafba63cd13c6b45242f83))
+
+## [1.1.11](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.1.10...v1.1.11) (2022-12-07)
+
+
+### Bug Fixes
+
+* bump dependencies ([7a7b5bb](https://github.com/CoCreate-app/CoCreate-css-parser/commit/7a7b5bbac229e5ee3c5c9fe74613cb6fa269ce6e))
+
+## [1.1.10](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.1.9...v1.1.10) (2022-12-04)
+
+
+### Bug Fixes
+
+* bump dependencies ([a70f719](https://github.com/CoCreate-app/CoCreate-css-parser/commit/a70f719e506637e3f9377a7706460b148289e666))
+* improve parse and save attribute ([e8ca38e](https://github.com/CoCreate-app/CoCreate-css-parser/commit/e8ca38ebd02cbe2ed9695fd64d8c7be46ef037eb))
+
+## [1.1.9](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.1.8...v1.1.9) (2022-12-02)
+
+
+### Bug Fixes
+
+* docs ([c8d13fb](https://github.com/CoCreate-app/CoCreate-css-parser/commit/c8d13fba172c9be3f17e5dea121ca66db8fd2d8b))
+
+## [1.1.8](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.1.7...v1.1.8) (2022-12-02)
+
+
+### Bug Fixes
+
+* bump dependencies ([bd3d05a](https://github.com/CoCreate-app/CoCreate-css-parser/commit/bd3d05ab6f8f298ad4ebfacbd6d43a68a6572e4c))
+
+## [1.1.7](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.1.6...v1.1.7) (2022-11-28)
+
+
+### Bug Fixes
+
+* bump dependencies ([7da179a](https://github.com/CoCreate-app/CoCreate-css-parser/commit/7da179aad14cdd4707d30a268491db689be21a48))
+
+## [1.1.6](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.1.5...v1.1.6) (2022-11-28)
+
+
+### Bug Fixes
+
+* bump dependencies ([6e49b70](https://github.com/CoCreate-app/CoCreate-css-parser/commit/6e49b7055cf376492119cb0aa23ad67d8525643f))
+
+## [1.1.5](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.1.4...v1.1.5) (2022-11-27)
+
+
+### Bug Fixes
+
+* bump dependencies ([ecb7407](https://github.com/CoCreate-app/CoCreate-css-parser/commit/ecb7407f44b789fd6fb0b15ef192093eac6ef411))
+
+## [1.1.4](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.1.3...v1.1.4) (2022-11-26)
+
+
+### Bug Fixes
+
+* bump dependencies ([607564a](https://github.com/CoCreate-app/CoCreate-css-parser/commit/607564a32fd8fb4493ba257fc958a930cd571021))
+
+## [1.1.3](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.1.2...v1.1.3) (2022-11-25)
+
+
+### Bug Fixes
+
+* bump dependencies ([200c48c](https://github.com/CoCreate-app/CoCreate-css-parser/commit/200c48cd2653fcb8606e79466bf5c849ef1ed97b))
+* CoCreate.crud.default removed bug causing default object ([2dec74d](https://github.com/CoCreate-app/CoCreate-css-parser/commit/2dec74d6785141b7c151644a0b935f14a4462666))
+
+## [1.1.2](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.1.1...v1.1.2) (2022-11-24)
+
+
+### Bug Fixes
+
+* bump depenedencies ([644c182](https://github.com/CoCreate-app/CoCreate-css-parser/commit/644c182233492c05188fa53ed30b29c7784fb611))
+
+## [1.1.1](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.1.0...v1.1.1) (2022-11-23)
+
+
+### Bug Fixes
+
+* bumped [@cocreate](https://github.com/cocreate) dependencies ([01efc5f](https://github.com/CoCreate-app/CoCreate-css-parser/commit/01efc5f2d063ccaa1766cce4b8b33f7901d8f3d7))
+
+# [1.1.0](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.17...v1.1.0) (2022-11-23)
+
+
+### Features
+
+* link tag styles will only save if a document_id is defined ([e8083c3](https://github.com/CoCreate-app/CoCreate-css-parser/commit/e8083c320e835e79bd26deaccce9fbb4fd2f20ca))
+
+## [1.0.17](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.16...v1.0.17) (2022-11-22)
+
+
+### Bug Fixes
+
+* apply src: {{source}} to CoCreate.config ([a2b9951](https://github.com/CoCreate-app/CoCreate-css-parser/commit/a2b99514f79a9b15e7677624a7b0c1b8090e0bb6))
+* workflow docs ([43ff1d3](https://github.com/CoCreate-app/CoCreate-css-parser/commit/43ff1d35df091a379c3c0da3933a002ff7547396))
+
+## [1.0.16](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.15...v1.0.16) (2022-11-21)
+
+
+### Bug Fixes
+
+* @cocreate/docs bug fix ([cd90d54](https://github.com/CoCreate-app/CoCreate-css-parser/commit/cd90d54aca41562af32a98865506cdae8a0d3838))
+
+## [1.0.15](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.14...v1.0.15) (2022-11-21)
+
+
+### Bug Fixes
+
+* replaced document_id with document._id ([876684f](https://github.com/CoCreate-app/CoCreate-css-parser/commit/876684f2a2d74f3a4bdd7a1dfaa30b37cd61b39e))
+
+## [1.0.14](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.13...v1.0.14) (2022-11-21)
+
+
+### Bug Fixes
+
+* bump [@cocreate](https://github.com/cocreate) dependencies ([d9167fc](https://github.com/CoCreate-app/CoCreate-css-parser/commit/d9167fc39013800c76e558421cd3e718bab7cf1c))
+
+## [1.0.13](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.12...v1.0.13) (2022-11-21)
+
+
+### Bug Fixes
+
+* bump d@cocreate ependencies ([f287dba](https://github.com/CoCreate-app/CoCreate-css-parser/commit/f287dba574bf46fdffdd1f00df454739082d8363))
+
+## [1.0.12](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.11...v1.0.12) (2022-11-21)
+
+
+### Bug Fixes
+
+* if linkTag parse css ([8f5e368](https://github.com/CoCreate-app/CoCreate-css-parser/commit/8f5e36821c0d18fba948d2c2e4ed0f8ae6462fe8))
+* update crud functions to receive an array of objects as the response ([6edb672](https://github.com/CoCreate-app/CoCreate-css-parser/commit/6edb672978200a146b1cad8e3a697ba91fdbf0ab))
+
+## [1.0.11](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.10...v1.0.11) (2022-10-02)
+
+
+### Bug Fixes
+
+* minor bug fixes ([632491d](https://github.com/CoCreate-app/CoCreate-css-parser/commit/632491d18135eb3ea6b10e51e090b9ab0871dda9))
+
+## [1.0.10](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.9...v1.0.10) (2022-10-02)
+
+
+### Bug Fixes
+
+* bump @cocreate/hosting and @cocreate/socket-client ([3f41bc9](https://github.com/CoCreate-app/CoCreate-css-parser/commit/3f41bc93dc7b96c5a8a6e73f55eef82a367f1514))
+
+## [1.0.9](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.8...v1.0.9) (2022-10-01)
+
+
+### Bug Fixes
+
+* bump dependencies ([cacf527](https://github.com/CoCreate-app/CoCreate-css-parser/commit/cacf527a04427476726ddbf0724f6a80b87725bd))
+* CoCreate.cssParser global scope ([a10d581](https://github.com/CoCreate-app/CoCreate-css-parser/commit/a10d581e45f84e1e96cd8b58c4d20a68e9b6e6de))
+
+## [1.0.8](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.7...v1.0.8) (2022-09-30)
+
+
+### Bug Fixes
+
+* bump [@cocreate](https://github.com/cocreate) dependencies ([674a62f](https://github.com/CoCreate-app/CoCreate-css-parser/commit/674a62f1c15b298225f4d3d0569d4cb2b6bff577))
+
+## [1.0.7](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.6...v1.0.7) (2022-09-30)
+
+
+### Bug Fixes
+
+* bump [@cocreate](https://github.com/cocreate) dependencies ([9ebdb31](https://github.com/CoCreate-app/CoCreate-css-parser/commit/9ebdb311561f0c4d4c9b07c12a1af765ab5d11e0))
+
+## [1.0.6](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.5...v1.0.6) (2022-09-30)
+
+
+### Bug Fixes
+
+* bump [@cocreate](https://github.com/cocreate) dependencies ([eaf3f5c](https://github.com/CoCreate-app/CoCreate-css-parser/commit/eaf3f5ceb4bb98816c5ec81b44e2d3cd8e3f908f))
+
+## [1.0.5](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.4...v1.0.5) (2022-09-30)
+
+
+### Bug Fixes
+
+* bump dependencies ([333a21a](https://github.com/CoCreate-app/CoCreate-css-parser/commit/333a21a1f94ba0cc36d21a93e12fe5091307c689))
+
+## [1.0.4](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.3...v1.0.4) (2022-09-29)
+
+
+### Bug Fixes
+
+* config renameed to CoCreateConfig ([25c9442](https://github.com/CoCreate-app/CoCreate-css-parser/commit/25c9442d089de8331e218b3ebbeac7904d6bac54))
+
+## [1.0.3](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.2...v1.0.3) (2022-09-22)
+
+
+### Bug Fixes
+
+* bumped dependencies ([20ded50](https://github.com/CoCreate-app/CoCreate-css-parser/commit/20ded50cae017ad84a9ac9570d5a31cf86cb0dba))
+
+## [1.0.2](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.1...v1.0.2) (2022-09-01)
+
+
+### Bug Fixes
+
+* bump all of [@cocreate](https://github.com/cocreate) dependencies ([e3166f7](https://github.com/CoCreate-app/CoCreate-css-parser/commit/e3166f719d7a27255a838748652f53f8e82581be))
+
+## [1.0.1](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.0.0...v1.0.1) (2022-07-31)
+
+
+### Bug Fixes
+
+* update readme ([ad98442](https://github.com/CoCreate-app/CoCreate-css-parser/commit/ad984428d2ef0d8ac9303e4c760cf79c941023d5))
+
+# 1.0.0 (2022-07-31)
+
+
+### Features
+
* Initial Release ([ca7ee93](https://github.com/CoCreate-app/CoCreate-css-parser/commit/ca7ee939d26408b2e8fe11f5073c93d56fe832e0))
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 6120363..b7d16f7 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,97 +1,97 @@
-# Contributing to CoCreate-css-parser
-
-This project is work of [many contributors](https://github.com/CoCreate-app/CoCreate-css-parser/graphs/contributors).
-You're encouraged to submit [pull requests](https://github.com/CoCreate-app/CoCreate-css-parser/pulls),
-[propose features and discuss issues](https://github.com/CoCreate-app/CoCreate-css-parser/issues).
-
-In the examples below, substitute your Github username for `contributor` in URLs.
-
-## Fork the Project
-
-Fork the [project on Github](https://github.com/CoCreate-app/CoCreate-css-parser) and check out your copy.
-
-```
-git clone https://github.com/contributor/CoCreate-css-parser.git
-cd CoCreate-css-parser
-git remote add upstream https://github.com/CoCreate-app/CoCreate-css-parser.git
-```
-
-## Create a Topic Branch
-
-Make sure your fork is up-to-date and create a topic branch for your feature or bug fix on dev branch.
-
-```
-git checkout dev
-git pull upstream dev
-git checkout -b my-feature-branch
-```
-
-## Write Tests
-
-Try to write a test that reproduces the problem you're trying to fix or describes a feature that you want to build.
-
-We definitely appreciate pull requests that highlight or reproduce a problem, even without a fix.
-
-## Write Code
-
-Implement your feature or bug fix.
-
-## Write Documentation
-
-Document any external behavior in the [README](README.md).
-
-## Commit Changes
-
-Make sure git knows your name and email address:
-
-```
-git config --global user.name "Your Name"
-git config --global user.email "contributor@example.com"
-```
-
-We use [semantic-release](https://github.com/semantic-release/semantic-release) as process to generate changelog
-and to release. Write meaningful commits according to
-[Commit Message Formats](https://github.com/semantic-release/semantic-release#commit-message-format) is important.
-
-```
-git add ...
-git commit -am "commit-type(optional topic): a meaningful message"
-```
-
-Here is an example of the release type that should be done based on a [semantic-release](https://github.com/semantic-release/semantic-release):
-
-| Commit message | Release type |
-| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------- |
-| `fix(pencil): stop graphite breaking when too much pressure applied` | Patch Release |
-| `feat(pencil): add 'graphiteWidth' option` | ~~Minor~~ Feature Release |
-| `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 |
-
-
-## Push
-
-```
-git push origin my-feature-branch
-```
-
-## Make a Pull Request
-
-Go to [https://github.com/CoCreate-app/CoCreate-css-parser](https://github.com/CoCreate-app/CoCreate-css-parser) and select your feature branch.
-Click the 'Pull Request' button and fill out the form. Pull requests are usually reviewed within a few days.
-
-## Rebase
-
-If you've been working on a change for a while, rebase with upstream/dev.
-
-```
-git fetch upstream
-git rebase upstream/dev
-git push origin my-feature-branch -f
-```
-
-## Be Patient
-
-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!
-
-## Thank You
-
+# Contributing to CoCreate-css-parser
+
+This project is work of [many contributors](https://github.com/CoCreate-app/CoCreate-css-parser/graphs/contributors).
+You're encouraged to submit [pull requests](https://github.com/CoCreate-app/CoCreate-css-parser/pulls),
+[propose features and discuss issues](https://github.com/CoCreate-app/CoCreate-css-parser/issues).
+
+In the examples below, substitute your Github username for `contributor` in URLs.
+
+## Fork the Project
+
+Fork the [project on Github](https://github.com/CoCreate-app/CoCreate-css-parser) and check out your copy.
+
+```
+git clone https://github.com/contributor/CoCreate-css-parser.git
+cd CoCreate-css-parser
+git remote add upstream https://github.com/CoCreate-app/CoCreate-css-parser.git
+```
+
+## Create a Topic Branch
+
+Make sure your fork is up-to-date and create a topic branch for your feature or bug fix on dev branch.
+
+```
+git checkout dev
+git pull upstream dev
+git checkout -b my-feature-branch
+```
+
+## Write Tests
+
+Try to write a test that reproduces the problem you're trying to fix or describes a feature that you want to build.
+
+We definitely appreciate pull requests that highlight or reproduce a problem, even without a fix.
+
+## Write Code
+
+Implement your feature or bug fix.
+
+## Write Documentation
+
+Document any external behavior in the [README](README.md).
+
+## Commit Changes
+
+Make sure git knows your name and email address:
+
+```
+git config --global user.name "Your Name"
+git config --global user.email "contributor@example.com"
+```
+
+We use [semantic-release](https://github.com/semantic-release/semantic-release) as process to generate changelog
+and to release. Write meaningful commits according to
+[Commit Message Formats](https://github.com/semantic-release/semantic-release#commit-message-format) is important.
+
+```
+git add ...
+git commit -am "commit-type(optional topic): a meaningful message"
+```
+
+Here is an example of the release type that should be done based on a [semantic-release](https://github.com/semantic-release/semantic-release):
+
+| Commit message | Release type |
+| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------- |
+| `fix(pencil): stop graphite breaking when too much pressure applied` | Patch Release |
+| `feat(pencil): add 'graphiteWidth' option` | ~~Minor~~ Feature Release |
+| `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 |
+
+
+## Push
+
+```
+git push origin my-feature-branch
+```
+
+## Make a Pull Request
+
+Go to [https://github.com/CoCreate-app/CoCreate-css-parser](https://github.com/CoCreate-app/CoCreate-css-parser) and select your feature branch.
+Click the 'Pull Request' button and fill out the form. Pull requests are usually reviewed within a few days.
+
+## Rebase
+
+If you've been working on a change for a while, rebase with upstream/dev.
+
+```
+git fetch upstream
+git rebase upstream/dev
+git push origin my-feature-branch -f
+```
+
+## Be Patient
+
+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!
+
+## Thank You
+
Please do know that we really appreciate and value your time and work. We love you, really.
\ No newline at end of file
diff --git a/CoCreate.config.js b/CoCreate.config.js
index be0cd84..2ff2abe 100644
--- a/CoCreate.config.js
+++ b/CoCreate.config.js
@@ -1,43 +1,24 @@
module.exports = {
- "config": {
- "apiKey": "2061acef-0451-4545-f754-60cf8160",
- "organization_Id": "5ff747727005da1c272740ab",
- "host": "general.cocreate.app"
- },
-
- "sources": [{
- "entry": "./docs/index.html",
- "collection": "files",
- "document_id": "60145dc49f64ba1680b86693",
- "key": "src",
- "data":{
+ "organization_id": "",
+ "key": "",
+ "host": "",
+ "sources": [
+ {
+ "array": "files",
+ "object": {
+ "_id": "637ca39950234ef1671ce312",
"name": "index.html",
- "path": "/docs/css-parser/index.html",
- "domains": [
+ "path": "/docs/css-parser",
+ "pathname": "/docs/css-parser/index.html",
+ "src": "{{./docs/index.html}}",
+ "host": [
"cocreate.app",
"general.cocreate.app"
],
- "directory": "/docs/css-parser",
- "content-type": "text/html",
- "public": "true",
- "website_id": "5ffbceb7f11d2d00103c4535"
+ "directory": "css-parser",
+ "content-type": "{{content-type}}",
+ "public": "true"
}
}
- ],
-
- "extract": {
- "directory": "./src/",
- "extensions": [
- "js",
- "css",
- "html"
- ],
- "ignores": [
- "node_modules",
- "vendor",
- "bower_components",
- "archive"
- ]
- }
-}
-
+ ]
+};
\ No newline at end of file
diff --git a/LICENSE b/LICENSE
index 9b8cc63..799de9e 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,21 +1,21 @@
-MIT License
-
-Copyright (c) 2021 CoCreate LLC
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
+MIT License
+
+Copyright (c) 2021 CoCreate LLC
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/README.md b/README.md
index da4aa34..e6c051d 100644
--- a/README.md
+++ b/README.md
@@ -1,84 +1,84 @@
-# CoCreate-css-parser
-
-A simple css-parser component in vanilla javascript. Easily configured using HTML5 data-attributes and/or JavaScript API. Take it for a spin in our [playground!](https://cocreate.app/docs/css-parser)
-
-
-
-
-
-
-
-
-
-
-
-## [Docs & Demo](https://cocreate.app/docs/css-parser)
-
-For a complete guide and working demo refer to the [doumentation](https://cocreate.app/docs/css-parser)
-
-## CDN
-
-```html
-
-```
-
-```html
-
-```
-
-## NPM
-
-```shell
-$ npm i @cocreate/css-parser
-```
-
-## yarn
-
-```shell
-$ yarn install @cocreate/css-parser
-```
-
-# Table of Contents
-
-- [Table of Contents](#table-of-contents)
-- [Announcements](#announcements)
-- [Roadmap](#roadmap)
-- [How to Contribute](#how-to-contribute)
-- [About](#about)
-- [License](#license)
-
-
-
-# Announcements
-
-All updates to this library are documented in our [CHANGELOG](https://github.com/CoCreate-app/CoCreate-css-parser/blob/master/CHANGELOG.md) and [releases](https://github.com/CoCreate-app/CoCreate-css-parser/releases). You may also subscribe to email for releases and breaking changes.
-
-
-
-# Roadmap
-
-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-css-parser/issues) and [pull requests](https://github.com/CoCreate-app/CoCreate-css-parser/pulls). We would love to hear your feedback.
-
-
-
-# About
-
-CoCreate-css-parser is guided and supported by the CoCreate Developer Experience Team.
-
-Please Email the Developer Experience Team [here](mailto:develop@cocreate.app) in case of any queries.
-
-CoCreate-css-parser is maintained and funded by CoCreate. The names and logos for CoCreate are trademarks of CoCreate, LLC.
-
-
-
-# How to Contribute
-
-We encourage contribution to our libraries (you might even score some nifty swag), please see our [CONTRIBUTING](https://github.com/CoCreate-app/CoCreate-css-parser/blob/master/CONTRIBUTING.md) guide for details.
-
-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-css-parser/issues) and [pull requests](https://github.com/CoCreate-app/CoCreate-css-parser/pulls) or merely upvote or comment on existing issues or pull requests.
-
-We appreciate your continued support, thank you!
-
-# License
-
-[The MIT License (MIT)](https://github.com/CoCreate-app/CoCreate-css-parser/blob/master/LICENSE)
+# CoCreate-css-parser
+
+A simple css-parser component in vanilla javascript. Easily configured using HTML5 data-attributes and/or JavaScript API. Take it for a spin in our [playground!](https://cocreate.app/docs/css-parser)
+
+
+
+
+
+
+
+
+
+
+
+## [Docs & Demo](https://cocreate.app/docs/css-parser)
+
+For a complete guide and working demo refer to the [doumentation](https://cocreate.app/docs/css-parser)
+
+## CDN
+
+```html
+
+```
+
+```html
+
+```
+
+## NPM
+
+```shell
+$ npm i @cocreate/css-parser
+```
+
+## yarn
+
+```shell
+$ yarn install @cocreate/css-parser
+```
+
+# Table of Contents
+
+- [Table of Contents](#table-of-contents)
+- [Announcements](#announcements)
+- [Roadmap](#roadmap)
+- [How to Contribute](#how-to-contribute)
+- [About](#about)
+- [License](#license)
+
+
+
+# Announcements
+
+All updates to this library are documented in our [CHANGELOG](https://github.com/CoCreate-app/CoCreate-css-parser/blob/master/CHANGELOG.md) and [releases](https://github.com/CoCreate-app/CoCreate-css-parser/releases). You may also subscribe to email for releases and breaking changes.
+
+
+
+# Roadmap
+
+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-css-parser/issues) and [pull requests](https://github.com/CoCreate-app/CoCreate-css-parser/pulls). We would love to hear your feedback.
+
+
+
+# About
+
+CoCreate-css-parser is guided and supported by the CoCreate Developer Experience Team.
+
+Please Email the Developer Experience Team [here](mailto:develop@cocreate.app) in case of any queries.
+
+CoCreate-css-parser is maintained and funded by CoCreate. The names and logos for CoCreate are trademarks of CoCreate, LLC.
+
+
+
+# How to Contribute
+
+We encourage contribution to our libraries (you might even score some nifty swag), please see our [CONTRIBUTING](https://github.com/CoCreate-app/CoCreate-css-parser/blob/master/CONTRIBUTING.md) guide for details.
+
+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-css-parser/issues) and [pull requests](https://github.com/CoCreate-app/CoCreate-css-parser/pulls) or merely upvote or comment on existing issues or pull requests.
+
+We appreciate your continued support, thank you!
+
+# License
+
+[The MIT License (MIT)](https://github.com/CoCreate-app/CoCreate-css-parser/blob/master/LICENSE)
diff --git a/demo/atomic-css.html b/demo/atomic-css.html
index b01cb9c..8fc55ea 100644
--- a/demo/atomic-css.html
+++ b/demo/atomic-css.html
@@ -1,815 +1,1109 @@
-
-
-
CoCreate provides the most convenient helper class.
-CoCreate Helper Classes are very easy to use.
-We can use exactly same class names with "style:value".
-
-
-<div class="padding:16px"></div>
-<div class="font-size:0.5rem color:red"></div>
-
-
- Main styles and values provided as helper classes are as follows.
-<div class="direction:ltr"></div>
- ltr
-rtl
-<div class="display:block"></div>
- block
-inline-block
-inline
-none
-inherit
-table
-table-cell
-flex
-<div class="overflow:auto"></div>
- auto
-visible
-scroll
-hidden
-<div class="float:left"></div>
- left
-right
-none
-<div class="position:relative"></div>
- inherit
-relative
-absolute
-fixed
-sticky
-<div class="z-index:auto"></div>
- auto
-inherit
-initial
--2
--5
-1 ~ 15
-100
-101
-111
-1000
-1111
-<div class="top:auto"></div>
- auto
-0
-1px ~ 50px
-55px
-60px
-65px
-...
-100px
-150px
-200px
-...
-400px
--1px ~ -50px
--55px
--60px
--65px
-...
--100px
--150px
--200px
-...
--400px
-<div class="bottom:auto"></div>
- auto
-0
-1px ~ 50px
-55px
-60px
-65px
-...
-100px
-150px
-200px
-...
-400px
--1px ~ -50px
--55px
--60px
--65px
-...
--100px
--150px
--200px
-...
--400px
-<div class="left:auto"></div>
- auto
-0
-1px ~ 50px
-55px
-60px
-65px
-...
-100px
-150px
-200px
-...
-400px
--1px ~ -50px
--55px
--60px
--65px
-...
--100px
--150px
--200px
-...
--400px
-<div class="right:auto"></div>
- auto
-0
-1px ~ 50px
-55px
-60px
-65px
-...
-100px
-150px
-200px
-...
-400px
--1px ~ -50px
--55px
--60px
--65px
-...
--100px
--150px
--200px
-...
--400px
-<div class="height:0"></div>
- 0
-1px ~ 10px
-20px
-30px
-40px
-45px
-48px
-50px
-70px
-80px
-90px
-100px
-130px
-150px
-200px
-250px
-300px
-350px
-...
-700px
-auto
-25%
-33%
-50%
-66%
-75%
-100%
-100%-120px
-100vh-120px
-100vh-100px
-100vh-90px
-100vh-70px
-100vh-50px
-80vh
-90vh
-100vh
-fill-available
-fit-content
-<div class="min-height:100px"></div>
- 100px
-200px
-...
-700px
-<div class="max-height:300px"></div>
- 60px
-100%
-<div class="width:0"></div>
- 0
-1px ~ 10px
-15px
-20px
-25px
-...
-90px
-100px
-110px
-120px
-130px
-150px
-180px
-200px
-250px
-300px
-350px
-...
-1000px
-10%
-12%
-15%
-20%
-25%
-30%
-35%
-40%
-41% ~ 50%
-55%
-60%
-65%
-70%
-75%
-80%
-85%
-90%
-95%
-100%
-auto
-unset
-fill-available
-<div class="min-width:75px"></div>
- 75px
-100px
-200px
-250px
-300px
-<div class="max-width:300px"></div>
- 75px
-100px
-300px
-400px
-500px
-600px
-1050px
-<div class="margin:auto"></div>
- auto
-0
-5px
-10px
-15px
-...
-100px
-auto-lr(left & right)
-0-lr
-5px-lr
-10px-lr
-15px-lr
-...
-100px-lr
-auto-tb(top & bottom)
-0-tb
-5px_0px
-10px_0px
-15px_0px
-...
-100px_0px
-<div class="margin=top:auto"></div>
- auto
-0
-5px
-10px
-15px
-...
-100px
-<div class="margin-bottom:auto"></div>
- auto
-0
-5px
-10px
-15px
-...
-100px
-<div class="margin-left:auto"></div>
- auto
-0
-5px
-10px
-15px
-...
-100px
-<div class="margin-right:auto"></div>
- auto
-0
-5px
-10px
-15px
-...
-100px
-<div class="padding:0"></div>
- 0
-5px
-10px
-15px
-...
-100px
-0-tb(top & bottom)
-5px_0px
-10px_0px
-15px_0px
-...
-100px_0px
-0-lr(left & right)
-1px-lr ~ 15px-lr
-20px-lr
-25px-lr
-30px-lr
-...
-100px-lr
-<div class="padding-top:0"></div>
- 0
-5px
-10px
-15px
-...
-100px
-<div class="padding-bottom:15px"></div>
- 0
-5px
-10px
-15px
-...
-100px
-<div class="padding-left:15px"></div>
- 0
-5px
-10px
-15px
-...
-100px
-<div class="padding-right:15px"></div>
- 0
-5px
-10px
-15px
-...
-100px
-<div class="border-width:0"></div>
- 0
-1px ~ 10px
-20px
-<div class="border-color:black"></div>
- white
-black
-extra-dark-gray
-medium-dark-gray
-dark-gray
-extra-medium-gray
-medium-gray
-extra-light-gray
-light-gray
-light-pink
-deep-pink
-transparent-pink
-<div class="border-style:dotted"></div>
- dotted
-dashed
-solid
-double
-groove
-ridge
-inset
-outset
-none
-hidden
-transparent
-<div class="border-radius:0"></div>
- 0
-1px ~ 10px
-50px
-50%
-100%
-<div class="font-size:18px"></div>
- 6px ~ 25px
-30px
-40px
-50px
-...
-80px
-01rem
-02rem
-03rem
-04rem
-05rem
-1rem
-2rem
-<div class="font-weight:800"></div>
- 100
-200
-300
-...
-900
-bold
-<div class="font-align:center"></div>
- center
-left
-right
-<div class="color:blue"></div>
- white
-black
-extra-dark-gray
-dark-gray
-extra-medium-gray
-medium-gray
-extra-light-gray
-light-gray
-light-gray
-very-light-gray
-deep-pink
-light-blue
-blue
-<div class="text-overflow:ellipsis"></div>
- ellipsis
-<div class="text-transform:uppercase"></div>
- uppercase
-<div class="text-decoration:underline"></div>
- underline
-<div class="background-attachment:scroll"></div>
- scroll
-fixed
-local
-initial
-inherit
-<div class="background-repeat:repeat"></div>
- repeat
-repeat-x
-repeat-y
-no-repeat
-initial
-inherit
-<div class="background-size:auto"></div>
- auto
-cover
-contain
-initial
-inherit
-<div class="background-position:center"></div>
- left-top
-left-center
-left-bottom
-right-top
-right-center
-right-bottom
-center
-center-top
-center-center
-center-bottom
-initial
-inherit
-<div class="background:blue"></div>
- transparent
-white
-black
-dark-blue
-extra-dark-gray
-dark-gray
-extra-medium-gray
-medium-gray
-extra-light-gray
-medium-light-gray
-light-gray
-very-light-gray
-deep-pink
-transparent-white
-transparent-black
-white-opacity
-black-opacity
-black-opacity-light
-deep-pink-opacity
-charcoal-gray
-blue
-<div class="background:black"></div>
- transparent
-white
-black
-dark-blue
-<div class="opacity:block"></div>
- 0
-0.1
-0.2
-0.3
-...
-0.9
-1
-<div class="cursor:auto"></div>
- alias
-all-scroll
-auto
-cell
-context-menu
-col-resize
-copy
-crosshair
-default
-e-resize
-ew-resize
-grab
-grabbing
-help
-move
-n-resize
-ne-resize
-nesw-resize
-ns-resize
-nw-resize
-nwse-resize
-no-drop
-none
-not-allowed
-pointer
-progress
-row-resize
-s-resize
-se-resize
-sw-resize
-text
-url
-w-resize
-wait
-zoom-in
-zoom-out
-