@m3e/badge 1.0.0-rc.3 → 1.0.0
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
|
|
|
@@ -2020,6 +2020,11 @@
|
|
|
2020
2020
|
"kind": "javascript-module",
|
|
2021
2021
|
"path": "../core/src/shared/mixins/Labelled.ts",
|
|
2022
2022
|
"declarations": [
|
|
2023
|
+
{
|
|
2024
|
+
"kind": "variable",
|
|
2025
|
+
"name": "updateLabels",
|
|
2026
|
+
"description": "A symbol through which to update labels to reflect a control's current state."
|
|
2027
|
+
},
|
|
2023
2028
|
{
|
|
2024
2029
|
"kind": "function",
|
|
2025
2030
|
"name": "isLabelledMixin",
|
|
@@ -2069,16 +2074,6 @@
|
|
|
2069
2074
|
},
|
|
2070
2075
|
"description": "The label elements that the element is associated with.",
|
|
2071
2076
|
"readonly": true
|
|
2072
|
-
},
|
|
2073
|
-
{
|
|
2074
|
-
"kind": "method",
|
|
2075
|
-
"name": "[_updateLabels]",
|
|
2076
|
-
"privacy": "private",
|
|
2077
|
-
"return": {
|
|
2078
|
-
"type": {
|
|
2079
|
-
"text": "void"
|
|
2080
|
-
}
|
|
2081
|
-
}
|
|
2082
2077
|
}
|
|
2083
2078
|
],
|
|
2084
2079
|
"parameters": [
|
|
@@ -2093,6 +2088,14 @@
|
|
|
2093
2088
|
}
|
|
2094
2089
|
],
|
|
2095
2090
|
"exports": [
|
|
2091
|
+
{
|
|
2092
|
+
"kind": "js",
|
|
2093
|
+
"name": "updateLabels",
|
|
2094
|
+
"declaration": {
|
|
2095
|
+
"name": "updateLabels",
|
|
2096
|
+
"module": "../core/src/shared/mixins/Labelled.ts"
|
|
2097
|
+
}
|
|
2098
|
+
},
|
|
2096
2099
|
{
|
|
2097
2100
|
"kind": "js",
|
|
2098
2101
|
"name": "isLabelledMixin",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m3e/badge",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Badge 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
|
|
30
|
+
"@m3e/core": "1.0.0",
|
|
31
31
|
"lit": "^3.3.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|