Socket
Socket
Sign inDemoInstall

noodl-types

Package Overview
Dependencies
Maintainers
1
Versions
240
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

noodl-types - npm Package Compare versions

Comparing version 1.0.68 to 1.0.69

6

dist/componentTypes.d.ts

@@ -5,3 +5,3 @@ import { ActionObject } from './actionTypes';

import { ActionChain, EmitObject, GotoObject, Path, TextBoardObject } from './uncategorizedTypes';
export declare type AnyComponentObject = ButtonComponentObject | DividerComponentObject | EcosDocComponentObject | FooterComponentObject | HeaderComponentObject | ImageComponentObject | LabelComponentObject | ListComponentObject | ListItemComponentObject | MapComponentObject | PageComponentObject | PluginComponentObject | PluginHeadComponentObject | PluginBodyTailComponentObject | PopUpComponentObject | RegisterComponentObject | SelectComponentObject | ScrollViewComponentObject | TextFieldComponentObject | TextViewComponentObject | VideoComponentObject | ViewComponentObject;
export declare type AnyComponentObject = ButtonComponentObject | DividerComponentObject | EcosDocComponentObject | FooterComponentObject | HeaderComponentObject | ImageComponentObject | LabelComponentObject | ListComponentObject | ListItemComponentObject | MapComponentObject | PageComponentObject | PluginComponentObject | PluginHeadComponentObject | PluginBodyTopComponentObject | PluginBodyTailComponentObject | PopUpComponentObject | RegisterComponentObject | SelectComponentObject | ScrollViewComponentObject | TextFieldComponentObject | TextViewComponentObject | VideoComponentObject | ViewComponentObject;
export declare type UncommonComponentObjectProps = {

@@ -102,2 +102,6 @@ [key in EventType]: ActionChain;

}
export interface PluginBodyTopComponentObject extends ComponentObject, Pick<UncommonComponentObjectProps, 'path'> {
type: 'pluginBodyTop';
[key: string]: any;
}
export interface PluginBodyTailComponentObject extends ComponentObject, Pick<UncommonComponentObjectProps, 'path'> {

@@ -104,0 +108,0 @@ type: 'pluginBodyTail';

@@ -140,2 +140,3 @@ import { StyleObject } from './styleTypes';

pluginHead(value: unknown): value is T.PluginHeadComponentObject;
pluginBodyTop(value: unknown): value is T.PluginBodyTopComponentObject;
pluginBodyTail(value: unknown): value is T.PluginBodyTailComponentObject;

@@ -142,0 +143,0 @@ popUp(value: unknown): value is T.PopUpComponentObject;

@@ -146,2 +146,5 @@ "use strict";

},
pluginBodyTop: function (value) {
return u.isObj(value) && value.type === 'pluginBodyTop';
},
pluginBodyTail: function (value) {

@@ -148,0 +151,0 @@ return u.isObj(value) && value.type === 'pluginBodyTail';

2

package.json
{
"name": "noodl-types",
"version": "1.0.68",
"version": "1.0.69",
"description": "NOODL TypeScript Definitions",

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

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