@szum-tech/design-system 1.7.0 → 1.7.1
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/{Avatar-e871ff4f.d.ts → Avatar-cea60385.d.ts} +5 -6
- package/{Button-91229b6b.d.ts → Button-b6aa5957.d.ts} +19 -17
- package/{chunk-I6ERYEB3.js → chunk-35PGUWPE.js} +3 -3
- package/{chunk-4AKOYNNP.mjs → chunk-CUMOJXWX.mjs} +2 -2
- package/components/Avatar/index.d.ts +1 -1
- package/components/Avatar/index.js +2 -2
- package/components/Avatar/index.mjs +1 -1
- package/components/Button/index.d.ts +1 -1
- package/components/Button/index.js +2 -2
- package/components/Button/index.mjs +1 -1
- package/components/index.d.ts +2 -2
- package/components/index.js +5 -5
- package/components/index.mjs +3 -3
- package/index.d.ts +2 -2
- package/index.js +5 -5
- package/index.mjs +3 -3
- package/package.json +33 -28
- /package/{chunk-JNEX4BMN.js → chunk-5AJUIVQP.js} +0 -0
- /package/{chunk-LYGO5UGG.mjs → chunk-LMETIM25.mjs} +0 -0
- /package/{chunk-PIY4JWBH.js → chunk-M6LWZWJB.js} +0 -0
- /package/{chunk-AWV2FK6N.mjs → chunk-MM2WP564.mjs} +0 -0
|
@@ -18,20 +18,19 @@ type AvatarProps = React.ComponentPropsWithoutRef<"div"> & {
|
|
|
18
18
|
* Defines background color
|
|
19
19
|
*/
|
|
20
20
|
bg?: `bg-${string}` | `bg-${string}-${number}`;
|
|
21
|
+
/**
|
|
22
|
+
* Defines avatar children
|
|
23
|
+
*/
|
|
24
|
+
children?: React.ReactNode;
|
|
21
25
|
/**
|
|
22
26
|
* Defines avatar size
|
|
23
|
-
* @default 'md'
|
|
24
27
|
*/
|
|
25
28
|
size?: AvatarSizeType;
|
|
26
29
|
/**
|
|
27
30
|
* Defines avatar image src
|
|
28
31
|
*/
|
|
29
32
|
src?: string;
|
|
30
|
-
/**
|
|
31
|
-
* Defines avatar children
|
|
32
|
-
*/
|
|
33
|
-
children?: React.ReactNode;
|
|
34
33
|
};
|
|
35
34
|
declare function Avatar({ alt, bg, children, size, src, ...props }: AvatarProps): JSX.Element;
|
|
36
35
|
|
|
37
|
-
export { Avatar as A,
|
|
36
|
+
export { Avatar as A, AvatarProps as a, AvatarSizeType as b };
|
|
@@ -2,6 +2,15 @@ import * as React from 'react';
|
|
|
2
2
|
import { VariantProps } from 'class-variance-authority';
|
|
3
3
|
import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
|
|
4
4
|
|
|
5
|
+
type AsProp<C extends React.ElementType> = {
|
|
6
|
+
/**
|
|
7
|
+
* Defines HTML tag to be used for component
|
|
8
|
+
*/
|
|
9
|
+
as?: C;
|
|
10
|
+
};
|
|
11
|
+
type PropsToOmit<C extends React.ElementType, P> = keyof (AsProp<C> & P);
|
|
12
|
+
type PolymorphicComponentProp<C extends React.ElementType, Props = {}> = Props & AsProp<C> & Omit<React.ComponentPropsWithoutRef<C>, PropsToOmit<C, Props>>;
|
|
13
|
+
|
|
5
14
|
declare const buttonCva: (props?: ({
|
|
6
15
|
color?: "neutral" | "primary" | "success" | "warning" | "error" | null | undefined;
|
|
7
16
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
@@ -13,36 +22,29 @@ type ButtonSizeType = NonNullable<ButtonCvaProps["size"]>;
|
|
|
13
22
|
type ButtonVariantType = NonNullable<ButtonCvaProps["variant"]>;
|
|
14
23
|
type ButtonColorType = NonNullable<ButtonCvaProps["color"]>;
|
|
15
24
|
|
|
16
|
-
type
|
|
17
|
-
/**
|
|
18
|
-
* Defines HTML tag to be used for component
|
|
19
|
-
*/
|
|
20
|
-
as?: C;
|
|
21
|
-
};
|
|
22
|
-
type PropsToOmit<C extends React.ElementType, P> = keyof (AsProp<C> & P);
|
|
23
|
-
type PolymorphicComponentProp<C extends React.ElementType, Props = {}> = Props & AsProp<C> & Omit<React.ComponentPropsWithoutRef<C>, PropsToOmit<C, Props>>;
|
|
24
|
-
|
|
25
|
-
type ButtonProp = {
|
|
25
|
+
type Props = {
|
|
26
26
|
/**
|
|
27
27
|
* Defines button color
|
|
28
|
-
* @default 'primary'
|
|
29
28
|
*/
|
|
30
29
|
color?: ButtonColorType;
|
|
31
30
|
/**
|
|
32
31
|
* Defines button variant
|
|
33
|
-
* @default 'text'
|
|
34
32
|
*/
|
|
35
33
|
variant?: ButtonVariantType;
|
|
36
34
|
/**
|
|
37
35
|
* Defines button size
|
|
38
|
-
* @default 'md'
|
|
39
36
|
*/
|
|
40
37
|
size?: ButtonSizeType;
|
|
41
38
|
/**
|
|
42
|
-
* Defines
|
|
39
|
+
* Defines button content
|
|
40
|
+
*/
|
|
41
|
+
children: React.ReactNode;
|
|
42
|
+
/**
|
|
43
|
+
* Disabled button
|
|
43
44
|
*/
|
|
44
|
-
|
|
45
|
+
disabled?: boolean;
|
|
45
46
|
};
|
|
46
|
-
|
|
47
|
+
type ButtonProps<T extends React.ElementType> = PolymorphicComponentProp<T, Props>;
|
|
48
|
+
declare const Button: <T extends React.ElementType<any> = "button">(props: Props & AsProp<T> & Omit<React.PropsWithoutRef<React.ComponentProps<T>>, "as" | keyof Props> & React.RefAttributes<unknown>) => React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
47
49
|
|
|
48
|
-
export {
|
|
50
|
+
export { Button as B, ButtonProps as a, ButtonSizeType as b, ButtonVariantType as c, ButtonColorType as d };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var r = require('react');
|
|
4
4
|
var classVarianceAuthority = require('class-variance-authority');
|
|
5
5
|
var jsxRuntime = require('react/jsx-runtime');
|
|
6
6
|
|
|
@@ -22,8 +22,8 @@ function _interopNamespace(e) {
|
|
|
22
22
|
return Object.freeze(n);
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
var
|
|
25
|
+
var r__namespace = /*#__PURE__*/_interopNamespace(r);
|
|
26
26
|
|
|
27
|
-
var
|
|
27
|
+
var e=classVarianceAuthority.cva("border rounded font-sans font-medium leading-[1.75] tracking-[.02857em]",{variants:{color:{neutral:"",primary:"",success:"",warning:"",error:""},size:{sm:"py-1 px-2.5 text-[.8125rem]",md:"px-4 py-1.5 text-sm",lg:"px-5 py-2 text-[.9375rem]"},variant:{text:"border-transparent bg-transparent hover:text-white",outlined:"",contained:""}},compoundVariants:[{variant:"text",color:"neutral",class:["text-gray-400","hover:border-gray-400 hover:bg-gray-400","active:text-white active:border-gray-300 active:bg-gray-300","disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:border-transparent disabled:hover:bg-transparent disabled:hover:text-gray-400"]},{variant:"text",color:"primary",class:["text-primary-500","hover:border-primary-400 hover:bg-primary-400","active:text-white active:border-primary-600 active:bg-primary-600","disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:border-transparent disabled:hover:bg-transparent disabled:hover:text-primary-500"]},{variant:"text",color:"success",class:["text-success-500","hover:border-success-400 hover:bg-success-400","active:text-white active:border-success-600 active:bg-success-600","disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:border-transparent disabled:hover:bg-transparent disabled:hover:text-success-500"]},{variant:"text",color:"warning",class:["text-warning-500","hover:border-warning-400 hover:bg-warning-400","active:text-white active:border-warning-600 active:bg-warning-600","disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:border-transparent disabled:hover:bg-transparent disabled:hover:text-warning-500"]},{variant:"text",color:"error",class:["text-error-500","hover:border-error-400 hover:bg-error-400","active:text-white active:border-error-600 active:bg-error-600","disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:border-transparent disabled:hover:bg-transparent disabled:hover:text-error-500"]},{variant:"outlined",color:"neutral",class:["text-gray-400 border-gray-400 bg-transparent","hover:bg-gray-500 hover:text-white","active:text-white active:bg-gray-300","disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:bg-transparent disabled:hover:text-gray-400"]},{variant:"outlined",color:"primary",class:["text-primary-500 border-primary-500 bg-transparent","hover:bg-primary-400 hover:text-white","active:text-white active:bg-primary-600","disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:bg-transparent disabled:hover:text-primary-500"]},{variant:"outlined",color:"success",class:["text-success-500 border-success-500 bg-transparent","hover:bg-success-400 hover:text-white","active:text-white active:bg-success-600","disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:bg-transparent disabled:hover:text-success-500"]},{variant:"outlined",color:"warning",class:["text-warning-500 border-warning-500 bg-transparent","hover:bg-warning-400 hover:text-white","active:text-white active:bg-warning-600","disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:bg-transparent disabled:hover:text-warning-500"]},{variant:"outlined",color:"error",class:["text-error-500 border-error-500 bg-transparent","hover:bg-error-400 hover:text-white","active:text-white active:bg-error-600","disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:bg-transparent disabled:hover:text-error-500"]}]});var p=r__namespace.forwardRef(function({as:t,color:a="primary",children:o,size:i="md",variant:s="text",disabled:g=!1,...n},d){let c=t||"button",l=e({size:i,variant:s,color:a});return jsxRuntime.jsx(c,{className:l,ref:d,...n,children:o})}),v=p;
|
|
28
28
|
|
|
29
29
|
exports.a = v;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as r from 'react';
|
|
2
2
|
import { cva } from 'class-variance-authority';
|
|
3
3
|
import { jsx } from 'react/jsx-runtime';
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var e=cva("border rounded font-sans font-medium leading-[1.75] tracking-[.02857em]",{variants:{color:{neutral:"",primary:"",success:"",warning:"",error:""},size:{sm:"py-1 px-2.5 text-[.8125rem]",md:"px-4 py-1.5 text-sm",lg:"px-5 py-2 text-[.9375rem]"},variant:{text:"border-transparent bg-transparent hover:text-white",outlined:"",contained:""}},compoundVariants:[{variant:"text",color:"neutral",class:["text-gray-400","hover:border-gray-400 hover:bg-gray-400","active:text-white active:border-gray-300 active:bg-gray-300","disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:border-transparent disabled:hover:bg-transparent disabled:hover:text-gray-400"]},{variant:"text",color:"primary",class:["text-primary-500","hover:border-primary-400 hover:bg-primary-400","active:text-white active:border-primary-600 active:bg-primary-600","disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:border-transparent disabled:hover:bg-transparent disabled:hover:text-primary-500"]},{variant:"text",color:"success",class:["text-success-500","hover:border-success-400 hover:bg-success-400","active:text-white active:border-success-600 active:bg-success-600","disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:border-transparent disabled:hover:bg-transparent disabled:hover:text-success-500"]},{variant:"text",color:"warning",class:["text-warning-500","hover:border-warning-400 hover:bg-warning-400","active:text-white active:border-warning-600 active:bg-warning-600","disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:border-transparent disabled:hover:bg-transparent disabled:hover:text-warning-500"]},{variant:"text",color:"error",class:["text-error-500","hover:border-error-400 hover:bg-error-400","active:text-white active:border-error-600 active:bg-error-600","disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:border-transparent disabled:hover:bg-transparent disabled:hover:text-error-500"]},{variant:"outlined",color:"neutral",class:["text-gray-400 border-gray-400 bg-transparent","hover:bg-gray-500 hover:text-white","active:text-white active:bg-gray-300","disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:bg-transparent disabled:hover:text-gray-400"]},{variant:"outlined",color:"primary",class:["text-primary-500 border-primary-500 bg-transparent","hover:bg-primary-400 hover:text-white","active:text-white active:bg-primary-600","disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:bg-transparent disabled:hover:text-primary-500"]},{variant:"outlined",color:"success",class:["text-success-500 border-success-500 bg-transparent","hover:bg-success-400 hover:text-white","active:text-white active:bg-success-600","disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:bg-transparent disabled:hover:text-success-500"]},{variant:"outlined",color:"warning",class:["text-warning-500 border-warning-500 bg-transparent","hover:bg-warning-400 hover:text-white","active:text-white active:bg-warning-600","disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:bg-transparent disabled:hover:text-warning-500"]},{variant:"outlined",color:"error",class:["text-error-500 border-error-500 bg-transparent","hover:bg-error-400 hover:text-white","active:text-white active:bg-error-600","disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:bg-transparent disabled:hover:text-error-500"]}]});var p=r.forwardRef(function({as:t,color:a="primary",children:o,size:i="md",variant:s="text",disabled:g=!1,...n},d){let c=t||"button",l=e({size:i,variant:s,color:a});return jsx(c,{className:l,ref:d,...n,children:o})}),v=p;
|
|
6
6
|
|
|
7
7
|
export { v as a };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { a as AvatarProps, b as AvatarSizeType, A as default } from '../../Avatar-cea60385.js';
|
|
2
2
|
import 'react';
|
|
3
3
|
import 'class-variance-authority';
|
|
4
4
|
import 'class-variance-authority/dist/types';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { a as default } from '../../chunk-
|
|
1
|
+
export { a as default } from '../../chunk-MM2WP564.mjs';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { d as ButtonColorType, a as ButtonProps, b as ButtonSizeType, c as ButtonVariantType, B as default } from '../../Button-b6aa5957.js';
|
|
2
2
|
import 'react';
|
|
3
3
|
import 'class-variance-authority';
|
|
4
4
|
import 'class-variance-authority/dist/types';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { a as default } from '../../chunk-
|
|
1
|
+
export { a as default } from '../../chunk-CUMOJXWX.mjs';
|
package/components/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { A as Avatar,
|
|
2
|
-
export {
|
|
1
|
+
export { A as Avatar, a as AvatarProps, b as AvatarSizeType } from '../Avatar-cea60385.js';
|
|
2
|
+
export { B as Button, d as ButtonColorType, a as ButtonProps, b as ButtonSizeType, c as ButtonVariantType } from '../Button-b6aa5957.js';
|
|
3
3
|
import 'react';
|
|
4
4
|
import 'class-variance-authority';
|
|
5
5
|
import 'class-variance-authority/dist/types';
|
package/components/index.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
require('../chunk-
|
|
4
|
-
var
|
|
5
|
-
var
|
|
3
|
+
require('../chunk-5AJUIVQP.js');
|
|
4
|
+
var chunkM6LWZWJB_js = require('../chunk-M6LWZWJB.js');
|
|
5
|
+
var chunk35PGUWPE_js = require('../chunk-35PGUWPE.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
Object.defineProperty(exports, 'Avatar', {
|
|
10
10
|
enumerable: true,
|
|
11
|
-
get: function () { return
|
|
11
|
+
get: function () { return chunkM6LWZWJB_js.a; }
|
|
12
12
|
});
|
|
13
13
|
Object.defineProperty(exports, 'Button', {
|
|
14
14
|
enumerable: true,
|
|
15
|
-
get: function () { return
|
|
15
|
+
get: function () { return chunk35PGUWPE_js.a; }
|
|
16
16
|
});
|
package/components/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import '../chunk-
|
|
2
|
-
export { a as Avatar } from '../chunk-
|
|
3
|
-
export { a as Button } from '../chunk-
|
|
1
|
+
import '../chunk-LMETIM25.mjs';
|
|
2
|
+
export { a as Avatar } from '../chunk-MM2WP564.mjs';
|
|
3
|
+
export { a as Button } from '../chunk-CUMOJXWX.mjs';
|
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { A as Avatar,
|
|
2
|
-
export {
|
|
1
|
+
export { A as Avatar, a as AvatarProps, b as AvatarSizeType } from './Avatar-cea60385.js';
|
|
2
|
+
export { B as Button, d as ButtonColorType, a as ButtonProps, b as ButtonSizeType, c as ButtonVariantType } from './Button-b6aa5957.js';
|
|
3
3
|
export { u as useTheme } from './useTheme-01c9253b.js';
|
|
4
4
|
export { T as ThemeContext, b as ThemeProvider, a as ThemeProviderProps } from './ThemeProvider-8e6d7838.js';
|
|
5
5
|
export { a as ThemeContextType, T as ThemeType } from './theme.types-a32f0702.js';
|
package/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
require('./chunk-
|
|
4
|
-
var
|
|
5
|
-
var
|
|
3
|
+
require('./chunk-5AJUIVQP.js');
|
|
4
|
+
var chunkM6LWZWJB_js = require('./chunk-M6LWZWJB.js');
|
|
5
|
+
var chunk35PGUWPE_js = require('./chunk-35PGUWPE.js');
|
|
6
6
|
require('./chunk-7M2UD3MX.js');
|
|
7
7
|
var chunkUJM6RAIA_js = require('./chunk-UJM6RAIA.js');
|
|
8
8
|
require('./chunk-JQ4UTWMH.js');
|
|
@@ -12,11 +12,11 @@ var chunkX2QIG2W5_js = require('./chunk-X2QIG2W5.js');
|
|
|
12
12
|
|
|
13
13
|
Object.defineProperty(exports, 'Avatar', {
|
|
14
14
|
enumerable: true,
|
|
15
|
-
get: function () { return
|
|
15
|
+
get: function () { return chunkM6LWZWJB_js.a; }
|
|
16
16
|
});
|
|
17
17
|
Object.defineProperty(exports, 'Button', {
|
|
18
18
|
enumerable: true,
|
|
19
|
-
get: function () { return
|
|
19
|
+
get: function () { return chunk35PGUWPE_js.a; }
|
|
20
20
|
});
|
|
21
21
|
Object.defineProperty(exports, 'useTheme', {
|
|
22
22
|
enumerable: true,
|
package/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import './chunk-
|
|
2
|
-
export { a as Avatar } from './chunk-
|
|
3
|
-
export { a as Button } from './chunk-
|
|
1
|
+
import './chunk-LMETIM25.mjs';
|
|
2
|
+
export { a as Avatar } from './chunk-MM2WP564.mjs';
|
|
3
|
+
export { a as Button } from './chunk-CUMOJXWX.mjs';
|
|
4
4
|
import './chunk-TAA4AMBN.mjs';
|
|
5
5
|
export { a as useTheme } from './chunk-CRJI67D5.mjs';
|
|
6
6
|
import './chunk-WPEQQQCR.mjs';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@szum-tech/design-system",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.1",
|
|
4
4
|
"description": "Szum-Tech design system with tailwindcss support",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"szum-tech",
|
|
@@ -41,10 +41,10 @@
|
|
|
41
41
|
],
|
|
42
42
|
"scripts": {
|
|
43
43
|
"build": "env NODE_ENV=production tsup && cpy './src/theme/global.css' './theme' --flat",
|
|
44
|
-
"clean": "rm -rf node_modules && yarn clear:build",
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"dev": "concurrently \"
|
|
44
|
+
"clean": "rm -rf node_modules && yarn clear:build && yarn clean:build:dev",
|
|
45
|
+
"clean:build": "rm -rf components && rm -rf contexts && rm -rf hooks && rm -rf theme && rm -rf index.* && rm -rf chunk-*.js && rm -rf chunk-*.mjs && rm -rf *.d.ts",
|
|
46
|
+
"clean:build:dev": "rm -rf dist",
|
|
47
|
+
"dev": "concurrently \"yarn dev:css\" \"yarn dev:build\"",
|
|
48
48
|
"dev:build": "tsup",
|
|
49
49
|
"dev:css": "tailwindcss -w -i src/theme/global.css -o src/styles/default.css",
|
|
50
50
|
"prettier:check": "prettier --check .",
|
|
@@ -58,53 +58,58 @@
|
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@tailwindcss/container-queries": "^0.1.0",
|
|
61
|
-
"class-variance-authority": "^0.5.
|
|
61
|
+
"class-variance-authority": "^0.5.2",
|
|
62
62
|
"tailwind-scrollbar": "^3.0.0"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
65
|
"@babel/core": "^7.21.4",
|
|
66
66
|
"@heroicons/react": "^2.0.17",
|
|
67
|
-
"@storybook/addon-a11y": "^7.0.
|
|
68
|
-
"@storybook/addon-actions": "^7.0.
|
|
69
|
-
"@storybook/addon-docs": "^7.0.
|
|
70
|
-
"@storybook/addon-essentials": "^7.0.
|
|
71
|
-
"@storybook/addon-interactions": "^7.0.
|
|
72
|
-
"@storybook/addon-links": "^7.0.
|
|
73
|
-
"@storybook/addon-mdx-gfm": "^7.0.
|
|
74
|
-
"@storybook/addons": "^7.0.
|
|
75
|
-
"@storybook/
|
|
76
|
-
"@storybook/core-
|
|
77
|
-
"@storybook/
|
|
78
|
-
"@storybook/
|
|
79
|
-
"@storybook/
|
|
67
|
+
"@storybook/addon-a11y": "^7.0.6",
|
|
68
|
+
"@storybook/addon-actions": "^7.0.6",
|
|
69
|
+
"@storybook/addon-docs": "^7.0.6",
|
|
70
|
+
"@storybook/addon-essentials": "^7.0.6",
|
|
71
|
+
"@storybook/addon-interactions": "^7.0.6",
|
|
72
|
+
"@storybook/addon-links": "^7.0.6",
|
|
73
|
+
"@storybook/addon-mdx-gfm": "^7.0.6",
|
|
74
|
+
"@storybook/addons": "^7.0.6",
|
|
75
|
+
"@storybook/components": "^7.0.6",
|
|
76
|
+
"@storybook/core-common": "^7.0.6",
|
|
77
|
+
"@storybook/core-events": "^7.0.6",
|
|
78
|
+
"@storybook/manager-api": "^7.0.6",
|
|
79
|
+
"@storybook/preview-api": "^7.0.6",
|
|
80
|
+
"@storybook/react": "^7.0.6",
|
|
81
|
+
"@storybook/react-vite": "^7.0.6",
|
|
82
|
+
"@storybook/theming": "^7.0.6",
|
|
80
83
|
"@szum-tech/prettier-config": "^1.2.0",
|
|
81
84
|
"@szum-tech/semantic-release-preset": "^1.5.0",
|
|
85
|
+
"@testing-library/dom": "^9.2.0",
|
|
86
|
+
"@testing-library/jest-dom": "^5.16.5",
|
|
82
87
|
"@testing-library/react": "^14.0.0",
|
|
83
88
|
"@testing-library/user-event": "^14.4.3",
|
|
84
|
-
"@types/react": "^18.0.
|
|
89
|
+
"@types/react": "^18.0.38",
|
|
85
90
|
"@types/react-dom": "^18.0.11",
|
|
86
91
|
"@types/semantic-release": "^20.0.1",
|
|
87
|
-
"@vitejs/plugin-react": "^
|
|
92
|
+
"@vitejs/plugin-react": "^4.0.0",
|
|
88
93
|
"autoprefixer": "^10.4.14",
|
|
89
94
|
"babel-loader": "^9.1.2",
|
|
90
95
|
"concurrently": "^8.0.1",
|
|
91
96
|
"cpy-cli": "^4.2.0",
|
|
92
|
-
"postcss": "^8.4.
|
|
93
|
-
"prettier": "^2.8.
|
|
94
|
-
"prettier-plugin-tailwindcss": "^0.2.
|
|
97
|
+
"postcss": "^8.4.23",
|
|
98
|
+
"prettier": "^2.8.8",
|
|
99
|
+
"prettier-plugin-tailwindcss": "^0.2.7",
|
|
95
100
|
"react": "^18.2.0",
|
|
96
101
|
"react-docgen": "^5.4.3",
|
|
97
102
|
"react-docgen-typescript": "^2.2.2",
|
|
98
103
|
"react-dom": "^18.2.0",
|
|
99
104
|
"semantic-release": "^21.0.1",
|
|
100
105
|
"serve": "^14.2.0",
|
|
101
|
-
"storybook": "^7.0.
|
|
102
|
-
"storybook-addon-pseudo-states": "^2.0.
|
|
106
|
+
"storybook": "^7.0.6",
|
|
107
|
+
"storybook-addon-pseudo-states": "^2.0.1",
|
|
103
108
|
"storybook-addon-themes": "^6.1.0",
|
|
104
109
|
"tailwindcss": "^3.3.1",
|
|
105
110
|
"tsup": "^6.7.0",
|
|
106
|
-
"typescript": "^5.0.
|
|
107
|
-
"vite": "^4.
|
|
111
|
+
"typescript": "^5.0.4",
|
|
112
|
+
"vite": "^4.3.1"
|
|
108
113
|
},
|
|
109
114
|
"peerDependencies": {
|
|
110
115
|
"react": "^18.2.0",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|