@jetlinks-web/components 2.0.4-8 → 2.0.4-9

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.
Files changed (43) hide show
  1. package/es/AMap/index.js +3 -0
  2. package/es/BadgeStatus/index.js +3 -0
  3. package/es/CardSelect/index.js +3 -0
  4. package/es/CheckButton/index.js +3 -0
  5. package/es/ConfigProvider/index.js +3 -0
  6. package/es/Echarts/index.js +3 -0
  7. package/es/Ellipsis/index.js +3 -0
  8. package/es/Empty/index.js +3 -0
  9. package/es/FullPage/FullPage.js +1 -1
  10. package/es/FullPage/index.js +3 -0
  11. package/es/Icon/index.js +3 -0
  12. package/es/MonacoEditor/index.js +3 -0
  13. package/es/PermissionButton/index.js +3 -0
  14. package/es/ProLayout/index.js +3 -0
  15. package/es/ProTable/index.js +3 -0
  16. package/es/Scrollbar/index.js +3 -0
  17. package/es/Search/Advanced/SaveHistory.js +1 -1
  18. package/es/Search/Item.js +1 -1
  19. package/es/Search/Search.js +1 -1
  20. package/es/Search/index.js +3 -0
  21. package/es/ValueItem/index.js +3 -0
  22. package/lib/AMap/index.js +3 -0
  23. package/lib/BadgeStatus/index.js +3 -0
  24. package/lib/CardSelect/index.js +3 -0
  25. package/lib/CheckButton/index.js +3 -0
  26. package/lib/ConfigProvider/index.js +3 -0
  27. package/lib/Echarts/index.js +3 -0
  28. package/lib/Ellipsis/index.js +3 -0
  29. package/lib/Empty/index.js +3 -0
  30. package/lib/FullPage/FullPage.js +1 -1
  31. package/lib/FullPage/index.js +3 -0
  32. package/lib/Icon/index.js +3 -0
  33. package/lib/MonacoEditor/index.js +3 -0
  34. package/lib/PermissionButton/index.js +3 -0
  35. package/lib/ProLayout/index.js +3 -0
  36. package/lib/ProTable/index.js +3 -0
  37. package/lib/Scrollbar/index.js +3 -0
  38. package/lib/Search/Advanced/SaveHistory.js +1 -1
  39. package/lib/Search/Item.js +1 -1
  40. package/lib/Search/Search.js +1 -1
  41. package/lib/Search/index.js +3 -0
  42. package/lib/ValueItem/index.js +3 -0
  43. package/package.json +1 -1
package/es/AMap/index.js CHANGED
@@ -1,2 +1,5 @@
1
1
  import Map from './Map.js';
2
+ Map.install = function (app) {
3
+ app.component(Map.name, Map);
4
+ };
2
5
  export default Map;
@@ -1,3 +1,6 @@
1
1
  import BadgeStatus from './Badge.js';
2
+ BadgeStatus.install = function (app) {
3
+ app.component(BadgeStatus.name, BadgeStatus);
4
+ };
2
5
  export * from './color';
3
6
  export default BadgeStatus;
@@ -1,2 +1,5 @@
1
1
  import CardSelect from "./CardSelect.js";
2
+ CardSelect.install = function (app) {
3
+ app.component(CardSelect.name, CardSelect);
4
+ };
2
5
  export default CardSelect;
@@ -1,2 +1,5 @@
1
1
  import CheckButton from './CheckButton.js';
2
+ CheckButton.install = function (app) {
3
+ app.component(CheckButton.name, CheckButton);
4
+ };
2
5
  export default CheckButton;
@@ -28,4 +28,7 @@ var JConfigProvider = defineComponent({
28
28
  }
29
29
  });
30
30
  JConfigProvider.config = ConfigProvider.config;
31
+ JConfigProvider.install = function (app) {
32
+ app.component(JConfigProvider.name, JConfigProvider);
33
+ };
31
34
  export default JConfigProvider;
@@ -1,2 +1,5 @@
1
1
  import Echarts from './Echarts.js';
