@ng-nest/ui 15.0.7 → 15.0.8
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/core/config/config.d.ts +1 -0
- package/esm2020/core/config/config.mjs +1 -1
- package/esm2020/switch/switch.property.mjs +9 -3
- package/esm2020/table/table-head.component.mjs +5 -3
- package/esm2020/table/table.property.mjs +1 -1
- package/fesm2015/ng-nest-ui-core.mjs.map +1 -1
- package/fesm2015/ng-nest-ui-date-picker.mjs +1 -0
- package/fesm2015/ng-nest-ui-form.mjs +1 -0
- package/fesm2015/ng-nest-ui-i18n.mjs +1 -0
- package/fesm2015/ng-nest-ui-input.mjs +1 -0
- package/fesm2015/ng-nest-ui-loading.mjs +1 -0
- package/fesm2015/ng-nest-ui-switch.mjs +8 -2
- package/fesm2015/ng-nest-ui-switch.mjs.map +1 -1
- package/fesm2015/ng-nest-ui-table.mjs +4 -2
- package/fesm2015/ng-nest-ui-table.mjs.map +1 -1
- package/fesm2015/ng-nest-ui-time-picker.mjs +1 -0
- package/fesm2020/ng-nest-ui-core.mjs.map +1 -1
- package/fesm2020/ng-nest-ui-date-picker.mjs +1 -0
- package/fesm2020/ng-nest-ui-form.mjs +1 -0
- package/fesm2020/ng-nest-ui-i18n.mjs +1 -0
- package/fesm2020/ng-nest-ui-input.mjs +1 -0
- package/fesm2020/ng-nest-ui-loading.mjs +1 -0
- package/fesm2020/ng-nest-ui-switch.mjs +8 -2
- package/fesm2020/ng-nest-ui-switch.mjs.map +1 -1
- package/fesm2020/ng-nest-ui-table.mjs +4 -2
- package/fesm2020/ng-nest-ui-table.mjs.map +1 -1
- package/fesm2020/ng-nest-ui-time-picker.mjs +1 -0
- package/package.json +1 -1
- package/switch/switch.property.d.ts +7 -2
- package/table/table.property.d.ts +5 -0
|
@@ -742,3 +742,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.0", ngImpor
|
|
|
742
742
|
|
|
743
743
|
export { XTimePickerComponent, XTimePickerFrameComponent, XTimePickerFramePrefix, XTimePickerModule, XTimePickerPortalComponent, XTimePickerPortalPrefix, XTimePickerPrefix, XTimePickerProperty };
|
|
744
744
|
//# sourceMappingURL=ng-nest-ui-time-picker.mjs.map
|
|
745
|
+
//# sourceMappingURL=ng-nest-ui-time-picker.mjs.map
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { XControlValueAccessor, XFormOption } from '@ng-nest/ui/base-form';
|
|
2
|
-
import { XBoolean, XTemplate } from '@ng-nest/ui/core';
|
|
2
|
+
import { XBoolean, XSize, XTemplate } from '@ng-nest/ui/core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
/**
|
|
5
5
|
* Switch
|
|
@@ -21,6 +21,11 @@ export declare class XSwitchProperty extends XControlValueAccessor<boolean> impl
|
|
|
21
21
|
* @en_US Manual control
|
|
22
22
|
*/
|
|
23
23
|
manual: XBoolean;
|
|
24
|
+
/**
|
|
25
|
+
* @zh_CN 尺寸
|
|
26
|
+
* @en_US Size
|
|
27
|
+
*/
|
|
28
|
+
size: XSize;
|
|
24
29
|
/**
|
|
25
30
|
* @zh_CN 显示文字或者自定义模版(开启状态)
|
|
26
31
|
* @en_US Display text or custom template (open state)
|
|
@@ -32,7 +37,7 @@ export declare class XSwitchProperty extends XControlValueAccessor<boolean> impl
|
|
|
32
37
|
*/
|
|
33
38
|
unCheckedText?: XTemplate;
|
|
34
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<XSwitchProperty, never>;
|
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<XSwitchProperty, "ng-component", never, { "loading": "loading"; "manual": "manual"; "checkedText": "checkedText"; "unCheckedText": "unCheckedText"; }, {}, never, never, false, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<XSwitchProperty, "ng-component", never, { "loading": "loading"; "manual": "manual"; "size": "size"; "checkedText": "checkedText"; "unCheckedText": "unCheckedText"; }, {}, never, never, false, never>;
|
|
36
41
|
}
|
|
37
42
|
/**
|
|
38
43
|
* Switch Option
|
|
@@ -433,6 +433,11 @@ export interface XTableColumn extends XIdentityProperty {
|
|
|
433
433
|
* @en_US Drag the column width, you need to set the initial width of the column width
|
|
434
434
|
*/
|
|
435
435
|
dragWidth?: boolean;
|
|
436
|
+
/**
|
|
437
|
+
* @zh_CN 正在拖动列宽
|
|
438
|
+
* @en_US Dragging width
|
|
439
|
+
*/
|
|
440
|
+
draggingWidth?: boolean;
|
|
436
441
|
/**
|
|
437
442
|
* @zh_CN 开始拖动列宽的事件
|
|
438
443
|
* @en_US Event to started drag column width
|