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" | "shadow" | "light" | "dashed" | "disabled" | "loading">; | ||
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "text" | "size" | "type" | "shadow" | "light" | "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'; |
@@ -20,2 +20,3 @@ export declare const OProgress: import("../../utils/types").SFCWithInstall<{ | ||
readonly striped: boolean; | ||
readonly stripedFlow: boolean; | ||
readonly format: import("./src/progress").ProgressFn; | ||
@@ -66,2 +67,3 @@ }> & Omit<Readonly<import("vue").ExtractPropTypes<{ | ||
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" | "bgColor" | "duration" | "notTextColor" | "percentage" | "status" | "indeterminate" | "textInside" | "showText" | "striped" | "format">; | ||
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "color" | "width" | "strokeLinecap" | "strokeWidth" | "type" | "bgColor" | "duration" | "notTextColor" | "percentage" | "status" | "indeterminate" | "textInside" | "showText" | "striped" | "stripedFlow" | "format">; | ||
$attrs: { | ||
@@ -131,2 +133,3 @@ [x: string]: unknown; | ||
readonly striped: BooleanConstructor; | ||
readonly stripedFlow: BooleanConstructor; | ||
readonly notTextColor: BooleanConstructor; | ||
@@ -152,2 +155,3 @@ readonly format: { | ||
readonly striped: boolean; | ||
readonly stripedFlow: boolean; | ||
readonly format: import("./src/progress").ProgressFn; | ||
@@ -218,2 +222,3 @@ }, {}, string> & { | ||
readonly striped: BooleanConstructor; | ||
readonly stripedFlow: BooleanConstructor; | ||
readonly notTextColor: BooleanConstructor; | ||
@@ -272,2 +277,3 @@ readonly format: { | ||
readonly striped: BooleanConstructor; | ||
readonly stripedFlow: BooleanConstructor; | ||
readonly notTextColor: BooleanConstructor; | ||
@@ -293,2 +299,3 @@ readonly format: { | ||
readonly striped: boolean; | ||
readonly stripedFlow: boolean; | ||
readonly format: import("./src/progress").ProgressFn; | ||
@@ -295,0 +302,0 @@ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => { |
@@ -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; | ||
@@ -117,2 +119,3 @@ readonly format: { | ||
readonly striped: boolean; | ||
readonly stripedFlow: boolean; | ||
readonly format: import("./progress").ProgressFn; | ||
@@ -119,0 +122,0 @@ }>, { |
@@ -9,6 +9,6 @@ export declare const OTag: import("../../utils/types").SFCWithInstall<{ | ||
readonly light: boolean; | ||
readonly rounded: boolean; | ||
readonly disabled: boolean; | ||
readonly closable: 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" | "light" | "disabled" | "closable" | "bgColor" | "rounded">; | ||
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "type" | "light" | "rounded" | "disabled" | "closable" | "bgColor">; | ||
$attrs: { | ||
@@ -102,6 +102,6 @@ [x: string]: unknown; | ||
readonly light: boolean; | ||
readonly rounded: boolean; | ||
readonly disabled: boolean; | ||
readonly closable: boolean; | ||
readonly bgColor: string; | ||
readonly rounded: boolean; | ||
}, {}, string> & { | ||
@@ -204,6 +204,6 @@ beforeCreate?: ((() => void) | (() => void)[]) | undefined; | ||
readonly light: boolean; | ||
readonly rounded: boolean; | ||
readonly disabled: boolean; | ||
readonly closable: boolean; | ||
readonly bgColor: string; | ||
readonly rounded: boolean; | ||
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => { | ||
@@ -210,0 +210,0 @@ $slots: { |
@@ -71,6 +71,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{ | ||
readonly light: boolean; | ||
readonly rounded: boolean; | ||
readonly disabled: boolean; | ||
readonly closable: boolean; | ||
readonly bgColor: string; | ||
readonly rounded: boolean; | ||
}>, { | ||
@@ -77,0 +77,0 @@ default: (_: {}) => any; |
@@ -86,2 +86,3 @@ export declare const lightTheme: { | ||
'--onu-colors-background': string; | ||
'--onu-colors-darker': string; | ||
'--onu-colors-background-light': string; | ||
@@ -88,0 +89,0 @@ '--onu-colors-background-gray': string; |
{ | ||
"name": "onu-ui", | ||
"type": "module", | ||
"version": "1.0.14-beta.0", | ||
"version": "1.0.14-beta.1", | ||
"description": "Onu-UI for web glassmorphism components generate by UnoCSS.", | ||
@@ -39,3 +39,3 @@ "author": "Chris <https://github.com/zyyv>", | ||
"dependencies": { | ||
"@onu-ui/components": "1.0.14-beta.0" | ||
"@onu-ui/components": "1.0.14-beta.1" | ||
}, | ||
@@ -42,0 +42,0 @@ "publishConfig": { |
@@ -113,3 +113,3 @@ <p align="center"> | ||
<a href="https://github.com/onu-ui/onu-ui/graphs/contributors"><img src="https://contributors.nn.ci/api?repo=onu-ui/onu-ui" /></a> | ||
<a href="https://github.com/onu-ui/onu-ui/graphs/contributors"><img src="https://contrib.rocks/image?repo=onu-ui/onu-ui" /></a> | ||
@@ -116,0 +116,0 @@ ## Discussions |
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
821950
157
14268
+ Added@onu-ui/components@1.0.14-beta.1(transitive)
+ Added@onu-ui/preset@1.0.14-beta.1(transitive)
+ Added@onu-ui/utils@1.0.14-beta.1(transitive)
- Removed@onu-ui/components@1.0.14-beta.0(transitive)
- Removed@onu-ui/preset@1.0.14-beta.0(transitive)
- Removed@onu-ui/utils@1.0.14-beta.0(transitive)