@jetlinks-web/components 2.6.24 → 2.6.27

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 (86) hide show
  1. package/es/AMap/Map.js +2 -1
  2. package/es/AutoComplete/AutoComplete.js +1 -0
  3. package/es/BadgeStatus/Badge.js +2 -1
  4. package/es/CardSelect/CardSelect.js +7 -1
  5. package/es/CardSelect/style/index.less +26 -26
  6. package/es/CheckButton/CheckButton.js +2 -1
  7. package/es/DragModal/DragModal.js +1 -0
  8. package/es/Echarts/Echarts.js +2 -1
  9. package/es/EditTable/EditTable.js +6 -4
  10. package/es/EditTable/FormItem.js +4 -9
  11. package/es/EditTable/Header.js +3 -5
  12. package/es/EditTable/components/ContextMenu/Menu.js +2 -1
  13. package/es/EditTable/components/Search/search.js +2 -1
  14. package/es/EditTable/components/Search/sort.js +3 -1
  15. package/es/EditTable/group.js +12 -11
  16. package/es/EditTable/hooks/useValidate.js +1 -1
  17. package/es/EditTable/style/form.less +33 -33
  18. package/es/EditTable/style/group.less +32 -32
  19. package/es/EditTable/style/header.less +77 -77
  20. package/es/EditTable/style/menu.less +25 -25
  21. package/es/EditTable/utils.js +30 -3
  22. package/es/Ellipsis/style/index.less +20 -20
  23. package/es/FlameGraph/FlameGraph.js +4 -5
  24. package/es/FullPage/FullPage.js +2 -1
  25. package/es/LocaleProvider/index.js +2 -1
  26. package/es/PermissionButton/index.js +7 -6
  27. package/es/ProLayout/Basic/BasicLayout.js +39 -34
  28. package/es/ProLayout/Basic/Header.js +7 -3
  29. package/es/ProLayout/PageContainer/index.js +12 -8
  30. package/es/ProLayout/SiderMenu/BaseMenu.js +39 -16
  31. package/es/ProLayout/SiderMenu/SiderMenu.js +34 -14
  32. package/es/ProLayout/SiderMenu/index.less +231 -231
  33. package/es/ProLayout/TopHeader/index.js +9 -1
  34. package/es/ProLayout/util.js +5 -5
  35. package/es/ProTable/Content.js +2 -2
  36. package/es/ProTable/hooks/index.js +2 -0
  37. package/es/RadioButton/RadioButton.js +1 -0
  38. package/es/Search/Advanced/SaveHistory.js +2 -1
  39. package/es/Search/Item.js +2 -1
  40. package/es/Title/title.js +1 -0
  41. package/es/style/index.css +1 -1
  42. package/lib/AMap/Map.js +2 -1
  43. package/lib/AutoComplete/AutoComplete.js +1 -0
  44. package/lib/BadgeStatus/Badge.js +2 -1
  45. package/lib/CardSelect/CardSelect.js +7 -1
  46. package/lib/CardSelect/style/index.less +26 -26
  47. package/lib/CheckButton/CheckButton.js +2 -1
  48. package/lib/DragModal/DragModal.js +1 -0
  49. package/lib/Echarts/Echarts.js +2 -1
  50. package/lib/EditTable/EditTable.js +6 -4
  51. package/lib/EditTable/FormItem.js +4 -9
  52. package/lib/EditTable/Header.js +3 -5
  53. package/lib/EditTable/components/ContextMenu/Menu.js +2 -1
  54. package/lib/EditTable/components/Search/search.js +2 -1
  55. package/lib/EditTable/components/Search/sort.js +3 -1
  56. package/lib/EditTable/group.js +12 -11
  57. package/lib/EditTable/hooks/useValidate.js +1 -1
  58. package/lib/EditTable/style/form.less +33 -33
  59. package/lib/EditTable/style/group.less +32 -32
  60. package/lib/EditTable/style/header.less +77 -77
  61. package/lib/EditTable/style/menu.less +25 -25
  62. package/lib/EditTable/utils.js +31 -3
  63. package/lib/Ellipsis/style/index.less +20 -20
  64. package/lib/FlameGraph/FlameGraph.js +4 -5
  65. package/lib/FullPage/FullPage.js +2 -1
  66. package/lib/Icon/icon.js +2 -1
  67. package/lib/LocaleProvider/index.js +2 -1
  68. package/lib/PermissionButton/index.js +7 -6
  69. package/lib/ProLayout/Basic/BasicLayout.js +40 -34
  70. package/lib/ProLayout/Basic/Header.js +6 -2
  71. package/lib/ProLayout/PageContainer/index.js +11 -7
  72. package/lib/ProLayout/SiderMenu/BaseMenu.js +39 -17
  73. package/lib/ProLayout/SiderMenu/SiderMenu.js +35 -14
  74. package/lib/ProLayout/SiderMenu/index.less +231 -231
  75. package/lib/ProLayout/TopHeader/index.js +9 -2
  76. package/lib/ProLayout/util.js +5 -5
  77. package/lib/ProTable/Content.js +2 -2
  78. package/lib/ProTable/hooks/index.js +27 -0
  79. package/lib/RadioButton/RadioButton.js +1 -0
  80. package/lib/Search/Advanced/SaveHistory.js +2 -1
  81. package/lib/Search/Item.js +2 -1
  82. package/lib/Title/title.js +1 -0
  83. package/lib/components.js +2 -1
  84. package/lib/index.js +2 -1
  85. package/lib/style/index.css +1 -1
  86. package/package.json +3 -3
