@onu-ui/components
Advanced tools
Comparing version 1.0.14-beta.0 to 1.0.14-beta.1
@@ -12,2 +12,3 @@ export declare const OButton: import("../../utils/types").SFCWithInstall<{ | ||
dashed: boolean; | ||
rounded: boolean; | ||
disabled: boolean; | ||
@@ -29,6 +30,7 @@ loading: boolean; | ||
}; | ||
rounded: BooleanConstructor; | ||
disabled: BooleanConstructor; | ||
loading: BooleanConstructor; | ||
icon: StringConstructor; | ||
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "size" | "type" | "light" | "shadow" | "dashed" | "disabled" | "loading">; | ||
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "size" | "type" | "light" | "shadow" | "dashed" | "rounded" | "disabled" | "loading">; | ||
$attrs: { | ||
@@ -61,2 +63,3 @@ [x: string]: unknown; | ||
}; | ||
rounded: BooleanConstructor; | ||
disabled: BooleanConstructor; | ||
@@ -72,2 +75,3 @@ loading: BooleanConstructor; | ||
dashed: boolean; | ||
rounded: boolean; | ||
disabled: boolean; | ||
@@ -109,2 +113,3 @@ loading: boolean; | ||
}; | ||
rounded: BooleanConstructor; | ||
disabled: BooleanConstructor; | ||
@@ -131,2 +136,3 @@ loading: BooleanConstructor; | ||
}; | ||
rounded: BooleanConstructor; | ||
disabled: BooleanConstructor; | ||
@@ -142,2 +148,3 @@ loading: BooleanConstructor; | ||
dashed: boolean; | ||
rounded: boolean; | ||
disabled: boolean; | ||
@@ -144,0 +151,0 @@ loading: boolean; |
@@ -16,2 +16,3 @@ import type { ExtractPropTypes, PropType } from 'vue'; | ||
}; | ||
rounded: BooleanConstructor; | ||
disabled: BooleanConstructor; | ||
@@ -18,0 +19,0 @@ loading: BooleanConstructor; |
@@ -15,2 +15,3 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{ | ||
}; | ||
rounded: BooleanConstructor; | ||
disabled: BooleanConstructor; | ||
@@ -33,2 +34,3 @@ loading: BooleanConstructor; | ||
}; | ||
rounded: BooleanConstructor; | ||
disabled: BooleanConstructor; | ||
@@ -44,2 +46,3 @@ loading: BooleanConstructor; | ||
dashed: boolean; | ||
rounded: boolean; | ||
disabled: boolean; | ||
@@ -46,0 +49,0 @@ loading: boolean; |
@@ -26,1 +26,2 @@ import 'uno.css'; | ||
export * from './progress'; | ||
export * from './tooltip'; |
@@ -19,2 +19,3 @@ export declare const OProgress: import("../../utils/types").SFCWithInstall<{ | ||
readonly striped: boolean; | ||
readonly stripedFlow: boolean; | ||
readonly notTextColor: boolean; | ||
@@ -66,2 +67,3 @@ readonly format: import("./src/progress").ProgressFn; | ||
readonly striped: BooleanConstructor; | ||
readonly stripedFlow: BooleanConstructor; | ||
readonly notTextColor: BooleanConstructor; | ||
@@ -72,3 +74,3 @@ readonly format: { | ||
}; | ||
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "color" | "width" | "strokeLinecap" | "strokeWidth" | "type" | "duration" | "percentage" | "status" | "indeterminate" | "textInside" | "showText" | "bgColor" | "striped" | "notTextColor" | "format">; | ||
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "color" | "width" | "strokeLinecap" | "strokeWidth" | "type" | "duration" | "percentage" | "status" | "indeterminate" | "textInside" | "showText" | "bgColor" | "striped" | "stripedFlow" | "notTextColor" | "format">; | ||
$attrs: { | ||
@@ -131,2 +133,3 @@ [x: string]: unknown; | ||
readonly striped: BooleanConstructor; | ||
readonly stripedFlow: BooleanConstructor; | ||
readonly notTextColor: BooleanConstructor; | ||
@@ -151,2 +154,3 @@ readonly format: { | ||
readonly striped: boolean; | ||
readonly stripedFlow: boolean; | ||
readonly notTextColor: boolean; | ||
@@ -218,2 +222,3 @@ readonly format: import("./src/progress").ProgressFn; | ||
readonly striped: BooleanConstructor; | ||
readonly stripedFlow: BooleanConstructor; | ||
readonly notTextColor: BooleanConstructor; | ||
@@ -272,2 +277,3 @@ readonly format: { | ||
readonly striped: BooleanConstructor; | ||
readonly stripedFlow: BooleanConstructor; | ||
readonly notTextColor: BooleanConstructor; | ||
@@ -292,2 +298,3 @@ readonly format: { | ||
readonly striped: boolean; | ||
readonly stripedFlow: boolean; | ||
readonly notTextColor: boolean; | ||
@@ -294,0 +301,0 @@ readonly format: import("./src/progress").ProgressFn; |
@@ -97,2 +97,6 @@ import type { ExtractPropTypes, PropType } from 'vue'; | ||
/** | ||
* @description Let the stripes flow. | ||
*/ | ||
readonly stripedFlow: BooleanConstructor; | ||
/** | ||
* @direction Do not synchronize the text color with the progress bar color. | ||
@@ -99,0 +103,0 @@ */ |
@@ -46,2 +46,3 @@ import type { ProgressColor } from './progress'; | ||
readonly striped: BooleanConstructor; | ||
readonly stripedFlow: BooleanConstructor; | ||
readonly notTextColor: BooleanConstructor; | ||
@@ -96,2 +97,3 @@ readonly format: { | ||
readonly striped: BooleanConstructor; | ||
readonly stripedFlow: BooleanConstructor; | ||
readonly notTextColor: BooleanConstructor; | ||
@@ -116,2 +118,3 @@ readonly format: { | ||
readonly striped: boolean; | ||
readonly stripedFlow: boolean; | ||
readonly notTextColor: boolean; | ||
@@ -118,0 +121,0 @@ readonly format: import("./progress").ProgressFn; |
@@ -10,5 +10,5 @@ export declare const OTag: import("../../utils/types").SFCWithInstall<{ | ||
readonly light: boolean; | ||
readonly rounded: boolean; | ||
readonly disabled: boolean; | ||
readonly bgColor: string; | ||
readonly rounded: boolean; | ||
}> & Omit<Readonly<import("vue").ExtractPropTypes<{ | ||
@@ -47,3 +47,3 @@ readonly type: { | ||
onClose?: ((evt: MouseEvent) => any) | undefined; | ||
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "type" | "closable" | "light" | "disabled" | "bgColor" | "rounded">; | ||
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "type" | "closable" | "light" | "rounded" | "disabled" | "bgColor">; | ||
$attrs: { | ||
@@ -103,5 +103,5 @@ [x: string]: unknown; | ||
readonly light: boolean; | ||
readonly rounded: boolean; | ||
readonly disabled: boolean; | ||
readonly bgColor: string; | ||
readonly rounded: boolean; | ||
}, {}, string> & { | ||
@@ -205,5 +205,5 @@ beforeCreate?: ((() => void) | (() => void)[]) | undefined; | ||
readonly light: boolean; | ||
readonly rounded: boolean; | ||
readonly disabled: boolean; | ||
readonly bgColor: string; | ||
readonly rounded: boolean; | ||
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => { | ||
@@ -210,0 +210,0 @@ $slots: { |
@@ -72,5 +72,5 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{ | ||
readonly light: boolean; | ||
readonly rounded: boolean; | ||
readonly disabled: boolean; | ||
readonly bgColor: string; | ||
readonly rounded: boolean; | ||
}>, { | ||
@@ -77,0 +77,0 @@ default: (_: {}) => any; |
{ | ||
"name": "@onu-ui/components", | ||
"type": "module", | ||
"version": "1.0.14-beta.0", | ||
"version": "1.0.14-beta.1", | ||
"description": "Onu-UI components for use on demand", | ||
@@ -38,4 +38,4 @@ "author": "Chris <https://github.com/zyyv>", | ||
"@vueuse/core": "^9.1.0", | ||
"@onu-ui/preset": "1.0.14-beta.0", | ||
"@onu-ui/utils": "1.0.14-beta.0" | ||
"@onu-ui/preset": "1.0.14-beta.1", | ||
"@onu-ui/utils": "1.0.14-beta.1" | ||
}, | ||
@@ -42,0 +42,0 @@ "devDependencies": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
664717
122
12011
+ Added@onu-ui/preset@1.0.14-beta.1(transitive)
+ Added@onu-ui/utils@1.0.14-beta.1(transitive)
- Removed@onu-ui/preset@1.0.14-beta.0(transitive)
- Removed@onu-ui/utils@1.0.14-beta.0(transitive)
Updated@onu-ui/preset@1.0.14-beta.1
Updated@onu-ui/utils@1.0.14-beta.1