Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
eec133a
stashing work
potench Jul 24, 2020
90dbf2f
feat (core + ui) refactor to use tcf 2.0 v0
potench Aug 6, 2020
f783f63
remapping, loader, initialization
potench Aug 11, 2020
9e764b7
fork tcfapi to customize custom api
potench Aug 12, 2020
b2f3b96
ie11 fixes and move to tcfapi only
potench Aug 13, 2020
a44b204
docs
potench Aug 14, 2020
779e072
docs
potench Aug 14, 2020
b364d39
docs (readme) add config readmes
potench Aug 14, 2020
e229087
refactor (reference) remove unused themes from reference
potench Aug 14, 2020
2466ba4
docs (readme) add system1 shark logo 🦈
potench Aug 14, 2020
6ae8f1c
docs (readme) add api and config documentation
potench Aug 14, 2020
02ec0c2
feat (env/app) more scaffolding for cmp with tcf 2.00
potench Aug 14, 2020
e9256ee
feat (logging) refactor logging/debugging and introduce DPL optional …
potench Aug 18, 2020
a24f31d
refactor (commit-log) updating commit log
potench Aug 28, 2020
4cc463f
feat (store/events/api) add onConsentAllChanged apis
potench Aug 19, 2020
fe96ebb
styles (layer1) update styling of ui for IE11,mobile,desktop
potench Aug 19, 2020
ca12d28
fix (ui: saveButton) show-hide saveButton when there is a change to s…
potench Aug 19, 2020
875a054
refactor (logging) update logging for debug mode
potench Aug 20, 2020
6093e67
feat (logging) add logging/debugging from DPL
potench Aug 21, 2020
6b25c4e
docs (readme) update docs for monitoring/logging
potench Aug 21, 2020
a27b720
feat (ui: layer3) add vendors-list in layer3
potench Aug 24, 2020
848c83a
refactor (store: vendors) use vendors instead of vendorIds because ve…
potench Aug 24, 2020
76daeeb
fix (store: hasConsentedAll) update hasConsentedAll to also check ven…
potench Aug 24, 2020
50a6ea4
data (vendor-list) pull latest vendor-lists from IAB remote
potench Aug 24, 2020
144d809
feat (localization) adds custom localization
potench Aug 28, 2020
c868995
refactor (events) use CustomEvent instead of MessageEvent for better …
potench Aug 28, 2020
502a5a7
feat (translations) add all custom translation files
potench Aug 28, 2020
05de428
fix (loader) string replace with regex for IE11 polyfill if no polyfi…
potench Aug 28, 2020
12cac03
refactor (translations) update custom translations for da,de,es,fr,it…
potench Aug 28, 2020
fbf8808
refactor (env) remove unused packages and update privacy policy styling
potench Aug 28, 2020
8f1fdfc
upstream merge
potench Aug 28, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"sourceMaps": true,
"presets": ["@babel/preset-env"],
"plugins": [
["@babel/plugin-proposal-decorators", {"legacy": true}],
["@babel/plugin-transform-object-assign"],
["@babel/plugin-transform-react-jsx", {"pragma": "h"}],
["@babel/plugin-proposal-class-properties"],
["@babel/plugin-syntax-object-rest-spread"]
]
"sourceMaps": true,
"presets": ["@babel/preset-env"],
"plugins": [
["@babel/plugin-proposal-decorators", { "legacy": true }],
["@babel/plugin-transform-async-to-generator"],
["@babel/plugin-transform-object-assign"],
["@babel/plugin-transform-react-jsx", { "pragma": "h" }],
["@babel/plugin-proposal-class-properties"],
["@babel/plugin-syntax-object-rest-spread"]
]
}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [2.0.0](https://github.com/openmail/system1-cmp/compare/v1.5.6...v2.0.0) (2020-08-14)

### Refactor

- [x] Introduce new CMP based on TCF 2.0 framework

## [1.5.7](https://github.com/openmail/system1-cmp/compare/v1.5.6...v1.5.7) (2020-08-17)

### Fix
Expand Down
Loading