@ceed/ads 0.0.21 → 0.0.22
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/components/Button/Button.d.ts +5 -22
- package/dist/components/Button/Button.js +3 -3
- package/dist/components/DataTable/DataTable.d.ts +15 -22
- package/dist/components/DataTable/DataTable.js +54 -66
- package/dist/components/Modal/Modal.d.ts +1 -1
- package/dist/components/ThemeProvider/ThemeProvider.js +0 -6
- package/dist/components/index.d.ts +0 -1
- package/dist/components/index.js +0 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/framer/index.js +4603 -4704
- package/package.json +1 -1
- package/dist/components/DialogFrame/DialogFrame.d.ts +0 -11
- package/dist/components/DialogFrame/DialogFrame.js +0 -44
- package/dist/components/DialogFrame/index.d.ts +0 -3
- package/dist/components/DialogFrame/index.js +0 -3
package/package.json
CHANGED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { ModalDialog } from "../Modal";
|
|
3
|
-
declare function DialogFrame(props: {
|
|
4
|
-
title: React.ReactNode;
|
|
5
|
-
children: React.ReactNode;
|
|
6
|
-
actions: React.ReactNode;
|
|
7
|
-
} & React.ComponentProps<typeof ModalDialog>): React.JSX.Element;
|
|
8
|
-
declare namespace DialogFrame {
|
|
9
|
-
var displayName: string;
|
|
10
|
-
}
|
|
11
|
-
export { DialogFrame };
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
var __rest = (this && this.__rest) || function (s, e) {
|
|
13
|
-
var t = {};
|
|
14
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
15
|
-
t[p] = s[p];
|
|
16
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
17
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
18
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
19
|
-
t[p[i]] = s[p[i]];
|
|
20
|
-
}
|
|
21
|
-
return t;
|
|
22
|
-
};
|
|
23
|
-
import React from "react";
|
|
24
|
-
import DialogTitle from "../DialogTitle";
|
|
25
|
-
import DialogContent from "../DialogContent";
|
|
26
|
-
import { ModalDialog } from "../Modal";
|
|
27
|
-
import DialogActions from "../DialogActions";
|
|
28
|
-
function DialogFrame(props) {
|
|
29
|
-
// prop destruction
|
|
30
|
-
var title = props.title, children = props.children, actions = props.actions, innerProps = __rest(props, ["title", "children", "actions"]);
|
|
31
|
-
// lib hooks
|
|
32
|
-
// state, ref, querystring hooks
|
|
33
|
-
// form hooks
|
|
34
|
-
// query hooks
|
|
35
|
-
// calculated values
|
|
36
|
-
// effects
|
|
37
|
-
// handlers
|
|
38
|
-
return (React.createElement(ModalDialog, __assign({}, innerProps),
|
|
39
|
-
React.createElement(DialogTitle, null, title),
|
|
40
|
-
React.createElement(DialogContent, null, children),
|
|
41
|
-
React.createElement(DialogActions, null, actions)));
|
|
42
|
-
}
|
|
43
|
-
export { DialogFrame };
|
|
44
|
-
DialogFrame.displayName = "DialogFrame";
|