mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
replacing deprecated Box component and updating story (#20301)
Co-authored-by: George Marshall <george.marshall@consensys.net> Co-authored-by: Garrett Bear <gwhisten@gmail.com>
This commit is contained in:
parent
7c2f7671b0
commit
63d67f3d2f
@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
|
|||||||
import { getWeightedPermissions } from '../../../../helpers/utils/permission';
|
import { getWeightedPermissions } from '../../../../helpers/utils/permission';
|
||||||
import { useI18nContext } from '../../../../hooks/useI18nContext';
|
import { useI18nContext } from '../../../../hooks/useI18nContext';
|
||||||
import PermissionCell from '../../permission-cell';
|
import PermissionCell from '../../permission-cell';
|
||||||
import Box from '../../../ui/box';
|
import { Box } from '../../../component-library';
|
||||||
|
|
||||||
export default function UpdateSnapPermissionList({
|
export default function UpdateSnapPermissionList({
|
||||||
approvedPermissions,
|
approvedPermissions,
|
||||||
|
@ -2,21 +2,23 @@ import React from 'react';
|
|||||||
import UpdateSnapPermissionList from './update-snap-permission-list';
|
import UpdateSnapPermissionList from './update-snap-permission-list';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
title: 'Components/App/UpdateSnapPermissionList',
|
title: 'Components/App/Snaps/UpdateSnapPermissionList',
|
||||||
component: UpdateSnapPermissionList,
|
component: UpdateSnapPermissionList,
|
||||||
|
|
||||||
argTypes: {
|
argTypes: {
|
||||||
permissions: {
|
approvedPermissions: {
|
||||||
|
control: 'object',
|
||||||
|
},
|
||||||
|
revokedPermissions: {
|
||||||
|
control: 'object',
|
||||||
|
},
|
||||||
|
newPermissions: {
|
||||||
|
control: 'object',
|
||||||
|
},
|
||||||
|
targetSubjectMetadata: {
|
||||||
control: 'object',
|
control: 'object',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
args: {
|
||||||
|
|
||||||
export const DefaultStory = (args) => <UpdateSnapPermissionList {...args} />;
|
|
||||||
|
|
||||||
DefaultStory.storyName = 'Default';
|
|
||||||
|
|
||||||
DefaultStory.args = {
|
|
||||||
approvedPermissions: {
|
approvedPermissions: {
|
||||||
'endowment:network-access': {
|
'endowment:network-access': {
|
||||||
date: 1620710693178,
|
date: 1620710693178,
|
||||||
@ -48,4 +50,17 @@ DefaultStory.args = {
|
|||||||
date: 1620710693178,
|
date: 1620710693178,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
targetSubjectMetadata: {
|
||||||
|
extensionId: null,
|
||||||
|
iconUrl: null,
|
||||||
|
name: 'TypeScript Example Snap',
|
||||||
|
origin: 'local:http://localhost:8080',
|
||||||
|
subjectType: 'snap',
|
||||||
|
version: '0.2.2',
|
||||||
|
},
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const DefaultStory = (args) => <UpdateSnapPermissionList {...args} />;
|
||||||
|
|
||||||
|
DefaultStory.storyName = 'Default';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user