Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
d081194
docs: Correct installation command in readme
reshmarevi17 Apr 3, 2024
656e487
fix: Set initial loading state value to false in example app
reshmarevi17 Apr 4, 2024
a9e3b71
Merge branch 'main' of github.com:KeyValueSoftwareSystems/siren-react…
reshmarevi17 Apr 8, 2024
1e50146
feat: Add minimum bound for page size, group header props, and expose…
reshmarevi17 Apr 8, 2024
8cd55bf
fix: Modal positioning to depend only on the icon's position
reshmarevi17 Apr 8, 2024
7e1e523
feat: Add a new property to hide the delete button and display a skel…
reshmarevi17 Apr 8, 2024
a7afa8c
build: Bump version from 0.0.1 to 1.0.0
bilta-keyvalue Apr 8, 2024
c6520ce
Merge pull request #41 from KeyValueSoftwareSystems/dev
bilta-keyvalue Apr 11, 2024
7bf1fa4
feat: Add animation on notification delete
reshmarevi17 Apr 11, 2024
ef032e7
feat: Add avatar click functionality
reshmarevi17 Apr 11, 2024
cd2458a
fix: Circular dependency warning
reshmarevi17 Apr 22, 2024
f2ddc0e
refactor: performance optimizations
reshmarevi17 Apr 22, 2024
1036cf9
fix: Update customStyle props
reshmarevi17 Apr 22, 2024
3ed521f
feat: Add custom delete icon in card props
reshmarevi17 Apr 22, 2024
c2b9b8d
feat: Add stories for components
reshmarevi17 Apr 22, 2024
2d73cbd
fix: Update modal position calculation by changing from window.outer…
reshmarevi17 Apr 22, 2024
adb9294
feat: Add aria-label property to enhance accessibility for interacti…
reshmarevi17 Apr 22, 2024
d44be17
refactor: Update custom style prop
reshmarevi17 Apr 22, 2024
5e855f4
fix: Style fixes
reshmarevi17 May 2, 2024
0af3aab
refactor: Update prop and function names, and modify the logic for r…
reshmarevi17 May 7, 2024
487152f
fix: Terminate retry verification api trigger if config changes while…
reshmarevi17 May 9, 2024
75650ce
fix: Trigger delete animation after delete API success
reshmarevi17 May 9, 2024
95a7ca0
feat: Add media support in notification card
reshmarevi17 May 9, 2024
edb2340
fix: Adjust modal height in window view to occupy entire screen height
reshmarevi17 May 10, 2024
eba465f
fix: Add unique identifier for PubSub events in SirenProvider
reshmarevi17 May 14, 2024
5d5f585
refactor: Code refactor and optimisation
reshmarevi17 May 15, 2024
56af9b6
feat: Update changelog and SDK version in the example app
reshmarevi17 May 15, 2024
cacbce4
Merge pull request #59 from KeyValueSoftwareSystems/dev
bilta-keyvalue May 15, 2024
5c1078f
fix: Format changelog
reshmarevi17 May 15, 2024
755a53a
Merge pull request #62 from KeyValueSoftwareSystems/dev
bilta-keyvalue May 15, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module.exports = {
browser: true,
es2021: true
},
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:storybook/recommended'],
overrides: [
{
env: {
Expand Down
23 changes: 23 additions & 0 deletions .storybook/main.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import type { StorybookConfig } from "@storybook/react-webpack5";

const config: StorybookConfig = {
stories: ["../stories/**/*.mdx", "../stories/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
addons: [
"@storybook/addon-links",
"@storybook/addon-essentials",
"@storybook/addon-onboarding",
"@storybook/addon-interactions",
],
framework: {
name: "@storybook/react-webpack5",
options: {
builder: {
useSWC: true,
},
},
},
docs: {
autodocs: "tag",
},
};
export default config;
15 changes: 15 additions & 0 deletions .storybook/preview.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import type { Preview } from "@storybook/react";

const preview: Preview = {
parameters: {
actions: { argTypesRegex: "^on[A-Z].*" },
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/i,
},
},
},
};

export default preview;
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,20 @@

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

## [0.0.1] - 2024-03-26
## 1.1.0

### Added

- React UI kit for managing and displaying in-app notification
- Added support for custom delete icon and a flag to toggle the visibility of the delete icon.
- Added functionality to display thumbnail URL previews for media content
- Exposed Avatar click property.
- Implemented specific error code mapping.
- Enhanced style and theme customizations.


## 1.0.0

### Added

- React UI kit for managing and displaying in-app notification

Loading