@m3e/nav-bar 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
|
|
|
@@ -2552,6 +2552,11 @@
|
|
|
2552
2552
|
"kind": "javascript-module",
|
|
2553
2553
|
"path": "../core/src/shared/mixins/Labelled.ts",
|
|
2554
2554
|
"declarations": [
|
|
2555
|
+
{
|
|
2556
|
+
"kind": "variable",
|
|
2557
|
+
"name": "updateLabels",
|
|
2558
|
+
"description": "A symbol through which to update labels to reflect a control's current state."
|
|
2559
|
+
},
|
|
2555
2560
|
{
|
|
2556
2561
|
"kind": "function",
|
|
2557
2562
|
"name": "isLabelledMixin",
|
|
@@ -2601,16 +2606,6 @@
|
|
|
2601
2606
|
},
|
|
2602
2607
|
"description": "The label elements that the element is associated with.",
|
|
2603
2608
|
"readonly": true
|
|
2604
|
-
},
|
|
2605
|
-
{
|
|
2606
|
-
"kind": "method",
|
|
2607
|
-
"name": "[_updateLabels]",
|
|
2608
|
-
"privacy": "private",
|
|
2609
|
-
"return": {
|
|
2610
|
-
"type": {
|
|
2611
|
-
"text": "void"
|
|
2612
|
-
}
|
|
2613
|
-
}
|
|
2614
2609
|
}
|
|
2615
2610
|
],
|
|
2616
2611
|
"parameters": [
|
|
@@ -2625,6 +2620,14 @@
|
|
|
2625
2620
|
}
|
|
2626
2621
|
],
|
|
2627
2622
|
"exports": [
|
|
2623
|
+
{
|
|
2624
|
+
"kind": "js",
|
|
2625
|
+
"name": "updateLabels",
|
|
2626
|
+
"declaration": {
|
|
2627
|
+
"name": "updateLabels",
|
|
2628
|
+
"module": "../core/src/shared/mixins/Labelled.ts"
|
|
2629
|
+
}
|
|
2630
|
+
},
|
|
2628
2631
|
{
|
|
2629
2632
|
"kind": "js",
|
|
2630
2633
|
"name": "isLabelledMixin",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m3e/nav-bar",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.4",
|
|
4
4
|
"description": "Navigation Bar 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": {
|