@alauda/ui 6.5.9-beta.9 → 6.5.9
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/card/helper-directives.d.ts +3 -0
- package/dialog/dialog.component.d.ts +0 -6
- package/dialog/dialog.service.d.ts +0 -2
- package/dropdown/dropdown-button/dropdown-button.component.d.ts +7 -4
- package/dropdown/menu/menu.component.d.ts +2 -5
- package/esm2020/card/card.component.mjs +2 -2
- package/esm2020/card/helper-directives.mjs +5 -3
- package/esm2020/dialog/dialog.component.mjs +3 -11
- package/esm2020/dialog/dialog.service.mjs +2 -16
- package/esm2020/dropdown/dropdown-button/dropdown-button.component.mjs +12 -6
- package/esm2020/dropdown/menu/menu.component.mjs +3 -10
- package/esm2020/dropdown/menu-item/menu-item.component.mjs +2 -2
- package/esm2020/dropdown/submenu/submenu.component.mjs +2 -2
- package/esm2020/input/number-input/number-input.component.mjs +2 -2
- package/esm2020/message/message.component.mjs +3 -3
- package/esm2020/notification/notification.component.mjs +3 -3
- package/esm2020/tabs/tab-header.component.mjs +2 -2
- package/esm2020/time-picker/panel/panel.component.mjs +10 -6
- package/esm2020/tooltip/tooltip.component.mjs +3 -3
- package/fesm2015/alauda-ui.mjs +39 -60
- package/fesm2015/alauda-ui.mjs.map +1 -1
- package/fesm2020/alauda-ui.mjs +39 -58
- package/fesm2020/alauda-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/theme/_var.scss +1 -1
- package/theme/style.css +84 -0
- package/time-picker/panel/panel.component.d.ts +1 -0
package/package.json
CHANGED
package/theme/_var.scss
CHANGED
|
@@ -65,7 +65,7 @@ $tab-label-focus-box-shadow: inset 0 0 0 3px use-rgba(primary, 0.3);
|
|
|
65
65
|
$tab-header-close-icon-size: 16px;
|
|
66
66
|
$tab-header-title-font-size: use-var(font-size-xxl);
|
|
67
67
|
$tab-header-title-spacing: 20px;
|
|
68
|
-
$tab-header-title-padding: 20px 0
|
|
68
|
+
$tab-header-title-padding: 20px 0 12px;
|
|
69
69
|
|
|
70
70
|
// date picker
|
|
71
71
|
$date-picker-body-size: 216px;
|
package/theme/style.css
CHANGED
|
@@ -1,3 +1,87 @@
|
|
|
1
|
+
.cdk-overlay-container, .cdk-global-overlay-wrapper {
|
|
2
|
+
pointer-events: none;
|
|
3
|
+
top: 0;
|
|
4
|
+
left: 0;
|
|
5
|
+
height: 100%;
|
|
6
|
+
width: 100%;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.cdk-overlay-container {
|
|
10
|
+
position: fixed;
|
|
11
|
+
z-index: 1000;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.cdk-overlay-container:empty {
|
|
15
|
+
display: none;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.cdk-global-overlay-wrapper {
|
|
19
|
+
display: flex;
|
|
20
|
+
position: absolute;
|
|
21
|
+
z-index: 1000;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.cdk-overlay-pane {
|
|
25
|
+
position: absolute;
|
|
26
|
+
pointer-events: auto;
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
z-index: 1000;
|
|
29
|
+
display: flex;
|
|
30
|
+
max-width: 100%;
|
|
31
|
+
max-height: 100%;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.cdk-overlay-backdrop {
|
|
35
|
+
position: absolute;
|
|
36
|
+
top: 0;
|
|
37
|
+
bottom: 0;
|
|
38
|
+
left: 0;
|
|
39
|
+
right: 0;
|
|
40
|
+
z-index: 1000;
|
|
41
|
+
pointer-events: auto;
|
|
42
|
+
-webkit-tap-highlight-color: transparent;
|
|
43
|
+
transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
44
|
+
opacity: 0;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
|
|
48
|
+
opacity: 1;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
|
|
52
|
+
opacity: 0.6;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.cdk-overlay-dark-backdrop {
|
|
56
|
+
background: rgba(0, 0, 0, 0.32);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.cdk-overlay-transparent-backdrop {
|
|
60
|
+
transition: visibility 1ms linear, opacity 1ms linear;
|
|
61
|
+
visibility: hidden;
|
|
62
|
+
opacity: 1;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
|
|
66
|
+
opacity: 0;
|
|
67
|
+
visibility: visible;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.cdk-overlay-connected-position-bounding-box {
|
|
71
|
+
position: absolute;
|
|
72
|
+
z-index: 1000;
|
|
73
|
+
display: flex;
|
|
74
|
+
flex-direction: column;
|
|
75
|
+
min-width: 1px;
|
|
76
|
+
min-height: 1px;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.cdk-global-scrollblock {
|
|
80
|
+
position: fixed;
|
|
81
|
+
width: 100%;
|
|
82
|
+
overflow-y: scroll;
|
|
83
|
+
}
|
|
84
|
+
|
|
1
85
|
:root {
|
|
2
86
|
color-scheme: light;
|
|
3
87
|
--aui-color-blue: 0, 122, 245;
|