selectic 1.3.11 → 3.0.3

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Selectic
2
2
 
3
- > VueJS 2.X + Typescript + JSX + Select
3
+ > VueJS 3.X + Typescript + JSX + Select
4
4
 
5
5
 
6
6
  ## Introduction
@@ -55,7 +55,7 @@ There are very few dependencies and code stays very small (~90kB).
55
55
  * List of items (either string array or object array).
56
56
  * Can load dynamically list from a server and the list can be paginate (with a
57
57
  cache system to avoid reloading previous requests).
58
- * Slots: options may be added from Vue template (by writing explicit `<option>` or `<optgroup>`) in a reactive way.
58
+ * Slots: options may be added from Vue template (by writing explicit `<option>` or `<optgroup>`) in a reactive way _(currently disabled in 3.0.0)_.
59
59
  * Multi-sources: Possibility to combine options from different sources (static, dynamic or slots) or to use the other as fallback (if the list is empty).
60
60
  * Supports basic Select properties like `multiple`, `disabled`, `title`
61
61
  * Supports group element (equivalent of optGroup), even for dynamic list.
@@ -64,7 +64,7 @@ There are very few dependencies and code stays very small (~90kB).
64
64
  * Possibility to search for any string in options.
65
65
  * Scroll bar always indicates the size of the list (even for dynamic list),
66
66
  next pages to fetch are already computed the size of the list.
67
- * Performance optimisation for list containing large number of items.
67
+ * Performance optimization for list containing large number of items.
68
68
  * Emits `input`, `change`, `open`, and `close` events.
69
69
  * Supports a reverse selection system (for very long list where only some
70
70
  elements are not selected).
@@ -73,7 +73,7 @@ There are very few dependencies and code stays very small (~90kB).
73
73
  * Options to auto-disable the component when there is no options or only one
74
74
  mandatory option.
75
75
  * Handle selection overflow either by displaying a tag "+x more" either by adding several lines and show all selected options.
76
- * Possibility to open the component programatically.
76
+ * Possibility to open the component programmatically.
77
77
  * CSS styles can be easily changed to fit your theme.
78
78
  * Strong typing: all Typescript types are provided.
79
79
 
@@ -81,6 +81,8 @@ There are very few dependencies and code stays very small (~90kB).
81
81
 
82
82
  [Read the documentation](./doc/main.md) to know how to configure Selectic and all its possibilities.
83
83
 
84
+ For users which are used to previous Selectic versions, they can read the [migration strategy guide](./doc/breakingChanges.md).
85
+
84
86
  It uses [VTYX](https://github.com/Intersec/vtyx) for strong typing.
85
87
 
86
88
  ## Tests
@@ -94,4 +96,3 @@ Run unitary tests:
94
96
  ```console
95
97
  $ npm run test
96
98
  ```
97
-