@cloud-ru/uikit-product-site-navbar 0.2.11 → 0.2.12

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.
Files changed (30) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/cjs/components/SiteNavbar.d.ts +10 -0
  3. package/dist/cjs/components/SiteNavbar.js +28 -0
  4. package/dist/cjs/components/index.d.ts +1 -0
  5. package/dist/cjs/components/index.js +17 -0
  6. package/dist/cjs/components/styles.module.css +14 -0
  7. package/dist/cjs/helperComponents/NavbarItem/NavbarItem.d.ts +13 -0
  8. package/dist/cjs/helperComponents/NavbarItem/NavbarItem.js +23 -0
  9. package/dist/cjs/helperComponents/NavbarItem/index.d.ts +1 -0
  10. package/dist/cjs/helperComponents/NavbarItem/index.js +17 -0
  11. package/dist/cjs/helperComponents/NavbarItem/styles.module.css +79 -0
  12. package/dist/cjs/helperComponents/index.d.ts +1 -0
  13. package/dist/cjs/helperComponents/index.js +17 -0
  14. package/dist/cjs/index.d.ts +1 -0
  15. package/dist/cjs/index.js +17 -0
  16. package/dist/esm/components/SiteNavbar.d.ts +10 -0
  17. package/dist/esm/components/SiteNavbar.js +22 -0
  18. package/dist/esm/components/index.d.ts +1 -0
  19. package/dist/esm/components/index.js +1 -0
  20. package/dist/esm/components/styles.module.css +14 -0
  21. package/dist/esm/helperComponents/NavbarItem/NavbarItem.d.ts +13 -0
  22. package/dist/esm/helperComponents/NavbarItem/NavbarItem.js +17 -0
  23. package/dist/esm/helperComponents/NavbarItem/index.d.ts +1 -0
  24. package/dist/esm/helperComponents/NavbarItem/index.js +1 -0
  25. package/dist/esm/helperComponents/NavbarItem/styles.module.css +79 -0
  26. package/dist/esm/helperComponents/index.d.ts +1 -0
  27. package/dist/esm/helperComponents/index.js +1 -0
  28. package/dist/esm/index.d.ts +1 -0
  29. package/dist/esm/index.js +1 -0
  30. package/package.json +4 -3
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 0.2.12 (2025-11-12)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **PD-3377:** contributors update to publish all packages ([719fd3e](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/719fd3e1249e247443b125c47ea408d92c8395c3))
12
+
13
+
14
+
15
+
16
+
6
17
  ## 0.2.11 (2025-11-12)
7
18
 
8
19
  ### Only dependencies have been changed
@@ -0,0 +1,10 @@
1
+ import { WithSupportProps } from '@sbercloud/uikit-product-utils';
2
+ import { NavbarItemProps } from '../helperComponents';
3
+ export type SiteNavbarProps = WithSupportProps<{
4
+ items: NavbarItemProps[];
5
+ onItemClick(id: string, text: string): void;
6
+ active?: string;
7
+ className?: string;
8
+ topPosition?: number;
9
+ }>;
10
+ export declare function SiteNavbar({ items, className, onItemClick, active, topPosition, ...rest }: SiteNavbarProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ var __rest = (this && this.__rest) || function (s, e) {
3
+ var t = {};
4
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
5
+ t[p] = s[p];
6
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
7
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
8
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
9
+ t[p[i]] = s[p[i]];
10
+ }
11
+ return t;
12
+ };
13
+ var __importDefault = (this && this.__importDefault) || function (mod) {
14
+ return (mod && mod.__esModule) ? mod : { "default": mod };
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.SiteNavbar = SiteNavbar;
18
+ const jsx_runtime_1 = require("react/jsx-runtime");
19
+ const classnames_1 = __importDefault(require("classnames"));
20
+ const react_indiana_drag_scroll_1 = __importDefault(require("react-indiana-drag-scroll"));
21
+ const uikit_product_utils_1 = require("@sbercloud/uikit-product-utils");
22
+ const divider_1 = require("@snack-uikit/divider");
23
+ const helperComponents_1 = require("../helperComponents");
24
+ const styles_module_scss_1 = __importDefault(require('./styles.module.css'));
25
+ function SiteNavbar(_a) {
26
+ var { items, className, onItemClick, active, topPosition } = _a, rest = __rest(_a, ["items", "className", "onItemClick", "active", "topPosition"]);
27
+ return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: (0, classnames_1.default)(styles_module_scss_1.default.navbar, className), style: topPosition ? { top: `${topPosition}px` } : undefined }, (0, uikit_product_utils_1.extractSupportProps)(rest), { children: [(0, jsx_runtime_1.jsx)(divider_1.Divider, {}), (0, jsx_runtime_1.jsx)(react_indiana_drag_scroll_1.default, { className: styles_module_scss_1.default.navbarItemsWrapper, children: items.map(item => ((0, jsx_runtime_1.jsx)(helperComponents_1.NavbarItem, Object.assign({}, item, { active: active === item.id, onClick: onItemClick }), item.id))) })] })));
28
+ }
@@ -0,0 +1 @@
1
+ export * from './SiteNavbar';
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./SiteNavbar"), exports);
@@ -0,0 +1,14 @@
1
+ .navbar{
2
+ display:flex;
3
+ flex-direction:column;
4
+ justify-content:center;
5
+ }
6
+
7
+ .navbarItemsWrapper{
8
+ display:flex;
9
+ flex-direction:row;
10
+ overflow-x:scroll;
11
+ overflow-y:visible;
12
+ max-width:100%;
13
+ scrollbar-width:none;
14
+ }
@@ -0,0 +1,13 @@
1
+ import { ReactElement } from 'react';
2
+ export type NavbarItemProps = {
3
+ id: string;
4
+ text: string;
5
+ icon?: ReactElement;
6
+ disabled?: boolean;
7
+ };
8
+ type Props = NavbarItemProps & {
9
+ active?: boolean;
10
+ onClick(id: string, text: string): void;
11
+ };
12
+ export declare function NavbarItem({ id, text, icon, onClick, active, disabled }: Props): import("react/jsx-runtime").JSX.Element;
13
+ export {};
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.NavbarItem = NavbarItem;
7
+ const jsx_runtime_1 = require("react/jsx-runtime");
8
+ const react_1 = require("react");
9
+ const typography_1 = require("@snack-uikit/typography");
10
+ const styles_module_scss_1 = __importDefault(require('./styles.module.css'));
11
+ const KEYS = ['Space', 'Enter'];
12
+ function NavbarItem({ id, text, icon, onClick, active = false, disabled = false }) {
13
+ const handleClick = (0, react_1.useCallback)(() => {
14
+ onClick(id, text);
15
+ }, [id, onClick, text]);
16
+ const handleKeyDown = (0, react_1.useCallback)((e) => {
17
+ if (KEYS.includes(e.code)) {
18
+ e.preventDefault();
19
+ handleClick();
20
+ }
21
+ }, [handleClick]);
22
+ return ((0, jsx_runtime_1.jsxs)("div", { className: styles_module_scss_1.default.navbarItem, "data-active": active || undefined, "data-disabled": disabled || undefined, onClick: disabled ? undefined : handleClick, onKeyDown: disabled ? undefined : handleKeyDown, tabIndex: disabled ? undefined : 0, children: [(0, jsx_runtime_1.jsx)("div", { className: styles_module_scss_1.default.background, "data-active": active || undefined, "data-disabled": disabled || undefined }), (0, jsx_runtime_1.jsx)(typography_1.Typography, { family: 'sans', purpose: 'body', size: 'm', tag: 'div', className: styles_module_scss_1.default.text, "data-disabled": disabled || undefined, children: text }), icon && ((0, jsx_runtime_1.jsx)("div", { className: styles_module_scss_1.default.iconWrapper, "data-disabled": disabled || undefined, children: icon }))] }));
23
+ }
@@ -0,0 +1 @@
1
+ export * from './NavbarItem';
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./NavbarItem"), exports);
@@ -0,0 +1,79 @@
1
+ .navbarItem{
2
+ display:flex;
3
+ flex-direction:row;
4
+ align-items:center;
5
+ gap:var(--dimension-1m, 8px);
6
+ padding:8px 10px;
7
+ cursor:pointer;
8
+ position:relative;
9
+ }
10
+ .navbarItem:focus-visible{
11
+ outline-width:var(--border-state-focus-s-border-width, 2px);
12
+ outline-style:var(--border-state-focus-s-border-style, solid);
13
+ outline-color:var(--border-state-focus-s-border-color, );
14
+ outline-color:var(--sys-primary-accent-default, #389f74);
15
+ outline-offset:calc(0px - var(--spacing-state-focus-offset, 2px));
16
+ }
17
+ .navbarItem:focus-visible::after{
18
+ display:none;
19
+ }
20
+ .navbarItem[data-active]:after{
21
+ position:absolute;
22
+ bottom:0;
23
+ left:0;
24
+ right:0;
25
+ pointer-events:none;
26
+ content:"";
27
+ height:var(--border-state-focus-s-border-width, 2px);
28
+ background-color:var(--sys-primary-accent-default, #389f74);
29
+ }
30
+ .navbarItem[data-disabled]{
31
+ cursor:not-allowed;
32
+ background-color:transparent;
33
+ opacity:initial;
34
+ }
35
+ .navbarItem[data-disabled][data-active]:after{
36
+ background-color:var(--sys-neutral-decor-disabled, #e6e8ef);
37
+ }
38
+
39
+ .background{
40
+ position:absolute;
41
+ left:0;
42
+ right:0;
43
+ top:0;
44
+ bottom:0;
45
+ opacity:0.08;
46
+ }
47
+ .background:hover, .background:focus-visible{
48
+ background-color:var(--sys-neutral-accent-default, #787b8a);
49
+ }
50
+ .background[data-active]{
51
+ background-color:var(--sys-primary-accent-default, #389f74);
52
+ }
53
+ .background[data-active]:hover{
54
+ opacity:0.16;
55
+ }
56
+ .background[data-active]:focus-visible{
57
+ opacity:0.16;
58
+ border-bottom:none;
59
+ }
60
+ .background[data-disabled]{
61
+ background-color:transparent;
62
+ }
63
+
64
+ .text{
65
+ white-space:nowrap;
66
+ }
67
+
68
+ .iconWrapper{
69
+ display:flex;
70
+ }
71
+
72
+ .text,
73
+ .iconWrapper{
74
+ color:var(--sys-neutral-text-main, #41424e);
75
+ }
76
+ .text[data-disabled],
77
+ .iconWrapper[data-disabled]{
78
+ color:var(--sys-neutral-text-disabled, #aaaebd);
79
+ }
@@ -0,0 +1 @@
1
+ export * from './NavbarItem';
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./NavbarItem"), exports);
@@ -0,0 +1 @@
1
+ export * from './components';
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./components"), exports);
@@ -0,0 +1,10 @@
1
+ import { WithSupportProps } from '@sbercloud/uikit-product-utils';
2
+ import { NavbarItemProps } from '../helperComponents';
3
+ export type SiteNavbarProps = WithSupportProps<{
4
+ items: NavbarItemProps[];
5
+ onItemClick(id: string, text: string): void;
6
+ active?: string;
7
+ className?: string;
8
+ topPosition?: number;
9
+ }>;
10
+ export declare function SiteNavbar({ items, className, onItemClick, active, topPosition, ...rest }: SiteNavbarProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,22 @@
1
+ var __rest = (this && this.__rest) || function (s, e) {
2
+ var t = {};
3
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4
+ t[p] = s[p];
5
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
6
+ 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]))
8
+ t[p[i]] = s[p[i]];
9
+ }
10
+ return t;
11
+ };
12
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
+ import cn from 'classnames';
14
+ import ScrollContainer from 'react-indiana-drag-scroll';
15
+ import { extractSupportProps } from '@sbercloud/uikit-product-utils';
16
+ import { Divider } from '@snack-uikit/divider';
17
+ import { NavbarItem } from '../helperComponents';
18
+ import styles from './styles.module.css';
19
+ export function SiteNavbar(_a) {
20
+ var { items, className, onItemClick, active, topPosition } = _a, rest = __rest(_a, ["items", "className", "onItemClick", "active", "topPosition"]);
21
+ return (_jsxs("div", Object.assign({ className: cn(styles.navbar, className), style: topPosition ? { top: `${topPosition}px` } : undefined }, extractSupportProps(rest), { children: [_jsx(Divider, {}), _jsx(ScrollContainer, { className: styles.navbarItemsWrapper, children: items.map(item => (_jsx(NavbarItem, Object.assign({}, item, { active: active === item.id, onClick: onItemClick }), item.id))) })] })));
22
+ }
@@ -0,0 +1 @@
1
+ export * from './SiteNavbar';
@@ -0,0 +1 @@
1
+ export * from './SiteNavbar';
@@ -0,0 +1,14 @@
1
+ .navbar{
2
+ display:flex;
3
+ flex-direction:column;
4
+ justify-content:center;
5
+ }
6
+
7
+ .navbarItemsWrapper{
8
+ display:flex;
9
+ flex-direction:row;
10
+ overflow-x:scroll;
11
+ overflow-y:visible;
12
+ max-width:100%;
13
+ scrollbar-width:none;
14
+ }
@@ -0,0 +1,13 @@
1
+ import { ReactElement } from 'react';
2
+ export type NavbarItemProps = {
3
+ id: string;
4
+ text: string;
5
+ icon?: ReactElement;
6
+ disabled?: boolean;
7
+ };
8
+ type Props = NavbarItemProps & {
9
+ active?: boolean;
10
+ onClick(id: string, text: string): void;
11
+ };
12
+ export declare function NavbarItem({ id, text, icon, onClick, active, disabled }: Props): import("react/jsx-runtime").JSX.Element;
13
+ export {};
@@ -0,0 +1,17 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { useCallback } from 'react';
3
+ import { Typography } from '@snack-uikit/typography';
4
+ import styles from './styles.module.css';
5
+ const KEYS = ['Space', 'Enter'];
6
+ export function NavbarItem({ id, text, icon, onClick, active = false, disabled = false }) {
7
+ const handleClick = useCallback(() => {
8
+ onClick(id, text);
9
+ }, [id, onClick, text]);
10
+ const handleKeyDown = useCallback((e) => {
11
+ if (KEYS.includes(e.code)) {
12
+ e.preventDefault();
13
+ handleClick();
14
+ }
15
+ }, [handleClick]);
16
+ return (_jsxs("div", { className: styles.navbarItem, "data-active": active || undefined, "data-disabled": disabled || undefined, onClick: disabled ? undefined : handleClick, onKeyDown: disabled ? undefined : handleKeyDown, tabIndex: disabled ? undefined : 0, children: [_jsx("div", { className: styles.background, "data-active": active || undefined, "data-disabled": disabled || undefined }), _jsx(Typography, { family: 'sans', purpose: 'body', size: 'm', tag: 'div', className: styles.text, "data-disabled": disabled || undefined, children: text }), icon && (_jsx("div", { className: styles.iconWrapper, "data-disabled": disabled || undefined, children: icon }))] }));
17
+ }
@@ -0,0 +1 @@
1
+ export * from './NavbarItem';
@@ -0,0 +1 @@
1
+ export * from './NavbarItem';
@@ -0,0 +1,79 @@
1
+ .navbarItem{
2
+ display:flex;
3
+ flex-direction:row;
4
+ align-items:center;
5
+ gap:var(--dimension-1m, 8px);
6
+ padding:8px 10px;
7
+ cursor:pointer;
8
+ position:relative;
9
+ }
10
+ .navbarItem:focus-visible{
11
+ outline-width:var(--border-state-focus-s-border-width, 2px);
12
+ outline-style:var(--border-state-focus-s-border-style, solid);
13
+ outline-color:var(--border-state-focus-s-border-color, );
14
+ outline-color:var(--sys-primary-accent-default, #389f74);
15
+ outline-offset:calc(0px - var(--spacing-state-focus-offset, 2px));
16
+ }
17
+ .navbarItem:focus-visible::after{
18
+ display:none;
19
+ }
20
+ .navbarItem[data-active]:after{
21
+ position:absolute;
22
+ bottom:0;
23
+ left:0;
24
+ right:0;
25
+ pointer-events:none;
26
+ content:"";
27
+ height:var(--border-state-focus-s-border-width, 2px);
28
+ background-color:var(--sys-primary-accent-default, #389f74);
29
+ }
30
+ .navbarItem[data-disabled]{
31
+ cursor:not-allowed;
32
+ background-color:transparent;
33
+ opacity:initial;
34
+ }
35
+ .navbarItem[data-disabled][data-active]:after{
36
+ background-color:var(--sys-neutral-decor-disabled, #e6e8ef);
37
+ }
38
+
39
+ .background{
40
+ position:absolute;
41
+ left:0;
42
+ right:0;
43
+ top:0;
44
+ bottom:0;
45
+ opacity:0.08;
46
+ }
47
+ .background:hover, .background:focus-visible{
48
+ background-color:var(--sys-neutral-accent-default, #787b8a);
49
+ }
50
+ .background[data-active]{
51
+ background-color:var(--sys-primary-accent-default, #389f74);
52
+ }
53
+ .background[data-active]:hover{
54
+ opacity:0.16;
55
+ }
56
+ .background[data-active]:focus-visible{
57
+ opacity:0.16;
58
+ border-bottom:none;
59
+ }
60
+ .background[data-disabled]{
61
+ background-color:transparent;
62
+ }
63
+
64
+ .text{
65
+ white-space:nowrap;
66
+ }
67
+
68
+ .iconWrapper{
69
+ display:flex;
70
+ }
71
+
72
+ .text,
73
+ .iconWrapper{
74
+ color:var(--sys-neutral-text-main, #41424e);
75
+ }
76
+ .text[data-disabled],
77
+ .iconWrapper[data-disabled]{
78
+ color:var(--sys-neutral-text-disabled, #aaaebd);
79
+ }
@@ -0,0 +1 @@
1
+ export * from './NavbarItem';
@@ -0,0 +1 @@
1
+ export * from './NavbarItem';
@@ -0,0 +1 @@
1
+ export * from './components';
@@ -0,0 +1 @@
1
+ export * from './components';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloud-ru/uikit-product-site-navbar",
3
3
  "title": "Site Navbar",
4
- "version": "0.2.11",
4
+ "version": "0.2.12",
5
5
  "sideEffects": [
6
6
  "*.css",
7
7
  "*.woff",
@@ -30,17 +30,18 @@
30
30
  "name": "Akhremenko Grigorii",
31
31
  "url": "https://github.com/AGrigorii"
32
32
  },
33
+ "contributors": [],
33
34
  "license": "Apache-2.0",
34
35
  "publishConfig": {
35
36
  "access": "public"
36
37
  },
37
38
  "scripts": {},
38
39
  "dependencies": {
39
- "@cloud-ru/uikit-product-utils": "7.0.0",
40
+ "@cloud-ru/uikit-product-utils": "7.0.1",
40
41
  "@snack-uikit/divider": "3.2.3",
41
42
  "@snack-uikit/typography": "0.8.4",
42
43
  "classnames": "2.5.1",
43
44
  "react-indiana-drag-scroll": "2.2.0"
44
45
  },
45
- "gitHead": "e8bd79bc92b26a8f52611972eec98a867536ccd3"
46
+ "gitHead": "9c11b1e33e716c874534a1c162266c8591f2ed03"
46
47
  }