@ebrains/react 0.3.0-alpha.0 → 0.4.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{color-0ba8ed56.esm.js → color-bb472c37.esm.js} +2 -2
- package/eds-accordion_33.entry.esm.js +369 -0
- package/eds-card-project.entry.esm.js +1 -1
- package/eds-card-section.entry.esm.js +4 -4
- package/eds-card-tags.entry.esm.js +1 -1
- package/eds-card-tool.entry.esm.js +1 -1
- package/eds-card-wrapper.entry.esm.js +4 -4
- package/eds-code-block.entry.esm.js +55 -8
- package/eds-matomo-notice.entry.esm.js +1 -1
- package/eds-pagination_2.entry.esm.js +34 -17
- package/eds-rating.entry.esm.js +7 -9
- package/eds-tabs-content.entry.esm.js +1 -1
- package/eds-tabs.entry.esm.js +1 -1
- package/eds-timeline.entry.esm.js +6 -5
- package/eds-tooltip.entry.esm.js +13 -3
- package/eds-trl.entry.esm.js +9 -10
- package/index.esm.js +1 -1
- package/index.esm2.js +4 -29
- package/package.json +1 -1
- package/src/components.d.ts +0 -1
- package/eds-accordion.entry.esm.js +0 -132
- package/eds-alert.entry.esm.js +0 -102
- package/eds-avatar_17.entry.esm.js +0 -209
- package/eds-card-desc_3.entry.esm.js +0 -129
- package/eds-card-generic.entry.esm.js +0 -125
- package/eds-form.entry.esm.js +0 -374
- package/eds-frame.entry.esm.js +0 -117
- package/eds-input_7.entry.esm.js +0 -518
- package/eds-modal.entry.esm.js +0 -114
|
@@ -267,7 +267,7 @@ function isMatomoAvailable() {
|
|
|
267
267
|
}
|
|
268
268
|
// General function to push data to Matomo
|
|
269
269
|
function pushToMatomo(action, ...args) {
|
|
270
|
-
console.log('Pushing Matomo')
|
|
270
|
+
//console.log('Pushing Matomo')
|
|
271
271
|
if (isMatomoAvailable()) {
|
|
272
272
|
window._paq.push([action, ...args]);
|
|
273
273
|
} else {
|
|
@@ -279,7 +279,7 @@ function sendAnalytics(eventData) {
|
|
|
279
279
|
var _a;
|
|
280
280
|
if (!isMatomoAvailable()) {
|
|
281
281
|
console.warn('Matomo is not available or not initialized.');
|
|
282
|
-
console.log(
|
|
282
|
+
//console.log({ ...eventData });
|
|
283
283
|
return;
|
|
284
284
|
}
|
|
285
285
|
// Conditionally build the name field
|