Skip to content

Commit 7cc95f2

Browse files
authored
Create a new dist version 3.0.0 (#390)
Collecting: - Impl [IG4] Infrastructure Readiness for DRC and MLRun (#388)
1 parent 7d19890 commit 7cc95f2

File tree

369 files changed

+6188
-9299
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

369 files changed

+6188
-9299
lines changed

commit_message

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
Create a new dist version 2.2.25
3+
Create a new dist version 3.0.0
44

55
Collecting:
6-
- Impl [Monitoring application] Add Monitoring application page (#387)
6+
- Impl [IG4] Infrastructure Readiness for DRC and MLRun (#388)
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
export default Backdrop;
2+
declare function Backdrop({ duration, show, onClose }: {
3+
duration?: number;
4+
show?: boolean;
5+
onClose?: any;
6+
}): JSX.Element;
7+
declare namespace Backdrop {
8+
namespace propTypes {
9+
let duration: any;
10+
let onClose: any;
11+
let show: any;
12+
}
13+
}
14+
//# sourceMappingURL=Backdrop.d.ts.map

dist/components/Backdrop/Backdrop.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/components/Backdrop/Backdrop.js

Lines changed: 0 additions & 56 deletions
This file was deleted.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import { jsx as n } from "react/jsx-runtime";
2+
import { useRef as i } from "react";
3+
import o from "prop-types";
4+
import { CSSTransition as m } from "react-transition-group";
5+
/* empty css */
6+
const p = ({ duration: t = 300, show: e = !1, onClose: s = null }) => {
7+
const r = i(null);
8+
return /* @__PURE__ */ n(
9+
m,
10+
{
11+
nodeRef: r,
12+
in: e,
13+
timeout: t,
14+
classNames: "backdrop-transition",
15+
mountOnEnter: !0,
16+
unmountOnExit: !0,
17+
children: /* @__PURE__ */ n("div", { className: "backdrop", onClick: s, ref: r })
18+
}
19+
);
20+
};
21+
p.propTypes = {
22+
duration: o.number,
23+
onClose: o.func,
24+
show: o.bool
25+
};
26+
export {
27+
p as default
28+
};
29+
//# sourceMappingURL=Backdrop.mjs.map

dist/components/Backdrop/Backdrop.mjs.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/components/Backdrop/Backdrop.scss

Lines changed: 0 additions & 32 deletions
This file was deleted.

dist/components/Button/Button.d.ts

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
export default Button;
2+
declare function Button({ className, density, icon, iconPosition, id, label, tooltip, variant, ...restProps }: {
3+
[x: string]: any;
4+
className?: string;
5+
density?: string;
6+
icon?: any;
7+
iconPosition?: string;
8+
id?: string;
9+
label?: string;
10+
tooltip?: string;
11+
variant?: string;
12+
}, ref: any): JSX.Element;
13+
declare namespace Button {
14+
let displayName: string;
15+
namespace propTypes {
16+
export let className: any;
17+
export { DENSITY as density };
18+
export let icon: any;
19+
export let iconPosition: any;
20+
export let id: any;
21+
export let label: any;
22+
export let tooltip: any;
23+
export { BUTTON_VARIANTS as variant };
24+
}
25+
}
26+
import { DENSITY } from '../../types';
27+
import { BUTTON_VARIANTS } from '../../types';
28+
//# sourceMappingURL=Button.d.ts.map

dist/components/Button/Button.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/components/Button/Button.js

Lines changed: 0 additions & 73 deletions
This file was deleted.

0 commit comments

Comments
 (0)