-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into auth/pm-8221/route-user-to-email-otp-entry-c…
…lients
- Loading branch information
Showing
90 changed files
with
2,634 additions
and
329 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
67 changes: 67 additions & 0 deletions
67
apps/browser/src/autofill/content/components/.lit-storybook/main.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
import { dirname, join } from "path"; | ||
import path from "path"; | ||
import type { StorybookConfig } from "@storybook/web-components-webpack5"; | ||
import TsconfigPathsPlugin from "tsconfig-paths-webpack-plugin"; | ||
import remarkGfm from "remark-gfm"; | ||
|
||
const getAbsolutePath = (value: string): string => | ||
dirname(require.resolve(join(value, "package.json"))); | ||
|
||
const config: StorybookConfig = { | ||
stories: ["../lit-stories/**/*.lit-stories.@(js|jsx|ts|tsx)"], | ||
addons: [ | ||
getAbsolutePath("@storybook/addon-links"), | ||
getAbsolutePath("@storybook/addon-essentials"), | ||
getAbsolutePath("@storybook/addon-a11y"), | ||
getAbsolutePath("@storybook/addon-designs"), | ||
getAbsolutePath("@storybook/addon-interactions"), | ||
{ | ||
name: "@storybook/addon-docs", | ||
options: { | ||
mdxPluginOptions: { | ||
mdxCompileOptions: { | ||
remarkPlugins: [remarkGfm], | ||
}, | ||
}, | ||
}, | ||
}, | ||
], | ||
framework: { | ||
name: getAbsolutePath("@storybook/web-components-webpack5"), | ||
options: { | ||
legacyRootApi: true, | ||
}, | ||
}, | ||
core: { | ||
disableTelemetry: true, | ||
}, | ||
env: (existingConfig) => ({ | ||
...existingConfig, | ||
FLAGS: JSON.stringify({}), | ||
}), | ||
webpackFinal: async (config) => { | ||
if (config.resolve) { | ||
config.resolve.plugins = [ | ||
new TsconfigPathsPlugin({ | ||
configFile: path.resolve(__dirname, "../../../../../tsconfig.json"), | ||
}), | ||
] as any; | ||
} | ||
|
||
if (config.module && config.module.rules) { | ||
config.module.rules.push({ | ||
test: /\.(ts|tsx)$/, | ||
exclude: /node_modules/, | ||
use: [ | ||
{ | ||
loader: require.resolve("ts-loader"), | ||
}, | ||
], | ||
}); | ||
} | ||
return config; | ||
}, | ||
docs: {}, | ||
}; | ||
|
||
export default config; |
34 changes: 34 additions & 0 deletions
34
.../browser/src/autofill/content/components/lit-stories/buttons/action-button.lit-stories.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import { Meta, StoryObj } from "@storybook/web-components"; | ||
|
||
import { Theme, ThemeTypes } from "@bitwarden/common/platform/enums/theme-type.enum"; | ||
|
||
import { ActionButton } from "../../buttons/action-button"; | ||
|
||
type Args = { | ||
buttonText: string; | ||
disabled: boolean; | ||
theme: Theme; | ||
buttonAction: (e: Event) => void; | ||
}; | ||
|
||
export default { | ||
title: "Components/Buttons/Action Button", | ||
argTypes: { | ||
buttonText: { control: "text" }, | ||
disabled: { control: "boolean" }, | ||
theme: { control: "select", options: [...Object.values(ThemeTypes)] }, | ||
buttonAction: { control: false }, | ||
}, | ||
args: { | ||
buttonText: "Click Me", | ||
disabled: false, | ||
theme: ThemeTypes.Light, | ||
buttonAction: () => alert("Clicked"), | ||
}, | ||
} as Meta<Args>; | ||
|
||
const Template = (args: Args) => ActionButton({ ...args }); | ||
|
||
export const Default: StoryObj<Args> = { | ||
render: Template, | ||
}; |
34 changes: 34 additions & 0 deletions
34
apps/browser/src/autofill/content/components/lit-stories/buttons/badge-button.lit-stories.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import { Meta, StoryObj } from "@storybook/web-components"; | ||
|
||
import { Theme, ThemeTypes } from "@bitwarden/common/platform/enums/theme-type.enum"; | ||
|
||
import { BadgeButton } from "../../buttons/badge-button"; | ||
|
||
type Args = { | ||
buttonAction: (e: Event) => void; | ||
buttonText: string; | ||
disabled?: boolean; | ||
theme: Theme; | ||
}; | ||
|
||
export default { | ||
title: "Components/Buttons/Badge Button", | ||
argTypes: { | ||
buttonText: { control: "text" }, | ||
disabled: { control: "boolean" }, | ||
theme: { control: "select", options: [...Object.values(ThemeTypes)] }, | ||
buttonAction: { control: false }, | ||
}, | ||
args: { | ||
buttonText: "Click Me", | ||
disabled: false, | ||
theme: ThemeTypes.Light, | ||
buttonAction: () => alert("Clicked"), | ||
}, | ||
} as Meta<Args>; | ||
|
||
const Template = (args: Args) => BadgeButton({ ...args }); | ||
|
||
export const Default: StoryObj<Args> = { | ||
render: Template, | ||
}; |
29 changes: 29 additions & 0 deletions
29
apps/browser/src/autofill/content/components/lit-stories/buttons/close-button.lit-stories.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { Meta, StoryObj } from "@storybook/web-components"; | ||
|
||
import { Theme, ThemeTypes } from "@bitwarden/common/platform/enums/theme-type.enum"; | ||
|
||
import { CloseButton } from "../../buttons/close-button"; | ||
|
||
type Args = { | ||
handleCloseNotification: (e: Event) => void; | ||
theme: Theme; | ||
}; | ||
export default { | ||
title: "Components/Buttons/Close Button", | ||
argTypes: { | ||
theme: { control: "select", options: [...Object.values(ThemeTypes)] }, | ||
handleCloseNotification: { control: false }, | ||
}, | ||
args: { | ||
theme: ThemeTypes.Light, | ||
handleCloseNotification: () => { | ||
alert("Close button clicked!"); | ||
}, | ||
}, | ||
} as Meta<Args>; | ||
|
||
const Template = (args: Args) => CloseButton({ ...args }); | ||
|
||
export const Default: StoryObj<Args> = { | ||
render: Template, | ||
}; |
33 changes: 33 additions & 0 deletions
33
apps/browser/src/autofill/content/components/lit-stories/buttons/edit-button.lit-stories.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { Meta, StoryObj } from "@storybook/web-components"; | ||
|
||
import { Theme, ThemeTypes } from "@bitwarden/common/platform/enums/theme-type.enum"; | ||
|
||
import { EditButton } from "../../buttons/edit-button"; | ||
|
||
type Args = { | ||
buttonAction: (e: Event) => void; | ||
buttonText: string; | ||
disabled?: boolean; | ||
theme: Theme; | ||
}; | ||
export default { | ||
title: "Components/Buttons/Edit Button", | ||
argTypes: { | ||
buttonText: { control: "text" }, | ||
disabled: { control: "boolean" }, | ||
theme: { control: "select", options: [...Object.values(ThemeTypes)] }, | ||
buttonAction: { control: false }, | ||
}, | ||
args: { | ||
buttonText: "Click Me", | ||
disabled: false, | ||
theme: ThemeTypes.Light, | ||
buttonAction: () => alert("Clicked"), | ||
}, | ||
} as Meta<Args>; | ||
|
||
const Template = (args: Args) => EditButton({ ...args }); | ||
|
||
export const Default: StoryObj<Args> = { | ||
render: Template, | ||
}; |
36 changes: 36 additions & 0 deletions
36
.../browser/src/autofill/content/components/lit-stories/ciphers/cipher-action.lit-stories.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import { Meta, StoryObj } from "@storybook/web-components"; | ||
|
||
import { Theme, ThemeTypes } from "@bitwarden/common/platform/enums/theme-type.enum"; | ||
|
||
import { NotificationTypes } from "../../../../notification/abstractions/notification-bar"; | ||
import { CipherAction } from "../../cipher/cipher-action"; | ||
|
||
type Args = { | ||
handleAction?: (e: Event) => void; | ||
notificationType: typeof NotificationTypes.Change | typeof NotificationTypes.Add; | ||
theme: Theme; | ||
}; | ||
export default { | ||
title: "Components/Ciphers/Cipher Action", | ||
argTypes: { | ||
theme: { control: "select", options: [...Object.values(ThemeTypes)] }, | ||
notificationType: { | ||
control: "select", | ||
options: [NotificationTypes.Change, NotificationTypes.Add], | ||
}, | ||
handleAction: { control: false }, | ||
}, | ||
args: { | ||
theme: ThemeTypes.Light, | ||
notificationType: NotificationTypes.Change, | ||
handleAction: () => { | ||
alert("Action triggered!"); | ||
}, | ||
}, | ||
} as Meta<Args>; | ||
|
||
const Template = (args: Args) => CipherAction({ ...args }); | ||
|
||
export const Default: StoryObj<Args> = { | ||
render: Template, | ||
}; |
40 changes: 40 additions & 0 deletions
40
apps/browser/src/autofill/content/components/lit-stories/ciphers/cipher-icon.lit-stories.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import { Meta, StoryObj } from "@storybook/web-components"; | ||
import { html } from "lit"; | ||
|
||
import { Theme, ThemeTypes } from "@bitwarden/common/platform/enums/theme-type.enum"; | ||
|
||
import { CipherIcon } from "../../cipher/cipher-icon"; | ||
|
||
type Args = { | ||
color: string; | ||
size: string; | ||
theme: Theme; | ||
uri?: string; | ||
}; | ||
|
||
export default { | ||
title: "Components/Ciphers/Cipher Icon", | ||
argTypes: { | ||
color: { control: "color" }, | ||
size: { control: "text" }, | ||
theme: { control: "select", options: [...Object.values(ThemeTypes)] }, | ||
uri: { control: "text" }, | ||
}, | ||
args: { | ||
size: "50px", | ||
theme: ThemeTypes.Light, | ||
uri: "", | ||
}, | ||
} as Meta<Args>; | ||
|
||
const Template = (args: Args) => { | ||
return html` | ||
<div style="width: ${args.size}; height: ${args.size}; overflow: hidden;"> | ||
${CipherIcon({ ...args })} | ||
</div> | ||
`; | ||
}; | ||
|
||
export const Default: StoryObj<Args> = { | ||
render: Template, | ||
}; |
Oops, something went wrong.