@m3e/list 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
|
|
|
@@ -1939,6 +1939,11 @@
|
|
|
1939
1939
|
"kind": "javascript-module",
|
|
1940
1940
|
"path": "../core/src/shared/mixins/Labelled.ts",
|
|
1941
1941
|
"declarations": [
|
|
1942
|
+
{
|
|
1943
|
+
"kind": "variable",
|
|
1944
|
+
"name": "updateLabels",
|
|
1945
|
+
"description": "A symbol through which to update labels to reflect a control's current state."
|
|
1946
|
+
},
|
|
1942
1947
|
{
|
|
1943
1948
|
"kind": "function",
|
|
1944
1949
|
"name": "isLabelledMixin",
|
|
@@ -1988,16 +1993,6 @@
|
|
|
1988
1993
|
},
|
|
1989
1994
|
"description": "The label elements that the element is associated with.",
|
|
1990
1995
|
"readonly": true
|
|
1991
|
-
},
|
|
1992
|
-
{
|
|
1993
|
-
"kind": "method",
|
|
1994
|
-
"name": "[_updateLabels]",
|
|
1995
|
-
"privacy": "private",
|
|
1996
|
-
"return": {
|
|
1997
|
-
"type": {
|
|
1998
|
-
"text": "void"
|
|
1999
|
-
}
|
|
2000
|
-
}
|
|
2001
1996
|
}
|
|
2002
1997
|
],
|
|
2003
1998
|
"parameters": [
|
|
@@ -2012,6 +2007,14 @@
|
|
|
2012
2007
|
}
|
|
2013
2008
|
],
|
|
2014
2009
|
"exports": [
|
|
2010
|
+
{
|
|
2011
|
+
"kind": "js",
|
|
2012
|
+
"name": "updateLabels",
|
|
2013
|
+
"declaration": {
|
|
2014
|
+
"name": "updateLabels",
|
|
2015
|
+
"module": "../core/src/shared/mixins/Labelled.ts"
|
|
2016
|
+
}
|
|
2017
|
+
},
|
|
2015
2018
|
{
|
|
2016
2019
|
"kind": "js",
|
|
2017
2020
|
"name": "isLabelledMixin",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m3e/list",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.4",
|
|
4
4
|
"description": "List 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": {
|