@reactfast/forms 0.1.4 → 0.1.7
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,4 +1,4 @@
|
|
|
1
|
-
(function(ne,w){typeof exports=="object"&&typeof module<"u"?w(exports,require("react"),require("react-dom")):typeof define=="function"&&define.amd?define(["exports","react","react-dom"],w):(ne=typeof globalThis<"u"?globalThis:ne||self,w(ne.
|
|
1
|
+
(function(ne,w){typeof exports=="object"&&typeof module<"u"?w(exports,require("react"),require("react-dom")):typeof define=="function"&&define.amd?define(["exports","react","react-dom"],w):(ne=typeof globalThis<"u"?globalThis:ne||self,w(ne.Forms={},ne.React,ne.ReactDOM))})(this,function(ne,w,be){"use strict";var Ep=Object.defineProperty;var yp=(ne,w,be)=>w in ne?Ep(ne,w,{enumerable:!0,configurable:!0,writable:!0,value:be}):ne[w]=be;var Y=(ne,w,be)=>yp(ne,typeof w!="symbol"?w+"":w,be);function sn(e){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const r in e)if(r!=="default"){const n=Object.getOwnPropertyDescriptor(e,r);Object.defineProperty(t,r,n.get?n:{enumerable:!0,get:()=>e[r]})}}return t.default=e,Object.freeze(t)}const o=sn(w),jt=sn(be);var ar={exports:{}},st={};/**
|
|
2
2
|
* @license React
|
|
3
3
|
* react-jsx-runtime.production.min.js
|
|
4
4
|
*
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reactfast/forms",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Dynamic React forms with JSON schema, modifiers, and subforms",
|
|
5
|
-
"main": "dist/
|
|
6
|
-
"module": "dist/
|
|
5
|
+
"main": "dist/forms.cjs",
|
|
6
|
+
"module": "dist/forms.es.js",
|
|
7
7
|
"types": "index.d.ts",
|
|
8
8
|
"files": [
|
|
9
9
|
"dist",
|
|
@@ -13,7 +13,10 @@
|
|
|
13
13
|
"scripts": {
|
|
14
14
|
"dev": "vite",
|
|
15
15
|
"build": "vite build",
|
|
16
|
-
"lint": "eslint src --ext .js,.jsx,.ts,.tsx"
|
|
16
|
+
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
|
|
17
|
+
"release:patch": "npm version patch --no-git-tag-version && pnpm build && npm publish --access public",
|
|
18
|
+
"release:minor": "npm version minor --no-git-tag-version && pnpm build && npm publish --access public",
|
|
19
|
+
"release:major": "npm version major --no-git-tag-version && pnpm build && npm publish --access public"
|
|
17
20
|
},
|
|
18
21
|
"browserslist": "defaults, not ie <= 11",
|
|
19
22
|
"keywords": [
|
|
@@ -45,8 +48,8 @@
|
|
|
45
48
|
"vite": "^5.4.20"
|
|
46
49
|
},
|
|
47
50
|
"peerDependencies": {
|
|
48
|
-
"react": "
|
|
49
|
-
"react-dom": "
|
|
51
|
+
"react": ">=18.0.0",
|
|
52
|
+
"react-dom": ">=18.0.0"
|
|
50
53
|
},
|
|
51
54
|
"publishConfig": {
|
|
52
55
|
"access": "public"
|
|
File without changes
|
|
File without changes
|