@stackable-labs/sdk-extension-react 1.17.0 → 1.18.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/ui.d.ts +152 -8
- package/dist/ui.js +17 -3
- package/dist/ui.js.map +1 -1
- package/package.json +2 -2
package/dist/ui.d.ts
CHANGED
|
@@ -74,6 +74,63 @@ export declare const Input: (props: {
|
|
|
74
74
|
className?: string;
|
|
75
75
|
id?: string;
|
|
76
76
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
77
|
+
export declare const Textarea: (props: {
|
|
78
|
+
placeholder?: string;
|
|
79
|
+
value?: string;
|
|
80
|
+
onChange?: (e: RemoteInputChangeEvent) => void;
|
|
81
|
+
disabled?: boolean;
|
|
82
|
+
rows?: string;
|
|
83
|
+
className?: string;
|
|
84
|
+
id?: string;
|
|
85
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
86
|
+
export declare const Select: (props: {
|
|
87
|
+
value?: string;
|
|
88
|
+
defaultValue?: string;
|
|
89
|
+
onChange?: (e: RemoteInputChangeEvent) => void;
|
|
90
|
+
placeholder?: string;
|
|
91
|
+
disabled?: boolean;
|
|
92
|
+
className?: string;
|
|
93
|
+
children?: React.ReactNode;
|
|
94
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
95
|
+
export declare const SelectOption: (props: {
|
|
96
|
+
value: string;
|
|
97
|
+
disabled?: boolean;
|
|
98
|
+
className?: string;
|
|
99
|
+
children?: React.ReactNode;
|
|
100
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
101
|
+
export declare const Checkbox: (props: {
|
|
102
|
+
checked?: boolean;
|
|
103
|
+
onChange?: (e: RemoteInputChangeEvent) => void;
|
|
104
|
+
disabled?: boolean;
|
|
105
|
+
className?: string;
|
|
106
|
+
id?: string;
|
|
107
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
108
|
+
export declare const Switch: (props: {
|
|
109
|
+
checked?: boolean;
|
|
110
|
+
onChange?: (e: RemoteInputChangeEvent) => void;
|
|
111
|
+
disabled?: boolean;
|
|
112
|
+
size?: string;
|
|
113
|
+
className?: string;
|
|
114
|
+
id?: string;
|
|
115
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
116
|
+
export declare const Label: (props: {
|
|
117
|
+
htmlFor?: string;
|
|
118
|
+
className?: string;
|
|
119
|
+
children?: React.ReactNode;
|
|
120
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
121
|
+
export declare const RadioGroup: (props: {
|
|
122
|
+
value?: string;
|
|
123
|
+
defaultValue?: string;
|
|
124
|
+
onChange?: (e: RemoteInputChangeEvent) => void;
|
|
125
|
+
className?: string;
|
|
126
|
+
children?: React.ReactNode;
|
|
127
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
128
|
+
export declare const RadioGroupItem: (props: {
|
|
129
|
+
value: string;
|
|
130
|
+
disabled?: boolean;
|
|
131
|
+
className?: string;
|
|
132
|
+
id?: string;
|
|
133
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
77
134
|
export declare const Separator: (props: {
|
|
78
135
|
className?: string;
|
|
79
136
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -100,19 +157,44 @@ export declare const ScrollArea: (props: {
|
|
|
100
157
|
className?: string;
|
|
101
158
|
children?: React.ReactNode;
|
|
102
159
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
103
|
-
export declare const
|
|
160
|
+
export declare const Skeleton: (props: {
|
|
161
|
+
width?: string;
|
|
162
|
+
height?: string;
|
|
163
|
+
className?: string;
|
|
164
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
165
|
+
export declare const Tooltip: (props: {
|
|
166
|
+
content: string;
|
|
104
167
|
className?: string;
|
|
105
168
|
children?: React.ReactNode;
|
|
106
169
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
107
|
-
export declare const
|
|
108
|
-
|
|
109
|
-
|
|
170
|
+
export declare const Progress: (props: {
|
|
171
|
+
value?: string;
|
|
172
|
+
className?: string;
|
|
173
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
174
|
+
export declare const Alert: (props: {
|
|
175
|
+
variant?: string;
|
|
176
|
+
title?: string;
|
|
177
|
+
className?: string;
|
|
178
|
+
children?: React.ReactNode;
|
|
179
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
180
|
+
export declare const Collapsible: (props: {
|
|
181
|
+
defaultOpen?: boolean;
|
|
182
|
+
className?: string;
|
|
183
|
+
children?: React.ReactNode;
|
|
184
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
185
|
+
export declare const CollapsibleTrigger: (props: {
|
|
110
186
|
className?: string;
|
|
187
|
+
children?: React.ReactNode;
|
|
111
188
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
112
|
-
export declare const
|
|
189
|
+
export declare const CollapsibleContent: (props: {
|
|
113
190
|
className?: string;
|
|
114
191
|
children?: React.ReactNode;
|
|
115
192
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
193
|
+
export declare const Avatar: (props: {
|
|
194
|
+
src?: string;
|
|
195
|
+
alt?: string;
|
|
196
|
+
className?: string;
|
|
197
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
116
198
|
export declare const Icon: (props: {
|
|
117
199
|
name: AllowedIconName;
|
|
118
200
|
size?: string;
|
|
@@ -172,6 +254,51 @@ declare global {
|
|
|
172
254
|
disabled?: boolean;
|
|
173
255
|
id?: string;
|
|
174
256
|
};
|
|
257
|
+
'ui-textarea': Omit<React.HTMLAttributes<HTMLElement>, 'onChange'> & {
|
|
258
|
+
placeholder?: string;
|
|
259
|
+
value?: string;
|
|
260
|
+
onChange?: (e: RemoteInputChangeEvent) => void;
|
|
261
|
+
disabled?: boolean;
|
|
262
|
+
rows?: string;
|
|
263
|
+
id?: string;
|
|
264
|
+
};
|
|
265
|
+
'ui-select': Omit<React.HTMLAttributes<HTMLElement>, 'onChange'> & {
|
|
266
|
+
value?: string;
|
|
267
|
+
defaultValue?: string;
|
|
268
|
+
onChange?: (e: RemoteInputChangeEvent) => void;
|
|
269
|
+
placeholder?: string;
|
|
270
|
+
disabled?: boolean;
|
|
271
|
+
};
|
|
272
|
+
'ui-select-option': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement> & {
|
|
273
|
+
value?: string;
|
|
274
|
+
disabled?: boolean;
|
|
275
|
+
}, HTMLElement>;
|
|
276
|
+
'ui-checkbox': Omit<React.HTMLAttributes<HTMLElement>, 'onChange'> & {
|
|
277
|
+
checked?: boolean;
|
|
278
|
+
onChange?: (e: RemoteInputChangeEvent) => void;
|
|
279
|
+
disabled?: boolean;
|
|
280
|
+
id?: string;
|
|
281
|
+
};
|
|
282
|
+
'ui-switch': Omit<React.HTMLAttributes<HTMLElement>, 'onChange'> & {
|
|
283
|
+
checked?: boolean;
|
|
284
|
+
onChange?: (e: RemoteInputChangeEvent) => void;
|
|
285
|
+
disabled?: boolean;
|
|
286
|
+
size?: string;
|
|
287
|
+
id?: string;
|
|
288
|
+
};
|
|
289
|
+
'ui-label': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement> & {
|
|
290
|
+
htmlFor?: string;
|
|
291
|
+
}, HTMLElement>;
|
|
292
|
+
'ui-radio-group': Omit<React.HTMLAttributes<HTMLElement>, 'onChange'> & {
|
|
293
|
+
value?: string;
|
|
294
|
+
defaultValue?: string;
|
|
295
|
+
onChange?: (e: RemoteInputChangeEvent) => void;
|
|
296
|
+
};
|
|
297
|
+
'ui-radio-group-item': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement> & {
|
|
298
|
+
value?: string;
|
|
299
|
+
disabled?: boolean;
|
|
300
|
+
id?: string;
|
|
301
|
+
}, HTMLElement>;
|
|
175
302
|
'ui-stack': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement> & {
|
|
176
303
|
gap?: string;
|
|
177
304
|
direction?: string;
|
|
@@ -193,12 +320,10 @@ declare global {
|
|
|
193
320
|
value?: string;
|
|
194
321
|
}, HTMLElement>;
|
|
195
322
|
'ui-scroll-area': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
196
|
-
'ui-avatar': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement
|
|
197
|
-
'ui-avatar-image': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement> & {
|
|
323
|
+
'ui-avatar': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement> & {
|
|
198
324
|
src?: string;
|
|
199
325
|
alt?: string;
|
|
200
326
|
}, HTMLElement>;
|
|
201
|
-
'ui-avatar-fallback': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
202
327
|
'ui-icon': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement> & {
|
|
203
328
|
name?: string;
|
|
204
329
|
size?: string;
|
|
@@ -216,6 +341,25 @@ declare global {
|
|
|
216
341
|
'ui-menu': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement> & {
|
|
217
342
|
title?: string;
|
|
218
343
|
}, HTMLElement>;
|
|
344
|
+
'ui-skeleton': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement> & {
|
|
345
|
+
width?: string;
|
|
346
|
+
height?: string;
|
|
347
|
+
}, HTMLElement>;
|
|
348
|
+
'ui-tooltip': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement> & {
|
|
349
|
+
content?: string;
|
|
350
|
+
}, HTMLElement>;
|
|
351
|
+
'ui-progress': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement> & {
|
|
352
|
+
value?: string;
|
|
353
|
+
}, HTMLElement>;
|
|
354
|
+
'ui-alert': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement> & {
|
|
355
|
+
variant?: string;
|
|
356
|
+
title?: string;
|
|
357
|
+
}, HTMLElement>;
|
|
358
|
+
'ui-collapsible': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement> & {
|
|
359
|
+
defaultOpen?: boolean;
|
|
360
|
+
}, HTMLElement>;
|
|
361
|
+
'ui-collapsible-trigger': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
362
|
+
'ui-collapsible-content': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
219
363
|
}
|
|
220
364
|
}
|
|
221
365
|
}
|
package/dist/ui.js
CHANGED
|
@@ -12,6 +12,14 @@ export const Badge = (props) => _jsx("ui-badge", { ...props, children: props.chi
|
|
|
12
12
|
// ─── Inputs ──────────────────────────────────────────────────────────────────
|
|
13
13
|
export const Button = (props) => _jsx("ui-button", { ...props, children: props.children });
|
|
14
14
|
export const Input = (props) => _jsx("ui-input", { ...props });
|
|
15
|
+
export const Textarea = (props) => _jsx("ui-textarea", { ...props });
|
|
16
|
+
export const Select = (props) => _jsx("ui-select", { ...props, children: props.children });
|
|
17
|
+
export const SelectOption = (props) => _jsx("ui-select-option", { ...props, children: props.children });
|
|
18
|
+
export const Checkbox = (props) => _jsx("ui-checkbox", { ...props });
|
|
19
|
+
export const Switch = (props) => _jsx("ui-switch", { ...props });
|
|
20
|
+
export const Label = (props) => _jsx("ui-label", { ...props, children: props.children });
|
|
21
|
+
export const RadioGroup = (props) => _jsx("ui-radio-group", { ...props, children: props.children });
|
|
22
|
+
export const RadioGroupItem = (props) => _jsx("ui-radio-group-item", { ...props });
|
|
15
23
|
// ─── Feedback / Navigation ───────────────────────────────────────────────────
|
|
16
24
|
export const Separator = (props) => _jsx("ui-separator", { ...props });
|
|
17
25
|
export const Tabs = (props) => _jsx("ui-tabs", { ...props, children: props.children });
|
|
@@ -19,10 +27,16 @@ export const TabsList = (props) => _jsx("ui-tabs-list", { ...props, children: pr
|
|
|
19
27
|
export const TabsTrigger = (props) => _jsx("ui-tabs-trigger", { ...props, children: props.children });
|
|
20
28
|
export const TabsContent = (props) => _jsx("ui-tabs-content", { ...props, children: props.children });
|
|
21
29
|
export const ScrollArea = (props) => _jsx("ui-scroll-area", { ...props, children: props.children });
|
|
30
|
+
export const Skeleton = (props) => _jsx("ui-skeleton", { ...props });
|
|
31
|
+
export const Tooltip = (props) => _jsx("ui-tooltip", { ...props, children: props.children });
|
|
32
|
+
export const Progress = (props) => _jsx("ui-progress", { ...props });
|
|
33
|
+
export const Alert = (props) => _jsx("ui-alert", { ...props, children: props.children });
|
|
34
|
+
// ─── Collapsible ─────────────────────────────────────────────────────────────
|
|
35
|
+
export const Collapsible = (props) => _jsx("ui-collapsible", { ...props, children: props.children });
|
|
36
|
+
export const CollapsibleTrigger = (props) => _jsx("ui-collapsible-trigger", { ...props, children: props.children });
|
|
37
|
+
export const CollapsibleContent = (props) => _jsx("ui-collapsible-content", { ...props, children: props.children });
|
|
22
38
|
// ─── Avatar ──────────────────────────────────────────────────────────────────
|
|
23
|
-
export const Avatar = (props) => _jsx("ui-avatar", { ...props
|
|
24
|
-
export const AvatarImage = (props) => _jsx("ui-avatar-image", { ...props });
|
|
25
|
-
export const AvatarFallback = (props) => _jsx("ui-avatar-fallback", { ...props, children: props.children });
|
|
39
|
+
export const Avatar = (props) => _jsx("ui-avatar", { ...props });
|
|
26
40
|
// ─── Icons ───────────────────────────────────────────────────────────────────
|
|
27
41
|
export const Icon = (props) => _jsx("ui-icon", { ...props });
|
|
28
42
|
export const Link = (props) => _jsx("ui-link", { ...props, children: props.children });
|
package/dist/ui.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ui.js","sourceRoot":"","sources":["../src/ui.tsx"],"names":[],"mappings":";AAoBA,gFAAgF;AAEhF,MAAM,CAAC,MAAM,IAAI,GAAG,CAAC,KAIpB,EAAE,EAAE,CAAC,qBAAa,KAAK,YAAG,KAAK,CAAC,QAAQ,GAAW,CAAA;AAEpD,MAAM,CAAC,MAAM,WAAW,GAAG,CAAC,KAG3B,EAAE,EAAE,CAAC,6BAAqB,KAAK,YAAG,KAAK,CAAC,QAAQ,GAAmB,CAAA;AAEpE,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,KAG1B,EAAE,EAAE,CAAC,4BAAoB,KAAK,YAAG,KAAK,CAAC,QAAQ,GAAkB,CAAA;AAElE,MAAM,CAAC,MAAM,KAAK,GAAG,CAAC,KAMrB,EAAE,EAAE,CAAC,sBAAc,KAAK,YAAG,KAAK,CAAC,QAAQ,GAAY,CAAA;AAEtD,MAAM,CAAC,MAAM,MAAM,GAAG,CAAC,KAKtB,EAAE,EAAE,CAAC,uBAAe,KAAK,YAAG,KAAK,CAAC,QAAQ,GAAa,CAAA;AAExD,gFAAgF;AAEhF,MAAM,CAAC,MAAM,IAAI,GAAG,CAAC,KAIpB,EAAE,EAAE,CAAC,qBAAa,KAAK,YAAG,KAAK,CAAC,QAAQ,GAAW,CAAA;AAEpD,MAAM,CAAC,MAAM,OAAO,GAAG,CAAC,KAIvB,EAAE,EAAE,CAAC,wBAAgB,KAAK,YAAG,KAAK,CAAC,QAAQ,GAAc,CAAA;AAE1D,MAAM,CAAC,MAAM,KAAK,GAAG,CAAC,KAKrB,EAAE,EAAE,CAAC,sBAAc,KAAK,YAAG,KAAK,CAAC,QAAQ,GAAY,CAAA;AAEtD,gFAAgF;AAEhF,MAAM,CAAC,MAAM,MAAM,GAAG,CAAC,KAStB,EAAE,EAAE,CAAC,uBAAe,KAAK,YAAG,KAAK,CAAC,QAAQ,GAAa,CAAA;AAExD,MAAM,CAAC,MAAM,KAAK,GAAG,CAAC,KAQrB,EAAE,EAAE,CAAC,sBAAc,KAAK,GAAI,CAAA;AAE7B,gFAAgF;AAEhF,MAAM,CAAC,MAAM,SAAS,GAAG,CAAC,KAA6B,EAAE,EAAE,CAAC,0BAAkB,KAAK,GAAI,CAAA;AAEvF,MAAM,CAAC,MAAM,IAAI,GAAG,CAAC,KAIpB,EAAE,EAAE,CAAC,qBAAa,KAAK,YAAG,KAAK,CAAC,QAAQ,GAAW,CAAA;AAEpD,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC,KAGxB,EAAE,EAAE,CAAC,0BAAkB,KAAK,YAAG,KAAK,CAAC,QAAQ,GAAgB,CAAA;AAE9D,MAAM,CAAC,MAAM,WAAW,GAAG,CAAC,KAI3B,EAAE,EAAE,CAAC,6BAAqB,KAAK,YAAG,KAAK,CAAC,QAAQ,GAAmB,CAAA;AAEpE,MAAM,CAAC,MAAM,WAAW,GAAG,CAAC,KAI3B,EAAE,EAAE,CAAC,6BAAqB,KAAK,YAAG,KAAK,CAAC,QAAQ,GAAmB,CAAA;AAEpE,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,KAG1B,EAAE,EAAE,CAAC,4BAAoB,KAAK,YAAG,KAAK,CAAC,QAAQ,GAAkB,CAAA;AAElE,
|
|
1
|
+
{"version":3,"file":"ui.js","sourceRoot":"","sources":["../src/ui.tsx"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stackable-labs/sdk-extension-react",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.18.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@stackable-labs/sdk-extension-contracts": "1.
|
|
15
|
+
"@stackable-labs/sdk-extension-contracts": "1.18.0",
|
|
16
16
|
"@remote-dom/core": "1.x",
|
|
17
17
|
"@remote-dom/react": "1.x"
|
|
18
18
|
},
|