@m3e/form-field 1.0.0-rc.3 → 1.0.0-rc.4
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.
- package/README.md +1 -1
- package/dist/custom-elements.json +13 -10
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ Alternately, you can explicitly reference the `html-custom-data.json` and `css-c
|
|
|
27
27
|
}
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
## 🚀
|
|
30
|
+
## 🚀 Native Module Support
|
|
31
31
|
|
|
32
32
|
This package uses [JavaScript Modules](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules#module_specifiers). To use it directly in a browser without a bundler, use a module script similar to the following.
|
|
33
33
|
|
|
@@ -2493,6 +2493,11 @@
|
|
|
2493
2493
|
"kind": "javascript-module",
|
|
2494
2494
|
"path": "../core/src/shared/mixins/Labelled.ts",
|
|
2495
2495
|
"declarations": [
|
|
2496
|
+
{
|
|
2497
|
+
"kind": "variable",
|
|
2498
|
+
"name": "updateLabels",
|
|
2499
|
+
"description": "A symbol through which to update labels to reflect a control's current state."
|
|
2500
|
+
},
|
|
2496
2501
|
{
|
|
2497
2502
|
"kind": "function",
|
|
2498
2503
|
"name": "isLabelledMixin",
|
|
@@ -2542,16 +2547,6 @@
|
|
|
2542
2547
|
},
|
|
2543
2548
|
"description": "The label elements that the element is associated with.",
|
|
2544
2549
|
"readonly": true
|
|
2545
|
-
},
|
|
2546
|
-
{
|
|
2547
|
-
"kind": "method",
|
|
2548
|
-
"name": "[_updateLabels]",
|
|
2549
|
-
"privacy": "private",
|
|
2550
|
-
"return": {
|
|
2551
|
-
"type": {
|
|
2552
|
-
"text": "void"
|
|
2553
|
-
}
|
|
2554
|
-
}
|
|
2555
2550
|
}
|
|
2556
2551
|
],
|
|
2557
2552
|
"parameters": [
|
|
@@ -2566,6 +2561,14 @@
|
|
|
2566
2561
|
}
|
|
2567
2562
|
],
|
|
2568
2563
|
"exports": [
|
|
2564
|
+
{
|
|
2565
|
+
"kind": "js",
|
|
2566
|
+
"name": "updateLabels",
|
|
2567
|
+
"declaration": {
|
|
2568
|
+
"name": "updateLabels",
|
|
2569
|
+
"module": "../core/src/shared/mixins/Labelled.ts"
|
|
2570
|
+
}
|
|
2571
|
+
},
|
|
2569
2572
|
{
|
|
2570
2573
|
"kind": "js",
|
|
2571
2574
|
"name": "isLabelledMixin",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m3e/form-field",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.4",
|
|
4
4
|
"description": "Form Field for M3E",
|
|
5
5
|
"author": "matraic <matraic@yahoo.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"clean": "rimraf dist"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@m3e/core": "1.0.0-rc.
|
|
30
|
+
"@m3e/core": "1.0.0-rc.4",
|
|
31
31
|
"lit": "^3.3.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|