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

@dbp-toolkit/data-table-view

Package Overview
Dependencies
Maintainers
3
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dbp-toolkit/data-table-view - npm Package Compare versions

Comparing version 0.1.3 to 0.2.0

dist/shared/data-table-view.d022de99.es.js

2

dist/dbp-data-table-view.js

@@ -1,4 +0,4 @@

import { d as defineCustomElement, D as DataTableView } from './shared/data-table-view.478e5749.es.js';
import { d as defineCustomElement, D as DataTableView } from './shared/data-table-view.d022de99.es.js';
defineCustomElement('dbp-data-table-view', DataTableView);
//# sourceMappingURL=dbp-data-table-view.js.map
{
"name": "@dbp-toolkit/data-table-view",
"homepage": "https://gitlab.tugraz.at/dbp/web-components/toolkit/-/tree/master/packages/data-table-view",
"version": "0.1.3",
"version": "0.2.0",
"main": "src/index.js",

@@ -37,4 +37,4 @@ "license": "LGPL-2.1-or-later",

"dependencies": {
"@dbp-toolkit/auth": "^0.1.6",
"@dbp-toolkit/common": "^0.1.4",
"@dbp-toolkit/auth": "^0.2.0",
"@dbp-toolkit/common": "^0.2.0",
"@open-wc/scoped-elements": "^1.3.2",

@@ -49,4 +49,4 @@ "datatables.net-buttons": "^1.6.1",

"jszip": "^3.2.2",
"lit-element": "^2.3.1",
"lit-html": "^1.1.1"
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
},

@@ -68,3 +68,3 @@ "scripts": {

},
"gitHead": "0e9ed70222d27095f46d05bcf62377846cfadf86"
"gitHead": "6bae679f905cfbd07883cd2de3a3cce7b44b1ba2"
}

@@ -52,3 +52,4 @@ import $ from 'jquery';

static get properties() {
return this.getProperties({
return {
...super.properties,
lang: { type: String },

@@ -66,3 +67,3 @@ table: { type: Object, attribute: false },

defaultOrder: { type: Array, attribute: 'default-order'}
});
};
}

@@ -69,0 +70,0 @@

@@ -27,7 +27,8 @@ import {AuthKeycloak, LoginButton} from '@dbp-toolkit/auth';

static get properties() {
return this.getProperties({
return {
...super.properties,
lang: { type: String },
entryPointUrl: { type: String, attribute: 'entry-point-url' },
noAuth: { type: Boolean, attribute: 'no-auth' },
});
};
}

@@ -142,8 +143,8 @@

getAuthComponentHtml() {
return this.noAuth ? html`<dbp-login-button lang="${this.lang}" show-image></dbp-login-button>` : html`
return this.noAuth ? html`<dbp-login-button subscribe="auth" lang="${this.lang}" show-image></dbp-login-button>` : html`
<div class="container">
<dbp-auth-keycloak lang="${this.lang}" entry-point-url="${this.entryPointUrl}" silent-check-sso-redirect-uri="/dist/silent-check-sso.html"
<dbp-auth-keycloak subscribe="requested-login-status" lang="${this.lang}" entry-point-url="${this.entryPointUrl}" silent-check-sso-redirect-uri="/dist/silent-check-sso.html"
url="https://auth-dev.tugraz.at/auth" realm="tugraz"
client-id="auth-dev-mw-frontend-local" load-person try-login></dbp-auth-keycloak>
<dbp-login-button lang="${this.lang}" show-image></dbp-login-button>
<dbp-login-button subscribe="auth" lang="${this.lang}" show-image></dbp-login-button>
</div>

@@ -150,0 +151,0 @@ `;

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

Sorry, the diff of this file is not supported yet

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