@mailstep/design-system 0.7.53-beta.0 → 0.7.53-beta.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/package.json +6 -1
- package/ui/Blocks/CommonGrid/CommonGrid.d.ts +2 -2
- package/ui/Blocks/CommonGrid/CommonGrid.js +1 -1
- package/ui/Blocks/CommonGrid/CommonGridContainer.js +2 -2
- package/ui/Blocks/CommonGrid/components/GridModals/index.d.ts +3 -3
- package/ui/Blocks/CommonGrid/components/HeadCell.d.ts +16 -0
- package/ui/Blocks/CommonGrid/components/HeadCell.js +28 -0
- package/ui/Blocks/CommonGrid/components/HeadRow.d.ts +4 -5
- package/ui/Blocks/CommonGrid/components/HeadRow.js +12 -13
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/ManageColumnForm.d.ts +4 -6
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/ManageColumnForm.js +8 -25
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/components/ManageColumnRow.d.ts +13 -0
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/components/{ActionRow.js → ManageColumnRow.js} +14 -3
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/styles.d.ts +2 -0
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/styles.js +8 -2
- package/ui/Blocks/CommonGrid/components/Table.d.ts +6 -2
- package/ui/Blocks/CommonGrid/components/Table.js +1 -1
- package/ui/Blocks/CommonGrid/hooks/useManageColumn.d.ts +2 -2
- package/ui/Blocks/CommonGrid/hooks/useManageColumn.js +6 -8
- package/ui/Blocks/CommonGrid/styles.d.ts +1 -1
- package/ui/index.es.js +23789 -27003
- package/ui/index.umd.js +647 -816
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/components/ActionRow.d.ts +0 -12
- package/ui/Elements/Icon/icons/SuperHero.d.ts +0 -3
- package/ui/Elements/Icon/icons/SuperHero.js +0 -13
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { ColumnConfig, ColumnDefinition } from '../../../types';
|
|
3
|
-
type ActionRowProps = {
|
|
4
|
-
column: ColumnDefinition;
|
|
5
|
-
columnsConfigValues: string[] | undefined;
|
|
6
|
-
setColumnsConfigOptions: (value: React.SetStateAction<{
|
|
7
|
-
[x: string]: ColumnConfig | {};
|
|
8
|
-
}>) => void;
|
|
9
|
-
translatedValue: string;
|
|
10
|
-
};
|
|
11
|
-
export declare const ActionRow: ({ column, columnsConfigValues, setColumnsConfigOptions, translatedValue }: ActionRowProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
-
export {};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
|
2
|
-
__assign = Object.assign || function(t) {
|
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
-
s = arguments[i];
|
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
-
t[p] = s[p];
|
|
7
|
-
}
|
|
8
|
-
return t;
|
|
9
|
-
};
|
|
10
|
-
return __assign.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
|
-
export var SuperHero = function (props) { return (_jsx("svg", __assign({ fill: "#000000", viewBox: "0 0 260 260" }, props, { children: _jsx("path", { d: "M232.043,157.557L216.22,2l-32.915,51.122c0,0-28.733-21.024-66.301-21.024c-37.577,0-60.744,17.332-60.744,17.332L9.57,2\n\tL1.957,157.557h4.675C11.901,213.818,59.385,258,117,258s105.099-44.182,110.368-100.443H232.043z M47.147,109.233\n\tc2.105-7.719,11.19-11.065,17.794-6.556l35.635,24.35H42.293L47.147,109.233z M169.194,102.677\n\tc6.604-4.508,15.698-1.163,17.803,6.556l4.845,17.794h-58.283L169.194,102.677z M117,238.185c-46.68,0-85.26-35.314-90.447-80.628\n\th180.893C202.26,202.871,163.68,238.185,117,238.185z M146.646,200.214H90.891v-16.932h55.755V200.214z" }) }))); };
|