@tachui/primitives 0.8.0-alpha → 0.8.5-alpha
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/{BasicInput-CWFHw9rL.js → BasicInput-BHfrSdoi.js} +46 -33
- package/dist/{Picker-DrZ7ibdt.js → Picker-DKphYduj.js} +243 -244
- package/dist/ScrollView-CBqSqatM.js +704 -0
- package/dist/Text-D0CYYD-Q.js +170 -0
- package/dist/controls/Button.d.ts +19 -28
- package/dist/controls/Button.d.ts.map +1 -1
- package/dist/controls/index.js +1 -1
- package/dist/display/HTML.d.ts +13 -13
- package/dist/display/Image.d.ts +8 -8
- package/dist/display/Image.d.ts.map +1 -1
- package/dist/display/ScrollView.d.ts +216 -0
- package/dist/display/ScrollView.d.ts.map +1 -0
- package/dist/display/Text.d.ts +37 -44
- package/dist/display/Text.d.ts.map +1 -1
- package/dist/display/index.d.ts +1 -0
- package/dist/display/index.d.ts.map +1 -1
- package/dist/display/index.js +20 -17
- package/dist/forms/BasicForm.d.ts +5 -1
- package/dist/forms/BasicForm.d.ts.map +1 -1
- package/dist/forms/index.js +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +66 -59
- package/dist/layout/Divider.d.ts +9 -3
- package/dist/layout/Divider.d.ts.map +1 -1
- package/dist/layout/Spacer.d.ts +8 -2
- package/dist/layout/Spacer.d.ts.map +1 -1
- package/dist/layout/Stack.d.ts +19 -69
- package/dist/layout/Stack.d.ts.map +1 -1
- package/dist/layout/index.js +267 -13
- package/dist/version.d.ts +14 -0
- package/dist/version.d.ts.map +1 -0
- package/package.json +6 -4
- package/dist/Divider-DWgDKavU.js +0 -474
- package/dist/HTML-aWcvQ0VC.js +0 -321
- package/dist/Text-DYyFBJ6i.js +0 -165
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
import { withModifiers as h, ComponentWithCSSClasses as p, processElementOverride as f, h as d, text as u, clonePropsPreservingReactivity as r, resetLifecycleState as c } from "@tachui/core";
|
|
2
|
+
import { createComponentInstance as g } from "@tachui/core/components";
|
|
3
|
+
var b = Object.defineProperty, m = (t, e, i) => e in t ? b(t, e, { enumerable: !0, configurable: !0, writable: !0, value: i }) : t[e] = i, l = (t, e, i) => m(t, typeof e != "symbol" ? e + "" : e, i);
|
|
4
|
+
const n = {
|
|
5
|
+
largeTitle: { size: 34, weight: "400", lineHeight: 1.2 },
|
|
6
|
+
title: { size: 28, weight: "400", lineHeight: 1.3 },
|
|
7
|
+
title2: { size: 22, weight: "400", lineHeight: 1.3 },
|
|
8
|
+
title3: { size: 20, weight: "400", lineHeight: 1.4 },
|
|
9
|
+
headline: { size: 17, weight: "600", lineHeight: 1.4 },
|
|
10
|
+
body: { size: 17, weight: "400", lineHeight: 1.5 },
|
|
11
|
+
callout: { size: 16, weight: "400", lineHeight: 1.4 },
|
|
12
|
+
subheadline: { size: 15, weight: "400", lineHeight: 1.4 },
|
|
13
|
+
footnote: { size: 13, weight: "400", lineHeight: 1.3 },
|
|
14
|
+
caption: { size: 12, weight: "400", lineHeight: 1.2 },
|
|
15
|
+
caption2: { size: 11, weight: "400", lineHeight: 1.1 }
|
|
16
|
+
};
|
|
17
|
+
class a extends p {
|
|
18
|
+
constructor(e) {
|
|
19
|
+
super(), this.props = e, l(this, "type", "component"), l(this, "id"), l(this, "mounted", !1), l(this, "cleanup", []), l(this, "effectiveTag"), l(this, "validationResult"), this.id = `text-${Date.now()}-${Math.random().toString(36).substr(2, 9)}`;
|
|
20
|
+
const i = f("Text", "span", this.props.element);
|
|
21
|
+
this.effectiveTag = i.tag, this.validationResult = i.validation;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Render the text component with reactive content handling, element override support, and CSS classes
|
|
25
|
+
*/
|
|
26
|
+
render() {
|
|
27
|
+
const e = ["tachui-text"], i = this.createClassString(this.props, e);
|
|
28
|
+
return [d(
|
|
29
|
+
this.effectiveTag,
|
|
30
|
+
{
|
|
31
|
+
className: i,
|
|
32
|
+
// Pass through debug label for debug system
|
|
33
|
+
...this.props.debugLabel && { debugLabel: this.props.debugLabel },
|
|
34
|
+
// Add component metadata for semantic role processing
|
|
35
|
+
componentMetadata: {
|
|
36
|
+
originalType: "Text",
|
|
37
|
+
overriddenTo: this.effectiveTag !== "span" ? this.effectiveTag : void 0,
|
|
38
|
+
validationResult: this.validationResult,
|
|
39
|
+
componentInstance: this
|
|
40
|
+
// Add reference to the Text component instance
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
u(this.props.content || "")
|
|
44
|
+
)];
|
|
45
|
+
}
|
|
46
|
+
// Concatenation support - simplified for now
|
|
47
|
+
concat(e) {
|
|
48
|
+
return this;
|
|
49
|
+
}
|
|
50
|
+
toSegment() {
|
|
51
|
+
return this;
|
|
52
|
+
}
|
|
53
|
+
isConcatenatable() {
|
|
54
|
+
return !0;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Cleanup resources
|
|
58
|
+
*/
|
|
59
|
+
dispose() {
|
|
60
|
+
this.cleanup.forEach((e) => {
|
|
61
|
+
try {
|
|
62
|
+
e();
|
|
63
|
+
} catch (i) {
|
|
64
|
+
console.error("Text component cleanup error:", i);
|
|
65
|
+
}
|
|
66
|
+
}), this.cleanup = [];
|
|
67
|
+
}
|
|
68
|
+
clone(e = {}) {
|
|
69
|
+
return e.deep ? this.deepClone() : this.shallowClone();
|
|
70
|
+
}
|
|
71
|
+
shallowClone() {
|
|
72
|
+
const e = r(this.props), i = new a(e);
|
|
73
|
+
return c(i), i;
|
|
74
|
+
}
|
|
75
|
+
deepClone() {
|
|
76
|
+
const e = r(this.props, {
|
|
77
|
+
deep: !0
|
|
78
|
+
}), i = new a(e);
|
|
79
|
+
return c(i), i;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
function o(t, e) {
|
|
83
|
+
const i = {
|
|
84
|
+
content: t,
|
|
85
|
+
...e
|
|
86
|
+
}, s = g(a, i);
|
|
87
|
+
return h(s);
|
|
88
|
+
}
|
|
89
|
+
const y = {
|
|
90
|
+
/**
|
|
91
|
+
* Create formatted text with multiple styling options
|
|
92
|
+
*/
|
|
93
|
+
formatted(t, e, i) {
|
|
94
|
+
const s = { ...i };
|
|
95
|
+
return e.bold && (s.font = { ...s.font, weight: "bold" }), e.italic && (s.font = { ...s.font, style: "italic" }), e.underline && (s.textDecoration = "underline"), e.strikethrough && (s.textDecoration = "line-through"), e.monospace && (s.font = { ...s.font, family: "monospace" }), e.smallCaps && (s.font = { ...s.font, variant: "small-caps" }), o(t, s);
|
|
96
|
+
},
|
|
97
|
+
/**
|
|
98
|
+
* Create bold text
|
|
99
|
+
*/
|
|
100
|
+
bold(t, e) {
|
|
101
|
+
return o(t, {
|
|
102
|
+
font: { weight: "bold" },
|
|
103
|
+
...e
|
|
104
|
+
});
|
|
105
|
+
},
|
|
106
|
+
/**
|
|
107
|
+
* Create italic text
|
|
108
|
+
*/
|
|
109
|
+
italic(t, e) {
|
|
110
|
+
return o(t, {
|
|
111
|
+
font: { style: "italic" },
|
|
112
|
+
...e
|
|
113
|
+
});
|
|
114
|
+
},
|
|
115
|
+
/**
|
|
116
|
+
* Create underlined text
|
|
117
|
+
*/
|
|
118
|
+
underline(t, e) {
|
|
119
|
+
return o(t, {
|
|
120
|
+
textDecoration: "underline",
|
|
121
|
+
...e
|
|
122
|
+
});
|
|
123
|
+
},
|
|
124
|
+
/**
|
|
125
|
+
* Create monospace text
|
|
126
|
+
*/
|
|
127
|
+
monospace(t, e) {
|
|
128
|
+
return o(t, {
|
|
129
|
+
font: { family: "monospace" },
|
|
130
|
+
...e
|
|
131
|
+
});
|
|
132
|
+
}
|
|
133
|
+
}, v = {
|
|
134
|
+
heading: (t = 1) => ({
|
|
135
|
+
font: n[t === 1 ? "largeTitle" : t === 2 ? "title" : t === 3 ? "title2" : t === 4 ? "title3" : t === 5 ? "headline" : "body"],
|
|
136
|
+
accessibilityRole: "heading",
|
|
137
|
+
accessibilityLevel: t
|
|
138
|
+
}),
|
|
139
|
+
body: () => ({
|
|
140
|
+
font: n.body,
|
|
141
|
+
accessibilityRole: "text"
|
|
142
|
+
}),
|
|
143
|
+
caption: () => ({
|
|
144
|
+
font: n.caption,
|
|
145
|
+
color: "#666666"
|
|
146
|
+
}),
|
|
147
|
+
footnote: () => ({
|
|
148
|
+
font: n.footnote,
|
|
149
|
+
color: "#888888"
|
|
150
|
+
}),
|
|
151
|
+
// Typography preset functions
|
|
152
|
+
LargeTitle: (t, e) => o(t, { font: n.largeTitle, ...e }),
|
|
153
|
+
Title: (t, e) => o(t, { font: n.title, ...e }),
|
|
154
|
+
Title2: (t, e) => o(t, { font: n.title2, ...e }),
|
|
155
|
+
Title3: (t, e) => o(t, { font: n.title3, ...e }),
|
|
156
|
+
Headline: (t, e) => o(t, { font: n.headline, ...e }),
|
|
157
|
+
Body: (t, e) => o(t, { font: n.body, ...e }),
|
|
158
|
+
Callout: (t, e) => o(t, { font: n.callout, ...e }),
|
|
159
|
+
Subheadline: (t, e) => o(t, { font: n.subheadline, ...e }),
|
|
160
|
+
Footnote: (t, e) => o(t, { font: n.footnote, ...e }),
|
|
161
|
+
Caption: (t, e) => o(t, { font: n.caption, ...e }),
|
|
162
|
+
Caption2: (t, e) => o(t, { font: n.caption2, ...e })
|
|
163
|
+
};
|
|
164
|
+
export {
|
|
165
|
+
a as E,
|
|
166
|
+
o as T,
|
|
167
|
+
y as a,
|
|
168
|
+
v as b,
|
|
169
|
+
n as c
|
|
170
|
+
};
|
|
@@ -4,8 +4,9 @@
|
|
|
4
4
|
* SwiftUI-inspired Button component with press states, variants,
|
|
5
5
|
* and advanced interaction handling.
|
|
6
6
|
*/
|
|
7
|
-
import type {
|
|
7
|
+
import type { ModifiableComponentWithModifiers, ComponentProps, Signal } from '@tachui/core';
|
|
8
8
|
import { ColorAsset } from '@tachui/core';
|
|
9
|
+
import type { CloneableComponent, CloneOptions } from '@tachui/core/runtime/types';
|
|
9
10
|
import type { Concatenatable, ComponentSegment } from '@tachui/core';
|
|
10
11
|
import { ConcatenatedComponent } from '@tachui/core';
|
|
11
12
|
import { ComponentWithCSSClasses, type CSSClassesProps } from '@tachui/core';
|
|
@@ -94,7 +95,7 @@ export declare const defaultButtonTheme: ButtonTheme;
|
|
|
94
95
|
/**
|
|
95
96
|
* Enhanced Button component class with CSS classes support
|
|
96
97
|
*/
|
|
97
|
-
export declare class EnhancedButton extends ComponentWithCSSClasses implements
|
|
98
|
+
export declare class EnhancedButton extends ComponentWithCSSClasses implements CloneableComponent<ButtonProps>, Concatenatable<ButtonProps> {
|
|
98
99
|
props: ButtonProps;
|
|
99
100
|
readonly type: "component";
|
|
100
101
|
readonly id: string;
|
|
@@ -124,10 +125,6 @@ export declare class EnhancedButton extends ComponentWithCSSClasses implements C
|
|
|
124
125
|
* Resolve color value from string, signal, or asset
|
|
125
126
|
*/
|
|
126
127
|
private resolveColorValue;
|
|
127
|
-
/**
|
|
128
|
-
* Attach interaction event listeners to the button element
|
|
129
|
-
*/
|
|
130
|
-
private attachInteractionEvents;
|
|
131
128
|
/**
|
|
132
129
|
* Check if button is enabled
|
|
133
130
|
*/
|
|
@@ -142,7 +139,7 @@ export declare class EnhancedButton extends ComponentWithCSSClasses implements C
|
|
|
142
139
|
debugLabel?: string | undefined;
|
|
143
140
|
className: string | Signal<string>;
|
|
144
141
|
type: string;
|
|
145
|
-
disabled: boolean
|
|
142
|
+
disabled: boolean;
|
|
146
143
|
onClick: (() => void) | undefined;
|
|
147
144
|
};
|
|
148
145
|
children: import("@tachui/core").DOMNode[];
|
|
@@ -163,6 +160,10 @@ export declare class EnhancedButton extends ComponentWithCSSClasses implements C
|
|
|
163
160
|
* Check if the button has typography-related modifiers applied
|
|
164
161
|
*/
|
|
165
162
|
private hasTypographyModifiers;
|
|
163
|
+
/**
|
|
164
|
+
* Check if the button has a shadow modifier applied
|
|
165
|
+
*/
|
|
166
|
+
private hasShadowModifier;
|
|
166
167
|
/**
|
|
167
168
|
* Get computed button styles based on variant, size, role, and state
|
|
168
169
|
*/
|
|
@@ -199,13 +200,15 @@ export declare class EnhancedButton extends ComponentWithCSSClasses implements C
|
|
|
199
200
|
* Merge accessibility roles when combining components
|
|
200
201
|
*/
|
|
201
202
|
private mergeAccessibilityRoles;
|
|
203
|
+
clone(options?: CloneOptions): this;
|
|
204
|
+
shallowClone(): this;
|
|
205
|
+
deepClone(): this;
|
|
206
|
+
private syncStateToClone;
|
|
202
207
|
}
|
|
203
208
|
/**
|
|
204
209
|
* Create enhanced Button component with modifier support
|
|
205
210
|
*/
|
|
206
|
-
export declare function Button(title: string | (() => string) | Signal<string>, action?: () => void | Promise<void>, props?: Omit<ButtonProps, 'title' | 'action'>):
|
|
207
|
-
modifier: ModifierBuilder<ModifiableComponent<ButtonProps>>;
|
|
208
|
-
};
|
|
211
|
+
export declare function Button(title: string | (() => string) | Signal<string>, action?: () => void | Promise<void>, props?: Omit<ButtonProps, 'title' | 'action'>): ModifiableComponentWithModifiers<ButtonProps>;
|
|
209
212
|
/**
|
|
210
213
|
* Button variant shortcuts
|
|
211
214
|
*/
|
|
@@ -213,38 +216,26 @@ export declare const ButtonStyles: {
|
|
|
213
216
|
/**
|
|
214
217
|
* Filled button (primary)
|
|
215
218
|
*/
|
|
216
|
-
Filled: (title: string | (() => string) | Signal<string>, action?: () => void | Promise<void>, props?: Omit<ButtonProps, "title" | "action" | "variant">) =>
|
|
217
|
-
modifier: ModifierBuilder<ModifiableComponent<ButtonProps>>;
|
|
218
|
-
};
|
|
219
|
+
Filled: (title: string | (() => string) | Signal<string>, action?: () => void | Promise<void>, props?: Omit<ButtonProps, "title" | "action" | "variant">) => ModifiableComponentWithModifiers<ButtonProps>;
|
|
219
220
|
/**
|
|
220
221
|
* Outlined button
|
|
221
222
|
*/
|
|
222
|
-
Outlined: (title: string | (() => string) | Signal<string>, action?: () => void | Promise<void>, props?: Omit<ButtonProps, "title" | "action" | "variant">) =>
|
|
223
|
-
modifier: ModifierBuilder<ModifiableComponent<ButtonProps>>;
|
|
224
|
-
};
|
|
223
|
+
Outlined: (title: string | (() => string) | Signal<string>, action?: () => void | Promise<void>, props?: Omit<ButtonProps, "title" | "action" | "variant">) => ModifiableComponentWithModifiers<ButtonProps>;
|
|
225
224
|
/**
|
|
226
225
|
* Plain button (text only)
|
|
227
226
|
*/
|
|
228
|
-
Plain: (title: string | (() => string) | Signal<string>, action?: () => void | Promise<void>, props?: Omit<ButtonProps, "title" | "action" | "variant">) =>
|
|
229
|
-
modifier: ModifierBuilder<ModifiableComponent<ButtonProps>>;
|
|
230
|
-
};
|
|
227
|
+
Plain: (title: string | (() => string) | Signal<string>, action?: () => void | Promise<void>, props?: Omit<ButtonProps, "title" | "action" | "variant">) => ModifiableComponentWithModifiers<ButtonProps>;
|
|
231
228
|
/**
|
|
232
229
|
* Bordered button
|
|
233
230
|
*/
|
|
234
|
-
Bordered: (title: string | (() => string) | Signal<string>, action?: () => void | Promise<void>, props?: Omit<ButtonProps, "title" | "action" | "variant">) =>
|
|
235
|
-
modifier: ModifierBuilder<ModifiableComponent<ButtonProps>>;
|
|
236
|
-
};
|
|
231
|
+
Bordered: (title: string | (() => string) | Signal<string>, action?: () => void | Promise<void>, props?: Omit<ButtonProps, "title" | "action" | "variant">) => ModifiableComponentWithModifiers<ButtonProps>;
|
|
237
232
|
/**
|
|
238
233
|
* Destructive button
|
|
239
234
|
*/
|
|
240
|
-
Destructive: (title: string | (() => string) | Signal<string>, action?: () => void | Promise<void>, props?: Omit<ButtonProps, "title" | "action" | "role">) =>
|
|
241
|
-
modifier: ModifierBuilder<ModifiableComponent<ButtonProps>>;
|
|
242
|
-
};
|
|
235
|
+
Destructive: (title: string | (() => string) | Signal<string>, action?: () => void | Promise<void>, props?: Omit<ButtonProps, "title" | "action" | "role">) => ModifiableComponentWithModifiers<ButtonProps>;
|
|
243
236
|
/**
|
|
244
237
|
* Cancel button
|
|
245
238
|
*/
|
|
246
|
-
Cancel: (title: string | (() => string) | Signal<string>, action?: () => void | Promise<void>, props?: Omit<ButtonProps, "title" | "action" | "role">) =>
|
|
247
|
-
modifier: ModifierBuilder<ModifiableComponent<ButtonProps>>;
|
|
248
|
-
};
|
|
239
|
+
Cancel: (title: string | (() => string) | Signal<string>, action?: () => void | Promise<void>, props?: Omit<ButtonProps, "title" | "action" | "role">) => ModifiableComponentWithModifiers<ButtonProps>;
|
|
249
240
|
};
|
|
250
241
|
//# sourceMappingURL=Button.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../src/controls/Button.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EACV,
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../src/controls/Button.ts"],"names":[],"mappings":"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"}
|
package/dist/controls/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { B as s, a as t, E as l, h as n, c as g, L as i, b as o, P as c, i as T, j as h, T as k, e as r, f as d, g as u, d as B } from "../Picker-
|
|
1
|
+
import { B as s, a as t, E as l, h as n, c as g, L as i, b as o, P as c, i as T, j as h, T as k, e as r, f as d, g as u, d as B } from "../Picker-DKphYduj.js";
|
|
2
2
|
export {
|
|
3
3
|
s as Button,
|
|
4
4
|
t as ButtonStyles,
|
package/dist/display/HTML.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ export declare const HTML: {
|
|
|
19
19
|
*/
|
|
20
20
|
div: (props?: {
|
|
21
21
|
children?: any;
|
|
22
|
-
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & {
|
|
22
|
+
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>> & {
|
|
23
23
|
modifier: import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>>;
|
|
24
24
|
};
|
|
25
25
|
/**
|
|
@@ -27,7 +27,7 @@ export declare const HTML: {
|
|
|
27
27
|
*/
|
|
28
28
|
span: (props?: {
|
|
29
29
|
children?: any;
|
|
30
|
-
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & {
|
|
30
|
+
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>> & {
|
|
31
31
|
modifier: import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>>;
|
|
32
32
|
};
|
|
33
33
|
/**
|
|
@@ -35,7 +35,7 @@ export declare const HTML: {
|
|
|
35
35
|
*/
|
|
36
36
|
p: (props?: {
|
|
37
37
|
children?: any;
|
|
38
|
-
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & {
|
|
38
|
+
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>> & {
|
|
39
39
|
modifier: import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>>;
|
|
40
40
|
};
|
|
41
41
|
/**
|
|
@@ -47,7 +47,7 @@ export declare const HTML: {
|
|
|
47
47
|
button: (props?: {
|
|
48
48
|
children?: any;
|
|
49
49
|
onClick?: () => void;
|
|
50
|
-
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & {
|
|
50
|
+
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>> & {
|
|
51
51
|
modifier: import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>>;
|
|
52
52
|
};
|
|
53
53
|
/**
|
|
@@ -58,7 +58,7 @@ export declare const HTML: {
|
|
|
58
58
|
value?: string;
|
|
59
59
|
placeholder?: string;
|
|
60
60
|
onChange?: (value: string) => void;
|
|
61
|
-
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & {
|
|
61
|
+
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>> & {
|
|
62
62
|
modifier: import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>>;
|
|
63
63
|
};
|
|
64
64
|
/**
|
|
@@ -72,7 +72,7 @@ export declare const HTML: {
|
|
|
72
72
|
alt?: string;
|
|
73
73
|
width?: number | string;
|
|
74
74
|
height?: number | string;
|
|
75
|
-
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & {
|
|
75
|
+
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>> & {
|
|
76
76
|
modifier: import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>>;
|
|
77
77
|
};
|
|
78
78
|
/**
|
|
@@ -80,7 +80,7 @@ export declare const HTML: {
|
|
|
80
80
|
*/
|
|
81
81
|
heading: (level: 1 | 2 | 3 | 4 | 5 | 6) => (props?: {
|
|
82
82
|
children?: any;
|
|
83
|
-
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & {
|
|
83
|
+
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>> & {
|
|
84
84
|
modifier: import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>>;
|
|
85
85
|
};
|
|
86
86
|
};
|
|
@@ -89,32 +89,32 @@ export declare const HTML: {
|
|
|
89
89
|
*/
|
|
90
90
|
export declare const H1: (props?: {
|
|
91
91
|
children?: any;
|
|
92
|
-
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & {
|
|
92
|
+
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>> & {
|
|
93
93
|
modifier: import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>>;
|
|
94
94
|
};
|
|
95
95
|
export declare const H2: (props?: {
|
|
96
96
|
children?: any;
|
|
97
|
-
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & {
|
|
97
|
+
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>> & {
|
|
98
98
|
modifier: import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>>;
|
|
99
99
|
};
|
|
100
100
|
export declare const H3: (props?: {
|
|
101
101
|
children?: any;
|
|
102
|
-
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & {
|
|
102
|
+
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>> & {
|
|
103
103
|
modifier: import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>>;
|
|
104
104
|
};
|
|
105
105
|
export declare const H4: (props?: {
|
|
106
106
|
children?: any;
|
|
107
|
-
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & {
|
|
107
|
+
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>> & {
|
|
108
108
|
modifier: import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>>;
|
|
109
109
|
};
|
|
110
110
|
export declare const H5: (props?: {
|
|
111
111
|
children?: any;
|
|
112
|
-
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & {
|
|
112
|
+
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>> & {
|
|
113
113
|
modifier: import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>>;
|
|
114
114
|
};
|
|
115
115
|
export declare const H6: (props?: {
|
|
116
116
|
children?: any;
|
|
117
|
-
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & {
|
|
117
|
+
}) => import("@tachui/core").ModifiableComponent<ComponentProps> & import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>> & {
|
|
118
118
|
modifier: import("@tachui/core").ModifierBuilder<import("@tachui/core").ModifiableComponent<ComponentProps>>;
|
|
119
119
|
};
|
|
120
120
|
//# sourceMappingURL=HTML.d.ts.map
|
package/dist/display/Image.d.ts
CHANGED
|
@@ -4,14 +4,17 @@
|
|
|
4
4
|
* SwiftUI-inspired Image component with loading states, error handling,
|
|
5
5
|
* responsive sizing, and advanced image handling capabilities.
|
|
6
6
|
*/
|
|
7
|
-
import type { ModifiableComponent, ModifierBuilder } from '@tachui/core';
|
|
7
|
+
import type { ModifiableComponent, ModifierBuilder, ModifiableComponentWithModifiers } from '@tachui/core';
|
|
8
8
|
import type { Signal } from '@tachui/core';
|
|
9
9
|
import type { ComponentInstance, ComponentProps } from '@tachui/core';
|
|
10
10
|
import { ImageAsset } from '@tachui/core';
|
|
11
|
+
import type { ImageAssetProxy } from '@tachui/core/assets';
|
|
11
12
|
import type { Concatenatable, ComponentSegment } from '@tachui/core';
|
|
12
13
|
import { ConcatenatedComponent } from '@tachui/core';
|
|
13
14
|
import { type ElementOverrideProps } from '@tachui/core';
|
|
14
15
|
import { ComponentWithCSSClasses, type CSSClassesProps } from '@tachui/core';
|
|
16
|
+
type ImageAssetLike = ImageAsset | ImageAssetProxy;
|
|
17
|
+
type ImageSource = string | Signal<string> | ImageAssetLike;
|
|
15
18
|
/**
|
|
16
19
|
* Image loading state
|
|
17
20
|
*/
|
|
@@ -28,11 +31,8 @@ export type ImageResizeMode = 'cover' | 'contain' | 'fill' | 'none';
|
|
|
28
31
|
* Image loading strategy
|
|
29
32
|
*/
|
|
30
33
|
export type ImageLoadingStrategy = 'eager' | 'lazy';
|
|
31
|
-
/**
|
|
32
|
-
* Image component properties with element override support and CSS classes
|
|
33
|
-
*/
|
|
34
34
|
export interface ImageProps extends ComponentProps, ElementOverrideProps, CSSClassesProps {
|
|
35
|
-
src?:
|
|
35
|
+
src?: ImageSource;
|
|
36
36
|
srcSet?: string | Signal<string>;
|
|
37
37
|
alt?: string | Signal<string>;
|
|
38
38
|
width?: number | string | Signal<number | string>;
|
|
@@ -127,12 +127,11 @@ export declare class EnhancedImage extends ComponentWithCSSClasses implements Co
|
|
|
127
127
|
/**
|
|
128
128
|
* Extended Image component interface with SwiftUI-style shorthands
|
|
129
129
|
*/
|
|
130
|
-
export interface ImageWithShorthands extends
|
|
131
|
-
modifier: ModifierBuilder<ModifiableComponent<ImageProps>>;
|
|
130
|
+
export interface ImageWithShorthands extends ModifiableComponentWithModifiers<ImageProps> {
|
|
132
131
|
scaledToFit(): ImageWithShorthands;
|
|
133
132
|
scaledToFill(): ImageWithShorthands;
|
|
134
133
|
}
|
|
135
|
-
export declare function Image(src:
|
|
134
|
+
export declare function Image(src: ImageSource, props?: Omit<ImageProps, 'src'>): ImageWithShorthands;
|
|
136
135
|
/**
|
|
137
136
|
* Image loading states for external use
|
|
138
137
|
*/
|
|
@@ -189,4 +188,5 @@ export declare const ImageUtils: {
|
|
|
189
188
|
modifier: ModifierBuilder<ModifiableComponent<ImageProps>>;
|
|
190
189
|
};
|
|
191
190
|
};
|
|
191
|
+
export {};
|
|
192
192
|
//# sourceMappingURL=Image.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Image.d.ts","sourceRoot":"","sources":["../../src/display/Image.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"Image.d.ts","sourceRoot":"","sources":["../../src/display/Image.ts"],"names":[],"mappings":"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"}
|