@vizejs/fresco 0.322.0 → 0.325.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/dist/components/index.d.mts +1 -1
- package/dist/components/index.mjs +1 -1
- package/dist/{components-JxATjNGp.mjs → components-Co_HaVzY.mjs} +6 -2
- package/dist/components-Co_HaVzY.mjs.map +1 -0
- package/dist/composables/index.d.mts +1 -1
- package/dist/composables/index.mjs +2 -2
- package/dist/{composables-D9lN8Kdo.mjs → composables-DwlfqK02.mjs} +2 -2
- package/dist/{composables-D9lN8Kdo.mjs.map → composables-DwlfqK02.mjs.map} +1 -1
- package/dist/{index-CnFCOPIv.d.mts → index-CIH__txU.d.mts} +228 -135
- package/dist/index-CIH__txU.d.mts.map +1 -0
- package/dist/{index-43FxHkwF.d.mts → index-Dwx6lKP0.d.mts} +1 -2
- package/dist/index-Dwx6lKP0.d.mts.map +1 -0
- package/dist/index.d.mts +3 -42
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/{useInput-BopE5ia7.mjs → useInput-BYoxI3PX.mjs} +234 -112
- package/dist/useInput-BYoxI3PX.mjs.map +1 -0
- package/package.json +2 -2
- package/dist/components-JxATjNGp.mjs.map +0 -1
- package/dist/index-43FxHkwF.d.mts.map +0 -1
- package/dist/index-CnFCOPIv.d.mts.map +0 -1
- package/dist/useInput-BopE5ia7.mjs.map +0 -1
|
@@ -1,20 +1,194 @@
|
|
|
1
1
|
import * as _$_vue_runtime_core0 from "@vue/runtime-core";
|
|
2
2
|
import { PropType, Ref, RendererElement, RendererNode, VNode } from "@vue/runtime-core";
|
|
3
|
+
|
|
4
|
+
//#region src/protocol.d.ts
|
|
5
|
+
/** Public JavaScript protocol shared by Fresco components and the renderer. */
|
|
6
|
+
type FrescoRenderNodeKind = "root" | "box" | "text" | "input";
|
|
7
|
+
type FrescoDimension = number | string;
|
|
8
|
+
type FrescoDisplay = "flex" | "none";
|
|
9
|
+
type FrescoPosition = "absolute" | "relative" | "static";
|
|
10
|
+
type FrescoOverflow = "visible" | "hidden" | "scroll";
|
|
11
|
+
type FrescoFlexDirection = "row" | "column" | "row-reverse" | "column-reverse";
|
|
12
|
+
type FrescoFlexWrap = "nowrap" | "wrap" | "wrap-reverse";
|
|
13
|
+
type FrescoJustifyContent = "flex-start" | "flex-end" | "start" | "end" | "center" | "space-between" | "space-around" | "space-evenly";
|
|
14
|
+
type FrescoAlignItems = "flex-start" | "flex-end" | "start" | "end" | "center" | "stretch" | "baseline";
|
|
15
|
+
type FrescoAlignSelf = "auto" | FrescoAlignItems;
|
|
16
|
+
type FrescoAlignContent = "flex-start" | "flex-end" | "start" | "end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly";
|
|
17
|
+
/** Canonical camelCase style fields. Components accept number or string dimensions. */
|
|
18
|
+
interface FrescoCanonicalStyle<Dimension extends FrescoDimension = FrescoDimension> {
|
|
19
|
+
display?: FrescoDisplay;
|
|
20
|
+
position?: FrescoPosition;
|
|
21
|
+
top?: Dimension;
|
|
22
|
+
right?: Dimension;
|
|
23
|
+
bottom?: Dimension;
|
|
24
|
+
left?: Dimension;
|
|
25
|
+
overflow?: FrescoOverflow;
|
|
26
|
+
overflowX?: FrescoOverflow;
|
|
27
|
+
overflowY?: FrescoOverflow;
|
|
28
|
+
flexDirection?: FrescoFlexDirection;
|
|
29
|
+
flexWrap?: FrescoFlexWrap;
|
|
30
|
+
justifyContent?: FrescoJustifyContent;
|
|
31
|
+
alignItems?: FrescoAlignItems;
|
|
32
|
+
alignSelf?: FrescoAlignSelf;
|
|
33
|
+
alignContent?: FrescoAlignContent;
|
|
34
|
+
flexGrow?: number;
|
|
35
|
+
flexShrink?: number;
|
|
36
|
+
flexBasis?: Dimension;
|
|
37
|
+
width?: Dimension;
|
|
38
|
+
height?: Dimension;
|
|
39
|
+
minWidth?: Dimension;
|
|
40
|
+
minHeight?: Dimension;
|
|
41
|
+
maxWidth?: Dimension;
|
|
42
|
+
maxHeight?: Dimension;
|
|
43
|
+
aspectRatio?: number;
|
|
44
|
+
padding?: number;
|
|
45
|
+
paddingTop?: number;
|
|
46
|
+
paddingRight?: number;
|
|
47
|
+
paddingBottom?: number;
|
|
48
|
+
paddingLeft?: number;
|
|
49
|
+
margin?: number;
|
|
50
|
+
marginTop?: number;
|
|
51
|
+
marginRight?: number;
|
|
52
|
+
marginBottom?: number;
|
|
53
|
+
marginLeft?: number;
|
|
54
|
+
gap?: number;
|
|
55
|
+
columnGap?: number;
|
|
56
|
+
rowGap?: number;
|
|
57
|
+
}
|
|
58
|
+
/** Compatibility aliases accepted by intrinsic host-node style bags. */
|
|
59
|
+
interface FrescoSnakeStyleAliases<Dimension extends FrescoDimension = FrescoDimension> {
|
|
60
|
+
overflow_x?: FrescoOverflow;
|
|
61
|
+
overflow_y?: FrescoOverflow;
|
|
62
|
+
flex_direction?: FrescoFlexDirection;
|
|
63
|
+
flex_wrap?: FrescoFlexWrap;
|
|
64
|
+
justify_content?: FrescoJustifyContent;
|
|
65
|
+
align_items?: FrescoAlignItems;
|
|
66
|
+
align_self?: FrescoAlignSelf;
|
|
67
|
+
align_content?: FrescoAlignContent;
|
|
68
|
+
flex_grow?: number;
|
|
69
|
+
flex_shrink?: number;
|
|
70
|
+
flex_basis?: Dimension;
|
|
71
|
+
min_width?: Dimension;
|
|
72
|
+
min_height?: Dimension;
|
|
73
|
+
max_width?: Dimension;
|
|
74
|
+
max_height?: Dimension;
|
|
75
|
+
aspect_ratio?: number;
|
|
76
|
+
padding_top?: number;
|
|
77
|
+
padding_right?: number;
|
|
78
|
+
padding_bottom?: number;
|
|
79
|
+
padding_left?: number;
|
|
80
|
+
margin_top?: number;
|
|
81
|
+
margin_right?: number;
|
|
82
|
+
margin_bottom?: number;
|
|
83
|
+
margin_left?: number;
|
|
84
|
+
column_gap?: number;
|
|
85
|
+
row_gap?: number;
|
|
86
|
+
}
|
|
87
|
+
type FrescoStyle<Dimension extends FrescoDimension = FrescoDimension> = FrescoCanonicalStyle<Dimension> & FrescoSnakeStyleAliases<Dimension>;
|
|
88
|
+
/** Canonical style emitted to the native renderer. Dimensions are normalized to strings. */
|
|
89
|
+
type FrescoRenderStyle = FrescoCanonicalStyle<string>;
|
|
90
|
+
interface FrescoAppearance {
|
|
91
|
+
fg?: string;
|
|
92
|
+
bg?: string;
|
|
93
|
+
bold?: boolean;
|
|
94
|
+
dim?: boolean;
|
|
95
|
+
italic?: boolean;
|
|
96
|
+
underline?: boolean;
|
|
97
|
+
inverse?: boolean;
|
|
98
|
+
blink?: boolean;
|
|
99
|
+
hidden?: boolean;
|
|
100
|
+
strikethrough?: boolean;
|
|
101
|
+
}
|
|
102
|
+
type FrescoBorderStyle = "none" | "single" | "double" | "rounded" | "heavy" | "dashed";
|
|
103
|
+
type FrescoTextWrapMode = "none" | "wrap" | "hard" | "truncate" | "truncate-start" | "truncate-middle" | "truncate-end";
|
|
104
|
+
interface FrescoRenderNodeBase {
|
|
105
|
+
id: number;
|
|
106
|
+
style?: FrescoRenderStyle;
|
|
107
|
+
appearance?: FrescoAppearance;
|
|
108
|
+
border?: FrescoBorderStyle;
|
|
109
|
+
children?: number[];
|
|
110
|
+
}
|
|
111
|
+
interface FrescoRootRenderNode extends FrescoRenderNodeBase {
|
|
112
|
+
nodeType: "root";
|
|
113
|
+
}
|
|
114
|
+
interface FrescoBoxRenderNode extends FrescoRenderNodeBase {
|
|
115
|
+
nodeType: "box";
|
|
116
|
+
}
|
|
117
|
+
interface FrescoTextRenderNode extends FrescoRenderNodeBase {
|
|
118
|
+
nodeType: "text";
|
|
119
|
+
text?: string;
|
|
120
|
+
wrap?: boolean;
|
|
121
|
+
wrapMode?: FrescoTextWrapMode;
|
|
122
|
+
}
|
|
123
|
+
interface FrescoInputRenderNode extends FrescoRenderNodeBase {
|
|
124
|
+
nodeType: "input";
|
|
125
|
+
value?: string;
|
|
126
|
+
placeholder?: string;
|
|
127
|
+
focused?: boolean;
|
|
128
|
+
cursor?: number;
|
|
129
|
+
mask?: boolean;
|
|
130
|
+
maskChar?: string;
|
|
131
|
+
}
|
|
132
|
+
type UnionKeys<Union> = Union extends Union ? keyof Union : never;
|
|
133
|
+
type StrictUnionHelper<Member, Union> = Member extends Member ? Member & Partial<Record<Exclude<UnionKeys<Union>, keyof Member>, never>> : never;
|
|
134
|
+
type StrictUnion<Union> = StrictUnionHelper<Union, Union>;
|
|
135
|
+
type FrescoRenderNode = StrictUnion<FrescoRootRenderNode | FrescoBoxRenderNode | FrescoTextRenderNode | FrescoInputRenderNode>;
|
|
136
|
+
type KeyEventType = "press" | "repeat" | "release";
|
|
137
|
+
interface FrescoModifiers {
|
|
138
|
+
ctrl: boolean;
|
|
139
|
+
alt: boolean;
|
|
140
|
+
shift: boolean;
|
|
141
|
+
meta: boolean;
|
|
142
|
+
super: boolean;
|
|
143
|
+
hyper: boolean;
|
|
144
|
+
capsLock: boolean;
|
|
145
|
+
numLock: boolean;
|
|
146
|
+
}
|
|
147
|
+
interface KeyEvent extends FrescoModifiers {
|
|
148
|
+
type: "key";
|
|
149
|
+
key?: string;
|
|
150
|
+
char?: string;
|
|
151
|
+
eventType?: KeyEventType;
|
|
152
|
+
}
|
|
153
|
+
interface PasteEvent {
|
|
154
|
+
type: "paste";
|
|
155
|
+
text: string;
|
|
156
|
+
}
|
|
157
|
+
interface ResizeEvent {
|
|
158
|
+
type: "resize";
|
|
159
|
+
width: number;
|
|
160
|
+
height: number;
|
|
161
|
+
}
|
|
162
|
+
interface MouseEvent {
|
|
163
|
+
type: "mouse";
|
|
164
|
+
button?: string;
|
|
165
|
+
x: number;
|
|
166
|
+
y: number;
|
|
167
|
+
}
|
|
168
|
+
interface FocusEvent {
|
|
169
|
+
type: "focus";
|
|
170
|
+
focused: boolean;
|
|
171
|
+
}
|
|
172
|
+
interface CompositionEvent {
|
|
173
|
+
type: "compositionstart" | "compositionupdate" | "compositionend";
|
|
174
|
+
text: string;
|
|
175
|
+
cursor: number;
|
|
176
|
+
}
|
|
177
|
+
type FrescoInputEvent = StrictUnion<KeyEvent | PasteEvent | ResizeEvent | MouseEvent | FocusEvent | CompositionEvent>;
|
|
178
|
+
/** Compatibility alias for the pre-protocol event union name. */
|
|
179
|
+
type InputEvent = FrescoInputEvent;
|
|
180
|
+
//#endregion
|
|
3
181
|
//#region src/renderer.d.ts
|
|
4
|
-
/**
|
|
5
|
-
* Fresco node types
|
|
6
|
-
*/
|
|
182
|
+
/** @internal Mutable Vue host node; not part of the public render protocol. */
|
|
7
183
|
interface FrescoNode extends RendererNode {
|
|
8
184
|
id: number;
|
|
9
|
-
type:
|
|
185
|
+
type: FrescoRenderNodeKind;
|
|
10
186
|
props: Record<string, unknown>;
|
|
11
187
|
children: FrescoNode[];
|
|
12
188
|
parent: FrescoNode | null;
|
|
13
189
|
text?: string;
|
|
14
190
|
}
|
|
15
|
-
/**
|
|
16
|
-
* Fresco element (extends node)
|
|
17
|
-
*/
|
|
191
|
+
/** @internal Mutable Vue host element; not part of the public render protocol. */
|
|
18
192
|
interface FrescoElement extends FrescoNode, RendererElement {}
|
|
19
193
|
/**
|
|
20
194
|
* Create the Fresco renderer
|
|
@@ -26,87 +200,16 @@ type AriaRole = "button" | "checkbox" | "combobox" | "list" | "listbox" | "listi
|
|
|
26
200
|
type AriaState = Partial<Record<"busy" | "checked" | "disabled" | "expanded" | "multiline" | "multiselectable" | "readonly" | "required" | "selected", boolean>>;
|
|
27
201
|
//#endregion
|
|
28
202
|
//#region src/components/Box.d.ts
|
|
29
|
-
type
|
|
30
|
-
|
|
31
|
-
interface BoxProps {
|
|
32
|
-
/** Display type */
|
|
33
|
-
display?: "flex" | "none";
|
|
34
|
-
/** Positioning mode */
|
|
35
|
-
position?: "absolute" | "relative" | "static";
|
|
36
|
-
top?: DimensionValue;
|
|
37
|
-
right?: DimensionValue;
|
|
38
|
-
bottom?: DimensionValue;
|
|
39
|
-
left?: DimensionValue;
|
|
40
|
-
/** Flex direction */
|
|
41
|
-
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse";
|
|
42
|
-
/** Flex wrap */
|
|
43
|
-
flexWrap?: "nowrap" | "wrap" | "wrap-reverse";
|
|
44
|
-
/** Justify content */
|
|
45
|
-
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly";
|
|
46
|
-
/** Align items */
|
|
47
|
-
alignItems?: "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
|
|
48
|
-
/** Align self */
|
|
49
|
-
alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
|
|
50
|
-
/** Align content */
|
|
51
|
-
alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly";
|
|
52
|
-
/** Flex grow */
|
|
53
|
-
flexGrow?: number;
|
|
54
|
-
/** Flex shrink */
|
|
55
|
-
flexShrink?: number;
|
|
56
|
-
/** Flex basis */
|
|
57
|
-
flexBasis?: DimensionValue;
|
|
58
|
-
/** Width */
|
|
59
|
-
width?: DimensionValue;
|
|
60
|
-
/** Height */
|
|
61
|
-
height?: DimensionValue;
|
|
62
|
-
/** Min width */
|
|
63
|
-
minWidth?: DimensionValue;
|
|
64
|
-
/** Min height */
|
|
65
|
-
minHeight?: DimensionValue;
|
|
66
|
-
/** Max width */
|
|
67
|
-
maxWidth?: DimensionValue;
|
|
68
|
-
/** Max height */
|
|
69
|
-
maxHeight?: DimensionValue;
|
|
70
|
-
/** Aspect ratio */
|
|
71
|
-
aspectRatio?: number;
|
|
72
|
-
/** Padding (all sides) */
|
|
73
|
-
padding?: number;
|
|
203
|
+
type BorderStyleName = FrescoBorderStyle | "round" | "bold";
|
|
204
|
+
interface BoxProps extends FrescoCanonicalStyle {
|
|
74
205
|
/** Padding X (left and right) */
|
|
75
206
|
paddingX?: number;
|
|
76
207
|
/** Padding Y (top and bottom) */
|
|
77
208
|
paddingY?: number;
|
|
78
|
-
/** Padding top */
|
|
79
|
-
paddingTop?: number;
|
|
80
|
-
/** Padding right */
|
|
81
|
-
paddingRight?: number;
|
|
82
|
-
/** Padding bottom */
|
|
83
|
-
paddingBottom?: number;
|
|
84
|
-
/** Padding left */
|
|
85
|
-
paddingLeft?: number;
|
|
86
|
-
/** Margin (all sides) */
|
|
87
|
-
margin?: number;
|
|
88
209
|
/** Margin X (left and right) */
|
|
89
210
|
marginX?: number;
|
|
90
211
|
/** Margin Y (top and bottom) */
|
|
91
212
|
marginY?: number;
|
|
92
|
-
/** Margin top */
|
|
93
|
-
marginTop?: number;
|
|
94
|
-
/** Margin right */
|
|
95
|
-
marginRight?: number;
|
|
96
|
-
/** Margin bottom */
|
|
97
|
-
marginBottom?: number;
|
|
98
|
-
/** Margin left */
|
|
99
|
-
marginLeft?: number;
|
|
100
|
-
/** Gap between children */
|
|
101
|
-
gap?: number;
|
|
102
|
-
/** Column gap between children */
|
|
103
|
-
columnGap?: number;
|
|
104
|
-
/** Row gap between children */
|
|
105
|
-
rowGap?: number;
|
|
106
|
-
/** Overflow behavior */
|
|
107
|
-
overflow?: "visible" | "hidden" | "scroll";
|
|
108
|
-
overflowX?: "visible" | "hidden" | "scroll";
|
|
109
|
-
overflowY?: "visible" | "hidden" | "scroll";
|
|
110
213
|
/** Border style (Fresco alias) */
|
|
111
214
|
border?: BorderStyleName;
|
|
112
215
|
/** Border style (Ink alias) */
|
|
@@ -150,10 +253,10 @@ interface BoxProps {
|
|
|
150
253
|
declare const Box: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
|
|
151
254
|
display: PropType<BoxProps["display"]>;
|
|
152
255
|
position: PropType<BoxProps["position"]>;
|
|
153
|
-
top: PropType<
|
|
154
|
-
right: PropType<
|
|
155
|
-
bottom: PropType<
|
|
156
|
-
left: PropType<
|
|
256
|
+
top: PropType<FrescoDimension>;
|
|
257
|
+
right: PropType<FrescoDimension>;
|
|
258
|
+
bottom: PropType<FrescoDimension>;
|
|
259
|
+
left: PropType<FrescoDimension>;
|
|
157
260
|
flexDirection: PropType<BoxProps["flexDirection"]>;
|
|
158
261
|
flexWrap: PropType<BoxProps["flexWrap"]>;
|
|
159
262
|
justifyContent: PropType<BoxProps["justifyContent"]>;
|
|
@@ -162,13 +265,13 @@ declare const Box: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ext
|
|
|
162
265
|
alignContent: PropType<BoxProps["alignContent"]>;
|
|
163
266
|
flexGrow: NumberConstructor;
|
|
164
267
|
flexShrink: NumberConstructor;
|
|
165
|
-
flexBasis: PropType<
|
|
166
|
-
width: PropType<
|
|
167
|
-
height: PropType<
|
|
168
|
-
minWidth: PropType<
|
|
169
|
-
minHeight: PropType<
|
|
170
|
-
maxWidth: PropType<
|
|
171
|
-
maxHeight: PropType<
|
|
268
|
+
flexBasis: PropType<FrescoDimension>;
|
|
269
|
+
width: PropType<FrescoDimension>;
|
|
270
|
+
height: PropType<FrescoDimension>;
|
|
271
|
+
minWidth: PropType<FrescoDimension>;
|
|
272
|
+
minHeight: PropType<FrescoDimension>;
|
|
273
|
+
maxWidth: PropType<FrescoDimension>;
|
|
274
|
+
maxHeight: PropType<FrescoDimension>;
|
|
172
275
|
aspectRatio: NumberConstructor;
|
|
173
276
|
padding: NumberConstructor;
|
|
174
277
|
paddingX: NumberConstructor;
|
|
@@ -224,10 +327,10 @@ declare const Box: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ext
|
|
|
224
327
|
}> | null, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
|
|
225
328
|
display: PropType<BoxProps["display"]>;
|
|
226
329
|
position: PropType<BoxProps["position"]>;
|
|
227
|
-
top: PropType<
|
|
228
|
-
right: PropType<
|
|
229
|
-
bottom: PropType<
|
|
230
|
-
left: PropType<
|
|
330
|
+
top: PropType<FrescoDimension>;
|
|
331
|
+
right: PropType<FrescoDimension>;
|
|
332
|
+
bottom: PropType<FrescoDimension>;
|
|
333
|
+
left: PropType<FrescoDimension>;
|
|
231
334
|
flexDirection: PropType<BoxProps["flexDirection"]>;
|
|
232
335
|
flexWrap: PropType<BoxProps["flexWrap"]>;
|
|
233
336
|
justifyContent: PropType<BoxProps["justifyContent"]>;
|
|
@@ -236,13 +339,13 @@ declare const Box: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ext
|
|
|
236
339
|
alignContent: PropType<BoxProps["alignContent"]>;
|
|
237
340
|
flexGrow: NumberConstructor;
|
|
238
341
|
flexShrink: NumberConstructor;
|
|
239
|
-
flexBasis: PropType<
|
|
240
|
-
width: PropType<
|
|
241
|
-
height: PropType<
|
|
242
|
-
minWidth: PropType<
|
|
243
|
-
minHeight: PropType<
|
|
244
|
-
maxWidth: PropType<
|
|
245
|
-
maxHeight: PropType<
|
|
342
|
+
flexBasis: PropType<FrescoDimension>;
|
|
343
|
+
width: PropType<FrescoDimension>;
|
|
344
|
+
height: PropType<FrescoDimension>;
|
|
345
|
+
minWidth: PropType<FrescoDimension>;
|
|
346
|
+
minHeight: PropType<FrescoDimension>;
|
|
347
|
+
maxWidth: PropType<FrescoDimension>;
|
|
348
|
+
maxHeight: PropType<FrescoDimension>;
|
|
246
349
|
aspectRatio: NumberConstructor;
|
|
247
350
|
padding: NumberConstructor;
|
|
248
351
|
paddingX: NumberConstructor;
|
|
@@ -418,8 +521,8 @@ declare const Stack: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.E
|
|
|
418
521
|
}>> & Readonly<{}>, {
|
|
419
522
|
wrap: boolean;
|
|
420
523
|
gap: number;
|
|
421
|
-
align: "
|
|
422
|
-
justify: "
|
|
524
|
+
align: "start" | "end" | "center" | "stretch" | undefined;
|
|
525
|
+
justify: "start" | "end" | "center" | "between" | "around" | "evenly" | undefined;
|
|
423
526
|
direction: "horizontal" | "vertical";
|
|
424
527
|
}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
|
|
425
528
|
declare const HStack: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
|
|
@@ -566,33 +669,17 @@ declare const Card: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
|
|
|
566
669
|
//#endregion
|
|
567
670
|
//#region src/components/Text.d.ts
|
|
568
671
|
type TextWrap = boolean | "wrap" | "hard" | "truncate" | "truncate-start" | "truncate-middle" | "truncate-end" | "end" | "middle";
|
|
569
|
-
interface TextProps {
|
|
672
|
+
interface TextProps extends FrescoAppearance {
|
|
570
673
|
/** Text content (alternative to slot) */
|
|
571
674
|
content?: string;
|
|
572
675
|
/** Ink-compatible text wrapping/truncation mode */
|
|
573
676
|
wrap?: TextWrap;
|
|
574
|
-
/** Foreground color (Fresco alias) */
|
|
575
|
-
fg?: string;
|
|
576
677
|
/** Foreground color (Ink alias) */
|
|
577
678
|
color?: string;
|
|
578
|
-
/** Background color (Fresco alias) */
|
|
579
|
-
bg?: string;
|
|
580
679
|
/** Background color (Ink alias) */
|
|
581
680
|
backgroundColor?: string;
|
|
582
|
-
/** Bold text */
|
|
583
|
-
bold?: boolean;
|
|
584
|
-
/** Dim text (Fresco alias) */
|
|
585
|
-
dim?: boolean;
|
|
586
681
|
/** Dim text (Ink alias) */
|
|
587
682
|
dimColor?: boolean;
|
|
588
|
-
/** Italic text */
|
|
589
|
-
italic?: boolean;
|
|
590
|
-
/** Underlined text */
|
|
591
|
-
underline?: boolean;
|
|
592
|
-
/** Strikethrough text */
|
|
593
|
-
strikethrough?: boolean;
|
|
594
|
-
/** Inverse background/foreground colors */
|
|
595
|
-
inverse?: boolean;
|
|
596
683
|
/** Accessibility label, accepted for Ink API parity */
|
|
597
684
|
"aria-label"?: string;
|
|
598
685
|
/** Hide from screen readers, accepted for Ink API parity */
|
|
@@ -612,6 +699,8 @@ declare const Text: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
|
|
|
612
699
|
underline: BooleanConstructor;
|
|
613
700
|
strikethrough: BooleanConstructor;
|
|
614
701
|
inverse: BooleanConstructor;
|
|
702
|
+
blink: BooleanConstructor;
|
|
703
|
+
hidden: BooleanConstructor;
|
|
615
704
|
ariaLabel: StringConstructor;
|
|
616
705
|
ariaHidden: BooleanConstructor;
|
|
617
706
|
}>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
|
|
@@ -630,11 +719,15 @@ declare const Text: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
|
|
|
630
719
|
underline: BooleanConstructor;
|
|
631
720
|
strikethrough: BooleanConstructor;
|
|
632
721
|
inverse: BooleanConstructor;
|
|
722
|
+
blink: BooleanConstructor;
|
|
723
|
+
hidden: BooleanConstructor;
|
|
633
724
|
ariaLabel: StringConstructor;
|
|
634
725
|
ariaHidden: BooleanConstructor;
|
|
635
726
|
}>> & Readonly<{}>, {
|
|
727
|
+
hidden: boolean;
|
|
636
728
|
bold: boolean;
|
|
637
729
|
ariaHidden: boolean;
|
|
730
|
+
blink: boolean;
|
|
638
731
|
dim: boolean;
|
|
639
732
|
dimColor: boolean;
|
|
640
733
|
italic: boolean;
|
|
@@ -672,7 +765,7 @@ interface StaticProps<T = unknown> {
|
|
|
672
765
|
/** Items to render */
|
|
673
766
|
items: T[];
|
|
674
767
|
/** Optional container style */
|
|
675
|
-
style?:
|
|
768
|
+
style?: FrescoStyle;
|
|
676
769
|
/** Render item callback */
|
|
677
770
|
children?: (item: T, index: number) => unknown;
|
|
678
771
|
}
|
|
@@ -681,7 +774,7 @@ declare const Static: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.
|
|
|
681
774
|
type: PropType<unknown[]>;
|
|
682
775
|
default: () => never[];
|
|
683
776
|
};
|
|
684
|
-
style: PropType<
|
|
777
|
+
style: PropType<FrescoStyle>;
|
|
685
778
|
}>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
|
|
686
779
|
[key: string]: any;
|
|
687
780
|
}>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
|
|
@@ -689,7 +782,7 @@ declare const Static: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.
|
|
|
689
782
|
type: PropType<unknown[]>;
|
|
690
783
|
default: () => never[];
|
|
691
784
|
};
|
|
692
|
-
style: PropType<
|
|
785
|
+
style: PropType<FrescoStyle>;
|
|
693
786
|
}>> & Readonly<{}>, {
|
|
694
787
|
items: unknown[];
|
|
695
788
|
}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
|
|
@@ -812,9 +905,9 @@ declare const Code: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
|
|
|
812
905
|
border: "none" | "single" | "double" | "rounded" | undefined;
|
|
813
906
|
fg: string;
|
|
814
907
|
lineNumbers: boolean;
|
|
815
|
-
lineNumberFg: string;
|
|
816
908
|
startLine: number;
|
|
817
909
|
highlightLines: number[];
|
|
910
|
+
lineNumberFg: string;
|
|
818
911
|
highlightBg: string;
|
|
819
912
|
}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
|
|
820
913
|
//#endregion
|
|
@@ -895,7 +988,7 @@ interface TextInputProps {
|
|
|
895
988
|
/** Mask character */
|
|
896
989
|
maskChar?: string;
|
|
897
990
|
/** Input width */
|
|
898
|
-
width?:
|
|
991
|
+
width?: FrescoDimension;
|
|
899
992
|
/** Foreground color */
|
|
900
993
|
fg?: string;
|
|
901
994
|
/** Background color */
|
|
@@ -938,7 +1031,7 @@ declare const TextInput: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_cor
|
|
|
938
1031
|
type: StringConstructor;
|
|
939
1032
|
default: string;
|
|
940
1033
|
};
|
|
941
|
-
width: PropType<
|
|
1034
|
+
width: PropType<FrescoDimension>;
|
|
942
1035
|
fg: StringConstructor;
|
|
943
1036
|
bg: StringConstructor;
|
|
944
1037
|
}>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
|
|
@@ -968,7 +1061,7 @@ declare const TextInput: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_cor
|
|
|
968
1061
|
type: StringConstructor;
|
|
969
1062
|
default: string;
|
|
970
1063
|
};
|
|
971
|
-
width: PropType<
|
|
1064
|
+
width: PropType<FrescoDimension>;
|
|
972
1065
|
fg: StringConstructor;
|
|
973
1066
|
bg: StringConstructor;
|
|
974
1067
|
}>> & Readonly<{
|
|
@@ -979,10 +1072,10 @@ declare const TextInput: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_cor
|
|
|
979
1072
|
onCompositionupdate?: ((...args: any[]) => any) | undefined;
|
|
980
1073
|
onCompositionend?: ((...args: any[]) => any) | undefined;
|
|
981
1074
|
}>, {
|
|
982
|
-
placeholder: string;
|
|
983
1075
|
modelValue: string;
|
|
984
|
-
|
|
1076
|
+
placeholder: string;
|
|
985
1077
|
focus: boolean;
|
|
1078
|
+
focused: boolean;
|
|
986
1079
|
mask: boolean;
|
|
987
1080
|
maskChar: string;
|
|
988
1081
|
}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
|
|
@@ -1107,12 +1200,12 @@ declare const TextArea: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core
|
|
|
1107
1200
|
}>, {
|
|
1108
1201
|
border: "none" | "single" | "double" | "rounded" | undefined;
|
|
1109
1202
|
disabled: boolean;
|
|
1203
|
+
lineNumbers: boolean;
|
|
1204
|
+
lineNumberFg: string;
|
|
1110
1205
|
modelValue: string;
|
|
1111
|
-
rows: number;
|
|
1112
1206
|
focused: boolean;
|
|
1113
|
-
|
|
1207
|
+
rows: number;
|
|
1114
1208
|
placeholderFg: string;
|
|
1115
|
-
lineNumberFg: string;
|
|
1116
1209
|
cursorLine: number;
|
|
1117
1210
|
cursorColumn: number;
|
|
1118
1211
|
}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
|
|
@@ -3068,5 +3161,5 @@ declare const Avatar: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.
|
|
|
3068
3161
|
size: "sm" | "md" | "lg";
|
|
3069
3162
|
}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
|
|
3070
3163
|
//#endregion
|
|
3071
|
-
export { FormProps as $, TableColumn as A, HStack as At, TimerProps as B, Menu as C, NewlineProps as Ct, TreeNode as D, CardProps as Dt, Tree as E, Card as Et, Tooltip as F, DividerProps as Ft, AlertProps as G, BadgeProps as H, TooltipPosition as I, Spacer as It, ProgressBarProps as J, AlertType as K, TooltipProps as L, Box as Lt, List as M, StackProps as Mt, ListItem as N, VStack as Nt, TreeProps as O, Grid as Ot, ListProps as P, Divider as Pt, FormField as Q, Timer as R, BoxProps as Rt, TabsProps as S, Newline as St, MenuProps as T, TextProps as Tt, BadgeVariant as U, Badge as V, Alert as W, SpinnerProps as X, Spinner as Y, Form as Z, Breadcrumb as _, CodeProps as _t, KeyHintProps as a, Checkbox as at, Tab as b, Static as bt, StatusBar as c, SelectOption as ct, Modal as d, TextAreaProps as dt, Confirm as et, ModalProps as f, TextInput as ft, StepperProps as g, Code as gt, Stepper as h, LinkProps as ht, KeyHint as i, RadioOption as it, TableProps as j, Stack as jt, Table as k, GridProps as kt, StatusBarItem as l, SelectProps as lt, StepStatus as m, Link as mt, AvatarProps as n, RadioGroup as nt, Header as o, CheckboxProps as ot, Step as p, TextInputProps as pt, ProgressBar as q, KeyBinding as r, RadioGroupProps as rt, HeaderProps as s, Select as st, Avatar as t, ConfirmProps as tt, StatusBarProps as u, TextArea as ut, BreadcrumbItem as v, Transform as vt, MenuItem as w, Text as wt, Tabs as x, StaticProps as xt, BreadcrumbProps as y, TransformProps as yt, TimerMode as z, createRenderer$1 as zt };
|
|
3072
|
-
//# sourceMappingURL=index-
|
|
3164
|
+
export { FormProps as $, FrescoInputEvent as $t, TableColumn as A, HStack as At, TimerProps as B, CompositionEvent as Bt, Menu as C, NewlineProps as Ct, TreeNode as D, CardProps as Dt, Tree as E, Card as Et, Tooltip as F, DividerProps as Ft, AlertProps as G, FrescoAppearance as Gt, BadgeProps as H, FrescoAlignContent as Ht, TooltipPosition as I, Spacer as It, ProgressBarProps as J, FrescoCanonicalStyle as Jt, AlertType as K, FrescoBorderStyle as Kt, TooltipProps as L, Box as Lt, List as M, StackProps as Mt, ListItem as N, VStack as Nt, TreeProps as O, Grid as Ot, ListProps as P, Divider as Pt, FormField as Q, FrescoFlexWrap as Qt, Timer as R, BoxProps as Rt, TabsProps as S, Newline as St, MenuProps as T, TextProps as Tt, BadgeVariant as U, FrescoAlignItems as Ut, Badge as V, FocusEvent as Vt, Alert as W, FrescoAlignSelf as Wt, SpinnerProps as X, FrescoDisplay as Xt, Spinner as Y, FrescoDimension as Yt, Form as Z, FrescoFlexDirection as Zt, Breadcrumb as _, PasteEvent as _n, CodeProps as _t, KeyHintProps as a, FrescoRenderNode as an, Checkbox as at, Tab as b, Static as bt, StatusBar as c, FrescoRootRenderNode as cn, SelectOption as ct, Modal as d, FrescoTextRenderNode as dn, TextAreaProps as dt, FrescoInputRenderNode as en, Confirm as et, ModalProps as f, FrescoTextWrapMode as fn, TextInput as ft, StepperProps as g, MouseEvent as gn, Code as gt, Stepper as h, KeyEventType as hn, LinkProps as ht, KeyHint as i, FrescoPosition as in, RadioOption as it, TableProps as j, Stack as jt, Table as k, GridProps as kt, StatusBarItem as l, FrescoSnakeStyleAliases as ln, SelectProps as lt, StepStatus as m, KeyEvent as mn, Link as mt, AvatarProps as n, FrescoModifiers as nn, RadioGroup as nt, Header as o, FrescoRenderNodeKind as on, CheckboxProps as ot, Step as p, InputEvent as pn, TextInputProps as pt, ProgressBar as q, FrescoBoxRenderNode as qt, KeyBinding as r, FrescoOverflow as rn, RadioGroupProps as rt, HeaderProps as s, FrescoRenderStyle as sn, Select as st, Avatar as t, FrescoJustifyContent as tn, ConfirmProps as tt, StatusBarProps as u, FrescoStyle as un, TextArea as ut, BreadcrumbItem as v, ResizeEvent as vn, Transform as vt, MenuItem as w, Text as wt, Tabs as x, StaticProps as xt, BreadcrumbProps as y, TransformProps as yt, TimerMode as z, createRenderer$1 as zt };
|
|
3165
|
+
//# sourceMappingURL=index-CIH__txU.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-CIH__txU.d.mts","names":[],"sources":["../src/protocol.ts","../src/renderer.ts","../src/accessibility.ts","../src/components/Box.ts","../src/components/Spacer.ts","../src/components/Divider.ts","../src/components/Stack.ts","../src/components/Grid.ts","../src/components/Card.ts","../src/components/Text.ts","../src/components/Newline.ts","../src/components/Static.ts","../src/components/Transform.ts","../src/components/Code.ts","../src/components/Link.ts","../src/components/TextInput.ts","../src/components/TextArea.ts","../src/components/Select.ts","../src/components/Checkbox.ts","../src/components/RadioGroup.ts","../src/components/Confirm.ts","../src/components/Form.ts","../src/components/Spinner.ts","../src/components/ProgressBar.ts","../src/components/Alert.ts","../src/components/Badge.ts","../src/components/Timer.ts","../src/components/Tooltip.ts","../src/components/List.ts","../src/components/Table.ts","../src/components/Tree.ts","../src/components/Menu.ts","../src/components/Tabs.ts","../src/components/Breadcrumb.ts","../src/components/Stepper.ts","../src/components/Modal.ts","../src/components/StatusBar.ts","../src/components/Header.ts","../src/components/KeyHint.ts","../src/components/Avatar.ts"],"mappings":"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"}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { Ref } from "@vue/runtime-core";
|
|
2
2
|
import * as _$_vue_reactivity0 from "@vue/reactivity";
|
|
3
|
-
|
|
4
3
|
//#region src/composables/useInput.d.ts
|
|
5
4
|
interface Key {
|
|
6
5
|
upArrow: boolean;
|
|
@@ -313,4 +312,4 @@ declare function useBoxMetrics(ref: Ref<MetricTarget | null>): UseBoxMetricsResu
|
|
|
313
312
|
declare function useIsScreenReaderEnabled(): boolean;
|
|
314
313
|
//#endregion
|
|
315
314
|
export { usePaste as A, UseAppReturn as C, useFocus as D, UseFocusOptions as E, UseInputReturn as F, useInput as I, useKeyPress as L, Key as M, KeyHandler as N, useFocusManager as O, UseInputOptions as P, useIme as S, FocusManager as T, useStderr as _, DOMElement as a, ImeManager as b, UseAnimationOptions as c, useCursor as d, WindowSize as f, UseStdoutReturn as g, UseStdinReturn as h, useBoxMetrics as i, InputHandler as j, UsePasteOptions as k, useAnimation as l, UseStderrReturn as m, BoxMetrics as n, measureElement as o, useWindowSize as p, UseBoxMetricsResult as r, AnimationResult as s, useIsScreenReaderEnabled as t, CursorPosition as u, useStdin as v, useApp as w, UseImeOptions as x, useStdout as y };
|
|
316
|
-
//# sourceMappingURL=index-
|
|
315
|
+
//# sourceMappingURL=index-Dwx6lKP0.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-Dwx6lKP0.d.mts","names":[],"sources":["../src/composables/useInput.ts","../src/composables/usePaste.ts","../src/composables/useFocus.ts","../src/composables/useApp.ts","../src/composables/useIme.ts","../src/composables/useStreams.ts","../src/composables/useWindowSize.ts","../src/composables/useCursor.ts","../src/composables/useAnimation.ts","../src/layoutMetrics.ts","../src/composables/useBoxMetrics.ts","../src/composables/useIsScreenReaderEnabled.ts"],"mappings":"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"}
|