@m3e/divider 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
|
|
|
@@ -1862,6 +1862,11 @@
|
|
|
1862
1862
|
"kind": "javascript-module",
|
|
1863
1863
|
"path": "../core/src/shared/mixins/Labelled.ts",
|
|
1864
1864
|
"declarations": [
|
|
1865
|
+
{
|
|
1866
|
+
"kind": "variable",
|
|
1867
|
+
"name": "updateLabels",
|
|
1868
|
+
"description": "A symbol through which to update labels to reflect a control's current state."
|
|
1869
|
+
},
|
|
1865
1870
|
{
|
|
1866
1871
|
"kind": "function",
|
|
1867
1872
|
"name": "isLabelledMixin",
|
|
@@ -1911,16 +1916,6 @@
|
|
|
1911
1916
|
},
|
|
1912
1917
|
"description": "The label elements that the element is associated with.",
|
|
1913
1918
|
"readonly": true
|
|
1914
|
-
},
|
|
1915
|
-
{
|
|
1916
|
-
"kind": "method",
|
|
1917
|
-
"name": "[_updateLabels]",
|
|
1918
|
-
"privacy": "private",
|
|
1919
|
-
"return": {
|
|
1920
|
-
"type": {
|
|
1921
|
-
"text": "void"
|
|
1922
|
-
}
|
|
1923
|
-
}
|
|
1924
1919
|
}
|
|
1925
1920
|
],
|
|
1926
1921
|
"parameters": [
|
|
@@ -1935,6 +1930,14 @@
|
|
|
1935
1930
|
}
|
|
1936
1931
|
],
|
|
1937
1932
|
"exports": [
|
|
1933
|
+
{
|
|
1934
|
+
"kind": "js",
|
|
1935
|
+
"name": "updateLabels",
|
|
1936
|
+
"declaration": {
|
|
1937
|
+
"name": "updateLabels",
|
|
1938
|
+
"module": "../core/src/shared/mixins/Labelled.ts"
|
|
1939
|
+
}
|
|
1940
|
+
},
|
|
1938
1941
|
{
|
|
1939
1942
|
"kind": "js",
|
|
1940
1943
|
"name": "isLabelledMixin",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m3e/divider",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.4",
|
|
4
4
|
"description": "Divider 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": {
|