@snack-uikit/toolbar 0.7.63 → 0.7.64-preview-71543426.0
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/components/Toolbar/Toolbar.js +82 -0
- package/dist/cjs/components/Toolbar/helpers.js +26 -0
- package/dist/cjs/components/Toolbar/index.js +25 -0
- package/dist/cjs/components/Toolbar/types.js +5 -0
- package/dist/cjs/components/Toolbar/typesUtils.js +5 -0
- package/dist/cjs/components/index.js +25 -0
- package/dist/cjs/constants.js +18 -0
- package/dist/cjs/helperComponents/DeleteAction/DeleteAction.js +56 -0
- package/dist/cjs/helperComponents/DeleteAction/constants.js +10 -0
- package/dist/cjs/helperComponents/DeleteAction/index.js +27 -0
- package/dist/cjs/helperComponents/DeleteAction/types.js +5 -0
- package/dist/cjs/helperComponents/MoreActions/MoreActions.js +50 -0
- package/dist/cjs/helperComponents/MoreActions/constants.js +10 -0
- package/dist/cjs/helperComponents/MoreActions/index.js +25 -0
- package/dist/cjs/helperComponents/Separator/Separator.js +18 -0
- package/dist/cjs/helperComponents/Separator/index.js +25 -0
- package/dist/cjs/helperComponents/index.js +27 -0
- package/dist/cjs/index.js +25 -0
- package/dist/esm/components/Toolbar/Toolbar.d.ts +4 -0
- package/dist/esm/components/Toolbar/helpers.d.ts +10 -0
- package/dist/esm/components/Toolbar/styles.module.css +63 -0
- package/dist/esm/components/Toolbar/types.d.ts +36 -0
- package/dist/esm/components/Toolbar/typesUtils.d.ts +12 -0
- package/dist/esm/components/index.d.ts +1 -0
- package/dist/esm/components/index.js +1 -0
- package/dist/esm/constants.d.ts +12 -0
- package/dist/esm/helperComponents/DeleteAction/DeleteAction.d.ts +14 -0
- package/dist/esm/helperComponents/DeleteAction/constants.d.ts +4 -0
- package/dist/esm/helperComponents/DeleteAction/index.js +3 -0
- package/dist/esm/helperComponents/DeleteAction/styles.module.css +18 -0
- package/dist/esm/helperComponents/DeleteAction/types.d.ts +3 -0
- package/dist/esm/helperComponents/MoreActions/MoreActions.d.ts +11 -0
- package/dist/esm/helperComponents/MoreActions/constants.d.ts +2 -0
- package/dist/esm/helperComponents/MoreActions/index.js +1 -0
- package/dist/esm/helperComponents/Separator/Separator.d.ts +1 -0
- package/dist/esm/helperComponents/Separator/index.js +1 -0
- package/dist/esm/helperComponents/Separator/styles.module.css +7 -0
- package/dist/esm/helperComponents/index.js +3 -0
- package/dist/esm/index.js +1 -0
- package/package.json +14 -12
- /package/dist/{components → cjs/components}/Toolbar/Toolbar.d.ts +0 -0
- /package/dist/{components → cjs/components}/Toolbar/helpers.d.ts +0 -0
- /package/dist/{components → cjs/components}/Toolbar/index.d.ts +0 -0
- /package/dist/{components → cjs/components}/Toolbar/styles.module.css +0 -0
- /package/dist/{components → cjs/components}/Toolbar/types.d.ts +0 -0
- /package/dist/{components → cjs/components}/Toolbar/typesUtils.d.ts +0 -0
- /package/dist/{components → cjs/components}/index.d.ts +0 -0
- /package/dist/{constants.d.ts → cjs/constants.d.ts} +0 -0
- /package/dist/{helperComponents → cjs/helperComponents}/DeleteAction/DeleteAction.d.ts +0 -0
- /package/dist/{helperComponents → cjs/helperComponents}/DeleteAction/constants.d.ts +0 -0
- /package/dist/{helperComponents → cjs/helperComponents}/DeleteAction/index.d.ts +0 -0
- /package/dist/{helperComponents → cjs/helperComponents}/DeleteAction/styles.module.css +0 -0
- /package/dist/{helperComponents → cjs/helperComponents}/DeleteAction/types.d.ts +0 -0
- /package/dist/{helperComponents → cjs/helperComponents}/MoreActions/MoreActions.d.ts +0 -0
- /package/dist/{helperComponents → cjs/helperComponents}/MoreActions/constants.d.ts +0 -0
- /package/dist/{helperComponents → cjs/helperComponents}/MoreActions/index.d.ts +0 -0
- /package/dist/{helperComponents → cjs/helperComponents}/Separator/Separator.d.ts +0 -0
- /package/dist/{helperComponents → cjs/helperComponents}/Separator/index.d.ts +0 -0
- /package/dist/{helperComponents → cjs/helperComponents}/Separator/styles.module.css +0 -0
- /package/dist/{helperComponents → cjs/helperComponents}/index.d.ts +0 -0
- /package/dist/{index.d.ts → cjs/index.d.ts} +0 -0
- /package/dist/{components → esm/components}/Toolbar/Toolbar.js +0 -0
- /package/dist/{components → esm/components}/Toolbar/helpers.js +0 -0
- /package/dist/{components/Toolbar/index.js → esm/components/Toolbar/index.d.ts} +0 -0
- /package/dist/{components → esm/components/Toolbar}/index.js +0 -0
- /package/dist/{components → esm/components}/Toolbar/types.js +0 -0
- /package/dist/{components → esm/components}/Toolbar/typesUtils.js +0 -0
- /package/dist/{constants.js → esm/constants.js} +0 -0
- /package/dist/{helperComponents → esm/helperComponents}/DeleteAction/DeleteAction.js +0 -0
- /package/dist/{helperComponents → esm/helperComponents}/DeleteAction/constants.js +0 -0
- /package/dist/{helperComponents/DeleteAction/index.js → esm/helperComponents/DeleteAction/index.d.ts} +0 -0
- /package/dist/{helperComponents → esm/helperComponents}/DeleteAction/types.js +0 -0
- /package/dist/{helperComponents → esm/helperComponents}/MoreActions/MoreActions.js +0 -0
- /package/dist/{helperComponents → esm/helperComponents}/MoreActions/constants.js +0 -0
- /package/dist/{helperComponents/MoreActions/index.js → esm/helperComponents/MoreActions/index.d.ts} +0 -0
- /package/dist/{helperComponents → esm/helperComponents}/Separator/Separator.js +0 -0
- /package/dist/{helperComponents/Separator/index.js → esm/helperComponents/Separator/index.d.ts} +0 -0
- /package/dist/{helperComponents/index.js → esm/helperComponents/index.d.ts} +0 -0
- /package/dist/{index.js → esm/index.d.ts} +0 -0
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __rest = void 0 && (void 0).__rest || function (s, e) {
|
|
4
|
+
var t = {};
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
|
6
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
var __importDefault = void 0 && (void 0).__importDefault || function (mod) {
|
|
12
|
+
return mod && mod.__esModule ? mod : {
|
|
13
|
+
"default": mod
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", {
|
|
17
|
+
value: true
|
|
18
|
+
});
|
|
19
|
+
exports.Toolbar = Toolbar;
|
|
20
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
21
|
+
const classnames_1 = __importDefault(require("classnames"));
|
|
22
|
+
const button_1 = require("@snack-uikit/button");
|
|
23
|
+
const icons_1 = require("@snack-uikit/icons");
|
|
24
|
+
const search_private_1 = require("@snack-uikit/search-private");
|
|
25
|
+
const utils_1 = require("@snack-uikit/utils");
|
|
26
|
+
const constants_1 = require("../../constants");
|
|
27
|
+
const helperComponents_1 = require("../../helperComponents");
|
|
28
|
+
const helpers_1 = require("./helpers");
|
|
29
|
+
const styles_module_scss_1 = __importDefault(require('./styles.module.css'));
|
|
30
|
+
function Toolbar(_a) {
|
|
31
|
+
var {
|
|
32
|
+
className,
|
|
33
|
+
before,
|
|
34
|
+
after,
|
|
35
|
+
outline,
|
|
36
|
+
moreActions,
|
|
37
|
+
onRefresh,
|
|
38
|
+
search
|
|
39
|
+
} = _a,
|
|
40
|
+
rest = __rest(_a, ["className", "before", "after", "outline", "moreActions", "onRefresh", "search"]);
|
|
41
|
+
const needsDeleteAction = (0, helpers_1.isDeleteActionProps)(rest);
|
|
42
|
+
const hasLeftSideElements = Boolean(needsDeleteAction || before || onRefresh);
|
|
43
|
+
return (0, jsx_runtime_1.jsxs)("div", Object.assign({
|
|
44
|
+
className: (0, classnames_1.default)(styles_module_scss_1.default.container, className)
|
|
45
|
+
}, (0, utils_1.extractSupportProps)(rest), {
|
|
46
|
+
"data-outline": outline || undefined,
|
|
47
|
+
children: [hasLeftSideElements && (0, jsx_runtime_1.jsxs)("div", {
|
|
48
|
+
className: styles_module_scss_1.default.flexRow,
|
|
49
|
+
children: [needsDeleteAction && (0, jsx_runtime_1.jsx)(helperComponents_1.DeleteAction, Object.assign({}, (0, helpers_1.extractDeleteActionProps)(rest))), before && (0, jsx_runtime_1.jsx)("div", {
|
|
50
|
+
"data-test-id": constants_1.TEST_IDS.before,
|
|
51
|
+
className: styles_module_scss_1.default.actions,
|
|
52
|
+
children: before
|
|
53
|
+
}), (needsDeleteAction || before) && (0, jsx_runtime_1.jsx)(helperComponents_1.Separator, {}), onRefresh && (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, {
|
|
54
|
+
children: [(0, jsx_runtime_1.jsx)(button_1.ButtonFunction, {
|
|
55
|
+
icon: (0, jsx_runtime_1.jsx)(icons_1.UpdateSVG, {}),
|
|
56
|
+
size: 'm',
|
|
57
|
+
className: styles_module_scss_1.default.updateButton,
|
|
58
|
+
onClick: onRefresh,
|
|
59
|
+
"data-test-id": constants_1.TEST_IDS.refreshButton
|
|
60
|
+
}), (0, jsx_runtime_1.jsx)(helperComponents_1.Separator, {})]
|
|
61
|
+
})]
|
|
62
|
+
}), search && (0, jsx_runtime_1.jsx)(search_private_1.SearchPrivate, Object.assign({}, search, {
|
|
63
|
+
className: styles_module_scss_1.default.search,
|
|
64
|
+
size: 'm',
|
|
65
|
+
"data-test-id": constants_1.TEST_IDS.search
|
|
66
|
+
})), (moreActions || after) && (0, jsx_runtime_1.jsxs)("div", {
|
|
67
|
+
className: styles_module_scss_1.default.flexRow,
|
|
68
|
+
"data-align-right": !search && !hasLeftSideElements || undefined,
|
|
69
|
+
children: [after && (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, {
|
|
70
|
+
children: [(search || hasLeftSideElements) && (0, jsx_runtime_1.jsx)(helperComponents_1.Separator, {}), (0, jsx_runtime_1.jsx)("div", {
|
|
71
|
+
"data-test-id": constants_1.TEST_IDS.after,
|
|
72
|
+
className: styles_module_scss_1.default.actions,
|
|
73
|
+
children: after
|
|
74
|
+
})]
|
|
75
|
+
}), moreActions && (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, {
|
|
76
|
+
children: [(0, jsx_runtime_1.jsx)(helperComponents_1.Separator, {}), (0, jsx_runtime_1.jsx)(helperComponents_1.MoreActions, {
|
|
77
|
+
moreActions: moreActions
|
|
78
|
+
})]
|
|
79
|
+
})]
|
|
80
|
+
})]
|
|
81
|
+
}));
|
|
82
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.extractDeleteActionProps = extractDeleteActionProps;
|
|
7
|
+
exports.isDeleteActionProps = isDeleteActionProps;
|
|
8
|
+
function extractDeleteActionProps(_ref) {
|
|
9
|
+
let {
|
|
10
|
+
onCheck,
|
|
11
|
+
checked,
|
|
12
|
+
indeterminate,
|
|
13
|
+
onDelete,
|
|
14
|
+
selectionMode
|
|
15
|
+
} = _ref;
|
|
16
|
+
return {
|
|
17
|
+
onCheck,
|
|
18
|
+
checked,
|
|
19
|
+
indeterminate,
|
|
20
|
+
onDelete,
|
|
21
|
+
selectionMode
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
function isDeleteActionProps(props) {
|
|
25
|
+
return 'onDelete' in props && props.onDelete !== undefined || 'checked' in props && props.checked !== undefined && 'onCheck' in props && props.onCheck !== undefined && 'selectionMode' in props && props.selectionMode === 'multiple';
|
|
26
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __createBinding = void 0 && (void 0).__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k;
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function () {
|
|
10
|
+
return m[k];
|
|
11
|
+
}
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
Object.defineProperty(o, k2, desc);
|
|
15
|
+
} : function (o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
o[k2] = m[k];
|
|
18
|
+
});
|
|
19
|
+
var __exportStar = void 0 && (void 0).__exportStar || function (m, exports) {
|
|
20
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
21
|
+
};
|
|
22
|
+
Object.defineProperty(exports, "__esModule", {
|
|
23
|
+
value: true
|
|
24
|
+
});
|
|
25
|
+
__exportStar(require("./Toolbar"), exports);
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __createBinding = void 0 && (void 0).__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k;
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function () {
|
|
10
|
+
return m[k];
|
|
11
|
+
}
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
Object.defineProperty(o, k2, desc);
|
|
15
|
+
} : function (o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
o[k2] = m[k];
|
|
18
|
+
});
|
|
19
|
+
var __exportStar = void 0 && (void 0).__exportStar || function (m, exports) {
|
|
20
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
21
|
+
};
|
|
22
|
+
Object.defineProperty(exports, "__esModule", {
|
|
23
|
+
value: true
|
|
24
|
+
});
|
|
25
|
+
__exportStar(require("./Toolbar"), exports);
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.TEST_IDS = void 0;
|
|
7
|
+
exports.TEST_IDS = {
|
|
8
|
+
main: 'toolbar',
|
|
9
|
+
checkbox: 'toolbar__checkbox',
|
|
10
|
+
deleteButton: 'toolbar__delete-button',
|
|
11
|
+
refreshButton: 'toolbar__refresh-button',
|
|
12
|
+
search: 'toolbar__search',
|
|
13
|
+
moreActionsButton: 'toolbar__more-actions-button',
|
|
14
|
+
droplist: 'toolbar__droplist',
|
|
15
|
+
option: 'toolbar__droplist-option',
|
|
16
|
+
before: 'toolbar__before',
|
|
17
|
+
after: 'toolbar__after'
|
|
18
|
+
};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __importDefault = void 0 && (void 0).__importDefault || function (mod) {
|
|
4
|
+
return mod && mod.__esModule ? mod : {
|
|
5
|
+
"default": mod
|
|
6
|
+
};
|
|
7
|
+
};
|
|
8
|
+
Object.defineProperty(exports, "__esModule", {
|
|
9
|
+
value: true
|
|
10
|
+
});
|
|
11
|
+
exports.DeleteAction = DeleteAction;
|
|
12
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
13
|
+
const react_1 = require("react");
|
|
14
|
+
const button_1 = require("@snack-uikit/button");
|
|
15
|
+
const icons_1 = require("@snack-uikit/icons");
|
|
16
|
+
const toggles_1 = require("@snack-uikit/toggles");
|
|
17
|
+
const constants_1 = require("../../constants");
|
|
18
|
+
const constants_2 = require("./constants");
|
|
19
|
+
const styles_module_scss_1 = __importDefault(require('./styles.module.css'));
|
|
20
|
+
function DeleteAction(_ref) {
|
|
21
|
+
let {
|
|
22
|
+
checked,
|
|
23
|
+
onCheck,
|
|
24
|
+
onDelete,
|
|
25
|
+
indeterminate,
|
|
26
|
+
selectionMode = constants_2.SELECTION_MODE.Multiple
|
|
27
|
+
} = _ref;
|
|
28
|
+
const handleKeyDown = (0, react_1.useCallback)(e => {
|
|
29
|
+
if (e.key === ' ') {
|
|
30
|
+
onCheck === null || onCheck === void 0 ? void 0 : onCheck();
|
|
31
|
+
}
|
|
32
|
+
}, [onCheck]);
|
|
33
|
+
return (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, {
|
|
34
|
+
children: [selectionMode === constants_2.SELECTION_MODE.Multiple && (0, jsx_runtime_1.jsx)("div", {
|
|
35
|
+
className: styles_module_scss_1.default.checkboxWrapper,
|
|
36
|
+
onClick: onCheck,
|
|
37
|
+
tabIndex: 0,
|
|
38
|
+
role: 'checkbox',
|
|
39
|
+
"aria-checked": checked,
|
|
40
|
+
onKeyDown: handleKeyDown,
|
|
41
|
+
"data-test-id": constants_1.TEST_IDS.checkbox,
|
|
42
|
+
children: (0, jsx_runtime_1.jsx)(toggles_1.Checkbox, {
|
|
43
|
+
size: 's',
|
|
44
|
+
checked: checked,
|
|
45
|
+
indeterminate: indeterminate,
|
|
46
|
+
tabIndex: -1
|
|
47
|
+
})
|
|
48
|
+
}), onDelete && (0, jsx_runtime_1.jsx)(button_1.ButtonFunction, {
|
|
49
|
+
"data-test-id": constants_1.TEST_IDS.deleteButton,
|
|
50
|
+
icon: (0, jsx_runtime_1.jsx)(icons_1.TrashSVG, {}),
|
|
51
|
+
size: 'm',
|
|
52
|
+
onClick: onDelete,
|
|
53
|
+
disabled: !checked && !indeterminate
|
|
54
|
+
})]
|
|
55
|
+
});
|
|
56
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __createBinding = void 0 && (void 0).__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k;
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function () {
|
|
10
|
+
return m[k];
|
|
11
|
+
}
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
Object.defineProperty(o, k2, desc);
|
|
15
|
+
} : function (o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
o[k2] = m[k];
|
|
18
|
+
});
|
|
19
|
+
var __exportStar = void 0 && (void 0).__exportStar || function (m, exports) {
|
|
20
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
21
|
+
};
|
|
22
|
+
Object.defineProperty(exports, "__esModule", {
|
|
23
|
+
value: true
|
|
24
|
+
});
|
|
25
|
+
__exportStar(require("./DeleteAction"), exports);
|
|
26
|
+
__exportStar(require("./constants"), exports);
|
|
27
|
+
__exportStar(require("./types"), exports);
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.MoreActions = MoreActions;
|
|
7
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
8
|
+
const react_1 = require("react");
|
|
9
|
+
const button_1 = require("@snack-uikit/button");
|
|
10
|
+
const icons_1 = require("@snack-uikit/icons");
|
|
11
|
+
const list_1 = require("@snack-uikit/list");
|
|
12
|
+
const tag_1 = require("@snack-uikit/tag");
|
|
13
|
+
const constants_1 = require("../../constants");
|
|
14
|
+
function MoreActions(_ref) {
|
|
15
|
+
let {
|
|
16
|
+
moreActions
|
|
17
|
+
} = _ref;
|
|
18
|
+
const [isOpen, setIsOpen] = (0, react_1.useState)(false);
|
|
19
|
+
return (0, jsx_runtime_1.jsx)(list_1.Droplist, {
|
|
20
|
+
trigger: 'clickAndFocusVisible',
|
|
21
|
+
open: isOpen,
|
|
22
|
+
"data-test-id": constants_1.TEST_IDS.droplist,
|
|
23
|
+
onOpenChange: setIsOpen,
|
|
24
|
+
placement: 'bottom-end',
|
|
25
|
+
scroll: true,
|
|
26
|
+
size: 's',
|
|
27
|
+
items: moreActions.map(item => ({
|
|
28
|
+
onClick: e => {
|
|
29
|
+
var _a;
|
|
30
|
+
(_a = item.onClick) === null || _a === void 0 ? void 0 : _a.call(item, e);
|
|
31
|
+
setIsOpen(false);
|
|
32
|
+
e.stopPropagation();
|
|
33
|
+
},
|
|
34
|
+
disabled: item.disabled,
|
|
35
|
+
content: item.content,
|
|
36
|
+
beforeContent: item.icon,
|
|
37
|
+
afterContent: item.tagLabel ? (0, jsx_runtime_1.jsx)(tag_1.Tag, {
|
|
38
|
+
label: item.tagLabel
|
|
39
|
+
}) : undefined,
|
|
40
|
+
'data-test-id': constants_1.TEST_IDS.option
|
|
41
|
+
})),
|
|
42
|
+
children: (0, jsx_runtime_1.jsx)(button_1.ButtonFunction, {
|
|
43
|
+
icon: (0, jsx_runtime_1.jsx)(icons_1.KebabSVG, {
|
|
44
|
+
size: 24
|
|
45
|
+
}),
|
|
46
|
+
size: 'm',
|
|
47
|
+
"data-test-id": constants_1.TEST_IDS.moreActionsButton
|
|
48
|
+
})
|
|
49
|
+
});
|
|
50
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.TRIGGER_CLOSE_DROPLIST_KEY_CODES = exports.TRIGGER_OPEN_DROPLIST_KEY_KEYS = void 0;
|
|
7
|
+
exports.TRIGGER_OPEN_DROPLIST_KEY_KEYS = [' ',
|
|
8
|
+
// <- Space key
|
|
9
|
+
'ArrowDown'];
|
|
10
|
+
exports.TRIGGER_CLOSE_DROPLIST_KEY_CODES = ['Escape', 'Tab'];
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __createBinding = void 0 && (void 0).__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k;
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function () {
|
|
10
|
+
return m[k];
|
|
11
|
+
}
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
Object.defineProperty(o, k2, desc);
|
|
15
|
+
} : function (o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
o[k2] = m[k];
|
|
18
|
+
});
|
|
19
|
+
var __exportStar = void 0 && (void 0).__exportStar || function (m, exports) {
|
|
20
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
21
|
+
};
|
|
22
|
+
Object.defineProperty(exports, "__esModule", {
|
|
23
|
+
value: true
|
|
24
|
+
});
|
|
25
|
+
__exportStar(require("./MoreActions"), exports);
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __importDefault = void 0 && (void 0).__importDefault || function (mod) {
|
|
4
|
+
return mod && mod.__esModule ? mod : {
|
|
5
|
+
"default": mod
|
|
6
|
+
};
|
|
7
|
+
};
|
|
8
|
+
Object.defineProperty(exports, "__esModule", {
|
|
9
|
+
value: true
|
|
10
|
+
});
|
|
11
|
+
exports.Separator = Separator;
|
|
12
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
13
|
+
const styles_module_scss_1 = __importDefault(require('./styles.module.css'));
|
|
14
|
+
function Separator() {
|
|
15
|
+
return (0, jsx_runtime_1.jsx)("span", {
|
|
16
|
+
className: styles_module_scss_1.default.separator
|
|
17
|
+
});
|
|
18
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __createBinding = void 0 && (void 0).__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k;
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function () {
|
|
10
|
+
return m[k];
|
|
11
|
+
}
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
Object.defineProperty(o, k2, desc);
|
|
15
|
+
} : function (o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
o[k2] = m[k];
|
|
18
|
+
});
|
|
19
|
+
var __exportStar = void 0 && (void 0).__exportStar || function (m, exports) {
|
|
20
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
21
|
+
};
|
|
22
|
+
Object.defineProperty(exports, "__esModule", {
|
|
23
|
+
value: true
|
|
24
|
+
});
|
|
25
|
+
__exportStar(require("./Separator"), exports);
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __createBinding = void 0 && (void 0).__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k;
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function () {
|
|
10
|
+
return m[k];
|
|
11
|
+
}
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
Object.defineProperty(o, k2, desc);
|
|
15
|
+
} : function (o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
o[k2] = m[k];
|
|
18
|
+
});
|
|
19
|
+
var __exportStar = void 0 && (void 0).__exportStar || function (m, exports) {
|
|
20
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
21
|
+
};
|
|
22
|
+
Object.defineProperty(exports, "__esModule", {
|
|
23
|
+
value: true
|
|
24
|
+
});
|
|
25
|
+
__exportStar(require("./DeleteAction"), exports);
|
|
26
|
+
__exportStar(require("./Separator"), exports);
|
|
27
|
+
__exportStar(require("./MoreActions"), exports);
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var __createBinding = void 0 && (void 0).__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k;
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function () {
|
|
10
|
+
return m[k];
|
|
11
|
+
}
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
Object.defineProperty(o, k2, desc);
|
|
15
|
+
} : function (o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
o[k2] = m[k];
|
|
18
|
+
});
|
|
19
|
+
var __exportStar = void 0 && (void 0).__exportStar || function (m, exports) {
|
|
20
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
21
|
+
};
|
|
22
|
+
Object.defineProperty(exports, "__esModule", {
|
|
23
|
+
value: true
|
|
24
|
+
});
|
|
25
|
+
__exportStar(require("./components"), exports);
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { WithSupportProps } from '@snack-uikit/utils';
|
|
2
|
+
import { CheckedToolbarProps, DefaultToolbarProps } from './types';
|
|
3
|
+
export type ToolbarProps = WithSupportProps<DefaultToolbarProps | CheckedToolbarProps>;
|
|
4
|
+
export declare function Toolbar({ className, before, after, outline, moreActions, onRefresh, search, ...rest }: ToolbarProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ToolbarProps } from './Toolbar';
|
|
2
|
+
import { CheckedToolbarProps } from './types';
|
|
3
|
+
export declare function extractDeleteActionProps({ onCheck, checked, indeterminate, onDelete, selectionMode, }: Omit<CheckedToolbarProps, 'onRefresh'>): {
|
|
4
|
+
onCheck: (() => void) | undefined;
|
|
5
|
+
checked: boolean | undefined;
|
|
6
|
+
indeterminate: boolean | undefined;
|
|
7
|
+
onDelete: (() => void) | undefined;
|
|
8
|
+
selectionMode: import("../../helperComponents").SelectionMode | undefined;
|
|
9
|
+
};
|
|
10
|
+
export declare function isDeleteActionProps(props: Partial<ToolbarProps>): props is CheckedToolbarProps;
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
.toolbar{
|
|
2
|
+
box-sizing:border-box;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.container{
|
|
6
|
+
border-radius:var(--radius-toolbar-container, 14px);
|
|
7
|
+
position:relative;
|
|
8
|
+
display:flex;
|
|
9
|
+
justify-content:space-between;
|
|
10
|
+
box-sizing:border-box;
|
|
11
|
+
background-color:var(--sys-neutral-background1-level, #fdfdfd);
|
|
12
|
+
}
|
|
13
|
+
.container[data-outline]::before{
|
|
14
|
+
border-radius:var(--radius-toolbar-container, 14px);
|
|
15
|
+
border-width:var(--border-width-toolbar-outline, 1px);
|
|
16
|
+
pointer-events:none;
|
|
17
|
+
content:"";
|
|
18
|
+
position:absolute;
|
|
19
|
+
top:0;
|
|
20
|
+
left:0;
|
|
21
|
+
box-sizing:border-box;
|
|
22
|
+
width:100%;
|
|
23
|
+
height:100%;
|
|
24
|
+
border-color:var(--sys-neutral-decor-default, #dde0ea);
|
|
25
|
+
border-style:solid;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.search{
|
|
29
|
+
height:var(--size-toolbar-checkbox, 40px);
|
|
30
|
+
padding-left:var(--space-toolbar-search-horizontal-padding, 8px);
|
|
31
|
+
padding-right:var(--space-toolbar-search-horizontal-padding, 8px);
|
|
32
|
+
border-radius:var(--radius-toolbar-search, 14px);
|
|
33
|
+
}
|
|
34
|
+
.search:focus-within{
|
|
35
|
+
outline-width:var(--border-state-focus-s-border-width, 2px);
|
|
36
|
+
outline-style:var(--border-state-focus-s-border-style, solid);
|
|
37
|
+
outline-color:var(--border-state-focus-s-border-color, );
|
|
38
|
+
position:relative;
|
|
39
|
+
outline-color:var(--sys-available-complementary, #1c1c24);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.updateButton svg{
|
|
43
|
+
transform:rotate(360deg);
|
|
44
|
+
transition:transform 0.5s;
|
|
45
|
+
}
|
|
46
|
+
.updateButton:active svg{
|
|
47
|
+
transform:rotate(0deg);
|
|
48
|
+
transition-duration:0s;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.flexRow{
|
|
52
|
+
display:flex;
|
|
53
|
+
flex-shrink:0;
|
|
54
|
+
box-sizing:border-box;
|
|
55
|
+
}
|
|
56
|
+
.flexRow[data-align-right]{
|
|
57
|
+
margin-left:auto;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.actions{
|
|
61
|
+
flex-shrink:0;
|
|
62
|
+
box-sizing:border-box;
|
|
63
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { DeleteActionProps, MoreActionsProps } from '../../helperComponents';
|
|
3
|
+
import { NeverOrUndefined, RequireAtLeastOne } from './typesUtils';
|
|
4
|
+
type OptionalProps = {
|
|
5
|
+
/** Колбек обновления */
|
|
6
|
+
onRefresh?(): void;
|
|
7
|
+
/** Дополнительный слот в начале Тулбара */
|
|
8
|
+
before?: ReactNode;
|
|
9
|
+
/** Дополнительный слот в конце тулбара */
|
|
10
|
+
after?: ReactNode;
|
|
11
|
+
/** Элементы выпадающего списка кнопки с действиями */
|
|
12
|
+
moreActions?: MoreActionsProps['moreActions'];
|
|
13
|
+
};
|
|
14
|
+
export type CommonToolbarProps = {
|
|
15
|
+
/** Параметры отвечают за строку поиска <br>
|
|
16
|
+
* <strong>value</strong>: Значение строки поиска <br>
|
|
17
|
+
* <strong>onChange</strong>: Колбэк смены значения <br>
|
|
18
|
+
* <strong>onSubmit</strong>: Колбэк на подтверждение поиска по строке
|
|
19
|
+
* <strong>placeholder</strong>: Плейсхолдер <br>
|
|
20
|
+
* <strong>loading</strong>: Состояние загрузки <br>
|
|
21
|
+
* */
|
|
22
|
+
search?: {
|
|
23
|
+
value: string;
|
|
24
|
+
onChange(value: string): void;
|
|
25
|
+
onSubmit?(value: string): void;
|
|
26
|
+
placeholder?: string;
|
|
27
|
+
loading?: boolean;
|
|
28
|
+
};
|
|
29
|
+
/** Класснейм */
|
|
30
|
+
className?: string;
|
|
31
|
+
/** Внешний бордер */
|
|
32
|
+
outline?: boolean;
|
|
33
|
+
};
|
|
34
|
+
export type CheckedToolbarProps = CommonToolbarProps & DeleteActionProps & OptionalProps;
|
|
35
|
+
export type DefaultToolbarProps = CommonToolbarProps & NeverOrUndefined<DeleteActionProps> & RequireAtLeastOne<OptionalProps>;
|
|
36
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export type IsEqual<A, B> = (<G>() => G extends A ? 1 : 2) extends <G>() => G extends B ? 1 : 2 ? true : false;
|
|
2
|
+
type Filter<KeyType, ExcludeType> = IsEqual<KeyType, ExcludeType> extends true ? never : KeyType extends ExcludeType ? never : KeyType;
|
|
3
|
+
type Except<ObjectType, KeysType extends keyof ObjectType> = {
|
|
4
|
+
[KeyType in keyof ObjectType as Filter<KeyType, KeysType>]: ObjectType[KeyType];
|
|
5
|
+
};
|
|
6
|
+
export type RequireAtLeastOne<ObjectType, KeysType extends keyof ObjectType = keyof ObjectType> = {
|
|
7
|
+
[Key in KeysType]-?: Required<Pick<ObjectType, Key>> & Partial<Pick<ObjectType, Exclude<KeysType, Key>>>;
|
|
8
|
+
}[KeysType] & Except<ObjectType, KeysType>;
|
|
9
|
+
export type NeverOrUndefined<T> = {
|
|
10
|
+
[P in keyof T]?: never;
|
|
11
|
+
};
|
|
12
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Toolbar';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Toolbar';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { SelectionMode } from './types';
|
|
2
|
+
export type DeleteActionProps = {
|
|
3
|
+
/** Колбек смены значения чекбокса*/
|
|
4
|
+
onCheck?(): void;
|
|
5
|
+
/** Колбек удаления */
|
|
6
|
+
onDelete?(): void;
|
|
7
|
+
/** Значения чекбокса*/
|
|
8
|
+
checked?: boolean;
|
|
9
|
+
/** Состояние частичного выбора */
|
|
10
|
+
indeterminate?: boolean;
|
|
11
|
+
/** Режим выбора @default 'multiple'*/
|
|
12
|
+
selectionMode?: SelectionMode;
|
|
13
|
+
};
|
|
14
|
+
export declare function DeleteAction({ checked, onCheck, onDelete, indeterminate, selectionMode, }: DeleteActionProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
.checkboxWrapper{
|
|
2
|
+
border-radius:var(--radius-toolbar-checkbox, 14px);
|
|
3
|
+
width:var(--size-toolbar-checkbox, 40px);
|
|
4
|
+
height:var(--size-toolbar-checkbox, 40px);
|
|
5
|
+
cursor:pointer;
|
|
6
|
+
position:relative;
|
|
7
|
+
display:flex;
|
|
8
|
+
flex-shrink:0;
|
|
9
|
+
align-items:center;
|
|
10
|
+
justify-content:center;
|
|
11
|
+
box-sizing:border-box;
|
|
12
|
+
}
|
|
13
|
+
.checkboxWrapper:focus-visible{
|
|
14
|
+
outline-width:var(--border-state-focus-s-border-width, 2px);
|
|
15
|
+
outline-style:var(--border-state-focus-s-border-style, solid);
|
|
16
|
+
outline-color:var(--border-state-focus-s-border-color, );
|
|
17
|
+
outline-color:var(--sys-available-complementary, #1c1c24);
|
|
18
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { BaseItemProps } from '@snack-uikit/list';
|
|
3
|
+
type Action = {
|
|
4
|
+
tagLabel?: string;
|
|
5
|
+
icon?: ReactNode;
|
|
6
|
+
} & Pick<BaseItemProps, 'content' | 'disabled' | 'onClick'>;
|
|
7
|
+
export type MoreActionsProps = {
|
|
8
|
+
moreActions: Action[];
|
|
9
|
+
};
|
|
10
|
+
export declare function MoreActions({ moreActions }: MoreActionsProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './MoreActions';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function Separator(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Separator';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components';
|
package/package.json
CHANGED
|
@@ -4,15 +4,16 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"title": "Toolbar",
|
|
7
|
-
"version": "0.7.
|
|
7
|
+
"version": "0.7.64-preview-71543426.0",
|
|
8
8
|
"sideEffects": [
|
|
9
9
|
"*.css",
|
|
10
10
|
"*.woff",
|
|
11
11
|
"*.woff2"
|
|
12
12
|
],
|
|
13
13
|
"description": "Toolbar",
|
|
14
|
-
"
|
|
15
|
-
"
|
|
14
|
+
"types": "./dist/esm/index.d.ts",
|
|
15
|
+
"main": "./dist/cjs/index.js",
|
|
16
|
+
"module": "./dist/esm/index.js",
|
|
16
17
|
"homepage": "https://github.com/cloud-ru-tech/snack-uikit/tree/master/packages/toolbar",
|
|
17
18
|
"repository": {
|
|
18
19
|
"type": "git",
|
|
@@ -24,7 +25,8 @@
|
|
|
24
25
|
"Nikita Ershov <niershov@cloud.ru>"
|
|
25
26
|
],
|
|
26
27
|
"files": [
|
|
27
|
-
"dist",
|
|
28
|
+
"dist/cjs",
|
|
29
|
+
"dist/esm",
|
|
28
30
|
"src",
|
|
29
31
|
"./CHANGELOG.md",
|
|
30
32
|
"./LICENSE"
|
|
@@ -32,14 +34,14 @@
|
|
|
32
34
|
"license": "Apache-2.0",
|
|
33
35
|
"scripts": {},
|
|
34
36
|
"dependencies": {
|
|
35
|
-
"@snack-uikit/button": "0.17.
|
|
36
|
-
"@snack-uikit/icons": "0.22.
|
|
37
|
-
"@snack-uikit/list": "0.18.0",
|
|
38
|
-
"@snack-uikit/search-private": "0.2.
|
|
39
|
-
"@snack-uikit/tag": "0.9.
|
|
40
|
-
"@snack-uikit/toggles": "0.10.
|
|
41
|
-
"@snack-uikit/utils": "3.4.0",
|
|
37
|
+
"@snack-uikit/button": "0.17.6-preview-71543426.0",
|
|
38
|
+
"@snack-uikit/icons": "0.22.2-preview-71543426.0",
|
|
39
|
+
"@snack-uikit/list": "0.18.1-preview-71543426.0",
|
|
40
|
+
"@snack-uikit/search-private": "0.2.6-preview-71543426.0",
|
|
41
|
+
"@snack-uikit/tag": "0.9.12-preview-71543426.0",
|
|
42
|
+
"@snack-uikit/toggles": "0.10.5-preview-71543426.0",
|
|
43
|
+
"@snack-uikit/utils": "3.4.1-preview-71543426.0",
|
|
42
44
|
"classnames": "2.3.2"
|
|
43
45
|
},
|
|
44
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "3102614275e261c8f41db0f6c00a1f6b6276b2a9"
|
|
45
47
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/{helperComponents/MoreActions/index.js → esm/helperComponents/MoreActions/index.d.ts}
RENAMED
|
File without changes
|
|
File without changes
|
/package/dist/{helperComponents/Separator/index.js → esm/helperComponents/Separator/index.d.ts}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|