@milaboratories/uikit 1.2.29 → 2.0.0
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 +18 -0
- package/dist/pl-uikit.js +2775 -2486
- package/dist/pl-uikit.umd.cjs +8 -8
- package/dist/src/components/PlDropdownRef/PlDropdownRef.vue.d.ts +1 -1
- package/dist/src/components/PlFileInput/PlFileInput.vue.d.ts +9 -0
- package/dist/src/components/PlLogView/PlLogView.vue.d.ts +25 -1
- package/dist/src/components/PlLogView/useLogHandle.d.ts +15 -0
- package/dist/src/components/PlTooltip/PlTooltip.vue.d.ts +1 -1
- package/dist/src/generated/icons-16.d.ts +1 -0
- package/dist/src/generated/icons-24.d.ts +1 -0
- package/dist/src/types.d.ts +3 -2
- package/dist/style.css +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +2 -1
- package/scripts/parse-icons.js +5 -0
- package/src/components/PlDialogModal/pl-dialog-modal.scss +1 -1
- package/src/components/PlFileInput/PlFileInput.vue +11 -3
- package/src/components/PlFileInput/pl-file-input.scss +82 -4
- package/src/components/PlLogView/PlLogView.vue +20 -5
- package/src/components/PlLogView/useLogHandle.ts +93 -0
- package/src/generated/.gitkeep +0 -0
- package/src/generated/icons-16.ts +56 -0
- package/src/generated/icons-24.ts +134 -0
- package/src/types.ts +3 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @milaboratories/uikit
|
|
2
2
|
|
|
3
|
+
## 2.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- cf824ad: fixed styles for modal window
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- a0854a3: Small common ui fixes
|
|
12
|
+
- cdb6c31: uikit: dynamically generate icon types
|
|
13
|
+
- e62ed59: Added component PlFileInput for AgGrid cell
|
|
14
|
+
|
|
15
|
+
## 1.2.30
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 6737e02: [sdk/ui-vue] `PlLogView` support log handle as :value
|
|
20
|
+
|
|
3
21
|
## 1.2.29
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|