ll-plus 2.2.13 → 2.2.15
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/es/components/checkbox/src/checkbox-group.vue2.mjs +3 -2
- package/es/components/checkbox/src/checkbox-group.vue2.mjs.map +1 -1
- package/es/components/icon-base/index.d.ts +13 -0
- package/es/components/icon-base/src/icon-base.d.ts +6 -0
- package/es/components/icon-base/src/icon-base.mjs +6 -0
- package/es/components/icon-base/src/icon-base.mjs.map +1 -1
- package/es/components/icon-base/src/icon-base.vue.d.ts +13 -0
- package/es/components/icon-base/src/icon-base.vue2.mjs +1 -1
- package/es/components/icon-base/src/icon-base.vue2.mjs.map +1 -1
- package/es/components/key-value/index.d.ts +5 -17
- package/es/components/key-value/src/components/key-value-item.vue.d.ts +3 -15
- package/es/components/key-value/src/config/key-value-item.d.ts +3 -9
- package/es/components/key-value/src/config/key-value-item.mjs.map +1 -1
- package/es/components/key-value/src/key-value.vue.d.ts +5 -17
- package/es/components/operate-icon/index.d.ts +16 -0
- package/es/components/operate-icon/src/operate-icon.vue.d.ts +16 -0
- package/es/components/operate-icon/src/operate-icon.vue2.mjs +12 -7
- package/es/components/operate-icon/src/operate-icon.vue2.mjs.map +1 -1
- package/es/utils/props/runtime.d.ts +2 -2
- package/index.full.js +22 -10
- package/index.full.min.js +11 -11
- package/index.full.min.js.map +1 -1
- package/index.full.min.mjs +11 -11
- package/index.full.min.mjs.map +1 -1
- package/index.full.mjs +22 -10
- package/lib/components/checkbox/src/checkbox-group.vue2.js +3 -2
- package/lib/components/checkbox/src/checkbox-group.vue2.js.map +1 -1
- package/lib/components/icon-base/index.d.ts +13 -0
- package/lib/components/icon-base/src/icon-base.d.ts +6 -0
- package/lib/components/icon-base/src/icon-base.js +6 -0
- package/lib/components/icon-base/src/icon-base.js.map +1 -1
- package/lib/components/icon-base/src/icon-base.vue.d.ts +13 -0
- package/lib/components/icon-base/src/icon-base.vue2.js +1 -1
- package/lib/components/icon-base/src/icon-base.vue2.js.map +1 -1
- package/lib/components/key-value/index.d.ts +5 -17
- package/lib/components/key-value/src/components/key-value-item.vue.d.ts +3 -15
- package/lib/components/key-value/src/config/key-value-item.d.ts +3 -9
- package/lib/components/key-value/src/config/key-value-item.js.map +1 -1
- package/lib/components/key-value/src/key-value.vue.d.ts +5 -17
- package/lib/components/operate-icon/index.d.ts +16 -0
- package/lib/components/operate-icon/src/operate-icon.vue.d.ts +16 -0
- package/lib/components/operate-icon/src/operate-icon.vue2.js +12 -7
- package/lib/components/operate-icon/src/operate-icon.vue2.js.map +1 -1
- package/lib/utils/props/runtime.d.ts +2 -2
- package/package.json +1 -1
- package/theme-chalk/css/checkbox.css +1 -1
- package/theme-chalk/css/index.css +1 -1
- package/theme-chalk/css/operate-icon.css +1 -1
- package/types/packages/components/icon-base/index.d.ts +13 -0
- package/types/packages/components/icon-base/src/icon-base.d.ts +6 -0
- package/types/packages/components/icon-base/src/icon-base.vue.d.ts +13 -0
- package/types/packages/components/key-value/index.d.ts +5 -17
- package/types/packages/components/key-value/src/components/key-value-item.vue.d.ts +3 -15
- package/types/packages/components/key-value/src/config/key-value-item.d.ts +3 -9
- package/types/packages/components/key-value/src/key-value.vue.d.ts +5 -17
- package/types/packages/components/operate-icon/index.d.ts +16 -0
- package/types/packages/components/operate-icon/src/operate-icon.vue.d.ts +16 -0
- package/types/packages/utils/props/runtime.d.ts +2 -2
|
@@ -43,6 +43,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
43
43
|
readonly disabled?: import("ll-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
|
|
44
44
|
readonly onClick?: Function | undefined;
|
|
45
45
|
readonly data?: any;
|
|
46
|
+
readonly class?: string | undefined;
|
|
46
47
|
readonly iconName?: string | undefined;
|
|
47
48
|
readonly iconType?: import("ll-plus/es/utils").EpPropMergeType<StringConstructor, "default" | "primary", unknown> | undefined;
|
|
48
49
|
readonly tooltipTitle?: string | undefined;
|
|
@@ -54,6 +55,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
54
55
|
readonly disabled?: import("ll-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
|
|
55
56
|
readonly onClick?: Function | undefined;
|
|
56
57
|
readonly data?: any;
|
|
58
|
+
readonly class?: string | undefined;
|
|
57
59
|
readonly iconName?: string | undefined;
|
|
58
60
|
readonly iconType?: import("ll-plus/es/utils").EpPropMergeType<StringConstructor, "default" | "primary", unknown> | undefined;
|
|
59
61
|
readonly tooltipTitle?: string | undefined;
|
|
@@ -79,6 +81,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
79
81
|
is: (name?: string) => string;
|
|
80
82
|
};
|
|
81
83
|
operateIconClass: import("vue").ComputedRef<string>;
|
|
84
|
+
marginButtonClass: (index: any, length: any) => "" | "margin-button-container";
|
|
82
85
|
handleDropdownOpenChange: (open: boolean) => void;
|
|
83
86
|
handleIconMouseenter: () => void;
|
|
84
87
|
readonly LlIconBase: import("ll-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
@@ -88,6 +91,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
88
91
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
89
92
|
__epPropKey: true;
|
|
90
93
|
};
|
|
94
|
+
readonly class: {
|
|
95
|
+
readonly type: import("vue").PropType<string>;
|
|
96
|
+
readonly required: false;
|
|
97
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
98
|
+
__epPropKey: true;
|
|
99
|
+
};
|
|
91
100
|
readonly isShowTooltip: import("ll-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
92
101
|
readonly tooltipTitle: {
|
|
93
102
|
readonly type: import("vue").PropType<string>;
|
|
@@ -133,6 +142,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
133
142
|
readonly disabled?: import("ll-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
|
|
134
143
|
readonly onClick?: Function | undefined;
|
|
135
144
|
readonly data?: any;
|
|
145
|
+
readonly class?: string | undefined;
|
|
136
146
|
readonly iconName?: string | undefined;
|
|
137
147
|
readonly iconType?: import("ll-plus/es/utils").EpPropMergeType<StringConstructor, "default" | "primary", unknown> | undefined;
|
|
138
148
|
readonly tooltipTitle?: string | undefined;
|
|
@@ -157,6 +167,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
157
167
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
158
168
|
__epPropKey: true;
|
|
159
169
|
};
|
|
170
|
+
readonly class: {
|
|
171
|
+
readonly type: import("vue").PropType<string>;
|
|
172
|
+
readonly required: false;
|
|
173
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
174
|
+
__epPropKey: true;
|
|
175
|
+
};
|
|
160
176
|
readonly isShowTooltip: import("ll-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
161
177
|
readonly tooltipTitle: {
|
|
162
178
|
readonly type: import("vue").PropType<string>;
|
|
@@ -27,6 +27,6 @@ export declare const buildProp: <Type = never, Value = never, Validator = never,
|
|
|
27
27
|
export type TestProps = Record<string, {
|
|
28
28
|
[epPropKey]: true;
|
|
29
29
|
} | NativePropType | EpPropInput<any, any, any, any, any>>;
|
|
30
|
-
export declare const buildProps: <Props extends Record<string, {
|
|
30
|
+
export declare const buildProps: <Props extends Record<string, NativePropType | EpPropInput<any, any, any, any, any> | {
|
|
31
31
|
__epPropKey: true;
|
|
32
|
-
}
|
|
32
|
+
}>>(props: Props) => { [K in keyof Props]: IfEpProp<Props[K], Props[K], IfNativePropType<Props[K], Props[K], EpPropConvert<Props[K]>>>; };
|