@luna_ui/luna 0.3.3 → 0.3.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/dist/cli.mjs +1264 -27
- package/dist/css/index.d.ts +194 -0
- package/dist/css/index.js +721 -0
- package/dist/css/runtime.d.ts +92 -0
- package/dist/css/runtime.js +179 -0
- package/dist/index.js +1 -1
- package/dist/jsx-dev-runtime.js +1 -1
- package/dist/jsx-runtime.d.ts +5 -0
- package/dist/jsx-runtime.js +1 -1
- package/dist/src-CHiGeWfy.js +1 -0
- package/dist/vite-plugin.d.ts +122 -0
- package/dist/vite-plugin.js +1518 -0
- package/package.json +16 -2
- package/src/css/extract.ts +798 -0
- package/src/css/index.ts +10 -0
- package/src/css/inject.ts +205 -0
- package/src/css/inline.ts +182 -0
- package/src/css/minify.ts +70 -0
- package/src/css/optimizer.ts +6 -0
- package/src/css/runtime.ts +344 -0
- package/src/css-optimizer/README.md +353 -0
- package/src/css-optimizer/cooccurrence.ts +100 -0
- package/src/css-optimizer/core.ts +263 -0
- package/src/css-optimizer/extractors.ts +243 -0
- package/src/css-optimizer/hash.ts +54 -0
- package/src/css-optimizer/index.ts +129 -0
- package/src/css-optimizer/merge.ts +109 -0
- package/src/css-optimizer/moonbit-analyzer.ts +210 -0
- package/src/css-optimizer/parser.ts +120 -0
- package/src/css-optimizer/pattern.ts +171 -0
- package/src/css-optimizer/transformers.ts +301 -0
- package/src/css-optimizer/types.ts +128 -0
- package/src/event-utils.ts +227 -0
- package/src/index.ts +890 -0
- package/src/jsx-dev-runtime.ts +2 -0
- package/src/jsx-runtime.ts +398 -0
- package/src/vite-plugin.ts +718 -0
- package/tests/__screenshots__/context.test.ts/Context-API-context-with-reactive-effects-context-value-accessible-in-effect-1.png +0 -0
- package/tests/__screenshots__/dom.test.ts/DOM-API-For-component--SolidJS-style--For-updates-when-signal-changes-1.png +0 -0
- package/tests/__screenshots__/dom.test.ts/DOM-API-Show-component--SolidJS-style--Show-accepts-children-as-function-1.png +0 -0
- package/tests/__screenshots__/dom.test.ts/DOM-API-Show-component--SolidJS-style--Show-toggles-visibility-1.png +0 -0
- package/tests/__screenshots__/dom.test.ts/DOM-API-createElement-createElement-with-dynamic-attribute-1.png +0 -0
- package/tests/__screenshots__/dom.test.ts/DOM-API-createElement-createElement-with-dynamic-style-1.png +0 -0
- package/tests/__screenshots__/dom.test.ts/DOM-API-createElementNs--SVG-support--createElementNs-with-dynamic-attribute-1.png +0 -0
- package/tests/__screenshots__/dom.test.ts/DOM-API-effect-with-DOM-effect-tracks-signal-changes-1.png +0 -0
- package/tests/__screenshots__/dom.test.ts/DOM-API-forEach--list-rendering--forEach-handles-clear-to-empty-1.png +0 -0
- package/tests/__screenshots__/dom.test.ts/DOM-API-forEach--list-rendering--forEach-handles-empty-array-1.png +0 -0
- package/tests/__screenshots__/dom.test.ts/DOM-API-forEach--list-rendering--forEach-removes-items-1.png +0 -0
- package/tests/__screenshots__/dom.test.ts/DOM-API-forEach--list-rendering--forEach-renders-initial-list-1.png +0 -0
- package/tests/__screenshots__/dom.test.ts/DOM-API-forEach--list-rendering--forEach-updates-when-items-change-1.png +0 -0
- package/tests/__screenshots__/dom.test.ts/DOM-API-forEach-with-SVG-elements-forEach-handles-empty-to-non-empty-transition-in-SVG-1.png +0 -0
- package/tests/__screenshots__/dom.test.ts/DOM-API-forEach-with-SVG-elements-forEach-handles-reordering-in-SVG-1.png +0 -0
- package/tests/__screenshots__/dom.test.ts/DOM-API-forEach-with-SVG-elements-forEach-updates-SVG-elements-when-signal-changes-1.png +0 -0
- package/tests/__screenshots__/dom.test.ts/DOM-API-forEach-with-SVG-elements-forEach-with-nested-SVG-groups-1.png +0 -0
- package/tests/__screenshots__/dom.test.ts/DOM-API-ref-callback--JSX-style--ref-callback-with-nested-elements-1.png +0 -0
- package/tests/__screenshots__/dom.test.ts/DOM-API-show--conditional-rendering--show-creates-a-node-1.png +0 -0
- package/tests/__screenshots__/dom.test.ts/DOM-API-show--conditional-rendering--show-with-false-condition-creates-placeholder-1.png +0 -0
- package/tests/__screenshots__/dom.test.ts/DOM-API-text-nodes-textDyn-creates-reactive-text-node-1.png +0 -0
- package/tests/__screenshots__/integration.test.ts/Integration--Nested-Components-with-Context-Complex-nested-scenario-forEach-renders-correctly-without-show--initial-items--1.png +0 -0
- package/tests/__screenshots__/integration.test.ts/Integration--Nested-Components-with-Context-Complex-nested-scenario-forEach-with-context-renders-correctly-without-show-1.png +0 -0
- package/tests/__screenshots__/integration.test.ts/Integration--Nested-Components-with-Context-Complex-nested-scenario-nested-components-with-context--forEach--and-show-1.png +0 -0
- package/tests/__screenshots__/integration.test.ts/Integration--Nested-Components-with-Context-Complex-nested-scenario-show-and-forEach-inherit-context-from-Owner--fixed--1.png +0 -0
- package/tests/__screenshots__/integration.test.ts/Integration--Nested-Components-with-Context-Complex-nested-scenario-show-and-forEach-work-together--context-uses-default--1.png +0 -0
- package/tests/__screenshots__/integration.test.ts/Integration--Nested-Components-with-Context-Context---ForEach-integration-forEach-items-can-access-context-1.png +0 -0
- package/tests/__screenshots__/integration.test.ts/Integration--Nested-Components-with-Context-ForEach-with-reactive-updates-forEach-renders-initial-list-1.png +0 -0
- package/tests/__screenshots__/integration.test.ts/Integration--Nested-Components-with-Context-ForEach-with-reactive-updates-forEach-updates-when-signal-changes-1.png +0 -0
- package/tests/__screenshots__/integration.test.ts/Integration--Nested-Components-with-Context-ForEach-with-reactive-updates-forEach-with-object-items-1.png +0 -0
- package/tests/__screenshots__/integration.test.ts/Integration--Nested-Components-with-Context-Show--conditional-rendering--show-hides-when-condition-is-false-1.png +0 -0
- package/tests/__screenshots__/integration.test.ts/Integration--Nested-Components-with-Context-Show--conditional-rendering--show-renders-when-condition-is-true-1.png +0 -0
- package/tests/__screenshots__/integration.test.ts/Integration--Nested-Components-with-Context-Show--conditional-rendering--show-toggles-from-false-to-true-1.png +0 -0
- package/tests/__screenshots__/integration.test.ts/Integration--Nested-Components-with-Context-Show--conditional-rendering--show-toggles-reactively-1.png +0 -0
- package/tests/__screenshots__/lifecycle.test.ts/onCleanup-in-Component-Body--Solid-js-style--event-listener-pattern--Solid-js-docs-example--1.png +0 -0
- package/tests/__screenshots__/lifecycle.test.ts/onCleanup-in-Component-Body--Solid-js-style--multiple-cleanups-in-component-body--LIFO-order--1.png +0 -0
- package/tests/__screenshots__/lifecycle.test.ts/onCleanup-in-Component-Body--Solid-js-style--onCleanup-in-component-body-runs-on-unmount-1.png +0 -0
- package/tests/__screenshots__/lifecycle.test.ts/onCleanup-in-Component-Body--Solid-js-style--onCleanup-works-with-For-loop-items--component-body-style--1.png +0 -0
- package/tests/__screenshots__/lifecycle.test.ts/onCleanup-in-Component-Body--Solid-js-style--timer-cleanup-pattern--Solid-js-style--1.png +0 -0
- package/tests/__screenshots__/lifecycle.test.ts/onCleanup-in-Effects-effect-cleanup-runs-before-re-run-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Bulk-Updates-large-list-update-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Bulk-Updates-nested-batch-operations-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Bulk-Updates-rapid-sequential-updates-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/DOM-Rendering-Comparison---Conditional-Show-component---visible-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/DOM-Rendering-Comparison---Conditional-show-hide-element---visible-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/DOM-Rendering-Comparison---Fragments-fragment-with-list-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/DOM-Rendering-Comparison---Fragments-nested-fragments-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/DOM-Rendering-Comparison---Fragments-simple-fragment-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/DOM-Rendering-Comparison---Reactive-Updates-conditional-toggle-updates-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/DOM-Rendering-Comparison---Reactive-Updates-list-addition-updates-match-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/DOM-Rendering-Comparison---Reactive-Updates-list-removal-updates-match-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/DOM-Rendering-Comparison---Reactive-Updates-text-updates-match-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Dynamic-Attributes-Comparison-dynamic-className-updates-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Dynamic-Attributes-Comparison-dynamic-style-updates-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Dynamic-Attributes-Comparison-multiple-dynamic-attributes-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Edge-Cases-deeply-nested-conditionals-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Edge-Cases-list-transitions-from-empty-to-populated-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Edge-Cases-list-transitions-from-populated-to-empty-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Effect-Cleanup-Comparison-nested-effects-cleanup-order-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Effect-Cleanup-Comparison-nested-effects-with-inner-signal-change-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Effect-Cleanup-Comparison-onCleanup-is-called-when-effect-re-runs-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Effect-Cleanup-Comparison-onCleanup-with-resource-simulation-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Fragment-Comparison-with-Preact-Fragment-with-multiple-children--no-wrapper--1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Fragment-Comparison-with-Preact-Fragment-with-no-children-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Fragment-Comparison-with-Preact-fragment-with-list-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Fragment-Comparison-with-Preact-nested-Fragments-work-correctly-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/List-Reordering-complex-reordering-with-additions-and-removals-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/List-Reordering-insert-in-middle-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/List-Reordering-remove-from-middle-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/List-Reordering-reverse-list-order-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/List-Reordering-shuffle-list-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Luna-Conditional-Rendering-Show-component-renders-when-condition-is-true-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Luna-Conditional-Rendering-show-renders-content-when-initially-true-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Luna-Conditional-Rendering-show-toggles-visibility-dynamically-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Memo-Dependency-Chain-conditional-memo-dependencies-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Signal-Behavior-Comparison-basic-signal-get-set-produces-same-values-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Signal-Behavior-Comparison-batch-updates-produce-same-final-values-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Untrack-and-Peek-Behavior-peek-reads-value-without-tracking-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Untrack-and-Peek-Behavior-selective-tracking-with-untrack-1.png +0 -0
- package/tests/__screenshots__/preact-signals-comparison.test.ts/Untrack-and-Peek-Behavior-untrack-prevents-dependency-tracking-1.png +0 -0
- package/tests/__screenshots__/resource.test.ts/Resource-API--SolidJS-style--reactivity-accessor-is-reactive-1.png +0 -0
- package/tests/__screenshots__/resource.test.ts/Resource-API-AsyncState-helpers-stateError-returns-empty-string-for-non-failure-1.png +0 -0
- package/tests/__screenshots__/resource.test.ts/Resource-API-AsyncState-helpers-stateError-returns-undefined-for-non-failure-1.png +0 -0
- package/tests/__screenshots__/resource.test.ts/Resource-API-AsyncState-helpers-stateIsFailure-and-stateError-1.png +0 -0
- package/tests/__screenshots__/resource.test.ts/Resource-API-AsyncState-helpers-stateIsPending-1.png +0 -0
- package/tests/__screenshots__/resource.test.ts/Resource-API-AsyncState-helpers-stateIsSuccess-and-stateValue-1.png +0 -0
- package/tests/__screenshots__/resource.test.ts/Resource-API-AsyncState-helpers-stateValue-returns-undefined-for-non-success-1.png +0 -0
- package/tests/__screenshots__/resource.test.ts/Resource-API-createDeferred-reject-transitions-to-failure-1.png +0 -0
- package/tests/__screenshots__/resource.test.ts/Resource-API-createDeferred-resolve-transitions-to-success-1.png +0 -0
- package/tests/__screenshots__/resource.test.ts/Resource-API-createDeferred-returns-resource--resolve--and-reject-functions-1.png +0 -0
- package/tests/__screenshots__/resource.test.ts/Resource-API-createDeferred-starts-in-pending-state-1.png +0 -0
- package/tests/__screenshots__/resource.test.ts/Resource-API-createResource-async-resolve-works-1.png +0 -0
- package/tests/__screenshots__/resource.test.ts/Resource-API-createResource-starts-in-pending-state-1.png +0 -0
- package/tests/__screenshots__/resource.test.ts/Resource-API-createResource-transitions-to-failure-on-reject-1.png +0 -0
- package/tests/__screenshots__/resource.test.ts/Resource-API-createResource-transitions-to-success-on-resolve-1.png +0 -0
- package/tests/__screenshots__/resource.test.ts/Resource-API-integration-with-Promise-can-wrap-fetch-like-async-operations-1.png +0 -0
- package/tests/__screenshots__/resource.test.ts/Resource-API-integration-with-Promise-works-with-setTimeout-simulation-1.png +0 -0
- package/tests/__screenshots__/resource.test.ts/Resource-API-resourceGet-vs-resourcePeek-resourceGet-tracks-dependencies-1.png +0 -0
- package/tests/__screenshots__/resource.test.ts/Resource-API-resourceGet-vs-resourcePeek-resourcePeek-does-not-track-dependencies-1.png +0 -0
- package/tests/__screenshots__/resource.test.ts/Resource-API-resourceRefetch-refetch-resets-to-pending-and-re-runs-fetcher-1.png +0 -0
- package/tests/__screenshots__/solidjs-api.test.ts/Portal-component-Portal-renders-children-to-body-by-default-1.png +0 -0
- package/tests/__screenshots__/solidjs-api.test.ts/Portal-component-Portal-renders-to-selector-mount-target-1.png +0 -0
- package/tests/__screenshots__/solidjs-api.test.ts/SolidJS-API-compatibility-createEffect-tracks-dependencies-automatically-1.png +0 -0
- package/tests/__screenshots__/solidjs-api.test.ts/Switch-Match-component-Switch-with-accessor-condition-in-Match-1.png +0 -0
- package/tests/__screenshots__/solidjs-api.test.ts/Switch-Match-component-Switch-with-multiple-Match-components-1.png +0 -0
- package/tests/__screenshots__/solidjs-api.test.ts/Switch-Match-component-Switch-with-single-Match-and-fallback-1.png +0 -0
- package/tests/__screenshots__/solidjs-api.test.ts/Switch-Match-components-Switch-updates-DOM-when-signal-changes-1.png +0 -0
- package/tests/__screenshots__/solidjs-api.test.ts/on---utility-on-tracks-multiple-dependencies-1.png +0 -0
- package/tests/__screenshots__/solidjs-api.test.ts/on---utility-on-tracks-single-dependency-1.png +0 -0
- package/tests/__screenshots__/solidjs-api.test.ts/on---utility-on-with-defer-option-skips-initial-run-1.png +0 -0
- package/tests/__screenshots__/store.test.ts/createStore-Arrays-array-updates-work-1.png +0 -0
- package/tests/__screenshots__/store.test.ts/createStore-Reactivity-only-triggers-when-accessed-property-changes-1.png +0 -0
- package/tests/__screenshots__/store.test.ts/createStore-Reactivity-parent-path-change-notifies-child-accessors-1.png +0 -0
- package/tests/__screenshots__/store.test.ts/createStore-Reactivity-tracks-nested-property-access-1.png +0 -0
- package/tests/__screenshots__/store.test.ts/createStore-Reactivity-tracks-property-access-in-effects-1.png +0 -0
- package/tests/context.test.ts +118 -0
- package/tests/css-optimizer-extractors.test.ts +264 -0
- package/tests/css-optimizer-integration.test.ts +566 -0
- package/tests/css-optimizer-transformers.test.ts +301 -0
- package/tests/css-optimizer.test.ts +646 -0
- package/tests/css-runtime.bench.ts +442 -0
- package/tests/css-runtime.test.ts +342 -0
- package/tests/dom.test.ts +872 -0
- package/tests/integration.test.ts +405 -0
- package/tests/issue-5-for-infinite-loop.test.ts +516 -0
- package/tests/jsx-runtime.test.tsx +393 -0
- package/tests/lifecycle.test.ts +833 -0
- package/tests/move-before.bench.ts +304 -0
- package/tests/preact-signals-comparison.test.ts +1608 -0
- package/tests/resource.test.ts +160 -0
- package/tests/router.test.ts +117 -0
- package/tests/show-initial-mount-leak.test.tsx +182 -0
- package/tests/solidjs-api.test.ts +659 -0
- package/tests/static-perf.bench.ts +64 -0
- package/tests/store.test.ts +263 -0
- package/tests/tsx-syntax.test.tsx +404 -0
- package/dist/src-DGWY0NYx.js +0 -1
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
//#region src/css/extract.d.ts
|
|
2
|
+
/**
|
|
3
|
+
* Static CSS Extractor for Luna CSS Module
|
|
4
|
+
*
|
|
5
|
+
* Extracts all CSS declarations from .mbt files at build time.
|
|
6
|
+
* This ensures all styles are collected regardless of runtime branches.
|
|
7
|
+
*/
|
|
8
|
+
interface Warning {
|
|
9
|
+
file: string;
|
|
10
|
+
line: number;
|
|
11
|
+
func: string;
|
|
12
|
+
code: string;
|
|
13
|
+
reason: string;
|
|
14
|
+
}
|
|
15
|
+
interface ExtractedStyles {
|
|
16
|
+
base: Set<string>;
|
|
17
|
+
pseudo: Array<{
|
|
18
|
+
pseudo: string;
|
|
19
|
+
property: string;
|
|
20
|
+
value: string;
|
|
21
|
+
}>;
|
|
22
|
+
media: Array<{
|
|
23
|
+
condition: string;
|
|
24
|
+
property: string;
|
|
25
|
+
value: string;
|
|
26
|
+
}>;
|
|
27
|
+
}
|
|
28
|
+
interface ExtractOptions {
|
|
29
|
+
pretty?: boolean;
|
|
30
|
+
json?: boolean;
|
|
31
|
+
verbose?: boolean;
|
|
32
|
+
warn?: boolean;
|
|
33
|
+
strict?: boolean;
|
|
34
|
+
splitMode?: "file" | "dir" | null;
|
|
35
|
+
}
|
|
36
|
+
interface ExtractResult {
|
|
37
|
+
css: string;
|
|
38
|
+
mapping: Record<string, string>;
|
|
39
|
+
stats: {
|
|
40
|
+
base: number;
|
|
41
|
+
pseudo: number;
|
|
42
|
+
media: number;
|
|
43
|
+
};
|
|
44
|
+
warnings?: Warning[];
|
|
45
|
+
}
|
|
46
|
+
interface SplitExtractResult {
|
|
47
|
+
/** Per-file or per-dir CSS */
|
|
48
|
+
chunks: Map<string, {
|
|
49
|
+
css: string;
|
|
50
|
+
styles: ExtractedStyles;
|
|
51
|
+
}>;
|
|
52
|
+
/** Shared CSS (declarations used in 3+ files/dirs) */
|
|
53
|
+
shared: {
|
|
54
|
+
css: string;
|
|
55
|
+
styles: ExtractedStyles;
|
|
56
|
+
};
|
|
57
|
+
/** All CSS combined (for comparison) */
|
|
58
|
+
combined: string;
|
|
59
|
+
/** Class name mapping */
|
|
60
|
+
mapping: Record<string, string>;
|
|
61
|
+
/** Statistics per chunk */
|
|
62
|
+
stats: Map<string, {
|
|
63
|
+
base: number;
|
|
64
|
+
pseudo: number;
|
|
65
|
+
media: number;
|
|
66
|
+
}>;
|
|
67
|
+
warnings?: Warning[];
|
|
68
|
+
}
|
|
69
|
+
declare function detectWarnings(content: string, filePath: string): Warning[];
|
|
70
|
+
declare function extractFromContent(content: string): ExtractedStyles;
|
|
71
|
+
declare function findMbtFiles(dir: string): string[];
|
|
72
|
+
declare function generateCSS(styles: ExtractedStyles, options?: {
|
|
73
|
+
pretty?: boolean;
|
|
74
|
+
}): {
|
|
75
|
+
css: string;
|
|
76
|
+
mapping: Record<string, string>;
|
|
77
|
+
};
|
|
78
|
+
declare function extract(dir: string, options?: ExtractOptions): ExtractResult;
|
|
79
|
+
interface SplitExtractOptions extends ExtractOptions {
|
|
80
|
+
/** Minimum usage count to be considered "shared" (default: 3) */
|
|
81
|
+
sharedThreshold?: number;
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* Extract CSS with split output by file or directory.
|
|
85
|
+
* Shared CSS (used in 3+ files/dirs) is separated into a shared chunk.
|
|
86
|
+
*/
|
|
87
|
+
declare function extractSplit(dir: string, mode: "file" | "dir", options?: SplitExtractOptions): SplitExtractResult;
|
|
88
|
+
//#endregion
|
|
89
|
+
//#region src/css/minify.d.ts
|
|
90
|
+
/**
|
|
91
|
+
* Simple CSS Minifier
|
|
92
|
+
*
|
|
93
|
+
* Minifies CSS without changing class names.
|
|
94
|
+
* Safe for use with existing templates.
|
|
95
|
+
*/
|
|
96
|
+
interface MinifyOptions {
|
|
97
|
+
verbose?: boolean;
|
|
98
|
+
}
|
|
99
|
+
interface MinifyResult {
|
|
100
|
+
minified: string;
|
|
101
|
+
originalSize: number;
|
|
102
|
+
minifiedSize: number;
|
|
103
|
+
reduction: number;
|
|
104
|
+
}
|
|
105
|
+
/**
|
|
106
|
+
* Minify CSS content
|
|
107
|
+
*/
|
|
108
|
+
declare function minifyCSS(css: string): string;
|
|
109
|
+
/**
|
|
110
|
+
* Format file size
|
|
111
|
+
*/
|
|
112
|
+
declare function formatSize(bytes: number): string;
|
|
113
|
+
/**
|
|
114
|
+
* Minify CSS and return result with stats
|
|
115
|
+
*/
|
|
116
|
+
declare function minify(css: string, options?: MinifyOptions): MinifyResult;
|
|
117
|
+
//#endregion
|
|
118
|
+
//#region src/css/inline.d.ts
|
|
119
|
+
/**
|
|
120
|
+
* CSS Class Name Inliner
|
|
121
|
+
*
|
|
122
|
+
* Replaces CSS utility function calls with pre-computed class names.
|
|
123
|
+
* This enables true zero-runtime CSS by eliminating runtime style registration.
|
|
124
|
+
*/
|
|
125
|
+
interface InlineOptions {
|
|
126
|
+
verbose?: boolean;
|
|
127
|
+
dryRun?: boolean;
|
|
128
|
+
removeRegistry?: boolean;
|
|
129
|
+
}
|
|
130
|
+
interface Replacement {
|
|
131
|
+
type: "base" | "pseudo" | "media";
|
|
132
|
+
from: string;
|
|
133
|
+
to: string;
|
|
134
|
+
key?: string;
|
|
135
|
+
decl?: string;
|
|
136
|
+
}
|
|
137
|
+
interface InlineResult {
|
|
138
|
+
code: string;
|
|
139
|
+
replacements: Replacement[];
|
|
140
|
+
originalSize: number;
|
|
141
|
+
finalSize: number;
|
|
142
|
+
}
|
|
143
|
+
/**
|
|
144
|
+
* Replace CSS function calls with pre-computed class names
|
|
145
|
+
*/
|
|
146
|
+
declare function inlineCSS(code: string, mapping: Record<string, string>, options?: InlineOptions): InlineResult;
|
|
147
|
+
/**
|
|
148
|
+
* Remove CSS registry code (dead code after inlining)
|
|
149
|
+
*/
|
|
150
|
+
declare function removeRegistryCode(code: string): string;
|
|
151
|
+
/**
|
|
152
|
+
* Inline CSS with mapping extracted from source directory
|
|
153
|
+
*/
|
|
154
|
+
declare function inlineFromSource(code: string, srcDir: string, options?: InlineOptions): InlineResult;
|
|
155
|
+
//#endregion
|
|
156
|
+
//#region src/css/inject.d.ts
|
|
157
|
+
/**
|
|
158
|
+
* CSS Injection into HTML files
|
|
159
|
+
*
|
|
160
|
+
* Replaces CSS between markers in HTML files with extracted CSS.
|
|
161
|
+
* Supports inline embedding or external file generation.
|
|
162
|
+
*/
|
|
163
|
+
type OutputMode = "inline" | "external" | "auto";
|
|
164
|
+
interface InjectHtmlOptions {
|
|
165
|
+
srcDir: string;
|
|
166
|
+
htmlFile: string;
|
|
167
|
+
outputFile?: string;
|
|
168
|
+
/** Output mode: "inline" embeds CSS in HTML, "external" creates separate .css file, "auto" chooses based on threshold */
|
|
169
|
+
mode?: OutputMode;
|
|
170
|
+
/** Size threshold in bytes for "auto" mode (default: 4096) */
|
|
171
|
+
threshold?: number;
|
|
172
|
+
/** CSS filename for external mode (default: "luna.css") */
|
|
173
|
+
cssFileName?: string;
|
|
174
|
+
verbose?: boolean;
|
|
175
|
+
}
|
|
176
|
+
interface InjectHtmlResult {
|
|
177
|
+
html: string;
|
|
178
|
+
css: string;
|
|
179
|
+
replaced: boolean;
|
|
180
|
+
/** Path to external CSS file if created */
|
|
181
|
+
cssFile?: string;
|
|
182
|
+
/** Actual mode used */
|
|
183
|
+
mode: OutputMode;
|
|
184
|
+
}
|
|
185
|
+
/**
|
|
186
|
+
* Inject extracted CSS into HTML file between markers
|
|
187
|
+
*/
|
|
188
|
+
declare function injectCssToHtml(options: InjectHtmlOptions): InjectHtmlResult;
|
|
189
|
+
/**
|
|
190
|
+
* Inject CSS and write to file(s)
|
|
191
|
+
*/
|
|
192
|
+
declare function injectAndWrite(options: InjectHtmlOptions): InjectHtmlResult;
|
|
193
|
+
//#endregion
|
|
194
|
+
export { ExtractOptions, ExtractResult, ExtractedStyles, InjectHtmlOptions, InjectHtmlResult, InlineOptions, InlineResult, MinifyOptions, MinifyResult, OutputMode, Replacement, SplitExtractResult, Warning, detectWarnings, extract, extractFromContent, extractSplit, findMbtFiles, formatSize, generateCSS, injectAndWrite, injectCssToHtml, inlineCSS, inlineFromSource, minify, minifyCSS, removeRegistryCode };
|