@alauda/ui 6.5.9-beta.2 → 6.5.9-beta.21
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/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/input/number-input/number-input.component.mjs +11 -6
- package/esm2020/tabs/tab-header.component.mjs +2 -2
- package/esm2020/time-picker/panel/panel.component.mjs +10 -6
- package/fesm2015/alauda-ui.mjs +29 -40
- package/fesm2015/alauda-ui.mjs.map +1 -1
- package/fesm2020/alauda-ui.mjs +29 -40
- package/fesm2020/alauda-ui.mjs.map +1 -1
- package/input/number-input/number-input.component.d.ts +2 -1
- package/package.json +1 -1
- package/src/input/number-input/README.md +1 -0
- package/theme/_var.scss +1 -1
- package/time-picker/panel/panel.component.d.ts +1 -0
|
@@ -15,6 +15,7 @@ export declare class NumberInputComponent extends CommonFormControl<number> impl
|
|
|
15
15
|
placeholder: string;
|
|
16
16
|
controlsPosition: string;
|
|
17
17
|
angleControls: boolean;
|
|
18
|
+
clearable: boolean;
|
|
18
19
|
inputRef: ElementRef<HTMLInputElement>;
|
|
19
20
|
private readonly addonBeforeRefs;
|
|
20
21
|
private readonly addonAfterRefs;
|
|
@@ -30,5 +31,5 @@ export declare class NumberInputComponent extends CommonFormControl<number> impl
|
|
|
30
31
|
private parsePrecision;
|
|
31
32
|
private getStepPrecision;
|
|
32
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<NumberInputComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NumberInputComponent, "aui-number-input", never, { "size": "size"; "min": "min"; "max": "max"; "step": "step"; "precision": "precision"; "controls": "controls"; "placeholder": "placeholder"; "controlsPosition": "controlsPosition"; "angleControls": "angleControls"; }, {}, ["addonBeforeRefs", "addonAfterRefs"], ["[auiInputAddonBefore]", "[auiInputAddonAfter]"]>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NumberInputComponent, "aui-number-input", never, { "size": "size"; "min": "min"; "max": "max"; "step": "step"; "precision": "precision"; "controls": "controls"; "placeholder": "placeholder"; "controlsPosition": "controlsPosition"; "angleControls": "angleControls"; "clearable": "clearable"; }, {}, ["addonBeforeRefs", "addonAfterRefs"], ["[auiInputAddonBefore]", "[auiInputAddonAfter]"]>;
|
|
34
35
|
}
|
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;
|