@ng-nest/ui 16.0.11 → 16.0.12
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/checkbox/checkbox.component.d.ts +0 -1
- package/checkbox/checkbox.property.d.ts +16 -1
- package/date-picker/date-range.component.d.ts +1 -1
- package/esm2022/checkbox/checkbox.component.mjs +3 -5
- package/esm2022/checkbox/checkbox.property.mjs +28 -2
- package/esm2022/radio/radio.component.mjs +3 -3
- package/esm2022/radio/radio.property.mjs +12 -2
- package/esm2022/table/table-body.component.mjs +3 -3
- package/esm2022/table/table-head.component.mjs +3 -3
- package/esm2022/transfer/transfer.component.mjs +3 -3
- package/esm2022/tree/tree-node.component.mjs +3 -3
- package/fesm2022/ng-nest-ui-checkbox.mjs +29 -5
- package/fesm2022/ng-nest-ui-checkbox.mjs.map +1 -1
- package/fesm2022/ng-nest-ui-radio.mjs +13 -3
- package/fesm2022/ng-nest-ui-radio.mjs.map +1 -1
- package/fesm2022/ng-nest-ui-table.mjs +4 -4
- package/fesm2022/ng-nest-ui-table.mjs.map +1 -1
- package/fesm2022/ng-nest-ui-transfer.mjs +2 -2
- package/fesm2022/ng-nest-ui-transfer.mjs.map +1 -1
- package/fesm2022/ng-nest-ui-tree.mjs +2 -2
- package/fesm2022/ng-nest-ui-tree.mjs.map +1 -1
- package/package.json +35 -35
- package/radio/radio.property.d.ts +6 -1
|
@@ -57,6 +57,11 @@ export declare class XRadioProperty extends XControlValueAccessor<any> implement
|
|
|
57
57
|
* @en_US Allow cancel checked
|
|
58
58
|
*/
|
|
59
59
|
allowCancel?: XBoolean;
|
|
60
|
+
/**
|
|
61
|
+
* @zh_CN 垂直布局,不支持 button 和 icon 样式
|
|
62
|
+
* @en_US Vertical layout, does not support button and icon styles
|
|
63
|
+
*/
|
|
64
|
+
vertical: XBoolean;
|
|
60
65
|
/**
|
|
61
66
|
* @zh_CN 前置标签
|
|
62
67
|
* @en_US Before label
|
|
@@ -68,7 +73,7 @@ export declare class XRadioProperty extends XControlValueAccessor<any> implement
|
|
|
68
73
|
*/
|
|
69
74
|
after: XTemplate;
|
|
70
75
|
static ɵfac: i0.ɵɵFactoryDeclaration<XRadioProperty, never>;
|
|
71
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<XRadioProperty, "x-radio-property", never, { "data": { "alias": "data"; "required": false; }; "button": { "alias": "button"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "tag": { "alias": "tag"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "tagBordered": { "alias": "tagBordered"; "required": false; }; "tagDark": { "alias": "tagDark"; "required": false; }; "allowCancel": { "alias": "allowCancel"; "required": false; }; "before": { "alias": "before"; "required": false; }; "after": { "alias": "after"; "required": false; }; }, {}, never, never, false, never>;
|
|
76
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<XRadioProperty, "x-radio-property", never, { "data": { "alias": "data"; "required": false; }; "button": { "alias": "button"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "tag": { "alias": "tag"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "tagBordered": { "alias": "tagBordered"; "required": false; }; "tagDark": { "alias": "tagDark"; "required": false; }; "allowCancel": { "alias": "allowCancel"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; "before": { "alias": "before"; "required": false; }; "after": { "alias": "after"; "required": false; }; }, {}, never, never, false, never>;
|
|
72
77
|
}
|
|
73
78
|
/**
|
|
74
79
|
* Radio Option
|