bkui-vue 2.0.2-beta.74 → 2.0.2-beta.75

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.
@@ -217,7 +217,9 @@ declare const tagProps: () => {
217
217
  alignmentAxis?: number;
218
218
  });
219
219
  };
220
- boundary: import("vue-types").VueTypeDef<string | HTMLElement>;
220
+ boundary: import("vue-types").VueTypeDef<string | HTMLElement> & {
221
+ default: string | (() => HTMLElement);
222
+ };
221
223
  zIndex: import("vue-types").VueTypeValidableDef<number> & {
222
224
  default: number;
223
225
  } & {
@@ -293,6 +295,16 @@ declare const tagProps: () => {
293
295
  type: PropType<Partial<IOptions>>;
294
296
  default: () => {};
295
297
  };
298
+ copyable: import("vue-types").VueTypeValidableDef<boolean> & {
299
+ default: boolean;
300
+ } & {
301
+ default: boolean;
302
+ };
303
+ copySeparator: import("vue-types").VueTypeValidableDef<string> & {
304
+ default: string;
305
+ } & {
306
+ default: string;
307
+ };
296
308
  };
297
309
  export default tagProps;
298
310
  export type TagProps = Partial<ExtractPropTypes<ReturnType<typeof tagProps>>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkui-vue",
3
- "version": "2.0.2-beta.74",
3
+ "version": "2.0.2-beta.75",
4
4
  "workspaces": [
5
5
  "packages/**",
6
6
  "scripts/cli",