@vuu-ui/vuu-layout 0.8.55 → 0.8.57
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/package.json
CHANGED
|
@@ -1,21 +1,23 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.8.
|
|
2
|
+
"version": "0.8.57",
|
|
3
3
|
"description": "VUU Layout Components",
|
|
4
4
|
"author": "heswell",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"types": "types/index.d.ts",
|
|
7
7
|
"devDependencies": {
|
|
8
|
-
"@vuu-ui/vuu-data-types": "0.8.
|
|
9
|
-
"@vuu-ui/vuu-filter-types": "0.8.
|
|
8
|
+
"@vuu-ui/vuu-data-types": "0.8.57",
|
|
9
|
+
"@vuu-ui/vuu-filter-types": "0.8.57"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@salt-ds/core": "1.
|
|
12
|
+
"@salt-ds/core": "1.22.0",
|
|
13
13
|
"@salt-ds/styles": "0.2.1",
|
|
14
14
|
"@salt-ds/window": "0.1.1",
|
|
15
|
-
"@vuu-ui/vuu-
|
|
16
|
-
"@vuu-ui/vuu-
|
|
17
|
-
"@vuu-ui/vuu-
|
|
18
|
-
"@vuu-ui/vuu-
|
|
15
|
+
"@vuu-ui/vuu-data-types": "0.8.57",
|
|
16
|
+
"@vuu-ui/vuu-filters": "0.8.57",
|
|
17
|
+
"@vuu-ui/vuu-popups": "0.8.57",
|
|
18
|
+
"@vuu-ui/vuu-table": "0.8.57",
|
|
19
|
+
"@vuu-ui/vuu-ui-controls": "0.8.57",
|
|
20
|
+
"@vuu-ui/vuu-utils": "0.8.57"
|
|
19
21
|
},
|
|
20
22
|
"peerDependencies": {
|
|
21
23
|
"clsx": "^2.0.0",
|
|
@@ -8,7 +8,7 @@ export interface ViewHookProps {
|
|
|
8
8
|
}
|
|
9
9
|
export declare const useView: ({ id, rootRef, path, dropTargets, title: titleProp, }: ViewHookProps) => {
|
|
10
10
|
contributions: import("../layout-view-actions/useViewActionDispatcher").Contribution[] | undefined;
|
|
11
|
-
dispatchViewAction: import("
|
|
11
|
+
dispatchViewAction: import("packages/vuu-layout/src").ViewDispatch;
|
|
12
12
|
load: (key?: string) => any;
|
|
13
13
|
loadSession: (key?: string) => any;
|
|
14
14
|
onConfigChange: ({ type: key, ...config }: any) => void;
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
export function XXXnormalizeStyles(layoutStyle?: {}, visualStyle?: {}): {};
|
|
2
2
|
export namespace MARGIN_STYLES {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
let margin: boolean;
|
|
4
|
+
let marginTop: boolean;
|
|
5
|
+
let marginRight: boolean;
|
|
6
|
+
let marginBottom: boolean;
|
|
7
|
+
let marginLeft: boolean;
|
|
8
8
|
}
|
|
9
9
|
export namespace PADDING_STYLES {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
10
|
+
let padding: boolean;
|
|
11
|
+
let paddingTop: boolean;
|
|
12
|
+
let paddingRight: boolean;
|
|
13
|
+
let paddingBottom: boolean;
|
|
14
|
+
let paddingLeft: boolean;
|
|
15
15
|
}
|
|
16
16
|
export namespace BORDER_STYLES {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
17
|
+
let border: boolean;
|
|
18
|
+
let borderColor: boolean;
|
|
19
|
+
let borderWidth: boolean;
|
|
20
|
+
let borderTopWidth: boolean;
|
|
21
|
+
let borderRightWidth: boolean;
|
|
22
|
+
let borderBottomWidth: boolean;
|
|
23
|
+
let borderLeftWidth: boolean;
|
|
24
24
|
}
|
|
25
25
|
export function LayoutConfigurator({ height, managedStyle, onChange, style, width, }: {
|
|
26
26
|
height: any;
|