@hybridcore/ui 1.5.87 → 1.5.89
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/README.md +65 -2
- package/dist/{FormControlLabel-DzNokgFD.js → FormControlLabel-BrdX4R71.js} +1 -1
- package/dist/{Input-B7ry6o4t.js → Input-CoIrGZAh.js} +1 -1
- package/dist/{InputLabel-rrSJo8M_.js → InputLabel-CBuAYyuT.js} +163 -162
- package/dist/{OutlinedInput-BDK6qOwW.js → OutlinedInput-B-iZoc9l.js} +1 -1
- package/dist/{Select-jjAc5JX1.js → Select-t3ewnSdf.js} +3 -3
- package/dist/{TextField-Bf46COnQ.js → TextField-BQ8a50fA.js} +4 -4
- package/dist/components/charts/candlestick/logic.js +6 -6
- package/dist/components/charts/candlestick/styled.js +1 -1
- package/dist/components/charts/highlighting-line-data/logic.js +1 -1
- package/dist/components/charts/highlighting-line-data/styled.js +1 -1
- package/dist/components/data-security-selectors/dissemination-list/index.js +652 -742
- package/dist/components/data-security-selectors/dissemination-list/logic.js +62 -0
- package/dist/components/data-security-selectors/dissemination-list/styled.js +88 -0
- package/dist/components/date-time-picker/index.js +57 -94
- package/dist/components/date-time-picker/logic.js +70 -0
- package/dist/components/date-time-picker/styled.js +83 -0
- package/dist/components/geometry-picker/index.js +45 -43
- package/dist/components/instance-form/components/composite-list/index.js +1 -1
- package/dist/components/instance-form/components/variable/index.js +5 -5
- package/dist/components/instance-form/components/variables/index.js +1 -1
- package/dist/components/metric-card/MetricChart.js +210 -192
- package/dist/components/metric-card/index.js +101 -76
- package/dist/components/metric-card/logic.js +142 -65
- package/dist/components/metric-card/styled.js +69 -46
- package/dist/components/paginated-list/logic.js +13 -13
- package/dist/components/paginated-list/styled.js +12 -12
- package/dist/components/profile-card/logic.js +5 -5
- package/dist/components/profile-card/styled.js +4 -4
- package/dist/components/property-mapping/index.js +1 -1
- package/dist/components/range-selector/components/composite-list-range/index.js +1 -1
- package/dist/components/range-selector/components/date-range/index.js +1 -1
- package/dist/components/range-selector/components/number-range/index.js +38 -35
- package/dist/components/range-selector/components/string-range/index.js +15 -14
- package/dist/components/range-selector/index.js +1 -1
- package/dist/components/search-input/index.js +2 -2
- package/dist/components/template-form/components/property-list/index.js +1 -1
- package/dist/components/template-form/components/property-list/property-list-form.js +5 -5
- package/dist/components/template-form/components/recognition-property-list/recognition-property-list-form.js +3 -3
- package/dist/components/template-form/index.js +3 -3
- package/dist/components/template-property-filters/property.js +4 -4
- package/dist/components/tree-select/index.js +52 -50
- package/dist/components/widget/index.js +4 -0
- package/dist/components/widget/styled.js +38 -0
- package/dist/{index-MMaYBAn0.js → index-CGNxsLVm.js} +6 -6
- package/dist/{index-NNOChRJ7.js → index-SpeaLUQD.js} +2 -2
- package/dist/main.d.ts +397 -122
- package/dist/main.js +14 -12
- package/dist/{property-list-form-BvnaooEW.js → property-list-form-C5hcK2y2.js} +4 -4
- package/package.json +4 -1
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { styled as t, Paper as n, Box as o } from "@mui/material";
|
|
2
|
+
const i = t(n, {
|
|
3
|
+
name: "HCWidget",
|
|
4
|
+
slot: "Root"
|
|
5
|
+
})(() => ({
|
|
6
|
+
height: "100%",
|
|
7
|
+
display: "flex",
|
|
8
|
+
flexDirection: "column"
|
|
9
|
+
})), a = t(o, {
|
|
10
|
+
name: "HCWidget",
|
|
11
|
+
slot: "Header"
|
|
12
|
+
})(({ theme: e }) => ({
|
|
13
|
+
flex: "0 0 auto",
|
|
14
|
+
padding: e.spacing(1.25, 2)
|
|
15
|
+
})), l = t(o, {
|
|
16
|
+
name: "HCWidget",
|
|
17
|
+
slot: "Content"
|
|
18
|
+
})(() => ({
|
|
19
|
+
position: "relative",
|
|
20
|
+
display: "flex",
|
|
21
|
+
flexDirection: "column",
|
|
22
|
+
flex: "1 1 auto",
|
|
23
|
+
minHeight: 0
|
|
24
|
+
})), s = t(o, {
|
|
25
|
+
name: "HCWidget",
|
|
26
|
+
slot: "Footer"
|
|
27
|
+
})(({ theme: e }) => ({
|
|
28
|
+
flex: "0 0 auto",
|
|
29
|
+
padding: e.spacing(1.25, 2)
|
|
30
|
+
})), c = {
|
|
31
|
+
Root: i,
|
|
32
|
+
Header: a,
|
|
33
|
+
Content: l,
|
|
34
|
+
Footer: s
|
|
35
|
+
};
|
|
36
|
+
export {
|
|
37
|
+
c as Widget
|
|
38
|
+
};
|
|
@@ -12,11 +12,11 @@ import { PhoneInput as he } from "./components/phone-input/index.js";
|
|
|
12
12
|
import B from "./components/instance-form/components/TopLabelWrapper.js";
|
|
13
13
|
import ue from "./components/instance-form/components/composite-matrix/index.js";
|
|
14
14
|
import { B as m } from "./Box-B1AVyJ_s.js";
|
|
15
|
-
import { T as H } from "./TextField-
|
|
16
|
-
import { F as re } from "./FormControlLabel-
|
|
15
|
+
import { T as H } from "./TextField-BQ8a50fA.js";
|
|
16
|
+
import { F as re } from "./FormControlLabel-BrdX4R71.js";
|
|
17
17
|
import { C as oe } from "./Checkbox-CrU2hpWB.js";
|
|
18
|
-
import { F as se, I as Ie } from "./InputLabel-
|
|
19
|
-
import { S as fe } from "./Select-
|
|
18
|
+
import { F as se, I as Ie } from "./InputLabel-CBuAYyuT.js";
|
|
19
|
+
import { S as fe } from "./Select-t3ewnSdf.js";
|
|
20
20
|
import { M as ge } from "./MenuItem-C6qlUyV3.js";
|
|
21
21
|
import { Container as we, Values as xe, MiniButton as Ce } from "./components/instance-form/components/composite-list/styled.js";
|
|
22
22
|
function Ve({
|
|
@@ -174,8 +174,8 @@ function Te({
|
|
|
174
174
|
mapboxAccessToken: r,
|
|
175
175
|
property: e,
|
|
176
176
|
value: l,
|
|
177
|
-
variant: f = "
|
|
178
|
-
labelPosition: c = "
|
|
177
|
+
variant: f = "outlined",
|
|
178
|
+
labelPosition: c = "top",
|
|
179
179
|
size: s = "medium",
|
|
180
180
|
defaultExtent: T,
|
|
181
181
|
fieldOptions: a,
|
|
@@ -25,10 +25,10 @@ import { f as Xr, T as yn, c as Jr } from "./utils-CsOZUsQj.js";
|
|
|
25
25
|
import { u as Fe } from "./useControlled-BYdyS7Pn.js";
|
|
26
26
|
import { I as Rt } from "./IconButton-DJ-31-Fd.js";
|
|
27
27
|
import { u as zt } from "./useId-BHG98T5I.js";
|
|
28
|
-
import { T as ea } from "./TextField-
|
|
28
|
+
import { T as ea } from "./TextField-BQ8a50fA.js";
|
|
29
29
|
import { o as wt } from "./ownerDocument-CUrv0DIK.js";
|
|
30
30
|
import { P as ta } from "./Paper-CjqLScHA.js";
|
|
31
|
-
import { G as oa } from "./Select-
|
|
31
|
+
import { G as oa } from "./Select-t3ewnSdf.js";
|
|
32
32
|
import { I as na } from "./InputAdornment-B7qEA4kN.js";
|
|
33
33
|
import { D as ra, d as jo, a as aa, b as sa } from "./DialogContent-CqTojymQ.js";
|
|
34
34
|
import { a as ia } from "./List-DOD5kSk3.js";
|