@hpcc-js/layout 2.51.0 → 3.1.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.
Files changed (83) hide show
  1. package/dist/index.js +581 -5128
  2. package/dist/index.js.map +7 -1
  3. package/package.json +34 -37
  4. package/src/AbsoluteSurface.ts +17 -8
  5. package/src/Accordion.ts +18 -8
  6. package/src/Border.ts +45 -26
  7. package/src/Cell.ts +18 -13
  8. package/src/ChartPanel.ts +10 -10
  9. package/src/Grid.ts +1 -1
  10. package/src/HorizontalList.ts +1 -1
  11. package/src/Layered.ts +7 -3
  12. package/src/Legend.ts +1 -1
  13. package/src/Popup.ts +23 -12
  14. package/src/Surface.ts +52 -5
  15. package/src/Tabbed.ts +19 -12
  16. package/src/Toolbar.ts +107 -82
  17. package/src/VerticalList.ts +1 -1
  18. package/src/__package__.ts +2 -2
  19. package/src/index.ts +19 -19
  20. package/types/AbsoluteSurface.d.ts +16 -29
  21. package/types/Accordion.d.ts +16 -29
  22. package/types/Border.d.ts +36 -69
  23. package/types/Border2.d.ts +0 -1
  24. package/types/Carousel.d.ts +0 -1
  25. package/types/Cell.d.ts +17 -39
  26. package/types/ChartPanel.d.ts +8 -9
  27. package/types/FlexGrid.d.ts +0 -1
  28. package/types/Grid.d.ts +1 -2
  29. package/types/HorizontalList.d.ts +1 -2
  30. package/types/Layered.d.ts +6 -9
  31. package/types/Legend.d.ts +1 -2
  32. package/types/Modal.d.ts +0 -1
  33. package/types/Popup.d.ts +21 -38
  34. package/types/Surface.d.ts +42 -75
  35. package/types/Tabbed.d.ts +15 -30
  36. package/types/Toolbar.d.ts +32 -5
  37. package/types/VerticalList.d.ts +1 -2
  38. package/types/__package__.d.ts +2 -3
  39. package/types/index.d.ts +19 -20
  40. package/dist/index.es6.js +0 -5104
  41. package/dist/index.es6.js.map +0 -1
  42. package/dist/index.min.js +0 -2
  43. package/dist/index.min.js.map +0 -1
  44. package/types/AbsoluteSurface.d.ts.map +0 -1
  45. package/types/Accordion.d.ts.map +0 -1
  46. package/types/Border.d.ts.map +0 -1
  47. package/types/Border2.d.ts.map +0 -1
  48. package/types/Carousel.d.ts.map +0 -1
  49. package/types/Cell.d.ts.map +0 -1
  50. package/types/ChartPanel.d.ts.map +0 -1
  51. package/types/FlexGrid.d.ts.map +0 -1
  52. package/types/Grid.d.ts.map +0 -1
  53. package/types/HorizontalList.d.ts.map +0 -1
  54. package/types/Layered.d.ts.map +0 -1
  55. package/types/Legend.d.ts.map +0 -1
  56. package/types/Modal.d.ts.map +0 -1
  57. package/types/Popup.d.ts.map +0 -1
  58. package/types/Surface.d.ts.map +0 -1
  59. package/types/Tabbed.d.ts.map +0 -1
  60. package/types/Toolbar.d.ts.map +0 -1
  61. package/types/VerticalList.d.ts.map +0 -1
  62. package/types/__package__.d.ts.map +0 -1
  63. package/types/index.d.ts.map +0 -1
  64. package/types-3.4/AbsoluteSurface.d.ts +0 -37
  65. package/types-3.4/Accordion.d.ts +0 -45
  66. package/types-3.4/Border.d.ts +0 -114
  67. package/types-3.4/Border2.d.ts +0 -102
  68. package/types-3.4/Carousel.d.ts +0 -21
  69. package/types-3.4/Cell.d.ts +0 -50
  70. package/types-3.4/ChartPanel.d.ts +0 -129
  71. package/types-3.4/FlexGrid.d.ts +0 -44
  72. package/types-3.4/Grid.d.ts +0 -93
  73. package/types-3.4/HorizontalList.d.ts +0 -9
  74. package/types-3.4/Layered.d.ts +0 -29
  75. package/types-3.4/Legend.d.ts +0 -78
  76. package/types-3.4/Modal.d.ts +0 -65
  77. package/types-3.4/Popup.d.ts +0 -49
  78. package/types-3.4/Surface.d.ts +0 -89
  79. package/types-3.4/Tabbed.d.ts +0 -46
  80. package/types-3.4/Toolbar.d.ts +0 -7
  81. package/types-3.4/VerticalList.d.ts +0 -9
  82. package/types-3.4/__package__.d.ts +0 -4
  83. package/types-3.4/index.d.ts +0 -20
