@cloud-ru/uikit-product-welcome-tour 0.10.64 → 0.10.65
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 +12 -0
- package/dist/cjs/components/Hint/Hint.js +1 -1
- package/dist/cjs/components/WelcomeTour/WelcomeTour.js +3 -3
- package/dist/esm/components/Hint/Hint.js +1 -1
- package/dist/esm/components/WelcomeTour/WelcomeTour.js +1 -1
- package/package.json +6 -4
- package/src/components/WelcomeTour/WelcomeTour.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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.10.65 (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
|
+
* **PD-3377:** replaced tokens import to snack-uikit scoped package ([dd13d3b](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/dd13d3b7134a4b0d4696830dcd78c0e790700d09))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
## 0.10.64 (2025-11-13)
|
|
7
19
|
|
|
8
20
|
### Only dependencies have been changed
|
|
@@ -5,7 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.Hint = Hint;
|
|
7
7
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
8
|
-
const uikit_product_icons_1 = require("@
|
|
8
|
+
const uikit_product_icons_1 = require("@cloud-ru/uikit-product-icons");
|
|
9
9
|
const button_1 = require("@snack-uikit/button");
|
|
10
10
|
const typography_1 = require("@snack-uikit/typography");
|
|
11
11
|
const Steps_1 = require("../Steps");
|
|
@@ -27,12 +27,12 @@ exports.WelcomeTour = void 0;
|
|
|
27
27
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
28
28
|
const react_1 = require("react");
|
|
29
29
|
const react_joyride_1 = __importStar(require("react-joyride"));
|
|
30
|
-
const
|
|
30
|
+
const figma_tokens_1 = require("@snack-uikit/figma-tokens");
|
|
31
31
|
const Hint_1 = require("../Hint");
|
|
32
32
|
const customColors = {
|
|
33
33
|
options: {
|
|
34
|
-
arrowColor:
|
|
35
|
-
overlayColor:
|
|
34
|
+
arrowColor: figma_tokens_1.themeVars.sys.neutral.background2Level,
|
|
35
|
+
overlayColor: figma_tokens_1.themeVars.sys.blackout,
|
|
36
36
|
},
|
|
37
37
|
};
|
|
38
38
|
const customArrowSize = {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { CloseInterfaceSVG } from '@
|
|
2
|
+
import { CloseInterfaceSVG } from '@cloud-ru/uikit-product-icons';
|
|
3
3
|
import { ButtonFilled, ButtonSimple } from '@snack-uikit/button';
|
|
4
4
|
import { Typography } from '@snack-uikit/typography';
|
|
5
5
|
import { Steps } from '../Steps';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from 'react';
|
|
3
3
|
import JoyRide, { STATUS } from 'react-joyride';
|
|
4
|
-
import { themeVars } from '@
|
|
4
|
+
import { themeVars } from '@snack-uikit/figma-tokens';
|
|
5
5
|
import { Hint } from '../Hint';
|
|
6
6
|
const customColors = {
|
|
7
7
|
options: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloud-ru/uikit-product-welcome-tour",
|
|
3
3
|
"title": "Welcome Tour",
|
|
4
|
-
"version": "0.10.
|
|
4
|
+
"version": "0.10.65",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css",
|
|
7
7
|
"*.woff",
|
|
@@ -30,18 +30,20 @@
|
|
|
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-icons": "15.1.
|
|
39
|
+
"@cloud-ru/uikit-product-icons": "15.1.4",
|
|
41
40
|
"@snack-uikit/button": "0.19.7",
|
|
42
41
|
"@snack-uikit/pagination": "0.10.2",
|
|
43
42
|
"@snack-uikit/typography": "0.8.4",
|
|
44
43
|
"react-joyride": "2.5.3"
|
|
45
44
|
},
|
|
46
|
-
"
|
|
45
|
+
"peerDependencies": {
|
|
46
|
+
"@snack-uikit/figma-tokens": "*"
|
|
47
|
+
},
|
|
48
|
+
"gitHead": "ce69097516055b330a0b05da5e29ac5b66e56284"
|
|
47
49
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { forwardRef } from 'react';
|
|
2
2
|
import JoyRide, { CallBackProps, STATUS, TooltipRenderProps } from 'react-joyride';
|
|
3
3
|
|
|
4
|
-
import { themeVars } from '@
|
|
4
|
+
import { themeVars } from '@snack-uikit/figma-tokens';
|
|
5
5
|
|
|
6
6
|
import { Hint } from '../Hint';
|
|
7
7
|
import { TourStepExtended } from '../types';
|