@object-ui/components 4.0.9 → 4.0.11
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/CHANGELOG.md +19 -0
- package/dist/index.css +3 -0
- package/dist/index.js +15 -0
- package/dist/index.umd.cjs +2 -2
- package/dist/packages/components/src/types/config-panel.d.ts +1 -1
- package/package.json +5 -5
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* and ConfigPanelRenderer auto-generates the UI.
|
|
13
13
|
*/
|
|
14
14
|
/** Supported control types for config fields */
|
|
15
|
-
export type ControlType = 'input' | 'switch' | 'select' | 'checkbox' | 'slider' | 'color' | 'field-picker' | 'filter' | 'sort' | 'icon-group' | 'summary' | 'custom';
|
|
15
|
+
export type ControlType = 'input' | 'textarea' | 'switch' | 'select' | 'checkbox' | 'slider' | 'color' | 'field-picker' | 'filter' | 'sort' | 'icon-group' | 'summary' | 'custom';
|
|
16
16
|
/** A single field within a config section */
|
|
17
17
|
export interface ConfigField {
|
|
18
18
|
/** Field key in the draft object */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@object-ui/components",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.11",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Standard UI component library for Object UI, built with Shadcn UI + Tailwind CSS",
|
|
@@ -69,10 +69,10 @@
|
|
|
69
69
|
"tailwind-merge": "^3.6.0",
|
|
70
70
|
"tailwindcss-animate": "^1.0.7",
|
|
71
71
|
"vaul": "^1.1.2",
|
|
72
|
-
"@object-ui/core": "4.0.
|
|
73
|
-
"@object-ui/i18n": "4.0.
|
|
74
|
-
"@object-ui/react": "4.0.
|
|
75
|
-
"@object-ui/types": "4.0.
|
|
72
|
+
"@object-ui/core": "4.0.11",
|
|
73
|
+
"@object-ui/i18n": "4.0.11",
|
|
74
|
+
"@object-ui/react": "4.0.11",
|
|
75
|
+
"@object-ui/types": "4.0.11"
|
|
76
76
|
},
|
|
77
77
|
"peerDependencies": {
|
|
78
78
|
"react": "^18.0.0 || ^19.0.0",
|