@@ -1,44 +0,0 @@
1
- import { HTMLWidget } from "@hpcc-js/common";
2
- import "../src/FlexGrid.css";
3
- export declare class FlexGrid extends HTMLWidget {
4
- constructor();
5
- enter(domNode: any, element: any): void;
6
- update(domNode: any, element: any): void;
7
- exit(domNode: any, element: any): void;
8
- updateFlexParent(element: any): void;
9
- }
10
- export interface FlexGrid {
11
- widgets(): any;
12
- widgets(_: any): this;
13
- orientation(): "horizontal" | "vertical";
14
- orientation(_: "horizontal" | "vertical"): this;
15
- flexWrap(): "nowrap" | "wrap" | "wrap-reverse";
16
- flexWrap(_: "nowrap" | "wrap" | "wrap-reverse"): this;
17
- itemMinHeight(): number;
18
- itemMinHeight(_: number): this;
19
- itemMinWidth(): number;
20
- itemMinWidth(_: number): this;
21
- alignItems(): "flex-start" | "center" | "flex-end" | "stretch";
22
- alignItems(_: "flex-start" | "center" | "flex-end" | "stretch"): this;
23
- alignContent(): "flex-start" | "center" | "flex-end" | "stretch" | "space-between" | "space-around";
24
- alignContent(_: "flex-start" | "center" | "flex-end" | "stretch" | "space-between" | "space-around"): this;
25
- itemBorderColor(): string;
26
- itemBorderColor(_: string): this;
27
- borderWidth(): number;
28
- borderWidth(_: number): this;
29
- flexGrow(): number;
30
- flexGrow(_: number): this;
31
- widgetsFlexGrow(): number[];
32
- widgetsFlexGrow(_: number[]): this;
33
- flexBasis(): string;
34
- flexBasis(_: string): this;
35
- widgetsFlexBasis(): string[];
36
- widgetsFlexBasis(_: string[]): this;
37
- disableScroll(): boolean;
38
- disableScroll(_: boolean): this;
39
- forceXScroll(): boolean;
40
- forceXScroll(_: boolean): this;
41
- forceYScroll(): boolean;
42
- forceYScroll(_: boolean): this;
43
- }
44
- //# sourceMappingURL=FlexGrid.d.ts.map
@@ -1,93 +0,0 @@
1
- import { HTMLWidget } from "@hpcc-js/common";
2
- import { Cell } from "./Cell";
3
- import "../src/Grid.css";
4
- export type ICellPosition = [
5
- number,
6
- number,
7
- number,
8
- number
9
- ];
10
- export declare class Grid extends HTMLWidget {
11
- divItems: any;
12
- gridList: any;
13
- items: any;
14
- itemsMap: any;
15
- origItems: any;
16
- cellWidth: any;
17
- cellHeight: any;
18
- dragItem: any;
19
- dragItemPos: any;
20
- _d3Drag: any;
21
- _d3DragResize: any;
22
- _selectionBag: any;
23
- _scrollBarWidth: any;
24
- constructor();
25
- getDimensions(): {
26
- width: number;
27
- height: number;
28
- };
29
- clearContent(widget: any): void;
30
- setContent(row: any, col: any, widget: any, title?: any, rowSpan?: any, colSpan?: any): this;
31
- sortedContent(): Cell[];
32
- getCell(row: any, col: any): any;
33
- getWidgetCell(id: any): any;
34
- getContent(id: any): any;
35
- cellToGridItem(cell: any): {
36
- x: any;
37
- y: any;
38
- w: any;
39
- h: any;
40
- id: any;
41
- cell: any;
42
- };
43
- gridItemToCell(item: any): void;
44
- resetItemsPos(): void;
45
- initGridList(): void;
46
- killGridList(): void;
47
- enter(domNode: any, element: any): void;
48
- updateGrid(resize: any, transitionDuration?: number, _noRender?: boolean): void;
49
- update(domNode: any, element2: any): void;
50
- exit(domNode: any, element: any): void;
51
- _createSelectionObject(d: any): {
52
- _id: any;
53
- element: () => any;
54
- widget: any;
55
- };
56
- selection(_: any): any;
57
- selectionBagClear(): void;
58
- selectionBagClick(d: any): void;
59
- postSelectionChange(): void;
60
- applyLayout(layoutArr: ICellPosition[]): void;
61
- vizActivation(elem: any): void;
62
- }
63
- export interface Grid {
64
- designMode(): boolean;
65
- designMode(_: boolean): this;
66
- showLanes(): boolean;
67
- showLanes(_: boolean): this;
68
- fitTo(): string;
69
- fitTo(_: string): this;
70
- snapping(): string;
71
- snapping(_: string): this;
72
- snappingColumns(): number;
73
- snappingColumns(_: number): this;
74
- snappingRows(): number;
75
- snappingRows(_: number): this;
76
- snappingColumns_default(): number;
77
- snappingColumns_default(_: number): this;
78
- snappingRows_default(): number;
79
- snappingRows_default(_: number): this;
80
- gutter(): number;
81
- gutter(_: number): this;
82
- surfaceShadow(): boolean;
83
- surfaceShadow(_: boolean): this;
84
- surfacePadding(): string;
85
- surfacePadding(_: string): this;
86
- surfaceBorderWidth(): number;
87
- surfaceBorderWidth(_: number): this;
88
- surfaceBackgroundColor(): string;
89
- surfaceBackgroundColor(_: string): this;
90
- content(): Cell[];
91
- content(_: Cell[]): this;
92
- }
93
- //# sourceMappingURL=Grid.d.ts.map
@@ -1,9 +0,0 @@
1
- import { FlexGrid } from "./FlexGrid";
2
- export declare class HorizontalList extends FlexGrid {
3
- constructor();
4
- }
5
- export interface HorizontalList {
6
- orientation_default(_: "horizontal" | "vertical"): any;
7
- flexWrap_default(_: "nowrap" | "wrap" | "wrap-reverse"): any;
8
- }
9
- //# sourceMappingURL=HorizontalList.d.ts.map
@@ -1,29 +0,0 @@
1
- import { HTMLWidget } from "@hpcc-js/common";
2
- import "../src/Layered.css";
3
- export type LayerPlacement = "default" | "top" | "right" | "bottom" | "left" | "center";
4
- export declare class Layered extends HTMLWidget {
5
- protected _contentContainer: any;
6
- _widgetPlacements: any;
7
- _widgetRatios: any;
8
- constructor();
9
- addLayer(widget: any, placement?: LayerPlacement, widthRatio?: number, heightRatio?: number): this;
10
- enter(domNode: any, element: any): void;
11
- update(domNode: any, element: any): void;
12
- widgetSize(idx: any, clientSize: any): {
13
- width: number;
14
- height: number;
15
- };
16
- widgetPosition(idx: any, clientSize: any, widgetSize: any): {
17
- x: number;
18
- y: number;
19
- };
20
- surfacePadding: {
21
- (): number;
22
- (_: string): Layered;
23
- };
24
- widgets: {
25
- (): any[];
26
- (_: any[]): Layered;
27
- };
28
- }
29
- //# sourceMappingURL=Layered.d.ts.map
@@ -1,78 +0,0 @@
1
- import { Database, Palette, SVGWidget, Widget } from "@hpcc-js/common";
2
- import { ChartPanel } from "./ChartPanel";
3
- export declare class Legend extends SVGWidget {
4
- _owner: ChartPanel;
5
- _targetWidget: Widget;
6
- _targetWidgetMonitor: any;
7
- _legendOrdinal: any;
8
- _disabled: string[];
9
- private _symbolTypeMap;
10
- constructor(owner: ChartPanel);
11
- isDisabled(d: string | Database.Field): boolean;
12
- filteredFields(): Database.Field[];
13
- filteredColumns(): string[];
14
- filteredData(): any[][];
15
- isRainbow(): boolean;
16
- targetWidget(): Widget;
17
- targetWidget(_: Widget): this;
18
- getWidget(): any;
19
- getPalette(): Palette.OrdinalPaletteFunc | Palette.RainbowPaletteFunc;
20
- getPaletteType(): "ordinal" | "rainbow";
21
- fillColorFunc(): (row: any, col: any, sel: any) => any;
22
- fillColor(row: any, col: any, sel: any): any;
23
- protected _g: any;
24
- enter(domNode: any, element: any): void;
25
- calcMetaData(): {
26
- dataArr: any[];
27
- total: number;
28
- maxLabelWidth: number;
29
- };
30
- update(domNode: any, element: any): void;
31
- updateDisabled(element: any, dataArr: any): void;
32
- postUpdate(domNode: any, element: any): void;
33
- exit(domNode: any, element: any): void;
34
- radiusToSymbolSize(radius: any): number;
35
- onClick(d: any, domNode: any): void;
36
- onOver(d: any, domNode: any): void;
37
- onOut(d: any, domNode: any): void;
38
- onDblClick(rowData: any, rowIdx: any): void;
39
- onMouseOver(rowData: any, rowIdx: any): void;
40
- private _containerSize;
41
- resize(_size?: {
42
- width: number;
43
- height: number;
44
- }): any;
45
- }
46
- export interface Legend {
47
- title(): string;
48
- title(_: string): this;
49
- symbolType(): "circle" | "cross" | "diamond" | "square" | "star" | "triangle" | "wye";
50
- symbolType(_: "circle" | "cross" | "diamond" | "square" | "star" | "triangle" | "wye"): this;
51
- labelMaxWidth(): number;
52
- labelMaxWidth(_: number): this;
53
- orientation(): "vertical" | "horizontal";
54
- orientation(_: "vertical" | "horizontal"): this;
55
- orientation_exists: () => boolean;
56
- dataFamily(): "1D" | "2D" | "ND" | "map" | "graph" | "any";
57
- dataFamily(_: "1D" | "2D" | "ND" | "map" | "graph" | "any"): this;
58
- dataFamily_exists: () => boolean;
59
- rainbowFormat(): string;
60
- rainbowFormat(_: string): this;
61
- rainbowFormat_exists: () => boolean;
62
- rainbowBins(): number;
63
- rainbowBins(_: number): this;
64
- rainbowBins_exists: () => boolean;
65
- showSeriesTotal(): boolean;
66
- showSeriesTotal(_: boolean): this;
67
- showLegendTotal(): boolean;
68
- showLegendTotal(_: boolean): this;
69
- itemPadding(): number;
70
- itemPadding(_: number): this;
71
- shapeRadius(): number;
72
- shapeRadius(_: number): this;
73
- fitToContent(): boolean;
74
- fitToContent(_: boolean): this;
75
- labelAlign(): "start" | "middle" | "end";
76
- labelAlign(_: "start" | "middle" | "end"): this;
77
- }
78
- //# sourceMappingURL=Legend.d.ts.map
@@ -1,65 +0,0 @@
1
- import { HTMLWidget, ISize, Widget } from "@hpcc-js/common";
2
- import "../src/Modal.css";
3
- export declare class Modal extends HTMLWidget {
4
- protected _widget: Widget;
5
- protected _relativeTarget: HTMLElement;
6
- protected _fade: any;
7
- protected _modal: any;
8
- protected _modalHeader: any;
9
- protected _modalBody: any;
10
- protected _modalHeaderAnnotations: any;
11
- protected _modalHeaderCloseButton: any;
12
- _close: () => void;
13
- constructor();
14
- closeModal(): void;
15
- getRelativeTarget(): any;
16
- setModalSize(): ISize;
17
- setFadePosition(rect: any): void;
18
- setModalPosition(rect: any): void;
19
- resize(size?: any): this;
20
- resizeBodySync(width: number, height: number): this;
21
- enter(domNode: any, element: any): void;
22
- update(domNode: any, element: any): void;
23
- exit(domNode: any, element: any): void;
24
- formattedTitle(): string;
25
- }
26
- export interface Modal {
27
- show(): boolean;
28
- show(_: boolean): this;
29
- showFade(): boolean;
30
- showFade(_: boolean): this;
31
- enableClickFadeToClose(): boolean;
32
- enableClickFadeToClose(_: boolean): this;
33
- title(): string;
34
- title(_: string): this;
35
- title_exists(): boolean;
36
- titleFontSize(): number;
37
- titleFontSize(_: number): this;
38
- titleFontColor(): string;
39
- titleFontColor(_: string): this;
40
- minWidth(): string;
41
- minWidth(_: string): this;
42
- minHeight(): string;
43
- minHeight(_: string): this;
44
- maxWidth(): string;
45
- maxWidth(_: string): this;
46
- maxHeight(): string;
47
- maxHeight(_: string): this;
48
- fixedWidth(): string;
49
- fixedWidth(_: string): this;
50
- fixedHeight(): string;
51
- fixedHeight(_: string): this;
52
- fixedTop(): string;
53
- fixedTop(_: string): this;
54
- fixedLeft(): string;
55
- fixedLeft(_: string): this;
56
- relativeTargetId(): string;
57
- relativeTargetId(_: string): this;
58
- widget(): Widget;
59
- widget(_: Widget): this;
60
- overflowX(): "hidden" | "scroll";
61
- overflowX(_: "hidden" | "scroll"): this;
62
- overflowY(): "hidden" | "scroll";
63
- overflowY(_: "hidden" | "scroll"): this;
64
- }
65
- //# sourceMappingURL=Modal.d.ts.map
@@ -1,49 +0,0 @@
1
- import { HTMLWidget } from "@hpcc-js/common";
2
- export declare class Popup extends HTMLWidget {
3
- _surfaceButtons: any;
4
- _originalPosition: any;
5
- constructor();
6
- updateState(visible: any): void;
7
- enter(domNode: any, element: any): void;
8
- update(domNode: any, element: any): void;
9
- postUpdate(domNode: any, element: any): void;
10
- exit(domNode: any, element: any): void;
11
- click(obj: any): void;
12
- popupState: {
13
- (): boolean;
14
- (_: boolean): Popup;
15
- };
16
- shrinkWrap: {
17
- (): boolean;
18
- (_: boolean): Popup;
19
- };
20
- centerPopup: {
21
- (): string;
22
- (_: string): Popup;
23
- };
24
- top: {
25
- (): number;
26
- (_: number): Popup;
27
- };
28
- bottom: {
29
- (): number;
30
- (_: number): Popup;
31
- };
32
- left: {
33
- (): number;
34
- (_: number): Popup;
35
- };
36
- right: {
37
- (): number;
38
- (_: number): Popup;
39
- };
40
- position: {
41
- (): string;
42
- (_: string): Popup;
43
- };
44
- widget: {
45
- (): any;
46
- (_: any): Popup;
47
- };
48
- }
49
- //# sourceMappingURL=Popup.d.ts.map
@@ -1,89 +0,0 @@
1
- import { HTMLWidget, Widget } from "@hpcc-js/common";
2
- import "../src/Surface.css";
3
- export declare class Surface extends HTMLWidget {
4
- _surfaceButtons: any;
5
- constructor();
6
- widgetSize(titleDiv: any, widgetDiv: any): {
7
- width: number;
8
- height: number;
9
- };
10
- enter(domNode: any, element: any): void;
11
- update(domNode: any, element2: any): void;
12
- exit(domNode: any, element: any): void;
13
- title: {
14
- (): string;
15
- (_: string): Surface;
16
- };
17
- altText: {
18
- (): string;
19
- (_: string): Surface;
20
- };
21
- altText_exists: () => boolean;
22
- surfaceTitlePadding: {
23
- (): number;
24
- (_: number): Surface;
25
- };
26
- surfaceTitlePadding_exists: () => boolean;
27
- surfaceTitleFontSize: {
28
- (): number;
29
- (_: number): Surface;
30
- };
31
- surfaceTitleFontSize_exists: () => boolean;
32
- surfaceTitleFontColor: {
33
- (): string;
34
- (_: string): Surface;
35
- };
36
- surfaceTitleFontFamily: {
37
- (): string;
38
- (_: string): Surface;
39
- };
40
- surfaceTitleFontBold: {
41
- (): boolean;
42
- (_: boolean): Surface;
43
- };
44
- surfaceTitleBackgroundColor: {
45
- (): string;
46
- (_: string): Surface;
47
- };
48
- surfaceTitleAlignment: {
49
- (): string;
50
- (_: string): Surface;
51
- };
52
- surfaceShadow: {
53
- (): boolean;
54
- (_: boolean): Surface;
55
- };
56
- surfacePadding: {
57
- (): string;
58
- (_: string): Surface;
59
- };
60
- surfacePadding_exists: () => boolean;
61
- surfaceBackgroundColor: {
62
- (): string;
63
- (_: string): Surface;
64
- };
65
- surfaceBorderWidth: {
66
- (): number;
67
- (_: number): Surface;
68
- };
69
- surfaceBorderWidth_exists: () => boolean;
70
- surfaceBorderColor: {
71
- (): string;
72
- (_: string): Surface;
73
- };
74
- surfaceBorderRadius: {
75
- (): number;
76
- (_: number): Surface;
77
- };
78
- surfaceBorderRadius_exists: () => boolean;
79
- buttonAnnotations: {
80
- (): any[];
81
- (_: any[]): Surface;
82
- };
83
- widget: {
84
- (): Widget;
85
- (_: Widget): Surface;
86
- };
87
- click(obj: any): void;
88
- }
89
- //# sourceMappingURL=Surface.d.ts.map
@@ -1,46 +0,0 @@
1
- import { HTMLWidget } from "@hpcc-js/common";
2
- import "../src/Tabbed.css";
3
- export declare class Tabbed extends HTMLWidget {
4
- _tabContainer: any;
5
- _contentContainer: any;
6
- constructor();
7
- clearTabs(): this;
8
- addTab(widget: any, label: any, isActive?: any, callback?: any): this;
9
- widgetSize(widgetDiv: any): {
10
- width: number;
11
- height: number;
12
- };
13
- enter(domNode: any, element: any): void;
14
- update(domNode: any, element: any): void;
15
- click(widget: any, column: any, idx: any): void;
16
- showTabs: {
17
- (): boolean;
18
- (_: boolean): Tabbed;
19
- };
20
- surfacePadding: {
21
- (): number;
22
- (_: number): Tabbed;
23
- };
24
- surfacePadding_default: {
25
- (): number;
26
- (_: number): Tabbed;
27
- };
28
- surfacePadding_exists: () => boolean;
29
- activeTabIdx: {
30
- (): number;
31
- (_: number): Tabbed;
32
- };
33
- labels: {
34
- (): string[];
35
- (_: string[]): Tabbed;
36
- };
37
- tabLocation: {
38
- (): string;
39
- (_: string): Tabbed;
40
- };
41
- widgets: {
42
- (): any[];
43
- (_: any[]): Tabbed;
44
- };
45
- }
46
- //# sourceMappingURL=Tabbed.d.ts.map
@@ -1,7 +0,0 @@
1
- import "../src/Toolbar.css";
2
- declare function Toolbar(): void;
3
- declare namespace Toolbar {
4
- var prototype: any;
5
- }
6
- export { Toolbar };
7
- //# sourceMappingURL=Toolbar.d.ts.map
@@ -1,9 +0,0 @@
1
- import { FlexGrid } from "./FlexGrid";
2
- export declare class VerticalList extends FlexGrid {
3
- constructor();
4
- }
5
- export interface VerticalList {
6
- orientation_default(_: "horizontal" | "vertical"): any;
7
- flexWrap_default(_: "nowrap" | "wrap" | "wrap-reverse"): any;
8
- }
9
- //# sourceMappingURL=VerticalList.d.ts.map
@@ -1,4 +0,0 @@
1
- export declare const PKG_NAME = "@hpcc-js/layout";
2
- export declare const PKG_VERSION = "2.51.0";
3
- export declare const BUILD_VERSION = "2.107.0";
4
- //# sourceMappingURL=__package__.d.ts.map
@@ -1,20 +0,0 @@
1
- export * from "./__package__";
2
- export * from "./AbsoluteSurface";
3
- export * from "./Accordion";
4
- export * from "./Border";
5
- export * from "./Border2";
6
- export * from "./Carousel";
7
- export * from "./Cell";
8
- export * from "./ChartPanel";
9
- export * from "./FlexGrid";
10
- export * from "./Grid";
11
- export * from "./HorizontalList";
12
- export * from "./Layered";
13
- export * from "./Legend";
14
- export * from "./Modal";
15
- export * from "./Popup";
16
- export * from "./Surface";
17
- export * from "./Tabbed";
18
- export * from "./Toolbar";
19
- export * from "./VerticalList";
20
- //# sourceMappingURL=index.d.ts.map