@justuno/template-library
Advanced tools
| /// <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; |
@@ -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
5121075
0.27%99472
0.02%112
-2.61%