@spectrum-web-components/split-view 0.42.2 → 0.42.3
Sign up to get free protection for your applications and to get access to all the features.
package/custom-elements.json
CHANGED
@@ -532,9 +532,6 @@
|
|
532
532
|
"name": "primary-max",
|
533
533
|
"default": "DEFAULT_MAX_SIZE",
|
534
534
|
"description": "The maximum size of the primary pane",
|
535
|
-
"resolveInitializer": {
|
536
|
-
"module": "src/SplitView.ts"
|
537
|
-
},
|
538
535
|
"fieldName": "primaryMax"
|
539
536
|
},
|
540
537
|
{
|
@@ -559,9 +556,6 @@
|
|
559
556
|
"name": "secondary-max",
|
560
557
|
"default": "DEFAULT_MAX_SIZE",
|
561
558
|
"description": "The maximum size of the secondary pane",
|
562
|
-
"resolveInitializer": {
|
563
|
-
"module": "src/SplitView.ts"
|
564
|
-
},
|
565
559
|
"fieldName": "secondaryMax"
|
566
560
|
},
|
567
561
|
{
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@spectrum-web-components/split-view",
|
3
|
-
"version": "0.42.
|
3
|
+
"version": "0.42.3",
|
4
4
|
"publishConfig": {
|
5
5
|
"access": "public"
|
6
6
|
},
|
@@ -61,7 +61,7 @@
|
|
61
61
|
"lit-html"
|
62
62
|
],
|
63
63
|
"dependencies": {
|
64
|
-
"@spectrum-web-components/base": "^0.42.
|
64
|
+
"@spectrum-web-components/base": "^0.42.3"
|
65
65
|
},
|
66
66
|
"devDependencies": {
|
67
67
|
"@spectrum-css/splitview": "^4.2.4"
|
@@ -72,5 +72,5 @@
|
|
72
72
|
"./sp-*.js",
|
73
73
|
"./**/*.dev.js"
|
74
74
|
],
|
75
|
-
"gitHead": "
|
75
|
+
"gitHead": "a03edce4f21f232f1705d8eb222e6e5436cad4c3"
|
76
76
|
}
|
package/src/types.d.ts
CHANGED
@@ -10,4 +10,4 @@ export interface SWCResizeObserver {
|
|
10
10
|
export interface WithSWCResizeObserver {
|
11
11
|
ResizeObserver: SWCResizeObserver;
|
12
12
|
}
|
13
|
-
export
|
13
|
+
export type SWCResizeObserverCallback = (entries: SWCResizeObserverEntry[], observer: SWCResizeObserver) => void;
|
@@ -0,0 +1,8 @@
|
|
1
|
+
"use strict";
|
2
|
+
import { html } from "@open-wc/testing";
|
3
|
+
import "@spectrum-web-components/split-view/sp-split-view.js";
|
4
|
+
import { testForMemoryLeaks } from "../../../test/testing-helpers.js";
|
5
|
+
testForMemoryLeaks(html`
|
6
|
+
<sp-split-view></sp-split-view>
|
7
|
+
`);
|
8
|
+
//# sourceMappingURL=split-view-memory.test.js.map
|
@@ -0,0 +1,7 @@
|
|
1
|
+
{
|
2
|
+
"version": 3,
|
3
|
+
"sources": ["split-view-memory.test.ts"],
|
4
|
+
"sourcesContent": ["/*\nCopyright 2023 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html } from '@open-wc/testing';\nimport '@spectrum-web-components/split-view/sp-split-view.js';\nimport { testForMemoryLeaks } from '../../../test/testing-helpers.js';\n\ntestForMemoryLeaks(html`\n <sp-split-view></sp-split-view>\n`);\n"],
|
5
|
+
"mappings": ";AAWA,SAAS,YAAY;AACrB,OAAO;AACP,SAAS,0BAA0B;AAEnC,mBAAmB;AAAA;AAAA,CAElB;",
|
6
|
+
"names": []
|
7
|
+
}
|