@elliemae/ds-data-table 3.18.0-next.0 → 3.18.0-next.2
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/parts/HoC/withConditionalDnDSortableContext.js +1 -1
- package/dist/cjs/parts/HoC/withConditionalDnDSortableContext.js.map +2 -2
- package/dist/esm/parts/HoC/withConditionalDnDSortableContext.js +1 -1
- package/dist/esm/parts/HoC/withConditionalDnDSortableContext.js.map +2 -2
- package/dist/types/parts/FilterBar/styled.d.ts +2 -2
- package/dist/types/styled.d.ts +23 -23
- package/package.json +25 -25
|
@@ -36,7 +36,7 @@ var import_jsx_runtime = require("react/jsx-runtime");
|
|
|
36
36
|
var import_ds_drag_and_drop = require("@elliemae/ds-drag-and-drop");
|
|
37
37
|
var import_react = require("react");
|
|
38
38
|
var import_DataTableContext = require("../../DataTableContext.js");
|
|
39
|
-
const withConditionalDnDSortableContext = (items, isDragOverlay = false) => (Component) => (props)
|
|
39
|
+
const withConditionalDnDSortableContext = (items, isDragOverlay = false) => (Component) => function(props) {
|
|
40
40
|
const {
|
|
41
41
|
tableProps: { dragAndDropColumns }
|
|
42
42
|
} = (0, import_react.useContext)(import_DataTableContext.DataTableContext);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../src/parts/HoC/withConditionalDnDSortableContext.tsx", "../../../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
-
"sourcesContent": ["import { horizontalListSortingStrategy, SortableContext } from '@elliemae/ds-drag-and-drop';\nimport React, { useContext } from 'react';\nimport { DataTableContext } from '../../DataTableContext.js';\nimport type { FunctionalHOC } from '../../types/FunctionalHoC.js';\nimport type { TypescriptColumn } from '../../types/props.js';\n\nexport const withConditionalDnDSortableContext =\n (items: TypescriptColumn[], isDragOverlay = false): FunctionalHOC =>\n (Component) =>\n
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;
|
|
4
|
+
"sourcesContent": ["import { horizontalListSortingStrategy, SortableContext } from '@elliemae/ds-drag-and-drop';\nimport React, { useContext } from 'react';\nimport { DataTableContext } from '../../DataTableContext.js';\nimport type { FunctionalHOC } from '../../types/FunctionalHoC.js';\nimport type { TypescriptColumn } from '../../types/props.js';\n\nexport const withConditionalDnDSortableContext =\n (items: TypescriptColumn[], isDragOverlay = false): FunctionalHOC =>\n (Component) =>\n function (props) {\n const {\n tableProps: { dragAndDropColumns },\n } = useContext(DataTableContext);\n\n // Only add the context if it's not a dragOverlay and dnd for cols was requested\n // It's important that drag overlays DO NOT have any sortable functionality!\n if (!isDragOverlay && dragAndDropColumns)\n return (\n <SortableContext items={items.map((item) => item.id)} strategy={horizontalListSortingStrategy}>\n <Component {...props} />\n </SortableContext>\n );\n\n return <Component {...props} />;\n };\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADmBX;AAnBZ,8BAA+D;AAC/D,mBAAkC;AAClC,8BAAiC;AAI1B,MAAM,oCACX,CAAC,OAA2B,gBAAgB,UAC5C,CAAC,cACC,SAAU,OAAO;AACf,QAAM;AAAA,IACJ,YAAY,EAAE,mBAAmB;AAAA,EACnC,QAAI,yBAAW,wCAAgB;AAI/B,MAAI,CAAC,iBAAiB;AACpB,WACE,4CAAC,2CAAgB,OAAO,MAAM,IAAI,CAAC,SAAS,KAAK,EAAE,GAAG,UAAU,uDAC9D,sDAAC,aAAW,GAAG,OAAO,GACxB;AAGJ,SAAO,4CAAC,aAAW,GAAG,OAAO;AAC/B;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -3,7 +3,7 @@ import { jsx } from "react/jsx-runtime";
|
|
|
3
3
|
import { horizontalListSortingStrategy, SortableContext } from "@elliemae/ds-drag-and-drop";
|
|
4
4
|
import { useContext } from "react";
|
|
5
5
|
import { DataTableContext } from "../../DataTableContext.js";
|
|
6
|
-
const withConditionalDnDSortableContext = (items, isDragOverlay = false) => (Component) => (props)
|
|
6
|
+
const withConditionalDnDSortableContext = (items, isDragOverlay = false) => (Component) => function(props) {
|
|
7
7
|
const {
|
|
8
8
|
tableProps: { dragAndDropColumns }
|
|
9
9
|
} = useContext(DataTableContext);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../../scripts/build/transpile/react-shim.js", "../../../../src/parts/HoC/withConditionalDnDSortableContext.tsx"],
|
|
4
|
-
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import { horizontalListSortingStrategy, SortableContext } from '@elliemae/ds-drag-and-drop';\nimport React, { useContext } from 'react';\nimport { DataTableContext } from '../../DataTableContext.js';\nimport type { FunctionalHOC } from '../../types/FunctionalHoC.js';\nimport type { TypescriptColumn } from '../../types/props.js';\n\nexport const withConditionalDnDSortableContext =\n (items: TypescriptColumn[], isDragOverlay = false): FunctionalHOC =>\n (Component) =>\n
|
|
5
|
-
"mappings": "AAAA,YAAY,WAAW;
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import { horizontalListSortingStrategy, SortableContext } from '@elliemae/ds-drag-and-drop';\nimport React, { useContext } from 'react';\nimport { DataTableContext } from '../../DataTableContext.js';\nimport type { FunctionalHOC } from '../../types/FunctionalHoC.js';\nimport type { TypescriptColumn } from '../../types/props.js';\n\nexport const withConditionalDnDSortableContext =\n (items: TypescriptColumn[], isDragOverlay = false): FunctionalHOC =>\n (Component) =>\n function (props) {\n const {\n tableProps: { dragAndDropColumns },\n } = useContext(DataTableContext);\n\n // Only add the context if it's not a dragOverlay and dnd for cols was requested\n // It's important that drag overlays DO NOT have any sortable functionality!\n if (!isDragOverlay && dragAndDropColumns)\n return (\n <SortableContext items={items.map((item) => item.id)} strategy={horizontalListSortingStrategy}>\n <Component {...props} />\n </SortableContext>\n );\n\n return <Component {...props} />;\n };\n"],
|
|
5
|
+
"mappings": "AAAA,YAAY,WAAW;ACmBX;AAnBZ,SAAS,+BAA+B,uBAAuB;AAC/D,SAAgB,kBAAkB;AAClC,SAAS,wBAAwB;AAI1B,MAAM,oCACX,CAAC,OAA2B,gBAAgB,UAC5C,CAAC,cACC,SAAU,OAAO;AACf,QAAM;AAAA,IACJ,YAAY,EAAE,mBAAmB;AAAA,EACnC,IAAI,WAAW,gBAAgB;AAI/B,MAAI,CAAC,iBAAiB;AACpB,WACE,oBAAC,mBAAgB,OAAO,MAAM,IAAI,CAAC,SAAS,KAAK,EAAE,GAAG,UAAU,+BAC9D,8BAAC,aAAW,GAAG,OAAO,GACxB;AAGJ,SAAO,oBAAC,aAAW,GAAG,OAAO;AAC/B;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const StyledWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/dist/types/react-desc-prop-types").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, object, never>;
|
|
3
|
-
export declare const StyledDropdownMenu: import("styled-components").StyledComponent<any, import("@elliemae/ds-system").Theme,
|
|
2
|
+
export declare const StyledWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/dist/types/react-desc-prop-types").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
3
|
+
export declare const StyledDropdownMenu: import("styled-components").StyledComponent<import("react").ComponentType<any> | keyof JSX.IntrinsicElements | import("styled-components").AnyStyledComponent, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface, never>;
|
package/dist/types/styled.d.ts
CHANGED
|
@@ -8,48 +8,48 @@ interface WidthAndHeight {
|
|
|
8
8
|
}
|
|
9
9
|
export declare const StyledFocusWithin: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/dist/types/react-desc-prop-types.js").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, {
|
|
10
10
|
hideFocus?: boolean | undefined;
|
|
11
|
-
}, never>;
|
|
12
|
-
export declare const StyledDataTableWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/dist/types/react-desc-prop-types.js").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, WidthAndHeight, never>;
|
|
11
|
+
} & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
12
|
+
export declare const StyledDataTableWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/dist/types/react-desc-prop-types.js").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, WidthAndHeight & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
13
13
|
export declare const StyledDataTableContentWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/dist/types/react-desc-prop-types.js").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, {
|
|
14
14
|
noSelectionAllowed: boolean;
|
|
15
|
-
}, never>;
|
|
16
|
-
export declare const StyledTableWrapper: import("styled-components").StyledComponent<
|
|
17
|
-
export declare const StyledTableContentWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/dist/types/react-desc-prop-types.js").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, WidthAndHeight, never>;
|
|
18
|
-
export declare const StyledVirtualListWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/dist/types/react-desc-prop-types.js").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, object, never>;
|
|
15
|
+
} & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
16
|
+
export declare const StyledTableWrapper: import("styled-components").StyledComponent<"div", Theme, WidthAndHeight & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
17
|
+
export declare const StyledTableContentWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/dist/types/react-desc-prop-types.js").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, WidthAndHeight & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
18
|
+
export declare const StyledVirtualListWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/dist/types/react-desc-prop-types.js").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, object & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
19
19
|
export declare const StyledHeadWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/dist/types/react-desc-prop-types.js").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, {
|
|
20
20
|
colsLayoutStyle: string;
|
|
21
21
|
totalColumnsWidth: number | string;
|
|
22
|
-
}, never>;
|
|
22
|
+
} & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
23
23
|
export declare const StyledHeadTr: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/dist/types/react-desc-prop-types.js").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, {
|
|
24
24
|
isExpandable: boolean;
|
|
25
25
|
colsLayoutStyle: ColsLayoutStyle;
|
|
26
26
|
cols: string[];
|
|
27
|
-
}, never>;
|
|
28
|
-
export declare const StyledHeadTh: import("styled-components").StyledComponent<
|
|
27
|
+
} & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
28
|
+
export declare const StyledHeadTh: import("styled-components").StyledComponent<"div", Theme, {
|
|
29
29
|
isDraggingActive?: boolean | undefined;
|
|
30
30
|
column: InternalTypescriptColumn;
|
|
31
|
-
}, never>;
|
|
32
|
-
export declare const StyledHeaderRightIconsWrapper: import("styled-components").StyledComponent<
|
|
33
|
-
export declare const StyledResizer: import("styled-components").StyledComponent<
|
|
31
|
+
} & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
32
|
+
export declare const StyledHeaderRightIconsWrapper: import("styled-components").StyledComponent<"div", Theme, object & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
33
|
+
export declare const StyledResizer: import("styled-components").StyledComponent<"div", Theme, {
|
|
34
34
|
isResizing: boolean;
|
|
35
|
-
}, never>;
|
|
36
|
-
export declare const StyledActionCell: import("styled-components").StyledComponent<
|
|
37
|
-
export declare const StyledCell: import("styled-components").StyledComponent<
|
|
35
|
+
} & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
36
|
+
export declare const StyledActionCell: import("styled-components").StyledComponent<"div", Theme, object & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
37
|
+
export declare const StyledCell: import("styled-components").StyledComponent<"div", Theme, {
|
|
38
38
|
theme: Theme;
|
|
39
39
|
column: InternalTypescriptColumn<HTMLElement>;
|
|
40
|
-
}, never>;
|
|
41
|
-
export declare const StyledCellContent: import("styled-components").StyledComponent<
|
|
42
|
-
export declare const StyledPencilIcon: import("styled-components").StyledComponent<(rest: import("@elliemae/ds-icons").SvgIconT.Props) => import("react/jsx-runtime.js").JSX.Element, Theme, object, never>;
|
|
40
|
+
} & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
41
|
+
export declare const StyledCellContent: import("styled-components").StyledComponent<"div", Theme, object & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
42
|
+
export declare const StyledPencilIcon: import("styled-components").StyledComponent<(rest: import("@elliemae/ds-icons").SvgIconT.Props) => import("react/jsx-runtime.js").JSX.Element, Theme, object & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
43
43
|
export declare const StyledEditableContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/dist/types/react-desc-prop-types.js").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, {
|
|
44
44
|
shouldDisplayEditIcon: string;
|
|
45
|
-
}, never>;
|
|
45
|
+
} & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
46
46
|
export declare const StyledFullsizeGrid: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/dist/types/react-desc-prop-types.js").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, {
|
|
47
47
|
minHeight: string;
|
|
48
|
-
}, never>;
|
|
48
|
+
} & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
49
49
|
export declare const GroupHeaderContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/dist/types/react-desc-prop-types.js").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, {
|
|
50
50
|
paddingLeft: string;
|
|
51
|
-
}, never>;
|
|
52
|
-
export declare const GroupHeaderTitle: import("styled-components").StyledComponent<
|
|
51
|
+
} & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
52
|
+
export declare const GroupHeaderTitle: import("styled-components").StyledComponent<"span", Theme, object & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
53
53
|
export declare const StyledCellContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/dist/types/react-desc-prop-types.js").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, Theme, {
|
|
54
54
|
backgroundColor?: string | undefined;
|
|
55
55
|
isDragOverlay?: boolean | undefined;
|
|
@@ -62,5 +62,5 @@ export declare const StyledCellContainer: import("styled-components").StyledComp
|
|
|
62
62
|
shouldDisplayHover?: boolean | undefined;
|
|
63
63
|
isDropIndicatorPositionInside?: boolean | undefined;
|
|
64
64
|
minHeight?: string | undefined;
|
|
65
|
-
}, never>;
|
|
65
|
+
} & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
66
66
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-data-table",
|
|
3
|
-
"version": "3.18.0-next.
|
|
3
|
+
"version": "3.18.0-next.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Data Table",
|
|
6
6
|
"files": [
|
|
@@ -571,29 +571,29 @@
|
|
|
571
571
|
"indent": 4
|
|
572
572
|
},
|
|
573
573
|
"dependencies": {
|
|
574
|
-
"@elliemae/ds-button": "3.18.0-next.0",
|
|
575
|
-
"@elliemae/ds-circular-progress-indicator": "3.18.0-next.0",
|
|
576
|
-
"@elliemae/ds-controlled-form": "3.18.0-next.0",
|
|
577
|
-
"@elliemae/ds-drag-and-drop": "3.18.0-next.0",
|
|
578
|
-
"@elliemae/ds-dropdownmenu": "3.18.0-next.0",
|
|
579
|
-
"@elliemae/ds-form-checkbox": "3.18.0-next.0",
|
|
580
|
-
"@elliemae/ds-form-combobox": "3.18.0-next.0",
|
|
581
|
-
"@elliemae/ds-form-date-range-picker": "3.18.0-next.0",
|
|
582
|
-
"@elliemae/ds-form-date-time-picker": "3.18.0-next.0",
|
|
583
|
-
"@elliemae/ds-form-layout-blocks": "3.18.0-next.0",
|
|
584
|
-
"@elliemae/ds-grid": "3.18.0-next.0",
|
|
585
|
-
"@elliemae/ds-icons": "3.18.0-next.0",
|
|
586
|
-
"@elliemae/ds-pagination": "3.18.0-next.0",
|
|
587
|
-
"@elliemae/ds-pills": "3.18.0-next.0",
|
|
588
|
-
"@elliemae/ds-popperjs": "3.18.0-next.0",
|
|
589
|
-
"@elliemae/ds-props-helpers": "3.18.0-next.0",
|
|
590
|
-
"@elliemae/ds-skeleton": "3.18.0-next.0",
|
|
591
|
-
"@elliemae/ds-system": "3.18.0-next.0",
|
|
592
|
-
"@elliemae/ds-toolbar": "3.18.0-next.0",
|
|
593
|
-
"@elliemae/ds-truncated-tooltip-text": "3.18.0-next.0",
|
|
594
|
-
"@elliemae/ds-utilities": "3.18.0-next.0",
|
|
595
574
|
"react-virtual": "~2.10.4",
|
|
596
|
-
"uid": "~2.0.1"
|
|
575
|
+
"uid": "~2.0.1",
|
|
576
|
+
"@elliemae/ds-button": "3.18.0-next.2",
|
|
577
|
+
"@elliemae/ds-circular-progress-indicator": "3.18.0-next.2",
|
|
578
|
+
"@elliemae/ds-controlled-form": "3.18.0-next.2",
|
|
579
|
+
"@elliemae/ds-drag-and-drop": "3.18.0-next.2",
|
|
580
|
+
"@elliemae/ds-dropdownmenu": "3.18.0-next.2",
|
|
581
|
+
"@elliemae/ds-form-checkbox": "3.18.0-next.2",
|
|
582
|
+
"@elliemae/ds-form-combobox": "3.18.0-next.2",
|
|
583
|
+
"@elliemae/ds-form-date-range-picker": "3.18.0-next.2",
|
|
584
|
+
"@elliemae/ds-form-date-time-picker": "3.18.0-next.2",
|
|
585
|
+
"@elliemae/ds-form-layout-blocks": "3.18.0-next.2",
|
|
586
|
+
"@elliemae/ds-grid": "3.18.0-next.2",
|
|
587
|
+
"@elliemae/ds-icons": "3.18.0-next.2",
|
|
588
|
+
"@elliemae/ds-pagination": "3.18.0-next.2",
|
|
589
|
+
"@elliemae/ds-pills": "3.18.0-next.2",
|
|
590
|
+
"@elliemae/ds-popperjs": "3.18.0-next.2",
|
|
591
|
+
"@elliemae/ds-props-helpers": "3.18.0-next.2",
|
|
592
|
+
"@elliemae/ds-skeleton": "3.18.0-next.2",
|
|
593
|
+
"@elliemae/ds-system": "3.18.0-next.2",
|
|
594
|
+
"@elliemae/ds-toolbar": "3.18.0-next.2",
|
|
595
|
+
"@elliemae/ds-truncated-tooltip-text": "3.18.0-next.2",
|
|
596
|
+
"@elliemae/ds-utilities": "3.18.0-next.2"
|
|
597
597
|
},
|
|
598
598
|
"devDependencies": {
|
|
599
599
|
"@testing-library/react": "~12.1.3",
|
|
@@ -606,7 +606,7 @@
|
|
|
606
606
|
"lodash": "^4.17.21",
|
|
607
607
|
"react": "~17.0.2",
|
|
608
608
|
"react-dom": "^17.0.2",
|
|
609
|
-
"styled-components": "~5.3.
|
|
609
|
+
"styled-components": "~5.3.9",
|
|
610
610
|
"styled-system": "^5.1.5"
|
|
611
611
|
},
|
|
612
612
|
"publishConfig": {
|
|
@@ -622,6 +622,6 @@
|
|
|
622
622
|
"build": "cross-env NODE_ENV=production node ../../scripts/build/build.mjs",
|
|
623
623
|
"dev:build": "pnpm --filter {.}... build",
|
|
624
624
|
"dev:install": "pnpm --filter {.}... i --no-lockfile && pnpm run dev:build",
|
|
625
|
-
"checkDeps": "
|
|
625
|
+
"checkDeps": "npm exec ../ds-codemods -- check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\""
|
|
626
626
|
}
|
|
627
627
|
}
|