carbon-react 109.2.1 → 109.2.4
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/esm/__internal__/validations/validation-icon.component.js +1 -1
- package/esm/components/accordion/accordion-group/accordion-group.component.js +1 -1
- package/esm/components/action-popover/action-popover-item/action-popover-item.component.js +2 -2
- package/esm/components/action-popover/action-popover-menu/action-popover-menu.component.js +3 -3
- package/esm/components/action-popover/action-popover.component.js +1 -1
- package/esm/components/anchor-navigation/anchor-navigation.component.js +2 -2
- package/esm/components/badge/badge.style.d.ts +1 -4
- package/esm/components/button/button.component.d.ts +1 -4
- package/esm/components/button/button.component.js +28 -14
- package/esm/components/button-bar/button-bar.component.js +1 -1
- package/esm/components/decimal/decimal.component.js +3 -3
- package/esm/components/drawer/drawer.component.js +1 -1
- package/esm/components/duelling-picklist/picklist-group/picklist-group.style.js +2 -2
- package/esm/components/duelling-picklist/picklist-item/picklist-item.style.js +2 -2
- package/esm/components/icon/icon.component.js +1 -1
- package/esm/components/menu/__internal__/submenu/submenu.component.js +1 -0
- package/esm/components/multi-action-button/multi-action-button.component.js +1 -6
- package/esm/components/note/note.component.js +6 -6
- package/esm/components/numeral-date/numeral-date.component.js +1 -1
- package/esm/components/search/search.component.js +1 -1
- package/esm/components/select/filterable-select/filterable-select.component.js +3 -3
- package/esm/components/select/multi-select/multi-select.component.js +2 -2
- package/esm/components/select/simple-select/simple-select.component.js +2 -2
- package/esm/components/split-button/split-button.component.js +1 -6
- package/esm/components/tooltip/tooltip.component.js +1 -1
- package/esm/hooks/__internal__/useScrollBlock/useScrollBlock.js +39 -37
- package/lib/__internal__/validations/validation-icon.component.js +1 -1
- package/lib/components/accordion/accordion-group/accordion-group.component.js +1 -1
- package/lib/components/action-popover/action-popover-item/action-popover-item.component.js +2 -2
- package/lib/components/action-popover/action-popover-menu/action-popover-menu.component.js +3 -3
- package/lib/components/action-popover/action-popover.component.js +1 -1
- package/lib/components/anchor-navigation/anchor-navigation.component.js +2 -2
- package/lib/components/badge/badge.style.d.ts +1 -4
- package/lib/components/button/button.component.d.ts +1 -4
- package/lib/components/button/button.component.js +31 -12
- package/lib/components/button-bar/button-bar.component.js +1 -1
- package/lib/components/decimal/decimal.component.js +3 -3
- package/lib/components/drawer/drawer.component.js +1 -1
- package/lib/components/duelling-picklist/picklist-group/picklist-group.style.js +4 -2
- package/lib/components/duelling-picklist/picklist-item/picklist-item.style.js +2 -2
- package/lib/components/icon/icon.component.js +1 -1
- package/lib/components/menu/__internal__/submenu/submenu.component.js +1 -0
- package/lib/components/multi-action-button/multi-action-button.component.js +1 -6
- package/lib/components/note/note.component.js +6 -6
- package/lib/components/numeral-date/numeral-date.component.js +1 -1
- package/lib/components/search/search.component.js +1 -1
- package/lib/components/select/filterable-select/filterable-select.component.js +3 -3
- package/lib/components/select/multi-select/multi-select.component.js +2 -2
- package/lib/components/select/simple-select/simple-select.component.js +2 -2
- package/lib/components/split-button/split-button.component.js +1 -6
- package/lib/components/tooltip/tooltip.component.js +1 -1
- package/lib/hooks/__internal__/useScrollBlock/useScrollBlock.js +38 -36
- package/package.json +17 -14
- package/scripts/{check_carbon_version.js → check_carbon_version/check_carbon_version.js} +10 -2
- package/scripts/{check_rfcs.js → check_rfcs/check_rfcs.js} +8 -1
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
const { Octokit } = require("@octokit/rest");
|
|
3
3
|
const dotenv = require("dotenv");
|
|
4
4
|
const chalk = require("chalk");
|
|
5
|
+
const ci = require("ci-info");
|
|
5
6
|
|
|
6
7
|
dotenv.config();
|
|
7
8
|
const octokit = new Octokit({
|
|
@@ -33,6 +34,10 @@ const getOpenRfcs = async () => {
|
|
|
33
34
|
const getRfcTitle = (rfc) => rfc.title.split(": ")[1];
|
|
34
35
|
|
|
35
36
|
const checkRfcs = async () => {
|
|
37
|
+
if (ci.BITRISE) {
|
|
38
|
+
return;
|
|
39
|
+
}
|
|
40
|
+
|
|
36
41
|
const openRfcs = await getOpenRfcs();
|
|
37
42
|
|
|
38
43
|
if (openRfcs.length > 0) {
|
|
@@ -46,4 +51,6 @@ const checkRfcs = async () => {
|
|
|
46
51
|
}
|
|
47
52
|
};
|
|
48
53
|
|
|
49
|
-
|
|
54
|
+
checkRfcs();
|
|
55
|
+
|
|
56
|
+
module.exports = checkRfcs;
|