@arc-ui/community-components 3.12.0 → 3.13.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/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +10 -0
- package/lib/ArticleCarousel/ArticleCarousel.cjs +1 -1
- package/lib/ArticleCarousel/ArticleCarousel.mjs +1 -1
- package/lib/CopyLead/CopyLead.cjs +1 -1
- package/lib/CopyLead/CopyLead.mjs +1 -1
- package/lib/FeaturePost/FeaturePost.cjs +1 -1
- package/lib/FeaturePost/FeaturePost.mjs +1 -1
- package/lib/HeaderBarNotification/HeaderBarNotification.cjs +1 -1
- package/lib/HeaderBarNotification/HeaderBarNotification.mjs +1 -1
- package/lib/ProductNavigation/ProductNavigation.cjs +1 -1
- package/lib/ProductNavigation/ProductNavigation.mjs +1 -1
- package/lib/PromoListing/PromoListing.cjs +1 -1
- package/lib/PromoListing/PromoListing.mjs +1 -1
- package/lib/Summary/Summary.cjs +1 -1
- package/lib/Summary/Summary.mjs +1 -1
- package/lib/_shared/cjs/{index.es-B73RVhhj.cjs → index.es-DcJ01c8P.cjs} +1 -1
- package/lib/_shared/esm/{index.es-DNGykRl2.mjs → index.es-C76rXaZz.mjs} +1 -1
- package/lib/index.cjs +2 -2
- package/lib/index.cjs.map +1 -1
- package/lib/index.mjs +2 -2
- package/lib/index.mjs.map +1 -1
- package/package.json +13 -13
- package/src/components/HeaderBarNotification/HeaderBarNotification.tsx +1 -0
- package/versions.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arc-ui/community-components",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.13.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"homepage": "https://ui.digital-ent-int.bt.com",
|
|
6
6
|
"author": "BT Business Digital UI Team <ui-digital-ent-int@bt.com>",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"access": "public"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
|
-
"@arc-ui/components": "13.
|
|
38
|
-
"@arc-ui/themes": "13.
|
|
37
|
+
"@arc-ui/components": "13.12.0",
|
|
38
|
+
"@arc-ui/themes": "13.12.0",
|
|
39
39
|
"react": "^19.2.3",
|
|
40
40
|
"react-dom": "^19.2.3"
|
|
41
41
|
},
|
|
@@ -49,14 +49,14 @@
|
|
|
49
49
|
"react-player": "^3.4.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@arc-ui/components": "13.
|
|
53
|
-
"@arc-ui/gradients": "13.
|
|
54
|
-
"@arc-ui/icons": "13.
|
|
55
|
-
"@arc-ui/themes": "13.
|
|
56
|
-
"@arc-ui/tokens-arc": "13.
|
|
57
|
-
"@arc-ui/tokens-bt-business": "13.
|
|
58
|
-
"@arc-ui/tokens-bt-enterprise": "13.
|
|
59
|
-
"@arc-ui/tokens-ee": "13.
|
|
52
|
+
"@arc-ui/components": "13.12.0",
|
|
53
|
+
"@arc-ui/gradients": "13.12.0",
|
|
54
|
+
"@arc-ui/icons": "13.12.0",
|
|
55
|
+
"@arc-ui/themes": "13.12.0",
|
|
56
|
+
"@arc-ui/tokens-arc": "13.12.0",
|
|
57
|
+
"@arc-ui/tokens-bt-business": "13.12.0",
|
|
58
|
+
"@arc-ui/tokens-bt-enterprise": "13.12.0",
|
|
59
|
+
"@arc-ui/tokens-ee": "13.12.0",
|
|
60
60
|
"@rollup/plugin-commonjs": "^28.0.1",
|
|
61
61
|
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
62
62
|
"@rollup/plugin-typescript": "^12.1.1",
|
|
@@ -80,10 +80,10 @@
|
|
|
80
80
|
"tslib": "^2.8.1",
|
|
81
81
|
"typescript": "^5.6.3",
|
|
82
82
|
"@arc-ui/community-build-utils": "^0.1.0",
|
|
83
|
+
"@arc-ui/community-eslint-config": "^0.1.1",
|
|
83
84
|
"@arc-ui/community-css-config": "^0.1.1",
|
|
84
85
|
"@arc-ui/community-typescript-config": "^0.1.0",
|
|
85
|
-
"@arc-ui/community-utils": "^0.2.0"
|
|
86
|
-
"@arc-ui/community-eslint-config": "^0.1.1"
|
|
86
|
+
"@arc-ui/community-utils": "^0.2.0"
|
|
87
87
|
},
|
|
88
88
|
"browserslist": [
|
|
89
89
|
"defaults",
|
|
@@ -55,6 +55,7 @@ export const HeaderBarNotification: React.FC<HeaderBarNotificationProps> = ({
|
|
|
55
55
|
maxWidth={900}
|
|
56
56
|
arrow={true}
|
|
57
57
|
asChild={true}
|
|
58
|
+
onOpenAutoFocus={(e) => e.preventDefault()}
|
|
58
59
|
className={classNames(
|
|
59
60
|
styles.popupNotification,
|
|
60
61
|
{ [styles.hiddenByDefault]: showAtSize },
|
package/versions.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
[{"version":"v3.
|
|
1
|
+
[{"version":"v3.13.0","date":null},{"version":"v3.12.0","date":"2026-07-08"},{"version":"v3.11.0","date":"2026-06-24"},{"version":"v3.10.0","date":"2026-06-16"},{"version":"v3.9.0","date":"2026-05-22"},{"version":"v3.8.1","date":"2026-05-13"},{"version":"v3.8.0","date":"2026-04-29"},{"version":"v3.7.1","date":"2026-04-22"},{"version":"v3.7.0","date":"2026-04-17"},{"version":"v3.6.0","date":"2026-04-10"},{"version":"v3.5.0","date":"2026-04-02"},{"version":"v3.4.0","date":"2026-03-26"},{"version":"v3.3.0","date":"2026-03-20"},{"version":"v3.2.0","date":"2026-03-09"},{"version":"v3.1.0","date":"2026-02-26"},{"version":"v3.0.1","date":null},{"version":"v3.0.0","date":"2026-02-18"},{"version":"v2.0.0","date":"2026-01-21"},{"version":"v1.1.0","date":"2025-11-19"},{"version":"v1.0.2","date":"2025-08-18"},{"version":"v1.0.1","date":"2025-08-05"},{"version":"v1.0.0","date":"2025-04-29"},{"version":"v0.1.0","date":null}]
|