@para-ui/core 4.0.26 → 4.0.28

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/Cascader/index.js CHANGED
@@ -1,15 +1,14 @@
1
- import { C as Cascader } from '../_verture/index-5f205d87.js';
2
- export { C as default } from '../_verture/index-5f205d87.js';
1
+ import { C as Cascader } from '../_verture/index-8ec857b4.js';
2
+ export { C as default } from '../_verture/index-8ec857b4.js';
3
3
  import '../_verture/tslib.es6-55ed4bd2.js';
4
4
  import 'react/jsx-runtime';
5
- import '../_verture/Portal-5bd49559.js';
5
+ import '../_verture/Portal-5bf66fed.js';
6
6
  import '../_verture/slicedToArray-a8206399.js';
7
7
  import '../_verture/unsupportedIterableToArray-cb478f24.js';
8
8
  import 'react';
9
9
  import 'react-dom';
10
- import '../_verture/typeof-adeedc13.js';
10
+ import '../_verture/defineProperty-f0e15205.js';
11
11
  import '../_verture/toConsumableArray-8f4c9589.js';
12
- import '../_verture/defineProperty-6f62bb2a.js';
13
12
  import 'rc-motion';
14
13
  import 'clsx';
15
14
  import '../_verture/typeof-6ec38efd.js';
@@ -6,7 +6,7 @@ import SearchIcon from '@para-ui/icons/Search';
6
6
  import CloseIcon from '@para-ui/icons/Close';
7
7
  import CloseCircleF from '@para-ui/icons/CloseCircleF';
8
8
  import Table from '../Table/index.js';
9
- import { T as Tree } from '../_verture/index-93662604.js';
9
+ import { T as Tree } from '../_verture/index-28edf318.js';
10
10
  import { Button } from '../Button/index.js';
11
11
  import { D as Dropdown } from '../_verture/index-bde7aabe.js';
12
12
  import { Popover } from '../Popover/index.js';
@@ -56,11 +56,14 @@ import 'rc-pagination';
56
56
  import '@para-ui/icons/Right';
57
57
  import '@para-ui/icons/DoubleLeft';
58
58
  import '@para-ui/icons/DoubleRight';
59
+ import '../_verture/toConsumableArray-8f4c9589.js';
60
+ import '../_verture/unsupportedIterableToArray-cb478f24.js';
61
+ import '../_verture/defineProperty-f0e15205.js';
62
+ import '../_verture/slicedToArray-a8206399.js';
63
+ import '../_verture/index-8ac46bd9.js';
64
+ import '../_verture/typeof-6ec38efd.js';
59
65
  import 'rc-tree';
60
- import '../_verture/typeof-adeedc13.js';
61
66
  import '@para-ui/icons/Document';
62
- import '../_verture/slicedToArray-a8206399.js';
63
- import '../_verture/unsupportedIterableToArray-cb478f24.js';
64
67
  import 'react-dom';
65
68
  import '@para-ui/icons/EditFile';
66
69
  import '@para-ui/icons/PlusCircle';
@@ -166,7 +169,9 @@ const ComboSelect = props => {
166
169
  dropdownMatchSelectWidth = true,
167
170
  getPopupContainer,
168
171
  maxTagTextLength,
169
- renderInputContent
172
+ renderInputContent,
173
+ renderTagLabel,
174
+ renderMoreTagLabel
170
175
  } = useGlobalProps(props, 'ComboSelect');
171
176
  const {
172
177
  language,
@@ -626,6 +631,9 @@ const ComboSelect = props => {
626
631
  closable = true
627
632
  } = item !== null && item !== void 0 ? item : {};
628
633
  let displayLabel = item[outputTitle];
634
+ if (renderTagLabel) {
635
+ displayLabel = renderTagLabel(item);
636
+ }
629
637
  let isOverflow = false;
630
638
  //限制tag文本长度
631
639
  if (typeof maxTagTextLength === 'number') {
@@ -705,7 +713,7 @@ const ComboSelect = props => {
705
713
  }, {
706
714
  children: [list, renderOverTag()]
707
715
  }));
