@m3e/progress-indicator 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
|
|
|
@@ -2259,6 +2259,11 @@
|
|
|
2259
2259
|
"kind": "javascript-module",
|
|
2260
2260
|
"path": "../core/src/shared/mixins/Labelled.ts",
|
|
2261
2261
|
"declarations": [
|
|
2262
|
+
{
|
|
2263
|
+
"kind": "variable",
|
|
2264
|
+
"name": "updateLabels",
|
|
2265
|
+
"description": "A symbol through which to update labels to reflect a control's current state."
|
|
2266
|
+
},
|
|
2262
2267
|
{
|
|
2263
2268
|
"kind": "function",
|
|
2264
2269
|
"name": "isLabelledMixin",
|
|
@@ -2308,16 +2313,6 @@
|
|
|
2308
2313
|
},
|
|
2309
2314
|
"description": "The label elements that the element is associated with.",
|
|
2310
2315
|
"readonly": true
|
|
2311
|
-
},
|
|
2312
|
-
{
|
|
2313
|
-
"kind": "method",
|
|
2314
|
-
"name": "[_updateLabels]",
|
|
2315
|
-
"privacy": "private",
|
|
2316
|
-
"return": {
|
|
2317
|
-
"type": {
|
|
2318
|
-
"text": "void"
|
|
2319
|
-
}
|
|
2320
|
-
}
|
|
2321
2316
|
}
|
|
2322
2317
|
],
|
|
2323
2318
|
"parameters": [
|
|
@@ -2332,6 +2327,14 @@
|
|
|
2332
2327
|
}
|
|
2333
2328
|
],
|
|
2334
2329
|
"exports": [
|
|
2330
|
+
{
|
|
2331
|
+
"kind": "js",
|
|
2332
|
+
"name": "updateLabels",
|
|
2333
|
+
"declaration": {
|
|
2334
|
+
"name": "updateLabels",
|
|
2335
|
+
"module": "../core/src/shared/mixins/Labelled.ts"
|
|
2336
|
+
}
|
|
2337
|
+
},
|
|
2335
2338
|
{
|
|
2336
2339
|
"kind": "js",
|
|
2337
2340
|
"name": "isLabelledMixin",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m3e/progress-indicator",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.4",
|
|
4
4
|
"description": "Progress Indicator for M3E",
|
|
5
5
|
"author": "matraic <matraic@yahoo.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"clean": "rimraf dist"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@m3e/core": "1.0.0-rc.
|
|
33
|
+
"@m3e/core": "1.0.0-rc.4",
|
|
34
34
|
"lit": "^3.3.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|