@object-ui/types 0.3.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.
Files changed (67) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +304 -0
  3. package/dist/api-types.d.ts +451 -0
  4. package/dist/api-types.d.ts.map +1 -0
  5. package/dist/api-types.js +10 -0
  6. package/dist/app.d.ts +120 -0
  7. package/dist/app.d.ts.map +1 -0
  8. package/dist/app.js +7 -0
  9. package/dist/base.d.ts +360 -0
  10. package/dist/base.d.ts.map +1 -0
  11. package/dist/base.js +10 -0
  12. package/dist/complex.d.ts +433 -0
  13. package/dist/complex.d.ts.map +1 -0
  14. package/dist/complex.js +9 -0
  15. package/dist/crud.d.ts +457 -0
  16. package/dist/crud.d.ts.map +1 -0
  17. package/dist/crud.js +10 -0
  18. package/dist/data-display.d.ts +599 -0
  19. package/dist/data-display.d.ts.map +1 -0
  20. package/dist/data-display.js +9 -0
  21. package/dist/data.d.ts +295 -0
  22. package/dist/data.d.ts.map +1 -0
  23. package/dist/data.js +10 -0
  24. package/dist/disclosure.d.ts +107 -0
  25. package/dist/disclosure.d.ts.map +1 -0
  26. package/dist/disclosure.js +9 -0
  27. package/dist/feedback.d.ts +159 -0
  28. package/dist/feedback.d.ts.map +1 -0
  29. package/dist/feedback.js +9 -0
  30. package/dist/form.d.ts +932 -0
  31. package/dist/form.d.ts.map +1 -0
  32. package/dist/form.js +9 -0
  33. package/dist/index.d.ts +108 -0
  34. package/dist/index.d.ts.map +1 -0
  35. package/dist/index.js +48 -0
  36. package/dist/layout.d.ts +418 -0
  37. package/dist/layout.d.ts.map +1 -0
  38. package/dist/layout.js +10 -0
  39. package/dist/navigation.d.ts +224 -0
  40. package/dist/navigation.d.ts.map +1 -0
  41. package/dist/navigation.js +9 -0
  42. package/dist/objectql.d.ts +254 -0
  43. package/dist/objectql.d.ts.map +1 -0
  44. package/dist/objectql.js +10 -0
  45. package/dist/overlay.d.ts +396 -0
  46. package/dist/overlay.d.ts.map +1 -0
  47. package/dist/overlay.js +9 -0
  48. package/dist/registry.d.ts +85 -0
  49. package/dist/registry.d.ts.map +1 -0
  50. package/dist/registry.js +1 -0
  51. package/package.json +82 -0
  52. package/src/api-types.ts +464 -0
  53. package/src/app.ts +138 -0
  54. package/src/base.ts +416 -0
  55. package/src/complex.ts +465 -0
  56. package/src/crud.ts +467 -0
  57. package/src/data-display.ts +630 -0
  58. package/src/data.ts +341 -0
  59. package/src/disclosure.ts +113 -0
  60. package/src/feedback.ts +170 -0
  61. package/src/form.ts +954 -0
  62. package/src/index.ts +350 -0
  63. package/src/layout.ts +451 -0
  64. package/src/navigation.ts +235 -0
  65. package/src/objectql.ts +301 -0
  66. package/src/overlay.ts +418 -0
  67. package/src/registry.ts +182 -0
