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

@form-extendable/lib

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@form-extendable/lib - npm Package Compare versions

Comparing version 0.1.26 to 0.1.27

package-tar/form-extendable-lib-0.1.27.tgz

4

dist/IComponentMap.d.ts

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

import { EFilterType, IFile } from '@react_db_client/constants.client-types';
import { EFilterType, IFile, Uid } from '@react_db_client/constants.client-types';
import { TFieldReactComponent } from './IField';

@@ -14,3 +14,3 @@ import { IHeadingBool, IHeadingButton, IHeadingDate, IHeadingDict, IHeadingEmbedded, IHeadingFile, IHeadingFileMulti, IHeadingNumber, IHeadingReference, IHeadingReferenceMulti, IHeadingSelect, IHeadingSelectMulti, IHeadingSelectSearch, IHeadingText, IHeadingTextArea, IHeadingVideo, TMultiSelectValue } from './IHeading';

[EFilterType.reference]: () => TFieldReactComponent<any, IHeadingReference<any> | IHeadingReferenceMulti<any>>;
[EFilterType.select]: () => TFieldReactComponent<string, IHeadingSelect>;
[EFilterType.select]: () => TFieldReactComponent<Uid, IHeadingSelect>;
[EFilterType.selectMulti]: () => TFieldReactComponent<TMultiSelectValue, IHeadingSelectMulti>;

@@ -17,0 +17,0 @@ [EFilterType.file]: () => TFieldReactComponent<IFile, IHeadingFile>;

/// <reference types="react" />
import { Uid } from '@react_db_client/constants.client-types';
import { THeading } from './IHeading';

@@ -10,4 +9,3 @@ export interface IFieldProps<V, H extends THeading<V> = THeading<V>> {

}
export interface IFieldComponentProps<V> {
uid: Uid;
export interface IFieldComponentPropsBase<V> {
key?: string;

@@ -21,2 +19,3 @@ value: V | null;

}
export declare type TFieldReactComponent<V, H extends THeading<V>> = React.FC<IFieldComponentProps<V> & H>;
export declare type IFieldComponentProps<V, H extends THeading<V>> = IFieldComponentPropsBase<V> & H;
export declare type TFieldReactComponent<V, H extends THeading<V>> = React.FC<IFieldComponentProps<V, H>>;

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

import { Uid } from '@react_db_client/constants.client-types';
import { THeading } from './IHeading';

@@ -11,4 +10,3 @@

export interface IFieldComponentProps<V> {
uid: Uid;
export interface IFieldComponentPropsBase<V> {
key?: string;

@@ -23,4 +21,6 @@ value: V | null;

export type IFieldComponentProps <V, H extends THeading<V>> = IFieldComponentPropsBase<V> & H;
export type TFieldReactComponent<V, H extends THeading<V>> = React.FC<
IFieldComponentProps<V> & H
IFieldComponentProps<V, H>
>;
{
"name": "@form-extendable/lib",
"version": "0.1.26",
"version": "0.1.27",
"homepage": "https://bit.dev/samnbuk/form-extendable/lib",

@@ -9,7 +9,7 @@ "main": "dist/index.js",

"name": "lib",
"version": "0.1.26"
"version": "0.1.27"
},
"dependencies": {
"core-js": "^3.0.0",
"@react_db_client/constants.client-types": "0.4.3"
"@react_db_client/constants.client-types": "0.4.4"
},

@@ -16,0 +16,0 @@ "devDependencies": {

Sorry, the diff of this file is not supported yet

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