@process.co/ui 0.0.19 → 0.0.20

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.
@@ -0,0 +1,21 @@
1
+ import * as React from 'react';
2
+
3
+ interface SlotElementsProps {
4
+ slotId: string;
5
+ }
6
+ declare const SlotElements: (props: SlotElementsProps) => React.JSX.Element;
7
+
8
+ interface ExportManagerProps {
9
+ slotId: string;
10
+ }
11
+ declare const ExportManager: (props: ExportManagerProps) => React.JSX.Element;
12
+
13
+ declare const index_ExportManager: typeof ExportManager;
14
+ type index_ExportManagerProps = ExportManagerProps;
15
+ declare const index_SlotElements: typeof SlotElements;
16
+ type index_SlotElementsProps = SlotElementsProps;
17
+ declare namespace index {
18
+ export { index_ExportManager as ExportManager, type index_ExportManagerProps as ExportManagerProps, index_SlotElements as SlotElements, type index_SlotElementsProps as SlotElementsProps };
19
+ }
20
+
21
+ export { ExportManager as E, SlotElements as S, type SlotElementsProps as a, type ExportManagerProps as b, index as i };
@@ -0,0 +1,21 @@
1
+ import * as React from 'react';
2
+
3
+ interface SlotElementsProps {
4
+ slotId: string;
5
+ }
6
+ declare const SlotElements: (props: SlotElementsProps) => React.JSX.Element;
7
+
8
+ interface ExportManagerProps {
9
+ slotId: string;
10
+ }
11
+ declare const ExportManager: (props: ExportManagerProps) => React.JSX.Element;
12
+
13
+ declare const index_ExportManager: typeof ExportManager;
14
+ type index_ExportManagerProps = ExportManagerProps;
15
+ declare const index_SlotElements: typeof SlotElements;
16
+ type index_SlotElementsProps = SlotElementsProps;
17
+ declare namespace index {
18
+ export { index_ExportManager as ExportManager, type index_ExportManagerProps as ExportManagerProps, index_SlotElements as SlotElements, type index_SlotElementsProps as SlotElementsProps };
19
+ }
20
+
21
+ export { ExportManager as E, SlotElements as S, type SlotElementsProps as a, type ExportManagerProps as b, index as i };
package/dist/index.cjs CHANGED
@@ -10939,13 +10939,15 @@ __export(slots_exports, {
10939
10939
  });
10940
10940
 
10941
10941
  // src/components/slots/SlotElements.tsx
10942
- var SlotElements = () => {
10942
+ var SlotElements = (props) => {
10943
+ const { slotId } = props;
10943
10944
  return /* @__PURE__ */ React.createElement("div", { className: "uii:flex uii:flex-row uii:gap-2 uii:border-dashed uii:border uii:border-gray-300 \n uii:rounded-sm uii:p-2 uii:h-10 uii:w-full uii:items-center uii:justify-start uii:p-1" }, /* @__PURE__ */ React.createElement("div", { className: "uii:w-8 uii:h-8 uii:rounded-xs uii:overflow-hidden uii:flex uii:items-center uii:justify-center uii:relative uii:z-20" }, /* @__PURE__ */ React.createElement("img", { alt: "Send GET Request", className: "uii:w-8 uii:h-8 uii:object-contain uii:rounded-xs uii:z-20", src: "https://res.cloudinary.com/process-co/image/fetch/w_64,h_64,c_fill,g_face/https://res.cloudinary.com/process-co/image/upload/v1755226713/namespace-icons/http.svg" })), /* @__PURE__ */ React.createElement("div", { className: "uii:w-8 uii:h-8 uii:rounded-xs uii:overflow-hidden uii:flex uii:items-center uii:justify-center uii:relative uii:z-20" }, /* @__PURE__ */ React.createElement("img", { alt: "Send GET Request", className: "uii:w-8 uii:h-8 uii:object-contain uii:rounded-xs uii:z-20", src: "https://res.cloudinary.com/process-co/image/fetch/w_64,h_64,c_fill,g_face/https://res.cloudinary.com/process-co/image/upload/v1755227094/namespace-icons/mailgun.svg" })), /* @__PURE__ */ React.createElement("div", { className: "uii:w-8 uii:h-8 uii:rounded-xs uii:overflow-hidden uii:flex uii:items-center uii:justify-center uii:relative uii:z-20" }, /* @__PURE__ */ React.createElement("img", { alt: "Send GET Request", className: "uii:w-8 uii:h-8 uii:object-contain uii:rounded-xs uii:z-20", src: "https://res.cloudinary.com/process-co/image/upload/v1772002004/img.icons8.com.png" })), /* @__PURE__ */ React.createElement("div", { className: "uii:w-8 uii:h-8 uii:rounded-xs uii:overflow-hidden uii:flex uii:items-center uii:justify-center uii:relative uii:z-20" }, /* @__PURE__ */ React.createElement("img", { alt: "Send GET Request", className: "uii:w-8 uii:h-8 uii:object-contain uii:rounded-xs uii:z-20", src: "https://res.cloudinary.com/process-co/image/fetch/w_64,h_64,c_fill,g_face/https://res.cloudinary.com/process-co/image/upload/v1755226713/namespace-icons/http.svg" })));
10944
10945
  };
10945
10946
 
10946
10947
  // src/components/slots/ExportManager.tsx
10947
- var ExportManager = () => {
10948
- return /* @__PURE__ */ React.createElement("div", null, /* @__PURE__ */ React.createElement(Button, null, "Manage Exports"));
10948
+ var ExportManager = (props) => {
10949
+ const { slotId } = props;
10950
+ return /* @__PURE__ */ React.createElement(Button, { variant: "outline", size: "sm" }, "Manage Exports");
10949
10951
  };
10950
10952
  /*! Bundled license information:
10951
10953