@antscorp/antsomi-ui 1.3.5-beta.222 → 1.3.5-beta.223
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.
|
@@ -4,6 +4,10 @@ declare const DRAWER_LARGE_MAX_WIDTH = "calc(100vw - 70px)";
|
|
|
4
4
|
declare const DRAWER_SMALL_MAX_WIDTH = "calc(100vw - 70px)";
|
|
5
5
|
declare const DRAWER_SMALL_MIN_WIDTH = "calc(100vw - 310px)";
|
|
6
6
|
declare const BREAK_POINT = "1440px";
|
|
7
|
-
declare const
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
declare const DRAWER_DETAIL_DIMENSION: {
|
|
8
|
+
LAYER_2: {
|
|
9
|
+
minWidth: string;
|
|
10
|
+
maxWidth: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
export { DRAWER_MAX_WIDTH, DRAWER_LARGE_MIN_WIDTH, DRAWER_LARGE_MAX_WIDTH, DRAWER_SMALL_MAX_WIDTH, DRAWER_SMALL_MIN_WIDTH, BREAK_POINT, DRAWER_DETAIL_DIMENSION, };
|
|
@@ -6,4 +6,10 @@ const DRAWER_SMALL_MIN_WIDTH = 'calc(100vw - 310px)';
|
|
|
6
6
|
const BREAK_POINT = '1440px';
|
|
7
7
|
const LAYER_2_MIN_WIDTH = '740px';
|
|
8
8
|
const LAYER_2_MAX_WIDTH = 'calc(100vw - 46px)';
|
|
9
|
-
|
|
9
|
+
const DRAWER_DETAIL_DIMENSION = {
|
|
10
|
+
LAYER_2: {
|
|
11
|
+
minWidth: LAYER_2_MIN_WIDTH,
|
|
12
|
+
maxWidth: LAYER_2_MAX_WIDTH,
|
|
13
|
+
},
|
|
14
|
+
};
|
|
15
|
+
export { DRAWER_MAX_WIDTH, DRAWER_LARGE_MIN_WIDTH, DRAWER_LARGE_MAX_WIDTH, DRAWER_SMALL_MAX_WIDTH, DRAWER_SMALL_MIN_WIDTH, BREAK_POINT, DRAWER_DETAIL_DIMENSION, };
|