bkui-vue 2.0.1-beta.13 → 2.0.1-beta.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/lib/dist.index.js CHANGED
@@ -24,8 +24,5 @@
24
24
  * IN THE SOFTWARE.
25
25
  */
26
26
  import './styles';
27
- export * from './components';
28
- export { default } from './preset';
29
- export * from './config-provider';
30
- export * from './directives';
31
- export const version = "2.0.1-beta.13";
27
+ export { default } from './index';
28
+ export * from './index';
package/lib/index.d.ts CHANGED
@@ -1,3 +1,8 @@
1
+ declare global {
2
+ interface Window {
3
+ __bkui_vue_version__: string;
4
+ }
5
+ }
1
6
  export * from './components';
2
7
  export * from './hooks';
3
8
  export { default } from './preset';
package/lib/index.js CHANGED
@@ -1,32 +1,8 @@
1
- /*
2
- * Tencent is pleased to support the open source community by making
3
- * 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available.
4
- *
5
- * Copyright (C) 2021 THL A29 Limited, a Tencent company. All rights reserved.
6
- *
7
- * 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) is licensed under the MIT License.
8
- *
9
- * License for 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition):
10
- *
11
- * ---------------------------------------------------
12
- * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
13
- * documentation files (the "Software"), to deal in the Software without restriction, including without limitation
14
- * the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and
15
- * to permit persons to whom the Software is furnished to do so, subject to the following conditions:
16
- *
17
- * The above copyright notice and this permission notice shall be included in all copies or substantial portions of
18
- * the Software.
19
- *
20
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
21
- * THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
23
- * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
24
- * IN THE SOFTWARE.
25
- */
26
1
  export * from './components';
27
2
  export * from './hooks';
28
3
  export { default } from './preset';
29
4
  export * from './config-provider';
30
5
  export * from './directives';
31
6
  export * as plugins from './plugins';
32
- export const version = "2.0.1-beta.13";
7
+ export const version = "2.0.1-beta.15";
8
+ window.__bkui_vue_version__ = version;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkui-vue",
3
- "version": "2.0.1-beta.13",
3
+ "version": "2.0.1-beta.15",
4
4
  "workspaces": [
5
5
  "packages/**",
6
6
  "scripts/cli",