@strapi/review-workflows 0.0.0-experimental.76447298a89499e415c97916c03f4f90c25ff336 → 0.0.0-experimental.defd8568ae03ef8d52f86e1f3541979f953c3941
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/_chunks/{Layout-facLKucY.mjs → Layout-B_cKmQA3.mjs} +5 -5
- package/dist/_chunks/Layout-B_cKmQA3.mjs.map +1 -0
- package/dist/_chunks/{Layout-dGg4FA1R.js → Layout-Py8gxQW2.js} +4 -4
- package/dist/_chunks/Layout-Py8gxQW2.js.map +1 -0
- package/dist/_chunks/{_id-B6DgrtpA.js → _id-BeUU-t6D.js} +8 -9
- package/dist/_chunks/_id-BeUU-t6D.js.map +1 -0
- package/dist/_chunks/{_id-D4CXKOqG.mjs → _id-C_HRFhcV.mjs} +4 -5
- package/dist/_chunks/_id-C_HRFhcV.mjs.map +1 -0
- package/dist/_chunks/{index-QbWLXdZR.mjs → index-CAgnun9R.mjs} +9 -10
- package/dist/_chunks/index-CAgnun9R.mjs.map +1 -0
- package/dist/_chunks/{index-DX8AGcIP.js → index-D3AvHSbj.js} +6 -7
- package/dist/_chunks/{index-DX8AGcIP.js.map → index-D3AvHSbj.js.map} +1 -1
- package/dist/_chunks/{index-D7Y0ofdg.mjs → index-DjHtLGgq.mjs} +5 -6
- package/dist/_chunks/{index-D7Y0ofdg.mjs.map → index-DjHtLGgq.mjs.map} +1 -1
- package/dist/_chunks/{index-BuKZWpJw.js → index-DyJcIA81.js} +10 -11
- package/dist/_chunks/index-DyJcIA81.js.map +1 -0
- package/dist/_chunks/{purchase-review-workflows-Ds61D_tk.js → purchase-review-workflows-BaOk5p_m.js} +4 -4
- package/dist/_chunks/purchase-review-workflows-BaOk5p_m.js.map +1 -0
- package/dist/_chunks/{purchase-review-workflows-B-V0sA2I.mjs → purchase-review-workflows-DyffLpyz.mjs} +5 -5
- package/dist/_chunks/purchase-review-workflows-DyffLpyz.mjs.map +1 -0
- package/dist/_chunks/{router-CL62NScV.js → router-BwVSq4yF.js} +3 -3
- package/dist/_chunks/{router-CL62NScV.js.map → router-BwVSq4yF.js.map} +1 -1
- package/dist/_chunks/{router-ylD0eA48.mjs → router-zN3-SLwz.mjs} +3 -3
- package/dist/_chunks/{router-ylD0eA48.mjs.map → router-zN3-SLwz.mjs.map} +1 -1
- package/dist/admin/index.js +1 -1
- package/dist/admin/index.mjs +1 -1
- package/package.json +8 -8
- package/dist/_chunks/Layout-dGg4FA1R.js.map +0 -1
- package/dist/_chunks/Layout-facLKucY.mjs.map +0 -1
- package/dist/_chunks/_id-B6DgrtpA.js.map +0 -1
- package/dist/_chunks/_id-D4CXKOqG.mjs.map +0 -1
- package/dist/_chunks/index-BuKZWpJw.js.map +0 -1
- package/dist/_chunks/index-QbWLXdZR.mjs.map +0 -1
- package/dist/_chunks/purchase-review-workflows-B-V0sA2I.mjs.map +0 -1
- package/dist/_chunks/purchase-review-workflows-Ds61D_tk.js.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { lightTheme, Field, Flex, Combobox, ComboboxOption, Typography, ModalLayout, ModalBody, Box, IconButton, SingleSelect, Loader, SingleSelectOption, FieldHint, FieldError } from "@strapi/design-system";
|
|
1
|
+
import { lightTheme, Field, Flex, Combobox, ComboboxOption, Typography, ModalLayout, ModalBody, Box, IconButton, LinkButton, SingleSelect, Loader, SingleSelectOption, FieldHint, FieldError } from "@strapi/design-system";
|
|
2
2
|
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
3
3
|
import { unstable_useDocument, unstable_useDocumentLayout } from "@strapi/plugin-content-manager/strapi-admin";
|
|
4
4
|
import { useIntl } from "react-intl";
|
|
@@ -9,7 +9,6 @@ import { useSelector, useDispatch } from "react-redux";
|
|
|
9
9
|
import { createApi } from "@reduxjs/toolkit/query/react";
|
|
10
10
|
import { isAxiosError } from "axios";
|
|
11
11
|
import { useLicenseLimits } from "@strapi/admin/strapi-admin/ee";
|
|
12
|
-
import { LinkButton } from "@strapi/design-system/v2";
|
|
13
12
|
import { Cross } from "@strapi/icons";
|
|
14
13
|
import styled from "styled-components";
|
|
15
14
|
const __variableDynamicImportRuntimeHelper = (glob, path) => {
|
|
@@ -693,7 +692,7 @@ const {
|
|
|
693
692
|
const StageColumn = (props) => {
|
|
694
693
|
const { color = STAGE_COLOR_DEFAULT, name } = props.strapi_stage ?? {};
|
|
695
694
|
const { themeColorName } = getStageColorByHex(color) ?? {};
|
|
696
|
-
return /* @__PURE__ */ jsxs(Flex, { alignItems: "center", gap: 2, maxWidth:
|
|
695
|
+
return /* @__PURE__ */ jsxs(Flex, { alignItems: "center", gap: 2, maxWidth: "30rem", children: [
|
|
697
696
|
/* @__PURE__ */ jsx(
|
|
698
697
|
Box,
|
|
699
698
|
{
|
|
@@ -792,7 +791,7 @@ const admin = {
|
|
|
792
791
|
},
|
|
793
792
|
permissions: [],
|
|
794
793
|
async Component() {
|
|
795
|
-
const { Router } = await import("./router-
|
|
794
|
+
const { Router } = await import("./router-zN3-SLwz.mjs");
|
|
796
795
|
return { default: Router };
|
|
797
796
|
}
|
|
798
797
|
});
|
|
@@ -806,7 +805,7 @@ const admin = {
|
|
|
806
805
|
},
|
|
807
806
|
permissions: [],
|
|
808
807
|
async Component() {
|
|
809
|
-
const { PurchaseReviewWorkflows } = await import("./purchase-review-workflows-
|
|
808
|
+
const { PurchaseReviewWorkflows } = await import("./purchase-review-workflows-DyffLpyz.mjs");
|
|
810
809
|
return { default: PurchaseReviewWorkflows };
|
|
811
810
|
},
|
|
812
811
|
lockIcon: true
|
|
@@ -848,4 +847,4 @@ export {
|
|
|
848
847
|
reviewWorkflowsApi as r,
|
|
849
848
|
useGetContentTypesQuery as u
|
|
850
849
|
};
|
|
851
|
-
//# sourceMappingURL=index-
|
|
850
|
+
//# sourceMappingURL=index-DjHtLGgq.mjs.map
|