New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@locokit/lck-glossary

Package Overview
Dependencies
Maintainers
2
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@locokit/lck-glossary - npm Package Compare versions

Comparing version 0.2.6 to 0.2.7

5

CHANGELOG.md
# CHANGELOG
**v0.2.7**
**Feature**
* improve ActionButton settings: add props to have custom content notification
**v0.2.6**

@@ -4,0 +9,0 @@

@@ -51,2 +51,6 @@ export declare enum COLUMN_TYPE {

}
export declare enum TYPE_PAGE {
PAGEDETAIL = "PageDetail",
PAGE = "Page"
}
export declare enum USER_PROFILE {

@@ -208,5 +212,10 @@ ADMIN = "ADMIN",

pageRedirectId?: string;
typePageTo: TYPE_PAGE;
pageQueryFieldId?: string;
displayFieldId?: string;
displayFieldValue?: boolean;
notificationSuccessTitle?: string;
notificationSuccessDescription?: string;
notificationErrorTitle?: string;
notificationErrorDescription?: string;
}

@@ -213,0 +222,0 @@ export interface BlockActionButton extends Block {

7

lib/index.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.GEOMETRY_TYPE = exports.ERROR_LABEL = exports.ERROR_CODE = exports.MEDIA_TYPE = exports.BLOCK_TYPE = exports.GROUP_ROLE = exports.USER_PROFILE = exports.AGGREGATE_FUNCTION = exports.TEXT_ALIGN_CLASS = exports.COLOR_CLASS = exports.ACTION_BUTTON_TYPE = exports.COLUMN_GEO_TYPE = exports.COLUMN_TYPE = void 0;
exports.GEOMETRY_TYPE = exports.ERROR_LABEL = exports.ERROR_CODE = exports.MEDIA_TYPE = exports.BLOCK_TYPE = exports.GROUP_ROLE = exports.USER_PROFILE = exports.TYPE_PAGE = exports.AGGREGATE_FUNCTION = exports.TEXT_ALIGN_CLASS = exports.COLOR_CLASS = exports.ACTION_BUTTON_TYPE = exports.COLUMN_GEO_TYPE = exports.COLUMN_TYPE = void 0;
/* eslint-disable camelcase */

@@ -61,2 +61,7 @@ var COLUMN_TYPE;

})(AGGREGATE_FUNCTION = exports.AGGREGATE_FUNCTION || (exports.AGGREGATE_FUNCTION = {}));
var TYPE_PAGE;
(function (TYPE_PAGE) {
TYPE_PAGE["PAGEDETAIL"] = "PageDetail";
TYPE_PAGE["PAGE"] = "Page";
})(TYPE_PAGE = exports.TYPE_PAGE || (exports.TYPE_PAGE = {}));
var USER_PROFILE;

@@ -63,0 +68,0 @@ (function (USER_PROFILE) {

2

package.json
{
"name": "@locokit/lck-glossary",
"version": "0.2.6",
"version": "0.2.7",
"description": "Glossary for Low-Code Kit platform",

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

@@ -57,2 +57,7 @@ /* eslint-disable camelcase */

export enum TYPE_PAGE {
PAGEDETAIL = 'PageDetail',
PAGE = 'Page',
}
export enum USER_PROFILE {

@@ -240,5 +245,10 @@ ADMIN = 'ADMIN',

pageRedirectId?: string; // uuid page detail
typePageTo: TYPE_PAGE; // Type page, needed for router
pageQueryFieldId?: string; // uuid from a relation_between_table column, allows to get data form another table
displayFieldId?: string; // field id to compare with conditionalDisplayFieldValue
displayFieldValue?: boolean; // value to compare to display block (only boolean for now)
notificationSuccessTitle?: string; // Message title display in the notification when action succeed
notificationSuccessDescription?: string; // Message description display in the notification when action succeed
notificationErrorTitle?: string; // Message title display in the notification when action failed
notificationErrorDescription?: string; // Message title display in the notification when action failed
}

@@ -245,0 +255,0 @@

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