@object-ui/plugin-form 3.0.2 → 3.0.3

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @object-ui/plugin-form@3.0.2 build /home/runner/work/objectui/objectui/packages/plugin-form
2
+ > @object-ui/plugin-form@3.0.3 build /home/runner/work/objectui/objectui/packages/plugin-form
3
3
  > vite build
4
4
 
5
5
  vite v7.3.1 building client environment for production...
@@ -8,18 +8,9 @@ transforming...
8
8
  rendering chunks...
9
9
  
10
10
  [vite:dts] Start generate declaration files...
11
- ../../examples/crm/src/objects/contact.object.ts:3:14 - error TS2742: The inferred type of 'ContactObject' cannot be named without a reference to 'examples/crm/node_modules/@objectstack/spec/dist/state-machine.zod-DoC0JvQb'. This is likely not portable. A type annotation is necessary.
12
-
13
- 3 export const ContactObject = ObjectSchema.create({
14
-    ~~~~~~~~~~~~~
15
- src/ObjectForm.stories.tsx:4:43 - error TS2307: Cannot find module '@storybook-config/datasource' or its corresponding type declarations.
16
-
17
- 4 import { createStorybookDataSource } from '@storybook-config/datasource';
18
-    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
19
-
20
11
  computing gzip size...
21
12
  dist/index.js 53.50 kB │ gzip: 10.77 kB
22
- [vite:dts] Declaration files built in 19314ms.
13
+ [vite:dts] Declaration files built in 16351ms.
23
14
  
24
15
  No name was provided for external module "@object-ui/core" in "output.globals" – guessing "core".
25
16
  No name was provided for external module "@object-ui/react" in "output.globals" – guessing "react".
@@ -27,4 +18,4 @@ computing gzip size...
27
18
  No name was provided for external module "@object-ui/components" in "output.globals" – guessing "components".
28
19
  No name was provided for external module "lucide-react" in "output.globals" – guessing "lucideReact".
29
20
  dist/index.umd.cjs 36.18 kB │ gzip: 9.06 kB
30
- ✓ built in 20.29s
21
+ ✓ built in 17.80s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @object-ui/plugin-form
2
2
 
3
+ ## 3.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - @object-ui/types@3.0.3
8
+ - @object-ui/core@3.0.3
9
+ - @object-ui/react@3.0.3
10
+ - @object-ui/components@3.0.3
11
+ - @object-ui/fields@3.0.3
12
+
3
13
  ## 3.0.2
4
14
 
5
15
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export * from './packages/plugin-form/src/index'
1
+ export * from './plugin-form/src/index'
2
2
  export {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@object-ui/plugin-form",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Form plugin for Object UI",
@@ -16,11 +16,11 @@
16
16
  },
17
17
  "dependencies": {
18
18
  "lucide-react": "^0.563.0",
19
- "@object-ui/components": "3.0.2",
20
- "@object-ui/core": "3.0.2",
21
- "@object-ui/fields": "3.0.2",
22
- "@object-ui/react": "3.0.2",
23
- "@object-ui/types": "3.0.2"
19
+ "@object-ui/components": "3.0.3",
20
+ "@object-ui/core": "3.0.3",
21
+ "@object-ui/fields": "3.0.3",
22
+ "@object-ui/react": "3.0.3",
23
+ "@object-ui/types": "3.0.3"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "react": "^18.0.0 || ^19.0.0",
@@ -32,7 +32,7 @@
32
32
  "typescript": "^5.9.3",
33
33
  "vite": "^7.3.1",
34
34
  "vite-plugin-dts": "^4.5.4",
35
- "@object-ui/data-objectstack": "3.0.2"
35
+ "@object-ui/data-objectstack": "3.0.3"
36
36
  },
37
37
  "scripts": {
38
38
  "build": "vite build",
package/tsconfig.json CHANGED
@@ -4,5 +4,6 @@
4
4
  "outDir": "dist",
5
5
  "jsx": "react-jsx"
6
6
  },
7
- "include": ["src"]
7
+ "include": ["src"],
8
+ "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.test.tsx", "**/*.stories.tsx"]
8
9
  }
@@ -1,23 +0,0 @@
1
- import { StoryObj } from '@storybook/react';
2
- declare const meta: {
3
- title: string;
4
- component: import('react').ForwardRefExoticComponent<Omit<{
5
- schema: import('../../core/src').SchemaNode;
6
- } & Record<string, any>, "ref"> & import('react').RefAttributes<any>>;
7
- parameters: {
8
- layout: string;
9
- };
10
- tags: string[];
11
- argTypes: {
12
- schema: {
13
- table: {
14
- disable: true;
15
- };
16
- };
17
- };
18
- };
19
- export default meta;
20
- type Story = StoryObj<typeof meta>;
21
- export declare const Default: Story;
22
- export declare const WithSections: Story;
23
- export declare const ComplexFields: Story;
@@ -1 +0,0 @@
1
- export {};
@@ -1,8 +0,0 @@
1
- /**
2
- * ObjectUI
3
- * Copyright (c) 2024-present ObjectStack Inc.
4
- *
5
- * This source code is licensed under the MIT license found in the
6
- * LICENSE file in the root directory of this source tree.
7
- */
8
- export {};
@@ -1,8 +0,0 @@
1
- /**
2
- * ObjectUI
3
- * Copyright (c) 2024-present ObjectStack Inc.
4
- *
5
- * This source code is licensed under the MIT license found in the
6
- * LICENSE file in the root directory of this source tree.
7
- */
8
- export {};