2
+ Echarts.install = function (app) {
3
+ app.component(Echarts.name, Echarts);
4
+ };
2
5
  export default Echarts;
@@ -1,2 +1,5 @@
1
1
  import Ellipsis from './Ellipsis.js';
2
+ Ellipsis.install = function (app) {
3
+ app.component(Ellipsis.name, Ellipsis);
4
+ };
2
5
  export default Ellipsis;
package/es/Empty/index.js CHANGED
@@ -1,2 +1,5 @@
1
1
  import Empty from './Empty.js';
2
+ Empty.install = function (app) {
3
+ app.component(Empty.name, Empty);
4
+ };
2
5
  export default Empty;
@@ -6,7 +6,7 @@
6
6
  } */
7
7
  import { defineComponent as _defineComponent } from 'vue';
8
8
  import { unref as _unref, renderSlot as _renderSlot, createElementVNode as _createElementVNode, normalizeStyle as _normalizeStyle, openBlock as _openBlock, createElementBlock as _createElementBlock, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
9
- const _withScopeId = n => (_pushScopeId("data-v-1713237419488"), n = n(), _popScopeId(), n);
9
+ const _withScopeId = n => (_pushScopeId("data-v-1713238262554"), n = n(), _popScopeId(), n);
10
10
  const _hoisted_1 = { class: "full-page-warp-content" };
11
11
  import { ref } from 'vue';
12
12
  import { useElementBounding } from '@vueuse/core';
@@ -1,2 +1,5 @@
1
1
  import FullPage from './FullPage.js';
2
+ FullPage.install = function (app) {
3
+ app.component(FullPage.name, FullPage);
4
+ };
2
5
  export default FullPage;
package/es/Icon/index.js CHANGED
@@ -1,2 +1,5 @@
1
1
  import AIcon from './icon';
2
+ AIcon.install = function (app) {
3
+ app.component(AIcon.name, AIcon);
4
+ };
2
5
  export default AIcon;
@@ -1,2 +1,5 @@
1
1
  import Monaco from './Monaco.js';
2
+ Monaco.install = function (app) {
3
+ app.component(Monaco.name, Monaco);
4
+ };
2
5
  export default Monaco;
@@ -114,4 +114,7 @@ var PermissionButton = defineComponent({
114
114
  };
115
115
  }
116
116
  });
117
+ PermissionButton.install = function (app) {
118
+ app.component(PermissionButton.name, PermissionButton);
119
+ };
117
120
  export default PermissionButton;
@@ -1,4 +1,7 @@
1
1
  import ProLayout from './Basic/BasicLayout';
2
2
  import PageContainer from './PageContainer';
3
+ ProLayout.install = function (app) {
4
+ app.component(ProLayout.name, ProLayout);
5
+ };
3
6
  export { PageContainer };
4
7
  export default ProLayout;
@@ -408,4 +408,7 @@ var ProTable = defineComponent({
408
408
  };
409
409
  }
410
410
  });
411
+ ProTable.install = function (app) {
412
+ app.component(ProTable.name, ProTable);
413
+ };
411
414
  export default ProTable;
@@ -1,2 +1,5 @@
1
1
  import Scrollbar from './Scrollbar.js';
2
+ Scrollbar.install = function (app) {
3
+ app.component(Scrollbar.name, Scrollbar);
4
+ };
2
5
  export default Scrollbar;
@@ -21,7 +21,7 @@
21
21
  } */
22
22
  import { defineComponent as _defineComponent } from 'vue';
23
23
  import { unref as _unref, createVNode as _createVNode, withCtx as _withCtx, createTextVNode as _createTextVNode, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, createBlock as _createBlock, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
24
- const _withScopeId = n => (_pushScopeId("data-v-1713237420791"), n = n(), _popScopeId(), n);
24
+ const _withScopeId = n => (_pushScopeId("data-v-1713238263944"), n = n(), _popScopeId(), n);
25
25
  const _hoisted_1 = {
26
26
  key: 0,
27
27
  style: { "width": "240px" }
package/es/Search/Item.js CHANGED
@@ -78,7 +78,7 @@ function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]
78
78
  } */
79
79
  import { defineComponent as _defineComponent } from 'vue';
