lyco 1.2.1 → 1.2.3
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/dist/index.cjs.js +80 -75
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +112 -107
- package/dist/index.es.js.map +1 -1
- package/dist/types/components/AbsoluteBox.d.ts +7 -11
- package/dist/types/components/Overlay.d.ts +7 -1
- package/dist/types/components/PositionContainer.d.ts +8 -2
- package/dist/types/components/Row.d.ts +5 -1
- package/dist/types/components/RowSplit.d.ts +7 -2
- package/dist/types/components/core.d.ts +59 -0
- package/package.json +1 -1
@@ -9,3 +9,62 @@ export declare function renderFnOrArray(fnOrArray?: renderFnOrArrayType, injectB
|
|
9
9
|
export declare function randomClassName(prefix?: string): string;
|
10
10
|
export declare function renderFnOrCurry(fn?: renderFnType, injectBox?: (box: TemplateResult<1>) => TemplateResult<1>): TemplateResult<1> | ((fn?: renderFnType) => TemplateResult<1>);
|
11
11
|
export declare function renderFnOrArrayOrCurry(fnOrArray?: renderFnOrArrayType, injectBox?: (box: TemplateResult<1> | TemplateResult<1>[]) => TemplateResult<1> | TemplateResult<1>[], injectBox2?: (box: TemplateResult<1>, idx?: number, isArray?: boolean, isFunc?: boolean) => TemplateResult<1>): TemplateResult<1> | TemplateResult<1>[] | ((fnOrArray?: renderFnOrArrayType) => TemplateResult<1> | TemplateResult<1>[]);
|
12
|
+
declare const allRandomClassName: {
|
13
|
+
"GridBreakpoint::grid-breakpoint": {
|
14
|
+
init: boolean;
|
15
|
+
prefix: string;
|
16
|
+
className: string;
|
17
|
+
};
|
18
|
+
"Hidden::hidden-container": {
|
19
|
+
init: boolean;
|
20
|
+
prefix: string;
|
21
|
+
className: string;
|
22
|
+
};
|
23
|
+
"ListGroup::list-group": {
|
24
|
+
init: boolean;
|
25
|
+
prefix: string;
|
26
|
+
className: string;
|
27
|
+
};
|
28
|
+
"ScrollBar::scrollbar-container": {
|
29
|
+
init: boolean;
|
30
|
+
prefix: string;
|
31
|
+
className: string;
|
32
|
+
};
|
33
|
+
"SkeletonLoader::skeleton-shimmer": {
|
34
|
+
init: boolean;
|
35
|
+
prefix: string;
|
36
|
+
className: string;
|
37
|
+
};
|
38
|
+
"Swiper::swiper": {
|
39
|
+
init: boolean;
|
40
|
+
prefix: string;
|
41
|
+
className: string;
|
42
|
+
};
|
43
|
+
"Table::table": {
|
44
|
+
init: boolean;
|
45
|
+
prefix: string;
|
46
|
+
className: string;
|
47
|
+
};
|
48
|
+
"WaterFlow::waterflow": {
|
49
|
+
init: boolean;
|
50
|
+
prefix: string;
|
51
|
+
className: string;
|
52
|
+
};
|
53
|
+
"AutoFitGrid::auto-fit-grid": {
|
54
|
+
init: boolean;
|
55
|
+
prefix: string;
|
56
|
+
className: string;
|
57
|
+
};
|
58
|
+
"GridCol::grid-col": {
|
59
|
+
init: boolean;
|
60
|
+
prefix: string;
|
61
|
+
className: string;
|
62
|
+
};
|
63
|
+
"GridRow::grid-row": {
|
64
|
+
init: boolean;
|
65
|
+
prefix: string;
|
66
|
+
className: string;
|
67
|
+
};
|
68
|
+
};
|
69
|
+
export declare function getRandomClassName(key: keyof typeof allRandomClassName): string;
|
70
|
+
export {};
|