@spectrum-web-components/shared 1.9.1 → 1.10.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/package.json +3 -3
- package/src/get-label-from-slot.d.ts +1 -1
- package/src/get-label-from-slot.dev.js +1 -15
- package/src/get-label-from-slot.dev.js.map +2 -2
- package/src/get-label-from-slot.js +1 -1
- package/src/get-label-from-slot.js.map +3 -3
- package/src/observe-slot-presence.d.ts +1 -12
- package/src/observe-slot-presence.dev.js +1 -61
- package/src/observe-slot-presence.dev.js.map +2 -2
- package/src/observe-slot-presence.js +1 -1
- package/src/observe-slot-presence.js.map +3 -3
- package/src/observe-slot-text.d.ts +1 -11
- package/src/observe-slot-text.dev.js +1 -93
- package/src/observe-slot-text.dev.js.map +2 -2
- package/src/observe-slot-text.js +1 -1
- package/src/observe-slot-text.js.map +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spectrum-web-components/shared",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "https://github.com/adobe/spectrum-web-components.git",
|
|
12
|
-
"directory": "tools/shared"
|
|
12
|
+
"directory": "1st-gen/tools/shared"
|
|
13
13
|
},
|
|
14
14
|
"author": "Adobe",
|
|
15
15
|
"homepage": "https://opensource.adobe.com/spectrum-web-components/tools/shared",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
],
|
|
108
108
|
"dependencies": {
|
|
109
109
|
"@lit-labs/observers": "2.0.2",
|
|
110
|
-
"@spectrum-web-components/base": "1.
|
|
110
|
+
"@spectrum-web-components/base": "1.10.0",
|
|
111
111
|
"focus-visible": "5.2.1"
|
|
112
112
|
},
|
|
113
113
|
"types": "./src/index.d.ts",
|
|
@@ -9,4 +9,4 @@
|
|
|
9
9
|
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
10
|
* governing permissions and limitations under the License.
|
|
11
11
|
*/
|
|
12
|
-
export
|
|
12
|
+
export * from '@spectrum-web-components/core/shared/get-label-from-slot.js';
|
|
@@ -1,17 +1,3 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
export
|
|
3
|
-
if (label) return null;
|
|
4
|
-
const textContent = slotEl.assignedNodes().reduce((accumulator, node) => {
|
|
5
|
-
if (node.textContent) {
|
|
6
|
-
return accumulator + node.textContent;
|
|
7
|
-
} else {
|
|
8
|
-
return accumulator;
|
|
9
|
-
}
|
|
10
|
-
}, "");
|
|
11
|
-
if (textContent) {
|
|
12
|
-
return textContent.trim();
|
|
13
|
-
} else {
|
|
14
|
-
return null;
|
|
15
|
-
}
|
|
16
|
-
};
|
|
2
|
+
export * from "@spectrum-web-components/core/shared/get-label-from-slot.js";
|
|
17
3
|
//# sourceMappingURL=get-label-from-slot.dev.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["get-label-from-slot.ts"],
|
|
4
|
-
"sourcesContent": ["/**\n * Copyright 2025 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\
|
|
5
|
-
"mappings": ";
|
|
4
|
+
"sourcesContent": ["/**\n * Copyright 2025 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\nexport * from '@spectrum-web-components/core/shared/get-label-from-slot.js';\n"],
|
|
5
|
+
"mappings": ";AAWA,cAAc;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";export
|
|
1
|
+
"use strict";export*from"@spectrum-web-components/core/shared/get-label-from-slot.js";
|
|
2
2
|
//# sourceMappingURL=get-label-from-slot.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["get-label-from-slot.ts"],
|
|
4
|
-
"sourcesContent": ["/**\n * Copyright 2025 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\
|
|
5
|
-
"mappings": "
|
|
6
|
-
"names": [
|
|
4
|
+
"sourcesContent": ["/**\n * Copyright 2025 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\nexport * from '@spectrum-web-components/core/shared/get-label-from-slot.js';\n"],
|
|
5
|
+
"mappings": "aAWA,WAAc",
|
|
6
|
+
"names": []
|
|
7
7
|
}
|
|
@@ -9,15 +9,4 @@
|
|
|
9
9
|
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
10
|
* governing permissions and limitations under the License.
|
|
11
11
|
*/
|
|
12
|
-
|
|
13
|
-
type Constructor<T = Record<string, unknown>> = {
|
|
14
|
-
new (...args: any[]): T;
|
|
15
|
-
prototype: T;
|
|
16
|
-
};
|
|
17
|
-
export interface SlotPresenceObservingInterface {
|
|
18
|
-
slotContentIsPresent: boolean;
|
|
19
|
-
getSlotContentPresence(selector: string): boolean;
|
|
20
|
-
managePresenceObservedSlot(): void;
|
|
21
|
-
}
|
|
22
|
-
export declare function ObserveSlotPresence<T extends Constructor<ReactiveElement>>(constructor: T, lightDomSelector: string | string[]): T & Constructor<SlotPresenceObservingInterface>;
|
|
23
|
-
export {};
|
|
12
|
+
export * from '@spectrum-web-components/core/shared/observe-slot-presence.js';
|
|
@@ -1,63 +1,3 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
|
-
const slotContentIsPresent = Symbol("slotContentIsPresent");
|
|
4
|
-
export function ObserveSlotPresence(constructor, lightDomSelector) {
|
|
5
|
-
var _a, _b;
|
|
6
|
-
const lightDomSelectors = Array.isArray(lightDomSelector) ? lightDomSelector : [lightDomSelector];
|
|
7
|
-
class SlotPresenceObservingElement extends (_b = constructor, _a = slotContentIsPresent, _b) {
|
|
8
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
9
|
-
constructor(...args) {
|
|
10
|
-
super(args);
|
|
11
|
-
this[_a] = /* @__PURE__ */ new Map();
|
|
12
|
-
this.managePresenceObservedSlot = () => {
|
|
13
|
-
let changes = false;
|
|
14
|
-
lightDomSelectors.forEach((selector) => {
|
|
15
|
-
const nextValue = !!this.querySelector(`:scope > ${selector}`);
|
|
16
|
-
const previousValue = this[slotContentIsPresent].get(selector) || false;
|
|
17
|
-
changes = changes || previousValue !== nextValue;
|
|
18
|
-
this[slotContentIsPresent].set(
|
|
19
|
-
selector,
|
|
20
|
-
!!this.querySelector(`:scope > ${selector}`)
|
|
21
|
-
);
|
|
22
|
-
});
|
|
23
|
-
if (changes) {
|
|
24
|
-
this.updateComplete.then(() => {
|
|
25
|
-
this.requestUpdate();
|
|
26
|
-
});
|
|
27
|
-
}
|
|
28
|
-
};
|
|
29
|
-
new MutationController(this, {
|
|
30
|
-
config: {
|
|
31
|
-
childList: true,
|
|
32
|
-
subtree: true
|
|
33
|
-
},
|
|
34
|
-
callback: () => {
|
|
35
|
-
this.managePresenceObservedSlot();
|
|
36
|
-
}
|
|
37
|
-
});
|
|
38
|
-
this.managePresenceObservedSlot();
|
|
39
|
-
}
|
|
40
|
-
/**
|
|
41
|
-
* @private
|
|
42
|
-
*/
|
|
43
|
-
get slotContentIsPresent() {
|
|
44
|
-
if (lightDomSelectors.length === 1) {
|
|
45
|
-
return this[slotContentIsPresent].get(lightDomSelectors[0]) || false;
|
|
46
|
-
} else {
|
|
47
|
-
throw new Error(
|
|
48
|
-
"Multiple selectors provided to `ObserveSlotPresence` use `getSlotContentPresence(selector: string)` instead."
|
|
49
|
-
);
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
getSlotContentPresence(selector) {
|
|
53
|
-
if (this[slotContentIsPresent].has(selector)) {
|
|
54
|
-
return this[slotContentIsPresent].get(selector) || false;
|
|
55
|
-
}
|
|
56
|
-
throw new Error(
|
|
57
|
-
`The provided selector \`${selector}\` is not being observed.`
|
|
58
|
-
);
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
return SlotPresenceObservingElement;
|
|
62
|
-
}
|
|
2
|
+
export * from "@spectrum-web-components/core/shared/observe-slot-presence.js";
|
|
63
3
|
//# sourceMappingURL=observe-slot-presence.dev.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["observe-slot-presence.ts"],
|
|
4
|
-
"sourcesContent": ["/**\n * Copyright 2025 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\
|
|
5
|
-
"mappings": ";
|
|
4
|
+
"sourcesContent": ["/**\n * Copyright 2025 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\nexport * from '@spectrum-web-components/core/shared/observe-slot-presence.js';\n"],
|
|
5
|
+
"mappings": ";AAWA,cAAc;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";
|
|
1
|
+
"use strict";export*from"@spectrum-web-components/core/shared/observe-slot-presence.js";
|
|
2
2
|
//# sourceMappingURL=observe-slot-presence.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["observe-slot-presence.ts"],
|
|
4
|
-
"sourcesContent": ["/**\n * Copyright 2025 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\
|
|
5
|
-
"mappings": "
|
|
6
|
-
"names": [
|
|
4
|
+
"sourcesContent": ["/**\n * Copyright 2025 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\nexport * from '@spectrum-web-components/core/shared/observe-slot-presence.js';\n"],
|
|
5
|
+
"mappings": "aAWA,WAAc",
|
|
6
|
+
"names": []
|
|
7
7
|
}
|
|
@@ -9,14 +9,4 @@
|
|
|
9
9
|
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
10
|
* governing permissions and limitations under the License.
|
|
11
11
|
*/
|
|
12
|
-
|
|
13
|
-
type Constructor<T = Record<string, unknown>> = {
|
|
14
|
-
new (...args: any[]): T;
|
|
15
|
-
prototype: T;
|
|
16
|
-
};
|
|
17
|
-
export interface SlotTextObservingInterface {
|
|
18
|
-
slotHasContent: boolean;
|
|
19
|
-
manageTextObservedSlot(): void;
|
|
20
|
-
}
|
|
21
|
-
export declare function ObserveSlotText<T extends Constructor<ReactiveElement>>(constructor: T, slotName?: string, excludedSelectors?: string[]): T & Constructor<SlotTextObservingInterface>;
|
|
22
|
-
export {};
|
|
12
|
+
export * from '@spectrum-web-components/core/shared/observe-slot-text.js';
|
|
@@ -1,95 +1,3 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __decorateClass = (decorators, target, key, kind) => {
|
|
5
|
-
var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
|
|
6
|
-
for (var i = decorators.length - 1, decorator; i >= 0; i--)
|
|
7
|
-
if (decorator = decorators[i])
|
|
8
|
-
result = (kind ? decorator(target, key, result) : decorator(result)) || result;
|
|
9
|
-
if (kind && result) __defProp(target, key, result);
|
|
10
|
-
return result;
|
|
11
|
-
};
|
|
12
|
-
import {
|
|
13
|
-
property,
|
|
14
|
-
queryAssignedNodes
|
|
15
|
-
} from "@spectrum-web-components/base/src/decorators.js";
|
|
16
|
-
import { MutationController } from "@lit-labs/observers/mutation-controller.js";
|
|
17
|
-
const assignedNodesList = Symbol("assignedNodes");
|
|
18
|
-
export function ObserveSlotText(constructor, slotName, excludedSelectors = []) {
|
|
19
|
-
var _a, _b;
|
|
20
|
-
const notExcluded = (el) => (selector) => {
|
|
21
|
-
return el.matches(selector);
|
|
22
|
-
};
|
|
23
|
-
class SlotTextObservingElement extends (_b = constructor, _a = assignedNodesList, _b) {
|
|
24
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
25
|
-
constructor(...args) {
|
|
26
|
-
super(args);
|
|
27
|
-
this.slotHasContent = false;
|
|
28
|
-
new MutationController(this, {
|
|
29
|
-
config: {
|
|
30
|
-
characterData: true,
|
|
31
|
-
subtree: true
|
|
32
|
-
},
|
|
33
|
-
callback: (mutationsList) => {
|
|
34
|
-
for (const mutation of mutationsList) {
|
|
35
|
-
if (mutation.type === "characterData") {
|
|
36
|
-
this.manageTextObservedSlot();
|
|
37
|
-
return;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
});
|
|
42
|
-
}
|
|
43
|
-
manageTextObservedSlot() {
|
|
44
|
-
if (!this[assignedNodesList]) return;
|
|
45
|
-
const assignedNodes = [...this[assignedNodesList]].filter(
|
|
46
|
-
(currentNode) => {
|
|
47
|
-
const node = currentNode;
|
|
48
|
-
if (node.tagName) {
|
|
49
|
-
return !excludedSelectors.some(notExcluded(node));
|
|
50
|
-
}
|
|
51
|
-
return node.textContent ? node.textContent.trim() : false;
|
|
52
|
-
}
|
|
53
|
-
);
|
|
54
|
-
this.slotHasContent = assignedNodes.length > 0;
|
|
55
|
-
}
|
|
56
|
-
update(changedProperties) {
|
|
57
|
-
if (!this.hasUpdated) {
|
|
58
|
-
const { childNodes } = this;
|
|
59
|
-
const textNodes = [...childNodes].filter((currentNode) => {
|
|
60
|
-
const node = currentNode;
|
|
61
|
-
if (node.tagName) {
|
|
62
|
-
const excluded = excludedSelectors.some(
|
|
63
|
-
notExcluded(node)
|
|
64
|
-
);
|
|
65
|
-
return !excluded ? (
|
|
66
|
-
// This pass happens at element upgrade and before slot rendering.
|
|
67
|
-
// Confirm it would exisit in a targeted slot if there was one supplied.
|
|
68
|
-
slotName ? node.getAttribute("slot") === slotName : !node.hasAttribute("slot")
|
|
69
|
-
) : false;
|
|
70
|
-
}
|
|
71
|
-
return node.textContent ? node.textContent.trim() : false;
|
|
72
|
-
});
|
|
73
|
-
this.slotHasContent = textNodes.length > 0;
|
|
74
|
-
}
|
|
75
|
-
super.update(changedProperties);
|
|
76
|
-
}
|
|
77
|
-
firstUpdated(changedProperties) {
|
|
78
|
-
super.firstUpdated(changedProperties);
|
|
79
|
-
this.updateComplete.then(() => {
|
|
80
|
-
this.manageTextObservedSlot();
|
|
81
|
-
});
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
__decorateClass([
|
|
85
|
-
property({ type: Boolean, attribute: false })
|
|
86
|
-
], SlotTextObservingElement.prototype, "slotHasContent", 2);
|
|
87
|
-
__decorateClass([
|
|
88
|
-
queryAssignedNodes({
|
|
89
|
-
slot: slotName,
|
|
90
|
-
flatten: true
|
|
91
|
-
})
|
|
92
|
-
], SlotTextObservingElement.prototype, _a, 2);
|
|
93
|
-
return SlotTextObservingElement;
|
|
94
|
-
}
|
|
2
|
+
export * from "@spectrum-web-components/core/shared/observe-slot-text.js";
|
|
95
3
|
//# sourceMappingURL=observe-slot-text.dev.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["observe-slot-text.ts"],
|
|
4
|
-
"sourcesContent": ["/**\n * Copyright 2025 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\
|
|
5
|
-
"mappings": "
|
|
4
|
+
"sourcesContent": ["/**\n * Copyright 2025 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\nexport * from '@spectrum-web-components/core/shared/observe-slot-text.js';\n"],
|
|
5
|
+
"mappings": ";AAWA,cAAc;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/src/observe-slot-text.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";
|
|
1
|
+
"use strict";export*from"@spectrum-web-components/core/shared/observe-slot-text.js";
|
|
2
2
|
//# sourceMappingURL=observe-slot-text.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["observe-slot-text.ts"],
|
|
4
|
-
"sourcesContent": ["/**\n * Copyright 2025 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\
|
|
5
|
-
"mappings": "
|
|
6
|
-
"names": [
|
|
4
|
+
"sourcesContent": ["/**\n * Copyright 2025 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\nexport * from '@spectrum-web-components/core/shared/observe-slot-text.js';\n"],
|
|
5
|
+
"mappings": "aAWA,WAAc",
|
|
6
|
+
"names": []
|
|
7
7
|
}
|