@process.co/ui 0.0.20 → 0.0.21
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/css/ui.css +100 -0
- package/dist/components/slots/index.cjs +3827 -32
- package/dist/components/slots/index.cjs.map +1 -1
- package/dist/components/slots/index.d.cts +1 -1
- package/dist/components/slots/index.d.ts +1 -1
- package/dist/components/slots/index.js +3824 -34
- package/dist/components/slots/index.js.map +1 -1
- package/dist/index-NpNmoYuX.d.cts +43 -0
- package/dist/index-NpNmoYuX.d.ts +43 -0
- package/dist/index.cjs +3743 -244
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3740 -244
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/index-DeN5zh8_.d.cts +0 -21
- package/dist/index-DeN5zh8_.d.ts +0 -21
|
@@ -0,0 +1,43 @@
|
|
|
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
|
+
interface SlotEnableProps {
|
|
14
|
+
slotId: string;
|
|
15
|
+
}
|
|
16
|
+
declare const SlotEnable: (props: SlotEnableProps) => React.JSX.Element;
|
|
17
|
+
|
|
18
|
+
interface SlotDeleteProps {
|
|
19
|
+
slotId: string;
|
|
20
|
+
onDelete: () => void;
|
|
21
|
+
}
|
|
22
|
+
declare const SlotDelete: (props: SlotDeleteProps) => React.JSX.Element;
|
|
23
|
+
|
|
24
|
+
interface SlotDragHandleProps {
|
|
25
|
+
slotId: string;
|
|
26
|
+
}
|
|
27
|
+
declare const SlotDragHandle: (props: SlotDragHandleProps) => React.JSX.Element;
|
|
28
|
+
|
|
29
|
+
declare const index_ExportManager: typeof ExportManager;
|
|
30
|
+
type index_ExportManagerProps = ExportManagerProps;
|
|
31
|
+
declare const index_SlotDelete: typeof SlotDelete;
|
|
32
|
+
type index_SlotDeleteProps = SlotDeleteProps;
|
|
33
|
+
declare const index_SlotDragHandle: typeof SlotDragHandle;
|
|
34
|
+
type index_SlotDragHandleProps = SlotDragHandleProps;
|
|
35
|
+
declare const index_SlotElements: typeof SlotElements;
|
|
36
|
+
type index_SlotElementsProps = SlotElementsProps;
|
|
37
|
+
declare const index_SlotEnable: typeof SlotEnable;
|
|
38
|
+
type index_SlotEnableProps = SlotEnableProps;
|
|
39
|
+
declare namespace index {
|
|
40
|
+
export { index_ExportManager as ExportManager, type index_ExportManagerProps as ExportManagerProps, index_SlotDelete as SlotDelete, type index_SlotDeleteProps as SlotDeleteProps, index_SlotDragHandle as SlotDragHandle, type index_SlotDragHandleProps as SlotDragHandleProps, index_SlotElements as SlotElements, type index_SlotElementsProps as SlotElementsProps, index_SlotEnable as SlotEnable, type index_SlotEnableProps as SlotEnableProps };
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export { ExportManager as E, SlotElements as S, type SlotElementsProps as a, type ExportManagerProps as b, SlotEnable as c, type SlotEnableProps as d, SlotDelete as e, type SlotDeleteProps as f, SlotDragHandle as g, type SlotDragHandleProps as h, index as i };
|
|
@@ -0,0 +1,43 @@
|
|
|
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
|
+
interface SlotEnableProps {
|
|
14
|
+
slotId: string;
|
|
15
|
+
}
|
|
16
|
+
declare const SlotEnable: (props: SlotEnableProps) => React.JSX.Element;
|
|
17
|
+
|
|
18
|
+
interface SlotDeleteProps {
|
|
19
|
+
slotId: string;
|
|
20
|
+
onDelete: () => void;
|
|
21
|
+
}
|
|
22
|
+
declare const SlotDelete: (props: SlotDeleteProps) => React.JSX.Element;
|
|
23
|
+
|
|
24
|
+
interface SlotDragHandleProps {
|
|
25
|
+
slotId: string;
|
|
26
|
+
}
|
|
27
|
+
declare const SlotDragHandle: (props: SlotDragHandleProps) => React.JSX.Element;
|
|
28
|
+
|
|
29
|
+
declare const index_ExportManager: typeof ExportManager;
|
|
30
|
+
type index_ExportManagerProps = ExportManagerProps;
|
|
31
|
+
declare const index_SlotDelete: typeof SlotDelete;
|
|
32
|
+
type index_SlotDeleteProps = SlotDeleteProps;
|
|
33
|
+
declare const index_SlotDragHandle: typeof SlotDragHandle;
|
|
34
|
+
type index_SlotDragHandleProps = SlotDragHandleProps;
|
|
35
|
+
declare const index_SlotElements: typeof SlotElements;
|
|
36
|
+
type index_SlotElementsProps = SlotElementsProps;
|
|
37
|
+
declare const index_SlotEnable: typeof SlotEnable;
|
|
38
|
+
type index_SlotEnableProps = SlotEnableProps;
|
|
39
|
+
declare namespace index {
|
|
40
|
+
export { index_ExportManager as ExportManager, type index_ExportManagerProps as ExportManagerProps, index_SlotDelete as SlotDelete, type index_SlotDeleteProps as SlotDeleteProps, index_SlotDragHandle as SlotDragHandle, type index_SlotDragHandleProps as SlotDragHandleProps, index_SlotElements as SlotElements, type index_SlotElementsProps as SlotElementsProps, index_SlotEnable as SlotEnable, type index_SlotEnableProps as SlotEnableProps };
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export { ExportManager as E, SlotElements as S, type SlotElementsProps as a, type ExportManagerProps as b, SlotEnable as c, type SlotEnableProps as d, SlotDelete as e, type SlotDeleteProps as f, SlotDragHandle as g, type SlotDragHandleProps as h, index as i };
|