@mailstep/design-system 0.7.58-beta.0 → 0.7.58
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/package.json +1 -1
- package/ui/Blocks/CommonGrid/components/ColumnTitle/ColumnTitle.d.ts +1 -2
- package/ui/Blocks/CommonGrid/components/ColumnTitle/ColumnTitle.js +3 -3
- package/ui/Blocks/CommonGrid/components/ColumnTitle.d.ts +2 -7
- package/ui/Blocks/CommonGrid/components/ColumnTitle.js +16 -7
- package/ui/Blocks/CommonGrid/storybook/stories/withForcedCheckboxes.stories.js +2 -2
- package/ui/Blocks/CommonGrid/types.d.ts +3 -3
- package/ui/Elements/CheckedCircle/index.d.ts +1 -6
- package/ui/Elements/CheckedCircle/index.js +2 -3
- package/ui/Elements/CheckedCircle/storries/CheckedCircle.stories.d.ts +1 -7
- package/ui/Elements/CheckedCircle/storries/CheckedCircle.stories.js +0 -16
- package/ui/Elements/CheckedCircle/styles.d.ts +1 -3
- package/ui/Elements/CheckedCircle/styles.js +1 -7
- package/ui/index.es.js +223 -222
- package/ui/index.umd.js +1 -1
package/package.json
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ColumnTitleComponentType } from '../../types';
|
|
3
|
-
|
|
4
|
-
declare const ColumnTitle: ({ title, isSortable, onSetSort, sortValue }: Props) => JSX.Element | null;
|
|
3
|
+
declare const ColumnTitle: React.FC<ColumnTitleComponentType>;
|
|
5
4
|
export default ColumnTitle;
|
|
@@ -4,8 +4,8 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
|
|
|
4
4
|
};
|
|
5
5
|
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
6
6
|
import { useState, useCallback, useRef, useEffect } from 'react';
|
|
7
|
-
import styled, { x, css } from '@xstyled/styled-components';
|
|
8
7
|
import Icon from '../../../../Elements/Icon/Icon';
|
|
8
|
+
import styled, { x, css } from '@xstyled/styled-components';
|
|
9
9
|
// ArrowWrap and WarningWrap need to have the same size to solve resizing issues
|
|
10
10
|
var WRAPPER_WIDTH = 35;
|
|
11
11
|
var Wrap = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n width: 100%;\n font-size: 0.8rem;\n"], ["\n width: 100%;\n font-size: 0.8rem;\n"])));
|
|
@@ -31,8 +31,8 @@ var ColumnTitle = function (_a) {
|
|
|
31
31
|
var onSetAsc = useCallback(function () { return onSetSort === null || onSetSort === void 0 ? void 0 : onSetSort('asc'); }, [onSetSort]);
|
|
32
32
|
var onSetDesc = useCallback(function () { return onSetSort === null || onSetSort === void 0 ? void 0 : onSetSort('desc'); }, [onSetSort]);
|
|
33
33
|
var onSetNull = useCallback(function () { return onSetSort === null || onSetSort === void 0 ? void 0 : onSetSort(null); }, [onSetSort]);
|
|
34
|
-
var isAsc = sortValue
|
|
35
|
-
var isDesc = sortValue
|
|
34
|
+
var isAsc = sortValue === 'asc';
|
|
35
|
+
var isDesc = sortValue === 'desc';
|
|
36
36
|
var wrapRef = useRef(null);
|
|
37
37
|
var contentRef = useRef(null);
|
|
38
38
|
useEffect(function () {
|
|
@@ -1,9 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
3
|
-
declare const _default: React.NamedExoticComponent<
|
|
4
|
-
title?: string | JSX.Element | undefined;
|
|
5
|
-
isSortable: boolean;
|
|
6
|
-
onSetSort?: ((value: SortingValueType) => void) | undefined;
|
|
7
|
-
sortValue: SortingValueType;
|
|
8
|
-
}>;
|
|
2
|
+
import type { ColumnTitleComponentType } from '../types';
|
|
3
|
+
declare const _default: React.NamedExoticComponent<ColumnTitleComponentType>;
|
|
9
4
|
export default _default;
|
|
@@ -4,17 +4,26 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
|
|
|
4
4
|
};
|
|
5
5
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
6
6
|
import React from 'react';
|
|
7
|
-
import styled from '@xstyled/styled-components';
|
|
8
7
|
import { SortingUp, SortingDown } from './icons/Sorting';
|
|
8
|
+
import styled from '@xstyled/styled-components';
|
|
9
9
|
var Title = styled.span(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n & + * {\n margin-left: 1em;\n }\n"], ["\n & + * {\n margin-left: 1em;\n }\n"])));
|
|
10
10
|
var ColumnTitle = function (_a) {
|
|
11
11
|
var title = _a.title, isSortable = _a.isSortable, onSetSort = _a.onSetSort, sortValue = _a.sortValue;
|
|
12
|
-
var
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
12
|
+
var _b = React.useState(0), mouseDownTimestamp = _b[0], setMouseDownTimestamp = _b[1];
|
|
13
|
+
var handleMouseDown = React.useCallback(function () {
|
|
14
|
+
setMouseDownTimestamp(Date.now());
|
|
15
|
+
}, []);
|
|
16
|
+
var handleMouseUp = React.useCallback(function () {
|
|
17
|
+
var now = Date.now();
|
|
18
|
+
var duration = now - mouseDownTimestamp;
|
|
19
|
+
if (duration < 200) {
|
|
20
|
+
var newValue = sortValue ? (sortValue === 'asc' ? 'desc' : null) : 'asc';
|
|
21
|
+
if (onSetSort)
|
|
22
|
+
onSetSort(newValue);
|
|
23
|
+
}
|
|
24
|
+
setMouseDownTimestamp(0);
|
|
25
|
+
}, [mouseDownTimestamp, onSetSort, sortValue]);
|
|
26
|
+
return (_jsxs("div", { onMouseDown: isSortable ? handleMouseDown : undefined, onMouseUp: isSortable ? handleMouseUp : undefined, className: isSortable ? 'sortable' : '', children: [_jsx(Title, { children: title }), isSortable && sortValue === 'asc' && _jsx(SortingUp, { width: "16" }), isSortable && sortValue === 'desc' && _jsx(SortingDown, { width: "16" })] }));
|
|
18
27
|
};
|
|
19
28
|
export default React.memo(ColumnTitle);
|
|
20
29
|
var templateObject_1;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import {
|
|
2
|
+
import { LinguiContainer } from '../../../../utils/LinguiContainer';
|
|
3
3
|
import { onRowEditClick, onRowReadClick, onRowAction } from '../utils/actions';
|
|
4
4
|
import { columnDefinitions } from '../utils/columnDefinition';
|
|
5
|
+
import { ReduxGrid, createRandomData } from '../utils/utils';
|
|
5
6
|
import withRedux from '../utils/withRedux';
|
|
6
|
-
import { LinguiContainer } from '../../../../utils/LinguiContainer';
|
|
7
7
|
export var ActionColumnCheckboxes = {
|
|
8
8
|
flexBasis: 160,
|
|
9
9
|
forceCheckboxes: true
|
|
@@ -43,19 +43,19 @@ export type FilterComponentProps<VT> = {
|
|
|
43
43
|
value: VT | null;
|
|
44
44
|
OverlayComponent?: React.FunctionComponent;
|
|
45
45
|
} & Record<string, any>;
|
|
46
|
-
export type ColumnTitleComponentType =
|
|
46
|
+
export type ColumnTitleComponentType = {
|
|
47
47
|
title?: string | JSX.Element;
|
|
48
48
|
isSortable: boolean;
|
|
49
49
|
onSetSort?: (value: SortingValueType) => void;
|
|
50
50
|
sortValue: SortingValueType;
|
|
51
|
-
}
|
|
51
|
+
};
|
|
52
52
|
export type ComponentsProps = {
|
|
53
53
|
Translator: React.ComponentType<any>;
|
|
54
54
|
Checkbox: React.ComponentType<CheckboxPublicInterfaceProps>;
|
|
55
55
|
Button: React.ComponentType<ButtonPublicInterfaceProps>;
|
|
56
56
|
Switch: React.ComponentType<SwitchPublicInterfaceProps>;
|
|
57
57
|
Paginator: React.ComponentType<PaginatorProps>;
|
|
58
|
-
ColumnTitle?: ColumnTitleComponentType
|
|
58
|
+
ColumnTitle?: React.ComponentType<ColumnTitleComponentType>;
|
|
59
59
|
};
|
|
60
60
|
export type CustomComparators = {
|
|
61
61
|
[name: string]: Comparator[];
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Icon from '../Icon';
|
|
3
3
|
import { CheckedCircleContainer } from './styles';
|
|
4
|
-
export var CheckedCircle = function (
|
|
5
|
-
|
|
6
|
-
return _jsx(CheckedCircleContainer, { color: color, children: checked && _jsx(Icon, { icon: "check", size: "12px" }) });
|
|
4
|
+
export var CheckedCircle = function () {
|
|
5
|
+
return (_jsx(CheckedCircleContainer, { children: _jsx(Icon, { icon: "check", size: "12px" }) }));
|
|
7
6
|
};
|
|
@@ -2,16 +2,10 @@
|
|
|
2
2
|
import type { StoryObj } from '@storybook/react';
|
|
3
3
|
declare const meta: {
|
|
4
4
|
title: string;
|
|
5
|
-
component: import("react").FC
|
|
6
|
-
checked?: boolean | undefined;
|
|
7
|
-
color?: string | undefined;
|
|
8
|
-
}>;
|
|
5
|
+
component: import("react").FC;
|
|
9
6
|
tags: string[];
|
|
10
7
|
argTypes: {};
|
|
11
8
|
};
|
|
12
9
|
export default meta;
|
|
13
10
|
type Story = StoryObj<typeof meta>;
|
|
14
11
|
export declare const Default: Story;
|
|
15
|
-
export declare const Checked: Story;
|
|
16
|
-
export declare const CheckedGreen: Story;
|
|
17
|
-
export declare const Unchecked: Story;
|
|
@@ -9,19 +9,3 @@ export default meta;
|
|
|
9
9
|
export var Default = {
|
|
10
10
|
args: {}
|
|
11
11
|
};
|
|
12
|
-
export var Checked = {
|
|
13
|
-
args: {
|
|
14
|
-
checked: true
|
|
15
|
-
}
|
|
16
|
-
};
|
|
17
|
-
export var CheckedGreen = {
|
|
18
|
-
args: {
|
|
19
|
-
checked: true,
|
|
20
|
-
color: 'green60'
|
|
21
|
-
}
|
|
22
|
-
};
|
|
23
|
-
export var Unchecked = {
|
|
24
|
-
args: {
|
|
25
|
-
checked: false
|
|
26
|
-
}
|
|
27
|
-
};
|
|
@@ -1,3 +1 @@
|
|
|
1
|
-
export declare const CheckedCircleContainer: import("styled-components").StyledComponent<"div", import("@xstyled/system").Theme, {
|
|
2
|
-
color: string;
|
|
3
|
-
}, never>;
|
|
1
|
+
export declare const CheckedCircleContainer: import("styled-components").StyledComponent<"div", import("@xstyled/system").Theme, {}, never>;
|
|
@@ -3,11 +3,5 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
|
|
|
3
3
|
return cooked;
|
|
4
4
|
};
|
|
5
5
|
import styled, { th } from '@xstyled/styled-components';
|
|
6
|
-
export var CheckedCircleContainer = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n border-radius: 50%;\n border: 8px solid ", ";\n color: ", ";\n height: 36px;\n width: 36px;\n display: flex;\n justify-content: center;\n align-items: center;\n background-color: white;\n"], ["\n border-radius: 50%;\n border: 8px solid ", ";\n color: ", ";\n height: 36px;\n width: 36px;\n display: flex;\n justify-content: center;\n align-items: center;\n background-color: white;\n"])),
|
|
7
|
-
var color = _a.color;
|
|
8
|
-
return th.color(color);
|
|
9
|
-
}, function (_a) {
|
|
10
|
-
var color = _a.color;
|
|
11
|
-
return th.color(color);
|
|
12
|
-
});
|
|
6
|
+
export var CheckedCircleContainer = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n border-radius: 50%;\n border: 8px solid ", ";\n color: ", ";\n height: 36px;\n width: 36px;\n display: flex;\n justify-content: center;\n align-items: center;\n background-color: white;\n"], ["\n border-radius: 50%;\n border: 8px solid ", ";\n color: ", ";\n height: 36px;\n width: 36px;\n display: flex;\n justify-content: center;\n align-items: center;\n background-color: white;\n"])), th.color('red1'), th.color('red1'));
|
|
13
7
|
var templateObject_1;
|