Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@bruit/component

Package Overview
Dependencies
Maintainers
3
Versions
162
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bruit/component - npm Package Compare versions

Comparing version 2.0.4-plop to 2.0.9-plop

2

dist/collection/collection-manifest.json
{
"entries": [
"components/bruit-rating/bruit-rating.js",
"components/bruit-io/bruit-io.js",
"components/bruit-rating/bruit-rating.js",
"components/bruit-modal/bruit-modal.js"

@@ -6,0 +6,0 @@ ],

@@ -1,2 +0,2 @@

import { Bruit } from '@bruit/core/src/bruit';
import { Bruit } from '@bruit/core/lib/core.esm';
import { BrtFieldType } from '@bruit/types/dist/enums/brt-field-type';

@@ -148,6 +148,6 @@ import { h } from '@stencil/core';

}
sendFeedback(data = [], dataFn, agreement = false, screenshotConfig) {
async sendFeedback(data = [], dataFn, agreement = false, screenshotConfig) {
return Bruit.sendFeedback(data, dataFn, agreement, screenshotConfig);
}
sendError(error) {
async sendError(error) {
return Bruit.sendError(error);

@@ -154,0 +154,0 @@ }

@@ -62,28 +62,60 @@ (function () {

var s2 = document.createElement("script");
s2.type = "text/javascript";
s2.setAttribute('type', 'module');
s2.src = 'https://unpkg.com/@bruit/core@2.0.2-plop/lib/core.js?' + paramsStr;
s2.onload = function () {
var s = document.createElement("script");
s.type = "text/javascript";
s.setAttribute('type', 'module');
s.src = baseUrl + version + '/dist/bruit/bruit.esm.js';
s.onload = function () {
var modal = document.getElementsByTagName('bruit-core');
if (modal.length <= 0) {
var bruitCore = document.createElement('bruit-core');
// attach bruitCore with url params
bruitCore.config = params;
document.body.appendChild(bruitCore);
}
};
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);
var s = document.createElement("script");
s.type = "text/javascript";
s.setAttribute('type', 'module');
s.src = baseUrl + version + '/dist/bruit/bruit.esm.js';
s.onload = function () {
var modal = document.getElementsByTagName('bruit-core');
if (modal.length <= 0) {
var bruitCore = document.createElement('bruit-core');
// attach bruitCore with url params
bruitCore.config = params;
document.body.appendChild(bruitCore);
}
};
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s2, x);
x.parentNode.insertBefore(s, x);
// var s2 = document.createElement("script");
// s2.type = "text/javascript";
// s2.setAttribute('type', 'module');
// s2.src = 'https://unpkg.com/@bruit/core@2.0.2-plop/lib/core.js?' + paramsStr;
// s2.onload = function () {
// var s = document.createElement("script");
// s.type = "text/javascript";
// s.setAttribute('type', 'module');
// s.src = baseUrl + version + '/dist/bruit/bruit.esm.js';
// s.onload = function () {
// var modal = document.getElementsByTagName('bruit-core');
// if (modal.length <= 0) {
// var bruitCore = document.createElement('bruit-core');
// // attach bruitCore with url params
// bruitCore.config = params;
// document.body.appendChild(bruitCore);
// }
// };
// var x = document.getElementsByTagName('script')[0];
// x.parentNode.insertBefore(s, x);
// };
// var x = document.getElementsByTagName('script')[0];
// x.parentNode.insertBefore(s2, x);
}
})();

@@ -62,28 +62,60 @@ (function () {

var s2 = document.createElement("script");
s2.type = "text/javascript";
s2.setAttribute('type', 'module');
s2.src = 'https://unpkg.com/@bruit/core@2.0.2-plop/lib/core.js?' + paramsStr;
s2.onload = function () {
var s = document.createElement("script");
s.type = "text/javascript";
s.setAttribute('type', 'module');
s.src = baseUrl + version + '/dist/bruit/bruit.esm.js';
s.onload = function () {
var modal = document.getElementsByTagName('bruit-core');
if (modal.length <= 0) {
var bruitCore = document.createElement('bruit-core');
// attach bruitCore with url params
bruitCore.config = params;
document.body.appendChild(bruitCore);
}
};
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);
var s = document.createElement("script");
s.type = "text/javascript";
s.setAttribute('type', 'module');
s.src = baseUrl + version + '/dist/bruit/bruit.esm.js';
s.onload = function () {
var modal = document.getElementsByTagName('bruit-core');
if (modal.length <= 0) {
var bruitCore = document.createElement('bruit-core');
// attach bruitCore with url params
bruitCore.config = params;
document.body.appendChild(bruitCore);
}
};
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s2, x);
x.parentNode.insertBefore(s, x);
// var s2 = document.createElement("script");
// s2.type = "text/javascript";
// s2.setAttribute('type', 'module');
// s2.src = 'https://unpkg.com/@bruit/core@2.0.2-plop/lib/core.js?' + paramsStr;
// s2.onload = function () {
// var s = document.createElement("script");
// s.type = "text/javascript";
// s.setAttribute('type', 'module');
// s.src = baseUrl + version + '/dist/bruit/bruit.esm.js';
// s.onload = function () {
// var modal = document.getElementsByTagName('bruit-core');
// if (modal.length <= 0) {
// var bruitCore = document.createElement('bruit-core');
// // attach bruitCore with url params
// bruitCore.config = params;
// document.body.appendChild(bruitCore);
// }
// };
// var x = document.getElementsByTagName('script')[0];
// x.parentNode.insertBefore(s, x);
// };
// var x = document.getElementsByTagName('script')[0];
// x.parentNode.insertBefore(s2, x);
}
})();
{
"name": "@bruit/component",
"version": "2.0.4-plop",
"version": "2.0.9-plop",
"description": "send your feedbacks with bruit.io",

@@ -54,5 +54,5 @@ "keywords": [

"dependencies": {
"@bruit/core": "^2.0.4-plop",
"@bruit/core": "^2.0.9-plop",
"@bruit/types": "0.3.2-2"
}
}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc