@cloud-ru/uikit-product-page-layout 0.21.4 → 0.21.6
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/CHANGELOG.md +22 -0
- package/dist/cjs/components/DefaultSubHeader/DefaultSubHeader.d.ts +2 -2
- package/dist/cjs/components/DefaultSubHeader/DefaultSubHeader.js +2 -2
- package/dist/cjs/components/Headline/Headline.d.ts +1 -1
- package/dist/cjs/components/Headline/Headline.js +1 -1
- package/dist/cjs/components/PageCatalog/PageCatalog.d.ts +1 -1
- package/dist/cjs/components/PageCatalog/PageCatalog.js +1 -1
- package/dist/cjs/components/PageForm/PageForm.d.ts +1 -1
- package/dist/cjs/components/PageForm/PageForm.js +1 -1
- package/dist/cjs/components/PageForm/hooks.js +1 -1
- package/dist/cjs/components/PageLoading/PageLoading.d.ts +1 -1
- package/dist/cjs/components/PageLoading/PageLoading.js +1 -1
- package/dist/cjs/components/PageServices/PageServices.d.ts +1 -1
- package/dist/cjs/components/PageSidebar/PageSidebar.js +1 -1
- package/dist/cjs/components/PageSidebar/helperComponents/SidebarSearch/SidebarSearch.js +1 -1
- package/dist/cjs/components/PageSidebar/helperComponents/SidebarSearchToggle/SidebarSearchToggle.js +2 -2
- package/dist/cjs/components/PageSidebar/hooks/useItemsCreator.js +2 -2
- package/dist/esm/components/DefaultSubHeader/DefaultSubHeader.d.ts +2 -2
- package/dist/esm/components/DefaultSubHeader/DefaultSubHeader.js +2 -2
- package/dist/esm/components/Headline/Headline.d.ts +1 -1
- package/dist/esm/components/Headline/Headline.js +1 -1
- package/dist/esm/components/PageCatalog/PageCatalog.d.ts +1 -1
- package/dist/esm/components/PageCatalog/PageCatalog.js +1 -1
- package/dist/esm/components/PageForm/PageForm.d.ts +1 -1
- package/dist/esm/components/PageForm/PageForm.js +1 -1
- package/dist/esm/components/PageForm/hooks.js +1 -1
- package/dist/esm/components/PageLoading/PageLoading.d.ts +1 -1
- package/dist/esm/components/PageLoading/PageLoading.js +1 -1
- package/dist/esm/components/PageServices/PageServices.d.ts +1 -1
- package/dist/esm/components/PageSidebar/PageSidebar.js +1 -1
- package/dist/esm/components/PageSidebar/helperComponents/SidebarSearch/SidebarSearch.js +1 -1
- package/dist/esm/components/PageSidebar/helperComponents/SidebarSearchToggle/SidebarSearchToggle.js +2 -2
- package/dist/esm/components/PageSidebar/hooks/useItemsCreator.js +2 -2
- package/package.json +5 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
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.21.6 (2025-11-13)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **PD-3377:** removed contributors ([121640f](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/121640f7b88b20a728a6ad2c39de8841532bb308))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## 0.21.5 (2025-11-13)
|
|
18
|
+
|
|
19
|
+
### Only dependencies have been changed
|
|
20
|
+
* [@cloud-ru/uikit-product-copy-line@0.7.65](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/copy-line/CHANGELOG.md)
|
|
21
|
+
* [@cloud-ru/uikit-product-icons@15.1.3](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/icons/CHANGELOG.md)
|
|
22
|
+
* [@cloud-ru/uikit-product-utils@7.0.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/utils/CHANGELOG.md)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
## 0.21.4 (2025-11-12)
|
|
7
29
|
|
|
8
30
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
|
-
import { CopyLineProps } from '@
|
|
3
|
-
import { WithSupportProps } from '@
|
|
2
|
+
import { CopyLineProps } from '@cloud-ru/uikit-product-copy-line';
|
|
3
|
+
import { WithSupportProps } from '@cloud-ru/uikit-product-utils';
|
|
4
4
|
export type DefaultSubHeaderProps = WithSupportProps<{
|
|
5
5
|
label: string;
|
|
6
6
|
value: CopyLineProps;
|
|
@@ -16,8 +16,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
exports.DefaultSubHeader = DefaultSubHeader;
|
|
18
18
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
19
|
-
const uikit_product_copy_line_1 = require("@
|
|
20
|
-
const uikit_product_utils_1 = require("@
|
|
19
|
+
const uikit_product_copy_line_1 = require("@cloud-ru/uikit-product-copy-line");
|
|
20
|
+
const uikit_product_utils_1 = require("@cloud-ru/uikit-product-utils");
|
|
21
21
|
const tooltip_1 = require("@snack-uikit/tooltip");
|
|
22
22
|
const styles_module_scss_1 = __importDefault(require('./styles.module.css'));
|
|
23
23
|
function DefaultSubHeader(_a) {
|
|
@@ -16,7 +16,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
exports.Headline = Headline;
|
|
18
18
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
19
|
-
const uikit_product_utils_1 = require("@
|
|
19
|
+
const uikit_product_utils_1 = require("@cloud-ru/uikit-product-utils");
|
|
20
20
|
const truncate_string_1 = require("@snack-uikit/truncate-string");
|
|
21
21
|
const typography_1 = require("@snack-uikit/typography");
|
|
22
22
|
const styles_module_scss_1 = __importDefault(require('./styles.module.css'));
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PropsWithChildren } from 'react';
|
|
2
|
-
import { WithSupportProps } from '@
|
|
2
|
+
import { WithSupportProps } from '@cloud-ru/uikit-product-utils';
|
|
3
3
|
import { HeadlineProps } from '../Headline';
|
|
4
4
|
export type PageCatalogProps = WithSupportProps<PropsWithChildren<Pick<HeadlineProps, 'title' | 'actions'> & {
|
|
5
5
|
className?: string;
|
|
@@ -17,7 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
exports.PageCatalog = PageCatalog;
|
|
18
18
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
19
19
|
const classnames_1 = __importDefault(require("classnames"));
|
|
20
|
-
const uikit_product_utils_1 = require("@
|
|
20
|
+
const uikit_product_utils_1 = require("@cloud-ru/uikit-product-utils");
|
|
21
21
|
const Headline_1 = require("../Headline");
|
|
22
22
|
const styles_module_scss_1 = __importDefault(require('./styles.module.css'));
|
|
23
23
|
function PageCatalog(_a) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PropsWithChildren, ReactNode } from 'react';
|
|
2
|
-
import { WithSupportProps } from '@
|
|
2
|
+
import { WithSupportProps } from '@cloud-ru/uikit-product-utils';
|
|
3
3
|
import { ButtonFilledProps, ButtonOutlineProps, ButtonSimpleProps } from '@snack-uikit/button';
|
|
4
4
|
import { TooltipProps } from '@snack-uikit/tooltip';
|
|
5
5
|
import { HeadlineProps } from '../Headline';
|
|
@@ -18,7 +18,7 @@ exports.PageForm = PageForm;
|
|
|
18
18
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
19
19
|
const classnames_1 = __importDefault(require("classnames"));
|
|
20
20
|
const react_1 = require("react");
|
|
21
|
-
const uikit_product_utils_1 = require("@
|
|
21
|
+
const uikit_product_utils_1 = require("@cloud-ru/uikit-product-utils");
|
|
22
22
|
const button_1 = require("@snack-uikit/button");
|
|
23
23
|
const Headline_1 = require("../Headline");
|
|
24
24
|
const hooks_1 = require("./hooks");
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.useButtonWithTooltip = useButtonWithTooltip;
|
|
4
4
|
exports.useGetButtonLabel = useGetButtonLabel;
|
|
5
5
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
6
|
-
const uikit_product_locale_1 = require("@
|
|
6
|
+
const uikit_product_locale_1 = require("@cloud-ru/uikit-product-locale");
|
|
7
7
|
const tooltip_1 = require("@snack-uikit/tooltip");
|
|
8
8
|
function useButtonWithTooltip({ Button, tooltip, }) {
|
|
9
9
|
if (tooltip) {
|
|
@@ -17,7 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
exports.PageLoading = PageLoading;
|
|
18
18
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
19
19
|
const classnames_1 = __importDefault(require("classnames"));
|
|
20
|
-
const uikit_product_utils_1 = require("@
|
|
20
|
+
const uikit_product_utils_1 = require("@cloud-ru/uikit-product-utils");
|
|
21
21
|
const loaders_1 = require("@snack-uikit/loaders");
|
|
22
22
|
const styles_module_scss_1 = __importDefault(require('./styles.module.css'));
|
|
23
23
|
function PageLoading(_a) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PropsWithChildren } from 'react';
|
|
2
|
-
import { WithSupportProps } from '@
|
|
2
|
+
import { WithSupportProps } from '@cloud-ru/uikit-product-utils';
|
|
3
3
|
import { HeadlineProps } from '../Headline';
|
|
4
4
|
import { PageSidebarProps } from '../PageSidebar';
|
|
5
5
|
export type PageServicesProps = WithSupportProps<PropsWithChildren<Pick<HeadlineProps, 'title' | 'actions' | 'subHeader' | 'afterHeadline' | 'beforeHeadline' | 'truncateTitle'> & {
|
|
@@ -19,7 +19,7 @@ const jsx_runtime_1 = require("react/jsx-runtime");
|
|
|
19
19
|
const classnames_1 = __importDefault(require("classnames"));
|
|
20
20
|
const react_1 = require("react");
|
|
21
21
|
const uncontrollable_1 = require("uncontrollable");
|
|
22
|
-
const uikit_product_icons_1 = require("@
|
|
22
|
+
const uikit_product_icons_1 = require("@cloud-ru/uikit-product-icons");
|
|
23
23
|
const button_1 = require("@snack-uikit/button");
|
|
24
24
|
const list_1 = require("@snack-uikit/list");
|
|
25
25
|
const utils_1 = require("@snack-uikit/utils");
|
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.SidebarSearch = SidebarSearch;
|
|
7
7
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
8
8
|
const react_1 = require("react");
|
|
9
|
-
const uikit_product_locale_1 = require("@
|
|
9
|
+
const uikit_product_locale_1 = require("@cloud-ru/uikit-product-locale");
|
|
10
10
|
const search_1 = require("@snack-uikit/search");
|
|
11
11
|
const contexts_1 = require("../../contexts");
|
|
12
12
|
const styles_module_scss_1 = __importDefault(require('./styles.module.css'));
|
package/dist/cjs/components/PageSidebar/helperComponents/SidebarSearchToggle/SidebarSearchToggle.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.SidebarSearchToggle = SidebarSearchToggle;
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
const uikit_product_icons_1 = require("@
|
|
6
|
-
const uikit_product_locale_1 = require("@
|
|
5
|
+
const uikit_product_icons_1 = require("@cloud-ru/uikit-product-icons");
|
|
6
|
+
const uikit_product_locale_1 = require("@cloud-ru/uikit-product-locale");
|
|
7
7
|
const button_1 = require("@snack-uikit/button");
|
|
8
8
|
const tooltip_1 = require("@snack-uikit/tooltip");
|
|
9
9
|
const contexts_1 = require("../../contexts");
|
|
@@ -15,8 +15,8 @@ exports.useTopPinnedContent = useTopPinnedContent;
|
|
|
15
15
|
exports.useItemsContent = useItemsContent;
|
|
16
16
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
17
17
|
const react_1 = require("react");
|
|
18
|
-
const uikit_product_icons_1 = require("@
|
|
19
|
-
const uikit_product_locale_1 = require("@
|
|
18
|
+
const uikit_product_icons_1 = require("@cloud-ru/uikit-product-icons");
|
|
19
|
+
const uikit_product_locale_1 = require("@cloud-ru/uikit-product-locale");
|
|
20
20
|
const tooltip_1 = require("@snack-uikit/tooltip");
|
|
21
21
|
const SidebarSearchToggle_1 = require("../helperComponents/SidebarSearchToggle");
|
|
22
22
|
const SidebarTitle_1 = require("../helperComponents/SidebarTitle");
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
|
-
import { CopyLineProps } from '@
|
|
3
|
-
import { WithSupportProps } from '@
|
|
2
|
+
import { CopyLineProps } from '@cloud-ru/uikit-product-copy-line';
|
|
3
|
+
import { WithSupportProps } from '@cloud-ru/uikit-product-utils';
|
|
4
4
|
export type DefaultSubHeaderProps = WithSupportProps<{
|
|
5
5
|
label: string;
|
|
6
6
|
value: CopyLineProps;
|
|
@@ -10,8 +10,8 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
10
10
|
return t;
|
|
11
11
|
};
|
|
12
12
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
|
-
import { CopyLine } from '@
|
|
14
|
-
import { extractSupportProps } from '@
|
|
13
|
+
import { CopyLine } from '@cloud-ru/uikit-product-copy-line';
|
|
14
|
+
import { extractSupportProps } from '@cloud-ru/uikit-product-utils';
|
|
15
15
|
import { QuestionTooltip } from '@snack-uikit/tooltip';
|
|
16
16
|
import styles from './styles.module.css';
|
|
17
17
|
export function DefaultSubHeader(_a) {
|
|
@@ -10,7 +10,7 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
10
10
|
return t;
|
|
11
11
|
};
|
|
12
12
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
|
-
import { extractSupportProps } from '@
|
|
13
|
+
import { extractSupportProps } from '@cloud-ru/uikit-product-utils';
|
|
14
14
|
import { TruncateString } from '@snack-uikit/truncate-string';
|
|
15
15
|
import { Typography } from '@snack-uikit/typography';
|
|
16
16
|
import styles from './styles.module.css';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PropsWithChildren } from 'react';
|
|
2
|
-
import { WithSupportProps } from '@
|
|
2
|
+
import { WithSupportProps } from '@cloud-ru/uikit-product-utils';
|
|
3
3
|
import { HeadlineProps } from '../Headline';
|
|
4
4
|
export type PageCatalogProps = WithSupportProps<PropsWithChildren<Pick<HeadlineProps, 'title' | 'actions'> & {
|
|
5
5
|
className?: string;
|
|
@@ -11,7 +11,7 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
11
11
|
};
|
|
12
12
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
13
|
import cn from 'classnames';
|
|
14
|
-
import { extractSupportProps } from '@
|
|
14
|
+
import { extractSupportProps } from '@cloud-ru/uikit-product-utils';
|
|
15
15
|
import { Headline } from '../Headline';
|
|
16
16
|
import styles from './styles.module.css';
|
|
17
17
|
export function PageCatalog(_a) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PropsWithChildren, ReactNode } from 'react';
|
|
2
|
-
import { WithSupportProps } from '@
|
|
2
|
+
import { WithSupportProps } from '@cloud-ru/uikit-product-utils';
|
|
3
3
|
import { ButtonFilledProps, ButtonOutlineProps, ButtonSimpleProps } from '@snack-uikit/button';
|
|
4
4
|
import { TooltipProps } from '@snack-uikit/tooltip';
|
|
5
5
|
import { HeadlineProps } from '../Headline';
|
|
@@ -12,7 +12,7 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
12
12
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
13
|
import cn from 'classnames';
|
|
14
14
|
import { useMemo } from 'react';
|
|
15
|
-
import { extractSupportProps } from '@
|
|
15
|
+
import { extractSupportProps } from '@cloud-ru/uikit-product-utils';
|
|
16
16
|
import { ButtonFilled, ButtonOutline, ButtonSimple, } from '@snack-uikit/button';
|
|
17
17
|
import { Headline } from '../Headline';
|
|
18
18
|
import { useButtonWithTooltip, useGetButtonLabel } from './hooks';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import { useLocale } from '@
|
|
2
|
+
import { useLocale } from '@cloud-ru/uikit-product-locale';
|
|
3
3
|
import { Tooltip } from '@snack-uikit/tooltip';
|
|
4
4
|
export function useButtonWithTooltip({ Button, tooltip, }) {
|
|
5
5
|
if (tooltip) {
|
|
@@ -11,7 +11,7 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
11
11
|
};
|
|
12
12
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
13
|
import cn from 'classnames';
|
|
14
|
-
import { extractSupportProps } from '@
|
|
14
|
+
import { extractSupportProps } from '@cloud-ru/uikit-product-utils';
|
|
15
15
|
import { Spinner as UISpinner } from '@snack-uikit/loaders';
|
|
16
16
|
import styles from './styles.module.css';
|
|
17
17
|
export function PageLoading(_a) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PropsWithChildren } from 'react';
|
|
2
|
-
import { WithSupportProps } from '@
|
|
2
|
+
import { WithSupportProps } from '@cloud-ru/uikit-product-utils';
|
|
3
3
|
import { HeadlineProps } from '../Headline';
|
|
4
4
|
import { PageSidebarProps } from '../PageSidebar';
|
|
5
5
|
export type PageServicesProps = WithSupportProps<PropsWithChildren<Pick<HeadlineProps, 'title' | 'actions' | 'subHeader' | 'afterHeadline' | 'beforeHeadline' | 'truncateTitle'> & {
|
|
@@ -13,7 +13,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
13
13
|
import cn from 'classnames';
|
|
14
14
|
import { useCallback, useState } from 'react';
|
|
15
15
|
import { useUncontrolledProp } from 'uncontrollable';
|
|
16
|
-
import { VerticalMenuCloseSVG, VerticalMenuOpenSVG } from '@
|
|
16
|
+
import { VerticalMenuCloseSVG, VerticalMenuOpenSVG } from '@cloud-ru/uikit-product-icons';
|
|
17
17
|
import { ButtonElevated } from '@snack-uikit/button';
|
|
18
18
|
import { List } from '@snack-uikit/list';
|
|
19
19
|
import { extractSupportProps } from '@snack-uikit/utils';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { useEffect, useRef } from 'react';
|
|
3
|
-
import { useLocale } from '@
|
|
3
|
+
import { useLocale } from '@cloud-ru/uikit-product-locale';
|
|
4
4
|
import { Search } from '@snack-uikit/search';
|
|
5
5
|
import { useSearchContext } from '../../contexts';
|
|
6
6
|
import styles from './styles.module.css';
|
package/dist/esm/components/PageSidebar/helperComponents/SidebarSearchToggle/SidebarSearchToggle.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import { SearchSVG, VerticalMenuRightCloseSVG } from '@
|
|
3
|
-
import { useLocale } from '@
|
|
2
|
+
import { SearchSVG, VerticalMenuRightCloseSVG } from '@cloud-ru/uikit-product-icons';
|
|
3
|
+
import { useLocale } from '@cloud-ru/uikit-product-locale';
|
|
4
4
|
import { ButtonFunction } from '@snack-uikit/button';
|
|
5
5
|
import { Tooltip } from '@snack-uikit/tooltip';
|
|
6
6
|
import { useSearchContext } from '../../contexts';
|
|
@@ -11,8 +11,8 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
11
11
|
};
|
|
12
12
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
13
|
import { useMemo } from 'react';
|
|
14
|
-
import { ChevronLeftSVG } from '@
|
|
15
|
-
import { useLocale } from '@
|
|
14
|
+
import { ChevronLeftSVG } from '@cloud-ru/uikit-product-icons';
|
|
15
|
+
import { useLocale } from '@cloud-ru/uikit-product-locale';
|
|
16
16
|
import { Tooltip } from '@snack-uikit/tooltip';
|
|
17
17
|
import { SidebarSearchToggle } from '../helperComponents/SidebarSearchToggle';
|
|
18
18
|
import { SidebarTitle } from '../helperComponents/SidebarTitle';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloud-ru/uikit-product-page-layout",
|
|
3
3
|
"title": "Page Layout",
|
|
4
|
-
"version": "0.21.
|
|
4
|
+
"version": "0.21.6",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css",
|
|
7
7
|
"*.woff",
|
|
@@ -30,16 +30,15 @@
|
|
|
30
30
|
"name": "Akhremenko Grigorii",
|
|
31
31
|
"url": "https://github.com/AGrigorii"
|
|
32
32
|
},
|
|
33
|
-
"contributors": [],
|
|
34
33
|
"license": "Apache-2.0",
|
|
35
34
|
"publishConfig": {
|
|
36
35
|
"access": "public"
|
|
37
36
|
},
|
|
38
37
|
"scripts": {},
|
|
39
38
|
"dependencies": {
|
|
40
|
-
"@cloud-ru/uikit-product-copy-line": "0.7.
|
|
41
|
-
"@cloud-ru/uikit-product-icons": "15.1.
|
|
42
|
-
"@cloud-ru/uikit-product-utils": "7.0.
|
|
39
|
+
"@cloud-ru/uikit-product-copy-line": "0.7.66",
|
|
40
|
+
"@cloud-ru/uikit-product-icons": "15.1.4",
|
|
41
|
+
"@cloud-ru/uikit-product-utils": "7.0.3",
|
|
43
42
|
"@snack-uikit/button": "0.19.13",
|
|
44
43
|
"@snack-uikit/icon-predefined": "0.7.3",
|
|
45
44
|
"@snack-uikit/list": "0.26.0",
|
|
@@ -55,5 +54,5 @@
|
|
|
55
54
|
"peerDependencies": {
|
|
56
55
|
"@cloud-ru/uikit-product-locale": "*"
|
|
57
56
|
},
|
|
58
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "ce69097516055b330a0b05da5e29ac5b66e56284"
|
|
59
58
|
}
|