@astral/features 4.0.0 → 4.1.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/README.md +1 -1
- package/node/productSwitcher/components/AstralProductSwitcher/stories/{Example.story.d.ts → BasicUsage.story.d.ts} +1 -1
- package/node/productSwitcher/components/AstralProductSwitcher/stories/{Example.story.js → BasicUsage.story.js} +3 -3
- package/{productSwitcher/components/AstralProductSwitcher/stories/Example.story.d.ts → node/productSwitcher/components/IdentityProductSwitcher/stories/BasicUsage.story.d.ts} +1 -1
- package/node/productSwitcher/components/IdentityProductSwitcher/stories/{Example.story.js → BasicUsage.story.js} +3 -3
- package/package.json +2 -2
- package/{node/productSwitcher/components/IdentityProductSwitcher/stories/Example.story.d.ts → productSwitcher/components/AstralProductSwitcher/stories/BasicUsage.story.d.ts} +1 -1
- package/productSwitcher/components/AstralProductSwitcher/stories/{Example.story.js → BasicUsage.story.js} +1 -1
- package/productSwitcher/components/IdentityProductSwitcher/stories/{Example.story.d.ts → BasicUsage.story.d.ts} +1 -1
- package/productSwitcher/components/IdentityProductSwitcher/stories/{Example.story.js → BasicUsage.story.js} +1 -1
package/README.md
CHANGED
|
@@ -64,7 +64,7 @@ screen
|
|
|
64
64
|
|
|
65
65
|
import { autoSaveIndicatorInstance } from "@example/shared"
|
|
66
66
|
|
|
67
|
-
export const
|
|
67
|
+
export const BasicUsageScreen = observer(() => {
|
|
68
68
|
const [autoSaveIndicatorStore] = useState(autoSaveIndicatorStoreInstance);
|
|
69
69
|
|
|
70
70
|
useInitAutoSaveIndicatorStore(autoSaveIndicatorStore);
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.BasicUsage = void 0;
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const AstralProductSwitcher_1 = require("../AstralProductSwitcher");
|
|
6
6
|
const common_1 = require("./common");
|
|
7
7
|
const meta = {};
|
|
8
8
|
exports.default = meta;
|
|
9
|
-
const
|
|
10
|
-
exports.
|
|
9
|
+
const BasicUsage = () => ((0, jsx_runtime_1.jsx)(AstralProductSwitcher_1.AstralProductSwitcher, { identityUrl: common_1.IDENTITY_URL }));
|
|
10
|
+
exports.BasicUsage = BasicUsage;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.BasicUsage = void 0;
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const IdentityProductSwitcher_1 = require("../IdentityProductSwitcher");
|
|
6
6
|
const meta = {};
|
|
7
7
|
exports.default = meta;
|
|
8
|
-
const
|
|
9
|
-
exports.
|
|
8
|
+
const BasicUsage = () => (0, jsx_runtime_1.jsx)(IdentityProductSwitcher_1.IdentityProductSwitcher, { identityUrl: "" });
|
|
9
|
+
exports.BasicUsage = BasicUsage;
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astral/features",
|
|
3
3
|
"main": "./node/index.js",
|
|
4
|
-
"version": "4.
|
|
4
|
+
"version": "4.1.0",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@astral/ui": "4.
|
|
6
|
+
"@astral/ui": "4.1.0",
|
|
7
7
|
"mobx": "^6.8.0",
|
|
8
8
|
"mobx-react-lite": "^3.4.0",
|
|
9
9
|
"@astral/cryptopro-cades": "^1.5.1"
|
|
@@ -3,4 +3,4 @@ import { AstralProductSwitcher } from '../AstralProductSwitcher';
|
|
|
3
3
|
import { IDENTITY_URL } from './common';
|
|
4
4
|
const meta = {};
|
|
5
5
|
export default meta;
|
|
6
|
-
export const
|
|
6
|
+
export const BasicUsage = () => (_jsx(AstralProductSwitcher, { identityUrl: IDENTITY_URL }));
|
|
@@ -2,4 +2,4 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
|
2
2
|
import { IdentityProductSwitcher } from '../IdentityProductSwitcher';
|
|
3
3
|
const meta = {};
|
|
4
4
|
export default meta;
|
|
5
|
-
export const
|
|
5
|
+
export const BasicUsage = () => _jsx(IdentityProductSwitcher, { identityUrl: "" });
|