Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@availity/native-form

Package Overview
Dependencies
Maintainers
0
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@availity/native-form - npm Package Compare versions

Comparing version 5.0.6 to 5.0.7

7

CHANGELOG.md

@@ -5,2 +5,9 @@ # Changelog

## [5.0.7](https://github.com/Availity/sdk-js/compare/@availity/native-form@5.0.6...@availity/native-form@5.0.7) (2024-07-29)
### Dependency Updates
* `@availity/api-axios` updated to version `5.0.6`
## [5.0.6](https://github.com/Availity/sdk-js/compare/@availity/native-form@5.0.5...@availity/native-form@5.0.6) (2024-05-30)

@@ -7,0 +14,0 @@

2

dist/index.js

@@ -130,3 +130,3 @@ "use strict";

const fields = Object.keys(flat).map((key) => {
const name = key.replace(/\[\d+]/g, "[]");
const name = key.replaceAll(/\[\d+]/g, "[]");
const value = flat[key];

@@ -133,0 +133,0 @@ return `<input type="hidden" name="${name}" value="${value}" />`;

{
"name": "@availity/native-form",
"version": "5.0.6",
"version": "5.0.7",
"description": "Submit JSON data via a native form, not AJAX. Useful when you need to open a new page with a POST action.",

@@ -35,7 +35,7 @@ "keywords": [

"dependencies": {
"@availity/api-axios": "8.0.8"
"@availity/api-axios": "8.0.9"
},
"devDependencies": {
"tsup": "^7.2.0",
"typescript": "^5.1.6"
"typescript": "^5.5.4"
},

@@ -42,0 +42,0 @@ "publishConfig": {

{
"root": "packages/native-form",
"name": "@availity/native-form",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "library",

@@ -7,6 +8,5 @@ "targets": {

"executor": "@nx/jest:jest",
"outputs": ["coverage/native-form"],
"outputs": ["{workspaceRoot}/coverage/native-form"],
"options": {
"jestConfig": "packages/native-form/jest.config.js",
"passWithNoTests": true
"jestConfig": "packages/native-form/jest.config.js"
}

@@ -19,3 +19,3 @@ },

"commitMessageFormat": "chore({projectName}): release version ${version} [skip ci]",
"tagPrefix": "@availity/{projectName}@",
"tagPrefix": "{projectName}@",
"baseBranch": "master",

@@ -26,6 +26,5 @@ "trackDeps": true

"lint": {
"executor": "@nx/linter:eslint",
"executor": "@nx/eslint:lint",
"options": {
"eslintConfig": ".eslintrc.yaml",
"lintFilePatterns": ["packages/native-form/**/*.{js,ts}"],
"silent": false,

@@ -32,0 +31,0 @@ "fix": false,

@@ -63,3 +63,3 @@ import { avWebQLApi } from '@availity/api-axios';

.map((key) => {
const name = key.replace(/\[\d+]/g, '[]');
const name = key.replaceAll(/\[\d+]/g, '[]');
const value = flat[key];

@@ -66,0 +66,0 @@ return `<input type="hidden" name="${name}" value="${value}" />`;

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc