Skip to content

Commit

Permalink
types(separator): type designation correction
Browse files Browse the repository at this point in the history
  • Loading branch information
productdevbook committed May 28, 2023
1 parent ba9ee84 commit e1ad1e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/components/separator/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@oku-ui/separator",
"type": "module",
"version": "0.1.0",
"version": "0.1.2",
"license": "MIT",
"source": "src/index.ts",
"funding": "https://github.com/sponsors/productdevbook",
Expand Down
6 changes: 3 additions & 3 deletions packages/components/separator/src/separator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ const Separator = defineComponent({
inheritAttrs: false,
props: {
/**
* Either `vertical` or `horizontal`. Defaults to `horizontal`.
* Whether or not the component is purely decorative. When true, accessibility-related attributes
* are updated so that that the rendered element is removed from the accessibility tree.
*/
decorative: {
type: Boolean,
default: false,
},
/**
* Whether or not the component is purely decorative. When true, accessibility-related attributes
* are updated so that that the rendered element is removed from the accessibility tree.
* Either `vertical` or `horizontal`. Defaults to `horizontal`.
*/
orientation: {
type: String as PropType<Orientation>,
Expand Down

0 comments on commit e1ad1e4

Please sign in to comment.