mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
feat(ui): added pagination component
This commit is contained in:
@@ -1,8 +1,22 @@
|
||||
import { themes } from '@storybook/theming';
|
||||
import '../src/styles/globals.css';
|
||||
import { themes } from "@storybook/theming";
|
||||
import "react-day-picker/dist/style.css";
|
||||
import "../src/styles/globals.css";
|
||||
|
||||
export const parameters = {
|
||||
actions: { argTypesRegex: '^on[A-Z].*' },
|
||||
actions: { argTypesRegex: "^on[A-Z].*" },
|
||||
backgrounds: {
|
||||
default: "dark",
|
||||
values: [
|
||||
{
|
||||
name: "dark",
|
||||
value: "rgb(14, 16, 20)"
|
||||
},
|
||||
{
|
||||
name: "paper",
|
||||
value: "rgb(30, 31, 34)"
|
||||
}
|
||||
]
|
||||
},
|
||||
controls: {
|
||||
matchers: {
|
||||
color: /(background|color)$/i,
|
||||
@@ -10,6 +24,6 @@ export const parameters = {
|
||||
}
|
||||
},
|
||||
darkMode: {
|
||||
dark: { ...themes.dark, appContentBg: 'rgb(14,16,20)', appBg: 'rgb(14,16,20)' }
|
||||
dark: { ...themes.dark, appContentBg: "rgb(14,16,20)", appBg: "rgb(14,16,20)" }
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user