-
-
Notifications
You must be signed in to change notification settings - Fork 7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
190 changed files
with
3,907 additions
and
1,769 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,6 @@ | |
} | ||
}, | ||
"npmClient": "yarn", | ||
"version": "3.6.3", | ||
"version": "3.6.9", | ||
"useWorkspaces": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"props": { | ||
"altLabels": "Places the labels beneath the step.", | ||
"editable": "Marks step as editable.", | ||
"hideActions": "Hide actions bar (prev and next buttons).", | ||
"itemTitle": "Property on supplied `items` that contains its title.", | ||
"itemValue": "Property on supplied `items` that contains its value.", | ||
"mobile": "Forces the stepper into a mobile state, removing labels from stepper items.", | ||
"nextText": "The text used for the Next button.", | ||
"prevText": "The text used for the Prev button.", | ||
"nonLinear": "Allow user to jump to any step." | ||
}, | ||
"slots": { | ||
"[`header-item.${string}`]": "Slot for customizing header items when using the [items](/api/v-stepper/#props-items) prop.", | ||
"[`item.${string}`]": "Slot for customizing the content for each step.", | ||
"actions": "Slot for customizing [v-stepper-actions](/api/v-stepper-actions/).", | ||
"header": "Slot for customizing the header.", | ||
"header-item": "Slot for customizing all header items.", | ||
"icon": "Slot for customizing all stepper item icons.", | ||
"next": "Slot for customizing the next step functionailty", | ||
"prev": "Slot for customizing the prev step functionality" | ||
}, | ||
"exposed": { | ||
"next": "Move to the next step.", | ||
"prev": "Move to the prev step." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"props": { | ||
"complete": "Marks step as complete.", | ||
"completeIcon": "Icon to display when step is marked as completed.", | ||
"editable": "Marks step as editable.", | ||
"editIcon": "Icon to display when step is editable.", | ||
"errorIcon": "Icon to display when step has an error.", | ||
"error": "Puts the stepper item in a manual error state.", | ||
"rules": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`.", | ||
"step": "Content to display inside step circle." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
packages/api-generator/src/locale/en/VStepperVerticalActions.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"props": { | ||
"finish": "Changes the Next button to use the finish text.", | ||
"finishText": "The text used for the finish button. Shown when using the **finish** prop." | ||
}, | ||
"events": { | ||
"click:finish": "Emitted when the clicking the finish button." | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
packages/api-generator/src/locale/en/VStepperVerticalItem.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"events": { | ||
"click:finish": "Event emitted when clicking the finish button", | ||
"click:next": "Event emitted when clicking the next button", | ||
"click:previous": "Event emitted when clicking the previous button" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"props": { | ||
"mobile": "Explicitly designate as a mobile display configuration.", | ||
"mobileBreakpoint": "Overrides the display configuration default." | ||
"mobile": "Determines the display mode of the component. If true, the component will be displayed in mobile mode. If false, the component will be displayed in desktop mode. If null, will be based on the current mobile-breakpoint", | ||
"mobileBreakpoint": "Overrides the display configuration default screen size that the component should be considered in mobile." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"description": "A Vue.js project", | ||
"private": true, | ||
"author": "John Leider <[email protected]>", | ||
"version": "3.6.3", | ||
"version": "3.6.9", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/vuetifyjs/vuetify.git", | ||
|
@@ -24,7 +24,7 @@ | |
"@vuelidate/core": "^2.0.3", | ||
"@vuelidate/validators": "^2.0.4", | ||
"@vuetify/one": "^1.8.1", | ||
"algoliasearch": "^4.23.2", | ||
"algoliasearch": "^4.23.3", | ||
"fflate": "^0.8.2", | ||
"isomorphic-fetch": "^3.0.0", | ||
"lodash-es": "^4.17.21", | ||
|
@@ -33,12 +33,12 @@ | |
"prismjs": "^1.29.0", | ||
"roboto-fontface": "^0.10.0", | ||
"vee-validate": "^4.12.6", | ||
"vue": "^3.4.21", | ||
"vue": "^3.4.27", | ||
"vue-gtag-next": "^1.14.0", | ||
"vue-i18n": "^9.11.0", | ||
"vue-instantsearch": "^4.15.0", | ||
"vue-instantsearch": "^4.16.1", | ||
"vue-prism-component": "^2.0.0", | ||
"vuetify": "^3.6.3" | ||
"vuetify": "^3.6.9" | ||
}, | ||
"devDependencies": { | ||
"@emailjs/browser": "^4.3.3", | ||
|
@@ -49,8 +49,8 @@ | |
"@types/prismjs": "^1.26.3", | ||
"@vitejs/plugin-basic-ssl": "^1.1.0", | ||
"@vitejs/plugin-vue": "^5.0.4", | ||
"@vue/compiler-sfc": "^3.4.21", | ||
"@vuetify/api-generator": "^3.6.3", | ||
"@vue/compiler-sfc": "^3.4.27", | ||
"@vuetify/api-generator": "^3.6.9", | ||
"ajv": "^8.12.0", | ||
"async-es": "^3.2.5", | ||
"date-fns": "^3.6.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.