@m3e/fab-menu 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 +3 -3
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
|
|
|
@@ -2710,6 +2710,11 @@
|
|
|
2710
2710
|
"kind": "javascript-module",
|
|
2711
2711
|
"path": "../core/src/shared/mixins/Labelled.ts",
|
|
2712
2712
|
"declarations": [
|
|
2713
|
+
{
|
|
2714
|
+
"kind": "variable",
|
|
2715
|
+
"name": "updateLabels",
|
|
2716
|
+
"description": "A symbol through which to update labels to reflect a control's current state."
|
|
2717
|
+
},
|
|
2713
2718
|
{
|
|
2714
2719
|
"kind": "function",
|
|
2715
2720
|
"name": "isLabelledMixin",
|
|
@@ -2759,16 +2764,6 @@
|
|
|
2759
2764
|
},
|
|
2760
2765
|
"description": "The label elements that the element is associated with.",
|
|
2761
2766
|
"readonly": true
|
|
2762
|
-
},
|
|
2763
|
-
{
|
|
2764
|
-
"kind": "method",
|
|
2765
|
-
"name": "[_updateLabels]",
|
|
2766
|
-
"privacy": "private",
|
|
2767
|
-
"return": {
|
|
2768
|
-
"type": {
|
|
2769
|
-
"text": "void"
|
|
2770
|
-
}
|
|
2771
|
-
}
|
|
2772
2767
|
}
|
|
2773
2768
|
],
|
|
2774
2769
|
"parameters": [
|
|
@@ -2783,6 +2778,14 @@
|
|
|
2783
2778
|
}
|
|
2784
2779
|
],
|
|
2785
2780
|
"exports": [
|
|
2781
|
+
{
|
|
2782
|
+
"kind": "js",
|
|
2783
|
+
"name": "updateLabels",
|
|
2784
|
+
"declaration": {
|
|
2785
|
+
"name": "updateLabels",
|
|
2786
|
+
"module": "../core/src/shared/mixins/Labelled.ts"
|
|
2787
|
+
}
|
|
2788
|
+
},
|
|
2786
2789
|
{
|
|
2787
2790
|
"kind": "js",
|
|
2788
2791
|
"name": "isLabelledMixin",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m3e/fab-menu",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.4",
|
|
4
4
|
"description": "FAB Menu for M3E",
|
|
5
5
|
"author": "matraic <matraic@yahoo.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"clean": "rimraf dist"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@m3e/core": "1.0.0-rc.
|
|
31
|
-
"@m3e/fab": "1.0.0-rc.
|
|
30
|
+
"@m3e/core": "1.0.0-rc.4",
|
|
31
|
+
"@m3e/fab": "1.0.0-rc.4",
|
|
32
32
|
"lit": "^3.3.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|