bootstrap-vue-wrapper 2.0.0 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,23 +1,21 @@
1
1
  # Changelog
2
2
 
3
3
  ## [2.0.0] - 2024-02-01
4
-
5
- Version 2.0 Changelog
6
- Major Changes:
4
+ **Major Changes**
7
5
  - Codebase Rewrite: The entire codebase has been rewritten in TypeScript, providing stronger type guarantees, improved maintainability, and enhanced developer experience.
8
6
  - `BsTable` template `item` property renamed to `value`
9
7
  - `hideValidationMessage` property has been removed. Instead, use the `validatorEnabled` property to disable validation.
10
8
 
11
- New Features:
9
+ **New Features:**
12
10
  - Development Support Enhancements: Introduced a dedicated examples directory within the development (dev) folder, offering a comprehensive suite of examples to assist developers in understanding and utilizing the library's capabilities more effectively.
13
11
 
14
- Improvements:
12
+ **Improvements:**
15
13
  - Validator Component Overhaul: Rethought and redesigned the validator component. It is no longer implemented as a mixin. Instead, it is now a standalone component utilizing the Composition API, aligning with modern Vue.js best practices and improving its reusability and composability in applications.
16
14
 
17
- Fixes:
15
+ **Fixes:**
18
16
  - Bug Fixes: Addressed various bugs and issues identified in the previous versions, enhancing the stability and reliability of the library.
19
17
 
20
- Migrate from 1.x to 2.x:
18
+ **Migrate from 1.x to 2.x:**
21
19
 
22
20
  If you want to display the validation message elsewhere, not directly below the input, this could previously be achieved as follows:
23
21
  ```
package/README.md CHANGED
@@ -14,3 +14,19 @@
14
14
  ```bash
15
15
  npm install bootstrap-vue-wrapper
16
16
  ```
17
+
18
+ or
19
+
20
+ ```bash
21
+ yarn add bootstrap-vue-wrapper
22
+ ```
23
+
24
+ ## Dev:
25
+ ``` bash
26
+ yarn install
27
+ yarn dev
28
+ ```
29
+
30
+ ## Examples
31
+
32
+ There are examples of each component in [this file](https://github.com/zemkogabor/bootstrap-vue-wrapper/blob/main/dev/pages/Home.vue).