Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@justuno/template-library

Package Overview
Dependencies
Maintainers
7
Versions
157
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@justuno/template-library - npm Package Compare versions

Comparing version
0.2.34
to
0.2.37
+7
dist/types/compone...nderer/NodeTypes/AttentiveIdentify.d.ts
/// <reference types="react" />
export interface DroppedProps {
isConnectable?: boolean;
data?: any;
}
declare const Dropped: ({ data: tile, isConnectable }: DroppedProps) => JSX.Element;
export default Dropped;
/// <reference types="react" />
export interface DroppedProps {
isConnectable?: boolean;
data?: any;
}
declare const Dropped: ({ data: tile, isConnectable }: DroppedProps) => JSX.Element;
export default Dropped;
+2
-0

@@ -21,3 +21,5 @@ /// <reference types="react" />

hubspotIdentify: ({ data: tile, isConnectable }: import("./HubspotIdentify").DroppedProps) => JSX.Element;
attentiveIdentify: ({ data: tile, isConnectable }: import("./AttentiveIdentify").DroppedProps) => JSX.Element;
dotdigitalIdentify: ({ data: tile, isConnectable }: import("./DotdigitalIdentify").DroppedProps) => JSX.Element;
};
export default NodeTypes;
+1
-1
{
"name": "@justuno/template-library",
"version": "0.2.34",
"version": "0.2.37",
"main": "dist/index.js",

@@ -5,0 +5,0 @@ "type": "module",

import React from "react";
interface AgencyCardProps {
logoURL: string;
title: string;
services: any;
onContact: () => void;
types: string[];
}
declare const AgencyCard: React.FC<AgencyCardProps>;
export default AgencyCard;
/// <reference types="react" />
interface AndGroupContentVisualProps {
type: string;
title: string;
content: {
[key: string]: any;
};
hideOverflow?: boolean;
}
declare const AndGroupContentVisual: ({ type, title, content, hideOverflow, ...props }: AndGroupContentVisualProps) => JSX.Element;
export default AndGroupContentVisual;
/// <reference types="react" />
declare const DesignEmptyCard: () => JSX.Element;
export default DesignEmptyCard;
import React from "react";
interface EmptyMessageProps {
entity: string;
isLoading?: boolean;
}
declare const EmptyMessage: React.FC<EmptyMessageProps>;
export default EmptyMessage;
import React, { ReactNode } from "react";
export interface TemplateState {
update: (attrs: Partial<TemplateState>) => void;
requirements: {
type: string;
message: string;
}[];
tileHeights: {
[key: string]: number;
};
}
export declare const TemplateContext: React.Context<TemplateState | undefined>;
export declare const TemplateProvider: React.FC<{
children: ReactNode;
}>;
export declare const useTemplateState: () => TemplateState;

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

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

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

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