@alauda/ui 6.2.3-beta.6 → 6.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/esm2020/autocomplete/autocomplete.component.mjs +2 -2
- package/esm2020/autocomplete/suggestion/suggestion.component.mjs +2 -2
- package/esm2020/back-top/back-top.component.mjs +2 -2
- package/esm2020/button/button.component.mjs +2 -2
- package/esm2020/checkbox/checkbox.component.mjs +2 -2
- package/esm2020/date-picker/calendar/panel/picker-panel.mjs +2 -2
- package/esm2020/date-picker/trigger/trigger.component.mjs +2 -2
- package/esm2020/drawer/component/drawer.component.mjs +2 -2
- package/esm2020/dropdown/submenu/submenu.component.mjs +2 -2
- package/esm2020/input/input.component.mjs +2 -2
- package/esm2020/input/number-input/number-input.component.mjs +2 -2
- package/esm2020/input/tags-input/tags-input.component.mjs +2 -2
- package/esm2020/radio/radio-button/radio-button.component.mjs +2 -2
- package/esm2020/radio/radio.component.mjs +2 -2
- package/esm2020/select/multi-select/multi-select.component.mjs +5 -5
- package/esm2020/select/option/option.component.mjs +2 -2
- package/esm2020/select/select.component.mjs +2 -2
- package/esm2020/switch/switch.component.mjs +2 -2
- package/esm2020/tabs/tab-header.component.mjs +2 -2
- package/esm2020/tag/check-tag/check-tag.component.mjs +2 -2
- package/esm2020/tag/tag.component.mjs +2 -2
- package/esm2020/time-picker/component.mjs +2 -2
- package/esm2020/tooltip/tooltip.component.mjs +2 -2
- package/esm2020/tooltip/tooltip.directive.mjs +1 -2
- package/esm2020/tree-select/tree-select.component.mjs +3 -3
- package/esm2020/utils/coercion.mjs +3 -2
- package/fesm2015/alauda-ui.mjs +56 -57
- package/fesm2015/alauda-ui.mjs.map +1 -1
- package/fesm2020/alauda-ui.mjs +52 -52
- package/fesm2020/alauda-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/theme/_mixin.scss +6 -1
- package/theme/_var.scss +2 -6
- package/tree-select/tree-select.component.d.ts +2 -2
package/package.json
CHANGED
package/theme/_mixin.scss
CHANGED
|
@@ -51,7 +51,12 @@
|
|
|
51
51
|
|
|
52
52
|
// 使用 box-shadow 模拟带圆角的 outline
|
|
53
53
|
@mixin outline-shadow($color: primary) {
|
|
54
|
-
|
|
54
|
+
@include theme-light {
|
|
55
|
+
box-shadow: 0 0 0 2px use-rgba($color, 0.16);
|
|
56
|
+
}
|
|
57
|
+
@include theme-dark {
|
|
58
|
+
box-shadow: 0 0 0 2px use-rgba($color, 0.3);
|
|
59
|
+
}
|
|
55
60
|
}
|
|
56
61
|
|
|
57
62
|
@mixin card-shadow() {
|
package/theme/_var.scss
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@use 'sass:math';
|
|
2
|
+
|
|
2
3
|
@import 'base-var';
|
|
3
4
|
|
|
4
5
|
// Button
|
|
@@ -70,7 +71,7 @@ $tooltip-padding-ver: 8px - $tooltip-border-width;
|
|
|
70
71
|
$tooltip-offset: 4px;
|
|
71
72
|
$tooltip-max-width: 416px;
|
|
72
73
|
|
|
73
|
-
$tooltip-default-bg:
|
|
74
|
+
$tooltip-default-bg: rgb(0 0 0 / 85%);
|
|
74
75
|
$tooltip-default-border: $tooltip-default-bg;
|
|
75
76
|
$tooltip-default-text: $color-white;
|
|
76
77
|
|
|
@@ -335,11 +336,6 @@ $status-bar-pending-gradient-width: 4px;
|
|
|
335
336
|
$accordion-item-header-padding: 12px 0;
|
|
336
337
|
$accordion-item-header-color: #666;
|
|
337
338
|
|
|
338
|
-
//Back Top
|
|
339
|
-
$back-top-box-size: 36px;
|
|
340
|
-
$back-top-position-offset: 10px;
|
|
341
|
-
$back-top-border-radius: 2px;
|
|
342
|
-
|
|
343
339
|
// timepicker
|
|
344
340
|
$time-picker-icon-size: $font-size-large;
|
|
345
341
|
$time-picker-body-small-width: 278px;
|
|
@@ -26,7 +26,7 @@ export declare class TreeSelectComponent<T = unknown> extends CommonFormControl<
|
|
|
26
26
|
hide: EventEmitter<void>;
|
|
27
27
|
protected selectRef: ElementRef<HTMLElement>;
|
|
28
28
|
protected tooltipRef: TooltipDirective;
|
|
29
|
-
nodeListRef: ElementRef
|
|
29
|
+
nodeListRef: ElementRef<HTMLElement>;
|
|
30
30
|
inputRef: InputComponent;
|
|
31
31
|
private _nodesData;
|
|
32
32
|
private _filterString;
|
|
@@ -77,7 +77,7 @@ export declare class TreeNodeComponent<T> implements AfterViewInit, OnDestroy {
|
|
|
77
77
|
set nodeData(val: TreeNode<T>);
|
|
78
78
|
get leafOnly(): boolean | '';
|
|
79
79
|
set leafOnly(val: boolean | '');
|
|
80
|
-
titleRef: ElementRef
|
|
80
|
+
titleRef: ElementRef<HTMLElement>;
|
|
81
81
|
childNodes: QueryList<TreeNodeComponent<T>>;
|
|
82
82
|
selected: boolean;
|
|
83
83
|
visible: boolean;
|