@milaboratories/uikit 2.2.21 → 2.2.23
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 +12 -0
- package/dist/pl-uikit.js +3127 -3113
- package/dist/pl-uikit.umd.cjs +7 -7
- package/dist/src/index.d.ts +1 -0
- package/dist/src/utils/DropdownOverlay/DropdownOverlay.vue.d.ts +28 -0
- package/dist/src/utils/DropdownOverlay/index.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/components/PlDropdown/PlDropdown.vue +24 -67
- package/src/components/PlDropdownMulti/PlDropdownMulti.vue +36 -69
- package/src/components/PlFileDialog/Remote.vue +12 -4
- package/src/components/PlTextField/PlTextField.vue +3 -3
- package/src/components/PlTextField/pl-text-field.scss +5 -1
- package/src/index.ts +1 -0
- package/src/utils/DropdownOverlay/DropdownOverlay.vue +81 -0
- package/src/utils/DropdownOverlay/index.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @milaboratories/uikit
|
|
2
2
|
|
|
3
|
+
## 2.2.23
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- dec84ba: Fix PlTextField disabled state and support ctrl in the multiple file selection
|
|
8
|
+
|
|
9
|
+
## 2.2.22
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 6dfa829: uikit: Add technical DropdownOverlayComponent
|
|
14
|
+
|
|
3
15
|
## 2.2.21
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|