diff --git a/packages/docs/components/Pagination.md b/packages/docs/components/Pagination.md
index f08b72ce6..7fa020e07 100644
--- a/packages/docs/components/Pagination.md
+++ b/packages/docs/components/Pagination.md
@@ -2,7 +2,7 @@
-The **Pagination** component ia responsive and flexible way to indicate a series of related content exists across multiple pages.
+The **Pagination** component is responsive and flexible way to indicate a series of related content exists across multiple pages.
diff --git a/packages/oruga/src/components/autocomplete/examples/index.vue b/packages/oruga/src/components/autocomplete/examples/index.vue
index 2844b665a..11cffea1e 100644
--- a/packages/oruga/src/components/autocomplete/examples/index.vue
+++ b/packages/oruga/src/components/autocomplete/examples/index.vue
@@ -54,7 +54,7 @@ import ScrollCode from "./scroll.vue?raw";
The options
prop works the same as the
- select
+ Select
input component options
prop.
diff --git a/packages/oruga/src/components/dropdown/examples/index.vue b/packages/oruga/src/components/dropdown/examples/index.vue
index fcceab200..1ecda20d0 100644
--- a/packages/oruga/src/components/dropdown/examples/index.vue
+++ b/packages/oruga/src/components/dropdown/examples/index.vue
@@ -32,9 +32,8 @@ import PositionCode from "./position.vue?raw";
Triggers
- The dropdown component accepts several different trigger variants,
- such as open on hover or open only on right click instead of left
- click.
+ The component accepts several different trigger variants, such as
+ open on hover or open only on right click instead of left click.
Adding the teleport
prop will move the dropdown menu to
@@ -70,7 +69,7 @@ import PositionCode from "./position.vue?raw";
The options
prop works the same as the
- select
+ Select
input component options
prop.
@@ -79,8 +78,8 @@ import PositionCode from "./position.vue?raw";
Selectable
- Dropdown components with the prop selectable
will have
- options as a selectable list.
+ Components with the prop selectable
will have options
+ as a selectable list.
Adding the multiple
prop will change the
@@ -91,9 +90,9 @@ import PositionCode from "./position.vue?raw";
Inline
- Dropdown components with the inline
prop set will
- render the options list directly, and will not have a trigger
- element rendered.
+ Components with the inline
prop set will render the
+ options list directly, and will not have a trigger element
+ rendered.
@@ -101,8 +100,8 @@ import PositionCode from "./position.vue?raw";
Modal
- The dropdown component can be opened in an modal mode
- either for mobile or desktop only, or for both, by adding the
+ The content can be opened in an modal mode either for
+ mobile or desktop only, or for both, by adding the
mobile-modal
and desktop-modal
props.
diff --git a/packages/oruga/src/components/dropdown/examples/inspector.vue b/packages/oruga/src/components/dropdown/examples/inspector.vue
index 424ac0f75..43ed3c677 100644
--- a/packages/oruga/src/components/dropdown/examples/inspector.vue
+++ b/packages/oruga/src/components/dropdown/examples/inspector.vue
@@ -20,9 +20,7 @@ const inspectData = [
properties: ["teleport"],
action: (cmp, data): void => {
data.teleport = true;
- setTimeout((): void => {
- dropdownbtn.value?.click();
- }, 300);
+ setTimeout(() => dropdownbtn.value?.click(), 300);
},
},
{
@@ -31,9 +29,7 @@ const inspectData = [
warning: "Switch to mobile view to see it in action!",
specificity: "when mobileClass is applied",
action: (): void => {
- setTimeout((): void => {
- dropdownbtn.value?.click();
- }, 300);
+ setTimeout(() => dropdownbtn.value?.click(), 300);
},
},
{
@@ -42,9 +38,7 @@ const inspectData = [
specificity:
"when inlineClass or mobileClass or expandedClass is applied",
action: (): void => {
- setTimeout((): void => {
- dropdownbtn.value?.click();
- }, 300);
+ setTimeout(() => dropdownbtn.value?.click(), 300);
},
},
{
@@ -60,9 +54,7 @@ const inspectData = [
description: "Class of dropdown menu when active",
properties: ["inline", "active"],
action: (): void => {
- setTimeout((): void => {
- dropdownbtn.value?.click();
- }, 300);
+ setTimeout(() => dropdownbtn.value?.click(), 300);
},
},
{
@@ -80,9 +72,7 @@ const inspectData = [
suffixes: ["top-right", "top-left", "bottom-right", "bottom-left"],
action: (cmp, data): void => {
data.position = "top-right";
- setTimeout((): void => {
- dropdownbtn.value?.click();
- }, 300);
+ setTimeout(() => dropdownbtn.value?.click(), 300);
},
},
{
@@ -90,9 +80,7 @@ const inspectData = [
description: "Class of dropdown when on mobile",
warning: "Switch to mobile view to see it in action!",
action: (): void => {
- setTimeout((): void => {
- dropdownbtn.value?.click();
- }, 300);
+ setTimeout(() => dropdownbtn.value?.click(), 300);
},
},
{
@@ -108,9 +96,7 @@ const inspectData = [
description: "Class of the dropdown item",
subitem: true,
action: (): void => {
- setTimeout((): void => {
- dropdownbtn.value?.click();
- }, 300);
+ setTimeout(() => dropdownbtn.value?.click(), 300);
},
},
{
@@ -118,9 +104,7 @@ const inspectData = [
description: "Class of the dropdown item when active",
subitem: true,
action: (): void => {
- setTimeout((): void => {
- dropdownbtn.value?.click();
- }, 300);
+ setTimeout(() => dropdownbtn.value?.click(), 300);
},
},
{
@@ -129,9 +113,7 @@ const inspectData = [
description: "Class of the dropdown item when disabled",
properties: ["disabled"],
action: (): void => {
- setTimeout((): void => {
- dropdownbtn.value?.click();
- }, 300);
+ setTimeout(() => dropdownbtn.value?.click(), 300);
},
},
{
@@ -140,9 +122,7 @@ const inspectData = [
description: "Class of the dropdown item when clickable",
properties: ["clickable"],
action: (): void => {
- setTimeout((): void => {
- dropdownbtn.value?.click();
- }, 300);
+ setTimeout(() => dropdownbtn.value?.click(), 300);
},
},
];
diff --git a/packages/oruga/src/components/field/examples/index.vue b/packages/oruga/src/components/field/examples/index.vue
index 4fafc770a..29f25eaa0 100644
--- a/packages/oruga/src/components/field/examples/index.vue
+++ b/packages/oruga/src/components/field/examples/index.vue
@@ -41,7 +41,7 @@ import SlotsCode from "./slots.vue?raw";
- Slots
+ Slots
The label
and the message
can be
customised using slots if needed.
diff --git a/packages/oruga/src/components/menu/examples/index.vue b/packages/oruga/src/components/menu/examples/index.vue
index f097a39b5..def98f101 100644
--- a/packages/oruga/src/components/menu/examples/index.vue
+++ b/packages/oruga/src/components/menu/examples/index.vue
@@ -49,7 +49,7 @@ import OptionsCode from "./options.vue?raw";
The options
prop works the same as the
- select
+ Select
input component options
prop.
diff --git a/packages/oruga/src/components/modal/examples/component.vue b/packages/oruga/src/components/modal/examples/component.vue
index fc64ddc08..368157013 100644
--- a/packages/oruga/src/components/modal/examples/component.vue
+++ b/packages/oruga/src/components/modal/examples/component.vue
@@ -2,7 +2,7 @@
import { ref } from "vue";
import ModalForm from "./_modal-form-async.vue";
-const isModalActive = ref(false);
+const isActive = ref(false);
@@ -11,10 +11,10 @@ const isModalActive = ref(false);
label="Open modal"
size="medium"
variant="primary"
- @click="isModalActive = true" />
+ @click="isActive = true" />
Multiple
- The select input also supports a
- multiple
attribute that allows for multi-selection.
- When used the v-model
attribute will be an array of
- values.
+ The input also supports a multiple
attribute that
+ allows multi-selection. When used the v-model
attribute
+ will be an array of values.
Accessibility Notes
diff --git a/packages/oruga/src/components/taginput/examples/index.vue b/packages/oruga/src/components/taginput/examples/index.vue
index 3c4e5a06a..776385714 100644
--- a/packages/oruga/src/components/taginput/examples/index.vue
+++ b/packages/oruga/src/components/taginput/examples/index.vue
@@ -56,7 +56,7 @@ import DisabledCode from "./disabled.vue?raw";
The options
prop works the same as the
- select
+ Select
input component options
prop.
diff --git a/packages/oruga/src/components/tooltip/examples/index.vue b/packages/oruga/src/components/tooltip/examples/index.vue
index fb7dafe57..089709e8a 100644
--- a/packages/oruga/src/components/tooltip/examples/index.vue
+++ b/packages/oruga/src/components/tooltip/examples/index.vue
@@ -39,7 +39,6 @@ import TriggersCode from "./triggers.vue?raw";
triggers
prop. The action that closes the tooltip can
be customized using the
closaeble
prop.
-
Variants
diff --git a/packages/oruga/src/components/tooltip/examples/slot.vue b/packages/oruga/src/components/tooltip/examples/slot.vue
index e6db1389c..8051b3b6a 100644
--- a/packages/oruga/src/components/tooltip/examples/slot.vue
+++ b/packages/oruga/src/components/tooltip/examples/slot.vue
@@ -3,6 +3,7 @@
+
Lorem ipsum dolor sit amet, consectetur warning elit.
Fusce id fermentum quam.
@@ -13,13 +14,14 @@
variant="primary"
:triggers="['click']"
:auto-close="['outside', 'escape']">
+
+
-