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.8.0 to 0.8.1

6

CHANGELOG.md
# Change Log
## 0.8.1
### Patch Changes
- deb95d13: Add data-tag-name manually to scoped child slottables as the ScopedElementsMixin only does this transform for elements inside render templates.
## 0.8.0

@@ -4,0 +10,0 @@

2

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

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -115,3 +115,9 @@ /* eslint-disable class-methods-use-this, camelcase, no-param-reassign, max-classes-per-file */

...super.slots,
feedback: () => document.createElement(ctor.getScopedTagName('lion-validation-feedback')),
feedback: () => {
const feedbackEl = document.createElement(
ctor.getScopedTagName('lion-validation-feedback'),
);
feedbackEl.setAttribute('data-tag-name', 'lion-validation-feedback');
return feedbackEl;
},
};

@@ -118,0 +124,0 @@ }

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