@indico-data/design-system 2.0.1 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,12 +1,16 @@
1
1
  {
2
2
  "name": "@indico-data/design-system",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "main": "lib/index.js",
7
7
  "module": "lib/index.esm.js",
8
8
  "style": "lib/index.css",
9
9
  "types": "lib/index.d.ts",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/IndicoDataSolutions/permafrost.git"
13
+ },
10
14
  "scripts": {
11
15
  "dev": "storybook dev -p 6006",
12
16
  "lint": "yarn eslint src --ext ts,js,tsx,jsx",
@@ -124,6 +128,7 @@
124
128
  "rollup-plugin-scss": "^4.0.0",
125
129
  "sass": "^1.75.0",
126
130
  "sass-loader": "10.1.1",
131
+ "semantic-release": "^23.1.1",
127
132
  "storybook": "^8.0.8",
128
133
  "storybook-css-modules": "^1.0.8",
129
134
  "style-loader": "2.0.0",
@@ -1,6 +0,0 @@
1
- import React from 'react';
2
- export interface SampleButtonProps {
3
- onClick?: () => void;
4
- children: React.ReactNode;
5
- }
6
- export declare const SampleButton: ({ onClick, children }: SampleButtonProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,6 +0,0 @@
1
- import { Meta, StoryObj } from '@storybook/react';
2
- import { SampleButton } from './SampleButton';
3
- declare const meta: Meta<typeof SampleButton>;
4
- export default meta;
5
- type Story = StoryObj<typeof SampleButton>;
6
- export declare const Default: Story;
@@ -1 +0,0 @@
1
- export { SampleButton } from './SampleButton';