@milaboratories/uikit 2.2.30 → 2.2.32
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 +417 -419
- package/dist/pl-uikit.umd.cjs +5 -5
- package/dist/src/components/PlBtnGhost/PlBtnGhost.vue.d.ts +4 -4
- package/dist/style.css +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/components/PlBtnGhost/PlBtnGhost.vue +5 -5
- package/src/components/PlDropdownLine/PlDropdownLine.vue +2 -6
- package/src/components/PlDropdownLine/resizable-input.scss +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import './pl-btn-ghost.scss';
|
|
2
|
-
import type {
|
|
2
|
+
import type { MaskIconName24, Size } from '../../types';
|
|
3
3
|
/**
|
|
4
4
|
* Ghost button
|
|
5
5
|
*/
|
|
@@ -19,7 +19,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
19
19
|
/**
|
|
20
20
|
* Icon to display
|
|
21
21
|
*/
|
|
22
|
-
icon?:
|
|
22
|
+
icon?: MaskIconName24;
|
|
23
23
|
/**
|
|
24
24
|
* If `true`, an icon is displayed before the text.
|
|
25
25
|
*/
|
|
@@ -44,7 +44,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
44
44
|
/**
|
|
45
45
|
* Icon to display
|
|
46
46
|
*/
|
|
47
|
-
icon?:
|
|
47
|
+
icon?: MaskIconName24;
|
|
48
48
|
/**
|
|
49
49
|
* If `true`, an icon is displayed before the text.
|
|
50
50
|
*/
|
|
@@ -55,7 +55,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
55
55
|
justifyCenter?: boolean;
|
|
56
56
|
}> & Readonly<{}>, {
|
|
57
57
|
size: Size;
|
|
58
|
-
icon:
|
|
58
|
+
icon: MaskIconName24;
|
|
59
59
|
justifyCenter: boolean;
|
|
60
60
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLButtonElement>, {
|
|
61
61
|
default?(_: {}): any;
|