bhd-components 0.7.34 → 0.7.36
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/README.md +1 -1
- package/dist/{e6319651.esm.es5.production.js → 60ad30a5.esm.es5.production.js} +10 -10
- package/dist/{8f785a2d.esm.es5.development.js → d10092aa.esm.es5.development.js} +256 -256
- package/dist/index.esm.es5.development.css +0 -3
- package/dist/index.esm.es5.development.js +126 -47
- package/dist/index.esm.es5.production.css +1 -1
- package/dist/index.esm.es5.production.js +1 -1
- package/es2017/bhdAppLayout/components/BhdTableSimple/index.js +24 -35
- package/es2017/bhdAppLayout/components/BhdTableSimple/index.less +0 -6
- package/es2017/bhdAppLayout/components/BhdTableSimple/index/347/232/204/345/211/257/346/234/254.js +120 -0
- package/es2017/bhdTipModal/index.js +4 -1
- package/es2017/bhdTipModal/modal.d.ts +6 -0
- package/es2017/bhdTipModal/modal.js +15 -0
- package/es2017/index.d.ts +1 -0
- package/es2017/index.js +1 -0
- package/es2017/message/index.d.ts +12 -13
- package/es2017/message/index.js +14 -3
- package/es2017/provider/config.d.ts +7 -1
- package/es2017/provider/config.js +7 -1
- package/es2017/provider/index.js +21 -4
- package/esm/bhdAppLayout/components/BhdTableSimple/index.js +24 -37
- package/esm/bhdAppLayout/components/BhdTableSimple/index.less +0 -6
- package/esm/bhdAppLayout/components/BhdTableSimple/index/347/232/204/345/211/257/346/234/254.js +122 -0
- package/esm/bhdTipModal/index.js +4 -1
- package/esm/bhdTipModal/modal.d.ts +6 -0
- package/esm/bhdTipModal/modal.js +15 -0
- package/esm/index.d.ts +1 -0
- package/esm/index.js +1 -0
- package/esm/message/index.d.ts +12 -13
- package/esm/message/index.js +60 -2
- package/esm/provider/config.d.ts +7 -1
- package/esm/provider/config.js +7 -1
- package/esm/provider/index.js +21 -4
- package/package.json +1 -1
|
@@ -64764,7 +64764,7 @@ methods$1.forEach(type => {
|
|
|
64764
64764
|
type
|
|
64765
64765
|
}));
|
|
64766
64766
|
});
|
|
64767
|
-
var
|
|
64767
|
+
var AntdNotification = staticMethods$1;
|
|
64768
64768
|
|
|
64769
64769
|
// =============================== Base ===============================
|
|
64770
64770
|
const genBaseStyle$9 = token => {
|
|
@@ -83987,6 +83987,241 @@ const QRCode = props => {
|
|
|
83987
83987
|
}
|
|
83988
83988
|
var QRCode$1 = QRCode;
|
|
83989
83989
|
|
|
83990
|
+
let message = null;
|
|
83991
|
+
let act = callback => callback();
|
|
83992
|
+
let taskQueue = [];
|
|
83993
|
+
let defaultGlobalConfig = {};
|
|
83994
|
+
function getGlobalContext() {
|
|
83995
|
+
const {
|
|
83996
|
+
prefixCls: globalPrefixCls,
|
|
83997
|
+
getContainer: globalGetContainer,
|
|
83998
|
+
duration,
|
|
83999
|
+
rtl,
|
|
84000
|
+
maxCount,
|
|
84001
|
+
top
|
|
84002
|
+
} = defaultGlobalConfig;
|
|
84003
|
+
const mergedPrefixCls = globalPrefixCls !== null && globalPrefixCls !== void 0 ? globalPrefixCls : globalConfig().getPrefixCls('message');
|
|
84004
|
+
const mergedContainer = (globalGetContainer === null || globalGetContainer === void 0 ? void 0 : globalGetContainer()) || document.body;
|
|
84005
|
+
return {
|
|
84006
|
+
prefixCls: mergedPrefixCls,
|
|
84007
|
+
container: mergedContainer,
|
|
84008
|
+
duration,
|
|
84009
|
+
rtl,
|
|
84010
|
+
maxCount,
|
|
84011
|
+
top
|
|
84012
|
+
};
|
|
84013
|
+
}
|
|
84014
|
+
const GlobalHolder = /*#__PURE__*/React.forwardRef((_, ref) => {
|
|
84015
|
+
const initializeMessageConfig = () => {
|
|
84016
|
+
const {
|
|
84017
|
+
prefixCls,
|
|
84018
|
+
container,
|
|
84019
|
+
maxCount,
|
|
84020
|
+
duration,
|
|
84021
|
+
rtl,
|
|
84022
|
+
top
|
|
84023
|
+
} = getGlobalContext();
|
|
84024
|
+
return {
|
|
84025
|
+
prefixCls,
|
|
84026
|
+
getContainer: () => container,
|
|
84027
|
+
maxCount,
|
|
84028
|
+
duration,
|
|
84029
|
+
rtl,
|
|
84030
|
+
top
|
|
84031
|
+
};
|
|
84032
|
+
};
|
|
84033
|
+
const [messageConfig, setMessageConfig] = React.useState(initializeMessageConfig);
|
|
84034
|
+
const [api, holder] = useInternalMessage(messageConfig);
|
|
84035
|
+
const global = globalConfig();
|
|
84036
|
+
const rootPrefixCls = global.getRootPrefixCls();
|
|
84037
|
+
const rootIconPrefixCls = global.getIconPrefixCls();
|
|
84038
|
+
const theme = global.getTheme();
|
|
84039
|
+
const sync = () => {
|
|
84040
|
+
setMessageConfig(initializeMessageConfig);
|
|
84041
|
+
};
|
|
84042
|
+
React.useEffect(sync, []);
|
|
84043
|
+
React.useImperativeHandle(ref, () => {
|
|
84044
|
+
const instance = Object.assign({}, api);
|
|
84045
|
+
Object.keys(instance).forEach(method => {
|
|
84046
|
+
instance[method] = function () {
|
|
84047
|
+
sync();
|
|
84048
|
+
return api[method].apply(api, arguments);
|
|
84049
|
+
};
|
|
84050
|
+
});
|
|
84051
|
+
return {
|
|
84052
|
+
instance,
|
|
84053
|
+
sync
|
|
84054
|
+
};
|
|
84055
|
+
});
|
|
84056
|
+
return /*#__PURE__*/React.createElement(ConfigProvider$1, {
|
|
84057
|
+
prefixCls: rootPrefixCls,
|
|
84058
|
+
iconPrefixCls: rootIconPrefixCls,
|
|
84059
|
+
theme: theme
|
|
84060
|
+
}, holder);
|
|
84061
|
+
});
|
|
84062
|
+
function flushNotice() {
|
|
84063
|
+
if (!message) {
|
|
84064
|
+
const holderFragment = document.createDocumentFragment();
|
|
84065
|
+
const newMessage = {
|
|
84066
|
+
fragment: holderFragment
|
|
84067
|
+
};
|
|
84068
|
+
message = newMessage;
|
|
84069
|
+
// Delay render to avoid sync issue
|
|
84070
|
+
act(() => {
|
|
84071
|
+
render( /*#__PURE__*/React.createElement(GlobalHolder, {
|
|
84072
|
+
ref: node => {
|
|
84073
|
+
const {
|
|
84074
|
+
instance,
|
|
84075
|
+
sync
|
|
84076
|
+
} = node || {};
|
|
84077
|
+
// React 18 test env will throw if call immediately in ref
|
|
84078
|
+
Promise.resolve().then(() => {
|
|
84079
|
+
if (!newMessage.instance && instance) {
|
|
84080
|
+
newMessage.instance = instance;
|
|
84081
|
+
newMessage.sync = sync;
|
|
84082
|
+
flushNotice();
|
|
84083
|
+
}
|
|
84084
|
+
});
|
|
84085
|
+
}
|
|
84086
|
+
}), holderFragment);
|
|
84087
|
+
});
|
|
84088
|
+
return;
|
|
84089
|
+
}
|
|
84090
|
+
// Notification not ready
|
|
84091
|
+
if (!message.instance) {
|
|
84092
|
+
return;
|
|
84093
|
+
}
|
|
84094
|
+
// >>> Execute task
|
|
84095
|
+
taskQueue.forEach(task => {
|
|
84096
|
+
const {
|
|
84097
|
+
type,
|
|
84098
|
+
skipped
|
|
84099
|
+
} = task;
|
|
84100
|
+
// Only `skipped` when user call notice but cancel it immediately
|
|
84101
|
+
// and instance not ready
|
|
84102
|
+
if (!skipped) {
|
|
84103
|
+
switch (type) {
|
|
84104
|
+
case 'open':
|
|
84105
|
+
{
|
|
84106
|
+
act(() => {
|
|
84107
|
+
const closeFn = message.instance.open(Object.assign(Object.assign({}, defaultGlobalConfig), task.config));
|
|
84108
|
+
closeFn === null || closeFn === void 0 ? void 0 : closeFn.then(task.resolve);
|
|
84109
|
+
task.setCloseFn(closeFn);
|
|
84110
|
+
});
|
|
84111
|
+
break;
|
|
84112
|
+
}
|
|
84113
|
+
case 'destroy':
|
|
84114
|
+
act(() => {
|
|
84115
|
+
message === null || message === void 0 ? void 0 : message.instance.destroy(task.key);
|
|
84116
|
+
});
|
|
84117
|
+
break;
|
|
84118
|
+
// Other type open
|
|
84119
|
+
default:
|
|
84120
|
+
{
|
|
84121
|
+
act(() => {
|
|
84122
|
+
var _message$instance;
|
|
84123
|
+
const closeFn = (_message$instance = message.instance)[type].apply(_message$instance, _toConsumableArray(task.args));
|
|
84124
|
+
closeFn === null || closeFn === void 0 ? void 0 : closeFn.then(task.resolve);
|
|
84125
|
+
task.setCloseFn(closeFn);
|
|
84126
|
+
});
|
|
84127
|
+
}
|
|
84128
|
+
}
|
|
84129
|
+
}
|
|
84130
|
+
});
|
|
84131
|
+
// Clean up
|
|
84132
|
+
taskQueue = [];
|
|
84133
|
+
}
|
|
84134
|
+
// ==============================================================================
|
|
84135
|
+
// == Export ==
|
|
84136
|
+
// ==============================================================================
|
|
84137
|
+
function setMessageGlobalConfig(config) {
|
|
84138
|
+
defaultGlobalConfig = Object.assign(Object.assign({}, defaultGlobalConfig), config);
|
|
84139
|
+
// Trigger sync for it
|
|
84140
|
+
act(() => {
|
|
84141
|
+
var _a;
|
|
84142
|
+
(_a = message === null || message === void 0 ? void 0 : message.sync) === null || _a === void 0 ? void 0 : _a.call(message);
|
|
84143
|
+
});
|
|
84144
|
+
}
|
|
84145
|
+
function open(config) {
|
|
84146
|
+
const result = wrapPromiseFn(resolve => {
|
|
84147
|
+
let closeFn;
|
|
84148
|
+
const task = {
|
|
84149
|
+
type: 'open',
|
|
84150
|
+
config,
|
|
84151
|
+
resolve,
|
|
84152
|
+
setCloseFn: fn => {
|
|
84153
|
+
closeFn = fn;
|
|
84154
|
+
}
|
|
84155
|
+
};
|
|
84156
|
+
taskQueue.push(task);
|
|
84157
|
+
return () => {
|
|
84158
|
+
if (closeFn) {
|
|
84159
|
+
act(() => {
|
|
84160
|
+
closeFn();
|
|
84161
|
+
});
|
|
84162
|
+
} else {
|
|
84163
|
+
task.skipped = true;
|
|
84164
|
+
}
|
|
84165
|
+
};
|
|
84166
|
+
});
|
|
84167
|
+
flushNotice();
|
|
84168
|
+
return result;
|
|
84169
|
+
}
|
|
84170
|
+
function typeOpen(type, args) {
|
|
84171
|
+
// Warning if exist theme
|
|
84172
|
+
{
|
|
84173
|
+
warnContext('message');
|
|
84174
|
+
}
|
|
84175
|
+
const result = wrapPromiseFn(resolve => {
|
|
84176
|
+
let closeFn;
|
|
84177
|
+
const task = {
|
|
84178
|
+
type,
|
|
84179
|
+
args,
|
|
84180
|
+
resolve,
|
|
84181
|
+
setCloseFn: fn => {
|
|
84182
|
+
closeFn = fn;
|
|
84183
|
+
}
|
|
84184
|
+
};
|
|
84185
|
+
taskQueue.push(task);
|
|
84186
|
+
return () => {
|
|
84187
|
+
if (closeFn) {
|
|
84188
|
+
act(() => {
|
|
84189
|
+
closeFn();
|
|
84190
|
+
});
|
|
84191
|
+
} else {
|
|
84192
|
+
task.skipped = true;
|
|
84193
|
+
}
|
|
84194
|
+
};
|
|
84195
|
+
});
|
|
84196
|
+
flushNotice();
|
|
84197
|
+
return result;
|
|
84198
|
+
}
|
|
84199
|
+
function destroy(key) {
|
|
84200
|
+
taskQueue.push({
|
|
84201
|
+
type: 'destroy',
|
|
84202
|
+
key
|
|
84203
|
+
});
|
|
84204
|
+
flushNotice();
|
|
84205
|
+
}
|
|
84206
|
+
const methods = ['success', 'info', 'warning', 'error', 'loading'];
|
|
84207
|
+
const baseStaticMethods = {
|
|
84208
|
+
open,
|
|
84209
|
+
destroy,
|
|
84210
|
+
config: setMessageGlobalConfig,
|
|
84211
|
+
useMessage,
|
|
84212
|
+
_InternalPanelDoNotUseOrYouWillBeFired: PurePanel$1
|
|
84213
|
+
};
|
|
84214
|
+
const staticMethods = baseStaticMethods;
|
|
84215
|
+
methods.forEach(type => {
|
|
84216
|
+
staticMethods[type] = function () {
|
|
84217
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
84218
|
+
args[_key] = arguments[_key];
|
|
84219
|
+
}
|
|
84220
|
+
return typeOpen(type, args);
|
|
84221
|
+
};
|
|
84222
|
+
});
|
|
84223
|
+
var AntdMessage = staticMethods;
|
|
84224
|
+
|
|
83990
84225
|
function _extends() {
|
|
83991
84226
|
_extends = Object.assign || function assign(target) {
|
|
83992
84227
|
for (var i = 1; i < arguments.length; i++) {
|
|
@@ -85395,241 +85630,6 @@ function hijackElementProps(props) {
|
|
|
85395
85630
|
return props;
|
|
85396
85631
|
}
|
|
85397
85632
|
|
|
85398
|
-
let message = null;
|
|
85399
|
-
let act = callback => callback();
|
|
85400
|
-
let taskQueue = [];
|
|
85401
|
-
let defaultGlobalConfig = {};
|
|
85402
|
-
function getGlobalContext() {
|
|
85403
|
-
const {
|
|
85404
|
-
prefixCls: globalPrefixCls,
|
|
85405
|
-
getContainer: globalGetContainer,
|
|
85406
|
-
duration,
|
|
85407
|
-
rtl,
|
|
85408
|
-
maxCount,
|
|
85409
|
-
top
|
|
85410
|
-
} = defaultGlobalConfig;
|
|
85411
|
-
const mergedPrefixCls = globalPrefixCls !== null && globalPrefixCls !== void 0 ? globalPrefixCls : globalConfig().getPrefixCls('message');
|
|
85412
|
-
const mergedContainer = (globalGetContainer === null || globalGetContainer === void 0 ? void 0 : globalGetContainer()) || document.body;
|
|
85413
|
-
return {
|
|
85414
|
-
prefixCls: mergedPrefixCls,
|
|
85415
|
-
container: mergedContainer,
|
|
85416
|
-
duration,
|
|
85417
|
-
rtl,
|
|
85418
|
-
maxCount,
|
|
85419
|
-
top
|
|
85420
|
-
};
|
|
85421
|
-
}
|
|
85422
|
-
const GlobalHolder = /*#__PURE__*/React.forwardRef((_, ref) => {
|
|
85423
|
-
const initializeMessageConfig = () => {
|
|
85424
|
-
const {
|
|
85425
|
-
prefixCls,
|
|
85426
|
-
container,
|
|
85427
|
-
maxCount,
|
|
85428
|
-
duration,
|
|
85429
|
-
rtl,
|
|
85430
|
-
top
|
|
85431
|
-
} = getGlobalContext();
|
|
85432
|
-
return {
|
|
85433
|
-
prefixCls,
|
|
85434
|
-
getContainer: () => container,
|
|
85435
|
-
maxCount,
|
|
85436
|
-
duration,
|
|
85437
|
-
rtl,
|
|
85438
|
-
top
|
|
85439
|
-
};
|
|
85440
|
-
};
|
|
85441
|
-
const [messageConfig, setMessageConfig] = React.useState(initializeMessageConfig);
|
|
85442
|
-
const [api, holder] = useInternalMessage(messageConfig);
|
|
85443
|
-
const global = globalConfig();
|
|
85444
|
-
const rootPrefixCls = global.getRootPrefixCls();
|
|
85445
|
-
const rootIconPrefixCls = global.getIconPrefixCls();
|
|
85446
|
-
const theme = global.getTheme();
|
|
85447
|
-
const sync = () => {
|
|
85448
|
-
setMessageConfig(initializeMessageConfig);
|
|
85449
|
-
};
|
|
85450
|
-
React.useEffect(sync, []);
|
|
85451
|
-
React.useImperativeHandle(ref, () => {
|
|
85452
|
-
const instance = Object.assign({}, api);
|
|
85453
|
-
Object.keys(instance).forEach(method => {
|
|
85454
|
-
instance[method] = function () {
|
|
85455
|
-
sync();
|
|
85456
|
-
return api[method].apply(api, arguments);
|
|
85457
|
-
};
|
|
85458
|
-
});
|
|
85459
|
-
return {
|
|
85460
|
-
instance,
|
|
85461
|
-
sync
|
|
85462
|
-
};
|
|
85463
|
-
});
|
|
85464
|
-
return /*#__PURE__*/React.createElement(ConfigProvider$1, {
|
|
85465
|
-
prefixCls: rootPrefixCls,
|
|
85466
|
-
iconPrefixCls: rootIconPrefixCls,
|
|
85467
|
-
theme: theme
|
|
85468
|
-
}, holder);
|
|
85469
|
-
});
|
|
85470
|
-
function flushNotice() {
|
|
85471
|
-
if (!message) {
|
|
85472
|
-
const holderFragment = document.createDocumentFragment();
|
|
85473
|
-
const newMessage = {
|
|
85474
|
-
fragment: holderFragment
|
|
85475
|
-
};
|
|
85476
|
-
message = newMessage;
|
|
85477
|
-
// Delay render to avoid sync issue
|
|
85478
|
-
act(() => {
|
|
85479
|
-
render( /*#__PURE__*/React.createElement(GlobalHolder, {
|
|
85480
|
-
ref: node => {
|
|
85481
|
-
const {
|
|
85482
|
-
instance,
|
|
85483
|
-
sync
|
|
85484
|
-
} = node || {};
|
|
85485
|
-
// React 18 test env will throw if call immediately in ref
|
|
85486
|
-
Promise.resolve().then(() => {
|
|
85487
|
-
if (!newMessage.instance && instance) {
|
|
85488
|
-
newMessage.instance = instance;
|
|
85489
|
-
newMessage.sync = sync;
|
|
85490
|
-
flushNotice();
|
|
85491
|
-
}
|
|
85492
|
-
});
|
|
85493
|
-
}
|
|
85494
|
-
}), holderFragment);
|
|
85495
|
-
});
|
|
85496
|
-
return;
|
|
85497
|
-
}
|
|
85498
|
-
// Notification not ready
|
|
85499
|
-
if (!message.instance) {
|
|
85500
|
-
return;
|
|
85501
|
-
}
|
|
85502
|
-
// >>> Execute task
|
|
85503
|
-
taskQueue.forEach(task => {
|
|
85504
|
-
const {
|
|
85505
|
-
type,
|
|
85506
|
-
skipped
|
|
85507
|
-
} = task;
|
|
85508
|
-
// Only `skipped` when user call notice but cancel it immediately
|
|
85509
|
-
// and instance not ready
|
|
85510
|
-
if (!skipped) {
|
|
85511
|
-
switch (type) {
|
|
85512
|
-
case 'open':
|
|
85513
|
-
{
|
|
85514
|
-
act(() => {
|
|
85515
|
-
const closeFn = message.instance.open(Object.assign(Object.assign({}, defaultGlobalConfig), task.config));
|
|
85516
|
-
closeFn === null || closeFn === void 0 ? void 0 : closeFn.then(task.resolve);
|
|
85517
|
-
task.setCloseFn(closeFn);
|
|
85518
|
-
});
|
|
85519
|
-
break;
|
|
85520
|
-
}
|
|
85521
|
-
case 'destroy':
|
|
85522
|
-
act(() => {
|
|
85523
|
-
message === null || message === void 0 ? void 0 : message.instance.destroy(task.key);
|
|
85524
|
-
});
|
|
85525
|
-
break;
|
|
85526
|
-
// Other type open
|
|
85527
|
-
default:
|
|
85528
|
-
{
|
|
85529
|
-
act(() => {
|
|
85530
|
-
var _message$instance;
|
|
85531
|
-
const closeFn = (_message$instance = message.instance)[type].apply(_message$instance, _toConsumableArray(task.args));
|
|
85532
|
-
closeFn === null || closeFn === void 0 ? void 0 : closeFn.then(task.resolve);
|
|
85533
|
-
task.setCloseFn(closeFn);
|
|
85534
|
-
});
|
|
85535
|
-
}
|
|
85536
|
-
}
|
|
85537
|
-
}
|
|
85538
|
-
});
|
|
85539
|
-
// Clean up
|
|
85540
|
-
taskQueue = [];
|
|
85541
|
-
}
|
|
85542
|
-
// ==============================================================================
|
|
85543
|
-
// == Export ==
|
|
85544
|
-
// ==============================================================================
|
|
85545
|
-
function setMessageGlobalConfig(config) {
|
|
85546
|
-
defaultGlobalConfig = Object.assign(Object.assign({}, defaultGlobalConfig), config);
|
|
85547
|
-
// Trigger sync for it
|
|
85548
|
-
act(() => {
|
|
85549
|
-
var _a;
|
|
85550
|
-
(_a = message === null || message === void 0 ? void 0 : message.sync) === null || _a === void 0 ? void 0 : _a.call(message);
|
|
85551
|
-
});
|
|
85552
|
-
}
|
|
85553
|
-
function open(config) {
|
|
85554
|
-
const result = wrapPromiseFn(resolve => {
|
|
85555
|
-
let closeFn;
|
|
85556
|
-
const task = {
|
|
85557
|
-
type: 'open',
|
|
85558
|
-
config,
|
|
85559
|
-
resolve,
|
|
85560
|
-
setCloseFn: fn => {
|
|
85561
|
-
closeFn = fn;
|
|
85562
|
-
}
|
|
85563
|
-
};
|
|
85564
|
-
taskQueue.push(task);
|
|
85565
|
-
return () => {
|
|
85566
|
-
if (closeFn) {
|
|
85567
|
-
act(() => {
|
|
85568
|
-
closeFn();
|
|
85569
|
-
});
|
|
85570
|
-
} else {
|
|
85571
|
-
task.skipped = true;
|
|
85572
|
-
}
|
|
85573
|
-
};
|
|
85574
|
-
});
|
|
85575
|
-
flushNotice();
|
|
85576
|
-
return result;
|
|
85577
|
-
}
|
|
85578
|
-
function typeOpen(type, args) {
|
|
85579
|
-
// Warning if exist theme
|
|
85580
|
-
{
|
|
85581
|
-
warnContext('message');
|
|
85582
|
-
}
|
|
85583
|
-
const result = wrapPromiseFn(resolve => {
|
|
85584
|
-
let closeFn;
|
|
85585
|
-
const task = {
|
|
85586
|
-
type,
|
|
85587
|
-
args,
|
|
85588
|
-
resolve,
|
|
85589
|
-
setCloseFn: fn => {
|
|
85590
|
-
closeFn = fn;
|
|
85591
|
-
}
|
|
85592
|
-
};
|
|
85593
|
-
taskQueue.push(task);
|
|
85594
|
-
return () => {
|
|
85595
|
-
if (closeFn) {
|
|
85596
|
-
act(() => {
|
|
85597
|
-
closeFn();
|
|
85598
|
-
});
|
|
85599
|
-
} else {
|
|
85600
|
-
task.skipped = true;
|
|
85601
|
-
}
|
|
85602
|
-
};
|
|
85603
|
-
});
|
|
85604
|
-
flushNotice();
|
|
85605
|
-
return result;
|
|
85606
|
-
}
|
|
85607
|
-
function destroy(key) {
|
|
85608
|
-
taskQueue.push({
|
|
85609
|
-
type: 'destroy',
|
|
85610
|
-
key
|
|
85611
|
-
});
|
|
85612
|
-
flushNotice();
|
|
85613
|
-
}
|
|
85614
|
-
const methods = ['success', 'info', 'warning', 'error', 'loading'];
|
|
85615
|
-
const baseStaticMethods = {
|
|
85616
|
-
open,
|
|
85617
|
-
destroy,
|
|
85618
|
-
config: setMessageGlobalConfig,
|
|
85619
|
-
useMessage,
|
|
85620
|
-
_InternalPanelDoNotUseOrYouWillBeFired: PurePanel$1
|
|
85621
|
-
};
|
|
85622
|
-
const staticMethods = baseStaticMethods;
|
|
85623
|
-
methods.forEach(type => {
|
|
85624
|
-
staticMethods[type] = function () {
|
|
85625
|
-
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
85626
|
-
args[_key] = arguments[_key];
|
|
85627
|
-
}
|
|
85628
|
-
return typeOpen(type, args);
|
|
85629
|
-
};
|
|
85630
|
-
});
|
|
85631
|
-
var message$1 = staticMethods;
|
|
85632
|
-
|
|
85633
85633
|
var EXPAND_COLUMN = {};
|
|
85634
85634
|
var INTERNAL_HOOKS = 'rc-table-internal-hook';
|
|
85635
85635
|
|
|
@@ -92709,6 +92709,24 @@ $$A({ target: 'Array', proto: true, arity: 1, forced: FORCED$8 }, {
|
|
|
92709
92709
|
}
|
|
92710
92710
|
});
|
|
92711
92711
|
|
|
92712
|
+
function _array_without_holes(arr) {
|
|
92713
|
+
if (Array.isArray(arr)) return _array_like_to_array(arr);
|
|
92714
|
+
}
|
|
92715
|
+
|
|
92716
|
+
function _iterable_to_array(iter) {
|
|
92717
|
+
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) {
|
|
92718
|
+
return Array.from(iter);
|
|
92719
|
+
}
|
|
92720
|
+
}
|
|
92721
|
+
|
|
92722
|
+
function _non_iterable_spread() {
|
|
92723
|
+
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
92724
|
+
}
|
|
92725
|
+
|
|
92726
|
+
function _to_consumable_array(arr) {
|
|
92727
|
+
return _array_without_holes(arr) || _iterable_to_array(arr) || _unsupported_iterable_to_array(arr) || _non_iterable_spread();
|
|
92728
|
+
}
|
|
92729
|
+
|
|
92712
92730
|
var IconContext = /*#__PURE__*/createContext$1({});
|
|
92713
92731
|
var Context = IconContext;
|
|
92714
92732
|
|
|
@@ -98540,24 +98558,6 @@ fixRegExpWellKnownSymbolLogic$1('search', function (SEARCH, nativeSearch, maybeC
|
|
|
98540
98558
|
];
|
|
98541
98559
|
});
|
|
98542
98560
|
|
|
98543
|
-
function _array_without_holes(arr) {
|
|
98544
|
-
if (Array.isArray(arr)) return _array_like_to_array(arr);
|
|
98545
|
-
}
|
|
98546
|
-
|
|
98547
|
-
function _iterable_to_array(iter) {
|
|
98548
|
-
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) {
|
|
98549
|
-
return Array.from(iter);
|
|
98550
|
-
}
|
|
98551
|
-
}
|
|
98552
|
-
|
|
98553
|
-
function _non_iterable_spread() {
|
|
98554
|
-
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
98555
|
-
}
|
|
98556
|
-
|
|
98557
|
-
function _to_consumable_array(arr) {
|
|
98558
|
-
return _array_without_holes(arr) || _iterable_to_array(arr) || _unsupported_iterable_to_array(arr) || _non_iterable_spread();
|
|
98559
|
-
}
|
|
98560
|
-
|
|
98561
98561
|
var $$n = _export;
|
|
98562
98562
|
var call$7 = functionCall;
|
|
98563
98563
|
var uncurryThis$a = functionUncurryThis;
|
|
@@ -120933,7 +120933,7 @@ function requireD () {
|
|
|
120933
120933
|
+ 'pragma private protected public pure ref return scope shared static struct '
|
|
120934
120934
|
+ 'super switch synchronized template this throw try typedef typeid typeof union '
|
|
120935
120935
|
+ 'unittest version void volatile while with __FILE__ __LINE__ __gshared|10 '
|
|
120936
|
-
+ '__thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ "0.7.
|
|
120936
|
+
+ '__thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ "0.7.36"',
|
|
120937
120937
|
built_in:
|
|
120938
120938
|
'bool cdouble cent cfloat char creal dchar delegate double dstring float function '
|
|
120939
120939
|
+ 'idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar '
|
|
@@ -168503,4 +168503,4 @@ var HighlightJS = /*@__PURE__*/getDefaultExportFromCjs(lib);
|
|
|
168503
168503
|
|
|
168504
168504
|
// https://nodejs.org/api/packages.html#packages_writing_dual_packages_while_avoiding_or_minimizing_hazards
|
|
168505
168505
|
|
|
168506
|
-
export {
|
|
168506
|
+
export { Breadcrumb$1 as $, App$1 as A, CloseOutlined$1 as B, ConfigProvider$1 as C, I as D, ExclamationCircleFilled$1 as E, Remarkable as F, Drawer as G, H, Icon$1 as I, HighlightJS as J, Affix$1 as K, LeftOutlined$1 as L, Modal$1 as M, Alert$1 as N, Anchor$1 as O, Pagination$1 as P, RefAutoComplete$1 as Q, RightOutlined$1 as R, StyleProvider as S, Tooltip$1 as T, Avatar$1 as U, FloatButton$1 as V, index$5 as W, X, Badge$1 as Y, ZoomInOutlined$1 as Z, _object_spread as _, AntdMessage as a, Button$2 as a0, Calendar$1 as a1, Card$1 as a2, Carousel$1 as a3, Cascader$1 as a4, Checkbox$1 as a5, Col$1 as a6, Collapse$1 as a7, DatePicker$1 as a8, Descriptions as a9, Tabs as aA, Tag$1 as aB, theme as aC, TimePicker$1 as aD, Timeline$1 as aE, Tour$1 as aF, Transfer$1 as aG, Tree$1 as aH, TreeSelect$1 as aI, Typography$1 as aJ, Upload$1 as aK, Watermark$1 as aL, QRCode$1 as aM, version$3 as aN, en_US$1 as aO, Divider$1 as aa, Dropdown$1 as ab, Empty$1 as ac, Form$1 as ad, index$4 as ae, Image$2 as af, InputNumber$1 as ag, Layout$1 as ah, List$1 as ai, Mentions$1 as aj, Menu$1 as ak, Popconfirm$1 as al, Popover$1 as am, Progress$1 as an, Radio$1 as ao, Rate$1 as ap, Result$2 as aq, Row$3 as ar, Segmented$1 as as, Skeleton$1 as at, Slider$1 as au, Space$1 as av, Spin$1 as aw, Statistic$1 as ax, Steps$1 as ay, Switch$1 as az, AntdNotification as b, _extends as c, _object_destructuring_empty as d, _object_spread_props as e, jsxs as f, _sliced_to_array as g, Table$1 as h, _to_consumable_array as i, jsx as j, Select$1 as k, CaretDownOutlined$1 as l, _inherits as m, _create_super as n, _create_class as o, _class_call_check as p, _define_property as q, _assert_this_initialized as r, _async_to_generator as s, transform as t, MinusOutlined$1 as u, PlusOutlined$1 as v, __generator as w, Input$1 as x, SearchOutlined$1 as y, zhCN as z };
|
|
@@ -1692,9 +1692,6 @@
|
|
|
1692
1692
|
align-items: center;
|
|
1693
1693
|
justify-content: center;
|
|
1694
1694
|
flex-direction: column;
|
|
1695
|
-
position: absolute;
|
|
1696
|
-
left: 50%;
|
|
1697
|
-
transform: translateX(-50%);
|
|
1698
1695
|
}
|
|
1699
1696
|
.app_BhdTableSimple_noTable_loadingTable img {
|
|
1700
1697
|
margin-bottom: 24px;
|