neko-ui 2.3.5 → 2.3.6
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 +12 -0
- package/lib/@moneko/app/index.d.ts +50 -0
- package/lib/@moneko/coverage/index.d.ts +35 -0
- package/lib/@moneko/locales/index.d.ts +11 -0
- package/lib/@moneko/routes/index.d.ts +27 -0
- package/lib/index.d.ts +2 -38
- package/lib/provider/index.d.ts +3 -1
- package/lib/report.html +2 -2
- package/package.json +7 -4
package/README.md
CHANGED
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
[docs-url]: https://monako97.github.io/neko-ui
|
|
6
6
|
[docs-tag]: https://cdn.staticaly.com/gh/monako97/cdn/main/image/202307281701250.svg
|
|
7
7
|
[npm-url]: https://npmjs.org/package/neko-ui
|
|
8
|
+
[cli-url]: https://www.npmjs.com/package/@moneko/cli
|
|
9
|
+
[cli-tag]: https://nodei.co/npm/@moneko/cli.png
|
|
8
10
|
[install-tag]: https://nodei.co/npm/neko-ui.png
|
|
9
11
|
[version-tag]: https://img.shields.io/npm/v/neko-ui/latest.svg?logo=npm
|
|
10
12
|
[size-tag]: https://packagephobia.com/badge?p=neko-ui@latest
|
|
@@ -51,6 +53,16 @@ yarn add neko-ui -S
|
|
|
51
53
|
</body>
|
|
52
54
|
```
|
|
53
55
|
|
|
56
|
+
> 文档通过 @moneko/cli 生成
|
|
57
|
+
|
|
58
|
+
[![@moneko/cli][cli-tag]][cli-url]
|
|
59
|
+
|
|
60
|
+
## 兼容性
|
|
61
|
+
|
|
62
|
+
| [](http://godban.github.io/browsers-support-badges/)<br>IE / Edge | [](http://godban.github.io/browsers-support-badges/)<br>Firefox | [](http://godban.github.io/browsers-support-badges/)<br>Chrome | [](http://godban.github.io/browsers-support-badges/)<br>Safari | [](http://godban.github.io/browsers-support-badges/)<br>Electron |
|
|
63
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
64
|
+
| IE11, Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
|
|
65
|
+
|
|
54
66
|
## 感谢
|
|
55
67
|
|
|
56
68
|
[![jetbrains][jetbrains-tag]][jetbrains-url]
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/** 虚拟模块 @app
|
|
2
|
+
* @ignore optional
|
|
3
|
+
*/
|
|
4
|
+
export interface Api {
|
|
5
|
+
/** 应用名称 */
|
|
6
|
+
name: string;
|
|
7
|
+
/** 应用名称(大写) */
|
|
8
|
+
projectName: string;
|
|
9
|
+
/** 应用描述 */
|
|
10
|
+
description: string;
|
|
11
|
+
/** 应用版本 */
|
|
12
|
+
version: string;
|
|
13
|
+
/** 应用类型 */
|
|
14
|
+
type: 'mobile' | 'site' | 'backstage' | 'micro' | 'library';
|
|
15
|
+
/** 开发者 */
|
|
16
|
+
author: Author;
|
|
17
|
+
/** 存储库 */
|
|
18
|
+
repository: Repository;
|
|
19
|
+
/** 路由模式 */
|
|
20
|
+
routerMode: 'hash' | 'browser';
|
|
21
|
+
/** 根路由 */
|
|
22
|
+
base: string;
|
|
23
|
+
/** 类名前缀 */
|
|
24
|
+
prefixCls?: string;
|
|
25
|
+
/** 主题风格 */
|
|
26
|
+
theme?: string;
|
|
27
|
+
}
|
|
28
|
+
/** 开发者
|
|
29
|
+
* @ignore optional
|
|
30
|
+
*/
|
|
31
|
+
interface Author {
|
|
32
|
+
/** 名称 */
|
|
33
|
+
name: string;
|
|
34
|
+
/** 主页 */
|
|
35
|
+
url?: string;
|
|
36
|
+
/** 邮箱 */
|
|
37
|
+
email?: string;
|
|
38
|
+
}
|
|
39
|
+
/** 存储库
|
|
40
|
+
* @ignore optional
|
|
41
|
+
*/
|
|
42
|
+
interface Repository {
|
|
43
|
+
/** 类型 */
|
|
44
|
+
type?: string;
|
|
45
|
+
/** 存储库地址 */
|
|
46
|
+
url?: string;
|
|
47
|
+
/** 存储库目录 */
|
|
48
|
+
directory?: string;
|
|
49
|
+
}
|
|
50
|
+
export {};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/** 文件级覆盖率
|
|
2
|
+
* @ignore optional
|
|
3
|
+
*/
|
|
4
|
+
export interface CoverageType {
|
|
5
|
+
/** 语句(statement coverage) */
|
|
6
|
+
statements: string;
|
|
7
|
+
/** 语句覆盖: 是不是每个语句都执行了 */
|
|
8
|
+
coveredstatements: string;
|
|
9
|
+
/** 条件(branch coverage) */
|
|
10
|
+
conditionals: string;
|
|
11
|
+
/** 条件覆盖: 是不是每个条件代码块都执行了 */
|
|
12
|
+
coveredconditionals: string;
|
|
13
|
+
/** 函数(function coverage) */
|
|
14
|
+
methods: string;
|
|
15
|
+
/** 函数覆盖: 是不是每个函数都调用了 */
|
|
16
|
+
coveredmethods: string;
|
|
17
|
+
}
|
|
18
|
+
/** 项目级覆盖率
|
|
19
|
+
* @ignore optional
|
|
20
|
+
*/
|
|
21
|
+
export interface ProjectCoverageType {
|
|
22
|
+
/** 元素 */
|
|
23
|
+
elements: string;
|
|
24
|
+
/** 覆盖元素 */
|
|
25
|
+
coveredelements: string;
|
|
26
|
+
complexity: string;
|
|
27
|
+
loc: string;
|
|
28
|
+
ncloc: string;
|
|
29
|
+
/** 经过测试的组件 */
|
|
30
|
+
packages: string;
|
|
31
|
+
/** 经过测试的文件 */
|
|
32
|
+
files: string;
|
|
33
|
+
/** 经过测试的类 */
|
|
34
|
+
classes: string;
|
|
35
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { RouteDefinition } from '@solidjs/router';
|
|
2
|
+
interface IRouteDefinition extends Omit<RouteDefinition, 'children'> {
|
|
3
|
+
children?: RouteConfig[];
|
|
4
|
+
}
|
|
5
|
+
export interface RouteConfig extends IRouteDefinition {
|
|
6
|
+
/** 菜单id */
|
|
7
|
+
key?: string;
|
|
8
|
+
/** 地址 */
|
|
9
|
+
path: string;
|
|
10
|
+
/** 图标 */
|
|
11
|
+
icon?: string;
|
|
12
|
+
/** 名称 */
|
|
13
|
+
label?: string | null;
|
|
14
|
+
/** 隐藏菜单 */
|
|
15
|
+
hideMenu?: boolean;
|
|
16
|
+
/** 隐藏标签页 */
|
|
17
|
+
hideTab?: boolean;
|
|
18
|
+
/** 菜单父id */
|
|
19
|
+
parentId?: string;
|
|
20
|
+
/** 可否关闭标签 */
|
|
21
|
+
closable?: boolean;
|
|
22
|
+
/** 子菜单 */
|
|
23
|
+
props?: Record<string, Any>;
|
|
24
|
+
/** 元数据 */
|
|
25
|
+
meta?: Record<string, string | number | boolean>;
|
|
26
|
+
}
|
|
27
|
+
export {};
|
package/lib/index.d.ts
CHANGED
|
@@ -38,6 +38,8 @@ export { default as Typography, type TypographyElement, type TypographyProps } f
|
|
|
38
38
|
export { default as dayjs } from './date-picker/dayjs';
|
|
39
39
|
export { default as Provider, type ProviderElement, type ProviderProps } from './provider';
|
|
40
40
|
export { hot, customElement, noShadowDOM, withSolid, getCurrentElement } from 'solid-element';
|
|
41
|
+
export type { CustomElement } from 'custom-element-type';
|
|
42
|
+
import { Transform } from 'custom-element-type';
|
|
41
43
|
import type { AvatarElement, AvatarGroupElement, BackTopElement, ButtonElement, CaptureScreenElement, CarouselElement, CheckboxBoolElement, CheckboxGroupElement, CodeElement, ColorPaletteElement, ColorPickerElement, CronElement, DatePickerElement, DropdownElement, DropdownMultipleElement, EmptyElement, HighlightTextElement, ImgElement, InputElement, InputNumberElement, MdElement, MenuElement, MenuMultipleElement, PaginationElement, PopoverElement, ProviderElement, RadioElement, SegmentedElement, SelectElement, SelectMultipleElement, SkeletonElement, SpinElement, SwitchElement, TableElement, TabsElement, TagElement, TreeElement, TreeMultipleElement, TreeMultipleSchemaElement, TreeMultipleStringElement, TreeSchemaElement, TreeStringElement, TypographyElement } from '.';
|
|
42
44
|
/** 组件列表
|
|
43
45
|
* @author monako97
|
|
@@ -121,44 +123,6 @@ interface CustomElementTags {
|
|
|
121
123
|
*/
|
|
122
124
|
'n-provider': ProviderElement;
|
|
123
125
|
}
|
|
124
|
-
type Any = any;
|
|
125
|
-
interface ICustomElement {
|
|
126
|
-
[prop: string]: Any;
|
|
127
|
-
__initialized?: boolean;
|
|
128
|
-
__released: boolean;
|
|
129
|
-
__releaseCallbacks: Any[];
|
|
130
|
-
__propertyChangedCallbacks: Any[];
|
|
131
|
-
__updating: Record<string, Any>;
|
|
132
|
-
props: Record<string, Any>;
|
|
133
|
-
lookupProp(attrName: string): string | undefined;
|
|
134
|
-
renderRoot: Element | Document | ShadowRoot | DocumentFragment;
|
|
135
|
-
addReleaseCallback(fn: () => void): void;
|
|
136
|
-
addPropertyChangedCallback(fn: (name: string, value: any) => void): void;
|
|
137
|
-
}
|
|
138
|
-
type IEvent<T> = (e: CustomEvent<T>) => void;
|
|
139
|
-
type ICustomEvent<T, K extends keyof T> = T extends {
|
|
140
|
-
[key in K]?: (v: infer V) => void;
|
|
141
|
-
} ? IEvent<V> : T extends {
|
|
142
|
-
[key in K]?: (...args: infer Args) => void;
|
|
143
|
-
} ? IEvent<Args> : never;
|
|
144
|
-
type Hyphenate<T> = T extends `${infer First}${infer Rest}` ? Rest extends Uncapitalize<Rest> ? `${Lowercase<First>}${Hyphenate<Rest>}` : `${Lowercase<First>}-${Hyphenate<Rest>}` : T;
|
|
145
|
-
type TransformKeys<T> = {
|
|
146
|
-
[K in keyof T as T[K] extends symbol | string | number | boolean | undefined | null ? Hyphenate<K> : K]: T[K];
|
|
147
|
-
};
|
|
148
|
-
type Transform<T> = {
|
|
149
|
-
[K in keyof T]: TransformKeys<T[K]>;
|
|
150
|
-
};
|
|
151
|
-
type IOmit<T, Keys extends keyof T> = Omit<T, Keys> & {
|
|
152
|
-
[K in Keys]?: ICustomEvent<T, K>;
|
|
153
|
-
};
|
|
154
|
-
export type CustomElement<T extends Partial<ICustomElement> = ICustomElement, E extends string = 'onChange'> = IOmit<T, E> & {
|
|
155
|
-
ref?: CustomElement<T, E> | {
|
|
156
|
-
current: CustomElement<T, E> | null;
|
|
157
|
-
};
|
|
158
|
-
shadowRoot?: ShadowRoot | Element | null;
|
|
159
|
-
offsetWidth?: number;
|
|
160
|
-
part?: string;
|
|
161
|
-
};
|
|
162
126
|
type IntrinsicNekoElement = Transform<CustomElementTags>;
|
|
163
127
|
declare module 'solid-js' {
|
|
164
128
|
namespace JSX {
|
package/lib/provider/index.d.ts
CHANGED
|
@@ -3,7 +3,9 @@ import { ColorScheme } from '../theme';
|
|
|
3
3
|
import type { CustomElement } from '..';
|
|
4
4
|
declare function Provider(props: ProviderProps): import("solid-js").JSX.Element;
|
|
5
5
|
export interface ProviderProps {
|
|
6
|
-
/**
|
|
6
|
+
/** 主题, 等同于使用 setScheme
|
|
7
|
+
* @default 'auto'
|
|
8
|
+
*/
|
|
7
9
|
scheme?: keyof typeof ColorScheme;
|
|
8
10
|
/** 包裹的子项 */
|
|
9
11
|
children?: JSXElement;
|
package/lib/report.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8"/>
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
6
|
-
<title>neko-ui [
|
|
6
|
+
<title>neko-ui [2 Sep 2023 at 11:47]</title>
|
|
7
7
|
<link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABrVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+O1foceMD///+J0/qK1Pr7/v8Xdr/9///W8P4UdL7L7P0Scr2r4Pyj3vwad8D5/f/2/f+55f3E6f34+/2H0/ojfMKpzOd0rNgQcb3F3O/j9f7c8v6g3Pz0/P/w+v/q+P7n9v6T1/uQ1vuE0vqLut/y+v+Z2fvt+f+15Pzv9fuc2/vR7v2V2Pvd6/bg9P7I6/285/2y4/yp3/zp8vk8i8kqgMT7/P31+fyv4vxGkcz6/P6/6P3j7vfS5PNnpNUxhcbO7f7F6v3O4vHK3/DA2u631Ouy0eqXweKJud5wqthfoNMMbLvY8f73+v2dxeR8sNtTmdDx9/zX6PSjyeaCtd1YnNGX2PuQveCGt95Nls42h8dLlM3F4vBtAAAAM3RSTlMAAyOx0/sKBvik8opWGBMOAe3l1snDm2E9LSb06eHcu5JpHbarfHZCN9CBb08zzkdNS0kYaptYAAAFV0lEQVRYw92X51/aYBDHHS2O2qqttVbrqNq9m+TJIAYIShBkWwqIiCgoWvfeq7Z2/s29hyQNyUcR7LveGwVyXy6XH8/9rqxglLfUPLxVduUor3h0rfp2TYvpivk37929TkG037hffoX0+peVtZQc1589rigVUdXS/ABSAyEmGIO/1XfvldSK8vs3OqB6u3m0nxmIrvgB0dj7rr7Y9IbuF68hnfFaiHA/sxqm0wciIG43P60qKv9WXWc1RXGh/mFESFABTSBi0sNAKzqet17eCtOb3kZIDwxEEU0oAIJGYxNBDhBND29e0rtXXbcpuPmED9IhEAAQ/AXEaF8EPmnrrKsv0LvWR3fg5sWDNAFZOgAgaKvZDogHNU9MFwnnYROkc56RD5CjAbQX9Ow4g7upCsvYu55aSI/Nj0H1akgKQEUM94dwK65hYRmFU9MIcH/fqJYOZYcnuJSU/waKDgTOEVaVKhwrTRP5XzgSpAITYzom7UvkhFX5VutmxeNnWDjjswTKTyfgluNDGbUpWissXhF3s7mlSml+czWkg3D0l1nNjGNjz3myOQOa1KM/jOS6ebdbAVTCi4gljHSFrviza7tOgRWcS0MOUX9zdNgag5w7rRqA44Lzw0hr1WqES36dFliSJFlh2rXIae3FFcDDgKdxrUIDePr8jGcSClV1u7A9xeN0ModY/pHMxmR1EzRh8TJiwqsHmKW0l4FCEZI+jHio+JdPPE9qwQtTRxku2D8sIeRL2LnxWSllANCQGOIiqVHAz2ye2JR0DcH+HoxDkaADLjgxjKQ+AwCX/g0+DNgdG0ukYCONAe+dbc2IAc6fwt1ARoDSezNHxV2Cmzwv3O6lDMV55edBGwGK9n1+x2F8EDfAGCxug8MhpsMEcTEAWf3rx2vZhe/LAmtIn/6apE6PN0ULKgywD9mmdxbmFl3OvD5AS5fW5zLbv/YHmcsBTjf/afDz3MaZTVCfAP9z6/Bw6ycv8EUBWJIn9zYcoAWWlW9+OzO3vkTy8H+RANLmdrpOuYWdZYEXpo+TlCJrW5EARb7fF+bWdqf3hhyZI1nWJQHgznErZhbjoEsWqi8dQNoE294aldzFurwSABL2XXMf9+H1VQGke9exw5P/AnA5Pv5ngMul7LOvO922iwACu8WkCwLCafvM4CeWPxfA8lNHcWZSoi8EwMAIciKX2Z4SWCMAa3snCZ/G4EA8D6CMLNFsGQhkkz/gQNEBbPCbWsxGUpYVu3z8IyNAknwJkfPMEhLyrdi5RTyUVACkw4GSFRNWJNEW+fgPGwHD8/JxnRuLabN4CGNRkAE23na2+VmEAUmrYymSGjMAYqH84YUIyzgzs3XC7gNgH36Vcc4zKY9o9fgPBXUAiHHwVboBHGLiX6Zcjp1f2wu4tvzZKo0ecPnDtQYDQvJXaBeNzce45Fp28ZQLrEZVuFqgBwOalArKXnW1UzlnSusQKJqKYNuz4tOnI6sZG4zanpemv+7ySU2jbA9h6uhcgpfy6G2PahirDZ6zvq6zDduMVFTKvzw8wgyEdelwY9in3XkEPs3osJuwRQ4qTkfzifndg9Gfc4pdsu82+tTnHZTBa2EAMrqr2t43pguc8tNm7JQVQ2S0ukj2d22dhXYP0/veWtwKrCkNoNimAN5+Xr/oLrxswKbVJjteWrX7eR63o4j9q0GxnaBdWgGA5VStpanIjQmEhV0/nVt5VOFUvix6awJhPcAaTEShgrG+iGyvb5a0Ndb1YGHFPEwoqAinoaykaID1o1pdPNu7XsnCKQ3R+hwWIIhGvORcJUBYXe3Xa3vq/mF/N9V13ugufMkfXn+KHsRD0B8AAAAASUVORK5CYII=" type="image/x-icon" />
|
|
8
8
|
|
|
9
9
|
<script>
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
<body>
|
|
32
32
|
<div id="app"></div>
|
|
33
33
|
<script>
|
|
34
|
-
window.chartData = [{"label":"index.js","isAsset":true,"statSize":601359.64,"parsedSize":360593,"gzipSize":107053,"groups":[{"label":"components","path":"./components","statSize":492447.64,"groups":[{"id":"./components/index.ts","label":"index.ts + 86 modules (concatenated)","path":"./components/index.ts + 86 modules (concatenated)","statSize":422186.64,"parsedSize":359585,"gzipSize":107053,"concatenated":true,"groups":[{"label":"components","path":"./components/index.ts + 86 modules (concatenated)/components","statSize":335535.64,"groups":[{"id":null,"label":"index.ts","path":"./components/index.ts + 86 modules (concatenated)/components/index.ts","statSize":2032,"parsedSize":1730,"gzipSize":515,"inaccurateSizes":true},{"label":"avatar","path":"./components/index.ts + 86 modules (concatenated)/components/avatar","statSize":23816.64,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/avatar/index.tsx","statSize":5784,"parsedSize":4926,"gzipSize":1466,"inaccurateSizes":true},{"id":null,"label":"group.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/avatar/group.tsx","statSize":4070,"parsedSize":3466,"gzipSize":1032,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/avatar/style.ts","statSize":1202,"parsedSize":1023,"gzipSize":304,"inaccurateSizes":true},{"id":null,"label":"favicon.svg","path":"./components/index.ts + 86 modules (concatenated)/components/avatar/favicon.svg","statSize":12760.640000000001,"parsedSize":10868,"gzipSize":3235,"inaccurateSizes":true}],"parsedSize":20285,"gzipSize":6039,"inaccurateSizes":true},{"label":"theme","path":"./components/index.ts + 86 modules (concatenated)/components/theme","statSize":5994,"groups":[{"id":null,"label":"index.ts","path":"./components/index.ts + 86 modules (concatenated)/components/theme/index.ts","statSize":5994,"parsedSize":5105,"gzipSize":1519,"inaccurateSizes":true}],"parsedSize":5105,"gzipSize":1519,"inaccurateSizes":true},{"label":"popover","path":"./components/index.ts + 86 modules (concatenated)/components/popover","statSize":12617,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/popover/index.tsx","statSize":10123,"parsedSize":8621,"gzipSize":2566,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/popover/style.ts","statSize":2494,"parsedSize":2124,"gzipSize":632,"inaccurateSizes":true}],"parsedSize":10746,"gzipSize":3199,"inaccurateSizes":true},{"label":"back-top","path":"./components/index.ts + 86 modules (concatenated)/components/back-top","statSize":5537,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/back-top/index.tsx","statSize":4288,"parsedSize":3652,"gzipSize":1087,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/back-top/style.ts","statSize":1249,"parsedSize":1063,"gzipSize":316,"inaccurateSizes":true}],"parsedSize":4715,"gzipSize":1404,"inaccurateSizes":true},{"label":"basic-config","path":"./components/index.ts + 86 modules (concatenated)/components/basic-config","statSize":890,"groups":[{"id":null,"label":"index.ts","path":"./components/index.ts + 86 modules (concatenated)/components/basic-config/index.ts","statSize":890,"parsedSize":758,"gzipSize":225,"inaccurateSizes":true}],"parsedSize":758,"gzipSize":225,"inaccurateSizes":true},{"label":"button","path":"./components/index.ts + 86 modules (concatenated)/components/button","statSize":7274,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/button/index.tsx","statSize":3366,"parsedSize":2866,"gzipSize":853,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/button/style.ts","statSize":3908,"parsedSize":3328,"gzipSize":990,"inaccurateSizes":true}],"parsedSize":6195,"gzipSize":1844,"inaccurateSizes":true},{"label":"capture-screen","path":"./components/index.ts + 86 modules (concatenated)/components/capture-screen","statSize":11784,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/capture-screen/index.tsx","statSize":10783,"parsedSize":9184,"gzipSize":2734,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/capture-screen/style.ts","statSize":1001,"parsedSize":852,"gzipSize":253,"inaccurateSizes":true}],"parsedSize":10036,"gzipSize":2988,"inaccurateSizes":true},{"label":"carousel","path":"./components/index.ts + 86 modules (concatenated)/components/carousel","statSize":8375,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/carousel/index.tsx","statSize":6015,"parsedSize":5123,"gzipSize":1525,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/carousel/style.ts","statSize":2360,"parsedSize":2010,"gzipSize":598,"inaccurateSizes":true}],"parsedSize":7133,"gzipSize":2123,"inaccurateSizes":true},{"label":"checkbox","path":"./components/index.ts + 86 modules (concatenated)/components/checkbox","statSize":8787,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/checkbox/index.tsx","statSize":6280,"parsedSize":5348,"gzipSize":1592,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/checkbox/style.ts","statSize":2507,"parsedSize":2135,"gzipSize":635,"inaccurateSizes":true}],"parsedSize":7484,"gzipSize":2228,"inaccurateSizes":true},{"label":"get-options","path":"./components/index.ts + 86 modules (concatenated)/components/get-options","statSize":987,"groups":[{"id":null,"label":"index.ts","path":"./components/index.ts + 86 modules (concatenated)/components/get-options/index.ts","statSize":987,"parsedSize":840,"gzipSize":250,"inaccurateSizes":true}],"parsedSize":840,"gzipSize":250,"inaccurateSizes":true},{"label":"code","path":"./components/index.ts + 86 modules (concatenated)/components/code","statSize":6224,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/code/index.tsx","statSize":5226,"parsedSize":4451,"gzipSize":1325,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/code/style.ts","statSize":998,"parsedSize":850,"gzipSize":253,"inaccurateSizes":true}],"parsedSize":5301,"gzipSize":1578,"inaccurateSizes":true},{"label":"color-palette","path":"./components/index.ts + 86 modules (concatenated)/components/color-palette","statSize":14728,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/color-palette/index.tsx","statSize":10449,"parsedSize":8899,"gzipSize":2649,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/color-palette/style.ts","statSize":4279,"parsedSize":3644,"gzipSize":1085,"inaccurateSizes":true}],"parsedSize":12544,"gzipSize":3734,"inaccurateSizes":true},{"label":"dropdown","path":"./components/index.ts + 86 modules (concatenated)/components/dropdown","statSize":5217,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/dropdown/index.tsx","statSize":5217,"parsedSize":4443,"gzipSize":1322,"inaccurateSizes":true}],"parsedSize":4443,"gzipSize":1322,"inaccurateSizes":true},{"label":"empty","path":"./components/index.ts + 86 modules (concatenated)/components/empty","statSize":1468,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/empty/index.tsx","statSize":1468,"parsedSize":1250,"gzipSize":372,"inaccurateSizes":true}],"parsedSize":1250,"gzipSize":372,"inaccurateSizes":true},{"label":"input","path":"./components/index.ts + 86 modules (concatenated)/components/input","statSize":8438,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/input/index.tsx","statSize":5490,"parsedSize":4675,"gzipSize":1392,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/input/style.ts","statSize":2948,"parsedSize":2510,"gzipSize":747,"inaccurateSizes":true}],"parsedSize":7186,"gzipSize":2139,"inaccurateSizes":true},{"label":"input-number","path":"./components/index.ts + 86 modules (concatenated)/components/input-number","statSize":3290,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/input-number/index.tsx","statSize":3290,"parsedSize":2802,"gzipSize":834,"inaccurateSizes":true}],"parsedSize":2802,"gzipSize":834,"inaccurateSizes":true},{"label":"color-picker","path":"./components/index.ts + 86 modules (concatenated)/components/color-picker","statSize":3078,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/color-picker/index.tsx","statSize":2410,"parsedSize":2052,"gzipSize":611,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/color-picker/style.ts","statSize":668,"parsedSize":568,"gzipSize":169,"inaccurateSizes":true}],"parsedSize":2621,"gzipSize":780,"inaccurateSizes":true},{"label":"cron","path":"./components/index.ts + 86 modules (concatenated)/components/cron","statSize":33531,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/index.tsx","statSize":9374,"parsedSize":7984,"gzipSize":2376,"inaccurateSizes":true},{"id":null,"label":"day.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/day.tsx","statSize":3113,"parsedSize":2651,"gzipSize":789,"inaccurateSizes":true},{"id":null,"label":"hour.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/hour.tsx","statSize":2056,"parsedSize":1751,"gzipSize":521,"inaccurateSizes":true},{"id":null,"label":"minute.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/minute.tsx","statSize":2071,"parsedSize":1763,"gzipSize":525,"inaccurateSizes":true},{"id":null,"label":"month.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/month.tsx","statSize":2084,"parsedSize":1774,"gzipSize":528,"inaccurateSizes":true},{"id":null,"label":"second.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/second.tsx","statSize":2070,"parsedSize":1763,"gzipSize":524,"inaccurateSizes":true},{"id":null,"label":"week.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/week.tsx","statSize":3258,"parsedSize":2774,"gzipSize":826,"inaccurateSizes":true},{"id":null,"label":"year.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/year.tsx","statSize":2980,"parsedSize":2538,"gzipSize":755,"inaccurateSizes":true},{"id":null,"label":"begin-interval.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/begin-interval.tsx","statSize":2016,"parsedSize":1717,"gzipSize":511,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/cron/style.ts","statSize":559,"parsedSize":476,"gzipSize":141,"inaccurateSizes":true},{"id":null,"label":"period.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/period.tsx","statSize":1997,"parsedSize":1700,"gzipSize":506,"inaccurateSizes":true},{"id":null,"label":"some.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/some.tsx","statSize":1265,"parsedSize":1077,"gzipSize":320,"inaccurateSizes":true},{"id":null,"label":"item.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/item.tsx","statSize":688,"parsedSize":585,"gzipSize":174,"inaccurateSizes":true}],"parsedSize":28559,"gzipSize":8502,"inaccurateSizes":true},{"label":"date-picker","path":"./components/index.ts + 86 modules (concatenated)/components/date-picker","statSize":26962,"groups":[{"id":null,"label":"dayjs.ts","path":"./components/index.ts + 86 modules (concatenated)/components/date-picker/dayjs.ts","statSize":174,"parsedSize":148,"gzipSize":44,"inaccurateSizes":true},{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/date-picker/index.tsx","statSize":5979,"parsedSize":5092,"gzipSize":1516,"inaccurateSizes":true},{"id":null,"label":"panel.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/date-picker/panel.tsx","statSize":9251,"parsedSize":7879,"gzipSize":2345,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/date-picker/style.ts","statSize":2003,"parsedSize":1705,"gzipSize":507,"inaccurateSizes":true},{"id":null,"label":"time.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/date-picker/time.tsx","statSize":2977,"parsedSize":2535,"gzipSize":754,"inaccurateSizes":true},{"id":null,"label":"month.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/date-picker/month.tsx","statSize":1693,"parsedSize":1441,"gzipSize":429,"inaccurateSizes":true},{"id":null,"label":"date.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/date-picker/date.tsx","statSize":3067,"parsedSize":2612,"gzipSize":777,"inaccurateSizes":true},{"id":null,"label":"year.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/date-picker/year.tsx","statSize":1818,"parsedSize":1548,"gzipSize":460,"inaccurateSizes":true}],"parsedSize":22964,"gzipSize":6836,"inaccurateSizes":true},{"label":"from-schema","path":"./components/index.ts + 86 modules (concatenated)/components/from-schema","statSize":1162,"groups":[{"id":null,"label":"index.ts","path":"./components/index.ts + 86 modules (concatenated)/components/from-schema/index.ts","statSize":1162,"parsedSize":989,"gzipSize":294,"inaccurateSizes":true}],"parsedSize":989,"gzipSize":294,"inaccurateSizes":true},{"label":"highlight-text","path":"./components/index.ts + 86 modules (concatenated)/components/highlight-text","statSize":3824,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/highlight-text/index.tsx","statSize":3824,"parsedSize":3256,"gzipSize":969,"inaccurateSizes":true}],"parsedSize":3256,"gzipSize":969,"inaccurateSizes":true},{"label":"img","path":"./components/index.ts + 86 modules (concatenated)/components/img","statSize":6722,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/img/index.tsx","statSize":5415,"parsedSize":4612,"gzipSize":1373,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/img/style.ts","statSize":1307,"parsedSize":1113,"gzipSize":331,"inaccurateSizes":true}],"parsedSize":5725,"gzipSize":1704,"inaccurateSizes":true},{"label":"md","path":"./components/index.ts + 86 modules (concatenated)/components/md","statSize":15337,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/md/index.tsx","statSize":6295,"parsedSize":5361,"gzipSize":1596,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/md/style.ts","statSize":9042,"parsedSize":7701,"gzipSize":2292,"inaccurateSizes":true}],"parsedSize":13062,"gzipSize":3888,"inaccurateSizes":true},{"label":"menu","path":"./components/index.ts + 86 modules (concatenated)/components/menu","statSize":15077,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/menu/index.tsx","statSize":11508,"parsedSize":9801,"gzipSize":2918,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/menu/style.ts","statSize":3569,"parsedSize":3039,"gzipSize":904,"inaccurateSizes":true}],"parsedSize":12841,"gzipSize":3823,"inaccurateSizes":true},{"label":"pagination","path":"./components/index.ts + 86 modules (concatenated)/components/pagination","statSize":9248,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/pagination/index.tsx","statSize":8277,"parsedSize":7049,"gzipSize":2098,"inaccurateSizes":true},{"id":null,"label":"styles.ts","path":"./components/index.ts + 86 modules (concatenated)/components/pagination/styles.ts","statSize":971,"parsedSize":827,"gzipSize":246,"inaccurateSizes":true}],"parsedSize":7876,"gzipSize":2344,"inaccurateSizes":true},{"label":"radio","path":"./components/index.ts + 86 modules (concatenated)/components/radio","statSize":6170,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/radio/index.tsx","statSize":4178,"parsedSize":3558,"gzipSize":1059,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/radio/style.ts","statSize":1992,"parsedSize":1696,"gzipSize":505,"inaccurateSizes":true}],"parsedSize":5255,"gzipSize":1564,"inaccurateSizes":true},{"label":"segmented","path":"./components/index.ts + 86 modules (concatenated)/components/segmented","statSize":7808,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/segmented/index.tsx","statSize":6211,"parsedSize":5290,"gzipSize":1574,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/segmented/style.ts","statSize":1597,"parsedSize":1360,"gzipSize":404,"inaccurateSizes":true}],"parsedSize":6650,"gzipSize":1979,"inaccurateSizes":true},{"label":"select","path":"./components/index.ts + 86 modules (concatenated)/components/select","statSize":13105,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/select/index.tsx","statSize":11017,"parsedSize":9383,"gzipSize":2793,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/select/style.ts","statSize":2088,"parsedSize":1778,"gzipSize":529,"inaccurateSizes":true}],"parsedSize":11161,"gzipSize":3323,"inaccurateSizes":true},{"label":"skeleton","path":"./components/index.ts + 86 modules (concatenated)/components/skeleton","statSize":4018,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/skeleton/index.tsx","statSize":4018,"parsedSize":3422,"gzipSize":1018,"inaccurateSizes":true}],"parsedSize":3422,"gzipSize":1018,"inaccurateSizes":true},{"label":"spin","path":"./components/index.ts + 86 modules (concatenated)/components/spin","statSize":1953,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/spin/index.tsx","statSize":1953,"parsedSize":1663,"gzipSize":495,"inaccurateSizes":true}],"parsedSize":1663,"gzipSize":495,"inaccurateSizes":true},{"label":"switch","path":"./components/index.ts + 86 modules (concatenated)/components/switch","statSize":5466,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/switch/index.tsx","statSize":3044,"parsedSize":2592,"gzipSize":771,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/switch/style.ts","statSize":2422,"parsedSize":2062,"gzipSize":614,"inaccurateSizes":true}],"parsedSize":4655,"gzipSize":1386,"inaccurateSizes":true},{"label":"table","path":"./components/index.ts + 86 modules (concatenated)/components/table","statSize":13071,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/table/index.tsx","statSize":11270,"parsedSize":9598,"gzipSize":2857,"inaccurateSizes":true},{"id":null,"label":"styles.ts","path":"./components/index.ts + 86 modules (concatenated)/components/table/styles.ts","statSize":1801,"parsedSize":1533,"gzipSize":456,"inaccurateSizes":true}],"parsedSize":11132,"gzipSize":3314,"inaccurateSizes":true},{"label":"tabs","path":"./components/index.ts + 86 modules (concatenated)/components/tabs","statSize":13387,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/tabs/index.tsx","statSize":10824,"parsedSize":9219,"gzipSize":2744,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/tabs/style.ts","statSize":2563,"parsedSize":2182,"gzipSize":649,"inaccurateSizes":true}],"parsedSize":11401,"gzipSize":3394,"inaccurateSizes":true},{"label":"tag","path":"./components/index.ts + 86 modules (concatenated)/components/tag","statSize":4615,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/tag/index.tsx","statSize":3635,"parsedSize":3096,"gzipSize":921,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/tag/style.ts","statSize":980,"parsedSize":834,"gzipSize":248,"inaccurateSizes":true}],"parsedSize":3930,"gzipSize":1170,"inaccurateSizes":true},{"label":"tree","path":"./components/index.ts + 86 modules (concatenated)/components/tree","statSize":11481,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/tree/index.tsx","statSize":9227,"parsedSize":7858,"gzipSize":2339,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/tree/style.ts","statSize":2254,"parsedSize":1919,"gzipSize":571,"inaccurateSizes":true}],"parsedSize":9778,"gzipSize":2911,"inaccurateSizes":true},{"label":"typography","path":"./components/index.ts + 86 modules (concatenated)/components/typography","statSize":2205,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/typography/index.tsx","statSize":2205,"parsedSize":1878,"gzipSize":559,"inaccurateSizes":true}],"parsedSize":1878,"gzipSize":559,"inaccurateSizes":true},{"label":"provider","path":"./components/index.ts + 86 modules (concatenated)/components/provider","statSize":1049,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/provider/index.tsx","statSize":1049,"parsedSize":893,"gzipSize":265,"inaccurateSizes":true}],"parsedSize":893,"gzipSize":265,"inaccurateSizes":true},{"label":"prism","path":"./components/index.ts + 86 modules (concatenated)/components/prism","statSize":8808,"groups":[{"id":null,"label":"index.ts","path":"./components/index.ts + 86 modules (concatenated)/components/prism/index.ts","statSize":8808,"parsedSize":7501,"gzipSize":2233,"inaccurateSizes":true}],"parsedSize":7501,"gzipSize":2233,"inaccurateSizes":true}],"parsedSize":285782,"gzipSize":85081,"inaccurateSizes":true},{"label":"node_modules","path":"./components/index.ts + 86 modules (concatenated)/node_modules","statSize":86651,"groups":[{"label":"solid-element/dist","path":"./components/index.ts + 86 modules (concatenated)/node_modules/solid-element/dist","statSize":1767,"groups":[{"id":null,"label":"index.js","path":"./components/index.ts + 86 modules (concatenated)/node_modules/solid-element/dist/index.js","statSize":1767,"parsedSize":1504,"gzipSize":448,"inaccurateSizes":true}],"parsedSize":1504,"gzipSize":448,"inaccurateSizes":true},{"label":"component-register/dist","path":"./components/index.ts + 86 modules (concatenated)/node_modules/component-register/dist","statSize":8994,"groups":[{"id":null,"label":"component-register.js","path":"./components/index.ts + 86 modules (concatenated)/node_modules/component-register/dist/component-register.js","statSize":8994,"parsedSize":7660,"gzipSize":2280,"inaccurateSizes":true}],"parsedSize":7660,"gzipSize":2280,"inaccurateSizes":true},{"label":"solid-js","path":"./components/index.ts + 86 modules (concatenated)/node_modules/solid-js","statSize":75890,"groups":[{"label":"web/dist","path":"./components/index.ts + 86 modules (concatenated)/node_modules/solid-js/web/dist","statSize":26382,"groups":[{"id":null,"label":"web.js","path":"./components/index.ts + 86 modules (concatenated)/node_modules/solid-js/web/dist/web.js","statSize":26382,"parsedSize":22470,"gzipSize":6689,"inaccurateSizes":true}],"parsedSize":22470,"gzipSize":6689,"inaccurateSizes":true},{"label":"dist","path":"./components/index.ts + 86 modules (concatenated)/node_modules/solid-js/dist","statSize":49508,"groups":[{"id":null,"label":"solid.js","path":"./components/index.ts + 86 modules (concatenated)/node_modules/solid-js/dist/solid.js","statSize":49508,"parsedSize":42166,"gzipSize":12553,"inaccurateSizes":true}],"parsedSize":42166,"gzipSize":12553,"inaccurateSizes":true}],"parsedSize":64637,"gzipSize":19243,"inaccurateSizes":true}],"parsedSize":73802,"gzipSize":21971,"inaccurateSizes":true}]},{"label":"prism","path":"./components/prism","statSize":70261,"groups":[{"id":"./components/prism/prism.js","label":"prism.js","path":"./components/prism/prism.js","statSize":70261}],"parsedSize":0,"gzipSize":0}],"parsedSize":359585,"gzipSize":107053},{"label":"node_modules","path":"./node_modules","statSize":108912,"groups":[{"label":"@emotion","path":"./node_modules/@emotion","statSize":18647,"groups":[{"label":"serialize/dist","path":"./node_modules/@emotion/serialize/dist","statSize":13871,"groups":[{"id":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js","label":"emotion-serialize.browser.esm.js + 3 modules (concatenated)","path":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js + 3 modules (concatenated)","statSize":13871,"parsedSize":0,"gzipSize":0,"concatenated":true,"groups":[{"label":"node_modules/@emotion","path":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js + 3 modules (concatenated)/node_modules/@emotion","statSize":13871,"groups":[{"label":"serialize/dist","path":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js + 3 modules (concatenated)/node_modules/@emotion/serialize/dist","statSize":11090,"groups":[{"id":null,"label":"emotion-serialize.browser.esm.js","path":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js + 3 modules (concatenated)/node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js","statSize":11090,"parsedSize":0,"gzipSize":0,"inaccurateSizes":true}],"parsedSize":0,"gzipSize":0,"inaccurateSizes":true},{"label":"unitless/dist","path":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js + 3 modules (concatenated)/node_modules/@emotion/unitless/dist","statSize":924,"groups":[{"id":null,"label":"emotion-unitless.esm.js","path":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js + 3 modules (concatenated)/node_modules/@emotion/unitless/dist/emotion-unitless.esm.js","statSize":924,"parsedSize":0,"gzipSize":0,"inaccurateSizes":true}],"parsedSize":0,"gzipSize":0,"inaccurateSizes":true},{"label":"memoize/dist","path":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js + 3 modules (concatenated)/node_modules/@emotion/memoize/dist","statSize":202,"groups":[{"id":null,"label":"emotion-memoize.esm.js","path":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js + 3 modules (concatenated)/node_modules/@emotion/memoize/dist/emotion-memoize.esm.js","statSize":202,"parsedSize":0,"gzipSize":0,"inaccurateSizes":true}],"parsedSize":0,"gzipSize":0,"inaccurateSizes":true},{"label":"hash/dist","path":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js + 3 modules (concatenated)/node_modules/@emotion/hash/dist","statSize":1655,"groups":[{"id":null,"label":"emotion-hash.esm.js","path":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js + 3 modules (concatenated)/node_modules/@emotion/hash/dist/emotion-hash.esm.js","statSize":1655,"parsedSize":0,"gzipSize":0,"inaccurateSizes":true}],"parsedSize":0,"gzipSize":0,"inaccurateSizes":true}],"parsedSize":0,"gzipSize":0,"inaccurateSizes":true}]}],"parsedSize":0,"gzipSize":0},{"label":"sheet/dist","path":"./node_modules/@emotion/sheet/dist","statSize":4776,"groups":[{"id":"./node_modules/@emotion/sheet/dist/emotion-sheet.browser.esm.js","label":"emotion-sheet.browser.esm.js","path":"./node_modules/@emotion/sheet/dist/emotion-sheet.browser.esm.js","statSize":4776}],"parsedSize":0,"gzipSize":0}],"parsedSize":0,"gzipSize":0},{"label":"@moneko","path":"./node_modules/@moneko","statSize":26307,"groups":[{"label":"common/lib","path":"./node_modules/@moneko/common/lib","statSize":24701,"groups":[{"id":"./node_modules/@moneko/common/lib/cloneDeep.js","label":"cloneDeep.js","path":"./node_modules/@moneko/common/lib/cloneDeep.js","statSize":199},{"id":"./node_modules/@moneko/common/lib/cmykToHsv.js","label":"cmykToHsv.js","path":"./node_modules/@moneko/common/lib/cmykToHsv.js","statSize":542},{"id":"./node_modules/@moneko/common/lib/colorParse.js","label":"colorParse.js","path":"./node_modules/@moneko/common/lib/colorParse.js","statSize":2885},{"id":"./node_modules/@moneko/common/lib/downloadBlob.js","label":"downloadBlob.js","path":"./node_modules/@moneko/common/lib/downloadBlob.js","statSize":436},{"id":"./node_modules/@moneko/common/lib/entityToString.js","label":"entityToString.js","path":"./node_modules/@moneko/common/lib/entityToString.js","statSize":257},{"id":"./node_modules/@moneko/common/lib/fullscreen.js","label":"fullscreen.js","path":"./node_modules/@moneko/common/lib/fullscreen.js","statSize":798},{"id":"./node_modules/@moneko/common/lib/getClientSize.js","label":"getClientSize.js","path":"./node_modules/@moneko/common/lib/getClientSize.js","statSize":445},{"id":"./node_modules/@moneko/common/lib/getColorContrast.js","label":"getColorContrast.js","path":"./node_modules/@moneko/common/lib/getColorContrast.js","statSize":389},{"id":"./node_modules/@moneko/common/lib/getDataType.js","label":"getDataType.js","path":"./node_modules/@moneko/common/lib/getDataType.js","statSize":210},{"id":"./node_modules/@moneko/common/lib/getMaxZindex.js","label":"getMaxZindex.js","path":"./node_modules/@moneko/common/lib/getMaxZindex.js","statSize":347},{"id":"./node_modules/@moneko/common/lib/getPrefixCls.js","label":"getPrefixCls.js","path":"./node_modules/@moneko/common/lib/getPrefixCls.js","statSize":186},{"id":"./node_modules/@moneko/common/lib/getScrollTop.js","label":"getScrollTop.js","path":"./node_modules/@moneko/common/lib/getScrollTop.js","statSize":470},{"id":"./node_modules/@moneko/common/lib/hexToHsv.js","label":"hexToHsv.js","path":"./node_modules/@moneko/common/lib/hexToHsv.js","statSize":600},{"id":"./node_modules/@moneko/common/lib/hslToHsv.js","label":"hslToHsv.js","path":"./node_modules/@moneko/common/lib/hslToHsv.js","statSize":490},{"id":"./node_modules/@moneko/common/lib/hsvToCmyk.js","label":"hsvToCmyk.js","path":"./node_modules/@moneko/common/lib/hsvToCmyk.js","statSize":625},{"id":"./node_modules/@moneko/common/lib/hsvToHex.js","label":"hsvToHex.js","path":"./node_modules/@moneko/common/lib/hsvToHex.js","statSize":316},{"id":"./node_modules/@moneko/common/lib/hsvToHsl.js","label":"hsvToHsl.js","path":"./node_modules/@moneko/common/lib/hsvToHsl.js","statSize":522},{"id":"./node_modules/@moneko/common/lib/hsvToRgb.js","label":"hsvToRgb.js","path":"./node_modules/@moneko/common/lib/hsvToRgb.js","statSize":562},{"id":"./node_modules/@moneko/common/lib/hsvaToString.js","label":"hsvaToString.js","path":"./node_modules/@moneko/common/lib/hsvaToString.js","statSize":276},{"id":"./node_modules/@moneko/common/lib/index.js","label":"index.js","path":"./node_modules/@moneko/common/lib/index.js","statSize":2878},{"id":"./node_modules/@moneko/common/lib/isColor.js","label":"isColor.js","path":"./node_modules/@moneko/common/lib/isColor.js","statSize":655},{"id":"./node_modules/@moneko/common/lib/isElementInside.js","label":"isElementInside.js","path":"./node_modules/@moneko/common/lib/isElementInside.js","statSize":369},{"id":"./node_modules/@moneko/common/lib/isEqual.js","label":"isEqual.js","path":"./node_modules/@moneko/common/lib/isEqual.js","statSize":725},{"id":"./node_modules/@moneko/common/lib/isFunction.js","label":"isFunction.js","path":"./node_modules/@moneko/common/lib/isFunction.js","statSize":312},{"id":"./node_modules/@moneko/common/lib/isObject.js","label":"isObject.js","path":"./node_modules/@moneko/common/lib/isObject.js","statSize":316},{"id":"./node_modules/@moneko/common/lib/isString.js","label":"isString.js","path":"./node_modules/@moneko/common/lib/isString.js","statSize":309},{"id":"./node_modules/@moneko/common/lib/isSvgElement.js","label":"isSvgElement.js","path":"./node_modules/@moneko/common/lib/isSvgElement.js","statSize":336},{"id":"./node_modules/@moneko/common/lib/isUndefined.js","label":"isUndefined.js","path":"./node_modules/@moneko/common/lib/isUndefined.js","statSize":187},{"id":"./node_modules/@moneko/common/lib/mixColor.js","label":"mixColor.js","path":"./node_modules/@moneko/common/lib/mixColor.js","statSize":454},{"id":"./node_modules/@moneko/common/lib/passiveSupported.js","label":"passiveSupported.js","path":"./node_modules/@moneko/common/lib/passiveSupported.js","statSize":311},{"id":"./node_modules/@moneko/common/lib/persistence.js","label":"persistence.js","path":"./node_modules/@moneko/common/lib/persistence.js","statSize":650},{"id":"./node_modules/@moneko/common/lib/rgbToHex.js","label":"rgbToHex.js","path":"./node_modules/@moneko/common/lib/rgbToHex.js","statSize":479},{"id":"./node_modules/@moneko/common/lib/rgbToHsv.js","label":"rgbToHsv.js","path":"./node_modules/@moneko/common/lib/rgbToHsv.js","statSize":678},{"id":"./node_modules/@moneko/common/lib/setClipboard.js","label":"setClipboard.js","path":"./node_modules/@moneko/common/lib/setClipboard.js","statSize":892},{"id":"./node_modules/@moneko/common/lib/stringToBase64Url.js","label":"stringToBase64Url.js","path":"./node_modules/@moneko/common/lib/stringToBase64Url.js","statSize":647},{"id":"./node_modules/@moneko/common/lib/throttle.js","label":"throttle.js","path":"./node_modules/@moneko/common/lib/throttle.js","statSize":604},{"id":"./node_modules/@moneko/common/lib/toneColor.js","label":"toneColor.js","path":"./node_modules/@moneko/common/lib/toneColor.js","statSize":1057},{"id":"./node_modules/@moneko/common/lib/updateStyleRule.js","label":"updateStyleRule.js","path":"./node_modules/@moneko/common/lib/updateStyleRule.js","statSize":745},{"id":"./node_modules/@moneko/common/lib/watermark.js","label":"watermark.js","path":"./node_modules/@moneko/common/lib/watermark.js","statSize":1542}],"parsedSize":0,"gzipSize":0},{"label":"css","path":"./node_modules/@moneko/css","statSize":1606,"groups":[{"id":"./node_modules/@moneko/css/index.js","label":"index.js","path":"./node_modules/@moneko/css/index.js","statSize":1008},{"id":"./node_modules/@moneko/css/px-to-rem.js","label":"px-to-rem.js","path":"./node_modules/@moneko/css/px-to-rem.js","statSize":598}],"parsedSize":0,"gzipSize":0}],"parsedSize":0,"gzipSize":0},{"label":"dayjs","path":"./node_modules/dayjs","statSize":10653,"groups":[{"id":"./node_modules/dayjs/dayjs.min.js","label":"dayjs.min.js","path":"./node_modules/dayjs/dayjs.min.js","statSize":7107},{"label":"locale","path":"./node_modules/dayjs/locale","statSize":1463,"groups":[{"id":"./node_modules/dayjs/locale/zh-cn.js","label":"zh-cn.js","path":"./node_modules/dayjs/locale/zh-cn.js","statSize":1463}],"parsedSize":0,"gzipSize":0},{"label":"plugin","path":"./node_modules/dayjs/plugin","statSize":2083,"groups":[{"id":"./node_modules/dayjs/plugin/localeData.js","label":"localeData.js","path":"./node_modules/dayjs/plugin/localeData.js","statSize":2083}],"parsedSize":0,"gzipSize":0}],"parsedSize":0,"gzipSize":0},{"label":"marked-completed","path":"./node_modules/marked-completed","statSize":43005,"groups":[{"id":"./node_modules/marked-completed/marked.min.js","label":"marked.min.js","path":"./node_modules/marked-completed/marked.min.js","statSize":43005}],"parsedSize":0,"gzipSize":0},{"label":"stylis/dist/umd","path":"./node_modules/stylis/dist/umd","statSize":10300,"groups":[{"id":"./node_modules/stylis/dist/umd/stylis.js","label":"stylis.js","path":"./node_modules/stylis/dist/umd/stylis.js","statSize":10300}],"parsedSize":0,"gzipSize":0}],"parsedSize":0,"gzipSize":0}],"isInitialByEntrypoint":{"main":true}}];
|
|
34
|
+
window.chartData = [{"label":"index.js","isAsset":true,"statSize":601288.64,"parsedSize":360593,"gzipSize":107053,"groups":[{"label":"components","path":"./components","statSize":492376.64,"groups":[{"id":"./components/index.ts","label":"index.ts + 86 modules (concatenated)","path":"./components/index.ts + 86 modules (concatenated)","statSize":422115.64,"parsedSize":359585,"gzipSize":107053,"concatenated":true,"groups":[{"label":"components","path":"./components/index.ts + 86 modules (concatenated)/components","statSize":335464.64,"groups":[{"id":null,"label":"index.ts","path":"./components/index.ts + 86 modules (concatenated)/components/index.ts","statSize":2032,"parsedSize":1730,"gzipSize":515,"inaccurateSizes":true},{"label":"avatar","path":"./components/index.ts + 86 modules (concatenated)/components/avatar","statSize":23816.64,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/avatar/index.tsx","statSize":5784,"parsedSize":4927,"gzipSize":1466,"inaccurateSizes":true},{"id":null,"label":"group.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/avatar/group.tsx","statSize":4070,"parsedSize":3467,"gzipSize":1032,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/avatar/style.ts","statSize":1202,"parsedSize":1023,"gzipSize":304,"inaccurateSizes":true},{"id":null,"label":"favicon.svg","path":"./components/index.ts + 86 modules (concatenated)/components/avatar/favicon.svg","statSize":12760.640000000001,"parsedSize":10870,"gzipSize":3236,"inaccurateSizes":true}],"parsedSize":20288,"gzipSize":6040,"inaccurateSizes":true},{"label":"theme","path":"./components/index.ts + 86 modules (concatenated)/components/theme","statSize":5994,"groups":[{"id":null,"label":"index.ts","path":"./components/index.ts + 86 modules (concatenated)/components/theme/index.ts","statSize":5994,"parsedSize":5106,"gzipSize":1520,"inaccurateSizes":true}],"parsedSize":5106,"gzipSize":1520,"inaccurateSizes":true},{"label":"popover","path":"./components/index.ts + 86 modules (concatenated)/components/popover","statSize":12617,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/popover/index.tsx","statSize":10123,"parsedSize":8623,"gzipSize":2567,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/popover/style.ts","statSize":2494,"parsedSize":2124,"gzipSize":632,"inaccurateSizes":true}],"parsedSize":10747,"gzipSize":3199,"inaccurateSizes":true},{"label":"back-top","path":"./components/index.ts + 86 modules (concatenated)/components/back-top","statSize":5537,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/back-top/index.tsx","statSize":4288,"parsedSize":3652,"gzipSize":1087,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/back-top/style.ts","statSize":1249,"parsedSize":1063,"gzipSize":316,"inaccurateSizes":true}],"parsedSize":4716,"gzipSize":1404,"inaccurateSizes":true},{"label":"basic-config","path":"./components/index.ts + 86 modules (concatenated)/components/basic-config","statSize":890,"groups":[{"id":null,"label":"index.ts","path":"./components/index.ts + 86 modules (concatenated)/components/basic-config/index.ts","statSize":890,"parsedSize":758,"gzipSize":225,"inaccurateSizes":true}],"parsedSize":758,"gzipSize":225,"inaccurateSizes":true},{"label":"button","path":"./components/index.ts + 86 modules (concatenated)/components/button","statSize":7274,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/button/index.tsx","statSize":3366,"parsedSize":2867,"gzipSize":853,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/button/style.ts","statSize":3908,"parsedSize":3329,"gzipSize":991,"inaccurateSizes":true}],"parsedSize":6196,"gzipSize":1844,"inaccurateSizes":true},{"label":"capture-screen","path":"./components/index.ts + 86 modules (concatenated)/components/capture-screen","statSize":11784,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/capture-screen/index.tsx","statSize":10783,"parsedSize":9185,"gzipSize":2734,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/capture-screen/style.ts","statSize":1001,"parsedSize":852,"gzipSize":253,"inaccurateSizes":true}],"parsedSize":10038,"gzipSize":2988,"inaccurateSizes":true},{"label":"carousel","path":"./components/index.ts + 86 modules (concatenated)/components/carousel","statSize":8375,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/carousel/index.tsx","statSize":6015,"parsedSize":5123,"gzipSize":1525,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/carousel/style.ts","statSize":2360,"parsedSize":2010,"gzipSize":598,"inaccurateSizes":true}],"parsedSize":7134,"gzipSize":2123,"inaccurateSizes":true},{"label":"checkbox","path":"./components/index.ts + 86 modules (concatenated)/components/checkbox","statSize":8787,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/checkbox/index.tsx","statSize":6280,"parsedSize":5349,"gzipSize":1592,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/checkbox/style.ts","statSize":2507,"parsedSize":2135,"gzipSize":635,"inaccurateSizes":true}],"parsedSize":7485,"gzipSize":2228,"inaccurateSizes":true},{"label":"get-options","path":"./components/index.ts + 86 modules (concatenated)/components/get-options","statSize":987,"groups":[{"id":null,"label":"index.ts","path":"./components/index.ts + 86 modules (concatenated)/components/get-options/index.ts","statSize":987,"parsedSize":840,"gzipSize":250,"inaccurateSizes":true}],"parsedSize":840,"gzipSize":250,"inaccurateSizes":true},{"label":"code","path":"./components/index.ts + 86 modules (concatenated)/components/code","statSize":6224,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/code/index.tsx","statSize":5226,"parsedSize":4451,"gzipSize":1325,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/code/style.ts","statSize":998,"parsedSize":850,"gzipSize":253,"inaccurateSizes":true}],"parsedSize":5301,"gzipSize":1578,"inaccurateSizes":true},{"label":"color-palette","path":"./components/index.ts + 86 modules (concatenated)/components/color-palette","statSize":14657,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/color-palette/index.tsx","statSize":10378,"parsedSize":8840,"gzipSize":2631,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/color-palette/style.ts","statSize":4279,"parsedSize":3645,"gzipSize":1085,"inaccurateSizes":true}],"parsedSize":12485,"gzipSize":3717,"inaccurateSizes":true},{"label":"dropdown","path":"./components/index.ts + 86 modules (concatenated)/components/dropdown","statSize":5217,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/dropdown/index.tsx","statSize":5217,"parsedSize":4444,"gzipSize":1323,"inaccurateSizes":true}],"parsedSize":4444,"gzipSize":1323,"inaccurateSizes":true},{"label":"empty","path":"./components/index.ts + 86 modules (concatenated)/components/empty","statSize":1468,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/empty/index.tsx","statSize":1468,"parsedSize":1250,"gzipSize":372,"inaccurateSizes":true}],"parsedSize":1250,"gzipSize":372,"inaccurateSizes":true},{"label":"input","path":"./components/index.ts + 86 modules (concatenated)/components/input","statSize":8438,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/input/index.tsx","statSize":5490,"parsedSize":4676,"gzipSize":1392,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/input/style.ts","statSize":2948,"parsedSize":2511,"gzipSize":747,"inaccurateSizes":true}],"parsedSize":7188,"gzipSize":2139,"inaccurateSizes":true},{"label":"input-number","path":"./components/index.ts + 86 modules (concatenated)/components/input-number","statSize":3290,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/input-number/index.tsx","statSize":3290,"parsedSize":2802,"gzipSize":834,"inaccurateSizes":true}],"parsedSize":2802,"gzipSize":834,"inaccurateSizes":true},{"label":"color-picker","path":"./components/index.ts + 86 modules (concatenated)/components/color-picker","statSize":3078,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/color-picker/index.tsx","statSize":2410,"parsedSize":2052,"gzipSize":611,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/color-picker/style.ts","statSize":668,"parsedSize":569,"gzipSize":169,"inaccurateSizes":true}],"parsedSize":2622,"gzipSize":780,"inaccurateSizes":true},{"label":"cron","path":"./components/index.ts + 86 modules (concatenated)/components/cron","statSize":33531,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/index.tsx","statSize":9374,"parsedSize":7985,"gzipSize":2377,"inaccurateSizes":true},{"id":null,"label":"day.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/day.tsx","statSize":3113,"parsedSize":2651,"gzipSize":789,"inaccurateSizes":true},{"id":null,"label":"hour.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/hour.tsx","statSize":2056,"parsedSize":1751,"gzipSize":521,"inaccurateSizes":true},{"id":null,"label":"minute.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/minute.tsx","statSize":2071,"parsedSize":1764,"gzipSize":525,"inaccurateSizes":true},{"id":null,"label":"month.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/month.tsx","statSize":2084,"parsedSize":1775,"gzipSize":528,"inaccurateSizes":true},{"id":null,"label":"second.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/second.tsx","statSize":2070,"parsedSize":1763,"gzipSize":524,"inaccurateSizes":true},{"id":null,"label":"week.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/week.tsx","statSize":3258,"parsedSize":2775,"gzipSize":826,"inaccurateSizes":true},{"id":null,"label":"year.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/year.tsx","statSize":2980,"parsedSize":2538,"gzipSize":755,"inaccurateSizes":true},{"id":null,"label":"begin-interval.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/begin-interval.tsx","statSize":2016,"parsedSize":1717,"gzipSize":511,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/cron/style.ts","statSize":559,"parsedSize":476,"gzipSize":141,"inaccurateSizes":true},{"id":null,"label":"period.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/period.tsx","statSize":1997,"parsedSize":1701,"gzipSize":506,"inaccurateSizes":true},{"id":null,"label":"some.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/some.tsx","statSize":1265,"parsedSize":1077,"gzipSize":320,"inaccurateSizes":true},{"id":null,"label":"item.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/cron/item.tsx","statSize":688,"parsedSize":586,"gzipSize":174,"inaccurateSizes":true}],"parsedSize":28563,"gzipSize":8503,"inaccurateSizes":true},{"label":"date-picker","path":"./components/index.ts + 86 modules (concatenated)/components/date-picker","statSize":26962,"groups":[{"id":null,"label":"dayjs.ts","path":"./components/index.ts + 86 modules (concatenated)/components/date-picker/dayjs.ts","statSize":174,"parsedSize":148,"gzipSize":44,"inaccurateSizes":true},{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/date-picker/index.tsx","statSize":5979,"parsedSize":5093,"gzipSize":1516,"inaccurateSizes":true},{"id":null,"label":"panel.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/date-picker/panel.tsx","statSize":9251,"parsedSize":7880,"gzipSize":2346,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/date-picker/style.ts","statSize":2003,"parsedSize":1706,"gzipSize":507,"inaccurateSizes":true},{"id":null,"label":"time.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/date-picker/time.tsx","statSize":2977,"parsedSize":2535,"gzipSize":754,"inaccurateSizes":true},{"id":null,"label":"month.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/date-picker/month.tsx","statSize":1693,"parsedSize":1442,"gzipSize":429,"inaccurateSizes":true},{"id":null,"label":"date.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/date-picker/date.tsx","statSize":3067,"parsedSize":2612,"gzipSize":777,"inaccurateSizes":true},{"id":null,"label":"year.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/date-picker/year.tsx","statSize":1818,"parsedSize":1548,"gzipSize":461,"inaccurateSizes":true}],"parsedSize":22967,"gzipSize":6837,"inaccurateSizes":true},{"label":"from-schema","path":"./components/index.ts + 86 modules (concatenated)/components/from-schema","statSize":1162,"groups":[{"id":null,"label":"index.ts","path":"./components/index.ts + 86 modules (concatenated)/components/from-schema/index.ts","statSize":1162,"parsedSize":989,"gzipSize":294,"inaccurateSizes":true}],"parsedSize":989,"gzipSize":294,"inaccurateSizes":true},{"label":"highlight-text","path":"./components/index.ts + 86 modules (concatenated)/components/highlight-text","statSize":3824,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/highlight-text/index.tsx","statSize":3824,"parsedSize":3257,"gzipSize":969,"inaccurateSizes":true}],"parsedSize":3257,"gzipSize":969,"inaccurateSizes":true},{"label":"img","path":"./components/index.ts + 86 modules (concatenated)/components/img","statSize":6722,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/img/index.tsx","statSize":5415,"parsedSize":4612,"gzipSize":1373,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/img/style.ts","statSize":1307,"parsedSize":1113,"gzipSize":331,"inaccurateSizes":true}],"parsedSize":5726,"gzipSize":1704,"inaccurateSizes":true},{"label":"md","path":"./components/index.ts + 86 modules (concatenated)/components/md","statSize":15337,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/md/index.tsx","statSize":6295,"parsedSize":5362,"gzipSize":1596,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/md/style.ts","statSize":9042,"parsedSize":7702,"gzipSize":2293,"inaccurateSizes":true}],"parsedSize":13065,"gzipSize":3889,"inaccurateSizes":true},{"label":"menu","path":"./components/index.ts + 86 modules (concatenated)/components/menu","statSize":15077,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/menu/index.tsx","statSize":11508,"parsedSize":9803,"gzipSize":2918,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/menu/style.ts","statSize":3569,"parsedSize":3040,"gzipSize":905,"inaccurateSizes":true}],"parsedSize":12843,"gzipSize":3823,"inaccurateSizes":true},{"label":"pagination","path":"./components/index.ts + 86 modules (concatenated)/components/pagination","statSize":9248,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/pagination/index.tsx","statSize":8277,"parsedSize":7050,"gzipSize":2099,"inaccurateSizes":true},{"id":null,"label":"styles.ts","path":"./components/index.ts + 86 modules (concatenated)/components/pagination/styles.ts","statSize":971,"parsedSize":827,"gzipSize":246,"inaccurateSizes":true}],"parsedSize":7878,"gzipSize":2345,"inaccurateSizes":true},{"label":"radio","path":"./components/index.ts + 86 modules (concatenated)/components/radio","statSize":6170,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/radio/index.tsx","statSize":4178,"parsedSize":3559,"gzipSize":1059,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/radio/style.ts","statSize":1992,"parsedSize":1696,"gzipSize":505,"inaccurateSizes":true}],"parsedSize":5255,"gzipSize":1564,"inaccurateSizes":true},{"label":"segmented","path":"./components/index.ts + 86 modules (concatenated)/components/segmented","statSize":7808,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/segmented/index.tsx","statSize":6211,"parsedSize":5290,"gzipSize":1575,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/segmented/style.ts","statSize":1597,"parsedSize":1360,"gzipSize":405,"inaccurateSizes":true}],"parsedSize":6651,"gzipSize":1980,"inaccurateSizes":true},{"label":"select","path":"./components/index.ts + 86 modules (concatenated)/components/select","statSize":13105,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/select/index.tsx","statSize":11017,"parsedSize":9384,"gzipSize":2794,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/select/style.ts","statSize":2088,"parsedSize":1778,"gzipSize":529,"inaccurateSizes":true}],"parsedSize":11163,"gzipSize":3323,"inaccurateSizes":true},{"label":"skeleton","path":"./components/index.ts + 86 modules (concatenated)/components/skeleton","statSize":4018,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/skeleton/index.tsx","statSize":4018,"parsedSize":3422,"gzipSize":1019,"inaccurateSizes":true}],"parsedSize":3422,"gzipSize":1019,"inaccurateSizes":true},{"label":"spin","path":"./components/index.ts + 86 modules (concatenated)/components/spin","statSize":1953,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/spin/index.tsx","statSize":1953,"parsedSize":1663,"gzipSize":495,"inaccurateSizes":true}],"parsedSize":1663,"gzipSize":495,"inaccurateSizes":true},{"label":"switch","path":"./components/index.ts + 86 modules (concatenated)/components/switch","statSize":5466,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/switch/index.tsx","statSize":3044,"parsedSize":2593,"gzipSize":771,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/switch/style.ts","statSize":2422,"parsedSize":2063,"gzipSize":614,"inaccurateSizes":true}],"parsedSize":4656,"gzipSize":1386,"inaccurateSizes":true},{"label":"table","path":"./components/index.ts + 86 modules (concatenated)/components/table","statSize":13071,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/table/index.tsx","statSize":11270,"parsedSize":9600,"gzipSize":2858,"inaccurateSizes":true},{"id":null,"label":"styles.ts","path":"./components/index.ts + 86 modules (concatenated)/components/table/styles.ts","statSize":1801,"parsedSize":1534,"gzipSize":456,"inaccurateSizes":true}],"parsedSize":11134,"gzipSize":3314,"inaccurateSizes":true},{"label":"tabs","path":"./components/index.ts + 86 modules (concatenated)/components/tabs","statSize":13387,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/tabs/index.tsx","statSize":10824,"parsedSize":9220,"gzipSize":2745,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/tabs/style.ts","statSize":2563,"parsedSize":2183,"gzipSize":650,"inaccurateSizes":true}],"parsedSize":11403,"gzipSize":3395,"inaccurateSizes":true},{"label":"tag","path":"./components/index.ts + 86 modules (concatenated)/components/tag","statSize":4615,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/tag/index.tsx","statSize":3635,"parsedSize":3096,"gzipSize":921,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/tag/style.ts","statSize":980,"parsedSize":834,"gzipSize":248,"inaccurateSizes":true}],"parsedSize":3931,"gzipSize":1170,"inaccurateSizes":true},{"label":"tree","path":"./components/index.ts + 86 modules (concatenated)/components/tree","statSize":11481,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/tree/index.tsx","statSize":9227,"parsedSize":7860,"gzipSize":2340,"inaccurateSizes":true},{"id":null,"label":"style.ts","path":"./components/index.ts + 86 modules (concatenated)/components/tree/style.ts","statSize":2254,"parsedSize":1920,"gzipSize":571,"inaccurateSizes":true}],"parsedSize":9780,"gzipSize":2911,"inaccurateSizes":true},{"label":"typography","path":"./components/index.ts + 86 modules (concatenated)/components/typography","statSize":2205,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/typography/index.tsx","statSize":2205,"parsedSize":1878,"gzipSize":559,"inaccurateSizes":true}],"parsedSize":1878,"gzipSize":559,"inaccurateSizes":true},{"label":"provider","path":"./components/index.ts + 86 modules (concatenated)/components/provider","statSize":1049,"groups":[{"id":null,"label":"index.tsx","path":"./components/index.ts + 86 modules (concatenated)/components/provider/index.tsx","statSize":1049,"parsedSize":893,"gzipSize":266,"inaccurateSizes":true}],"parsedSize":893,"gzipSize":266,"inaccurateSizes":true},{"label":"prism","path":"./components/index.ts + 86 modules (concatenated)/components/prism","statSize":8808,"groups":[{"id":null,"label":"index.ts","path":"./components/index.ts + 86 modules (concatenated)/components/prism/index.ts","statSize":8808,"parsedSize":7503,"gzipSize":2233,"inaccurateSizes":true}],"parsedSize":7503,"gzipSize":2233,"inaccurateSizes":true}],"parsedSize":285770,"gzipSize":85077,"inaccurateSizes":true},{"label":"node_modules","path":"./components/index.ts + 86 modules (concatenated)/node_modules","statSize":86651,"groups":[{"label":"solid-element/dist","path":"./components/index.ts + 86 modules (concatenated)/node_modules/solid-element/dist","statSize":1767,"groups":[{"id":null,"label":"index.js","path":"./components/index.ts + 86 modules (concatenated)/node_modules/solid-element/dist/index.js","statSize":1767,"parsedSize":1505,"gzipSize":448,"inaccurateSizes":true}],"parsedSize":1505,"gzipSize":448,"inaccurateSizes":true},{"label":"component-register/dist","path":"./components/index.ts + 86 modules (concatenated)/node_modules/component-register/dist","statSize":8994,"groups":[{"id":null,"label":"component-register.js","path":"./components/index.ts + 86 modules (concatenated)/node_modules/component-register/dist/component-register.js","statSize":8994,"parsedSize":7661,"gzipSize":2280,"inaccurateSizes":true}],"parsedSize":7661,"gzipSize":2280,"inaccurateSizes":true},{"label":"solid-js","path":"./components/index.ts + 86 modules (concatenated)/node_modules/solid-js","statSize":75890,"groups":[{"label":"web/dist","path":"./components/index.ts + 86 modules (concatenated)/node_modules/solid-js/web/dist","statSize":26382,"groups":[{"id":null,"label":"web.js","path":"./components/index.ts + 86 modules (concatenated)/node_modules/solid-js/web/dist/web.js","statSize":26382,"parsedSize":22473,"gzipSize":6690,"inaccurateSizes":true}],"parsedSize":22473,"gzipSize":6690,"inaccurateSizes":true},{"label":"dist","path":"./components/index.ts + 86 modules (concatenated)/node_modules/solid-js/dist","statSize":49508,"groups":[{"id":null,"label":"solid.js","path":"./components/index.ts + 86 modules (concatenated)/node_modules/solid-js/dist/solid.js","statSize":49508,"parsedSize":42174,"gzipSize":12555,"inaccurateSizes":true}],"parsedSize":42174,"gzipSize":12555,"inaccurateSizes":true}],"parsedSize":64647,"gzipSize":19246,"inaccurateSizes":true}],"parsedSize":73814,"gzipSize":21975,"inaccurateSizes":true}]},{"label":"prism","path":"./components/prism","statSize":70261,"groups":[{"id":"./components/prism/prism.js","label":"prism.js","path":"./components/prism/prism.js","statSize":70261}],"parsedSize":0,"gzipSize":0}],"parsedSize":359585,"gzipSize":107053},{"label":"node_modules","path":"./node_modules","statSize":108912,"groups":[{"label":"@emotion","path":"./node_modules/@emotion","statSize":18647,"groups":[{"label":"serialize/dist","path":"./node_modules/@emotion/serialize/dist","statSize":13871,"groups":[{"id":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js","label":"emotion-serialize.browser.esm.js + 3 modules (concatenated)","path":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js + 3 modules (concatenated)","statSize":13871,"parsedSize":0,"gzipSize":0,"concatenated":true,"groups":[{"label":"node_modules/@emotion","path":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js + 3 modules (concatenated)/node_modules/@emotion","statSize":13871,"groups":[{"label":"serialize/dist","path":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js + 3 modules (concatenated)/node_modules/@emotion/serialize/dist","statSize":11090,"groups":[{"id":null,"label":"emotion-serialize.browser.esm.js","path":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js + 3 modules (concatenated)/node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js","statSize":11090,"parsedSize":0,"gzipSize":0,"inaccurateSizes":true}],"parsedSize":0,"gzipSize":0,"inaccurateSizes":true},{"label":"unitless/dist","path":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js + 3 modules (concatenated)/node_modules/@emotion/unitless/dist","statSize":924,"groups":[{"id":null,"label":"emotion-unitless.esm.js","path":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js + 3 modules (concatenated)/node_modules/@emotion/unitless/dist/emotion-unitless.esm.js","statSize":924,"parsedSize":0,"gzipSize":0,"inaccurateSizes":true}],"parsedSize":0,"gzipSize":0,"inaccurateSizes":true},{"label":"memoize/dist","path":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js + 3 modules (concatenated)/node_modules/@emotion/memoize/dist","statSize":202,"groups":[{"id":null,"label":"emotion-memoize.esm.js","path":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js + 3 modules (concatenated)/node_modules/@emotion/memoize/dist/emotion-memoize.esm.js","statSize":202,"parsedSize":0,"gzipSize":0,"inaccurateSizes":true}],"parsedSize":0,"gzipSize":0,"inaccurateSizes":true},{"label":"hash/dist","path":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js + 3 modules (concatenated)/node_modules/@emotion/hash/dist","statSize":1655,"groups":[{"id":null,"label":"emotion-hash.esm.js","path":"./node_modules/@emotion/serialize/dist/emotion-serialize.browser.esm.js + 3 modules (concatenated)/node_modules/@emotion/hash/dist/emotion-hash.esm.js","statSize":1655,"parsedSize":0,"gzipSize":0,"inaccurateSizes":true}],"parsedSize":0,"gzipSize":0,"inaccurateSizes":true}],"parsedSize":0,"gzipSize":0,"inaccurateSizes":true}]}],"parsedSize":0,"gzipSize":0},{"label":"sheet/dist","path":"./node_modules/@emotion/sheet/dist","statSize":4776,"groups":[{"id":"./node_modules/@emotion/sheet/dist/emotion-sheet.browser.esm.js","label":"emotion-sheet.browser.esm.js","path":"./node_modules/@emotion/sheet/dist/emotion-sheet.browser.esm.js","statSize":4776}],"parsedSize":0,"gzipSize":0}],"parsedSize":0,"gzipSize":0},{"label":"@moneko","path":"./node_modules/@moneko","statSize":26307,"groups":[{"label":"common/lib","path":"./node_modules/@moneko/common/lib","statSize":24701,"groups":[{"id":"./node_modules/@moneko/common/lib/cloneDeep.js","label":"cloneDeep.js","path":"./node_modules/@moneko/common/lib/cloneDeep.js","statSize":199},{"id":"./node_modules/@moneko/common/lib/cmykToHsv.js","label":"cmykToHsv.js","path":"./node_modules/@moneko/common/lib/cmykToHsv.js","statSize":542},{"id":"./node_modules/@moneko/common/lib/colorParse.js","label":"colorParse.js","path":"./node_modules/@moneko/common/lib/colorParse.js","statSize":2885},{"id":"./node_modules/@moneko/common/lib/downloadBlob.js","label":"downloadBlob.js","path":"./node_modules/@moneko/common/lib/downloadBlob.js","statSize":436},{"id":"./node_modules/@moneko/common/lib/entityToString.js","label":"entityToString.js","path":"./node_modules/@moneko/common/lib/entityToString.js","statSize":257},{"id":"./node_modules/@moneko/common/lib/fullscreen.js","label":"fullscreen.js","path":"./node_modules/@moneko/common/lib/fullscreen.js","statSize":798},{"id":"./node_modules/@moneko/common/lib/getClientSize.js","label":"getClientSize.js","path":"./node_modules/@moneko/common/lib/getClientSize.js","statSize":445},{"id":"./node_modules/@moneko/common/lib/getColorContrast.js","label":"getColorContrast.js","path":"./node_modules/@moneko/common/lib/getColorContrast.js","statSize":389},{"id":"./node_modules/@moneko/common/lib/getDataType.js","label":"getDataType.js","path":"./node_modules/@moneko/common/lib/getDataType.js","statSize":210},{"id":"./node_modules/@moneko/common/lib/getMaxZindex.js","label":"getMaxZindex.js","path":"./node_modules/@moneko/common/lib/getMaxZindex.js","statSize":347},{"id":"./node_modules/@moneko/common/lib/getPrefixCls.js","label":"getPrefixCls.js","path":"./node_modules/@moneko/common/lib/getPrefixCls.js","statSize":186},{"id":"./node_modules/@moneko/common/lib/getScrollTop.js","label":"getScrollTop.js","path":"./node_modules/@moneko/common/lib/getScrollTop.js","statSize":470},{"id":"./node_modules/@moneko/common/lib/hexToHsv.js","label":"hexToHsv.js","path":"./node_modules/@moneko/common/lib/hexToHsv.js","statSize":600},{"id":"./node_modules/@moneko/common/lib/hslToHsv.js","label":"hslToHsv.js","path":"./node_modules/@moneko/common/lib/hslToHsv.js","statSize":490},{"id":"./node_modules/@moneko/common/lib/hsvToCmyk.js","label":"hsvToCmyk.js","path":"./node_modules/@moneko/common/lib/hsvToCmyk.js","statSize":625},{"id":"./node_modules/@moneko/common/lib/hsvToHex.js","label":"hsvToHex.js","path":"./node_modules/@moneko/common/lib/hsvToHex.js","statSize":316},{"id":"./node_modules/@moneko/common/lib/hsvToHsl.js","label":"hsvToHsl.js","path":"./node_modules/@moneko/common/lib/hsvToHsl.js","statSize":522},{"id":"./node_modules/@moneko/common/lib/hsvToRgb.js","label":"hsvToRgb.js","path":"./node_modules/@moneko/common/lib/hsvToRgb.js","statSize":562},{"id":"./node_modules/@moneko/common/lib/hsvaToString.js","label":"hsvaToString.js","path":"./node_modules/@moneko/common/lib/hsvaToString.js","statSize":276},{"id":"./node_modules/@moneko/common/lib/index.js","label":"index.js","path":"./node_modules/@moneko/common/lib/index.js","statSize":2878},{"id":"./node_modules/@moneko/common/lib/isColor.js","label":"isColor.js","path":"./node_modules/@moneko/common/lib/isColor.js","statSize":655},{"id":"./node_modules/@moneko/common/lib/isElementInside.js","label":"isElementInside.js","path":"./node_modules/@moneko/common/lib/isElementInside.js","statSize":369},{"id":"./node_modules/@moneko/common/lib/isEqual.js","label":"isEqual.js","path":"./node_modules/@moneko/common/lib/isEqual.js","statSize":725},{"id":"./node_modules/@moneko/common/lib/isFunction.js","label":"isFunction.js","path":"./node_modules/@moneko/common/lib/isFunction.js","statSize":312},{"id":"./node_modules/@moneko/common/lib/isObject.js","label":"isObject.js","path":"./node_modules/@moneko/common/lib/isObject.js","statSize":316},{"id":"./node_modules/@moneko/common/lib/isString.js","label":"isString.js","path":"./node_modules/@moneko/common/lib/isString.js","statSize":309},{"id":"./node_modules/@moneko/common/lib/isSvgElement.js","label":"isSvgElement.js","path":"./node_modules/@moneko/common/lib/isSvgElement.js","statSize":336},{"id":"./node_modules/@moneko/common/lib/isUndefined.js","label":"isUndefined.js","path":"./node_modules/@moneko/common/lib/isUndefined.js","statSize":187},{"id":"./node_modules/@moneko/common/lib/mixColor.js","label":"mixColor.js","path":"./node_modules/@moneko/common/lib/mixColor.js","statSize":454},{"id":"./node_modules/@moneko/common/lib/passiveSupported.js","label":"passiveSupported.js","path":"./node_modules/@moneko/common/lib/passiveSupported.js","statSize":311},{"id":"./node_modules/@moneko/common/lib/persistence.js","label":"persistence.js","path":"./node_modules/@moneko/common/lib/persistence.js","statSize":650},{"id":"./node_modules/@moneko/common/lib/rgbToHex.js","label":"rgbToHex.js","path":"./node_modules/@moneko/common/lib/rgbToHex.js","statSize":479},{"id":"./node_modules/@moneko/common/lib/rgbToHsv.js","label":"rgbToHsv.js","path":"./node_modules/@moneko/common/lib/rgbToHsv.js","statSize":678},{"id":"./node_modules/@moneko/common/lib/setClipboard.js","label":"setClipboard.js","path":"./node_modules/@moneko/common/lib/setClipboard.js","statSize":892},{"id":"./node_modules/@moneko/common/lib/stringToBase64Url.js","label":"stringToBase64Url.js","path":"./node_modules/@moneko/common/lib/stringToBase64Url.js","statSize":647},{"id":"./node_modules/@moneko/common/lib/throttle.js","label":"throttle.js","path":"./node_modules/@moneko/common/lib/throttle.js","statSize":604},{"id":"./node_modules/@moneko/common/lib/toneColor.js","label":"toneColor.js","path":"./node_modules/@moneko/common/lib/toneColor.js","statSize":1057},{"id":"./node_modules/@moneko/common/lib/updateStyleRule.js","label":"updateStyleRule.js","path":"./node_modules/@moneko/common/lib/updateStyleRule.js","statSize":745},{"id":"./node_modules/@moneko/common/lib/watermark.js","label":"watermark.js","path":"./node_modules/@moneko/common/lib/watermark.js","statSize":1542}],"parsedSize":0,"gzipSize":0},{"label":"css","path":"./node_modules/@moneko/css","statSize":1606,"groups":[{"id":"./node_modules/@moneko/css/index.js","label":"index.js","path":"./node_modules/@moneko/css/index.js","statSize":1008},{"id":"./node_modules/@moneko/css/px-to-rem.js","label":"px-to-rem.js","path":"./node_modules/@moneko/css/px-to-rem.js","statSize":598}],"parsedSize":0,"gzipSize":0}],"parsedSize":0,"gzipSize":0},{"label":"dayjs","path":"./node_modules/dayjs","statSize":10653,"groups":[{"id":"./node_modules/dayjs/dayjs.min.js","label":"dayjs.min.js","path":"./node_modules/dayjs/dayjs.min.js","statSize":7107},{"label":"locale","path":"./node_modules/dayjs/locale","statSize":1463,"groups":[{"id":"./node_modules/dayjs/locale/zh-cn.js","label":"zh-cn.js","path":"./node_modules/dayjs/locale/zh-cn.js","statSize":1463}],"parsedSize":0,"gzipSize":0},{"label":"plugin","path":"./node_modules/dayjs/plugin","statSize":2083,"groups":[{"id":"./node_modules/dayjs/plugin/localeData.js","label":"localeData.js","path":"./node_modules/dayjs/plugin/localeData.js","statSize":2083}],"parsedSize":0,"gzipSize":0}],"parsedSize":0,"gzipSize":0},{"label":"marked-completed","path":"./node_modules/marked-completed","statSize":43005,"groups":[{"id":"./node_modules/marked-completed/marked.min.js","label":"marked.min.js","path":"./node_modules/marked-completed/marked.min.js","statSize":43005}],"parsedSize":0,"gzipSize":0},{"label":"stylis/dist/umd","path":"./node_modules/stylis/dist/umd","statSize":10300,"groups":[{"id":"./node_modules/stylis/dist/umd/stylis.js","label":"stylis.js","path":"./node_modules/stylis/dist/umd/stylis.js","statSize":10300}],"parsedSize":0,"gzipSize":0}],"parsedSize":0,"gzipSize":0}],"isInitialByEntrypoint":{"main":true}}];
|
|
35
35
|
window.entrypoints = ["main"];
|
|
36
36
|
window.defaultSizes = "parsed";
|
|
37
37
|
</script>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "neko-ui",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.6",
|
|
4
4
|
"description": "Web Components UI Libraries",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@commitlint/cli": "17.7.1",
|
|
40
40
|
"@commitlint/config-conventional": "17.7.0",
|
|
41
|
-
"@moneko/cli": "2.
|
|
41
|
+
"@moneko/cli": "2.1.1",
|
|
42
42
|
"@moneko/common": "1.2.0",
|
|
43
|
-
"@moneko/core": "3.0.
|
|
43
|
+
"@moneko/core": "3.0.4",
|
|
44
44
|
"@moneko/css": "1.0.5",
|
|
45
45
|
"@moneko/postcss": "1.0.30",
|
|
46
46
|
"@moneko/solid": "1.1.0",
|
|
@@ -69,5 +69,8 @@
|
|
|
69
69
|
"lib",
|
|
70
70
|
"README.md",
|
|
71
71
|
"LICENSE"
|
|
72
|
-
]
|
|
72
|
+
],
|
|
73
|
+
"dependencies": {
|
|
74
|
+
"custom-element-type": "1.0.0"
|
|
75
|
+
}
|
|
73
76
|
}
|