Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: hello-pangea/dnd
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d9bfa61cda2d6b50be64e04e0a88d1048819a166
Choose a base ref
..
head repository: hello-pangea/dnd
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e3e18b748a09bedd5bc5795d5207938028fbd0f0
Choose a head ref
19 changes: 6 additions & 13 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,14 @@
{
"processors": [
[
"stylelint-processor-styled-components",
{
"moduleName": "@emotion/styled"
}
]
],
"customSyntax": "postcss-styled-syntax",
"extends": [
"stylelint-config-standard",
"stylelint-config-styled-components",
"stylelint-config-prettier"
"stylelint-config-standard"
],
"rules": {
"declaration-empty-line-before": null,
"comment-empty-line-before": null,
"block-no-empty": null,
"comment-empty-line-before": null,
"declaration-empty-line-before": null,
"no-empty-source": null,
"declaration-block-no-redundant-longhand-properties": null,
"value-keyword-case": null
}
}
10 changes: 4 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -177,6 +177,7 @@
"lighthouse": "10.4.0",
"markdown-it": "13.0.1",
"memory-fs": "0.5.0",
"postcss-styled-syntax": "0.5.0",
"prettier": "3.0.3",
"raf-stub": "3.0.0",
"react": "18.2.0",
@@ -194,12 +195,9 @@
"rollup-plugin-dts": "5.3.0",
"seedrandom": "3.0.5",
"styled-components": "5.3.11",
"stylelint": "14.16.1",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-recommended": "9.0.0",
"stylelint-config-standard": "28.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0",
"stylelint": "15.11.0",
"stylelint-config-recommended": "13.0.0",
"stylelint-config-standard": "34.0.0",
"typescript": "4.9.5",
"wait-on": "7.0.1",
"webpack": "5.88.2"
371 changes: 256 additions & 115 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions stories/src/multi-drag/task.tsx
Original file line number Diff line number Diff line change
@@ -88,9 +88,9 @@ const Container = styled.div<ContainerProps>`
border-color: ${colors.G200};
}
`;
/* stylelint-disable block-no-empty */

const Content = styled.div``;
/* stylelint-enable */

const size = 30;

const SelectionCount = styled.div`
3 changes: 0 additions & 3 deletions stories/src/primatives/quote-list.tsx
Original file line number Diff line number Diff line change
@@ -67,11 +67,8 @@ const ScrollContainer = styled.div`
max-height: ${scrollContainerHeight}px;
`;

/* stylelint-disable block-no-empty */
const Container = styled.div``;

/* stylelint-enable */

interface Props {
listId?: string;
listType?: string;
3 changes: 0 additions & 3 deletions stories/src/table/with-clone.tsx
Original file line number Diff line number Diff line change
@@ -239,13 +239,10 @@ const Header = styled.header`
margin-bottom: ${grid * 2}px;
`;

/* stylelint-disable block-no-empty */
const LayoutControl = styled.div``;

const CopyTableButton = styled.button``;

/* stylelint-enable */

interface AppProps {
initial: Quote[];
}
3 changes: 0 additions & 3 deletions stories/src/table/with-dimension-locking.tsx
Original file line number Diff line number Diff line change
@@ -156,13 +156,10 @@ const Header = styled.header`
margin-bottom: ${grid * 2}px;
`;

/* stylelint-disable block-no-empty */
const LayoutControl = styled.div``;

const CopyTableButton = styled.button``;

/* stylelint-enable */

interface AppProps {
initial: Quote[];
}
3 changes: 0 additions & 3 deletions stories/src/table/with-fixed-columns.tsx
Original file line number Diff line number Diff line change
@@ -81,13 +81,10 @@ const Header = styled.header`
margin-bottom: ${grid * 2}px;
`;

/* stylelint-disable block-no-empty */
const LayoutControl = styled.div``;

const CopyTableButton = styled.button``;

/* stylelint-enable */

interface AppProps {
initial: Quote[];
}
3 changes: 0 additions & 3 deletions stories/src/table/with-portal.tsx
Original file line number Diff line number Diff line change
@@ -242,13 +242,10 @@ const Header = styled.header`
margin-bottom: ${grid * 2}px;
`;

/* stylelint-disable block-no-empty */
const LayoutControl = styled.div``;

const CopyTableButton = styled.button``;

/* stylelint-enable */

interface AppProps {
initial: Quote[];
}