@uzum-tech/ui 1.5.5 → 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 +72 -20
- package/dist/index.prod.js +2 -2
- package/es/_internal/radio/src/use-radio.d.ts +1 -0
- package/es/_internal/radio/src/use-radio.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/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/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/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 +11 -3
|
@@ -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": {
|
|
@@ -8767,9 +8767,9 @@
|
|
|
8767
8767
|
"description": "Right column description text."
|
|
8768
8768
|
},
|
|
8769
8769
|
{
|
|
8770
|
-
"name": "avatar",
|
|
8770
|
+
"name": "<span style=\"color:red; text-decoration: line-through;\">avatar</span>",
|
|
8771
8771
|
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/list",
|
|
8772
|
-
"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>"
|
|
8773
8773
|
},
|
|
8774
8774
|
{
|
|
8775
8775
|
"name": "icon",
|
|
@@ -11407,6 +11407,10 @@
|
|
|
11407
11407
|
"name": "change",
|
|
11408
11408
|
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/radio"
|
|
11409
11409
|
},
|
|
11410
|
+
{
|
|
11411
|
+
"name": "click",
|
|
11412
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/radio"
|
|
11413
|
+
},
|
|
11410
11414
|
{
|
|
11411
11415
|
"name": "update:checked",
|
|
11412
11416
|
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/radio",
|
|
@@ -11580,6 +11584,10 @@
|
|
|
11580
11584
|
"name": "change",
|
|
11581
11585
|
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/radio"
|
|
11582
11586
|
},
|
|
11587
|
+
{
|
|
11588
|
+
"name": "click",
|
|
11589
|
+
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/radio"
|
|
11590
|
+
},
|
|
11583
11591
|
{
|
|
11584
11592
|
"name": "update:checked",
|
|
11585
11593
|
"doc-url": "https://www.naiveui.com/en-US/os-theme/components/radio",
|