Skip to content

Commit d81d6a7

Browse files
author
Justin Kimbrell
committed
fix: fixed issues with package json, readme, and license
1 parent 1ebbe69 commit d81d6a7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+1185
-60
lines changed

.changeset/honest-colts-dream.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/pretty-impalas-kiss.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
"@vue-interface/activity-indicator": patch
3+
"@vue-interface/light-switch-field": patch
4+
"@vue-interface/checkbox-field": patch
5+
"@vue-interface/textarea-field": patch
6+
"@vue-interface/dropdown-menu": patch
7+
"@vue-interface/btn-activity": patch
8+
"@vue-interface/btn-dropdown": patch
9+
"@vue-interface/form-control": patch
10+
"@vue-interface/select-field": patch
11+
"@vue-interface/input-field": patch
12+
"@vue-interface/radio-field": patch
13+
"@vue-interface/slide-panel": patch
14+
"@vue-interface/breadcrumb": patch
15+
"@vue-interface/pagination": patch
16+
"@vue-interface/slide-deck": patch
17+
"@vue-interface/autogrow": patch
18+
"@vue-interface/modal": patch
19+
"@vue-interface/btn": patch
20+
---
21+
22+
- Fixed issues with dist not being published
23+
- Added README.md
24+
- Added MIT license

packages/autogrow/LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Justin Kimbrell
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+

packages/autogrow/README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Autogrow
2+
3+
The Autogrow directive automatically resizes a textarea to fit its content. It eliminates the need for manual resizing and provides smooth UX for variable-length text inputs.
4+
5+
## Installation
6+
7+
```bash
8+
pnpm i @vue-interface/autogrow
9+
```
10+
11+
```bash
12+
yarn add @vue-interface/autogrow
13+
```
14+
15+
```bash
16+
npm i @vue-interface/autogrow
17+
```
18+
19+
```bash
20+
bun i @vue-interface/autogrow
21+
```
22+
23+
## Basic Usage
24+
25+
```html
26+
<textarea v-autogrow rows="6" class="form-control"></textarea>
27+
```
28+
29+
For more comprehensive documentation and examples, please visit the [online documentation](https://vue-interface.github.io/packages/autogrow/).

packages/autogrow/package.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"name": "@vue-interface/autogrow",
33
"version": "1.0.0",
44
"description": "A Vue directive that makes textareas grow as the user types.",
5+
"readme": "README.md",
56
"type": "module",
67
"main": "./dist/autogrow.umd.cjs",
78
"module": "./dist/autogrow.js",
@@ -21,7 +22,7 @@
2122
},
2223
"repository": {
2324
"type": "git",
24-
"url": "git+https://github.com/vue-interface/autogrow"
25+
"url": "git+https://github.com/vue-interface/vue-interface.github.io"
2526
},
2627
"keywords": [
2728
"Textarea",
@@ -32,11 +33,16 @@
3233
"Bootstrap"
3334
],
3435
"author": "Justin Kimbrell",
35-
"license": "ISC",
36+
"license": "MIT",
3637
"bugs": {
37-
"url": "https://github.com/vue-interface/autogrow"
38+
"url": "https://github.com/vue-interface/vue-interface.github.io"
3839
},
3940
"homepage": "https://github.com/vue-interface/vue-interface",
41+
"files": [
42+
"dist",
43+
"README.md",
44+
"LICENSE"
45+
],
4046
"peerDependencies": {
4147
"vue": "^3.3.4"
4248
}

packages/breadcrumb/LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Justin Kimbrell
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+

packages/breadcrumb/README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Breadcrumb
2+
3+
The `breadcrumb` utility class provides a flexible and customizable breadcrumb component system with customizable color variants and sizes.
4+
5+
## Installation
6+
7+
```bash
8+
pnpm i @vue-interface/breadcrumb
9+
```
10+
11+
```bash
12+
yarn add @vue-interface/breadcrumb
13+
```
14+
15+
```bash
16+
npm i @vue-interface/breadcrumb
17+
```
18+
19+
```bash
20+
bun i @vue-interface/breadcrumb
21+
```
22+
23+
## Basic Usage
24+
25+
To create a breadcrumb component, use the parent `breadcrumb` class and then add the `breadcrumb-link` class to the links in the breadcrumb.
26+
27+
```html
28+
<div class="breadcrumb">
29+
<a href="#" class="breadcrumb-link breadcrumb-icon-home"></a>
30+
<a href="#foo" class="breadcrumb-link">Foo</a>
31+
<a href="#foo/bar" class="breadcrumb-link active">Bar</a>
32+
</div>
33+
```
34+
35+
For more comprehensive documentation and examples, please visit the [online documentation](https://vue-interface.github.io/packages/breadcrumb/).

packages/breadcrumb/package.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
"repository": {
1414
"type": "git",
15-
"url": "git+https://github.com/vue-interface/breadcrumb"
15+
"url": "git+https://github.com/vue-interface/vue-interface.github.io"
1616
},
1717
"keywords": [
1818
"Breadcrumb",
@@ -22,9 +22,15 @@
2222
"Bootstrap"
2323
],
2424
"author": "Justin Kimbrell",
25-
"license": "ISC",
25+
"license": "MIT",
2626
"bugs": {
27-
"url": "https://github.com/vue-interface/breadcrumb"
27+
"url": "https://github.com/vue-interface/vue-interface.github.io"
2828
},
29-
"homepage": "https://github.com/vue-interface/vue-interface"
29+
"homepage": "https://github.com/vue-interface/vue-interface",
30+
"readme": "README.md",
31+
"files": [
32+
"index.css",
33+
"README.md",
34+
"LICENSE"
35+
]
3036
}

packages/btn-activity/LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Justin Kimbrell
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+

packages/btn-activity/README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Button Activity
2+
3+
The `btn-activity` component provides an interactive button with built-in activity indicators for async operations. It extends the standard button and combines activity indicators.
4+
5+
## Installation
6+
7+
```bash
8+
pnpm i @vue-interface/btn-activity
9+
```
10+
11+
```bash
12+
yarn add @vue-interface/btn-activity
13+
```
14+
15+
```bash
16+
npm i @vue-interface/btn-activity
17+
```
18+
19+
```bash
20+
bun i @vue-interface/btn-activity
21+
```
22+
23+
## Basic Usage
24+
25+
```vue
26+
<BtnActivity :indicator="Dots" @click="onClick">Dots</BtnActivity>
27+
```
28+
29+
For more comprehensive documentation and examples, please visit the [online documentation](https://vue-interface.github.io/packages/btn-activity/).
30+

0 commit comments

Comments
 (0)