@@ -2,6 +2,7 @@
2
2
  "value": "props",
3
3
  "options": "props",
4
4
  "columns": "props",
5
+ "defineOptions": "setup-const",
5
6
  "ref": "setup-const",
6
7
  "computed": "setup-const",
7
8
  "watch": "setup-const",
@@ -22,7 +22,8 @@
22
22
  "saveHistory": "setup-const"
23
23
  } */
24
24
  import { defineComponent as _defineComponent } from 'vue';
25
- import { unref as _unref, createVNode as _createVNode, withCtx as _withCtx, toDisplayString as _toDisplayString, createTextVNode as _createTextVNode, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, createBlock as _createBlock } from "vue";
25
+ import { unref as _unref, createVNode as _createVNode, withCtx as _withCtx, toDisplayString as _toDisplayString, createTextVNode as _createTextVNode, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, createBlock as _createBlock, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
26
+ const _withScopeId = n => (_pushScopeId("data-v-1755080512543"), n = n(), _popScopeId(), n);
26
27
  const _hoisted_1 = {
27
28
  key: 0,
28
29
  style: { "width": "240px" }
@@ -79,7 +79,8 @@ function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]
79
79
  "valueChange": "setup-const"
80
80
  } */
81
81
  import { defineComponent as _defineComponent } from 'vue';
82
- 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 } from "vue";
82
+ 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";
83
+ const _withScopeId = n => (_pushScopeId("data-v-1755080511900"), n = n(), _popScopeId(), n);
83
84
  const _hoisted_1 = { class: "JSearch-item" };
84
85
  const _hoisted_2 = {
85
86
  key: 0,
@@ -1,6 +1,7 @@
1
1
  /* Analyzed bindings: {
2
2
  "data": "props",
3
3
  "style": "props",
4
+ "defineOptions": "setup-const",
4
5
  "props": "setup-reactive-const"
5
6
  } */
6
7
  import { toDisplayString as _toDisplayString, createElementVNode as _createElementVNode, renderSlot as _renderSlot, normalizeStyle as _normalizeStyle, openBlock as _openBlock, createElementBlock as _createElementBlock } from "vue";
package/lib/components.js CHANGED
@@ -185,4 +185,5 @@ var _Markdown = _interopRequireDefault(require("./Markdown"));
185
185
  var _AutoComplete = _interopRequireDefault(require("./AutoComplete"));
186
186
  var _Title = _interopRequireDefault(require("./Title"));
187
187
  var _FlameGraph = _interopRequireDefault(require("./FlameGraph"));
188
- function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
188
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
189
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
package/lib/index.js CHANGED
@@ -20,7 +20,8 @@ Object.keys(components).forEach(function (key) {
20
20
  }
21
21
  });
22
22
  });
23
- function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
23
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
24
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
24
25
  /*eslint import/namespace: ['error', { allowComputed: true }]*/
25
26
 
26
27
  var install = exports.install = function install(app) {
@@ -777,7 +777,7 @@
777
777
  -moz-user-select: none;
778
778
  user-select: none;
779
779
  }
780
- .ant-pagination-options-quick-jumper input:-moz-placeholder {
780
+ .ant-pagination-options-quick-jumper input:-moz-placeholder-shown {
781
781
  text-overflow: ellipsis;
782
782
  }
783
783
  .ant-pagination-options-quick-jumper input:placeholder-shown {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jetlinks-web/components",
3
- "version": "2.6.24",
3
+ "version": "2.6.27",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -45,8 +45,8 @@
45
45
  "resize-observer-polyfill": "^1.5.1",
46
46
  "sortablejs": "^1.15.2",
47
47
  "@jetlinks-web/constants": "1.0.9",
48
- "@jetlinks-web/hooks": "1.0.29",
49
- "@jetlinks-web/utils": "1.2.12"
48
+ "@jetlinks-web/utils": "1.2.12",
49
+ "@jetlinks-web/hooks": "1.0.29"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@babel/cli": "^7.8.4",