@kbach/ui 0.1.0-beta.0
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/KBACH.md +1044 -0
- package/README.md +473 -0
- package/dist/chunk-BPCFICND.mjs +4187 -0
- package/dist/chunk-UE54W6ZG.mjs +208 -0
- package/dist/core/index.d.ts +1346 -0
- package/dist/core/index.js +3712 -0
- package/dist/index.d.ts +328 -0
- package/dist/index.js +1191 -0
- package/dist/index.mjs +589 -0
- package/dist/jsx-dev-runtime.d.ts +21 -0
- package/dist/jsx-dev-runtime.js +780 -0
- package/dist/jsx-dev-runtime.mjs +21 -0
- package/dist/jsx-runtime.d.ts +17 -0
- package/dist/jsx-runtime.js +779 -0
- package/dist/jsx-runtime.mjs +17 -0
- package/dist/native.d.ts +314 -0
- package/dist/native.js +99 -0
- package/dist/vite-plugin.d.mts +155 -0
- package/dist/vite-plugin.d.ts +155 -0
- package/dist/vite-plugin.js +3939 -0
- package/dist/vite-plugin.mjs +3903 -0
- package/dist/web-substitute-6xH1WxpZ.d.ts +22 -0
- package/jsx-dev-runtime.js +3 -0
- package/jsx-runtime.js +3 -0
- package/kbach-ui.md +889 -0
- package/package.json +104 -0
- package/scripts/postinstall.js +28 -0
- package/src/native/babel/index.js +30 -0
- package/src/native/babel-plugin/index.js +605 -0
- package/src/native/babel-plugin/index.test.ts +86 -0
- package/types.d.ts +1 -0
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
import { Plugin } from 'vite';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Unified modifier registry — single source of truth for ALL modifier behavior.
|
|
5
|
+
*
|
|
6
|
+
* Adding a new modifier requires editing ONLY this file:
|
|
7
|
+
* 1. Add an entry to BUILTIN_MODIFIERS with its CSS and JS behavior.
|
|
8
|
+
* 2. Done — parser, resolver, CSS generator, and JSX runtime all derive
|
|
9
|
+
* their behavior from this data automatically.
|
|
10
|
+
*
|
|
11
|
+
* Plugin authors can register custom modifiers via registerModifier().
|
|
12
|
+
*/
|
|
13
|
+
interface ModifierDef {
|
|
14
|
+
/**
|
|
15
|
+
* Cascade priority for CSS rule ORDER — NOT specificity. Two rules that
|
|
16
|
+
* differ only by modifier (e.g. `.hover\:bg-blue-6:hover` and
|
|
17
|
+
* `.focus\:bg-red-6:focus`) have equal CSS specificity, so when both
|
|
18
|
+
* conditions are true at once (hovering AND focused), the winner is
|
|
19
|
+
* whichever rule appears LATER in the stylesheet — CSS's normal same-
|
|
20
|
+
* specificity tiebreak. Without a fixed priority, "later" would depend on
|
|
21
|
+
* encounter order (whichever class the app happens to render/scan first),
|
|
22
|
+
* making the winner effectively random and inconsistent across reloads/
|
|
23
|
+
* builds. `order` fixes that: rules are emitted/injected sorted by this
|
|
24
|
+
* value (ascending — higher wins ties), regardless of source order, so
|
|
25
|
+
* e.g. `disabled:` always beats `hover:` on the same element no matter
|
|
26
|
+
* which one was written first in the className or rendered first in the
|
|
27
|
+
* app. Omit for the default (0). See getModifierOrder() below.
|
|
28
|
+
*/
|
|
29
|
+
order?: number;
|
|
30
|
+
/** CSS pseudo-class or pseudo-element appended to the selector (e.g. ':hover', '::before') */
|
|
31
|
+
pseudo?: string;
|
|
32
|
+
/** Ancestor selector prefix INCLUDING trailing space (e.g. '.group:hover ', '.peer:focus ~ ') */
|
|
33
|
+
ancestorSelector?: string;
|
|
34
|
+
/** Directionality attribute selector prefix INCLUDING trailing space (e.g. '[dir="rtl"] ') */
|
|
35
|
+
dirSelector?: string;
|
|
36
|
+
/** @media query body WITHOUT the '@media ' prefix (e.g. 'print', '(orientation: landscape)') */
|
|
37
|
+
mediaQuery?: string;
|
|
38
|
+
/** Dark/light mode scheme — triggers the configured darkMode strategy in CSS output */
|
|
39
|
+
darkScheme?: 'dark' | 'light';
|
|
40
|
+
/** True for responsive modifiers — wraps in @media (min-width: theme.screens[name]) */
|
|
41
|
+
isResponsive?: boolean;
|
|
42
|
+
/**
|
|
43
|
+
* Forces !important on all declarations in the generated CSS rule.
|
|
44
|
+
* Applied automatically for structural / ancestor / media modifiers that must
|
|
45
|
+
* win over base inline styles.
|
|
46
|
+
*/
|
|
47
|
+
forcesImportant?: boolean;
|
|
48
|
+
/**
|
|
49
|
+
* How the JSX runtime routes this modifier:
|
|
50
|
+
* 'interactive' — managed by InteractiveWrapper (hover, focus, pressed, …)
|
|
51
|
+
* 'mode' — managed by DarkWrapper (dark, light, not-dark, …)
|
|
52
|
+
* 'responsive' — managed by DarkWrapper (sm, md, lg, xl, 2xl)
|
|
53
|
+
* 'css-only' — CSS injection only; matchModifier always returns false
|
|
54
|
+
*/
|
|
55
|
+
jsBehavior: 'interactive' | 'mode' | 'responsive' | 'css-only';
|
|
56
|
+
/**
|
|
57
|
+
* Evaluates whether this modifier's condition is met at runtime.
|
|
58
|
+
* Omit for 'css-only' modifiers — they never apply as inline styles.
|
|
59
|
+
*/
|
|
60
|
+
jsMatch?: (isDark: boolean, state: Record<string, boolean | undefined>, breakpoints: Set<string>) => boolean;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
interface StyleValue {
|
|
64
|
+
[key: string]: string | number | undefined | null | StyleValue | StyleValue[];
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* A color value is either a plain string (hex/rgb/alias-to-another-color-name)
|
|
68
|
+
* or a mode-aware pair — resolved to `light` or `dark` per the active theme
|
|
69
|
+
* mode wherever it's actually used (className resolution, useColors()).
|
|
70
|
+
*/
|
|
71
|
+
type ColorValue = string | {
|
|
72
|
+
light: string;
|
|
73
|
+
dark: string;
|
|
74
|
+
};
|
|
75
|
+
type ColorShades = Record<string, ColorValue>;
|
|
76
|
+
type ThemeColors = Record<string, ColorValue | ColorShades>;
|
|
77
|
+
type ThemeSpacing = Record<string, number | string>;
|
|
78
|
+
interface ThemeConfig {
|
|
79
|
+
colors: ThemeColors;
|
|
80
|
+
spacing: ThemeSpacing;
|
|
81
|
+
fontSize: Record<string, number | string>;
|
|
82
|
+
fontFamily: Record<string, string | string[]>;
|
|
83
|
+
fontWeight: Record<string, string | number>;
|
|
84
|
+
borderRadius: Record<string, number | string>;
|
|
85
|
+
borderWidth: Record<string, number>;
|
|
86
|
+
opacity: Record<string, number>;
|
|
87
|
+
lineHeight: Record<string, number | string>;
|
|
88
|
+
letterSpacing: Record<string, number | string>;
|
|
89
|
+
zIndex: Record<string, number | string>;
|
|
90
|
+
flex: Record<string, number | string>;
|
|
91
|
+
shadow: Record<string, StyleValue>;
|
|
92
|
+
screens: Record<string, string | number>;
|
|
93
|
+
/**
|
|
94
|
+
* Custom @keyframes, web only. Each key is a keyframe name, its value maps
|
|
95
|
+
* percentage/from/to selectors to a plain CSS declaration object (camelCase
|
|
96
|
+
* properties, same shape as an inline style object):
|
|
97
|
+
* keyframes: { wiggle: { '0%, 100%': { transform: 'rotate(-3deg)' }, '50%': { transform: 'rotate(3deg)' } } }
|
|
98
|
+
* Referenced from `animation` below, or directly via animate-[wiggle_1s_ease-in-out].
|
|
99
|
+
*/
|
|
100
|
+
keyframes: Record<string, Record<string, StyleValue>>;
|
|
101
|
+
/**
|
|
102
|
+
* Named animation shorthands built on `keyframes` above, referenced via
|
|
103
|
+
* animate-{name} (e.g. animate-wiggle):
|
|
104
|
+
* animation: { wiggle: 'wiggle 1s ease-in-out infinite' }
|
|
105
|
+
* The first word must match a `keyframes` key so its @keyframes rule can be
|
|
106
|
+
* injected alongside the animation — a name with no matching keyframes entry
|
|
107
|
+
* still sets the `animation` CSS property, it just won't animate anything.
|
|
108
|
+
*/
|
|
109
|
+
animation: Record<string, string>;
|
|
110
|
+
[key: string]: unknown;
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* 'class' — toggles .dark class on <html>
|
|
114
|
+
* 'media' — uses prefers-color-scheme media query
|
|
115
|
+
* 'attribute' — uses data-theme="dark" attribute on <html>
|
|
116
|
+
*/
|
|
117
|
+
type DarkMode = 'attribute' | 'class' | 'media';
|
|
118
|
+
interface PluginAPI {
|
|
119
|
+
addUtility(name: string, styles: StyleValue): void;
|
|
120
|
+
/**
|
|
121
|
+
* Register a custom variant.
|
|
122
|
+
*
|
|
123
|
+
* Pass a CSS selector string for simple cases — it is automatically
|
|
124
|
+
* converted into a ModifierDef that generates correct CSS rules:
|
|
125
|
+
* addVariant('hocus', ':hover, :focus') // pseudo
|
|
126
|
+
* addVariant('supports-grid', '@media (display: grid)') // media
|
|
127
|
+
* addVariant('dark-green', '.dark-green') // ancestor selector
|
|
128
|
+
*
|
|
129
|
+
* Pass a full ModifierDef object for advanced control (e.g. JS-trackable
|
|
130
|
+
* interactive variants with custom jsMatch logic).
|
|
131
|
+
*/
|
|
132
|
+
addVariant(name: string, selectorOrDef: string | ModifierDef): void;
|
|
133
|
+
theme(path: string, defaultValue?: unknown): unknown;
|
|
134
|
+
e(className: string): string;
|
|
135
|
+
}
|
|
136
|
+
interface FrameworkConfig {
|
|
137
|
+
darkMode?: DarkMode;
|
|
138
|
+
theme?: Partial<ThemeConfig>;
|
|
139
|
+
/** Additive theme extension — accepts either `extend.theme.X` or `extend.X` directly. */
|
|
140
|
+
extend?: {
|
|
141
|
+
theme?: Partial<ThemeConfig>;
|
|
142
|
+
} & Partial<ThemeConfig>;
|
|
143
|
+
plugins?: Array<(api: PluginAPI) => void>;
|
|
144
|
+
content?: string[];
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
declare function formatKbachCSS(tokenCSS: Map<string, string>, theme: ThemeConfig, responsiveRe: RegExp): string;
|
|
148
|
+
interface KbachPluginOptions {
|
|
149
|
+
framework?: FrameworkConfig;
|
|
150
|
+
/** Directories to scan for class strings (relative to Vite root). Defaults to common source dirs. */
|
|
151
|
+
include?: string[];
|
|
152
|
+
}
|
|
153
|
+
declare function kbach(userConfigOrOptions?: FrameworkConfig | KbachPluginOptions): Plugin;
|
|
154
|
+
|
|
155
|
+
export { type KbachPluginOptions, formatKbachCSS, kbach };
|