@boxyhq/react-ui
Advanced tools
Comparing version 3.3.14 to 3.3.15
@@ -32,3 +32,6 @@ import { ConfirmationPromptProps, TableCol } from '../../shared/types'; | ||
errorCallback?: (errMessage: string) => void; | ||
successCallback?: () => void; | ||
successCallback?: (info: { | ||
operation: 'CREATE'; | ||
connection: SAMLSSOConnection | OIDCSSOConnection; | ||
}) => void; | ||
cancelCallback?: () => void; | ||
@@ -47,2 +50,3 @@ variant?: 'basic' | 'advanced'; | ||
input?: string; | ||
textarea?: string; | ||
radioContainer?: string; | ||
@@ -193,3 +197,5 @@ label?: string; | ||
errorCallback: (errMsg: string) => void; | ||
successCallback: (successMsg: string) => void; | ||
successCallback: (info: { | ||
operation: 'UPDATE'; | ||
}) => void; | ||
classNames?: { | ||
@@ -218,3 +224,6 @@ container?: string; | ||
errorCallback: (errMessage: string) => void; | ||
successCallback: () => void; | ||
successCallback: (info: { | ||
operation: 'UPDATE' | 'DELETE'; | ||
connection?: OIDCSSOConnection; | ||
}) => void; | ||
cancelCallback?: () => void; | ||
@@ -239,2 +248,3 @@ copyDoneCallback: () => void; | ||
input?: string; | ||
textarea?: string; | ||
section?: string; | ||
@@ -250,3 +260,6 @@ }; | ||
errorCallback: (errMessage: string) => void; | ||
successCallback: () => void; | ||
successCallback: (info: { | ||
operation: 'UPDATE' | 'DELETE'; | ||
connection?: SAMLSSOConnection; | ||
}) => void; | ||
cancelCallback?: () => void; | ||
@@ -268,2 +281,3 @@ copyDoneCallback: () => void; | ||
input?: string; | ||
textarea?: string; | ||
section?: string; | ||
@@ -270,0 +284,0 @@ }; |
@@ -9,4 +9,7 @@ import { ConfirmationPromptProps } from '../../shared/types'; | ||
defaultWebhookEndpoint?: string | undefined; | ||
successCallback: () => void; | ||
errorCallback: (errMsg: string) => void; | ||
successCallback?: (info: { | ||
operation: 'CREATE'; | ||
connection?: Directory; | ||
}) => void; | ||
errorCallback?: (errMsg: string) => void; | ||
cancelCallback?: () => void; | ||
@@ -61,3 +64,6 @@ classNames?: { | ||
errorCallback: (errMessage: string) => void; | ||
successCallback: () => void; | ||
successCallback: (info: { | ||
operation: 'UPDATE' | 'DELETE'; | ||
connection?: Directory; | ||
}) => void; | ||
cancelCallback?: () => void; | ||
@@ -88,3 +94,5 @@ deleteCallback: () => void; | ||
errorCallback: (errMsg: string) => void; | ||
successCallback: (successMsg: string) => void; | ||
successCallback: (info: { | ||
operation: 'UPDATE'; | ||
}) => void; | ||
classNames?: { | ||
@@ -91,0 +99,0 @@ container?: string; |
{ | ||
"name": "@boxyhq/react-ui", | ||
"description": "React UI components from BoxyHQ", | ||
"version": "3.3.14", | ||
"version": "3.3.15", | ||
"type": "module", | ||
@@ -61,3 +61,3 @@ "keywords": [ | ||
"@mdx-js/react": "2.3.0", | ||
"@rollup/plugin-typescript": "11.1.4", | ||
"@rollup/plugin-typescript": "11.1.5", | ||
"@types/node": "20.8.5", | ||
@@ -64,0 +64,0 @@ "@types/react": "18.2.25", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1015201
6292