80
80
  import { unref as _unref, openBlock as _openBlock, createBlock as _createBlock, createCommentVNode as _createCommentVNode, toDisplayString as _toDisplayString, createElementBlock as _createElementBlock, createVNode as _createVNode, Fragment as _Fragment, normalizeStyle as _normalizeStyle, mergeProps as _mergeProps, resolveDynamicComponent as _resolveDynamicComponent, withCtx as _withCtx, createElementVNode as _createElementVNode, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
81
- const _withScopeId = n => (_pushScopeId("data-v-1713237420258"), n = n(), _popScopeId(), n);
81
+ const _withScopeId = n => (_pushScopeId("data-v-1713238262682"), n = n(), _popScopeId(), n);
82
82
  const _hoisted_1 = { class: "JSearch-item" };
83
83
  const _hoisted_2 = {
84
84
  key: 0,
@@ -36,7 +36,7 @@
36
36
  } */
37
37
  import { defineComponent as _defineComponent } from 'vue';
38
38
  import { renderList as _renderList, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock, createVNode as _createVNode, unref as _unref, withCtx as _withCtx, createBlock as _createBlock, renderSlot as _renderSlot, toDisplayString as _toDisplayString, createTextVNode as _createTextVNode, normalizeStyle as _normalizeStyle, createElementVNode as _createElementVNode, normalizeClass as _normalizeClass, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
39
- const _withScopeId = n => (_pushScopeId("data-v-1713237420521"), n = n(), _popScopeId(), n);
39
+ const _withScopeId = n => (_pushScopeId("data-v-1713238262915"), n = n(), _popScopeId(), n);
40
40
  const _hoisted_1 = { class: "JSearch-content simple" };
41
41
  const _hoisted_2 = { class: "JSearch-items" };
42
42
  import { Button, Row, Col, Form, FormItemRest, } from 'ant-design-vue';
@@ -1,4 +1,7 @@
1
1
  import AdvancedSearch from './Advanced/index.js';
2
2
  import Search from './Search.js';
3
+ Search.install = function (app) {
4
+ app.component(Search.name, Search);
5
+ };
3
6
  export { AdvancedSearch };
4
7
  export default Search;
@@ -1,2 +1,5 @@
1
1
  import ValueItem from './ValueItem.js';
2
+ ValueItem.install = function (app) {
3
+ app.component(ValueItem.name, ValueItem);
4
+ };
2
5
  export default ValueItem;
package/lib/AMap/index.js CHANGED
@@ -6,4 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  });
7
7
  exports.default = void 0;
8
8
  var _Map = _interopRequireDefault(require("./Map.js"));
9
+ _Map.default.install = function (app) {
10
+ app.component(_Map.default.name, _Map.default);
11
+ };
9
12
  var _default = exports.default = _Map.default;
@@ -19,4 +19,7 @@ Object.keys(_color).forEach(function (key) {
19
19
  }
20
20
  });
21
21
  });
22
+ _Badge.default.install = function (app) {
23
+ app.component(_Badge.default.name, _Badge.default);
24
+ };
22
25
  var _default = exports.default = _Badge.default;
@@ -6,4 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  });
7
7
  exports.default = void 0;
8
8
  var _CardSelect = _interopRequireDefault(require("./CardSelect.js"));
9
+ _CardSelect.default.install = function (app) {
10
+ app.component(_CardSelect.default.name, _CardSelect.default);
11
+ };
9
12
  var _default = exports.default = _CardSelect.default;
@@ -6,4 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  });
7
7
  exports.default = void 0;
8
8
  var _CheckButton = _interopRequireDefault(require("./CheckButton.js"));
9
+ _CheckButton.default.install = function (app) {
10
+ app.component(_CheckButton.default.name, _CheckButton.default);
11
+ };
9
12
  var _default = exports.default = _CheckButton.default;
@@ -34,4 +34,7 @@ var JConfigProvider = (0, _vue.defineComponent)({
34
34
  }
35
35
  });
36
36
  JConfigProvider.config = _antDesignVue.ConfigProvider.config;
