@opengov/form-renderer 0.0.1-beta1

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.
File without changes
@@ -0,0 +1,7 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ declare const meta: Meta;
3
+ export default meta;
4
+ type Story = StoryObj<typeof meta>;
5
+ export declare const Compound: Story;
6
+ export declare const WithDefaultValues: Story;
7
+ export declare const UsingReactHookForms: Story;
File without changes
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@opengov/form-renderer",
3
+ "version": "0.0.1-beta1",
4
+ "description": "OpenGov Smart Forms form renderer",
5
+ "type": "module",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "main": "./dist/lib.umd.cjs",
10
+ "module": "./dist/lib.js",
11
+ "exports": {
12
+ ".": {
13
+ "import": "./dist/lib.js",
14
+ "require": "./dist/lib.umd.cjs"
15
+ }
16
+ },
17
+ "types": "dist/index.d.ts",
18
+ "scripts": {
19
+ "test": "jest",
20
+ "lint": "eslint .",
21
+ "build": "tsc --noEmit && vite build"
22
+ },
23
+ "author": "OpenGov",
24
+ "license": "UNLICENSED",
25
+ "dependencies": {
26
+ "@mdi/js": "^7.4.47",
27
+ "@mdi/react": "^1.6.1",
28
+ "@mui/icons-material": "^6.1.1",
29
+ "date-fns": "^4.1.0"
30
+ },
31
+ "peerDependencies": {
32
+ "@mui/material": ">= 5.0.0",
33
+ "@mui/x-date-pickers": ">= 7.0.0",
34
+ "@opengov/capital-mui-theme": ">= 32.0.0",
35
+ "react": ">= 16.8.0",
36
+ "react-dom": ">= 16.8.0",
37
+ "react-hook-form": ">= 7.0.0"
38
+ },
39
+ "devDependencies": {
40
+ "@emotion/react": "^11.13.3",
41
+ "@emotion/styled": "^11.13.0",
42
+ "@mui/material": "^6.1.1",
43
+ "@mui/x-date-pickers": "^7.22.0",
44
+ "@opengov/capital-mui-theme": "^36.0.0-beta.1",
45
+ "react": "^18.3.1",
46
+ "react-dom": "^18.3.1",
47
+ "react-hook-form": "^7.53.1"
48
+ }
49
+ }