@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.
Files changed (50) hide show
  1. package/README.md +65 -2
  2. package/dist/{FormControlLabel-DzNokgFD.js → FormControlLabel-BrdX4R71.js} +1 -1
  3. package/dist/{Input-B7ry6o4t.js → Input-CoIrGZAh.js} +1 -1
  4. package/dist/{InputLabel-rrSJo8M_.js → InputLabel-CBuAYyuT.js} +163 -162
  5. package/dist/{OutlinedInput-BDK6qOwW.js → OutlinedInput-B-iZoc9l.js} +1 -1
  6. package/dist/{Select-jjAc5JX1.js → Select-t3ewnSdf.js} +3 -3
  7. package/dist/{TextField-Bf46COnQ.js → TextField-BQ8a50fA.js} +4 -4
  8. package/dist/components/charts/candlestick/logic.js +6 -6
  9. package/dist/components/charts/candlestick/styled.js +1 -1
  10. package/dist/components/charts/highlighting-line-data/logic.js +1 -1
  11. package/dist/components/charts/highlighting-line-data/styled.js +1 -1
  12. package/dist/components/data-security-selectors/dissemination-list/index.js +652 -742
  13. package/dist/components/data-security-selectors/dissemination-list/logic.js +62 -0
  14. package/dist/components/data-security-selectors/dissemination-list/styled.js +88 -0
  15. package/dist/components/date-time-picker/index.js +57 -94
  16. package/dist/components/date-time-picker/logic.js +70 -0
  17. package/dist/components/date-time-picker/styled.js +83 -0
  18. package/dist/components/geometry-picker/index.js +45 -43
  19. package/dist/components/instance-form/components/composite-list/index.js +1 -1
  20. package/dist/components/instance-form/components/variable/index.js +5 -5
  21. package/dist/components/instance-form/components/variables/index.js +1 -1
  22. package/dist/components/metric-card/MetricChart.js +210 -192
  23. package/dist/components/metric-card/index.js +101 -76
  24. package/dist/components/metric-card/logic.js +142 -65
  25. package/dist/components/metric-card/styled.js +69 -46
  26. package/dist/components/paginated-list/logic.js +13 -13
  27. package/dist/components/paginated-list/styled.js +12 -12
  28. package/dist/components/profile-card/logic.js +5 -5
  29. package/dist/components/profile-card/styled.js +4 -4
  30. package/dist/components/property-mapping/index.js +1 -1
  31. package/dist/components/range-selector/components/composite-list-range/index.js +1 -1
  32. package/dist/components/range-selector/components/date-range/index.js +1 -1
  33. package/dist/components/range-selector/components/number-range/index.js +38 -35
  34. package/dist/components/range-selector/components/string-range/index.js +15 -14
  35. package/dist/components/range-selector/index.js +1 -1
  36. package/dist/components/search-input/index.js +2 -2
  37. package/dist/components/template-form/components/property-list/index.js +1 -1
  38. package/dist/components/template-form/components/property-list/property-list-form.js +5 -5
  39. package/dist/components/template-form/components/recognition-property-list/recognition-property-list-form.js +3 -3
  40. package/dist/components/template-form/index.js +3 -3
  41. package/dist/components/template-property-filters/property.js +4 -4
  42. package/dist/components/tree-select/index.js +52 -50
  43. package/dist/components/widget/index.js +4 -0
  44. package/dist/components/widget/styled.js +38 -0
  45. package/dist/{index-MMaYBAn0.js → index-CGNxsLVm.js} +6 -6
  46. package/dist/{index-NNOChRJ7.js → index-SpeaLUQD.js} +2 -2
  47. package/dist/main.d.ts +397 -122
  48. package/dist/main.js +14 -12
  49. package/dist/{property-list-form-BvnaooEW.js → property-list-form-C5hcK2y2.js} +4 -4
  50. 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-Bf46COnQ.js";
16
- import { F as re } from "./FormControlLabel-DzNokgFD.js";
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-rrSJo8M_.js";
19
- import { S as fe } from "./Select-jjAc5JX1.js";
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 = "standard",
178
- labelPosition: c = "default",
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-Bf46COnQ.js";
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-jjAc5JX1.js";
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";