@m3e/fab 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
|
@@ -31,7 +31,7 @@ Alternately, you can explicitly reference the `html-custom-data.json` and `css-c
|
|
|
31
31
|
}
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
-
## 🚀
|
|
34
|
+
## 🚀 Native Module Support
|
|
35
35
|
|
|
36
36
|
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.
|
|
37
37
|
|
|
@@ -3418,6 +3418,11 @@
|
|
|
3418
3418
|
"kind": "javascript-module",
|
|
3419
3419
|
"path": "../core/src/shared/mixins/Labelled.ts",
|
|
3420
3420
|
"declarations": [
|
|
3421
|
+
{
|
|
3422
|
+
"kind": "variable",
|
|
3423
|
+
"name": "updateLabels",
|
|
3424
|
+
"description": "A symbol through which to update labels to reflect a control's current state."
|
|
3425
|
+
},
|
|
3421
3426
|
{
|
|
3422
3427
|
"kind": "function",
|
|
3423
3428
|
"name": "isLabelledMixin",
|
|
@@ -3467,16 +3472,6 @@
|
|
|
3467
3472
|
},
|
|
3468
3473
|
"description": "The label elements that the element is associated with.",
|
|
3469
3474
|
"readonly": true
|
|
3470
|
-
},
|
|
3471
|
-
{
|
|
3472
|
-
"kind": "method",
|
|
3473
|
-
"name": "[_updateLabels]",
|
|
3474
|
-
"privacy": "private",
|
|
3475
|
-
"return": {
|
|
3476
|
-
"type": {
|
|
3477
|
-
"text": "void"
|
|
3478
|
-
}
|
|
3479
|
-
}
|
|
3480
3475
|
}
|
|
3481
3476
|
],
|
|
3482
3477
|
"parameters": [
|
|
@@ -3491,6 +3486,14 @@
|
|
|
3491
3486
|
}
|
|
3492
3487
|
],
|
|
3493
3488
|
"exports": [
|
|
3489
|
+
{
|
|
3490
|
+
"kind": "js",
|
|
3491
|
+
"name": "updateLabels",
|
|
3492
|
+
"declaration": {
|
|
3493
|
+
"name": "updateLabels",
|
|
3494
|
+
"module": "../core/src/shared/mixins/Labelled.ts"
|
|
3495
|
+
}
|
|
3496
|
+
},
|
|
3494
3497
|
{
|
|
3495
3498
|
"kind": "js",
|
|
3496
3499
|
"name": "isLabelledMixin",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m3e/fab",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.4",
|
|
4
4
|
"description": "FAB for M3E",
|
|
5
5
|
"author": "matraic <matraic@yahoo.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"clean": "rimraf dist"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"@m3e/core": "1.0.0-rc.
|
|
31
|
+
"@m3e/core": "1.0.0-rc.4",
|
|
32
32
|
"lit": "^3.3.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|