37
+ JConfigProvider.install = function (app) {
38
+ app.component(JConfigProvider.name, JConfigProvider);
39
+ };
37
40
  var _default = exports.default = JConfigProvider;
@@ -6,4 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  });
7
7
  exports.default = void 0;
8
8
  var _Echarts = _interopRequireDefault(require("./Echarts.js"));
9
+ _Echarts.default.install = function (app) {
10
+ app.component(_Echarts.default.name, _Echarts.default);
11
+ };
9
12
  var _default = exports.default = _Echarts.default;
@@ -6,4 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  });
7
7
  exports.default = void 0;
8
8
  var _Ellipsis = _interopRequireDefault(require("./Ellipsis.js"));
9
+ _Ellipsis.default.install = function (app) {
10
+ app.component(_Ellipsis.default.name, _Ellipsis.default);
11
+ };
9
12
  var _default = exports.default = _Ellipsis.default;
@@ -6,4 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  });
7
7
  exports.default = void 0;
8
8
  var _Empty = _interopRequireDefault(require("./Empty.js"));
9
+ _Empty.default.install = function (app) {
10
+ app.component(_Empty.default.name, _Empty.default);
11
+ };
9
12
  var _default = exports.default = _Empty.default;
@@ -6,7 +6,7 @@
6
6
  } */
7
7
  import { defineComponent as _defineComponent } from 'vue';
8
8
  import { unref as _unref, renderSlot as _renderSlot, createElementVNode as _createElementVNode, normalizeStyle as _normalizeStyle, openBlock as _openBlock, createElementBlock as _createElementBlock, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
9
- const _withScopeId = n => (_pushScopeId("data-v-1713237419497"), n = n(), _popScopeId(), n);
9
+ const _withScopeId = n => (_pushScopeId("data-v-1713238262561"), n = n(), _popScopeId(), n);
10
10
  const _hoisted_1 = { class: "full-page-warp-content" };
11
11
  import { ref } from 'vue';
12
12
  import { useElementBounding } from '@vueuse/core';
@@ -6,4 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  });
7
7
  exports.default = void 0;
8
8
  var _FullPage = _interopRequireDefault(require("./FullPage.js"));
9
+ _FullPage.default.install = function (app) {
10
+ app.component(_FullPage.default.name, _FullPage.default);
11
+ };
9
12
  var _default = exports.default = _FullPage.default;
package/lib/Icon/index.js CHANGED
@@ -6,4 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  });
7
7
  exports.default = void 0;
8
8
  var _icon = _interopRequireDefault(require("./icon"));
9
+ _icon.default.install = function (app) {
10
+ app.component(_icon.default.name, _icon.default);
11
+ };
9
12
  var _default = exports.default = _icon.default;
@@ -6,4 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  });
7
7
  exports.default = void 0;
8
8
  var _Monaco = _interopRequireDefault(require("./Monaco.js"));
9
+ _Monaco.default.install = function (app) {
10
+ app.component(_Monaco.default.name, _Monaco.default);
11
+ };
9
12
  var _default = exports.default = _Monaco.default;
@@ -121,4 +121,7 @@ var PermissionButton = (0, _vue.defineComponent)({
121
121
  };
122
122
  }
123
123
  });
124
+ PermissionButton.install = function (app) {
125
+ app.component(PermissionButton.name, PermissionButton);
126
+ };
124
127
  var _default2 = exports.default = PermissionButton;
@@ -13,4 +13,7 @@ Object.defineProperty(exports, "PageContainer", {
13
13
  exports.default = void 0;
14
14
  var _BasicLayout = _interopRequireDefault(require("./Basic/BasicLayout"));
15
15
  var _PageContainer = _interopRequireDefault(require("./PageContainer"));
16
+ _BasicLayout.default.install = function (app) {
17
+ app.component(_BasicLayout.default.name, _BasicLayout.default);
18
+ };
16
19
  var _default = exports.default = _BasicLayout.default;
@@ -414,4 +414,7 @@ var ProTable = (0, _vue.defineComponent)({
414
414
  };
415
415
  }
416
416
  });
