@milaboratories/uikit 2.2.78 → 2.2.80
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.css +1 -0
- package/dist/pl-uikit.js +5043 -4909
- package/dist/pl-uikit.js.map +1 -1
- package/dist/src/components/PlAlert/PlAlert.vue.d.ts +1 -1
- package/dist/src/components/PlAlert/PlAlert.vue.d.ts.map +1 -1
- package/dist/src/components/PlClipboard/PlClipboard.vue.d.ts +12 -0
- package/dist/src/components/PlClipboard/PlClipboard.vue.d.ts.map +1 -0
- package/dist/src/components/PlClipboard/index.d.ts +2 -0
- package/dist/src/components/PlClipboard/index.d.ts.map +1 -0
- package/dist/src/components/PlErrorAlert/PlErrorAlert.vue.d.ts +26 -0
- package/dist/src/components/PlErrorAlert/PlErrorAlert.vue.d.ts.map +1 -0
- package/dist/src/components/PlErrorAlert/index.d.ts +2 -0
- package/dist/src/components/PlErrorAlert/index.d.ts.map +1 -0
- package/dist/src/components/PlErrorBoundary/PlErrorBoundary.vue.d.ts +92 -0
- package/dist/src/components/PlErrorBoundary/PlErrorBoundary.vue.d.ts.map +1 -0
- package/dist/src/components/PlErrorBoundary/index.d.ts +2 -0
- package/dist/src/components/PlErrorBoundary/index.d.ts.map +1 -0
- package/dist/src/components/PlFileInput/PlFileInput.vue.d.ts.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +6 -9
- package/src/assets/base.scss +3 -2
- package/src/assets/variables.scss +2 -0
- package/src/components/PlAutocomplete/PlAutocomplete.vue +1 -1
- package/src/components/PlClipboard/PlClipboard.vue +47 -0
- package/src/components/PlClipboard/index.ts +1 -0
- package/src/components/PlErrorAlert/PlErrorAlert.vue +105 -0
- package/src/components/PlErrorAlert/index.ts +1 -0
- package/src/components/PlErrorBoundary/PlErrorBoundary.vue +59 -0
- package/src/components/PlErrorBoundary/index.ts +1 -0
- package/src/components/PlFileInput/PlFileInput.vue +5 -9
- package/src/index.ts +2 -0
- package/vite.config.ts +0 -7
- package/dist/style.css +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @milaboratories/uikit
|
|
2
2
|
|
|
3
|
+
## 2.2.80
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- cd3b6d5: Bump vite version and related plugins
|
|
8
|
+
|
|
9
|
+
## 2.2.79
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 4ccd249: Implementation PlErrorBoundary over reusable PlErrorAlert + PlClibpboard
|
|
14
|
+
|
|
3
15
|
## 2.2.78
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|