@m3e/app-bar 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
|
|
|
@@ -2360,6 +2360,11 @@
|
|
|
2360
2360
|
"kind": "javascript-module",
|
|
2361
2361
|
"path": "../core/src/shared/mixins/Labelled.ts",
|
|
2362
2362
|
"declarations": [
|
|
2363
|
+
{
|
|
2364
|
+
"kind": "variable",
|
|
2365
|
+
"name": "updateLabels",
|
|
2366
|
+
"description": "A symbol through which to update labels to reflect a control's current state."
|
|
2367
|
+
},
|
|
2363
2368
|
{
|
|
2364
2369
|
"kind": "function",
|
|
2365
2370
|
"name": "isLabelledMixin",
|
|
@@ -2409,16 +2414,6 @@
|
|
|
2409
2414
|
},
|
|
2410
2415
|
"description": "The label elements that the element is associated with.",
|
|
2411
2416
|
"readonly": true
|
|
2412
|
-
},
|
|
2413
|
-
{
|
|
2414
|
-
"kind": "method",
|
|
2415
|
-
"name": "[_updateLabels]",
|
|
2416
|
-
"privacy": "private",
|
|
2417
|
-
"return": {
|
|
2418
|
-
"type": {
|
|
2419
|
-
"text": "void"
|
|
2420
|
-
}
|
|
2421
|
-
}
|
|
2422
2417
|
}
|
|
2423
2418
|
],
|
|
2424
2419
|
"parameters": [
|
|
@@ -2433,6 +2428,14 @@
|
|
|
2433
2428
|
}
|
|
2434
2429
|
],
|
|
2435
2430
|
"exports": [
|
|
2431
|
+
{
|
|
2432
|
+
"kind": "js",
|
|
2433
|
+
"name": "updateLabels",
|
|
2434
|
+
"declaration": {
|
|
2435
|
+
"name": "updateLabels",
|
|
2436
|
+
"module": "../core/src/shared/mixins/Labelled.ts"
|
|
2437
|
+
}
|
|
2438
|
+
},
|
|
2436
2439
|
{
|
|
2437
2440
|
"kind": "js",
|
|
2438
2441
|
"name": "isLabelledMixin",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m3e/app-bar",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "App 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
|
|
30
|
+
"@m3e/core": "1.0.0",
|
|
31
31
|
"lit": "^3.3.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|