Skip to content

Commit

Permalink
Merge pull request #21 from bahadirsofuoglu/dev
Browse files Browse the repository at this point in the history
New release
  • Loading branch information
bahadirsofuoglu authored Nov 13, 2022
2 parents c4fe04d + 3ebeb6c commit 9101f33
Show file tree
Hide file tree
Showing 13 changed files with 2,600 additions and 854 deletions.
11 changes: 3 additions & 8 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,14 @@
require('@rushstack/eslint-patch/modern-module-resolution');
module.exports = {
root: true,
env: {
node: true
},
extends: [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/eslint-config-prettier'
],
plugins: ['spellcheck'],
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module'
},
ignorePatterns: ['*.config.js', '/dist/*', 'src/components/datatable/src'],
ecmaVersion: 'latest'
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
Expand Down
53 changes: 53 additions & 0 deletions docs/api/props.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,20 @@ Component uses customTabs for steps handling. Added default value only for sampl

All your next button options can be selected with this prop

#### Default Options:

```js
{
text: 'Next',
icon: 'arrow-right',
hideText: false,
hideIcon: false,
disabled: false
}
```

#### Prop:

```js
nextButton: {
type: Object,
Expand All @@ -55,6 +69,20 @@ All your next button options can be selected with this prop

All your back button options can be selected with this prop

#### Default Options:

```js
{
text: 'Back',
icon: 'arrow-left',
hideText: false,
hideIcon: false,
disabled: false
}
```

#### Prop:

```js
backButton: {
type: Object,
Expand All @@ -68,6 +96,20 @@ All your back button options can be selected with this prop

All your done button options can be selected with this prop

#### Default Options:

```js
{
text: 'Done',
icon: 'check',
hideText: false,
hideIcon: false,
disabled: false
}
```

#### Prop:

```js
doneButton: {
type: Object,
Expand Down Expand Up @@ -178,3 +220,14 @@ Makes the steps square
default: false
}
```

## showProgress

Controlling display tab progress lines

```js
showProgress: {
type: Boolean,
default: true
}
```
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<script type="module" src="/src/index.ts"></script>
</body>
</html>
Loading

0 comments on commit 9101f33

Please sign in to comment.