Socket
Socket
Sign inDemoInstall

@lion/form-core

Package Overview
Dependencies
Maintainers
1
Versions
73
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.7.3 to 0.8.0

custom-elements.json

14

CHANGELOG.md
# Change Log
## 0.8.0
### Minor Changes
- b2f981db: Add exports field in package.json
Note that some tools can break with this change as long as they respect the exports field. If that is the case, check that you always access the elements included in the exports field, with the same name which they are exported. Any item not exported is considered private to the package and should not be accessed from the outside.
### Patch Changes
- Updated dependencies [b2f981db]
- @lion/core@0.14.0
- @lion/localize@0.16.0
## 0.7.3

@@ -4,0 +18,0 @@

22

package.json
{
"name": "@lion/form-core",
"version": "0.7.3",
"version": "0.8.0",
"description": "Form-core contains all essential building blocks for creating form fields and fieldsets",

@@ -18,2 +18,3 @@ "license": "MIT",

"*.js",
"custom-elements.json",
"docs",

@@ -27,6 +28,7 @@ "src",

"scripts": {
"custom-elements-manifest": "custom-elements-manifest analyze --exclude 'docs/**/*'",
"debug": "cd ../../ && npm run debug -- --group form-core",
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group form-core",
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group form-core",
"prepublishOnly": "../../scripts/npm-prepublish.js",
"prepublishOnly": "../../scripts/npm-prepublish.js && npm run custom-elements-manifest",
"test": "cd ../../ && npm run test:browser -- --group form-core"

@@ -39,4 +41,4 @@ },

"dependencies": {
"@lion/core": "0.13.8",
"@lion/localize": "0.15.5"
"@lion/core": "0.14.0",
"@lion/localize": "0.16.0"
},

@@ -50,3 +52,11 @@ "keywords": [

"access": "public"
}
}
},
"exports": {
".": "./index.js",
"./test-helpers/*": "./test-helpers/*",
"./test-suites/*": "./test-suites/*",
"./lion-field": "./lion-field.js",
"./lion-validation-feedback": "./lion-validation-feedback.js"
},
"customElementsManifest": "custom-elements.json"
}

@@ -1,3 +0,2 @@

import { css, dedupeMixin, html, nothing, SlotMixin } from '@lion/core';
import { DisabledMixin } from '@lion/core/src/DisabledMixin.js';
import { css, dedupeMixin, html, nothing, SlotMixin, DisabledMixin } from '@lion/core';
import { FormRegisteringMixin } from './registration/FormRegisteringMixin.js';

@@ -4,0 +3,0 @@ import { getAriaElementsInRightDomOrder } from './utils/getAriaElementsInRightDomOrder.js';

import { unsafeHTML } from '@lion/core';
import { localize } from '@lion/localize';
import { localizeTearDown } from '@lion/localize/test-helpers.js';
import { localizeTearDown } from '@lion/localize/test-helpers';
import { Required, Validator } from '@lion/form-core';

@@ -5,0 +5,0 @@ import {

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc