@zydon/common 2.2.86 → 2.2.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunk-UA7OPAW7.js +9 -0
- package/dist/chunk-WUQSPJPN.js +3 -0
- package/dist/components/CardWithHeader/index.d.ts +12 -0
- package/dist/components/CardWithHeader/index.js +7 -0
- package/dist/components/Common/index.js +2 -2
- package/dist/components/DataCards/index.js +1 -1
- package/dist/components/Label/index.js +2 -9
- package/dist/components/SelectableCards/index.js +2 -2
- package/dist/components/SwapList/index.js +1 -1
- package/dist/components/WebhookCard/index.d.ts +19 -0
- package/dist/components/WebhookCard/index.js +21 -0
- package/dist/components/form/Address/index.js +1 -1
- package/dist/components/form/SelectableCards/index.js +2 -2
- package/dist/components/form/UploadAvatarWithCrop/index.js +2 -2
- package/dist/components/form/UploadWithCrop/index.js +3 -3
- package/dist/components/upload/index.js +4 -4
- package/dist/theme/theme-provider.js +2 -2
- package/dist/types/webhook.d.ts +8 -1
- package/dist/types/webhook.js +1 -3
- package/package.json +1 -1
- package/dist/{chunk-YCGUJMU2.js → chunk-7LXE4GMB.js} +1 -1
- package/dist/{chunk-5N2ZRJH4.js → chunk-NKVUQRVX.js} +2 -2
- package/dist/{chunk-SQFAEHOV.js → chunk-NZHMIZFN.js} +1 -1
- package/dist/{chunk-HJX2QVAK.js → chunk-O3BL3FHF.js} +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { a } from './chunk-D27ND54J.js';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import d from '@mui/material/Box';
|
|
4
|
+
import { styled, lighten, useTheme } from '@mui/material/styles';
|
|
5
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
6
|
+
|
|
7
|
+
var l={root:"mnl__label__root",icon:"mnl__label__icon"};var i=styled(d)(({theme:o,ownerState:{color:t,variant:r}})=>{let e={...t==="default"&&{...r==="filled"&&{color:o.vars.palette.common.white,backgroundColor:o.vars.palette.text.primary,[a.dark]:{color:o.vars.palette.grey[800]}},...r==="outlined"&&{backgroundColor:"transparent",color:o.vars.palette.text.primary,border:`2px solid ${o.vars.palette.text.primary}`},...r==="soft"&&{color:o.vars.palette.text.secondary,border:`1px solid ${lighten(o.palette.grey[500],.32)}`},...r==="inverted"&&{color:o.vars.palette.grey[800],backgroundColor:o.vars.palette.grey[300]}}},a$1={...t!=="default"&&{...r==="filled"&&{color:o.vars.palette[t].contrastText,backgroundColor:o.vars.palette[t].main},...r==="outlined"&&{backgroundColor:"transparent",color:o.vars.palette[t].main,border:`2px solid ${o.vars.palette[t].main}`},...r==="soft"&&{color:o.vars.palette[t].dark,backgroundColor:lighten(o.palette[t].main,.84),[a.dark]:{color:o.vars.palette[t].light}},...r==="inverted"&&{color:o.vars.palette[t].darker,backgroundColor:o.vars.palette[t].lighter}}};return {height:24,minWidth:24,lineHeight:0,cursor:"default",alignItems:"center",whiteSpace:"nowrap",display:"inline-flex",justifyContent:"center",padding:o.spacing(0,.75),fontSize:o.typography.pxToRem(12),fontWeight:o.typography.fontWeightBold,borderRadius:o.shape.borderRadius*.75,transition:o.transitions.create("all",{duration:o.transitions.duration.shorter}),...e,...a$1}});var L=o=>o.charAt(0).toUpperCase()+o.slice(1),f=forwardRef(({children:o,color:t="default",variant:r="soft",startIcon:e,endIcon:a,sx:m,...b},g)=>{let y=useTheme(),p={width:16,height:16,"& svg, img":{width:1,height:1,objectFit:"cover"}};return jsxs(i,{ref:g,component:"span",className:l.root,ownerState:{color:t,variant:r},sx:{...e&&{pl:.75},...a&&{pr:.75},...m},theme:y,...b,children:[e&&jsx(d,{component:"span",className:l.icon,sx:{mr:.75,...p},children:e}),typeof o=="string"?L(o):o,a&&jsx(d,{component:"span",className:l.icon,sx:{ml:.75,...p},children:a})]})});f.displayName="Label";var H=f;
|
|
8
|
+
|
|
9
|
+
export { H as a };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var r=(e=>(e.GET="GET",e.POST="POST",e.PATCH="PATCH",e.DELETE="DELETE",e.PUT="PUT",e))(r||{}),T=[{label:"JSON",value:"JSON"},{label:"XML",value:"XML"},{label:"BIN\xC1RIO",value:"BYTEA"}],a=[{label:"PUT",value:"PUT"},{label:"POST",value:"POST"},{label:"GET",value:"GET"},{label:"DELETE",value:"DELETE"}],n=(e=>(e.GET="info",e.POST="success",e.PATCH="secondary",e.DELETE="error",e.PUT="warning",e))(n||{});
|
|
2
|
+
|
|
3
|
+
export { r as a, T as b, a as c, n as d };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { ReactNode } from 'react';
|
|
3
|
+
|
|
4
|
+
interface CardWithHeaderProps {
|
|
5
|
+
header: ReactNode;
|
|
6
|
+
empty?: boolean;
|
|
7
|
+
children: ReactNode;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
declare const CardWithHeader: ({ header, children, empty }: CardWithHeaderProps) => react_jsx_runtime.JSX.Element;
|
|
11
|
+
|
|
12
|
+
export { CardWithHeader as default };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import o from '@mui/material/Stack';
|
|
2
|
+
import { styled, alpha } from '@mui/material/styles';
|
|
3
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
4
|
+
|
|
5
|
+
var a=styled(o,{shouldForwardProp:r=>r!=="empty"})(({theme:r,empty:e})=>({position:"relative",border:`1px solid ${alpha(r.palette.grey[500],.2)}`,borderRadius:8,overflow:"hidden",...e&&{"&":{borderStyle:"dashed"},"& .row":{borderTopStyle:"dashed"}}})),d=styled(o)(({theme:r})=>({flexDirection:"row",justifyContent:"space-between",alignItems:"center",backgroundColor:"#FDFDFD",padding:12,color:r.palette.grey[500],"& .EditButton":{backgroundColor:"#fff",color:r.palette.text.primary,svg:{color:r.palette.primary.main}}}));var n=({header:r,children:e,empty:p})=>jsxs(a,{empty:p,children:[jsx(d,{children:r}),e]}),C=n;
|
|
6
|
+
|
|
7
|
+
export { C as default };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { a } from '../../chunk-
|
|
2
|
-
import '../../chunk-ZVXT3QOF.js';
|
|
1
|
+
import { a } from '../../chunk-O3BL3FHF.js';
|
|
3
2
|
import '../../chunk-GOC7PC2S.js';
|
|
4
3
|
import '../../chunk-MCT77MRN.js';
|
|
5
4
|
import '../../chunk-CFVUZ4S5.js';
|
|
6
5
|
import '../../chunk-CFYNJQGN.js';
|
|
6
|
+
import '../../chunk-ZVXT3QOF.js';
|
|
7
7
|
import { i } from '../../chunk-D27ND54J.js';
|
|
8
8
|
import { a as a$1 } from '../../chunk-NYMDPEVU.js';
|
|
9
9
|
import '../../chunk-RI5SVG3Y.js';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { c } from '../../chunk-QQB3DGHT.js';
|
|
2
|
-
import { a } from '../../chunk-EBTRMUBS.js';
|
|
3
2
|
import { a as a$1 } from '../../chunk-FK7DDO5L.js';
|
|
4
3
|
import { a as a$2 } from '../../chunk-ZODC2MGF.js';
|
|
5
4
|
import '../../chunk-ZDHXW74M.js';
|
|
6
5
|
import '../../chunk-D27ND54J.js';
|
|
6
|
+
import { a } from '../../chunk-EBTRMUBS.js';
|
|
7
7
|
import ct from '@mui/material/Pagination';
|
|
8
8
|
import C from '@mui/material/Stack';
|
|
9
9
|
import { useMemo } from 'react';
|
|
@@ -1,9 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
import
|
|
3
|
-
import d from '@mui/material/Box';
|
|
4
|
-
import { styled, lighten, useTheme } from '@mui/material/styles';
|
|
5
|
-
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
6
|
-
|
|
7
|
-
var l={root:"mnl__label__root",icon:"mnl__label__icon"};var i=styled(d)(({theme:o,ownerState:{color:t,variant:r}})=>{let e={...t==="default"&&{...r==="filled"&&{color:o.vars.palette.common.white,backgroundColor:o.vars.palette.text.primary,[a.dark]:{color:o.vars.palette.grey[800]}},...r==="outlined"&&{backgroundColor:"transparent",color:o.vars.palette.text.primary,border:`2px solid ${o.vars.palette.text.primary}`},...r==="soft"&&{color:o.vars.palette.text.secondary,border:`1px solid ${lighten(o.palette.grey[500],.32)}`},...r==="inverted"&&{color:o.vars.palette.grey[800],backgroundColor:o.vars.palette.grey[300]}}},a$1={...t!=="default"&&{...r==="filled"&&{color:o.vars.palette[t].contrastText,backgroundColor:o.vars.palette[t].main},...r==="outlined"&&{backgroundColor:"transparent",color:o.vars.palette[t].main,border:`2px solid ${o.vars.palette[t].main}`},...r==="soft"&&{color:o.vars.palette[t].dark,backgroundColor:lighten(o.palette[t].main,.84),[a.dark]:{color:o.vars.palette[t].light}},...r==="inverted"&&{color:o.vars.palette[t].darker,backgroundColor:o.vars.palette[t].lighter}}};return {height:24,minWidth:24,lineHeight:0,cursor:"default",alignItems:"center",whiteSpace:"nowrap",display:"inline-flex",justifyContent:"center",padding:o.spacing(0,.75),fontSize:o.typography.pxToRem(12),fontWeight:o.typography.fontWeightBold,borderRadius:o.shape.borderRadius*.75,transition:o.transitions.create("all",{duration:o.transitions.duration.shorter}),...e,...a$1}});var L=o=>o.charAt(0).toUpperCase()+o.slice(1),f=forwardRef(({children:o,color:t="default",variant:r="soft",startIcon:e,endIcon:a,sx:m,...b},g)=>{let y=useTheme(),p={width:16,height:16,"& svg, img":{width:1,height:1,objectFit:"cover"}};return jsxs(i,{ref:g,component:"span",className:l.root,ownerState:{color:t,variant:r},sx:{...e&&{pl:.75},...a&&{pr:.75},...m},theme:y,...b,children:[e&&jsx(d,{component:"span",className:l.icon,sx:{mr:.75,...p},children:e}),typeof o=="string"?L(o):o,a&&jsx(d,{component:"span",className:l.icon,sx:{ml:.75,...p},children:a})]})});f.displayName="Label";var H=f;
|
|
8
|
-
|
|
9
|
-
export { H as default };
|
|
1
|
+
export { a as default } from '../../chunk-UA7OPAW7.js';
|
|
2
|
+
import '../../chunk-D27ND54J.js';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export { a as default } from '../../chunk-
|
|
1
|
+
export { a as default } from '../../chunk-NZHMIZFN.js';
|
|
2
2
|
import '../../chunk-H5DYYBJN.js';
|
|
3
3
|
import '../../chunk-TWGGHTU5.js';
|
|
4
|
-
import '../../chunk-E5MGOPPQ.js';
|
|
5
4
|
import '../../chunk-2MVQI7NJ.js';
|
|
5
|
+
import '../../chunk-E5MGOPPQ.js';
|
|
6
6
|
import '../../chunk-ZDHXW74M.js';
|
|
7
7
|
import '../../chunk-NYMDPEVU.js';
|
|
8
8
|
import '../../chunk-RI5SVG3Y.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { a } from '../../chunk-H5DYYBJN.js';
|
|
2
2
|
import { a as a$1 } from '../../chunk-TWGGHTU5.js';
|
|
3
|
-
import { a as a$3 } from '../../chunk-E5MGOPPQ.js';
|
|
4
3
|
import { a as a$2 } from '../../chunk-2MVQI7NJ.js';
|
|
4
|
+
import { a as a$3 } from '../../chunk-E5MGOPPQ.js';
|
|
5
5
|
import '../../chunk-ZDHXW74M.js';
|
|
6
6
|
import { a as a$4 } from '../../chunk-NYMDPEVU.js';
|
|
7
7
|
import '../../chunk-RI5SVG3Y.js';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { HttpMethodStatus } from '../../types/webhook.js';
|
|
3
|
+
|
|
4
|
+
interface WebhookCardProps {
|
|
5
|
+
name?: string;
|
|
6
|
+
onChangeActive?(value: boolean): void;
|
|
7
|
+
onCreate(): void;
|
|
8
|
+
onEdit(): void;
|
|
9
|
+
onDelete(): void;
|
|
10
|
+
data?: {
|
|
11
|
+
active: boolean;
|
|
12
|
+
url: string;
|
|
13
|
+
method: HttpMethodStatus;
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
declare const WebhookCard: ({ onCreate, data, name, onChangeActive, onDelete, onEdit, }: WebhookCardProps) => react_jsx_runtime.JSX.Element;
|
|
18
|
+
|
|
19
|
+
export { WebhookCard as default };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { d } from '../../chunk-WUQSPJPN.js';
|
|
2
|
+
import { a as a$3 } from '../../chunk-UA7OPAW7.js';
|
|
3
|
+
import { a } from '../../chunk-HOMGLSVS.js';
|
|
4
|
+
import { a as a$2 } from '../../chunk-BYAPKKGB.js';
|
|
5
|
+
import '../../chunk-D27ND54J.js';
|
|
6
|
+
import { a as a$4 } from '../../chunk-NYMDPEVU.js';
|
|
7
|
+
import '../../chunk-RI5SVG3Y.js';
|
|
8
|
+
import { a as a$1 } from '../../chunk-ORYAES3Q.js';
|
|
9
|
+
import E from '@mui/material/Button';
|
|
10
|
+
import N from '@mui/material/FormControlLabel';
|
|
11
|
+
import O from '@mui/material/IconButton';
|
|
12
|
+
import w from '@mui/material/Link';
|
|
13
|
+
import l from '@mui/material/Stack';
|
|
14
|
+
import M from '@mui/material/Switch';
|
|
15
|
+
import m from '@mui/material/Typography';
|
|
16
|
+
import { styled } from '@mui/material/styles';
|
|
17
|
+
import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
|
|
18
|
+
|
|
19
|
+
var u=styled(l)(({theme:t})=>({flexDirection:"row",padding:12,backgroundColor:t.palette.grey[100],borderTopLeftRadius:"8px",borderTopRightRadius:"8px",borderBottom:`1px solid ${t.palette.grey[300]}`,button:{marginLeft:"auto"}})),h=styled(m)(({theme:t})=>({color:t.palette.grey[500],textTransform:"uppercase",fontSize:12,span:{color:t.palette.text.primary,fontWeight:700}})),b=styled(l)({padding:12}),x=styled(l)({padding:12,alignItems:"center",textAlign:"center"}),C=styled(l)(({theme:t})=>({flexDirection:"row",alignItems:"center",gap:8,fontSize:t.typography.body2.fontSize,color:t.palette.grey[500],padding:"8px 0"})),k=styled(a)(()=>({"& .MuiPopover-paper":{width:"144px",padding:"16px"},"& button":{justifyContent:"flex-start"}}));var z=({onCreate:t,data:r,name:v,onChangeActive:s,onDelete:I,onEdit:L})=>{let{active:i=!1}=r||{},p=a$1(),S=()=>{L(),p.onClose();},W=()=>{I(),p.onClose();};return jsxs(a$2,{padding:0,gap:0,sx:{opacity:r&&!i?.55:1},children:[jsxs(u,{children:[jsxs(l,{direction:"row",alignItems:"center",gap:2,children:[jsxs(h,{children:["EVENTO: ",jsx("span",{children:v||"NOME DO EVENTO"})]}),s&&r&&jsx(N,{control:jsx(M,{checked:i,onChange:(D,P)=>s(P),size:"small"}),label:jsx(a$3,{color:i?"success":"error",children:i?"Ativo":"Inativo"})})]}),r&&jsxs(Fragment,{children:[jsx(O,{onClick:p.onOpen,children:jsx(a$4,{icon:"MORE_OPTIONS_VERTICAL",color:"primary.grey",width:24})}),jsx(k,{open:p.open,onClose:p.onClose,children:jsxs(l,{gap:1,children:[jsx(E,{variant:"text",size:"small",fullWidth:!0,color:"inherit",startIcon:jsx(a$4,{icon:"PENCIL_EDIT",color:"grey"}),onClick:S,children:jsx(m,{variant:"body2",children:"Editar"})}),jsx(E,{variant:"text",size:"small",fullWidth:!0,color:"inherit",onClick:W,startIcon:jsx(a$4,{icon:"DELETE_MARK_BUTTON_02",color:"grey"}),children:jsx(m,{variant:"body2",children:"Limpar"})})]})})]})]}),jsx(b,{children:r?jsxs(C,{children:[jsx(a$3,{color:d[r.method],children:r.method}),r.url]}):jsxs(x,{children:[jsx(m,{variant:"caption",color:"text.disabled",children:"Ainda n\xE3o h\xE1 webhook vinculado."}),jsx(w,{component:"button",fontSize:12,underline:"always",onClick:t,type:"button",children:"Clique aqui para adicionar"})]})})]})},ro=z;
|
|
20
|
+
|
|
21
|
+
export { ro as default };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { a as a$2 } from '../../../chunk-VTHBHXM2.js';
|
|
2
1
|
import { a as a$1 } from '../../../chunk-2NMLQNWC.js';
|
|
2
|
+
import { a as a$2 } from '../../../chunk-VTHBHXM2.js';
|
|
3
3
|
import { a as a$3 } from '../../../chunk-YEMDMM7Y.js';
|
|
4
4
|
import '../../../chunk-ORLVNXTG.js';
|
|
5
5
|
import '../../../chunk-5XLDCZUN.js';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { a } from '../../../chunk-
|
|
1
|
+
import { a } from '../../../chunk-NZHMIZFN.js';
|
|
2
2
|
import '../../../chunk-H5DYYBJN.js';
|
|
3
3
|
import '../../../chunk-TWGGHTU5.js';
|
|
4
|
-
import '../../../chunk-E5MGOPPQ.js';
|
|
5
4
|
import '../../../chunk-2MVQI7NJ.js';
|
|
5
|
+
import '../../../chunk-E5MGOPPQ.js';
|
|
6
6
|
import '../../../chunk-ZDHXW74M.js';
|
|
7
7
|
import '../../../chunk-NYMDPEVU.js';
|
|
8
8
|
import '../../../chunk-RI5SVG3Y.js';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { b } from '../../../chunk-
|
|
1
|
+
import { b } from '../../../chunk-7LXE4GMB.js';
|
|
2
2
|
import '../../../chunk-F6QH2HAT.js';
|
|
3
|
-
import '../../../chunk-ANAHA3L6.js';
|
|
4
3
|
import '../../../chunk-BVLXJPEW.js';
|
|
5
4
|
import '../../../chunk-74B3CVUD.js';
|
|
5
|
+
import '../../../chunk-ANAHA3L6.js';
|
|
6
6
|
import '../../../chunk-T7I256S6.js';
|
|
7
7
|
import '../../../chunk-D27ND54J.js';
|
|
8
8
|
import '../../../chunk-NYMDPEVU.js';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { e } from '../../../chunk-
|
|
1
|
+
import { e } from '../../../chunk-NKVUQRVX.js';
|
|
2
2
|
import '../../../chunk-F6QH2HAT.js';
|
|
3
|
-
import '../../../chunk-ANAHA3L6.js';
|
|
4
3
|
import '../../../chunk-BVLXJPEW.js';
|
|
5
4
|
import '../../../chunk-74B3CVUD.js';
|
|
5
|
+
import '../../../chunk-ANAHA3L6.js';
|
|
6
6
|
import '../../../chunk-T7I256S6.js';
|
|
7
7
|
import '../../../chunk-FK7DDO5L.js';
|
|
8
|
-
import '../../../chunk-DMQW3LDF.js';
|
|
9
8
|
import '../../../chunk-D27ND54J.js';
|
|
9
|
+
import '../../../chunk-DMQW3LDF.js';
|
|
10
10
|
import '../../../chunk-NYMDPEVU.js';
|
|
11
11
|
import '../../../chunk-RI5SVG3Y.js';
|
|
12
12
|
import '../../../chunk-ILHUUK4X.js';
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
export { a as UploadAvatar, b as UploadAvatarWithCrop } from '../../chunk-
|
|
2
|
-
export { c as DeleteButton, a as MultiFilePreview, b as SingleFilePreview, d as Upload, e as UploadWithCrop } from '../../chunk-
|
|
1
|
+
export { a as UploadAvatar, b as UploadAvatarWithCrop } from '../../chunk-7LXE4GMB.js';
|
|
2
|
+
export { c as DeleteButton, a as MultiFilePreview, b as SingleFilePreview, d as Upload, e as UploadWithCrop } from '../../chunk-NKVUQRVX.js';
|
|
3
3
|
export { d as RejectionFiles } from '../../chunk-F6QH2HAT.js';
|
|
4
|
-
import '../../chunk-ANAHA3L6.js';
|
|
5
4
|
import '../../chunk-BVLXJPEW.js';
|
|
6
5
|
import '../../chunk-74B3CVUD.js';
|
|
6
|
+
import '../../chunk-ANAHA3L6.js';
|
|
7
7
|
import '../../chunk-T7I256S6.js';
|
|
8
8
|
import '../../chunk-FK7DDO5L.js';
|
|
9
|
-
import '../../chunk-DMQW3LDF.js';
|
|
10
9
|
import { i } from '../../chunk-D27ND54J.js';
|
|
10
|
+
import '../../chunk-DMQW3LDF.js';
|
|
11
11
|
import '../../chunk-NYMDPEVU.js';
|
|
12
12
|
import '../../chunk-RI5SVG3Y.js';
|
|
13
13
|
import '../../chunk-ILHUUK4X.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { a as default } from '../chunk-
|
|
2
|
-
import '../chunk-ZVXT3QOF.js';
|
|
1
|
+
export { a as default } from '../chunk-O3BL3FHF.js';
|
|
3
2
|
import '../chunk-GOC7PC2S.js';
|
|
4
3
|
import '../chunk-MCT77MRN.js';
|
|
5
4
|
import '../chunk-CFVUZ4S5.js';
|
|
6
5
|
import '../chunk-CFYNJQGN.js';
|
|
6
|
+
import '../chunk-ZVXT3QOF.js';
|
|
7
7
|
import '../chunk-D27ND54J.js';
|
package/dist/types/webhook.d.ts
CHANGED
|
@@ -41,5 +41,12 @@ declare const httpMethods: {
|
|
|
41
41
|
label: string;
|
|
42
42
|
value: HttpMethodStatus;
|
|
43
43
|
}[];
|
|
44
|
+
declare enum HttpConfigLabelMethodStatus {
|
|
45
|
+
GET = "info",
|
|
46
|
+
POST = "success",
|
|
47
|
+
PATCH = "secondary",
|
|
48
|
+
DELETE = "error",
|
|
49
|
+
PUT = "warning"
|
|
50
|
+
}
|
|
44
51
|
|
|
45
|
-
export { WebhookHeaders, WebhookType, contentType, httpMethods };
|
|
52
|
+
export { HttpConfigLabelMethodStatus, HttpMethodStatus, WebhookHeaders, WebhookType, contentType, httpMethods };
|
package/dist/types/webhook.js
CHANGED
|
@@ -1,3 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export { e as contentType, t as httpMethods };
|
|
1
|
+
export { d as HttpConfigLabelMethodStatus, a as HttpMethodStatus, b as contentType, c as httpMethods } from '../chunk-WUQSPJPN.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { d, g } from './chunk-F6QH2HAT.js';
|
|
2
|
-
import { e } from './chunk-ANAHA3L6.js';
|
|
3
2
|
import { a as a$3 } from './chunk-BVLXJPEW.js';
|
|
3
|
+
import { e } from './chunk-ANAHA3L6.js';
|
|
4
4
|
import { i } from './chunk-D27ND54J.js';
|
|
5
5
|
import { a } from './chunk-NYMDPEVU.js';
|
|
6
6
|
import { a as a$2 } from './chunk-KFZEM7KS.js';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { c, a as a$1, b, e as e$1, h, d, f } from './chunk-F6QH2HAT.js';
|
|
2
|
-
import { e } from './chunk-ANAHA3L6.js';
|
|
3
2
|
import { a as a$5 } from './chunk-BVLXJPEW.js';
|
|
3
|
+
import { e } from './chunk-ANAHA3L6.js';
|
|
4
4
|
import { a as a$2 } from './chunk-FK7DDO5L.js';
|
|
5
|
-
import { j } from './chunk-DMQW3LDF.js';
|
|
6
5
|
import { i, o } from './chunk-D27ND54J.js';
|
|
6
|
+
import { j } from './chunk-DMQW3LDF.js';
|
|
7
7
|
import { a } from './chunk-NYMDPEVU.js';
|
|
8
8
|
import { a as a$4 } from './chunk-KFZEM7KS.js';
|
|
9
9
|
import { a as a$3 } from './chunk-X24QANPC.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { a as a$1 } from './chunk-H5DYYBJN.js';
|
|
2
2
|
import { a as a$3 } from './chunk-TWGGHTU5.js';
|
|
3
|
-
import { a as a$2 } from './chunk-E5MGOPPQ.js';
|
|
4
3
|
import { a as a$4 } from './chunk-2MVQI7NJ.js';
|
|
4
|
+
import { a as a$2 } from './chunk-E5MGOPPQ.js';
|
|
5
5
|
import { a as a$5 } from './chunk-NYMDPEVU.js';
|
|
6
6
|
import { useState } from 'react';
|
|
7
7
|
import L from '@mui/material/Button';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { a } from './chunk-ZVXT3QOF.js';
|
|
2
1
|
import { a as a$1, e } from './chunk-GOC7PC2S.js';
|
|
3
2
|
import { a as a$3, b as b$1 } from './chunk-MCT77MRN.js';
|
|
4
3
|
import { q, s, a as a$2 } from './chunk-CFYNJQGN.js';
|
|
4
|
+
import { a } from './chunk-ZVXT3QOF.js';
|
|
5
5
|
import { c } from './chunk-D27ND54J.js';
|
|
6
6
|
import A from '@mui/material/CssBaseline';
|
|
7
7
|
import { Experimental_CssVarsProvider, experimental_extendTheme, lighten, darken } from '@mui/material/styles';
|