417
+ ProTable.install = function (app) {
418
+ app.component(ProTable.name, ProTable);
419
+ };
417
420
  var _default2 = exports.default = ProTable;
@@ -6,4 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  });
7
7
  exports.default = void 0;
8
8
  var _Scrollbar = _interopRequireDefault(require("./Scrollbar.js"));
9
+ _Scrollbar.default.install = function (app) {
10
+ app.component(_Scrollbar.default.name, _Scrollbar.default);
11
+ };
9
12
  var _default = exports.default = _Scrollbar.default;
@@ -21,7 +21,7 @@
21
21
  } */
22
22
  import { defineComponent as _defineComponent } from 'vue';
23
23
  import { unref as _unref, createVNode as _createVNode, withCtx as _withCtx, createTextVNode as _createTextVNode, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, createBlock as _createBlock, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
24
- const _withScopeId = n => (_pushScopeId("data-v-1713237420805"), n = n(), _popScopeId(), n);
24
+ const _withScopeId = n => (_pushScopeId("data-v-1713238263979"), n = n(), _popScopeId(), n);
25
25
  const _hoisted_1 = {
26
26
  key: 0,
27
27
  style: { "width": "240px" }
@@ -78,7 +78,7 @@ function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]
78
78
  } */
79
79
  import { defineComponent as _defineComponent } from 'vue';
80
80
  import { unref as _unref, openBlock as _openBlock, createBlock as _createBlock, createCommentVNode as _createCommentVNode, toDisplayString as _toDisplayString, createElementBlock as _createElementBlock, createVNode as _createVNode, Fragment as _Fragment, normalizeStyle as _normalizeStyle, mergeProps as _mergeProps, resolveDynamicComponent as _resolveDynamicComponent, withCtx as _withCtx, createElementVNode as _createElementVNode, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
81
- const _withScopeId = n => (_pushScopeId("data-v-1713237420325"), n = n(), _popScopeId(), n);
81
+ const _withScopeId = n => (_pushScopeId("data-v-1713238262748"), n = n(), _popScopeId(), n);
82
82
  const _hoisted_1 = { class: "JSearch-item" };
83
83
  const _hoisted_2 = {
84
84
  key: 0,
@@ -36,7 +36,7 @@
36
36
  } */
37
37
  import { defineComponent as _defineComponent } from 'vue';
38
38
  import { renderList as _renderList, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock, createVNode as _createVNode, unref as _unref, withCtx as _withCtx, createBlock as _createBlock, renderSlot as _renderSlot, toDisplayString as _toDisplayString, createTextVNode as _createTextVNode, normalizeStyle as _normalizeStyle, createElementVNode as _createElementVNode, normalizeClass as _normalizeClass, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
39
- const _withScopeId = n => (_pushScopeId("data-v-1713237420545"), n = n(), _popScopeId(), n);
39
+ const _withScopeId = n => (_pushScopeId("data-v-1713238262950"), n = n(), _popScopeId(), n);
40
40
  const _hoisted_1 = { class: "JSearch-content simple" };
41
41
  const _hoisted_2 = { class: "JSearch-items" };
42
42
  import { Button, Row, Col, Form, FormItemRest, } from 'ant-design-vue';
@@ -13,4 +13,7 @@ Object.defineProperty(exports, "AdvancedSearch", {
13
13
  exports.default = void 0;
14
14
  var _index = _interopRequireDefault(require("./Advanced/index.js"));
15
15
  var _Search = _interopRequireDefault(require("./Search.js"));
16
+ _Search.default.install = function (app) {
17
+ app.component(_Search.default.name, _Search.default);
18
+ };
16
19
  var _default = exports.default = _Search.default;
@@ -6,4 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  });
7
7
  exports.default = void 0;
8
8
  var _ValueItem = _interopRequireDefault(require("./ValueItem.js"));
9
+ _ValueItem.default.install = function (app) {
10
+ app.component(_ValueItem.default.name, _ValueItem.default);
11
+ };
9
12
  var _default = exports.default = _ValueItem.default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jetlinks-web/components",
3
- "version": "2.0.4-8",
3
+ "version": "2.0.4-9",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",