@milaboratories/uikit 2.2.60 → 2.2.62
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 +3869 -3798
- package/dist/pl-uikit.js.map +1 -1
- package/dist/pl-uikit.umd.cjs +6 -6
- package/dist/pl-uikit.umd.cjs.map +1 -1
- package/dist/src/components/PlFileDialog/Remote.vue.d.ts +1 -1
- package/dist/src/components/PlFileDialog/utils.test.d.ts +1 -0
- package/dist/src/components/PlLogView/PlLogView.vue.d.ts +8 -0
- package/dist/src/components/PlLogView/useLogHandle.d.ts +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/src/components/PlFileDialog/Local.vue +5 -5
- package/src/components/PlFileDialog/Remote.vue +5 -5
- package/src/components/PlFileDialog/utils.test.ts +51 -0
- package/src/components/PlFileDialog/utils.ts +27 -12
- package/src/components/PlLogView/PlLogView.vue +13 -2
- package/src/components/PlLogView/useLogHandle.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @milaboratories/uikit
|
|
2
2
|
|
|
3
|
+
## 2.2.62
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 22871ac: uikit and ui-vue: get global platforma from preload via hook. Now we could defined a hook and return new platforma that overrides some behaviours. It's needed for keeping old compat
|
|
8
|
+
|
|
9
|
+
## 2.2.61
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- b00fefd: PlFileDialog: handle absolute paths in breadcrumbs (we got them in ssh deployment)
|
|
14
|
+
|
|
3
15
|
## 2.2.60
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|