@code0-tech/pictor 0.10.4 → 0.10.6
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/assets/components/json-view/JsonView.style.css +1 -0
- package/dist/components/breadcrumb/Breadcrumb.js +2 -2
- package/dist/components/button/Button.js +11 -11
- package/dist/components/command/Command.js +19 -22
- package/dist/components/data-table/DataTable.js +15 -15
- package/dist/components/data-table/DataTableFilterSuggestionMenu.js +15 -15
- package/dist/components/editor/Editor.js +13 -13
- package/dist/components/form/CheckboxInput.js +4 -4
- package/dist/components/form/EditorInput.js +69 -64
- package/dist/components/form/EmailInput.js +9 -9
- package/dist/components/form/InputContentEditable.hook.js +11 -11
- package/dist/components/form/InputWrapper.js +15 -15
- package/dist/components/form/NumberInput.js +9 -9
- package/dist/components/form/PasswordInput.js +4 -4
- package/dist/components/form/SwitchInput.js +7 -7
- package/dist/components/form/TextAreaInput.js +6 -6
- package/dist/components/form/TextInput.js +6 -6
- package/dist/components/form/useForm.js +2 -2
- package/dist/components/fullscreen/FullScreen.js +2 -2
- package/dist/components/gantt/Gantt.js +67 -54
- package/dist/components/gantt/GanttGroup.js +117 -98
- package/dist/components/gantt/GanttHeader.js +45 -36
- package/dist/components/json-view/JsonView.d.ts +19 -0
- package/dist/components/json-view/JsonView.js +107 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +102 -100
- package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/PopChild.js +59 -0
- package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/PresenceChild.js +34 -0
- package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/index.js +47 -0
- package/dist/node_modules/framer-motion/dist/es/components/AnimatePresence/utils.js +12 -0
- package/dist/node_modules/framer-motion/dist/es/utils/use-composed-ref.js +28 -0
- package/dist/node_modules/react/cjs/react-compiler-runtime.development.js +2 -2
- package/dist/node_modules/react/cjs/react-compiler-runtime.production.js +8 -8
- package/dist/utils/reactiveArrayService.js +4 -4
- package/package.json +9 -7
- package/dist/components/gantt/GanttFooter.d.ts +0 -2
- package/dist/components/gantt/GanttFooter.js +0 -38
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { jsx as r } from "react/jsx-runtime";
|
|
2
|
-
import { c as n } from "../../_virtual/compiler-runtime.js";
|
|
3
|
-
import { Text as l } from "../text/Text.js";
|
|
4
|
-
const d = (s) => {
|
|
5
|
-
const t = n.c(3);
|
|
6
|
-
let e, o;
|
|
7
|
-
t[0] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (e = {
|
|
8
|
-
gridColumn: "1 / -1",
|
|
9
|
-
height: "fit-content",
|
|
10
|
-
position: "sticky",
|
|
11
|
-
display: "flex",
|
|
12
|
-
top: 0,
|
|
13
|
-
backgroundColor: "#070514",
|
|
14
|
-
borderBottom: "1px solid rgba(255, 255, 255, 0.25)",
|
|
15
|
-
zIndex: 10
|
|
16
|
-
}, o = {
|
|
17
|
-
position: "sticky",
|
|
18
|
-
left: 0,
|
|
19
|
-
width: "fit-content",
|
|
20
|
-
height: "100%",
|
|
21
|
-
padding: "8px",
|
|
22
|
-
display: "flex",
|
|
23
|
-
alignItems: "center",
|
|
24
|
-
justifyContent: "start",
|
|
25
|
-
boxSizing: "border-box",
|
|
26
|
-
background: "#070514",
|
|
27
|
-
zIndex: 2
|
|
28
|
-
}, t[0] = e, t[1] = o) : (e = t[0], o = t[1]);
|
|
29
|
-
let i;
|
|
30
|
-
return t[2] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (i = /* @__PURE__ */ r("div", { style: e, children: /* @__PURE__ */ r("div", { style: o, children: /* @__PURE__ */ r(l, { style: {
|
|
31
|
-
textWrap: "nowrap",
|
|
32
|
-
display: "flex",
|
|
33
|
-
alignItems: "center"
|
|
34
|
-
}, children: "Available Groups" }) }) }), t[2] = i) : i = t[2], i;
|
|
35
|
-
};
|
|
36
|
-
export {
|
|
37
|
-
d as GanttFooter
|
|
38
|
-
};
|