Socket
Socket
Sign inDemoInstall

koa-rtapi

Package Overview
Dependencies
6
Maintainers
1
Versions
71
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.54 to 1.1.55

4

code/coder/api.js

@@ -29,3 +29,5 @@ /*<%#

// <%# for (const c of columns) { %>
{ field: '<%= c.COLUMN_NAME %>', name: '<%= c.COLUMN_COMMENT || c.COLUMN_NAME %>', show: true, sortEnable: false, width: 100 },
// <%# const name = c.COLUMN_NAME; %>
// <%# const nick = (c.COLUMN_COMMENT || name).substr(0,20); %>
{ field: '<%= name %>', name: '<%= nick %>', show: true, sortEnable: false, width: 200 },
// <%# } %>

@@ -32,0 +34,0 @@ ],

@@ -11,3 +11,12 @@

ctx.view.build('目录');
ctx.el.querySelectorAll('.item').forEach(el => {
el.addEventListener('click', function () {
ctx.el.querySelectorAll('.hover').forEach(el2 => {
el2.classList.remove('hover');
});
el.classList.add('hover');
});
});
}
});

@@ -309,3 +309,3 @@

var row = t.selectedRow;
if (fn(row)) { t.Page.close();}
if (fn(row)) { t.Page.close(); }
}

@@ -392,2 +392,8 @@ },

// 字段太多时使用自定义宽度和经典样式
if (List.fields.length > 5) {
List.showMode = 'definded';
List.tableStyle = 'classic';
}
var condition = {};

@@ -421,2 +427,3 @@ if (Search) {

if (v.indexOf('\n') > -1) { v = v.split('\n')[0] + '…'; }
if (v.length > 100) { v = v.substr(0, 100) + '…'; }
return xf.el('div', { innerText: v }).innerHTML;

@@ -423,0 +430,0 @@ }

{
"name": "koa-rtapi",
"version": "1.1.54",
"version": "1.1.55",
"description": "koa api in rtworld company",

@@ -5,0 +5,0 @@ "main": "index.js",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc