@milaboratories/uikit 1.2.30 → 2.0.1
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 +976 -799
- package/dist/pl-uikit.umd.cjs +7 -7
- 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/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/index.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 +3 -3
- package/scripts/parse-icons.js +5 -0
- package/src/assets/icons/icon-assets/24_delete-bin.svg +7 -0
- package/src/assets/icons/icon-assets-min/24_delete-bin.svg +1 -0
- package/src/assets/icons/icons-24-generated.json +1 -0
- package/src/assets/icons/icons-24-generated.scss +1 -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/generated/.gitkeep +0 -0
- package/src/generated/icons-16.ts +56 -0
- package/src/generated/icons-24.ts +135 -0
- package/src/types.ts +3 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @milaboratories/uikit
|
|
2
2
|
|
|
3
|
+
## 2.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7c9d23c: Add 24_delete-bin icon
|
|
8
|
+
|
|
9
|
+
## 2.0.0
|
|
10
|
+
|
|
11
|
+
### Major Changes
|
|
12
|
+
|
|
13
|
+
- cf824ad: fixed styles for modal window
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- a0854a3: Small common ui fixes
|
|
18
|
+
- cdb6c31: uikit: dynamically generate icon types
|
|
19
|
+
- e62ed59: Added component PlFileInput for AgGrid cell
|
|
20
|
+
|
|
3
21
|
## 1.2.30
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|