@loadsmart/miranda-wc 1.25.3 → 1.26.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/dist/components/field/field.d.ts.map +1 -1
- package/dist/components/field/field.types.d.ts +2 -1
- package/dist/components/field/field.types.d.ts.map +1 -1
- package/dist/components/field/index.d.ts +1 -0
- package/dist/components/field/index.d.ts.map +1 -1
- package/dist/components/text-field/text-field.d.ts +13 -0
- package/dist/components/text-field/text-field.d.ts.map +1 -1
- package/dist/components/text-field/text-field.styles.d.ts.map +1 -1
- package/dist/index.js +100 -91
- package/dist/index.js.map +1 -1
- package/dist/utils/context-root.d.ts +7 -0
- package/dist/utils/context-root.d.ts.map +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This function cover the late upgrade for context providers.
|
|
3
|
+
* Check https://github.com/lit/lit/tree/main/packages/labs/context#late-upgraded-context-providers
|
|
4
|
+
* for more details.
|
|
5
|
+
*/
|
|
6
|
+
export declare function attachContextRoot(): void;
|
|
7
|
+
//# sourceMappingURL=context-root.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"context-root.d.ts","sourceRoot":"","sources":["../../src/utils/context-root.ts"],"names":[],"mappings":"AAIA;;;;GAIG;AACH,wBAAgB,iBAAiB,SAShC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loadsmart/miranda-wc",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.26.0",
|
|
4
4
|
"description": "Miranda Web Components component library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"dist/*"
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
|
-
"build-docs": "node ./scripts/build-storybook.js -o ./docs",
|
|
11
|
+
"build-docs": "node ./scripts/build-storybook.js -o ./docs --modern",
|
|
12
12
|
"build": "rollup -c --environment BUILD:prod",
|
|
13
13
|
"deploy-storybook": "storybook-to-ghpages --existing-output-dir=docs --ci --host-token-env-variable=GITHUB_TOKEN",
|
|
14
14
|
"cypress": "cypress open --component --browser chrome",
|