Skip to content

Commit 2bf172b

Browse files
[Version 1.1.0] Merge pull request #60 from KeyValueSoftwareSystems/staging
2 parents 9fa3178 + 755a53a commit 2bf172b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+17300
-6898
lines changed

.eslintrc.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module.exports = {
33
browser: true,
44
es2021: true
55
},
6-
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
6+
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:storybook/recommended'],
77
overrides: [
88
{
99
env: {

.storybook/main.ts

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import type { StorybookConfig } from "@storybook/react-webpack5";
2+
3+
const config: StorybookConfig = {
4+
stories: ["../stories/**/*.mdx", "../stories/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
5+
addons: [
6+
"@storybook/addon-links",
7+
"@storybook/addon-essentials",
8+
"@storybook/addon-onboarding",
9+
"@storybook/addon-interactions",
10+
],
11+
framework: {
12+
name: "@storybook/react-webpack5",
13+
options: {
14+
builder: {
15+
useSWC: true,
16+
},
17+
},
18+
},
19+
docs: {
20+
autodocs: "tag",
21+
},
22+
};
23+
export default config;

.storybook/preview.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import type { Preview } from "@storybook/react";
2+
3+
const preview: Preview = {
4+
parameters: {
5+
actions: { argTypesRegex: "^on[A-Z].*" },
6+
controls: {
7+
matchers: {
8+
color: /(background|color)$/i,
9+
date: /Date$/i,
10+
},
11+
},
12+
},
13+
};
14+
15+
export default preview;

CHANGELOG.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,20 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [0.0.1] - 2024-03-26
5+
## 1.1.0
66

77
### Added
88

9-
- React UI kit for managing and displaying in-app notification
9+
- Added support for custom delete icon and a flag to toggle the visibility of the delete icon.
10+
- Added functionality to display thumbnail URL previews for media content
11+
- Exposed Avatar click property.
12+
- Implemented specific error code mapping.
13+
- Enhanced style and theme customizations.
14+
15+
16+
## 1.0.0
17+
18+
### Added
19+
20+
- React UI kit for managing and displaying in-app notification
21+

0 commit comments

Comments
 (0)