@uzum-tech/ui 1.5.4 → 1.6.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/dist/index.js +106 -39
- package/dist/index.prod.js +3 -3
- package/es/_internal/radio/src/use-radio.d.ts +1 -0
- package/es/_internal/radio/src/use-radio.js +2 -1
- package/es/_utils/css/index.d.ts +1 -0
- package/es/_utils/css/index.js +1 -0
- package/es/_utils/css/normalize-size.d.ts +1 -0
- package/es/_utils/css/normalize-size.js +6 -0
- package/es/_utils/index.d.ts +1 -1
- package/es/_utils/index.js +1 -1
- package/es/avatar/src/Avatar.js +1 -7
- package/es/badge/src/Badge.d.ts +13 -0
- package/es/badge/src/Badge.js +5 -4
- package/es/badge/src/styles/index.cssr.js +5 -6
- package/es/badge/styles/light.d.ts +1 -0
- package/es/badge/styles/light.js +2 -1
- package/es/checkbox/src/styles/index.cssr.js +22 -0
- package/es/data-table/src/TableParts/Body.js +6 -3
- package/es/data-table/src/TableParts/BodyRadio.d.ts +6 -0
- package/es/data-table/src/TableParts/BodyRadio.js +4 -1
- package/es/date-picker/src/DatePicker.d.ts +3 -0
- package/es/date-picker/src/DatePicker.js +2 -2
- package/es/date-picker/src/interface.d.ts +1 -0
- package/es/date-picker/src/panel/use-calendar.js +5 -2
- package/es/date-picker/src/panel/use-dual-calendar.js +6 -3
- package/es/date-picker/src/utils.d.ts +1 -1
- package/es/date-picker/src/utils.js +3 -2
- package/es/list/src/List.d.ts +1 -1
- package/es/list/src/ListItem.js +9 -2
- package/es/pagination/src/Pagination.js +11 -5
- package/es/pagination/src/styles/index.cssr.js +10 -5
- package/es/pagination/styles/light.js +5 -5
- package/es/radio/src/Radio.d.ts +3 -0
- package/es/radio/src/Radio.js +1 -1
- package/es/radio/src/RadioButton.d.ts +3 -0
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/lib/_internal/radio/src/use-radio.d.ts +1 -0
- package/lib/_internal/radio/src/use-radio.js +2 -1
- package/lib/_utils/css/index.d.ts +1 -0
- package/lib/_utils/css/index.js +3 -1
- package/lib/_utils/css/normalize-size.d.ts +1 -0
- package/lib/_utils/css/normalize-size.js +10 -0
- package/lib/_utils/index.d.ts +1 -1
- package/lib/_utils/index.js +2 -1
- package/lib/avatar/src/Avatar.js +1 -7
- package/lib/badge/src/Badge.d.ts +13 -0
- package/lib/badge/src/Badge.js +4 -3
- package/lib/badge/src/styles/index.cssr.js +5 -6
- package/lib/badge/styles/light.d.ts +1 -0
- package/lib/badge/styles/light.js +2 -1
- package/lib/checkbox/src/styles/index.cssr.js +22 -0
- package/lib/data-table/src/TableParts/Body.js +6 -3
- package/lib/data-table/src/TableParts/BodyRadio.d.ts +6 -0
- package/lib/data-table/src/TableParts/BodyRadio.js +4 -1
- package/lib/date-picker/src/DatePicker.d.ts +3 -0
- package/lib/date-picker/src/DatePicker.js +2 -2
- package/lib/date-picker/src/interface.d.ts +1 -0
- package/lib/date-picker/src/panel/use-calendar.js +5 -2
- package/lib/date-picker/src/panel/use-dual-calendar.js +6 -3
- package/lib/date-picker/src/utils.d.ts +1 -1
- package/lib/date-picker/src/utils.js +3 -2
- package/lib/list/src/List.d.ts +1 -1
- package/lib/list/src/ListItem.js +7 -0
- package/lib/pagination/src/Pagination.js +11 -5
- package/lib/pagination/src/styles/index.cssr.js +9 -4
- package/lib/pagination/styles/light.js +5 -5
- package/lib/radio/src/Radio.d.ts +3 -0
- package/lib/radio/src/Radio.js +1 -1
- package/lib/radio/src/RadioButton.d.ts +3 -0
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/web-types.json +21 -3
package/lib/list/src/ListItem.js
CHANGED
|
@@ -12,6 +12,13 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
12
12
|
name: 'ListItem',
|
|
13
13
|
props: Object.assign({}, props_1.listItemProps),
|
|
14
14
|
setup(props, { slots }) {
|
|
15
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
16
|
+
(0, vue_1.watchEffect)(() => {
|
|
17
|
+
if (slots.avatar !== undefined) {
|
|
18
|
+
(0, _utils_1.warnOnce)('list-item', '`avatar` is deprecated, please use `prefix` instead.');
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
}
|
|
15
22
|
const listInjection = (0, vue_1.inject)(props_1.listInjectionKey, null);
|
|
16
23
|
if (!listInjection) {
|
|
17
24
|
(0, _utils_1.throwError)('list-item', '`u-list-item` must be placed in `u-list`.');
|
|
@@ -152,7 +152,13 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
152
152
|
});
|
|
153
153
|
const selectSizeRef = (0, vue_1.computed)(() => {
|
|
154
154
|
var _a, _b;
|
|
155
|
-
|
|
155
|
+
const selectSizes = {
|
|
156
|
+
small: 'small',
|
|
157
|
+
medium: 'small',
|
|
158
|
+
large: 'medium'
|
|
159
|
+
};
|
|
160
|
+
return (((_b = (_a = mergedComponentPropsRef === null || mergedComponentPropsRef === void 0 ? void 0 : mergedComponentPropsRef.value) === null || _a === void 0 ? void 0 : _a.Pagination) === null || _b === void 0 ? void 0 : _b.selectSize) ||
|
|
161
|
+
selectSizes[props.size]);
|
|
156
162
|
});
|
|
157
163
|
const startIndexRef = (0, vue_1.computed)(() => {
|
|
158
164
|
return (mergedPageRef.value - 1) * mergedPageSizeRef.value;
|
|
@@ -452,7 +458,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
452
458
|
// eslint-disable-next-line no-case-declarations
|
|
453
459
|
const fastForwardNode = this.fastForwardActive ? ((0, vue_1.h)(_internal_1.UBaseIcon, { clsPrefix: mergedClsPrefix }, {
|
|
454
460
|
default: () => this.rtlEnabled ? ((0, vue_1.h)(icons_1.FastBackwardIcon, null)) : ((0, vue_1.h)(icons_1.FastForwardIcon, null))
|
|
455
|
-
})) : ((0, vue_1.h)(_internal_1.UBaseIcon, { clsPrefix: mergedClsPrefix }, { default: () => (0, vue_1.h)(icons_1.MoreIcon,
|
|
461
|
+
})) : ((0, vue_1.h)(_internal_1.UBaseIcon, { clsPrefix: mergedClsPrefix }, { default: () => (0, vue_1.h)(icons_1.MoreIcon, { class: "more-icon" }) }));
|
|
456
462
|
if (renderLabel) {
|
|
457
463
|
contentNode = renderLabel({
|
|
458
464
|
type: 'fast-forward',
|
|
@@ -471,7 +477,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
471
477
|
// eslint-disable-next-line no-case-declarations
|
|
472
478
|
const fastBackwardNode = this.fastBackwardActive ? ((0, vue_1.h)(_internal_1.UBaseIcon, { clsPrefix: mergedClsPrefix }, {
|
|
473
479
|
default: () => this.rtlEnabled ? ((0, vue_1.h)(icons_1.FastForwardIcon, null)) : ((0, vue_1.h)(icons_1.FastBackwardIcon, null))
|
|
474
|
-
})) : ((0, vue_1.h)(_internal_1.UBaseIcon, { clsPrefix: mergedClsPrefix }, { default: () => (0, vue_1.h)(icons_1.MoreIcon,
|
|
480
|
+
})) : ((0, vue_1.h)(_internal_1.UBaseIcon, { clsPrefix: mergedClsPrefix }, { default: () => (0, vue_1.h)(icons_1.MoreIcon, { class: "more-icon" }) }));
|
|
475
481
|
if (renderLabel) {
|
|
476
482
|
contentNode = renderLabel({
|
|
477
483
|
type: 'fast-backward',
|
|
@@ -515,7 +521,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
515
521
|
? 'fast-backward'
|
|
516
522
|
: 'fast-forward'
|
|
517
523
|
: pageItem.type;
|
|
518
|
-
return ((0, vue_1.h)(popselect_1.UPopselect, { to: this.to, key: key, disabled: disabled, trigger: "hover", virtualScroll: true, style: {
|
|
524
|
+
return ((0, vue_1.h)(popselect_1.UPopselect, { to: this.to, key: key, disabled: disabled, trigger: "hover", virtualScroll: true, style: { minWidth: '70px', textAlign: 'center' }, theme: mergedTheme.peers.Popselect, themeOverrides: mergedTheme.peerOverrides.Popselect, builtinThemeOverrides: {
|
|
519
525
|
peers: {
|
|
520
526
|
InternalSelectMenu: {
|
|
521
527
|
height: 'calc(var(--u-option-height) * 4.6)'
|
|
@@ -569,7 +575,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
569
575
|
case 'size-picker': {
|
|
570
576
|
return !simple && showSizePicker ? ((0, vue_1.h)("div", { class: `${mergedClsPrefix}-pagination-size-picker` },
|
|
571
577
|
(0, vue_1.h)(select_1.USelect, Object.assign({ consistentMenuWidth: false, placeholder: "", showCheckmark: false, to: this.to }, this.selectProps, { size: selectSize, options: pageSizeOptions, value: mergedPageSize, disabled: disabled, theme: mergedTheme.peers.Select, themeOverrides: mergedTheme.peerOverrides.Select, onUpdateValue: handleSizePickerChange })),
|
|
572
|
-
(0, vue_1.h)("span", { class: `${mergedClsPrefix}-label` },
|
|
578
|
+
(0, vue_1.h)("span", { class: `${mergedClsPrefix}-label` }, sizePickerLabel || ''))) : null;
|
|
573
579
|
}
|
|
574
580
|
case 'quick-jumper':
|
|
575
581
|
return !simple && showQuickJumper ? ((0, vue_1.h)("div", { class: `${mergedClsPrefix}-pagination-quick-jumper` },
|
|
@@ -92,9 +92,9 @@ exports.default = (0, cssr_1.cB)('pagination', `
|
|
|
92
92
|
line-height: 20px;
|
|
93
93
|
`), (0, cssr_1.cB)('base-selection-label', `
|
|
94
94
|
background-color: var(--u-pagination-size-picker-background);
|
|
95
|
-
`), (0, cssr_1.cB)('base-
|
|
95
|
+
`), (0, cssr_1.cB)('base-selection', [(0, cssr_1.cE)('border', `
|
|
96
96
|
border-color: var(--u-pagination-size-picker-border);
|
|
97
|
-
`)]), (0, cssr_1.cB)('pagination-quick-jumper', `
|
|
97
|
+
`)])]), (0, cssr_1.cB)('pagination-quick-jumper', `
|
|
98
98
|
white-space: nowrap;
|
|
99
99
|
display: flex;
|
|
100
100
|
color: var(--u-jumper-text-color);
|
|
@@ -128,14 +128,19 @@ exports.default = (0, cssr_1.cB)('pagination', `
|
|
|
128
128
|
border-color .3s var(--u-bezier),
|
|
129
129
|
background-color .3s var(--u-bezier),
|
|
130
130
|
fill .3s var(--u-bezier);
|
|
131
|
-
`, [(0, cssr_1.
|
|
131
|
+
`, [(0, cssr_1.c)('&:has(.more-icon)', `
|
|
132
|
+
font-size: 24px;
|
|
133
|
+
`), (0, cssr_1.cM)('button', `
|
|
132
134
|
background: var(--u-button-color);
|
|
133
135
|
color: var(--u-button-icon-color);
|
|
134
136
|
border: var(--u-button-border);
|
|
135
137
|
padding: 0;
|
|
136
138
|
`, [(0, cssr_1.cB)('base-icon', `
|
|
137
139
|
font-size: var(--u-button-icon-size);
|
|
138
|
-
`)]), (0, cssr_1.cNotM)('disabled', [(0, cssr_1.
|
|
140
|
+
`)]), (0, cssr_1.cNotM)('disabled', [(0, cssr_1.cNotM)('clickable', `
|
|
141
|
+
width: 45px;
|
|
142
|
+
padding: 0;
|
|
143
|
+
`), (0, cssr_1.cM)('hover', hoverStyleProps, hoverStyleChildren), (0, cssr_1.c)('&:hover', hoverStyleProps, hoverStyleChildren), (0, cssr_1.c)('&:active', `
|
|
139
144
|
font-weight: 700;
|
|
140
145
|
background: var(--u-item-color-pressed);
|
|
141
146
|
color: var(--u-item-text-color-pressed);
|
|
@@ -9,13 +9,13 @@ const _mixins_1 = require("../../_mixins");
|
|
|
9
9
|
const self = (vars) => {
|
|
10
10
|
const { brandPrimary100, transparencySecondary, elementsPrimary, brandPrimary500, textSecondary, borderRadius, fontBodyMedium, fontBodyLarge, textPrimary, textTertiary, elementsTertiary, elementsQuaternary } = vars;
|
|
11
11
|
return {
|
|
12
|
-
itemPaddingSmall: '0
|
|
12
|
+
itemPaddingSmall: '0 10px',
|
|
13
13
|
itemMarginSmall: '0 0 0 2px',
|
|
14
14
|
itemMarginSmallRtl: '0 2px 0 0',
|
|
15
|
-
itemPaddingMedium: '0
|
|
15
|
+
itemPaddingMedium: '0 12px',
|
|
16
16
|
itemMarginMedium: '0 0 0 2px',
|
|
17
17
|
itemMarginMediumRtl: '0 2px 0 0',
|
|
18
|
-
itemPaddingLarge: '0
|
|
18
|
+
itemPaddingLarge: '0 14px',
|
|
19
19
|
itemMarginLarge: '0 0 0 2px',
|
|
20
20
|
itemMarginLargeRtl: '0 2px 0 0',
|
|
21
21
|
buttonIconSizeSmall: '14px',
|
|
@@ -68,8 +68,8 @@ const self = (vars) => {
|
|
|
68
68
|
itemBorderActive: '0px',
|
|
69
69
|
itemBorderDisabled: '0px',
|
|
70
70
|
itemBorderRadius: borderRadius,
|
|
71
|
-
itemSizeSmall: '
|
|
72
|
-
itemSizeMedium: '
|
|
71
|
+
itemSizeSmall: '32px',
|
|
72
|
+
itemSizeMedium: '36px',
|
|
73
73
|
itemSizeLarge: '40px',
|
|
74
74
|
itemFontSizeSmall: fontBodyMedium,
|
|
75
75
|
itemFontSizeMedium: fontBodyMedium,
|
package/lib/radio/src/Radio.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export declare const radioProps: {
|
|
|
29
29
|
readonly default: undefined;
|
|
30
30
|
};
|
|
31
31
|
readonly onChange: PropType<import("../../_internal/radio").OnChangeImpl>;
|
|
32
|
+
readonly onClick: PropType<(event: MouseEvent) => void>;
|
|
32
33
|
readonly theme: PropType<import("../../_mixins").Theme<"Radio", {
|
|
33
34
|
radioSizeSmall: string;
|
|
34
35
|
radioSizeMedium: string;
|
|
@@ -216,6 +217,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
216
217
|
readonly default: undefined;
|
|
217
218
|
};
|
|
218
219
|
readonly onChange: PropType<import("../../_internal/radio").OnChangeImpl>;
|
|
220
|
+
readonly onClick: PropType<(event: MouseEvent) => void>;
|
|
219
221
|
readonly theme: PropType<import("../../_mixins").Theme<"Radio", {
|
|
220
222
|
radioSizeSmall: string;
|
|
221
223
|
radioSizeMedium: string;
|
|
@@ -438,6 +440,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
438
440
|
readonly default: undefined;
|
|
439
441
|
};
|
|
440
442
|
readonly onChange: PropType<import("../../_internal/radio").OnChangeImpl>;
|
|
443
|
+
readonly onClick: PropType<(event: MouseEvent) => void>;
|
|
441
444
|
readonly theme: PropType<import("../../_mixins").Theme<"Radio", {
|
|
442
445
|
radioSizeSmall: string;
|
|
443
446
|
radioSizeMedium: string;
|
package/lib/radio/src/Radio.js
CHANGED
|
@@ -91,7 +91,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
91
91
|
[`${mergedClsPrefix}-radio--focus`]: this.focus
|
|
92
92
|
}
|
|
93
93
|
], style: this.cssVars },
|
|
94
|
-
(0, vue_1.h)("input", { ref: "inputRef", type: "radio", class: `${mergedClsPrefix}-radio-input`, value: this.value, name: this.mergedName, checked: this.renderSafeChecked, disabled: this.mergedDisabled, onChange: this.handleRadioInputChange, onFocus: this.handleRadioInputFocus, onBlur: this.handleRadioInputBlur }),
|
|
94
|
+
(0, vue_1.h)("input", { ref: "inputRef", type: "radio", class: `${mergedClsPrefix}-radio-input`, value: this.value, name: this.mergedName, checked: this.renderSafeChecked, disabled: this.mergedDisabled, onChange: this.handleRadioInputChange, onFocus: this.handleRadioInputFocus, onBlur: this.handleRadioInputBlur, onClick: this.onClick }),
|
|
95
95
|
(0, vue_1.h)("div", { class: `${mergedClsPrefix}-radio__dot-wrapper` },
|
|
96
96
|
"\u00A0",
|
|
97
97
|
(0, vue_1.h)("div", { class: [
|
|
@@ -24,6 +24,7 @@ export declare const radioButtonProps: {
|
|
|
24
24
|
readonly default: undefined;
|
|
25
25
|
};
|
|
26
26
|
readonly onChange: import("vue").PropType<import("../../_internal/radio").OnChangeImpl>;
|
|
27
|
+
readonly onClick: import("vue").PropType<(event: MouseEvent) => void>;
|
|
27
28
|
};
|
|
28
29
|
export type RadioButtonProps = ExtractPublicPropTypes<typeof radioBaseProps>;
|
|
29
30
|
declare const _default: import("vue").DefineComponent<{
|
|
@@ -50,6 +51,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
50
51
|
readonly default: undefined;
|
|
51
52
|
};
|
|
52
53
|
readonly onChange: import("vue").PropType<import("../../_internal/radio").OnChangeImpl>;
|
|
54
|
+
readonly onClick: import("vue").PropType<(event: MouseEvent) => void>;
|
|
53
55
|
}, import("../../_internal").UseRadio, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
54
56
|
readonly name: StringConstructor;
|
|
55
57
|
readonly value: {
|
|
@@ -74,6 +76,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
74
76
|
readonly default: undefined;
|
|
75
77
|
};
|
|
76
78
|
readonly onChange: import("vue").PropType<import("../../_internal/radio").OnChangeImpl>;
|
|
79
|
+
readonly onClick: import("vue").PropType<(event: MouseEvent) => void>;
|
|
77
80
|
}>>, {
|
|
78
81
|
readonly value: string | number | boolean;
|
|
79
82
|
readonly disabled: boolean | undefined;
|
package/lib/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "1.
|
|
1
|
+
declare const _default: "1.6.0";
|
|
2
2
|
export default _default;
|
package/lib/version.js
CHANGED
package/package.json
CHANGED
package/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "@uzum-tech/ui",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.6.0",
|
|
6
6
|
"js-types-syntax": "typescript",
|
|
7
7
|
"contributions": {
|
|
8
8
|
"html": {
|
|
@@ -977,6 +977,11 @@
|
|
|
977
977
|
"since": "1.1.0"
|
|
978
978
|
}
|
|
979
979
|
},
|
|
980
|
+
{
|
|
981
|
+
"name": "dot-size",
|
|
982
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/badge",
|
|
983
|
+
"type": "string | number"
|
|
984
|
+
},
|
|
980
985
|
{
|
|
981
986
|
"name": "offset",
|
|
982
987
|
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/badge",
|
|
@@ -3966,6 +3971,11 @@
|
|
|
3966
3971
|
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/date-picker",
|
|
3967
3972
|
"type": "Function"
|
|
3968
3973
|
},
|
|
3974
|
+
{
|
|
3975
|
+
"name": "max-date",
|
|
3976
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/date-picker",
|
|
3977
|
+
"type": "number"
|
|
3978
|
+
},
|
|
3969
3979
|
{
|
|
3970
3980
|
"name": "is-time-disabled",
|
|
3971
3981
|
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/date-picker",
|
|
@@ -8757,9 +8767,9 @@
|
|
|
8757
8767
|
"description": "Right column description text."
|
|
8758
8768
|
},
|
|
8759
8769
|
{
|
|
8760
|
-
"name": "avatar",
|
|
8770
|
+
"name": "<span style=\"color:red; text-decoration: line-through;\">avatar</span>",
|
|
8761
8771
|
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/list",
|
|
8762
|
-
"description": "Content before the left text column (after prefix)."
|
|
8772
|
+
"description": "Content before the left text column (after prefix). <span style=\"color:red;\">Deprecated, use prefix slot insteed</span>"
|
|
8763
8773
|
},
|
|
8764
8774
|
{
|
|
8765
8775
|
"name": "icon",
|
|
@@ -11397,6 +11407,10 @@
|
|
|
11397
11407
|
"name": "change",
|
|
11398
11408
|
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/radio"
|
|
11399
11409
|
},
|
|
11410
|
+
{
|
|
11411
|
+
"name": "click",
|
|
11412
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/radio"
|
|
11413
|
+
},
|
|
11400
11414
|
{
|
|
11401
11415
|
"name": "update:checked",
|
|
11402
11416
|
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/radio",
|
|
@@ -11570,6 +11584,10 @@
|
|
|
11570
11584
|
"name": "change",
|
|
11571
11585
|
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/radio"
|
|
11572
11586
|
},
|
|
11587
|
+
{
|
|
11588
|
+
"name": "click",
|
|
11589
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/radio"
|
|
11590
|
+
},
|
|
11573
11591
|
{
|
|
11574
11592
|
"name": "update:checked",
|
|
11575
11593
|
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/radio",
|