@king-design/react 3.1.4-beta.0 → 3.1.4-beta.2
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/components/button/index.vdt.js +1 -2
- package/components/button/styles.js +3 -3
- package/components/card/index.d.ts +2 -0
- package/components/card/index.js +4 -2
- package/components/card/index.vdt.js +3 -2
- package/components/card/styles.js +22 -3
- package/components/carousel/useAutoplay.js +5 -2
- package/components/cascader/index.d.ts +45 -0
- package/components/datepicker/index.d.ts +63 -0
- package/components/diagram/index.d.ts +1 -1
- package/components/dropdown/dropdown.js +7 -1
- package/components/dropdown/usePosition.js +0 -1
- package/components/icon/styles.js +1 -1
- package/components/input/styles.js +1 -1
- package/components/select/select.d.ts +33 -0
- package/components/steps/context.d.ts +3 -3
- package/components/table/exportTable.js +5 -2
- package/components/table/table.js +2 -2
- package/components/table/useFixedColumns.js +1 -1
- package/components/table/{useRestRowStatus.d.ts → useResetRowStatus.d.ts} +1 -1
- package/components/table/{useRestRowStatus.js → useResetRowStatus.js} +1 -1
- package/components/tabs/tab.d.ts +2 -1
- package/components/tabs/tab.js +1 -0
- package/components/timepicker/panelPicker.d.ts +54 -0
- package/components/treeSelect/index.d.ts +28 -0
- package/components/wave/index.js +6 -2
- package/hooks/useDelayClose.js +11 -6
- package/hooks/useMouseOutsidable.js +6 -2
- package/index.d.ts +2 -2
- package/index.js +2 -2
- package/package.json +1 -1
- package/yarn-error.log +0 -528
|
@@ -31,11 +31,10 @@ export default function ($props, $blocks, $__proto__) {
|
|
|
31
31
|
name = _this$get.name,
|
|
32
32
|
ghost = _this$get.ghost;
|
|
33
33
|
|
|
34
|
-
var checked = this.isChecked();
|
|
35
|
-
if (!this.config) debugger;
|
|
36
34
|
var _this$config = this.config,
|
|
37
35
|
cls = _this$config.cls,
|
|
38
36
|
k = _this$config.k;
|
|
37
|
+
var checked = this.isChecked();
|
|
39
38
|
|
|
40
39
|
var isIcon = function isIcon(child) {
|
|
41
40
|
return child.tag === Icon || child.className && child.className.indexOf('icon') > -1;
|
|
@@ -264,13 +264,13 @@ export var makeButtonStyles = cache(function makeButtonStyles(k, iconSide) {
|
|
|
264
264
|
}), ";.", k, "-icon-loading{margin-left:-1em;}}}"), ";"));
|
|
265
265
|
});
|
|
266
266
|
export var makeButtonGroupStyles = cache(function makeButtonGroupStyles(k) {
|
|
267
|
-
return /*#__PURE__*/css("display:inline-flex;align-items:center;flex-wrap:wrap;vertical-align:middle;.", k, "-btn{margin:0;vertical-align:middle;&:hover,&:focus,&.", k, "-active{z-index:1;position:relative;}}&.", k, "-fluid{width:100%;}&:not(.", k, "-vertical){>.", k, "-btn{", _mapInstanceProperty(types).call(types, function (type) {
|
|
267
|
+
return /*#__PURE__*/css("display:inline-flex;align-items:center;flex-wrap:wrap;vertical-align:middle;.", k, "-btn{margin:0;vertical-align:middle;&:hover,&:focus,&.", k, "-active{z-index:1;position:relative;}}&.", k, "-fluid{width:100%;}&:not(.", k, "-vertical):not(.", k, "-seperate){>.", k, "-btn{", _mapInstanceProperty(types).call(types, function (type) {
|
|
268
268
|
if (type === 'active') return;
|
|
269
269
|
var borderColor = button.group[type].borderColor;
|
|
270
270
|
return /*#__PURE__*/css("&.", k, "-", type, ":not(:first-child){border-left-color:", borderColor, ";}&.", k, "-", type, ":not(:last-child){border-right-color:", borderColor, ";}");
|
|
271
|
-
}), ";&:not(:first-child){margin-left:-1px;&:not(:last-child){border-radius:0;}}&:not(:only-child):first-child{border-top-right-radius:0;border-bottom-right-radius:0;}&:not(:only-child):last-child{border-top-left-radius:0;border-bottom-left-radius:0;}}&.", k, "-fluid{display:flex;>.", k, "-btn{flex:1;}}}&.", k, "-vertical{flex-direction:column;>.", k, "-btn{", _mapInstanceProperty(types).call(types, function (type) {
|
|
271
|
+
}), ";&:not(:first-child){margin-left:-1px;&:not(:last-child){border-radius:0;}}&:not(:only-child):first-child{border-top-right-radius:0;border-bottom-right-radius:0;}&:not(:only-child):last-child{border-top-left-radius:0;border-bottom-left-radius:0;}}&.", k, "-fluid{display:flex;>.", k, "-btn{flex:1;}}}&.", k, "-vertical:not(.", k, "-seperate){flex-direction:column;>.", k, "-btn{", _mapInstanceProperty(types).call(types, function (type) {
|
|
272
272
|
if (type === 'active') return;
|
|
273
273
|
var borderColor = button.group[type].borderColor;
|
|
274
274
|
return /*#__PURE__*/css("&.", k, "-", type, ":not(:first-child){border-top-color:", borderColor, ";}&.", k, "-", type, ":not(:last-child){border-bottom-color:", borderColor, ";}");
|
|
275
|
-
}), ";&:not(.", k, "-btn-icon){width:100%;}&:not(:first-child){margin-top:-1px;&:not(:last-child){border-radius:0;}}&:not(:only-child):first-child{border-bottom-left-radius:0;border-bottom-right-radius:0;}&:not(:only-child):last-child{border-top-left-radius:0;border-top-right-radius:0;}}}&.", k, "-seperate{gap:8px
|
|
275
|
+
}), ";&:not(.", k, "-btn-icon){width:100%;}&:not(:first-child){margin-top:-1px;&:not(:last-child){border-radius:0;}}&:not(:only-child):first-child{border-bottom-left-radius:0;border-bottom-right-radius:0;}&:not(:only-child):last-child{border-top-left-radius:0;border-top-right-radius:0;}}}&.", k, "-seperate{gap:8px;}");
|
|
276
276
|
});
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { Component, VNode, TypeDefs } from 'intact-react';
|
|
2
2
|
export * from './column';
|
|
3
|
+
import { Sizes } from '../types';
|
|
3
4
|
export interface CardProps {
|
|
4
5
|
title?: string | VNode;
|
|
5
6
|
type?: 'shadow' | 'border' | 'none';
|
|
7
|
+
size?: Sizes;
|
|
6
8
|
}
|
|
7
9
|
export interface CardEvents {
|
|
8
10
|
}
|
package/components/card/index.js
CHANGED
|
@@ -6,12 +6,14 @@ export * from './column';
|
|
|
6
6
|
import { useConfigContext } from '../config';
|
|
7
7
|
var typeDefs = {
|
|
8
8
|
title: [String, VNode],
|
|
9
|
-
type: ['shadow', 'border', 'none']
|
|
9
|
+
type: ['shadow', 'border', 'none'],
|
|
10
|
+
size: String
|
|
10
11
|
};
|
|
11
12
|
|
|
12
13
|
var defaults = function defaults() {
|
|
13
14
|
return {
|
|
14
|
-
type: 'shadow'
|
|
15
|
+
type: 'shadow',
|
|
16
|
+
size: 'default'
|
|
15
17
|
};
|
|
16
18
|
};
|
|
17
19
|
|
|
@@ -16,7 +16,8 @@ export default function ($props, $blocks, $__proto__) {
|
|
|
16
16
|
children = _this$get.children,
|
|
17
17
|
className = _this$get.className,
|
|
18
18
|
title = _this$get.title,
|
|
19
|
-
type = _this$get.type
|
|
19
|
+
type = _this$get.type,
|
|
20
|
+
size = _this$get.size;
|
|
20
21
|
|
|
21
22
|
var k = this.config.k;
|
|
22
23
|
var hasHeader = $blocks.header || $blocks.title || title || $blocks.extra;
|
|
@@ -33,7 +34,7 @@ export default function ($props, $blocks, $__proto__) {
|
|
|
33
34
|
}
|
|
34
35
|
}
|
|
35
36
|
|
|
36
|
-
var classNameObj = (_classNameObj = {}, _classNameObj[k + "-card"] = true, _classNameObj[k + "-shadow"] = type === 'shadow', _classNameObj[k + "-border"] = type === 'border', _classNameObj[k + "-none"] = type === 'none', _classNameObj[k + "-no-header"] = !hasHeader, _classNameObj[k + "-card-grid"] = hasColumn, _classNameObj[className] = className, _classNameObj[makeStyles(k)] = true, _classNameObj);
|
|
37
|
+
var classNameObj = (_classNameObj = {}, _classNameObj[k + "-card"] = true, _classNameObj[k + "-shadow"] = type === 'shadow', _classNameObj[k + "-border"] = type === 'border', _classNameObj[k + "-none"] = type === 'none', _classNameObj[k + "-no-header"] = !hasHeader, _classNameObj[k + "-card-grid"] = hasColumn, _classNameObj[k + "-" + size] = size !== 'default', _classNameObj[className] = className, _classNameObj[makeStyles(k)] = true, _classNameObj);
|
|
37
38
|
return _$cv('div', _extends({
|
|
38
39
|
'className': _$cn(classNameObj)
|
|
39
40
|
}, getRestProps(this)), [hasHeader ? _$ce(2, 'div', (_$blocks['header'] = function ($super) {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import _mapInstanceProperty from "@babel/runtime-corejs3/core-js/instance/map";
|
|
1
2
|
import { css } from '@emotion/css';
|
|
2
3
|
import { theme, setDefault } from '../../styles/theme';
|
|
3
4
|
import { deepDefaults } from '../../styles/utils';
|
|
@@ -5,7 +6,7 @@ import '../../styles/global';
|
|
|
5
6
|
import { cache } from '../utils';
|
|
6
7
|
var defaults = {
|
|
7
8
|
border: '1px solid #e5e5e5',
|
|
8
|
-
padding: '
|
|
9
|
+
padding: '24px',
|
|
9
10
|
|
|
10
11
|
get boxShadow() {
|
|
11
12
|
return theme.boxShadow;
|
|
@@ -17,7 +18,19 @@ var defaults = {
|
|
|
17
18
|
|
|
18
19
|
headerHeight: '48px',
|
|
19
20
|
headerFontSize: '14px',
|
|
20
|
-
bgColor: '#fff'
|
|
21
|
+
bgColor: '#fff',
|
|
22
|
+
large: {
|
|
23
|
+
padding: '32px',
|
|
24
|
+
headerHeight: '48px'
|
|
25
|
+
},
|
|
26
|
+
small: {
|
|
27
|
+
padding: '16px',
|
|
28
|
+
headerHeight: '48px'
|
|
29
|
+
},
|
|
30
|
+
mini: {
|
|
31
|
+
padding: '8px',
|
|
32
|
+
headerHeight: '32px'
|
|
33
|
+
}
|
|
21
34
|
};
|
|
22
35
|
var card;
|
|
23
36
|
setDefault(function () {
|
|
@@ -26,6 +39,12 @@ setDefault(function () {
|
|
|
26
39
|
}).card;
|
|
27
40
|
makeStyles == null ? void 0 : makeStyles.clearCache();
|
|
28
41
|
});
|
|
42
|
+
var sizes = ['large', 'small', 'mini'];
|
|
29
43
|
export var makeStyles = cache(function makeStyles(k) {
|
|
30
|
-
return /*#__PURE__*/css("border-radius:", card.borderRadius, ";background:", card.bgColor, ";.", k, "-card-header{height:", card.headerHeight, ";
|
|
44
|
+
return /*#__PURE__*/css("border-radius:", card.borderRadius, ";background:", card.bgColor, ";.", k, "-card-header{height:", card.headerHeight, ";padding:0 ", card.padding, ";display:flex;align-items:center;}.", k, "-card-title{font-size:", card.headerFontSize, ";flex:1;}.", k, "-card-extra{display:flex;align-items:center;}.", k, "-card-body{padding:0 ", card.padding, " ", card.padding, ";}&.", k, "-shadow{box-shadow:", card.boxShadow, ";}&.", k, "-none{box-shadow:none;}&.", k, "-border{border:", card.border, ";.", k, "-card-header{border-bottom:", card.border, ";}.", k, "-card-body{padding-top:", card.padding, ";}}&.", k, "-no-header{.", k, "-card-body{padding-top:", card.padding, ";}}&.", k, "-card-grid{.", k, "-card-body{display:flex;padding:0;}&.", k, "-border{.", k, "-card-column:not(:last-of-type){border-right:", card.border, ";}}}.", k, "-card-column{display:flex;align-items:center;padding:", card.padding, ";&.", k, "-fluid{flex:1;}&.", k, "-center{justify-content:center;}}", _mapInstanceProperty(sizes).call(sizes, function (size) {
|
|
45
|
+
var _card$size = card[size],
|
|
46
|
+
padding = _card$size.padding,
|
|
47
|
+
headerHeight = _card$size.headerHeight;
|
|
48
|
+
return /*#__PURE__*/css("&.", k, "-", size, "{.", k, "-card-header{padding:0 ", padding, ";height:", headerHeight, ";}.", k, "-card-body{padding:0 ", padding, " ", padding, ";}&.", k, "-border,&.", k, "-no-header{.", k, "-card-body{padding-top:", padding, ";}}.", k, "-card-column{padding:", padding, ";}}");
|
|
49
|
+
}), ";");
|
|
31
50
|
});
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { useInstance, onBeforeUnmount } from 'intact-react';
|
|
2
2
|
export function useAutoplay(next) {
|
|
3
3
|
var instance = useInstance();
|
|
4
|
-
var timer;
|
|
4
|
+
var timer = null;
|
|
5
5
|
var ms;
|
|
6
6
|
instance.on('$receive:autoplay', function (v) {
|
|
7
7
|
if (v === true) {
|
|
@@ -24,7 +24,10 @@ export function useAutoplay(next) {
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
function stop() {
|
|
27
|
-
|
|
27
|
+
if (timer) {
|
|
28
|
+
window.clearTimeout(timer);
|
|
29
|
+
timer = null;
|
|
30
|
+
}
|
|
28
31
|
}
|
|
29
32
|
|
|
30
33
|
onBeforeUnmount(stop);
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { TypeDefs } from 'intact-react';
|
|
2
|
+
import { BaseSelect, BaseSelectProps, BaseSelectEvents, BaseSelectBlocks } from '../select/base';
|
|
3
|
+
export interface CascaderProps<V = any, Multipe extends boolean = boolean, Data extends BaseCascaderData = CascaderData<V>> extends BaseSelectProps<V[], Multipe> {
|
|
4
|
+
data?: Data[];
|
|
5
|
+
trigger?: 'click' | 'hover';
|
|
6
|
+
changeOnSelect?: boolean;
|
|
7
|
+
format?: (labels: string[]) => string;
|
|
8
|
+
loadData?: (data: Data) => any;
|
|
9
|
+
filter?: (keywords: string, data: Data) => boolean;
|
|
10
|
+
fields?: CascaderFields<Data>;
|
|
11
|
+
}
|
|
12
|
+
export declare type CascaderFields<Data> = {
|
|
13
|
+
value?: keyof Data;
|
|
14
|
+
label?: keyof Data;
|
|
15
|
+
children?: keyof Data;
|
|
16
|
+
disabled?: keyof Data;
|
|
17
|
+
};
|
|
18
|
+
export interface BaseCascaderData {
|
|
19
|
+
loaded?: boolean;
|
|
20
|
+
[key: string]: any;
|
|
21
|
+
}
|
|
22
|
+
export interface CascaderData<V> extends BaseCascaderData {
|
|
23
|
+
value: V;
|
|
24
|
+
label: string;
|
|
25
|
+
children?: CascaderData<V>[];
|
|
26
|
+
disabled?: boolean;
|
|
27
|
+
}
|
|
28
|
+
export interface CascaderEvents extends BaseSelectEvents {
|
|
29
|
+
}
|
|
30
|
+
export interface CascaderBlocks<V> extends BaseSelectBlocks<V> {
|
|
31
|
+
}
|
|
32
|
+
export declare class Cascader<V = any, Multipe extends boolean = false, Data extends BaseCascaderData = CascaderData<V>> extends BaseSelect<CascaderProps<V, Multipe, Data>, CascaderEvents, CascaderBlocks<V>> {
|
|
33
|
+
static template: string | import('intact-react').Template<any>;
|
|
34
|
+
static typeDefs: Required<TypeDefs<CascaderProps<any, boolean, CascaderData<any>>>>;
|
|
35
|
+
static defaults: () => Partial<CascaderProps<any, boolean, CascaderData<any>>>;
|
|
36
|
+
private fields;
|
|
37
|
+
private value;
|
|
38
|
+
private label;
|
|
39
|
+
private load;
|
|
40
|
+
private filterable;
|
|
41
|
+
private positionObj;
|
|
42
|
+
protected getPlaceholder(): string | number | boolean | import("misstime/dist/utils/types").VNode<any> | import('intact-react').Children[];
|
|
43
|
+
protected getLabel(): import('intact-react').Children;
|
|
44
|
+
protected hasValue(): any;
|
|
45
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { TypeDefs } from 'intact-react';
|
|
2
|
+
import dayjs from './dayjs';
|
|
3
|
+
import { State } from '../../hooks/useState';
|
|
4
|
+
import { Shortcut } from './shortcuts';
|
|
5
|
+
import { BasePicker, BasePickerProps, BasePickerEvents, BasePickerBlocks, Value } from './basepicker';
|
|
6
|
+
export * as shortcuts from './shortcuts';
|
|
7
|
+
export interface DatepickerProps<V extends Value = Value, M extends boolean = boolean, R extends boolean = boolean> extends BasePickerProps<V extends string ? V : V | string, M, R> {
|
|
8
|
+
type?: 'date' | 'datetime' | 'year' | 'month';
|
|
9
|
+
shortcuts?: Shortcut[];
|
|
10
|
+
}
|
|
11
|
+
export interface DatepickerEvents extends BasePickerEvents {
|
|
12
|
+
}
|
|
13
|
+
export interface DatepickerBlocks<V extends Value = Value, R extends boolean = boolean> extends BasePickerBlocks<V, R> {
|
|
14
|
+
}
|
|
15
|
+
export declare class Datepicker<V extends Value = Value, M extends boolean = false, R extends boolean = false> extends BasePicker<DatepickerProps<V, M, R>, DatepickerEvents, DatepickerBlocks<V, R>> {
|
|
16
|
+
static template: string | import('intact-react').Template<any>;
|
|
17
|
+
static typeDefs: Required<TypeDefs<DatepickerProps<Value, boolean, boolean>>>;
|
|
18
|
+
static defaults: () => Partial<DatepickerProps<Value, boolean, boolean>>;
|
|
19
|
+
formats: {
|
|
20
|
+
getValueFormat: () => string;
|
|
21
|
+
getShowFormat: () => string;
|
|
22
|
+
createDateByValueFormat: (value: Value) => dayjs.Dayjs;
|
|
23
|
+
createDateByShowFormat: (value: string) => dayjs.Dayjs;
|
|
24
|
+
getShowString: (value: dayjs.Dayjs) => string;
|
|
25
|
+
getValueString: (value: dayjs.Dayjs) => string;
|
|
26
|
+
};
|
|
27
|
+
disabled: {
|
|
28
|
+
isDisabled: (value: dayjs.Dayjs, type?: dayjs.OpUnitType) => boolean;
|
|
29
|
+
isDisabledTime: (value: dayjs.Dayjs, flag: import("./usePanel").PanelFlags) => boolean;
|
|
30
|
+
isDisabledConfirm: () => boolean;
|
|
31
|
+
maxDate: State<dayjs.Dayjs | null>;
|
|
32
|
+
minDate: State<dayjs.Dayjs | null>;
|
|
33
|
+
};
|
|
34
|
+
panel: {
|
|
35
|
+
startPanel: State<import("./usePanel").PanelTypes>;
|
|
36
|
+
endPanel: State<import("./usePanel").PanelTypes>;
|
|
37
|
+
changePanel: (type: import("./usePanel").PanelTypes, flag?: import("./usePanel").PanelFlags) => void;
|
|
38
|
+
getPanel: (flag: import("./usePanel").PanelFlags) => State<import("./usePanel").PanelTypes>;
|
|
39
|
+
reset: () => void;
|
|
40
|
+
startRef: import('intact-react').RefObject<import("./calendar").DatepickerCalendar>;
|
|
41
|
+
endRef: import('intact-react').RefObject<import("./calendar").DatepickerCalendar>;
|
|
42
|
+
};
|
|
43
|
+
focusDate: {
|
|
44
|
+
focusDate: State<dayjs.Dayjs | null>;
|
|
45
|
+
reset: () => void;
|
|
46
|
+
};
|
|
47
|
+
value: {
|
|
48
|
+
format: () => string | string[];
|
|
49
|
+
onConfirm: () => void;
|
|
50
|
+
onChangeTime: (date: dayjs.Dayjs, flag: import("./usePanel").PanelFlags) => void;
|
|
51
|
+
getTimeValue: (flag: import("./usePanel").PanelFlags) => dayjs.Dayjs | null | undefined;
|
|
52
|
+
convertToDayjs: (v: Value | [Value, Value] | Value[] | [Value, Value][] | null | undefined) => import("./basepicker").DayjsValue;
|
|
53
|
+
getDayjsValue: () => import("./basepicker").DayjsValue;
|
|
54
|
+
value: State<import("./basepicker").StateValue>;
|
|
55
|
+
setValue: (v: import("./basepicker").StateValueItem, fromInput: boolean) => void;
|
|
56
|
+
onChangeDate: (v: dayjs.Dayjs, flag: import("./usePanel").PanelFlags) => void;
|
|
57
|
+
};
|
|
58
|
+
init(): void;
|
|
59
|
+
protected getPlaceholder(): string | number | boolean | import("misstime/dist/utils/types").VNode<any> | import('intact-react').Children[];
|
|
60
|
+
protected getLabel(): string | string[];
|
|
61
|
+
protected clear(e: MouseEvent): void;
|
|
62
|
+
private setByShortcut;
|
|
63
|
+
}
|
|
@@ -10,7 +10,7 @@ export * from './shapes/rectangle';
|
|
|
10
10
|
export * from './shapes/square';
|
|
11
11
|
export * from './shapes/text';
|
|
12
12
|
export * from './shapes/line';
|
|
13
|
-
declare const DDiamond: import("
|
|
13
|
+
declare const DDiamond: import("misstime").ComponentConstructor<import("./shapes/shape").DShape<import("./shapes/shape").DShapeProps>>, DTriangle: import("misstime").ComponentConstructor<import("./shapes/shape").DShape<import("./shapes/shape").DShapeProps>>, DCylinder: import("misstime").ComponentConstructor<import("./shapes/shape").DShape<import("./shapes/shape").DShapeProps>>, DCloud: import("misstime").ComponentConstructor<import("./shapes/shape").DShape<import("./shapes/shape").DShapeProps>>;
|
|
14
14
|
export { DDiamond, DTriangle, DCylinder, DCloud };
|
|
15
15
|
export * from './layouts/layout';
|
|
16
16
|
export * from './layouts/circle';
|
|
@@ -3,7 +3,7 @@ import _inheritsLoose from "@babel/runtime-corejs3/helpers/inheritsLoose";
|
|
|
3
3
|
import _concatInstanceProperty from "@babel/runtime-corejs3/core-js/instance/concat";
|
|
4
4
|
import _filterInstanceProperty from "@babel/runtime-corejs3/core-js/instance/filter";
|
|
5
5
|
import { __decorate } from "tslib";
|
|
6
|
-
import { Component, createVNode as h, provide, inject, findDomFromVNode, nextTick } from 'intact-react';
|
|
6
|
+
import { Component, createVNode as h, directClone, provide, inject, findDomFromVNode, nextTick } from 'intact-react';
|
|
7
7
|
import { bind, getRestProps } from '../utils';
|
|
8
8
|
import { noop } from 'intact-shared';
|
|
9
9
|
import { cx } from '@emotion/css';
|
|
@@ -227,6 +227,12 @@ Dropdown.template = function () {
|
|
|
227
227
|
var _children = children,
|
|
228
228
|
trigger = _children[0],
|
|
229
229
|
menu = _children[1];
|
|
230
|
+
/**
|
|
231
|
+
* In vue-legacy, if the menu is TooltipContent, the menu will be InUsed when update,
|
|
232
|
+
* so we clone it here, #954
|
|
233
|
+
*/
|
|
234
|
+
|
|
235
|
+
menu = directClone(menu);
|
|
230
236
|
var props = this.initEventCallbacks();
|
|
231
237
|
|
|
232
238
|
var _this$get = this.get(),
|
|
@@ -39,7 +39,7 @@ export var sizes = ['large', 'small', 'mini'];
|
|
|
39
39
|
export var makeStyles = cache(function makeStyles(k, color) {
|
|
40
40
|
// create the global icon styles
|
|
41
41
|
makeIconStyles(k);
|
|
42
|
-
return /*#__PURE__*/css("color:", icon.color, ";font-size:", icon.fontSize.default, ";line-height:1;", _mapInstanceProperty(sizes).call(sizes, function (size) {
|
|
42
|
+
return /*#__PURE__*/css("color:", icon.color, ";font-size:", icon.fontSize.default, ";line-height:1;font-weight:normal;", _mapInstanceProperty(sizes).call(sizes, function (size) {
|
|
43
43
|
var fontSize = icon.fontSize[size];
|
|
44
44
|
return /*#__PURE__*/css("&.", k, "-", size, "{font-size:", fontSize, ";}");
|
|
45
45
|
}), " ", _mapInstanceProperty(colors).call(colors, function (color) {
|
|
@@ -135,7 +135,7 @@ setDefault(function () {
|
|
|
135
135
|
export var makeStyles = cache(function makeStyles(k) {
|
|
136
136
|
var _context;
|
|
137
137
|
|
|
138
|
-
return /*#__PURE__*/css("display:inline-block;width:", input.width, ";color:", input.color, ";vertical-align:middle;.", k, "-input-wrapper{display:inline-flex;align-items:center;width:100%;position:relative;border:", input.border, ";background-color:", input.bgColor, ";transition:border ", input.transition, ",background ", input.transition, ",box-shadow ", input.transition, ";border-radius:", input.borderRadius, ";&:hover{border:", input.hoverBorder, ";z-index:1;}}&.", k, "-focus .", k, "-input-wrapper{border:", input.focusBorder, ";z-index:1;}.", k, "-input-inner{flex:1;outline:none;color:inherit;font-size:inherit;border:none;background:transparent;padding:0;width:0
|
|
138
|
+
return /*#__PURE__*/css("display:inline-block;width:", input.width, ";color:", input.color, ";vertical-align:middle;.", k, "-input-wrapper{display:inline-flex;align-items:center;width:100%;position:relative;border:", input.border, ";background-color:", input.bgColor, ";transition:border ", input.transition, ",background ", input.transition, ",box-shadow ", input.transition, ";border-radius:", input.borderRadius, ";&:hover{border:", input.hoverBorder, ";z-index:1;}}&.", k, "-focus .", k, "-input-wrapper{border:", input.focusBorder, ";z-index:1;}.", k, "-input-inner{flex:1;outline:none;color:inherit;font-size:inherit;border:none;background:transparent;padding:0;width:0;max-width:100%;&::placeholder{color:", input.placeholderColor, ";}}&.", k, "-fluid{width:100%;}.", k, "-input-prefix,.", k, "-input-suffix{display:flex;align-items:center;gap:", input.clearIconGap, ";color:", theme.color.lightBlack, ";position:relative;}.", k, "-input-prefix{margin-right:", input.clearIconGap, ";}.", k, "-input-suffix{margin-left:", input.clearIconGap, ";}.", k, "-input-clear{opacity:0;transition:opacity ", input.transition, ";pointer-events:none;color:", input.clearIconColor, ";}&:hover .", k, "-input-clear.", k, "-input-show{opacity:1;pointer-events:all;}.", k, "-input-show-password{color:", input.clearIconColor, ";}&.", k, "-stack-clear{.", k, "-input-clear{position:absolute;z-index:1;right:0;&.", k, "-input-show+*{transition:opacity ", input.transition, ";}}&:hover{.", k, "-input-clear.", k, "-input-show+*{opacity:0;}}}&.", k, "-group{display:inline-flex;.", k, "-input-wrapper{border-radius:0;flex:1;}.", k, "-input-wrapper:first-child{border-radius:", input.borderRadius, " 0 0 ", input.borderRadius, ";}.", k, "-input-wrapper:last-child{border-radius:0 ", input.borderRadius, " ", input.borderRadius, " 0;}}.", k, "-input-prepend,.", k, "-input-append{display:inline-flex;align-items:center;background-color:", input.groupBgColor, ";border:", input.border, ";white-space:nowrap;.", k, "-btn{margin:-1px;&.", k, "-none:hover{background:transparent;}}.", k, "-select{margin:-1px;text-align:left;}}.", k, "-input-prepend{&,.", k, "-btn,.", k, "-select{z-index:1;border-radius:", input.borderRadius, " 0 0 ", input.borderRadius, ";}}.", k, "-input-append{&,.", k, "-btn,.", k, "-select{z-index:1;border-radius:0 ", input.borderRadius, " ", input.borderRadius, " 0;}}.", k, "-input-padding{padding:0 ", input.groupPaddingGap, ";}.", k, "-input-prepend{border-right:none;}.", k, "-input-append{border-left:none;}&.", k, "-flat{color:", _flatInstanceProperty(input).color, ";.", k, "-input-wrapper{border:none;background:", _flatInstanceProperty(input).bgColor, ";}}&.", k, "-disabled{color:", input.disabledColor, ";cursor:not-allowed;.", k, "-input-wrapper{border-color:", input.disabledBorderColor, ";background:", input.disabledBgColor, ";}.", k, "-input-inner{cursor:not-allowed;}}", _mapInstanceProperty(sizes).call(sizes, function (size) {
|
|
139
139
|
var styles = input[size];
|
|
140
140
|
var sizeClassName = /*#__PURE__*/css("font-size:", styles.fontSize, ";.", k, "-input-wrapper{height:", styles.height, ";padding:0 ", styles.paddingGap, ";}");
|
|
141
141
|
if (size === 'default') return sizeClassName;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { Children, TypeDefs } from 'intact-react';
|
|
2
|
+
import { Option } from './option';
|
|
3
|
+
import { BaseSelect, BaseSelectProps, BaseSelectEvents, BaseSelectBlocks } from './base';
|
|
4
|
+
export interface SelectProps<T = string, Multipe extends boolean = boolean> extends BaseSelectProps<T, Multipe> {
|
|
5
|
+
filter?: (keywords: string, props: any) => boolean;
|
|
6
|
+
searchable?: boolean;
|
|
7
|
+
creatable?: boolean;
|
|
8
|
+
labelMap?: Map<any, Children>;
|
|
9
|
+
card?: boolean;
|
|
10
|
+
autoDisableArrow?: boolean;
|
|
11
|
+
}
|
|
12
|
+
export interface SelectEvents extends BaseSelectEvents {
|
|
13
|
+
}
|
|
14
|
+
export interface SelectBlocks<T> extends BaseSelectBlocks<T> {
|
|
15
|
+
menu: null;
|
|
16
|
+
}
|
|
17
|
+
export declare class Select<T = string, Multipe extends boolean = false> extends BaseSelect<SelectProps<T, Multipe>, SelectEvents, SelectBlocks<T>> {
|
|
18
|
+
static template: string | import('intact-react').Template<any>;
|
|
19
|
+
static typeDefs: Required<TypeDefs<SelectProps<string, boolean>>>;
|
|
20
|
+
static defaults: () => Partial<SelectProps<string, boolean>>;
|
|
21
|
+
filterable: {
|
|
22
|
+
getCreatedVNode: (children: (string | number | import('intact-react').VNode<import('intact-react').VNodeTag>)[]) => import('intact-react').VNode<typeof Option> | undefined;
|
|
23
|
+
filter: (children: Children) => Children;
|
|
24
|
+
};
|
|
25
|
+
label: {
|
|
26
|
+
getLabel: () => Children;
|
|
27
|
+
activeIndices: import('intact-react').NonNullableRefObject<number[]>;
|
|
28
|
+
};
|
|
29
|
+
init(): void;
|
|
30
|
+
protected getPlaceholder(): string | number | boolean | import("misstime/dist/utils/types").VNode<any> | Children[];
|
|
31
|
+
protected getLabel(): Children;
|
|
32
|
+
private getAllShowedValues;
|
|
33
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const context: {
|
|
2
|
-
Provider: import("
|
|
3
|
-
Consumer: import("
|
|
4
|
-
useContext: () => import("
|
|
2
|
+
Provider: import("misstime").ComponentConstructor<import('intact-react').Component<import("../context").ProviderProps<any>, {}, {}, {}>>;
|
|
3
|
+
Consumer: import("misstime").ComponentConstructor<import('intact-react').Component<import("../context").ConsumerProps<any>, {}, {}, {}>>;
|
|
4
|
+
useContext: () => import("misstime").RefObject<any>;
|
|
5
5
|
};
|
|
@@ -78,7 +78,7 @@ function pushTextContext(rows, dom, content) {
|
|
|
78
78
|
export function download(content, filename) {
|
|
79
79
|
if (navigator.msSaveBlob) {
|
|
80
80
|
// IE10+
|
|
81
|
-
var blob = new Blob([content], {
|
|
81
|
+
var blob = new Blob(["\uFEFF" + content], {
|
|
82
82
|
type: 'text/csv;charset=utf-8'
|
|
83
83
|
});
|
|
84
84
|
navigator.msSaveBlob(blob, filename);
|
|
@@ -86,7 +86,10 @@ export function download(content, filename) {
|
|
|
86
86
|
var link = document.createElement('a');
|
|
87
87
|
|
|
88
88
|
if ('download' in link) {
|
|
89
|
-
|
|
89
|
+
/**
|
|
90
|
+
* should add \uFEFF, otherwise it will be error codes in MSExcel
|
|
91
|
+
*/
|
|
92
|
+
var _blob = new Blob(["\uFEFF" + content], {
|
|
90
93
|
type: 'text/csv;charset=utf-8'
|
|
91
94
|
});
|
|
92
95
|
|
|
@@ -18,7 +18,7 @@ import { useExpandable } from './useExpandable';
|
|
|
18
18
|
import { useSelected } from './useSelected';
|
|
19
19
|
import { useTree } from './useTree';
|
|
20
20
|
import { Tooltip } from '../tooltip/tooltip';
|
|
21
|
-
import {
|
|
21
|
+
import { useResetRowStatus } from './useResetRowStatus';
|
|
22
22
|
import { exportTable as _exportTable } from './exportTable';
|
|
23
23
|
import { useResizable } from './useResizable';
|
|
24
24
|
import { useDraggable } from './useDraggable';
|
|
@@ -117,7 +117,7 @@ export var Table = /*#__PURE__*/function (_Component) {
|
|
|
117
117
|
_this.sortable = useSortable();
|
|
118
118
|
_this.expandable = useExpandable();
|
|
119
119
|
_this.selected = useSelected();
|
|
120
|
-
_this.resetRowStatus =
|
|
120
|
+
_this.resetRowStatus = useResetRowStatus(_this.disableRow.getAllKeys);
|
|
121
121
|
_this.draggable = useDraggable(_this.pagination.data);
|
|
122
122
|
_this.stickyScrollbar = useStickyScrollbar(_this.stickyHeader.elementRef, _this.scroll, _this.width.tableRef, _this.fixedColumns.setScrollPosition);
|
|
123
123
|
_this.config = useConfigContext();
|
|
@@ -89,7 +89,7 @@ export function useFixedColumns(getColumns, _ref, widthMap) {
|
|
|
89
89
|
function updateScrollPositionOnResize() {
|
|
90
90
|
var scrollDom = scrollRef.value;
|
|
91
91
|
|
|
92
|
-
if (scrollDom.scrollWidth - scrollDom.offsetWidth <= 0) {
|
|
92
|
+
if (!hasFixed.value || scrollDom.scrollWidth - scrollDom.offsetWidth <= 0) {
|
|
93
93
|
scrollPosition.set(null);
|
|
94
94
|
} else {
|
|
95
95
|
setScrollPosition(scrollRef.value.scrollLeft);
|
|
@@ -2,7 +2,7 @@ import _includesInstanceProperty from "@babel/runtime-corejs3/core-js/instance/i
|
|
|
2
2
|
import _sliceInstanceProperty from "@babel/runtime-corejs3/core-js/instance/slice";
|
|
3
3
|
import { useInstance, onBeforeUnmount, onUpdated } from 'intact-react';
|
|
4
4
|
import { addOrRemove } from './useChecked';
|
|
5
|
-
export function
|
|
5
|
+
export function useResetRowStatus(getAllKeys) {
|
|
6
6
|
var instance = useInstance();
|
|
7
7
|
var allUnmountedRows = [];
|
|
8
8
|
var willUnmounted = false;
|
package/components/tabs/tab.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Component } from 'intact-react';
|
|
1
|
+
import { Component, TypeDefs } from 'intact-react';
|
|
2
2
|
export interface TabProps {
|
|
3
3
|
value?: any;
|
|
4
4
|
disabled?: boolean;
|
|
@@ -10,6 +10,7 @@ export interface TabEvents {
|
|
|
10
10
|
}
|
|
11
11
|
export declare class Tab extends Component<TabProps, TabEvents> {
|
|
12
12
|
static template: string | import('intact-react').Template<any>;
|
|
13
|
+
static typeDefs: Required<TypeDefs<TabProps>>;
|
|
13
14
|
private tabs;
|
|
14
15
|
private config;
|
|
15
16
|
private onClick;
|
package/components/tabs/tab.js
CHANGED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { TypeDefs } from 'intact-react';
|
|
2
|
+
import { BasePicker } from '../datepicker/basepicker';
|
|
3
|
+
import dayjs from '../datepicker/dayjs';
|
|
4
|
+
import { State } from '../../hooks/useState';
|
|
5
|
+
import { PanelTypes } from '../datepicker/usePanel';
|
|
6
|
+
import { TimepickerProps, TimepickerEvents, TimepickerBlocks } from './constants';
|
|
7
|
+
export declare class PanelPicker<Multipe extends boolean = false, Range extends boolean = false> extends BasePicker<TimepickerProps<Multipe, Range>, TimepickerEvents, TimepickerBlocks> {
|
|
8
|
+
static template: string | import('intact-react').Template<any>;
|
|
9
|
+
static typeDefs: Required<TypeDefs<TimepickerProps<boolean, boolean>>>;
|
|
10
|
+
formats: {
|
|
11
|
+
getValueFormat: () => string;
|
|
12
|
+
getShowFormat: () => string;
|
|
13
|
+
createDateByValueFormat: (value: import("../datepicker/basepicker").Value) => dayjs.Dayjs;
|
|
14
|
+
createDateByShowFormat: (value: import("../datepicker/basepicker").Value) => dayjs.Dayjs;
|
|
15
|
+
getShowString: (value: dayjs.Dayjs) => string;
|
|
16
|
+
getValueString: (value: dayjs.Dayjs) => string;
|
|
17
|
+
};
|
|
18
|
+
disabled: {
|
|
19
|
+
isDisabled: (value: dayjs.Dayjs, type?: dayjs.OpUnitType) => boolean;
|
|
20
|
+
isDisabledConfirm: () => boolean;
|
|
21
|
+
maxDate: State<dayjs.Dayjs | null>;
|
|
22
|
+
minDate: State<dayjs.Dayjs | null>;
|
|
23
|
+
isDisabledTime: (value: dayjs.Dayjs, flag: import("../datepicker/usePanel").PanelFlags) => boolean;
|
|
24
|
+
isDisabledTimeByStep: (value: string, flag: import("../datepicker/usePanel").PanelFlags) => boolean;
|
|
25
|
+
};
|
|
26
|
+
panel: {
|
|
27
|
+
startPanel: State<PanelTypes>;
|
|
28
|
+
endPanel: State<PanelTypes>;
|
|
29
|
+
changePanel: (type: PanelTypes, flag?: import("../datepicker/usePanel").PanelFlags) => void;
|
|
30
|
+
getPanel: (flag: import("../datepicker/usePanel").PanelFlags) => State<PanelTypes>;
|
|
31
|
+
reset: () => void;
|
|
32
|
+
startRef: import('intact-react').RefObject<import("../datepicker/calendar").DatepickerCalendar>;
|
|
33
|
+
endRef: import('intact-react').RefObject<import("../datepicker/calendar").DatepickerCalendar>;
|
|
34
|
+
};
|
|
35
|
+
value: {
|
|
36
|
+
format: () => string | string[];
|
|
37
|
+
onConfirm: () => void;
|
|
38
|
+
getTimeValue: (flag: import("../datepicker/usePanel").PanelFlags) => dayjs.Dayjs | null | undefined;
|
|
39
|
+
convertToDayjs: (v: import("../datepicker/basepicker").Value | [import("../datepicker/basepicker").Value, import("../datepicker/basepicker").Value] | import("../datepicker/basepicker").Value[] | [import("../datepicker/basepicker").Value, import("../datepicker/basepicker").Value][] | null | undefined) => import("../datepicker/basepicker").DayjsValue;
|
|
40
|
+
value: State<import("../datepicker/basepicker").StateValue>;
|
|
41
|
+
setValue: (v: import("../datepicker/basepicker").StateValueItem, fromInput: boolean) => void;
|
|
42
|
+
getDayjsValue: () => import("../datepicker/basepicker").DayjsValue;
|
|
43
|
+
onChangeTime: (date: dayjs.Dayjs, flag: import("../datepicker/usePanel").PanelFlags) => void;
|
|
44
|
+
onChangeTimeByStep: (v: string, flag: import("../datepicker/usePanel").PanelFlags) => void;
|
|
45
|
+
};
|
|
46
|
+
step: {
|
|
47
|
+
options: State<{
|
|
48
|
+
value: string;
|
|
49
|
+
label: string;
|
|
50
|
+
}[] | null>;
|
|
51
|
+
};
|
|
52
|
+
protected getPlaceholder(): string | number | boolean | import("misstime/dist/utils/types").VNode<any> | import('intact-react').Children[];
|
|
53
|
+
protected getLabel(): string | string[];
|
|
54
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { TypeDefs, Children, Key } from 'intact-react';
|
|
2
|
+
import { BaseSelect, BaseSelectProps, BaseSelectEvents, BaseSelectBlocks } from '../select/base';
|
|
3
|
+
import { TreeProps } from '../tree';
|
|
4
|
+
import type { DataItem } from '../tree/useNodes';
|
|
5
|
+
export interface TreeSelectProps<K extends Key = Key, Multipe extends boolean = boolean, Checkbox extends boolean = boolean> extends BaseSelectProps<K, Multipe, Checkbox extends true ? K[] : K | null> {
|
|
6
|
+
data?: TreeProps<K>['data'];
|
|
7
|
+
uncorrelated?: boolean;
|
|
8
|
+
load?: TreeProps<K>['load'];
|
|
9
|
+
showLine?: boolean;
|
|
10
|
+
defaultExpandAll?: boolean;
|
|
11
|
+
checkbox?: Checkbox;
|
|
12
|
+
filter?: (keywords: string, data: DataItem<K>) => boolean;
|
|
13
|
+
}
|
|
14
|
+
export interface TreeSelectEvents extends BaseSelectEvents {
|
|
15
|
+
}
|
|
16
|
+
export interface TreeSelectBlocks<K> extends BaseSelectBlocks<K> {
|
|
17
|
+
}
|
|
18
|
+
export declare class TreeSelect<K extends Key = Key, Checkbox extends boolean = false, Multipe extends boolean = Checkbox extends true ? true : false> extends BaseSelect<TreeSelectProps<K, Multipe, Checkbox>, TreeSelectEvents, TreeSelectBlocks<K>> {
|
|
19
|
+
static template: string | import('intact-react').Template<any>;
|
|
20
|
+
static typeDefs: Required<TypeDefs<TreeSelectProps<Key, boolean, boolean>>>;
|
|
21
|
+
static defaults: () => Partial<TreeSelectProps<Key, boolean, boolean>>;
|
|
22
|
+
private value;
|
|
23
|
+
init(): void;
|
|
24
|
+
expandAll(): void;
|
|
25
|
+
protected getPlaceholder(): string | number | boolean | import("misstime/dist/utils/types").VNode<any> | Children[];
|
|
26
|
+
protected getLabel(): Children;
|
|
27
|
+
private filter;
|
|
28
|
+
}
|
package/components/wave/index.js
CHANGED
|
@@ -35,7 +35,7 @@ export var Wave = /*#__PURE__*/function (_Component) {
|
|
|
35
35
|
_this = _Component.call.apply(_Component, _concatInstanceProperty(_context = [this]).call(_context, args)) || this;
|
|
36
36
|
_this.instance = null;
|
|
37
37
|
_this.className = void 0;
|
|
38
|
-
_this.timer =
|
|
38
|
+
_this.timer = null;
|
|
39
39
|
_this.config = useConfigContext();
|
|
40
40
|
return _this;
|
|
41
41
|
}
|
|
@@ -95,7 +95,11 @@ export var Wave = /*#__PURE__*/function (_Component) {
|
|
|
95
95
|
if (!node) return;
|
|
96
96
|
node.classList.remove(this.className);
|
|
97
97
|
node.removeEventListener('animationend', this.resetAnimation);
|
|
98
|
-
|
|
98
|
+
|
|
99
|
+
if (this.timer) {
|
|
100
|
+
clearTimeout(this.timer);
|
|
101
|
+
this.timer = null;
|
|
102
|
+
}
|
|
99
103
|
};
|
|
100
104
|
|
|
101
105
|
return Wave;
|
package/hooks/useDelayClose.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { onMounted, useInstance, onUnmounted } from 'intact-react';
|
|
2
2
|
export function useDelayClose(close, duration) {
|
|
3
3
|
var instance = useInstance();
|
|
4
|
-
var timer;
|
|
4
|
+
var timer = null;
|
|
5
5
|
|
|
6
6
|
function delayClose() {
|
|
7
7
|
if (duration) {
|
|
@@ -11,7 +11,7 @@ export function useDelayClose(close, duration) {
|
|
|
11
11
|
|
|
12
12
|
function onMouseEnter(e) {
|
|
13
13
|
instance.trigger('mouseenter', e);
|
|
14
|
-
|
|
14
|
+
clear();
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
function onMouseLeave(e) {
|
|
@@ -20,14 +20,19 @@ export function useDelayClose(close, duration) {
|
|
|
20
20
|
// so we must detect the $unmounted status here
|
|
21
21
|
|
|
22
22
|
if (instance.$unmounted) return;
|
|
23
|
-
|
|
23
|
+
clear();
|
|
24
24
|
delayClose();
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
+
function clear() {
|
|
28
|
+
if (timer) {
|
|
29
|
+
clearTimeout(timer);
|
|
30
|
+
timer = null;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
27
34
|
onMounted(delayClose);
|
|
28
|
-
onUnmounted(
|
|
29
|
-
clearTimeout(timer);
|
|
30
|
-
});
|
|
35
|
+
onUnmounted(clear);
|
|
31
36
|
return {
|
|
32
37
|
onMouseEnter: onMouseEnter,
|
|
33
38
|
onMouseLeave: onMouseLeave
|
|
@@ -9,7 +9,7 @@ export function useMouseOutsidable(elementRef, autoAdd) {
|
|
|
9
9
|
autoAdd = true;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
var timer;
|
|
12
|
+
var timer = null;
|
|
13
13
|
|
|
14
14
|
function onMouseDown() {
|
|
15
15
|
document.addEventListener('click', onDocumentClick, true);
|
|
@@ -19,6 +19,7 @@ export function useMouseOutsidable(elementRef, autoAdd) {
|
|
|
19
19
|
function onMouseUp() {
|
|
20
20
|
timer = window.setTimeout(function () {
|
|
21
21
|
document.removeEventListener('click', onDocumentClick, true);
|
|
22
|
+
timer = null;
|
|
22
23
|
});
|
|
23
24
|
document.removeEventListener('mouseup', onMouseUp);
|
|
24
25
|
}
|
|
@@ -36,7 +37,10 @@ export function useMouseOutsidable(elementRef, autoAdd) {
|
|
|
36
37
|
}
|
|
37
38
|
|
|
38
39
|
onBeforeUnmount(function () {
|
|
39
|
-
|
|
40
|
+
if (timer) {
|
|
41
|
+
clearTimeout(timer);
|
|
42
|
+
timer = null;
|
|
43
|
+
}
|
|
40
44
|
|
|
41
45
|
if (autoAdd) {
|
|
42
46
|
elementRef.value.removeEventListener('mousedown', onMouseDown);
|
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* @king-design v3.1.4-beta.
|
|
2
|
+
* @king-design v3.1.4-beta.2
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Kingsoft Cloud
|
|
5
5
|
* Released under the MIT License
|
|
@@ -60,7 +60,7 @@ export * from './components/tree';
|
|
|
60
60
|
export * from './components/treeSelect';
|
|
61
61
|
export * from './components/upload';
|
|
62
62
|
export * from './components/wave';
|
|
63
|
-
export declare const version = "3.1.4-beta.
|
|
63
|
+
export declare const version = "3.1.4-beta.2";
|
|
64
64
|
|
|
65
65
|
|
|
66
66
|
export {normalize} from 'intact-react';
|
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* @king-design v3.1.4-beta.
|
|
2
|
+
* @king-design v3.1.4-beta.2
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Kingsoft Cloud
|
|
5
5
|
* Released under the MIT License
|
|
@@ -62,7 +62,7 @@ export * from './components/tree';
|
|
|
62
62
|
export * from './components/treeSelect';
|
|
63
63
|
export * from './components/upload';
|
|
64
64
|
export * from './components/wave';
|
|
65
|
-
export var version = '3.1.4-beta.
|
|
65
|
+
export var version = '3.1.4-beta.2';
|
|
66
66
|
/* generate end */
|
|
67
67
|
|
|
68
68
|
export {normalize} from 'intact-react';
|
package/package.json
CHANGED
package/yarn-error.log
DELETED
|
@@ -1,528 +0,0 @@
|
|
|
1
|
-
Arguments:
|
|
2
|
-
/home/javey/.nvm/versions/node/v14.21.3/bin/node /usr/share/yarn/bin/yarn.js --registry=https://registry.npmjs.org
|
|
3
|
-
|
|
4
|
-
PATH:
|
|
5
|
-
/home/javey/.nvm/versions/node/v14.21.3/lib/node_modules/npm/node_modules/npm-lifecycle/node-gyp-bin:/home/javey/Workspaces/kpc/node_modules/.bin:/home/javey/.nvm/versions/node/v14.21.3/bin:/home/javey/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/javey/.yarn/bin:/home/javey/.local/bin:/home/javey/.yarn/bin:/home/javey/.local/bin
|
|
6
|
-
|
|
7
|
-
Yarn version:
|
|
8
|
-
1.22.19
|
|
9
|
-
|
|
10
|
-
Node version:
|
|
11
|
-
14.21.3
|
|
12
|
-
|
|
13
|
-
Platform:
|
|
14
|
-
linux x64
|
|
15
|
-
|
|
16
|
-
Trace:
|
|
17
|
-
Error: https://registry.npmjs.org/intact-react: ETIMEDOUT
|
|
18
|
-
at Timeout._onTimeout (/usr/share/yarn/lib/cli.js:141550:19)
|
|
19
|
-
at listOnTimeout (internal/timers.js:557:17)
|
|
20
|
-
at processTimers (internal/timers.js:500:7)
|
|
21
|
-
|
|
22
|
-
npm manifest:
|
|
23
|
-
{
|
|
24
|
-
"name": "@king-design/react",
|
|
25
|
-
"version": "3.1.1",
|
|
26
|
-
"description": "King-Design UI components for React.",
|
|
27
|
-
"keywords": [
|
|
28
|
-
"component",
|
|
29
|
-
"intact",
|
|
30
|
-
"ui",
|
|
31
|
-
"components",
|
|
32
|
-
"library",
|
|
33
|
-
"react",
|
|
34
|
-
"king-design",
|
|
35
|
-
"kpc"
|
|
36
|
-
],
|
|
37
|
-
"author": "Javey <jiawei23716@sina.com>",
|
|
38
|
-
"homepage": "https://design.ksyun.com",
|
|
39
|
-
"license": "MIT",
|
|
40
|
-
"main": "index.js",
|
|
41
|
-
"repository": {
|
|
42
|
-
"type": "git",
|
|
43
|
-
"url": "git+https://github.com/ksc-fe/kpc.git"
|
|
44
|
-
},
|
|
45
|
-
"publishConfig": {
|
|
46
|
-
"access": "public",
|
|
47
|
-
"registry": "https://registry.npmjs.org/"
|
|
48
|
-
},
|
|
49
|
-
"scripts": {
|
|
50
|
-
"test": "../../node_modules/.bin/karma start ./__tests__/karma.conf.js",
|
|
51
|
-
"snapshots": "../../node_modules/.bin/cross-env UPDATE=1 npm run test"
|
|
52
|
-
},
|
|
53
|
-
"bugs": {
|
|
54
|
-
"url": "https://github.com/ksc-fe/kpc/issues"
|
|
55
|
-
},
|
|
56
|
-
"dependencies": {
|
|
57
|
-
"@babel/runtime-corejs3": "^7.16.0",
|
|
58
|
-
"@emotion/css": "^11.5.0",
|
|
59
|
-
"dayjs": "^1.10.7",
|
|
60
|
-
"enquire.js": "^2.1.6",
|
|
61
|
-
"intact-react": "3.0.23",
|
|
62
|
-
"monaco-editor": "^0.26.1",
|
|
63
|
-
"mxgraphx": "^4.0.7",
|
|
64
|
-
"resize-observer-polyfill": "^1.5.1",
|
|
65
|
-
"tinycolor2": "^1.4.2",
|
|
66
|
-
"tslib": "^2.3.1"
|
|
67
|
-
},
|
|
68
|
-
"sideEffects": [
|
|
69
|
-
"**/*/styles/global.*",
|
|
70
|
-
"**/*/styles/fonts/*"
|
|
71
|
-
]
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
yarn manifest:
|
|
75
|
-
No manifest
|
|
76
|
-
|
|
77
|
-
Lockfile:
|
|
78
|
-
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
|
79
|
-
# yarn lockfile v1
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
"@babel/code-frame@^7.0.0":
|
|
83
|
-
version "7.22.10"
|
|
84
|
-
resolved "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.22.10.tgz#1c20e612b768fefa75f6e90d6ecb86329247f0a3"
|
|
85
|
-
integrity sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==
|
|
86
|
-
dependencies:
|
|
87
|
-
"@babel/highlight" "^7.22.10"
|
|
88
|
-
chalk "^2.4.2"
|
|
89
|
-
|
|
90
|
-
"@babel/helper-module-imports@^7.16.7":
|
|
91
|
-
version "7.22.5"
|
|
92
|
-
resolved "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c"
|
|
93
|
-
integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==
|
|
94
|
-
dependencies:
|
|
95
|
-
"@babel/types" "^7.22.5"
|
|
96
|
-
|
|
97
|
-
"@babel/helper-string-parser@^7.22.5":
|
|
98
|
-
version "7.22.5"
|
|
99
|
-
resolved "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f"
|
|
100
|
-
integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==
|
|
101
|
-
|
|
102
|
-
"@babel/helper-validator-identifier@^7.22.5":
|
|
103
|
-
version "7.22.5"
|
|
104
|
-
resolved "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193"
|
|
105
|
-
integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==
|
|
106
|
-
|
|
107
|
-
"@babel/highlight@^7.22.10":
|
|
108
|
-
version "7.22.10"
|
|
109
|
-
resolved "https://registry.npmmirror.com/@babel/highlight/-/highlight-7.22.10.tgz#02a3f6d8c1cb4521b2fd0ab0da8f4739936137d7"
|
|
110
|
-
integrity sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==
|
|
111
|
-
dependencies:
|
|
112
|
-
"@babel/helper-validator-identifier" "^7.22.5"
|
|
113
|
-
chalk "^2.4.2"
|
|
114
|
-
js-tokens "^4.0.0"
|
|
115
|
-
|
|
116
|
-
"@babel/runtime-corejs3@^7.16.0":
|
|
117
|
-
version "7.22.10"
|
|
118
|
-
resolved "https://registry.npmmirror.com/@babel/runtime-corejs3/-/runtime-corejs3-7.22.10.tgz#5ecc3d32faa70009f084cc2e087d79e5f5cdcca9"
|
|
119
|
-
integrity sha512-IcixfV2Jl3UrqZX4c81+7lVg5++2ufYJyAFW3Aux/ZTvY6LVYYhJ9rMgnbX0zGVq6eqfVpnoatTjZdVki/GmWA==
|
|
120
|
-
dependencies:
|
|
121
|
-
core-js-pure "^3.30.2"
|
|
122
|
-
regenerator-runtime "^0.14.0"
|
|
123
|
-
|
|
124
|
-
"@babel/runtime@^7.12.5", "@babel/runtime@^7.18.3":
|
|
125
|
-
version "7.22.10"
|
|
126
|
-
resolved "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.22.10.tgz#ae3e9631fd947cb7e3610d3e9d8fef5f76696682"
|
|
127
|
-
integrity sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ==
|
|
128
|
-
dependencies:
|
|
129
|
-
regenerator-runtime "^0.14.0"
|
|
130
|
-
|
|
131
|
-
"@babel/types@^7.22.5":
|
|
132
|
-
version "7.22.10"
|
|
133
|
-
resolved "https://registry.npmmirror.com/@babel/types/-/types-7.22.10.tgz#4a9e76446048f2c66982d1a989dd12b8a2d2dc03"
|
|
134
|
-
integrity sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==
|
|
135
|
-
dependencies:
|
|
136
|
-
"@babel/helper-string-parser" "^7.22.5"
|
|
137
|
-
"@babel/helper-validator-identifier" "^7.22.5"
|
|
138
|
-
to-fast-properties "^2.0.0"
|
|
139
|
-
|
|
140
|
-
"@emotion/babel-plugin@^11.11.0":
|
|
141
|
-
version "11.11.0"
|
|
142
|
-
resolved "https://registry.npmmirror.com/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz#c2d872b6a7767a9d176d007f5b31f7d504bb5d6c"
|
|
143
|
-
integrity sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==
|
|
144
|
-
dependencies:
|
|
145
|
-
"@babel/helper-module-imports" "^7.16.7"
|
|
146
|
-
"@babel/runtime" "^7.18.3"
|
|
147
|
-
"@emotion/hash" "^0.9.1"
|
|
148
|
-
"@emotion/memoize" "^0.8.1"
|
|
149
|
-
"@emotion/serialize" "^1.1.2"
|
|
150
|
-
babel-plugin-macros "^3.1.0"
|
|
151
|
-
convert-source-map "^1.5.0"
|
|
152
|
-
escape-string-regexp "^4.0.0"
|
|
153
|
-
find-root "^1.1.0"
|
|
154
|
-
source-map "^0.5.7"
|
|
155
|
-
stylis "4.2.0"
|
|
156
|
-
|
|
157
|
-
"@emotion/cache@^11.11.0":
|
|
158
|
-
version "11.11.0"
|
|
159
|
-
resolved "https://registry.npmmirror.com/@emotion/cache/-/cache-11.11.0.tgz#809b33ee6b1cb1a625fef7a45bc568ccd9b8f3ff"
|
|
160
|
-
integrity sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==
|
|
161
|
-
dependencies:
|
|
162
|
-
"@emotion/memoize" "^0.8.1"
|
|
163
|
-
"@emotion/sheet" "^1.2.2"
|
|
164
|
-
"@emotion/utils" "^1.2.1"
|
|
165
|
-
"@emotion/weak-memoize" "^0.3.1"
|
|
166
|
-
stylis "4.2.0"
|
|
167
|
-
|
|
168
|
-
"@emotion/css@^11.5.0":
|
|
169
|
-
version "11.11.2"
|
|
170
|
-
resolved "https://registry.npmmirror.com/@emotion/css/-/css-11.11.2.tgz#e5fa081d0c6e335352e1bc2b05953b61832dca5a"
|
|
171
|
-
integrity sha512-VJxe1ucoMYMS7DkiMdC2T7PWNbrEI0a39YRiyDvK2qq4lXwjRbVP/z4lpG+odCsRzadlR+1ywwrTzhdm5HNdew==
|
|
172
|
-
dependencies:
|
|
173
|
-
"@emotion/babel-plugin" "^11.11.0"
|
|
174
|
-
"@emotion/cache" "^11.11.0"
|
|
175
|
-
"@emotion/serialize" "^1.1.2"
|
|
176
|
-
"@emotion/sheet" "^1.2.2"
|
|
177
|
-
"@emotion/utils" "^1.2.1"
|
|
178
|
-
|
|
179
|
-
"@emotion/hash@^0.9.1":
|
|
180
|
-
version "0.9.1"
|
|
181
|
-
resolved "https://registry.npmmirror.com/@emotion/hash/-/hash-0.9.1.tgz#4ffb0055f7ef676ebc3a5a91fb621393294e2f43"
|
|
182
|
-
integrity sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==
|
|
183
|
-
|
|
184
|
-
"@emotion/memoize@^0.8.1":
|
|
185
|
-
version "0.8.1"
|
|
186
|
-
resolved "https://registry.npmmirror.com/@emotion/memoize/-/memoize-0.8.1.tgz#c1ddb040429c6d21d38cc945fe75c818cfb68e17"
|
|
187
|
-
integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==
|
|
188
|
-
|
|
189
|
-
"@emotion/serialize@^1.1.2":
|
|
190
|
-
version "1.1.2"
|
|
191
|
-
resolved "https://registry.npmmirror.com/@emotion/serialize/-/serialize-1.1.2.tgz#017a6e4c9b8a803bd576ff3d52a0ea6fa5a62b51"
|
|
192
|
-
integrity sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==
|
|
193
|
-
dependencies:
|
|
194
|
-
"@emotion/hash" "^0.9.1"
|
|
195
|
-
"@emotion/memoize" "^0.8.1"
|
|
196
|
-
"@emotion/unitless" "^0.8.1"
|
|
197
|
-
"@emotion/utils" "^1.2.1"
|
|
198
|
-
csstype "^3.0.2"
|
|
199
|
-
|
|
200
|
-
"@emotion/sheet@^1.2.2":
|
|
201
|
-
version "1.2.2"
|
|
202
|
-
resolved "https://registry.npmmirror.com/@emotion/sheet/-/sheet-1.2.2.tgz#d58e788ee27267a14342303e1abb3d508b6d0fec"
|
|
203
|
-
integrity sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==
|
|
204
|
-
|
|
205
|
-
"@emotion/unitless@^0.8.1":
|
|
206
|
-
version "0.8.1"
|
|
207
|
-
resolved "https://registry.npmmirror.com/@emotion/unitless/-/unitless-0.8.1.tgz#182b5a4704ef8ad91bde93f7a860a88fd92c79a3"
|
|
208
|
-
integrity sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==
|
|
209
|
-
|
|
210
|
-
"@emotion/utils@^1.2.1":
|
|
211
|
-
version "1.2.1"
|
|
212
|
-
resolved "https://registry.npmmirror.com/@emotion/utils/-/utils-1.2.1.tgz#bbab58465738d31ae4cb3dbb6fc00a5991f755e4"
|
|
213
|
-
integrity sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==
|
|
214
|
-
|
|
215
|
-
"@emotion/weak-memoize@^0.3.1":
|
|
216
|
-
version "0.3.1"
|
|
217
|
-
resolved "https://registry.npmmirror.com/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz#d0fce5d07b0620caa282b5131c297bb60f9d87e6"
|
|
218
|
-
integrity sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==
|
|
219
|
-
|
|
220
|
-
"@types/parse-json@^4.0.0":
|
|
221
|
-
version "4.0.0"
|
|
222
|
-
resolved "https://registry.npmmirror.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
|
|
223
|
-
integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
|
|
224
|
-
|
|
225
|
-
ansi-styles@^3.2.1:
|
|
226
|
-
version "3.2.1"
|
|
227
|
-
resolved "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
|
|
228
|
-
integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
|
|
229
|
-
dependencies:
|
|
230
|
-
color-convert "^1.9.0"
|
|
231
|
-
|
|
232
|
-
babel-plugin-macros@^3.1.0:
|
|
233
|
-
version "3.1.0"
|
|
234
|
-
resolved "https://registry.npmmirror.com/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz#9ef6dc74deb934b4db344dc973ee851d148c50c1"
|
|
235
|
-
integrity sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==
|
|
236
|
-
dependencies:
|
|
237
|
-
"@babel/runtime" "^7.12.5"
|
|
238
|
-
cosmiconfig "^7.0.0"
|
|
239
|
-
resolve "^1.19.0"
|
|
240
|
-
|
|
241
|
-
callsites@^3.0.0:
|
|
242
|
-
version "3.1.0"
|
|
243
|
-
resolved "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
|
|
244
|
-
integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
|
|
245
|
-
|
|
246
|
-
chalk@^2.4.2:
|
|
247
|
-
version "2.4.2"
|
|
248
|
-
resolved "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
|
|
249
|
-
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
|
|
250
|
-
dependencies:
|
|
251
|
-
ansi-styles "^3.2.1"
|
|
252
|
-
escape-string-regexp "^1.0.5"
|
|
253
|
-
supports-color "^5.3.0"
|
|
254
|
-
|
|
255
|
-
color-convert@^1.9.0:
|
|
256
|
-
version "1.9.3"
|
|
257
|
-
resolved "https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
|
|
258
|
-
integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
|
|
259
|
-
dependencies:
|
|
260
|
-
color-name "1.1.3"
|
|
261
|
-
|
|
262
|
-
color-name@1.1.3:
|
|
263
|
-
version "1.1.3"
|
|
264
|
-
resolved "https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
|
|
265
|
-
integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
|
|
266
|
-
|
|
267
|
-
convert-source-map@^1.5.0:
|
|
268
|
-
version "1.9.0"
|
|
269
|
-
resolved "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f"
|
|
270
|
-
integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
|
|
271
|
-
|
|
272
|
-
core-js-pure@^3.30.2:
|
|
273
|
-
version "3.32.0"
|
|
274
|
-
resolved "https://registry.npmmirror.com/core-js-pure/-/core-js-pure-3.32.0.tgz#5d79f85da7a4373e9a06494ccbef995a4c639f8b"
|
|
275
|
-
integrity sha512-qsev1H+dTNYpDUEURRuOXMvpdtAnNEvQWS/FMJ2Vb5AY8ZP4rAPQldkE27joykZPJTe0+IVgHZYh1P5Xu1/i1g==
|
|
276
|
-
|
|
277
|
-
cosmiconfig@^7.0.0:
|
|
278
|
-
version "7.1.0"
|
|
279
|
-
resolved "https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6"
|
|
280
|
-
integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==
|
|
281
|
-
dependencies:
|
|
282
|
-
"@types/parse-json" "^4.0.0"
|
|
283
|
-
import-fresh "^3.2.1"
|
|
284
|
-
parse-json "^5.0.0"
|
|
285
|
-
path-type "^4.0.0"
|
|
286
|
-
yaml "^1.10.0"
|
|
287
|
-
|
|
288
|
-
csstype@^3.0.2:
|
|
289
|
-
version "3.1.2"
|
|
290
|
-
resolved "https://registry.npmmirror.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b"
|
|
291
|
-
integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==
|
|
292
|
-
|
|
293
|
-
dayjs@^1.10.7:
|
|
294
|
-
version "1.11.9"
|
|
295
|
-
resolved "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.9.tgz#9ca491933fadd0a60a2c19f6c237c03517d71d1a"
|
|
296
|
-
integrity sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==
|
|
297
|
-
|
|
298
|
-
enquire.js@^2.1.6:
|
|
299
|
-
version "2.1.6"
|
|
300
|
-
resolved "https://registry.npmmirror.com/enquire.js/-/enquire.js-2.1.6.tgz#3e8780c9b8b835084c3f60e166dbc3c2a3c89814"
|
|
301
|
-
integrity sha512-/KujNpO+PT63F7Hlpu4h3pE3TokKRHN26JYmQpPyjkRD/N57R7bPDNojMXdi7uveAKjYB7yQnartCxZnFWr0Xw==
|
|
302
|
-
|
|
303
|
-
error-ex@^1.3.1:
|
|
304
|
-
version "1.3.2"
|
|
305
|
-
resolved "https://registry.npmmirror.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
|
|
306
|
-
integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
|
|
307
|
-
dependencies:
|
|
308
|
-
is-arrayish "^0.2.1"
|
|
309
|
-
|
|
310
|
-
escape-string-regexp@^1.0.5:
|
|
311
|
-
version "1.0.5"
|
|
312
|
-
resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
|
|
313
|
-
integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
|
|
314
|
-
|
|
315
|
-
escape-string-regexp@^4.0.0:
|
|
316
|
-
version "4.0.0"
|
|
317
|
-
resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
|
|
318
|
-
integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
|
|
319
|
-
|
|
320
|
-
find-root@^1.1.0:
|
|
321
|
-
version "1.1.0"
|
|
322
|
-
resolved "https://registry.npmmirror.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"
|
|
323
|
-
integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==
|
|
324
|
-
|
|
325
|
-
function-bind@^1.1.1:
|
|
326
|
-
version "1.1.1"
|
|
327
|
-
resolved "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
|
|
328
|
-
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
|
|
329
|
-
|
|
330
|
-
has-flag@^3.0.0:
|
|
331
|
-
version "3.0.0"
|
|
332
|
-
resolved "https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
|
|
333
|
-
integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
|
|
334
|
-
|
|
335
|
-
has@^1.0.3:
|
|
336
|
-
version "1.0.3"
|
|
337
|
-
resolved "https://registry.npmmirror.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
|
|
338
|
-
integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
|
|
339
|
-
dependencies:
|
|
340
|
-
function-bind "^1.1.1"
|
|
341
|
-
|
|
342
|
-
import-fresh@^3.2.1:
|
|
343
|
-
version "3.3.0"
|
|
344
|
-
resolved "https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
|
|
345
|
-
integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
|
|
346
|
-
dependencies:
|
|
347
|
-
parent-module "^1.0.0"
|
|
348
|
-
resolve-from "^4.0.0"
|
|
349
|
-
|
|
350
|
-
intact-react@3.0.22:
|
|
351
|
-
version "3.0.22"
|
|
352
|
-
resolved "https://registry.npmjs.org/intact-react/-/intact-react-3.0.22.tgz#cbc8361671ba68fb420045a9341765bad0a531c1"
|
|
353
|
-
integrity sha512-kmFvWQHENtNU81SCdFvPgY1SRZjHzpleEhT8DdY8iaSY1OZI/jMMwLjxmNhEJ+nGTFGoWozyw/QVZyN/l8H0fw==
|
|
354
|
-
dependencies:
|
|
355
|
-
intact "^3.0.22"
|
|
356
|
-
intact-shared "^3.0.22"
|
|
357
|
-
tslib "^2.3.1"
|
|
358
|
-
|
|
359
|
-
intact-shared@^3.0.22:
|
|
360
|
-
version "3.0.22"
|
|
361
|
-
resolved "https://registry.npmjs.org/intact-shared/-/intact-shared-3.0.22.tgz#e399ee4748fe7be9345ad9b7b251faca551035fe"
|
|
362
|
-
integrity sha512-l3k3M1N1Q4lkUX2xF/0XPV6nXZ5ChHfRaI85dQqC7E3oPaVGUA8oNR0+07jmwhMBaB550TyxbQv/b3iNWTwtJw==
|
|
363
|
-
|
|
364
|
-
intact@^3.0.22:
|
|
365
|
-
version "3.0.22"
|
|
366
|
-
resolved "https://registry.npmjs.org/intact/-/intact-3.0.22.tgz#15b0b04bdd28ffd0c3d1770f8aac5a622e453d74"
|
|
367
|
-
integrity sha512-SFkCK5qQT6j6jseQASjjiZGUH92CxfvK5BGMHViL6l04igtug+TDC9dHox8QWHyLqnE/guNGqd39n8oCr3tYUQ==
|
|
368
|
-
dependencies:
|
|
369
|
-
intact-shared "^3.0.22"
|
|
370
|
-
misstime "^3.0.22"
|
|
371
|
-
tslib "^2.2.0"
|
|
372
|
-
vdt "^3.0.22"
|
|
373
|
-
vdt-compiler "^3.0.22"
|
|
374
|
-
|
|
375
|
-
is-arrayish@^0.2.1:
|
|
376
|
-
version "0.2.1"
|
|
377
|
-
resolved "https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
|
|
378
|
-
integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
|
|
379
|
-
|
|
380
|
-
is-core-module@^2.13.0:
|
|
381
|
-
version "2.13.0"
|
|
382
|
-
resolved "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.13.0.tgz#bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db"
|
|
383
|
-
integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==
|
|
384
|
-
dependencies:
|
|
385
|
-
has "^1.0.3"
|
|
386
|
-
|
|
387
|
-
js-tokens@^4.0.0:
|
|
388
|
-
version "4.0.0"
|
|
389
|
-
resolved "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
|
|
390
|
-
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
|
|
391
|
-
|
|
392
|
-
json-parse-even-better-errors@^2.3.0:
|
|
393
|
-
version "2.3.1"
|
|
394
|
-
resolved "https://registry.npmmirror.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
|
|
395
|
-
integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
|
|
396
|
-
|
|
397
|
-
lines-and-columns@^1.1.6:
|
|
398
|
-
version "1.2.4"
|
|
399
|
-
resolved "https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
|
|
400
|
-
integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
|
|
401
|
-
|
|
402
|
-
misstime@^3.0.22:
|
|
403
|
-
version "3.0.22"
|
|
404
|
-
resolved "https://registry.npmjs.org/misstime/-/misstime-3.0.22.tgz#a9c62d3cb03b40aba7e420930e9f7efd5f2d195f"
|
|
405
|
-
integrity sha512-gK/j4A83SXNNzG3wuHFoNo5UJxkfXmFyiCeDEsyXqWmWJ/Htcrf2hM8Jg8ZwG4DCF7g1gQ20A+bm1+DAve/7gQ==
|
|
406
|
-
dependencies:
|
|
407
|
-
intact-shared "^3.0.22"
|
|
408
|
-
|
|
409
|
-
monaco-editor@^0.26.1:
|
|
410
|
-
version "0.26.1"
|
|
411
|
-
resolved "https://registry.npmmirror.com/monaco-editor/-/monaco-editor-0.26.1.tgz#62bb5f658bc95379f8abb64b147632bd1c019d73"
|
|
412
|
-
integrity sha512-mm45nUrBDk0DgZKgbD7+bhDOtcAFNGPJJRAdS6Su1kTGl6XEgC7U3xOmDUW/0RrLf+jlvCGaqLvD4p2VjwuwwQ==
|
|
413
|
-
|
|
414
|
-
mxgraphx@^4.0.7:
|
|
415
|
-
version "4.0.7"
|
|
416
|
-
resolved "https://registry.npmmirror.com/mxgraphx/-/mxgraphx-4.0.7.tgz#5a904654916b883ff4246af8ad5edfe3e924ff74"
|
|
417
|
-
integrity sha512-N8KRnMy5Rkiab3X9lx618Nmzr/oZ0jfyrtPVqt+yOqlgq6CZD0242exPktRzKTpUABZetdRXcR7tBPAjZXTB1g==
|
|
418
|
-
|
|
419
|
-
parent-module@^1.0.0:
|
|
420
|
-
version "1.0.1"
|
|
421
|
-
resolved "https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
|
|
422
|
-
integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
|
|
423
|
-
dependencies:
|
|
424
|
-
callsites "^3.0.0"
|
|
425
|
-
|
|
426
|
-
parse-json@^5.0.0:
|
|
427
|
-
version "5.2.0"
|
|
428
|
-
resolved "https://registry.npmmirror.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
|
|
429
|
-
integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
|
|
430
|
-
dependencies:
|
|
431
|
-
"@babel/code-frame" "^7.0.0"
|
|
432
|
-
error-ex "^1.3.1"
|
|
433
|
-
json-parse-even-better-errors "^2.3.0"
|
|
434
|
-
lines-and-columns "^1.1.6"
|
|
435
|
-
|
|
436
|
-
path-parse@^1.0.7:
|
|
437
|
-
version "1.0.7"
|
|
438
|
-
resolved "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
|
|
439
|
-
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
|
|
440
|
-
|
|
441
|
-
path-type@^4.0.0:
|
|
442
|
-
version "4.0.0"
|
|
443
|
-
resolved "https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
|
|
444
|
-
integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
|
|
445
|
-
|
|
446
|
-
regenerator-runtime@^0.14.0:
|
|
447
|
-
version "0.14.0"
|
|
448
|
-
resolved "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz#5e19d68eb12d486f797e15a3c6a918f7cec5eb45"
|
|
449
|
-
integrity sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==
|
|
450
|
-
|
|
451
|
-
resize-observer-polyfill@^1.5.1:
|
|
452
|
-
version "1.5.1"
|
|
453
|
-
resolved "https://registry.npmmirror.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464"
|
|
454
|
-
integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==
|
|
455
|
-
|
|
456
|
-
resolve-from@^4.0.0:
|
|
457
|
-
version "4.0.0"
|
|
458
|
-
resolved "https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
|
|
459
|
-
integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
|
|
460
|
-
|
|
461
|
-
resolve@^1.19.0:
|
|
462
|
-
version "1.22.4"
|
|
463
|
-
resolved "https://registry.npmmirror.com/resolve/-/resolve-1.22.4.tgz#1dc40df46554cdaf8948a486a10f6ba1e2026c34"
|
|
464
|
-
integrity sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==
|
|
465
|
-
dependencies:
|
|
466
|
-
is-core-module "^2.13.0"
|
|
467
|
-
path-parse "^1.0.7"
|
|
468
|
-
supports-preserve-symlinks-flag "^1.0.0"
|
|
469
|
-
|
|
470
|
-
source-map@^0.5.7:
|
|
471
|
-
version "0.5.7"
|
|
472
|
-
resolved "https://registry.npmmirror.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
|
|
473
|
-
integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==
|
|
474
|
-
|
|
475
|
-
stylis@4.2.0:
|
|
476
|
-
version "4.2.0"
|
|
477
|
-
resolved "https://registry.npmmirror.com/stylis/-/stylis-4.2.0.tgz#79daee0208964c8fe695a42fcffcac633a211a51"
|
|
478
|
-
integrity sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==
|
|
479
|
-
|
|
480
|
-
supports-color@^5.3.0:
|
|
481
|
-
version "5.5.0"
|
|
482
|
-
resolved "https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
|
|
483
|
-
integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
|
|
484
|
-
dependencies:
|
|
485
|
-
has-flag "^3.0.0"
|
|
486
|
-
|
|
487
|
-
supports-preserve-symlinks-flag@^1.0.0:
|
|
488
|
-
version "1.0.0"
|
|
489
|
-
resolved "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
|
|
490
|
-
integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
|
|
491
|
-
|
|
492
|
-
tinycolor2@^1.4.2:
|
|
493
|
-
version "1.6.0"
|
|
494
|
-
resolved "https://registry.npmmirror.com/tinycolor2/-/tinycolor2-1.6.0.tgz#f98007460169b0263b97072c5ae92484ce02d09e"
|
|
495
|
-
integrity sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==
|
|
496
|
-
|
|
497
|
-
to-fast-properties@^2.0.0:
|
|
498
|
-
version "2.0.0"
|
|
499
|
-
resolved "https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
|
|
500
|
-
integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
|
|
501
|
-
|
|
502
|
-
tslib@^2.2.0, tslib@^2.3.1:
|
|
503
|
-
version "2.6.1"
|
|
504
|
-
resolved "https://registry.npmmirror.com/tslib/-/tslib-2.6.1.tgz#fd8c9a0ff42590b25703c0acb3de3d3f4ede0410"
|
|
505
|
-
integrity sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==
|
|
506
|
-
|
|
507
|
-
vdt-compiler@^3.0.22:
|
|
508
|
-
version "3.0.22"
|
|
509
|
-
resolved "https://registry.npmjs.org/vdt-compiler/-/vdt-compiler-3.0.22.tgz#7e91ab022f667565d4084111777ed316314f1420"
|
|
510
|
-
integrity sha512-aOGCA6a3omPIEIMUwafu6HUMzejzQ47Ex/logHhYcxIhy9LGl/MOkvwd+j/oxNALy1GPLLHF6a2oZ5wj133ZQw==
|
|
511
|
-
dependencies:
|
|
512
|
-
intact-shared "^3.0.22"
|
|
513
|
-
misstime "^3.0.22"
|
|
514
|
-
tslib "^2.2.0"
|
|
515
|
-
|
|
516
|
-
vdt@^3.0.22:
|
|
517
|
-
version "3.0.22"
|
|
518
|
-
resolved "https://registry.npmjs.org/vdt/-/vdt-3.0.22.tgz#fddd4f048dd5eb1ec3dae72f7b00ba3c6411d6e5"
|
|
519
|
-
integrity sha512-+N4Ic9H+VFaSSp5rVZWCQi2fzXrr2kEyIXXpYTWMCYi7bBMWsT9xzlNtKpWTJ6r7jkDMR33TabWge1tn9hPIFA==
|
|
520
|
-
dependencies:
|
|
521
|
-
intact-shared "^3.0.22"
|
|
522
|
-
misstime "^3.0.22"
|
|
523
|
-
tslib "^2.2.0"
|
|
524
|
-
|
|
525
|
-
yaml@^1.10.0:
|
|
526
|
-
version "1.10.2"
|
|
527
|
-
resolved "https://registry.npmmirror.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
|
|
528
|
-
integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
|