@coveo/atomic-react 3.11.28 → 3.11.30
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/cjs/atomic-react.cjs +25 -10
- package/dist/cjs/atomic-react.cjs.map +1 -1
- package/dist/cjs/commerce/atomic-react.cjs +5 -3
- package/dist/cjs/commerce/atomic-react.cjs.map +1 -1
- package/dist/cjs/recommendation/atomic-react.cjs +25 -10
- package/dist/cjs/recommendation/atomic-react.cjs.map +1 -1
- package/package.json +8 -8
|
@@ -3162,7 +3162,7 @@ function getAugmentedNamespace(n) {
|
|
|
3162
3162
|
var isInstance = false;
|
|
3163
3163
|
try {
|
|
3164
3164
|
isInstance = this instanceof a;
|
|
3165
|
-
} catch {}
|
|
3165
|
+
} catch (e) {}
|
|
3166
3166
|
if (isInstance) {
|
|
3167
3167
|
return Reflect.construct(f, arguments, this.constructor);
|
|
3168
3168
|
}
|
|
@@ -8675,7 +8675,7 @@ function getWindow() {
|
|
|
8675
8675
|
}
|
|
8676
8676
|
function getAtomicEnvironment(headlessVersion) {
|
|
8677
8677
|
return {
|
|
8678
|
-
version: "3.59.
|
|
8678
|
+
version: "3.59.7",
|
|
8679
8679
|
headlessVersion
|
|
8680
8680
|
};
|
|
8681
8681
|
}
|
|
@@ -18711,7 +18711,9 @@ const renderExpandableText = ({ props: { isExpanded, isTruncated, isCollapsible,
|
|
|
18711
18711
|
style: 'text-primary',
|
|
18712
18712
|
class: buttonClassString,
|
|
18713
18713
|
title: buttonLabel,
|
|
18714
|
-
|
|
18714
|
+
...isCollapsible && {
|
|
18715
|
+
ariaExpanded: isExpanded ? 'true' : 'false'
|
|
18716
|
+
},
|
|
18715
18717
|
onClick: onToggleExpand
|
|
18716
18718
|
}
|
|
18717
18719
|
})(lit.html` <atomic-icon
|