package/dist/base.d.ts ADDED
@@ -0,0 +1,360 @@
1
+ /**
2
+ * @object-ui/types - Base Schema Types
3
+ *
4
+ * The foundational type definitions for the Object UI schema protocol.
5
+ * These types define the universal interface for all UI components.
6
+ *
7
+ * @module base
8
+ * @packageDocumentation
9
+ */
10
+ /**
11
+ * Base schema interface that all component schemas extend.
12
+ * This is the fundamental building block of the Object UI protocol.
13
+ *
14
+ * @example
15
+ * ```typescript
16
+ * const schema: BaseSchema = {
17
+ * type: 'text',
18
+ * id: 'greeting',
19
+ * className: 'text-lg font-bold',
20
+ * data: { message: 'Hello World' }
21
+ * }
22
+ * ```
23
+ */
24
+ export interface BaseSchema {
25
+ /**
26
+ * Component type identifier. Determines which renderer to use.
27
+ * @example 'input', 'button', 'form', 'grid'
28
+ */
29
+ type: string;
30
+ /**
31
+ * Unique identifier for the component instance.
32
+ * Used for state management, event handling, and React keys.
33
+ */
34
+ id?: string;
35
+ /**
36
+ * Human-readable name for the component.
37
+ * Used for form field names, labels, and debugging.
38
+ */
39
+ name?: string;
40
+ /**
41
+ * Display label for the component.
42
+ * Often used in forms, cards, and other UI elements.
43
+ */
44
+ label?: string;
45
+ /**
46
+ * Descriptive text providing additional context.
47
+ * Typically rendered as help text below the component.
48
+ */
49
+ description?: string;
50
+ /**
51
+ * Placeholder text for input components.
52
+ * Provides hints about expected input format or content.
53
+ */
54
+ placeholder?: string;
55
+ /**
56
+ * Tailwind CSS classes to apply to the component.
57
+ * This is the primary styling mechanism in Object UI.
58
+ * @example 'bg-blue-500 text-white p-4 rounded-lg'
59
+ */
60
+ className?: string;
61
+ /**
62
+ * Inline CSS styles as a JavaScript object.
63
+ * Use sparingly - prefer className with Tailwind.
64
+ * @example { backgroundColor: '#fff', padding: '16px' }
65
+ */
66
+ style?: Record<string, string | number>;
67
+ /**
68
+ * Arbitrary data attached to the component.
69
+ * Can be used for custom properties, state, or context.
70
+ */
71
+ data?: any;
72
+ /**
73
+ * Child components or content.
74
+ * Can be a single component, array of components, or primitive values.
75
+ */
76
+ body?: SchemaNode | SchemaNode[];
77
+ /**
78
+ * Alternative name for children (React-style).
79
+ * Some components use 'children' instead of 'body'.
80
+ */
81
+ children?: SchemaNode | SchemaNode[];
82
+ /**
83
+ * Controls whether the component is visible.
84
+ * When false, component is not rendered (display: none).
85
+ * @default true
86
+ */
87
+ visible?: boolean;
88
+ /**
89
+ * Expression for conditional visibility.
90
+ * Evaluated against the current data context.
91
+ * @example "${data.role === 'admin'}"
92
+ */
93
+ visibleOn?: string;
94
+ /**
95
+ * Controls whether the component is hidden (but still rendered).
96
+ * When true, component is rendered but not visible (visibility: hidden).
97
+ * @default false
98
+ */
99
+ hidden?: boolean;
100
+ /**
101
+ * Expression for conditional hiding.
102
+ * @example "${!data.isActive}"
103
+ */
104
+ hiddenOn?: string;
105
+ /**
106
+ * Controls whether the component is disabled.
107
+ * Applies to interactive components like buttons and inputs.
108
+ * @default false
109
+ */
110
+ disabled?: boolean;
111
+ /**
112
+ * Expression for conditional disabling.
113
+ * @example "${data.status === 'locked'}"
114
+ */
115
+ disabledOn?: string;
116
+ /**
117
+ * Test ID for automated testing.
118
+ * Rendered as data-testid attribute.
119
+ */
120
+ testId?: string;
121
+ /**
122
+ * Accessibility label for screen readers.
123
+ * Rendered as aria-label attribute.
124
+ */
125
+ ariaLabel?: string;
126
+ /**
127
+ * Additional properties specific to the component type.
128
+ * This index signature allows type-specific extensions.
129
+ */
130
+ [key: string]: any;
131
+ }
132
+ /**
133
+ * A schema node can be a full schema object or a primitive value.
134
+ * This union type supports both structured components and simple content.
135
+ *
136
+ * @example
137
+ * ```typescript
138
+ * const nodes: SchemaNode[] = [
139
+ * { type: 'text', value: 'Hello' },
140
+ * 'Plain string',
141
+ * { type: 'button', label: 'Click' }
142
+ * ]
143
+ * ```
144
+ */
145
+ export type SchemaNode = BaseSchema | string | number | boolean | null | undefined;
146
+ /**
147
+ * Component renderer function type.
148
+ * Accepts a schema and returns a rendered component.
149
+ * Framework-agnostic - can be React, Vue, or any other renderer.
150
+ */
151
+ export interface ComponentRendererProps<TSchema extends BaseSchema = BaseSchema> {
152
+ /**
153
+ * The schema object to render
154
+ */
155
+ schema: TSchema;
156
+ /**
157
+ * Additional properties passed to the renderer
158
+ */
159
+ [key: string]: any;
160
+ }
161
+ /**
162
+ * Input field configuration for component metadata.
163
+ * Describes what properties a component accepts in the designer/editor.
164
+ */
165
+ export interface ComponentInput {
166
+ /**
167
+ * Property name (must match schema property)
168
+ */
169
+ name: string;
170
+ /**
171
+ * Input control type
172
+ */
173
+ type: 'string' | 'number' | 'boolean' | 'enum' | 'array' | 'object' | 'color' | 'date' | 'code' | 'file' | 'slot';
174
+ /**
175
+ * Display label in the editor
176
+ */
177
+ label?: string;
178
+ /**
179
+ * Default value for new instances
180
+ */
181
+ defaultValue?: any;
182
+ /**
183
+ * Whether this property is required
184
+ */
185
+ required?: boolean;
186
+ /**
187
+ * Enum options (for type='enum')
188
+ */
189
+ enum?: string[] | {
190
+ label: string;
191
+ value: any;
192
+ }[];
193
+ /**
194
+ * Help text or description
195
+ */
196
+ description?: string;
197
+ /**
198
+ * Whether this is an advanced/expert option
199
+ */
200
+ advanced?: boolean;
201
+ /**
202
+ * Specific input type (e.g., 'email', 'password' for string)
203
+ */
204
+ inputType?: string;
205
+ /**
206
+ * Minimum value (for number/date)
207
+ */
208
+ min?: number;
209
+ /**
210
+ * Maximum value (for number/date)
211
+ */
212
+ max?: number;
213
+ /**
214
+ * Step value (for number)
215
+ */
216
+ step?: number;
217
+ /**
218
+ * Placeholder text
219
+ */
220
+ placeholder?: string;
221
+ }
222
+ /**
223
+ * Component metadata for registration and designer integration.
224
+ * Describes the component's capabilities, defaults, and documentation.
225
+ */
226
+ export interface ComponentMeta {
227
+ /**
228
+ * Display name in designer/palette
229
+ */
230
+ label?: string;
231
+ /**
232
+ * Icon name or SVG string
233
+ */
234
+ icon?: string;
235
+ /**
236
+ * Category for grouping (e.g., 'Layout', 'Form', 'Data Display')
237
+ */
238
+ category?: string;
239
+ /**
240
+ * Configurable properties
241
+ */
242
+ inputs?: ComponentInput[];
243
+ /**
244
+ * Default property values for new instances
245
+ */
246
+ defaultProps?: Record<string, any>;
247
+ /**
248
+ * Default children for container components
249
+ */
250
+ defaultChildren?: SchemaNode[];
251
+ /**
252
+ * Example configurations for documentation
253
+ */
254
+ examples?: Record<string, any>;
255
+ /**
256
+ * Whether the component can have children
257
+ */
258
+ isContainer?: boolean;
259
+ /**
260
+ * Whether the component can be resized in the designer
261
+ */
262
+ resizable?: boolean;
263
+ /**
264
+ * Resize constraints (which dimensions can be resized)
265
+ */
266
+ resizeConstraints?: {
267
+ width?: boolean;
268
+ height?: boolean;
269
+ minWidth?: number;
270
+ maxWidth?: number;
271
+ minHeight?: number;
272
+ maxHeight?: number;
273
+ };
274
+ /**
275
+ * Tags for search/filtering
276
+ */
277
+ tags?: string[];
278
+ /**
279
+ * Description for documentation
280
+ */
281
+ description?: string;
282
+ }
283
+ /**
284
+ * Complete component configuration combining renderer and metadata.
285
+ */
286
+ export interface ComponentConfig extends ComponentMeta {
287
+ /**
288
+ * Unique component type identifier
289
+ */
290
+ type: string;
291
+ /**
292
+ * The component renderer (framework-specific)
293
+ */
294
+ component: any;
295
+ }
296
+ /**
297
+ * Common HTML attributes that can be applied to components
298
+ */
299
+ export interface HTMLAttributes {
300
+ id?: string;
301
+ className?: string;
302
+ style?: Record<string, any>;
303
+ title?: string;
304
+ role?: string;
305
+ 'aria-label'?: string;
306
+ 'aria-describedby'?: string;
307
+ 'data-testid'?: string;
308
+ }
309
+ /**
310
+ * Event handler types
311
+ */
312
+ export interface EventHandlers {
313
+ onClick?: (event?: any) => void | Promise<void>;
314
+ onChange?: (value: any, event?: any) => void | Promise<void>;
315
+ onSubmit?: (data: any, event?: any) => void | Promise<void>;
316
+ onFocus?: (event?: any) => void;
317
+ onBlur?: (event?: any) => void;
318
+ onKeyDown?: (event?: any) => void;
319
+ onKeyUp?: (event?: any) => void;
320
+ onMouseEnter?: (event?: any) => void;
321
+ onMouseLeave?: (event?: any) => void;
322
+ }
323
+ /**
324
+ * Common style properties using Tailwind's semantic naming
325
+ */
326
+ export interface StyleProps {
327
+ /**
328
+ * Padding (Tailwind scale: 0-96)
329
+ */
330
+ padding?: number | string;
331
+ /**
332
+ * Margin (Tailwind scale: 0-96)
333
+ */
334
+ margin?: number | string;
335
+ /**
336
+ * Gap between flex/grid items (Tailwind scale: 0-96)
337
+ */
338
+ gap?: number | string;
339
+ /**
340
+ * Background color
341
+ */
342
+ backgroundColor?: string;
343
+ /**
344
+ * Text color
345
+ */
346
+ textColor?: string;
347
+ /**
348
+ * Border width
349
+ */
350
+ borderWidth?: number | string;
351
+ /**
352
+ * Border color
353
+ */
354
+ borderColor?: string;
355
+ /**
356
+ * Border radius
357
+ */
358
+ borderRadius?: number | string;
359
+ }
360
+ //# sourceMappingURL=base.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../src/base.ts"],"names":[],"mappings":"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"}
package/dist/base.js ADDED
@@ -0,0 +1,10 @@
1
+ /**
2
+ * @object-ui/types - Base Schema Types
3
+ *
4
+ * The foundational type definitions for the Object UI schema protocol.
5
+ * These types define the universal interface for all UI components.
6
+ *
7
+ * @module base
8
+ * @packageDocumentation
9
+ */
10
+ export {};