zxl-common-utils 0.0.3 → 0.0.5
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/lib/App.vue.d.ts +4 -0
- package/lib/App.vue.d.ts.map +1 -0
- package/lib/components/index.d.ts +5 -5
- package/lib/components/index.d.ts.map +1 -1
- package/lib/components/layout/ComponentRatio.vue.d.ts +36 -0
- package/lib/components/layout/ComponentRatio.vue.d.ts.map +1 -0
- package/lib/components/resource/Image.vue.d.ts +16 -0
- package/lib/components/resource/Image.vue.d.ts.map +1 -0
- package/lib/components/ui/TooltipBox.vue.d.ts +34 -0
- package/lib/components/ui/TooltipBox.vue.d.ts.map +1 -0
- package/lib/components/ui/domAutoScroll.vue.d.ts +32 -0
- package/lib/components/ui/domAutoScroll.vue.d.ts.map +1 -0
- package/lib/components/ui/echartsAutoScroll.vue.d.ts +35 -0
- package/lib/components/ui/echartsAutoScroll.vue.d.ts.map +1 -0
- package/lib/index.d.ts +1 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +8848 -8885
- package/lib/index.js.gz +0 -0
- package/lib/main.d.ts +2 -0
- package/lib/main.d.ts.map +1 -0
- package/lib/types/index.d.ts +1 -0
- package/lib/types/index.d.ts.map +1 -1
- package/lib/types/scroll.d.ts +3 -4
- package/lib/types/scroll.d.ts.map +1 -1
- package/lib/utils/color/color.d.ts +75 -0
- package/lib/utils/color/color.d.ts.map +1 -0
- package/lib/utils/common/lcUtils.d.ts +23 -0
- package/lib/utils/common/lcUtils.d.ts.map +1 -0
- package/lib/utils/common/useDomAutoScroll.d.ts +37 -0
- package/lib/utils/common/useDomAutoScroll.d.ts.map +1 -0
- package/lib/utils/common/useEchartsAutoScroll.d.ts +48 -0
- package/lib/utils/common/useEchartsAutoScroll.d.ts.map +1 -0
- package/lib/utils/index.d.ts +5 -17
- package/lib/utils/index.d.ts.map +1 -1
- package/lib/utils/resource/resourceCache.d.ts +49 -0
- package/lib/utils/resource/resourceCache.d.ts.map +1 -0
- package/lib/zxl-common-utils.css +1 -1
- package/package.json +1 -1
package/lib/App.vue.d.ts
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
declare const _default: typeof __VLS_export;
|
|
3
|
+
export default _default;
|
|
4
|
+
//# sourceMappingURL=App.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"App.vue.d.ts","sourceRoot":"","sources":["../src/App.vue"],"names":[],"mappings":"AAwBA,QAAA,MAAM,YAAY,+QAChB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
declare const components: Record<string, any>;
|
|
2
2
|
export default components;
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
3
|
+
export { default as ComponentRatio } from './layout/ComponentRatio.vue';
|
|
4
|
+
export { default as Image } from './resource/Image.vue';
|
|
5
|
+
export { default as domAutoScroll } from './ui/domAutoScroll.vue';
|
|
6
|
+
export { default as echartsAutoScroll } from './ui/echartsAutoScroll.vue';
|
|
7
|
+
export { default as TooltipBox } from './ui/TooltipBox.vue';
|
|
8
8
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAYA,QAAA,MAAM,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAM,CAAC;AAY3C,eAAe,UAAU,CAAC;AAG1B,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAYA,QAAA,MAAM,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAM,CAAC;AAY3C,eAAe,UAAU,CAAC;AAG1B,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,6BAA6B,CAAC;AACxE,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,sBAAsB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC1E,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
/** 设计稿宽度 */
|
|
3
|
+
width?: number;
|
|
4
|
+
/** 设计稿高度 */
|
|
5
|
+
height?: number;
|
|
6
|
+
/**
|
|
7
|
+
* 最大宽度限制
|
|
8
|
+
* 设置此值时,宽高比会在 width/height ~ maxWidth/height 范围内自适应
|
|
9
|
+
*/
|
|
10
|
+
maxWidth?: number;
|
|
11
|
+
/**
|
|
12
|
+
* 是否全屏显示(占满浏览器窗口)
|
|
13
|
+
* - false: 保持固定宽高比,顶部对齐、左右居中(默认)
|
|
14
|
+
* - true: 通过缩放拉伸适应整个浏览器窗口,确保内容完全可见不超出(Contain 模式)
|
|
15
|
+
*/
|
|
16
|
+
full?: boolean;
|
|
17
|
+
}
|
|
18
|
+
declare var __VLS_1: {};
|
|
19
|
+
type __VLS_Slots = {} & {
|
|
20
|
+
default?: (props: typeof __VLS_1) => any;
|
|
21
|
+
};
|
|
22
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
23
|
+
width: number;
|
|
24
|
+
height: number;
|
|
25
|
+
maxWidth: number;
|
|
26
|
+
full: boolean;
|
|
27
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
29
|
+
declare const _default: typeof __VLS_export;
|
|
30
|
+
export default _default;
|
|
31
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
32
|
+
new (): {
|
|
33
|
+
$slots: S;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
//# sourceMappingURL=ComponentRatio.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ComponentRatio.vue.d.ts","sourceRoot":"","sources":["../../../src/components/layout/ComponentRatio.vue"],"names":[],"mappings":"AAkMA,UAAU,KAAK;IACb,YAAY;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY;IACZ,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,IAAI,CAAC,EAAE,OAAO,CAAC;CAChB;AAqLD,QAAA,IAAI,OAAO,IAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAM/C,QAAA,MAAM,UAAU;WA3MN,MAAM;YAEL,MAAM;cAKJ,MAAM;UAMV,OAAO;6EAiMd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { type Ref } from 'vue';
|
|
2
|
+
interface Props {
|
|
3
|
+
src?: string;
|
|
4
|
+
color?: string | Ref<string>;
|
|
5
|
+
alt?: string;
|
|
6
|
+
changeColor?: boolean;
|
|
7
|
+
}
|
|
8
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
9
|
+
src: string;
|
|
10
|
+
color: string | Ref<string>;
|
|
11
|
+
alt: string;
|
|
12
|
+
changeColor: boolean;
|
|
13
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
15
|
+
export default _default;
|
|
16
|
+
//# sourceMappingURL=Image.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Image.vue.d.ts","sourceRoot":"","sources":["../../../src/components/resource/Image.vue"],"names":[],"mappings":"AA4LA,OAAO,EAAqC,KAAK,GAAG,EAAE,MAAM,KAAK,CAAC;AAGlE,UAAU,KAAK;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC,CAAC;IAC7B,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AA+MD,QAAA,MAAM,YAAY;SAnNV,MAAM;WACJ,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;SACtB,MAAM;iBACE,OAAO;6EAmNrB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* tooltip 与鼠标的偏移距离
|
|
3
|
+
* - 数字(如 10):固定像素偏移 10px
|
|
4
|
+
* - 字符串百分比(如 '5%'):相对于 tooltip 自身宽高的百分比偏移
|
|
5
|
+
* - 对象 { x, y }:分别控制水平和垂直偏移
|
|
6
|
+
* - x/y 可以是数字(px)或字符串百分比
|
|
7
|
+
* 默认值 10(即 10px)
|
|
8
|
+
*/
|
|
9
|
+
type OffsetValue = number | string;
|
|
10
|
+
type Offset = OffsetValue | {
|
|
11
|
+
x?: OffsetValue;
|
|
12
|
+
y?: OffsetValue;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_Props = {
|
|
15
|
+
visible: boolean;
|
|
16
|
+
offset?: Offset;
|
|
17
|
+
};
|
|
18
|
+
declare var __VLS_1: {};
|
|
19
|
+
type __VLS_Slots = {} & {
|
|
20
|
+
default?: (props: typeof __VLS_1) => any;
|
|
21
|
+
};
|
|
22
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
23
|
+
visible: boolean;
|
|
24
|
+
offset: Offset;
|
|
25
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
26
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
27
|
+
declare const _default: typeof __VLS_export;
|
|
28
|
+
export default _default;
|
|
29
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
30
|
+
new (): {
|
|
31
|
+
$slots: S;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
//# sourceMappingURL=TooltipBox.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TooltipBox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ui/TooltipBox.vue"],"names":[],"mappings":"AAoPA;;;;;;;GAOG;AACH,KAAK,WAAW,GAAG,MAAM,GAAG,MAAM,CAAC;AACnC,KAAK,MAAM,GAAG,WAAW,GAAG;IAAC,CAAC,CAAC,EAAE,WAAW,CAAC;IAAC,CAAC,CAAC,EAAE,WAAW,CAAA;CAAC,CAAC;AAE/D,KAAK,WAAW,GAAG;IACf,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AAkQJ,QAAA,IAAI,OAAO,IAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAO/C,QAAA,MAAM,UAAU;aA7QH,OAAO;YACP,MAAM;6EA+QjB,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import type { domScrollOptions } from '@/types/scroll';
|
|
2
|
+
declare var __VLS_1: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_1) => any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_base: import("vue").DefineComponent<domScrollOptions, {
|
|
7
|
+
/** 启动自动滚动 */
|
|
8
|
+
startAutoScroll: () => void;
|
|
9
|
+
/** 停止自动滚动 */
|
|
10
|
+
stopAutoScroll: () => void;
|
|
11
|
+
/** 鼠标进入事件处理 */
|
|
12
|
+
handleMouseEnter: () => void;
|
|
13
|
+
/** 鼠标离开事件处理 */
|
|
14
|
+
handleMouseLeave: () => void;
|
|
15
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
16
|
+
onCloneCreated: (clone: HTMLElement, childIndex: number) => any;
|
|
17
|
+
}, string, import("vue").PublicProps, Readonly<domScrollOptions> & Readonly<{
|
|
18
|
+
onOnCloneCreated?: ((clone: HTMLElement, childIndex: number) => any) | undefined;
|
|
19
|
+
}>, {
|
|
20
|
+
enabled: boolean;
|
|
21
|
+
itemCount: number;
|
|
22
|
+
scrollConfig: import("@/types/scroll").ScrollConfig;
|
|
23
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
25
|
+
declare const _default: typeof __VLS_export;
|
|
26
|
+
export default _default;
|
|
27
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
28
|
+
new (): {
|
|
29
|
+
$slots: S;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
//# sourceMappingURL=domAutoScroll.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"domAutoScroll.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ui/domAutoScroll.vue"],"names":[],"mappings":"AAkYA,OAAO,KAAK,EAAa,gBAAgB,EAAC,MAAM,gBAAgB,CAAA;AAkahE,QAAA,IAAI,OAAO,IAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAM/C,QAAA,MAAM,UAAU;IAjEd,aAAa;;IAEb,aAAa;;IAEb,eAAe;;IAEf,eAAe;;;;;;;;;;6EAgEf,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import * as echarts from 'echarts';
|
|
2
|
+
import type { echartsScrollOptions } from '@/types/scroll';
|
|
3
|
+
declare var __VLS_1: {};
|
|
4
|
+
type __VLS_Slots = {} & {
|
|
5
|
+
default?: (props: typeof __VLS_1) => any;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_base: import("vue").DefineComponent<echartsScrollOptions, {
|
|
8
|
+
/** 启动自动滚动 */
|
|
9
|
+
startAutoScroll: () => void;
|
|
10
|
+
/** 停止自动滚动 */
|
|
11
|
+
stopAutoScroll: () => void;
|
|
12
|
+
/** 更新克隆 echarts(数据变化时调用) */
|
|
13
|
+
updateCloneChart: () => void;
|
|
14
|
+
/** 鼠标进入事件处理 */
|
|
15
|
+
handleMouseEnter: () => void;
|
|
16
|
+
/** 鼠标离开事件处理 */
|
|
17
|
+
handleMouseLeave: () => void;
|
|
18
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
19
|
+
onCloneCreated: (cloneContainer: HTMLElement, cloneInstance: echarts.ECharts | null) => any;
|
|
20
|
+
}, string, import("vue").PublicProps, Readonly<echartsScrollOptions> & Readonly<{
|
|
21
|
+
onOnCloneCreated?: ((cloneContainer: HTMLElement, cloneInstance: echarts.ECharts | null) => any) | undefined;
|
|
22
|
+
}>, {
|
|
23
|
+
enabled: boolean;
|
|
24
|
+
itemCount: number;
|
|
25
|
+
scrollConfig: import("@/types/scroll").ScrollConfig;
|
|
26
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
27
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
28
|
+
declare const _default: typeof __VLS_export;
|
|
29
|
+
export default _default;
|
|
30
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
31
|
+
new (): {
|
|
32
|
+
$slots: S;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
//# sourceMappingURL=echartsAutoScroll.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"echartsAutoScroll.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ui/echartsAutoScroll.vue"],"names":[],"mappings":"AAmYA,OAAO,KAAK,OAAO,MAAM,SAAS,CAAC;AACnC,OAAO,KAAK,EAAa,oBAAoB,EAAC,MAAM,gBAAgB,CAAA;AAmapE,QAAA,IAAI,OAAO,IAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAM/C,QAAA,MAAM,UAAU;IApEd,aAAa;;IAEb,aAAa;;IAEb,4BAA4B;;IAE5B,eAAe;;IAEf,eAAe;;;;;;;;;;6EAiEf,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
package/lib/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { useComponents } from './plugins/components';
|
|
|
2
2
|
export { useComponents };
|
|
3
3
|
export * from './utils';
|
|
4
4
|
export * from './components';
|
|
5
|
-
export type { ColorList, TemplateToolsType, DefaultPropsType, StaticConfig, StaticOptions, StaticResources, UseColorReturn, ColorMap, ComponentProps, } from './types';
|
|
5
|
+
export type { ColorList, TemplateToolsType, DefaultPropsType, StaticConfig, StaticOptions, StaticResources, UseColorReturn, ColorMap, ComponentProps, ScrollConfig, ScrollMode, } from './types';
|
|
6
6
|
declare const defaultExport: Record<string, any>;
|
|
7
7
|
export default defaultExport;
|
|
8
8
|
//# sourceMappingURL=index.d.ts.map
|
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAGrD,OAAO,EAAE,aAAa,EAAE,CAAC;AAGzB,cAAc,SAAS,CAAC;AAGxB,cAAc,cAAc,CAAC;AAG7B,YAAY,EACV,SAAS,EACT,iBAAiB,EACjB,gBAAgB,EAChB,YAAY,EACZ,aAAa,EACb,eAAe,EACf,cAAc,EACd,QAAQ,EACR,cAAc,EACd,YAAY,EACZ,UAAU,GACX,MAAM,SAAS,CAAC;AAGjB,QAAA,MAAM,aAAa,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAEtC,CAAC;AAEF,eAAe,aAAa,CAAC"}
|