708
- }, [checkList, onChange, checkable, morePos, maxTagTextLength, outputTitle, tagRender, renderInputContent, overLine]);
716
+ }, [checkList, onChange, checkable, morePos, maxTagTextLength, outputTitle, tagRender, renderInputContent, renderTagLabel, overLine]);
709
717
  //处理参数
710
718
  const getParams = useMemo(() => {
711
719
  let P = params || emptyParamsRef.current;
@@ -913,6 +921,10 @@ const ComboSelect = props => {
913
921
  const generateMoreTag = () => {
914
922
  return checkList.map((item, idx) => {
915
923
  if (morePos !== null && morePos > idx) return null;
924
+ let label = item[outputTitle];
925
+ if (renderMoreTagLabel) {
926
+ label = renderMoreTagLabel(item);
927
+ }
916
928
  return jsxs("div", Object.assign({
917
929
  className: "comboselect-more-item"
918
930
  }, {
@@ -920,7 +932,7 @@ const ComboSelect = props => {
920
932
  className: "comboselect-more-item-text"
921
933
  }, {
922
934
  children: jsx(AutoTips, {
923
- children: item[outputTitle]
935
+ children: label
924
936
  })
925
937
  })), jsx("span", Object.assign({
926
938
  className: 'comboselect-more-item-remove',
@@ -150,4 +150,8 @@ export interface ComboSelectProps extends HelperTextDetailProps {
150
150
  maxTagTextLength?: number;
151
151
  /** 自定义渲染输入框内容 */
152
152
  renderInputContent?: (options: SelectOpt | SelectOpt[]) => React.ReactNode;
153
+ /** 渲染 tag label */
154
+ renderTagLabel?: (option: SelectOpt) => React.ReactNode;
155
+ /** 渲染 more tag label */
156
+ renderMoreTagLabel?: (option: SelectOpt) => React.ReactNode;
153
157
  }
@@ -27,8 +27,7 @@ import '@para-ui/icons/Forbid';
27
27
  import '@paraview/lib';
28
28
  import '../_verture/tinycolor-ece3542d.js';
29
29
  import '@para-ui/icons/Plus';
30
- import '../_verture/defineProperty-6f62bb2a.js';
31
- import '../_verture/typeof-adeedc13.js';
30
+ import '../_verture/defineProperty-f0e15205.js';
32
31
  import 'rc-picker';
33
32
  import '@para-ui/icons/CloseCircleF';
34
33
  import '@para-ui/icons/Calendar';
@@ -2,7 +2,7 @@ import dayjsGenerateConfig from 'rc-picker/es/generate/dayjs';
2
2
  import { jsx, jsxs } from 'react/jsx-runtime';
3
3
  import { Button } from '../Button/index.js';
4
4
  import { Tag } from '../Tag/index.js';
5
- import { _ as _defineProperty } from '../_verture/defineProperty-6f62bb2a.js';
5
+ import { a as _defineProperty } from '../_verture/defineProperty-f0e15205.js';
6
6
  import { _ as __rest } from '../_verture/tslib.es6-55ed4bd2.js';
7
7
  import React__default, { forwardRef, useImperativeHandle } from 'react';
8
8
  import clsx from 'clsx';
@@ -35,7 +35,6 @@ import '@para-ui/icons/Close';
35
35
  import '@para-ui/icons/EditOutline';
36
36
  import '../_verture/tinycolor-ece3542d.js';
37
37
  import '@para-ui/icons/Plus';
38
- import '../_verture/typeof-adeedc13.js';
39
38
  import '../Help/index.js';
40
39
  import '@para-ui/icons/Help';
41
40
 
@@ -70,12 +70,15 @@ import 'rc-pagination';
70
70
  import '@para-ui/icons/Right';
71
71
  import '@para-ui/icons/DoubleLeft';
72
72
  import '@para-ui/icons/DoubleRight';
73
- import '../_verture/index-93662604.js';
73
+ import '../_verture/index-28edf318.js';
74
+ import '../_verture/toConsumableArray-8f4c9589.js';
75
+ import '../_verture/unsupportedIterableToArray-cb478f24.js';
76
+ import '../_verture/defineProperty-f0e15205.js';
77
+ import '../_verture/slicedToArray-a8206399.js';
78
+ import '../_verture/index-8ac46bd9.js';
79
+ import '../_verture/typeof-6ec38efd.js';
74
80
  import 'rc-tree';
75
- import '../_verture/typeof-adeedc13.js';
76
81
  import '@para-ui/icons/Document';
77
- import '../_verture/slicedToArray-a8206399.js';
78
- import '../_verture/unsupportedIterableToArray-cb478f24.js';
79
82
  import 'react-dom';
80
83
  import '@para-ui/icons/EditFile';
81
84
  import '@para-ui/icons/PlusCircle';
@@ -87,7 +90,6 @@ import '../Tag/index.js';
87
90
  import '@para-ui/icons/EditOutline';
88
91
  import '../_verture/tinycolor-ece3542d.js';
89
92
  import '@para-ui/icons/Plus';
90
- import '../_verture/defineProperty-6f62bb2a.js';
91
93
  import 'rc-picker';
92
94
  import '@para-ui/icons/Calendar';
93
95
  import '@para-ui/icons/Time';
package/Form/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { jsx } from 'react/jsx-runtime';
2
2
  import { DeepClone } from '@paraview/lib';
3
3
  import React__default from 'react';
4
- import { F as FormItem, l as localeJson, v as validate } from '../_verture/index-3d0397db.js';
4
+ import { F as FormItem, l as localeJson, v as validate } from '../_verture/index-33866394.js';
5
5
  import { $ as $prefixCls } from '../_verture/constant-5317fc89.js';
6
6
  import { u as useFormatMessage } from '../_verture/useFormatMessage-1fc7c957.js';
7
7
  import '../TextField/index.js';
@@ -69,9 +69,12 @@ import 'rc-pagination';
69
69
  import '@para-ui/icons/Right';
70
70
  import '@para-ui/icons/DoubleLeft';
71
71
  import '@para-ui/icons/DoubleRight';
72
- import '../_verture/index-93662604.js';
72
+ import '../_verture/index-28edf318.js';
73
+ import '../_verture/toConsumableArray-8f4c9589.js';
74
+ import '../_verture/defineProperty-f0e15205.js';
75
+ import '../_verture/index-8ac46bd9.js';
76
+ import '../_verture/typeof-6ec38efd.js';
73
77
  import 'rc-tree';
74
- import '../_verture/typeof-adeedc13.js';
75
78
  import '@para-ui/icons/Document';
76
79
  import 'react-dom';
77
80
  import '@para-ui/icons/EditFile';
package/FormItem/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import 'react/jsx-runtime';
2
2
  import 'react';
3
- export { F as default } from '../_verture/index-3d0397db.js';
3
+ export { F as default } from '../_verture/index-33866394.js';
4
4
  import 'clsx';
5
5
  import '../Label/index.js';
6
6
  import '../_verture/constant-5317fc89.js';
@@ -69,9 +69,12 @@ import 'rc-pagination';
69
69
  import '@para-ui/icons/Right';
70
70
  import '@para-ui/icons/DoubleLeft';
71
71
  import '@para-ui/icons/DoubleRight';
72
- import '../_verture/index-93662604.js';
72
+ import '../_verture/index-28edf318.js';
73
+ import '../_verture/toConsumableArray-8f4c9589.js';
74
+ import '../_verture/defineProperty-f0e15205.js';
75
+ import '../_verture/index-8ac46bd9.js';
76
+ import '../_verture/typeof-6ec38efd.js';
73
77
  import 'rc-tree';
74
- import '../_verture/typeof-adeedc13.js';
75
78
  import '@para-ui/icons/Document';
76
79
  import 'react-dom';
77
80
  import '@para-ui/icons/EditFile';
package/Image/index.js CHANGED
@@ -2,10 +2,9 @@ import { _ as __rest } from '../_verture/tslib.es6-55ed4bd2.js';
2
2
  import { jsx } from 'react/jsx-runtime';
3
3
  import * as React from 'react';
4
4
  import React__default, { useState, useRef, useEffect, useContext, useMemo } from 'react';
5
- import { i as warningOnce, d as wrapperRaf, _ as _objectSpread2, w as warning, c as clsx, P as Portal, K as KeyCode, b as _objectWithoutProperties, a as _extends, j as useMergedState } from '../_verture/Portal-5bd49559.js';
6
- import { _ as _defineProperty } from '../_verture/defineProperty-6f62bb2a.js';
5
+ import { i as warningOnce, d as wrapperRaf, _ as _objectSpread2, w as warning, c as clsx, P as Portal, K as KeyCode, b as _objectWithoutProperties, a as _extends, j as useMergedState } from '../_verture/Portal-5bf66fed.js';
6
+ import { _ as _typeof, a as _defineProperty } from '../_verture/defineProperty-f0e15205.js';
7
7
  import { _ as _slicedToArray } from '../_verture/slicedToArray-a8206399.js';
8
- import { _ as _typeof } from '../_verture/typeof-adeedc13.js';
9
8
  import Dialog from 'rc-dialog';
10
9
  import ReactDOM from 'react-dom';
11
10
  import CSSMotion from 'rc-motion';
package/README.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 版本: 4.0.28
2
+ 【标题-Title】标题折叠内容新增Children渲染,新增默认是否展开参数,调整折叠样式
3
+
4
+ ## 版本: 4.0.27
5
+ 【组合选择器-ComboSelect】新增自定义渲染label
6
+
1
7
  ## 版本: 4.0.26
2
8
  【周期选择器-CycleSelector】增加cRef参数,用来获取组件内部方法
3
9
 
package/Selector/index.js CHANGED
@@ -2,7 +2,7 @@ import { a as __awaiter, _ as __rest } from '../_verture/tslib.es6-55ed4bd2.js';
2
2
  import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
3
3
  import { useState, useRef, useEffect, Fragment as Fragment$1 } from 'react';
4
4
  import { _ as _slicedToArray } from '../_verture/slicedToArray-a8206399.js';
5
- import { _ as _typeof } from '../_verture/typeof-6ec38efd.js';
5
+ import { r as regenerator } from '../_verture/index-8ac46bd9.js';
6
6
  import { Radio } from '../Radio/index.js';
7
7
  import { Checkbox } from '../Checkbox/index.js';
8
8
  import { Popover } from '../Popover/index.js';
@@ -20,6 +20,7 @@ import Refresh from '@para-ui/icons/Refresh';
20
20
  import { ArrayToObject, Get, Post, Cancel } from '@paraview/lib';
21
21
  import { u as useGlobalProps } from '../_verture/useGlobalProps-4ae1a007.js';
22
22
  import '../_verture/unsupportedIterableToArray-cb478f24.js';
23
+ import '../_verture/typeof-6ec38efd.js';
23
24
  import '../Label/index.js';
24
25
  import '../Help/index.js';
25
26
  import '../Tooltip/index.js';
@@ -42,330 +43,6 @@ import 'dayjs';
42
43
  import '@para-ui/icons/More';
43
44
  import '@para-ui/icons/Return';
44
45
 
45
- var regeneratorRuntime$1 = {exports: {}};
46
-
47
- (function (module) {
48
- var _typeof$1 = _typeof.exports["default"];
49
- function _regeneratorRuntime() {
50
- module.exports = _regeneratorRuntime = function _regeneratorRuntime() {
51
- return e;
52
- }, module.exports.__esModule = true, module.exports["default"] = module.exports;
53
- var t,
54
- e = {},
55
- r = Object.prototype,
56
- n = r.hasOwnProperty,
57
- o = Object.defineProperty || function (t, e, r) {
58
- t[e] = r.value;
59
- },
60
- i = "function" == typeof Symbol ? Symbol : {},
61
- a = i.iterator || "@@iterator",
62
- c = i.asyncIterator || "@@asyncIterator",
63
- u = i.toStringTag || "@@toStringTag";
64
- function define(t, e, r) {
65
- return Object.defineProperty(t, e, {
66
- value: r,
67
- enumerable: !0,
68
- configurable: !0,
69
- writable: !0
70
- }), t[e];
71
- }
72
- try {
73
- define({}, "");
74
- } catch (t) {
75
- define = function define(t, e, r) {
76
- return t[e] = r;
77
- };
78
- }
79
- function wrap(t, e, r, n) {
80
- var i = e && e.prototype instanceof Generator ? e : Generator,
81
- a = Object.create(i.prototype),
82
- c = new Context(n || []);
83
- return o(a, "_invoke", {
84
- value: makeInvokeMethod(t, r, c)
85
- }), a;
86
- }
87
- function tryCatch(t, e, r) {
88
- try {
89
- return {
90
- type: "normal",
91
- arg: t.call(e, r)
92
- };
93
- } catch (t) {
94
- return {
95
- type: "throw",
96
- arg: t
97
- };
98
- }
99
- }
100
- e.wrap = wrap;
101
- var h = "suspendedStart",
102
- l = "suspendedYield",
103
- f = "executing",
104
- s = "completed",
105
- y = {};
106
- function Generator() {}
107
- function GeneratorFunction() {}
108
- function GeneratorFunctionPrototype() {}
109
- var p = {};
110
- define(p, a, function () {
111
- return this;
112
- });
113
- var d = Object.getPrototypeOf,
114
- v = d && d(d(values([])));
115
- v && v !== r && n.call(v, a) && (p = v);
116
- var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p);
117
- function defineIteratorMethods(t) {
118
- ["next", "throw", "return"].forEach(function (e) {
119
- define(t, e, function (t) {
120
- return this._invoke(e, t);
121
- });
122
- });
123
- }
124
- function AsyncIterator(t, e) {
125
- function invoke(r, o, i, a) {
126
- var c = tryCatch(t[r], t, o);
127
- if ("throw" !== c.type) {
128
- var u = c.arg,
129
- h = u.value;
130
- return h && "object" == _typeof$1(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) {
131
- invoke("next", t, i, a);
132
- }, function (t) {
133
- invoke("throw", t, i, a);
134
- }) : e.resolve(h).then(function (t) {
135
- u.value = t, i(u);
136
- }, function (t) {
137
- return invoke("throw", t, i, a);
138
- });
139
- }
140
- a(c.arg);
141
- }
142
- var r;
143
- o(this, "_invoke", {
144
- value: function value(t, n) {
145
- function callInvokeWithMethodAndArg() {
146
- return new e(function (e, r) {
147
- invoke(t, n, e, r);
148
- });
149
- }
150
- return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg();
151
- }
152
- });
153
- }
154
- function makeInvokeMethod(e, r, n) {
155
- var o = h;
156
- return function (i, a) {
157
- if (o === f) throw Error("Generator is already running");
158
- if (o === s) {
159
- if ("throw" === i) throw a;
160
- return {
161
- value: t,
162
- done: !0
163
- };
164
- }
165
- for (n.method = i, n.arg = a;;) {
166
- var c = n.delegate;
167
- if (c) {
168
- var u = maybeInvokeDelegate(c, n);
169
- if (u) {
170
- if (u === y) continue;
171
- return u;
172
- }
173
- }
174
- if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) {
175
- if (o === h) throw o = s, n.arg;
176
- n.dispatchException(n.arg);
177
- } else "return" === n.method && n.abrupt("return", n.arg);
178
- o = f;
179
- var p = tryCatch(e, r, n);
180
- if ("normal" === p.type) {
181
- if (o = n.done ? s : l, p.arg === y) continue;
182
- return {
183
- value: p.arg,
184
- done: n.done
185
- };
186
- }
187
- "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg);
188
- }
189
- };
190
- }
191
- function maybeInvokeDelegate(e, r) {
192
- var n = r.method,
193
- o = e.iterator[n];
194
- if (o === t) return r.delegate = null, "throw" === n && e.iterator["return"] && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y;
195
- var i = tryCatch(o, e.iterator, r.arg);
196
- if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y;
197
- var a = i.arg;
198
- return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y);
199
- }
200
- function pushTryEntry(t) {
201
- var e = {
202
- tryLoc: t[0]
203
- };
204
- 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e);
205
- }
206
- function resetTryEntry(t) {
207
- var e = t.completion || {};
208
- e.type = "normal", delete e.arg, t.completion = e;
209
- }
210
- function Context(t) {
211
- this.tryEntries = [{
212
- tryLoc: "root"
213
- }], t.forEach(pushTryEntry, this), this.reset(!0);
214
- }
215
- function values(e) {
216
- if (e || "" === e) {
217
- var r = e[a];
218
- if (r) return r.call(e);
219
- if ("function" == typeof e.next) return e;
220
- if (!isNaN(e.length)) {
221
- var o = -1,
222
- i = function next() {
223
- for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next;
224
- return next.value = t, next.done = !0, next;
225
- };
226
- return i.next = i;
227
- }
228
- }
229
- throw new TypeError(_typeof$1(e) + " is not iterable");
230
- }
231
- return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", {
232
- value: GeneratorFunctionPrototype,
233
- configurable: !0
234
- }), o(GeneratorFunctionPrototype, "constructor", {
235
- value: GeneratorFunction,
236
- configurable: !0
237
- }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) {
238
- var e = "function" == typeof t && t.constructor;
239
- return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name));
240
- }, e.mark = function (t) {
241
- return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t;
242
- }, e.awrap = function (t) {
243
- return {
244
- __await: t
245
- };
246
- }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () {
247
- return this;
248
- }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) {
249
- void 0 === i && (i = Promise);
250
- var a = new AsyncIterator(wrap(t, r, n, o), i);
251
- return e.isGeneratorFunction(r) ? a : a.next().then(function (t) {
252
- return t.done ? t.value : a.next();
253
- });
254
- }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () {
255
- return this;
256
- }), define(g, "toString", function () {
257
- return "[object Generator]";
258
- }), e.keys = function (t) {
259
- var e = Object(t),
260
- r = [];
261
- for (var n in e) r.push(n);
262
- return r.reverse(), function next() {
263
- for (; r.length;) {
264
- var t = r.pop();
265
- if (t in e) return next.value = t, next.done = !1, next;
266
- }
267
- return next.done = !0, next;
268
- };
269
- }, e.values = values, Context.prototype = {
270
- constructor: Context,
271
- reset: function reset(e) {
272
- if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t);
273
- },
274
- stop: function stop() {
275
- this.done = !0;
276
- var t = this.tryEntries[0].completion;
277
- if ("throw" === t.type) throw t.arg;
278
- return this.rval;
279
- },
280
- dispatchException: function dispatchException(e) {
281
- if (this.done) throw e;
282
- var r = this;
283
- function handle(n, o) {
284
- return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o;
285
- }
286
- for (var o = this.tryEntries.length - 1; o >= 0; --o) {
287
- var i = this.tryEntries[o],
288
- a = i.completion;
289
- if ("root" === i.tryLoc) return handle("end");
290
- if (i.tryLoc <= this.prev) {
291
- var c = n.call(i, "catchLoc"),
292
- u = n.call(i, "finallyLoc");
293
- if (c && u) {
294
- if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
295
- if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
296
- } else if (c) {
297
- if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
298
- } else {
299
- if (!u) throw Error("try statement without catch or finally");
300
- if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
301
- }
302
- }
303
- }
304
- },
305
- abrupt: function abrupt(t, e) {
306
- for (var r = this.tryEntries.length - 1; r >= 0; --r) {
307
- var o = this.tryEntries[r];
308
- if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) {
309
- var i = o;
310
- break;
311
- }
312
- }
313
- i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null);
314
- var a = i ? i.completion : {};
315
- return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a);
316
- },
317
- complete: function complete(t, e) {
318
- if ("throw" === t.type) throw t.arg;
319
- return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y;
320
- },
321
- finish: function finish(t) {
322
- for (var e = this.tryEntries.length - 1; e >= 0; --e) {
323
- var r = this.tryEntries[e];
324
- if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y;
325
- }
326
- },
327
- "catch": function _catch(t) {
328
- for (var e = this.tryEntries.length - 1; e >= 0; --e) {
329
- var r = this.tryEntries[e];
330
- if (r.tryLoc === t) {
331
- var n = r.completion;
332
- if ("throw" === n.type) {
333
- var o = n.arg;
334
- resetTryEntry(r);
335
- }
336
- return o;
337
- }
338
- }
339
- throw Error("illegal catch attempt");
340
- },
341
- delegateYield: function delegateYield(e, r, n) {
342
- return this.delegate = {
343
- iterator: values(e),
344
- resultName: r,
345
- nextLoc: n
346
- }, "next" === this.method && (this.arg = t), y;
347
- }
348
- }, e;
349
- }
350
- module.exports = _regeneratorRuntime, module.exports.__esModule = true, module.exports["default"] = module.exports;
351
- } (regeneratorRuntime$1));
352
-
353
- // TODO(Babel 8): Remove this file.
354
-
355
- var runtime = regeneratorRuntime$1.exports();
356
- var regenerator = runtime;
357
-
358
- // Copied from https://github.com/facebook/regenerator/blob/main/packages/runtime/runtime.js#L736=
359
- try {
360
- regeneratorRuntime = runtime;
361
- } catch (accidentalStrictMode) {
362
- if (typeof globalThis === "object") {
363
- globalThis.regeneratorRuntime = runtime;
364
- } else {
365
- Function("r", "regeneratorRuntime = r")(runtime);
366
- }
367
- }
368
-
369
46
  var en = {
370
47
  root: 'root',
371
48
  selectAll: 'Select all',
@@ -26,6 +26,7 @@ import 'dayjs';
26
26
  import '@paraview/lib';
27
27
  import '../_verture/slicedToArray-a8206399.js';
28
28
  import '../_verture/unsupportedIterableToArray-cb478f24.js';
29
+ import '../_verture/index-8ac46bd9.js';
29
30
  import '../_verture/typeof-6ec38efd.js';
30
31
  import '../Radio/index.js';
31
32
  import '../Checkbox/index.js';
package/Switch/index.js CHANGED
@@ -26,8 +26,8 @@ var zh = {
26
26
  };
27
27
 
28
28
  var localeJson = {
29
- zh: zh,
30
- en: en
29
+ zh,
30
+ en
31
31
  };
32
32
 
33
33
  var css_248z = "@charset \"UTF-8\";\n/**\n* @author Hanz\n* @date 2021/11/3 下午5:58\n* @description\n*/\n/**\n* @author linhd\n* @date 2023/4/11 14:16\n* @description 最新色卡\n*/\n.paraui-v4-switch {\n position: relative;\n display: inline-block;\n width: 32px;\n height: 16px;\n vertical-align: middle;\n background-color: transparent;\n border: 0;\n cursor: pointer;\n transition: all 0.2s;\n user-select: none;\n}\n.paraui-v4-switch .component-switch {\n border: none;\n cursor: pointer;\n}\n.paraui-v4-switch:before {\n position: absolute;\n top: 0px;\n left: 0;\n width: 100%;\n height: 16px;\n border-radius: 8px;\n background-color: rgb(212, 218, 227);\n content: \"\";\n transition: all 0.2s;\n}\na .paraui-v4-switch:focus {\n outline: 0;\n box-shadow: none;\n}\n.paraui-v4-switch.component-switch-checked:focus {\n box-shadow: none;\n}\n.paraui-v4-switch:focus:hover {\n box-shadow: none;\n}\n.paraui-v4-switch.component-switch-checked:before {\n background-color: rgb(46, 101, 230);\n}\n.paraui-v4-switch-loading *, .paraui-v4-switch.component-switch-disabled * {\n box-shadow: none;\n}\n.paraui-v4-switch-loading .component-switch-inner::before, .paraui-v4-switch.component-switch-disabled .component-switch-inner::before {\n position: absolute;\n top: 0px;\n left: 0;\n width: 100%;\n height: 16px;\n background-color: rgba(255, 255, 255, 0.5);\n content: \"\";\n z-index: 100;\n}\n.paraui-v4-switch .component-switch-inner {\n display: block;\n margin: 0 7px 0 25px;\n font-size: 14px;\n transition: margin 0.2s;\n}\n.paraui-v4-switch.component-switch-checked .component-switch-inner {\n margin: 0 25px 0 7px;\n}\n.paraui-v4-switch .component-switch-handle {\n position: absolute;\n top: 2px;\n left: 2px;\n width: 12px;\n height: 12px;\n transition: all 0.2s ease-in-out;\n}\n.paraui-v4-switch .component-switch-handle::before {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background-color: rgb(255, 255, 255);\n border-radius: 9px;\n box-shadow: none;\n transition: all 0.2s ease-in-out;\n content: \"\";\n}\n.paraui-v4-switch.component-switch-checked .component-switch-handle {\n left: calc(100% - 14px);\n}\n.paraui-v4-switch.component-switch-checked .component-switch-handle::before {\n background-color: rgb(255, 255, 255);\n}\n.paraui-v4-switch:not(.paraui-v4-switch-disabled):active .component-switch-handle::before {\n right: -30%;\n left: 0;\n}\n.paraui-v4-switch:not(.paraui-v4-switch-disabled):active.component-switch-checked .component-switch-handle::before {\n right: 0;\n left: -30%;\n}\n.paraui-v4-switch .component-switch-loading-icon {\n position: relative;\n top: 1px;\n color: rgb(46, 101, 230);\n font-size: 10px;\n vertical-align: top;\n animation: switchLoadingCircle 1s infinite linear;\n}\n.paraui-v4-switch.component-switch-checked .component-switch-loading-icon {\n color: rgb(46, 101, 230);\n}\n.paraui-v4-switch-small {\n min-width: 28px;\n height: 14px;\n line-height: 14px;\n}\n.paraui-v4-switch-small .component-switch-inner {\n margin: 0 5px 0 18px;\n font-size: 14px;\n}\n.paraui-v4-switch-small .component-switch-handle {\n width: 12px;\n height: 12px;\n top: 3px;\n left: 2px;\n}\n.paraui-v4-switch-small .component-switch-loading-icon {\n top: 1.5px;\n font-size: 9px;\n}\n.paraui-v4-switch-small.component-switch-checked .component-switch-inner {\n margin: 0 18px 0 5px;\n}\n.paraui-v4-switch-small.component-switch-checked .component-switch-handle {\n left: calc(100% - 12px - 2px);\n}\n@keyframes switchLoadingCircle {\n 100% {\n transform: rotate(360deg);\n }\n}\n\n.paraui-v4-switch-disabled::before {\n background-color: rgb(225, 229, 236);\n}\n.paraui-v4-switch-disabled.component-switch-checked::before {\n background-color: rgb(151, 178, 242);\n}\n\n.component-label-box {\n display: flex;\n align-items: center;\n}\n.component-label-box .sup-text {\n color: rgb(92, 101, 115);\n font-size: 14px;\n margin-left: 10px;\n line-height: 16px;\n}\n.component-label-box .sup-text > a {\n text-decoration: none;\n cursor: pointer;\n color: rgb(46, 101, 230);\n}\n.component-label-box .sup-text > a:hover {\n color: rgb(87, 131, 235);\n}\n\n.paraui-v4-switch-label {\n display: inline-flex;\n align-items: flex-end;\n}\n.paraui-v4-switch-label .component-disabled-text {\n color: rgb(92, 101, 115);\n}\n.paraui-v4-switch-label .component-desc-text {\n margin-bottom: 0;\n margin-right: 10px;\n line-height: 16px;\n color: rgb(29, 33, 38);\n}\n.paraui-v4-switch-label .component-desc-text .paraui-v4-help {\n line-height: 1;\n}\n.paraui-v4-switch-label .component-desc-text .paraui-v4-help svg {\n top: 0;\n}\n.paraui-v4-switch-label .paraui-v4-label-text-container {\n display: flex;\n flex-direction: column;\n}\n\n.paraui-v4-switch-desc-end {\n flex-direction: row-reverse;\n}\n.paraui-v4-switch-desc-end .component-desc-text {\n margin-right: 0;\n}\n\n.component-switch-disabled > div:nth-child(1)::before {\n transition: all 2s ease-in-out;\n}";
@@ -26,8 +26,7 @@ import '@para-ui/icons/Close';
26
26
  import '@para-ui/icons/EditOutline';
27
27
  import '../_verture/tinycolor-ece3542d.js';
28
28
  import '@para-ui/icons/Plus';
29
- import '../_verture/defineProperty-6f62bb2a.js';
30
- import '../_verture/typeof-adeedc13.js';
29
+ import '../_verture/defineProperty-f0e15205.js';
31
30
  import 'rc-picker';
32
31
  import '@para-ui/icons/CloseCircleF';
33
32
  import '@para-ui/icons/Calendar';
package/Title/index.d.ts CHANGED
@@ -39,6 +39,8 @@ export interface TitleProps {
39
39
  className?: string;
40
40
  /** style */
41
41
  style?: React.CSSProperties;
42
+ /** 默认是否展开 */
43
+ defaultCollapse?: boolean;
42
44
  }
43
45
  export declare const Title: FC<TitleProps>;
44
46
  export default Title;