@m3e/checkbox 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 -24
- 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
|
|
|
@@ -253,20 +253,6 @@
|
|
|
253
253
|
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
254
254
|
}
|
|
255
255
|
},
|
|
256
|
-
{
|
|
257
|
-
"kind": "method",
|
|
258
|
-
"name": "[_updateLabels]",
|
|
259
|
-
"privacy": "private",
|
|
260
|
-
"return": {
|
|
261
|
-
"type": {
|
|
262
|
-
"text": "void"
|
|
263
|
-
}
|
|
264
|
-
},
|
|
265
|
-
"inheritedFrom": {
|
|
266
|
-
"name": "Labelled",
|
|
267
|
-
"module": "../core/src/shared/mixins/Labelled.ts"
|
|
268
|
-
}
|
|
269
|
-
},
|
|
270
256
|
{
|
|
271
257
|
"kind": "field",
|
|
272
258
|
"name": "dirty",
|
|
@@ -2634,6 +2620,11 @@
|
|
|
2634
2620
|
"kind": "javascript-module",
|
|
2635
2621
|
"path": "../core/src/shared/mixins/Labelled.ts",
|
|
2636
2622
|
"declarations": [
|
|
2623
|
+
{
|
|
2624
|
+
"kind": "variable",
|
|
2625
|
+
"name": "updateLabels",
|
|
2626
|
+
"description": "A symbol through which to update labels to reflect a control's current state."
|
|
2627
|
+
},
|
|
2637
2628
|
{
|
|
2638
2629
|
"kind": "function",
|
|
2639
2630
|
"name": "isLabelledMixin",
|
|
@@ -2683,16 +2674,6 @@
|
|
|
2683
2674
|
},
|
|
2684
2675
|
"description": "The label elements that the element is associated with.",
|
|
2685
2676
|
"readonly": true
|
|
2686
|
-
},
|
|
2687
|
-
{
|
|
2688
|
-
"kind": "method",
|
|
2689
|
-
"name": "[_updateLabels]",
|
|
2690
|
-
"privacy": "private",
|
|
2691
|
-
"return": {
|
|
2692
|
-
"type": {
|
|
2693
|
-
"text": "void"
|
|
2694
|
-
}
|
|
2695
|
-
}
|
|
2696
2677
|
}
|
|
2697
2678
|
],
|
|
2698
2679
|
"parameters": [
|
|
@@ -2707,6 +2688,14 @@
|
|
|
2707
2688
|
}
|
|
2708
2689
|
],
|
|
2709
2690
|
"exports": [
|
|
2691
|
+
{
|
|
2692
|
+
"kind": "js",
|
|
2693
|
+
"name": "updateLabels",
|
|
2694
|
+
"declaration": {
|
|
2695
|
+
"name": "updateLabels",
|
|
2696
|
+
"module": "../core/src/shared/mixins/Labelled.ts"
|
|
2697
|
+
}
|
|
2698
|
+
},
|
|
2710
2699
|
{
|
|
2711
2700
|
"kind": "js",
|
|
2712
2701
|
"name": "isLabelledMixin",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m3e/checkbox",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.4",
|
|
4
4
|
"description": "Checkbox 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": {
|