@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ceed/ads",
3
- "version": "0.0.21",
3
+ "version": "0.0.22",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "description": "UI tool for Ecube Labs front-end developers",
@@ -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";
@@ -1,3 +0,0 @@
1
- import { DialogFrame } from "./DialogFrame";
2
- export * from "./DialogFrame";
3
- export default DialogFrame;
@@ -1,3 +0,0 @@
1
- import { DialogFrame } from "./DialogFrame";
2
- export * from "./DialogFrame";
3
- export default DialogFrame;