@cloud-ru/uikit-product-site-article 0.2.3 → 0.2.4
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 +11 -0
- package/dist/cjs/components/ArticleLinks/ArticleLinks.d.ts +1 -1
- package/dist/cjs/components/ArticleRichText/ArticleRichText.d.ts +1 -1
- package/dist/cjs/components/ArticleTypography/ArticleTypography.d.ts +2 -2
- package/dist/cjs/components/DropdownShare/DropdownShare.js +1 -1
- package/dist/cjs/components/FooterArticle/FooterArticle.d.ts +1 -1
- package/dist/cjs/components/Highlight/Highlight.d.ts +1 -1
- package/dist/cjs/components/Products/Products.d.ts +1 -1
- package/dist/cjs/components/Quote/Quote.d.ts +1 -1
- package/dist/esm/components/ArticleLinks/ArticleLinks.d.ts +1 -1
- package/dist/esm/components/ArticleRichText/ArticleRichText.d.ts +1 -1
- package/dist/esm/components/ArticleTypography/ArticleTypography.d.ts +2 -2
- package/dist/esm/components/DropdownShare/DropdownShare.js +1 -1
- package/dist/esm/components/FooterArticle/FooterArticle.d.ts +1 -1
- package/dist/esm/components/Highlight/Highlight.d.ts +1 -1
- package/dist/esm/components/Products/Products.d.ts +1 -1
- package/dist/esm/components/Quote/Quote.d.ts +1 -1
- package/package.json +2 -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.4 (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
|
+
|
|
6
17
|
## 0.2.3 (2025-11-12)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
|
-
import { WithLayoutType } from '@
|
|
2
|
+
import { WithLayoutType } from '@cloud-ru/uikit-product-utils';
|
|
3
3
|
export type ArticleTypographyProps = WithLayoutType<{
|
|
4
4
|
className?: string;
|
|
5
5
|
tag: 'span' | 'div' | 'p';
|
|
@@ -8,6 +8,6 @@ export type ArticleTypographyProps = WithLayoutType<{
|
|
|
8
8
|
}>;
|
|
9
9
|
export declare function ArticleTypography(props: ArticleTypographyProps): import("react").DetailedReactHTMLElement<{
|
|
10
10
|
className: string;
|
|
11
|
-
'data-layout-type': import("@
|
|
11
|
+
'data-layout-type': import("@cloud-ru/uikit-product-utils").LayoutType;
|
|
12
12
|
'data-type': "body" | "bodyBold" | "bodyLink";
|
|
13
13
|
}, HTMLElement>;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.DropdownShare = DropdownShare;
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
const uikit_product_icons_1 = require("@
|
|
5
|
+
const uikit_product_icons_1 = require("@cloud-ru/uikit-product-icons");
|
|
6
6
|
const button_1 = require("@snack-uikit/button");
|
|
7
7
|
const list_1 = require("@snack-uikit/list");
|
|
8
8
|
const SHARE_OPTIONS_TYPE = {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
|
-
import { WithLayoutType } from '@
|
|
2
|
+
import { WithLayoutType } from '@cloud-ru/uikit-product-utils';
|
|
3
3
|
export type ArticleTypographyProps = WithLayoutType<{
|
|
4
4
|
className?: string;
|
|
5
5
|
tag: 'span' | 'div' | 'p';
|
|
@@ -8,6 +8,6 @@ export type ArticleTypographyProps = WithLayoutType<{
|
|
|
8
8
|
}>;
|
|
9
9
|
export declare function ArticleTypography(props: ArticleTypographyProps): import("react").DetailedReactHTMLElement<{
|
|
10
10
|
className: string;
|
|
11
|
-
'data-layout-type': import("@
|
|
11
|
+
'data-layout-type': import("@cloud-ru/uikit-product-utils").LayoutType;
|
|
12
12
|
'data-type': "body" | "bodyBold" | "bodyLink";
|
|
13
13
|
}, HTMLElement>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import { LinkSVG, ShareSVG, TelegramSVG, VkSVG } from '@
|
|
2
|
+
import { LinkSVG, ShareSVG, TelegramSVG, VkSVG } from '@cloud-ru/uikit-product-icons';
|
|
3
3
|
import { ButtonFunction } from '@snack-uikit/button';
|
|
4
4
|
import { Droplist } from '@snack-uikit/list';
|
|
5
5
|
const SHARE_OPTIONS_TYPE = {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloud-ru/uikit-product-site-article",
|
|
3
3
|
"title": "Site Article",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.4",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css",
|
|
7
7
|
"*.woff",
|
|
@@ -30,7 +30,6 @@
|
|
|
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"
|
|
@@ -45,5 +44,5 @@
|
|
|
45
44
|
"@snack-uikit/utils": "4.0.0",
|
|
46
45
|
"classnames": "2.5.1"
|
|
47
46
|
},
|
|
48
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "ce69097516055b330a0b05da5e29ac5b66e56284"
|
|
49
48
|
}
|