@hybridcore/ui 1.2.0 → 1.3.0

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/main.d.ts CHANGED
@@ -59,6 +59,8 @@ declare interface CardProps {
59
59
  stats?: default_2.ReactNode;
60
60
  }
61
61
 
62
+ export declare const CollapsibleCard: FC<Props_10>;
63
+
62
64
  export declare const ConditionalWrapper: React.FC<ConditionalWrapperProps>;
63
65
 
64
66
  declare interface ConditionalWrapperProps {
@@ -464,6 +466,22 @@ declare interface Props {
464
466
  children?: default_2.ReactNode;
465
467
  }
466
468
 
469
+ declare interface Props_10 {
470
+ header: React.ReactNode;
471
+ content: React.ReactNode;
472
+ expanded?: boolean;
473
+ defaultExpanded?: boolean;
474
+ actions?: React.ReactNode;
475
+ sx?: SxProps_2;
476
+ onChange?(event: React.SyntheticEvent, newExpanded: boolean): void;
477
+ }
478
+
479
+ declare interface Props_11 {
480
+ values: FV.TemplateFilter[];
481
+ templates: Map<string | number, ONTOLOGY.TemplateType>;
482
+ onChange(values: FV.TemplateFilter[]): void;
483
+ }
484
+
467
485
  declare interface Props_2 {
468
486
  open: boolean;
469
487
  buttons: ButtonType[];
@@ -682,6 +700,8 @@ declare interface SubmitButton {
682
700
  onClick?(): void;
683
701
  }
684
702
 
703
+ export declare const TemplatePropertyFilters: FC<Props_11>;
704
+
685
705
  export declare const TreeSelect: FC<TreeSelectProps>;
686
706
 
687
707
  declare interface TreeSelectProps {
package/dist/main.js CHANGED
@@ -1,43 +1,47 @@
1
1
  import { Access as e } from "./components/access/index.js";
2
- import { Card as m } from "./components/card/index.js";
2
+ import { Card as p } from "./components/card/index.js";
3
3
  import { ConditionalWrapper as f } from "./components/conditional-wrapper/index.js";
4
- import { alert as n, confirm as i } from "./components/confirm/index.js";
4
+ import { alert as i, confirm as n } from "./components/confirm/index.js";
5
5
  import { Container as c } from "./components/container/index.js";
6
- import { ContextMenu as u } from "./components/context-menu/index.js";
7
- import { InstanceForm as P } from "./components/data-management/instance-form/index.js";
8
- import { DisseminationList as y } from "./components/data-security-selectors/dissemination-list/index.js";
6
+ import { ContextMenu as s } from "./components/context-menu/index.js";
7
+ import { InstanceForm as C } from "./components/data-management/instance-form/index.js";
8
+ import { DisseminationList as d } from "./components/data-security-selectors/dissemination-list/index.js";
9
9
  import { SecurityLevel as I } from "./components/data-security-selectors/security-level/index.js";
10
- import { DateTimePicker as L } from "./components/date-time-picker/index.js";
11
- import { GeometryPicker as T } from "./components/geometry-picker/index.js";
12
- import { IconButton as k } from "./components/icon-button/index.js";
13
- import { KeyProtectionMenu as F } from "./components/key-protection/menu.js";
14
- import { S as g } from "./utils-Bq0ye5vf.js";
15
- import { Loading as w } from "./components/loading/index.js";
16
- import { i as B } from "./index-JrtqxUdI.js";
17
- import { PhoneInput as U } from "./components/phone-input/index.js";
18
- import { SearchInput as W } from "./components/search-input/index.js";
10
+ import { DateTimePicker as T } from "./components/date-time-picker/index.js";
11
+ import { GeometryPicker as L } from "./components/geometry-picker/index.js";
12
+ import { IconButton as h } from "./components/icon-button/index.js";
13
+ import { KeyProtectionMenu as D } from "./components/key-protection/menu.js";
14
+ import { S as b } from "./utils-Bq0ye5vf.js";
15
+ import { Loading as v } from "./components/loading/index.js";
16
+ import { i as A } from "./index-JrtqxUdI.js";
17
+ import { PhoneInput as G } from "./components/phone-input/index.js";
18
+ import { SearchInput as V } from "./components/search-input/index.js";
19
19
  import { TreeSelect as j } from "./components/tree-select/index.js";
20
20
  import { TreeViewFilter as z } from "./components/treeview-filter/index.js";
21
+ import { CollapsibleCard as H } from "./components/collapsible-card/index.js";
22
+ import { TemplatePropertyFilters as N } from "./components/template-property-filters/index.js";
21
23
  export {
22
24
  e as Access,
23
- m as Card,
25
+ p as Card,
26
+ H as CollapsibleCard,
24
27
  f as ConditionalWrapper,
25
28
  c as Container,
26
- u as ContextMenu,
27
- L as DateTimePicker,
28
- y as DisseminationList,
29
- T as GeometryPicker,
30
- k as IconButton,
31
- P as InstanceForm,
32
- g as KeyProductionUtils,
33
- F as KeyProtectionMenu,
34
- w as Loading,
35
- B as Map,
36
- U as PhoneInput,
37
- W as SearchInput,
29
+ s as ContextMenu,
30
+ T as DateTimePicker,
31
+ d as DisseminationList,
32
+ L as GeometryPicker,
33
+ h as IconButton,
34
+ C as InstanceForm,
35
+ b as KeyProductionUtils,
36
+ D as KeyProtectionMenu,
37
+ v as Loading,
38
+ A as Map,
39
+ G as PhoneInput,
40
+ V as SearchInput,
38
41
  I as SecurityLevel,
42
+ N as TemplatePropertyFilters,
39
43
  j as TreeSelect,
40
44
  z as TreeViewFilter,
41
- n as alert,
42
- i as confirm
45
+ i as alert,
46
+ n as confirm
43
47
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hybridcore/ui",
3
3
  "description": "Hybrid Core UI Library",
4
- "version": "1.2.0",
4
+ "version": "1.3.0",
5
5
  "author": "Hybrid Core",
6
6
  "license": "ISC",
7
7
  "type": "module",