@keeper-security/keeper-js-ui 0.28.0 → 0.28.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/CHANGELOG.md +12 -0
- package/dist/index.cjs +26 -30
- package/dist/index.js +11400 -15285
- package/dist/style.css +3 -1
- package/dist/types/components/layout/box.d.ts +1 -1
- package/dist/types/components/layout/box.d.ts.map +1 -1
- package/dist/types/components/layout/flex.d.ts +1 -1
- package/dist/types/components/layout/flex.d.ts.map +1 -1
- package/dist/types/components/ui/autocomplete.d.ts +1 -1
- package/dist/types/components/ui/autocomplete.d.ts.map +1 -1
- package/dist/types/components/ui/avatar.d.ts +2 -2
- package/dist/types/components/ui/avatar.d.ts.map +1 -1
- package/dist/types/components/ui/badge.d.ts +1 -1
- package/dist/types/components/ui/badge.d.ts.map +1 -1
- package/dist/types/components/ui/button.d.ts +1 -1
- package/dist/types/components/ui/button.d.ts.map +1 -1
- package/dist/types/components/ui/collapsible.d.ts +1 -1
- package/dist/types/components/ui/collapsible.d.ts.map +1 -1
- package/dist/types/components/ui/dialog.d.ts +3 -3
- package/dist/types/components/ui/dialog.d.ts.map +1 -1
- package/dist/types/components/ui/dropdown-menu.d.ts +6 -6
- package/dist/types/components/ui/dropdown-menu.d.ts.map +1 -1
- package/dist/types/components/ui/icon.d.ts +1 -1
- package/dist/types/components/ui/icon.d.ts.map +1 -1
- package/dist/types/components/ui/indicator.d.ts +1 -1
- package/dist/types/components/ui/indicator.d.ts.map +1 -1
- package/dist/types/components/ui/input.d.ts +2 -2
- package/dist/types/components/ui/input.d.ts.map +1 -1
- package/dist/types/components/ui/label.d.ts +1 -1
- package/dist/types/components/ui/label.d.ts.map +1 -1
- package/dist/types/components/ui/list.d.ts +4 -4
- package/dist/types/components/ui/list.d.ts.map +1 -1
- package/dist/types/components/ui/loader.d.ts +1 -1
- package/dist/types/components/ui/loader.d.ts.map +1 -1
- package/dist/types/components/ui/popover.d.ts +1 -1
- package/dist/types/components/ui/popover.d.ts.map +1 -1
- package/dist/types/components/ui/select.d.ts +2 -2
- package/dist/types/components/ui/select.d.ts.map +1 -1
- package/dist/types/components/ui/tabs.d.ts +1 -1
- package/dist/types/components/ui/tabs.d.ts.map +1 -1
- package/dist/types/components/ui/toast.d.ts +4 -4
- package/dist/types/components/ui/toast.d.ts.map +1 -1
- package/dist/types/components/ui/tooltip.d.ts +2 -2
- package/dist/types/components/ui/tooltip.d.ts.map +1 -1
- package/dist/types/components/ui/typography.d.ts +2 -2
- package/dist/types/components/ui/typography.d.ts.map +1 -1
- package/dist/types/hooks/use-direction.d.ts +1 -1
- package/dist/types/hooks/use-direction.d.ts.map +1 -1
- package/dist/types/hooks/use-strings.d.ts +1 -1
- package/dist/types/hooks/use-strings.d.ts.map +1 -1
- package/package.json +33 -34
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { type VariantProps } from 'class-variance-authority';
|
|
2
|
-
import React from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
3
3
|
declare const Input: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & VariantProps<(props?: ({
|
|
4
4
|
variant?: "underline" | "outline" | null | undefined;
|
|
5
|
-
} & import("class-variance-authority/
|
|
5
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string> & {
|
|
6
6
|
endContent?: React.ReactNode;
|
|
7
7
|
description?: string;
|
|
8
8
|
startContent?: React.ReactNode;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../src/components/ui/input.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AACjE,OAAO,KAAK,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../src/components/ui/input.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AACjE,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AA2B9B,QAAA,MAAM,KAAK;;;iBAIQ,KAAK,CAAC,SAAS;kBACd,MAAM;mBACL,KAAK,CAAC,SAAS;0CA8CnC,CAAA;AAED;;;;GAIG;AAEH;;GAEG;AACH,QAAA,MAAM,SAAS,8KA0Bd,CAAA;AAED;;;;GAIG;AAEH,OAAO,EAAE,SAAS,EAAE,KAAK,EAAE,CAAA"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { Label as LabelPrimitive } from 'radix-ui';
|
|
3
3
|
import { type VariantProps } from 'class-variance-authority';
|
|
4
|
-
declare const labelVariants: (props?: import("class-variance-authority/
|
|
4
|
+
declare const labelVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|
|
5
5
|
interface LabelProps extends React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root>, VariantProps<typeof labelVariants> {
|
|
6
6
|
}
|
|
7
7
|
declare const Label: React.ForwardRefExoticComponent<LabelProps & React.RefAttributes<HTMLLabelElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"label.d.ts","sourceRoot":"","sources":["../../../src/components/ui/label.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,KAAK,IAAI,cAAc,EAAE,MAAM,UAAU,CAAA;AAClD,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAIjE,QAAA,MAAM,aAAa,
|
|
1
|
+
{"version":3,"file":"label.d.ts","sourceRoot":"","sources":["../../../src/components/ui/label.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,KAAK,IAAI,cAAc,EAAE,MAAM,UAAU,CAAA;AAClD,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAIjE,QAAA,MAAM,aAAa,oFAMjB,CAAA;AAEF,UAAU,UACR,SACE,KAAK,CAAC,wBAAwB,CAAC,OAAO,cAAc,CAAC,IAAI,CAAC,EAC1D,YAAY,CAAC,OAAO,aAAa,CAAC;CAAG;AAEzC,QAAA,MAAM,KAAK,qFAUT,CAAA;AAGF,OAAO,EAAE,KAAK,EAAE,KAAK,UAAU,EAAE,CAAA"}
|
|
@@ -10,27 +10,27 @@ declare const ListItem: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLP
|
|
|
10
10
|
density?: "compact" | "comfortable" | null | undefined;
|
|
11
11
|
inset?: boolean | null | undefined;
|
|
12
12
|
variant?: "solid" | "glass" | null | undefined;
|
|
13
|
-
} & import("class-variance-authority/
|
|
13
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string> & React.RefAttributes<HTMLLIElement>>;
|
|
14
14
|
/**
|
|
15
15
|
* -----------------------------------------------------------------------------
|
|
16
16
|
* ListItemArrow
|
|
17
17
|
* -----------------------------------------------------------------------------
|
|
18
18
|
*/
|
|
19
19
|
declare const ListItemArrow: {
|
|
20
|
-
({ className, ...props }: IconProps):
|
|
20
|
+
({ className, ...props }: IconProps): React.JSX.Element;
|
|
21
21
|
displayName: string;
|
|
22
22
|
};
|
|
23
23
|
declare const ListItemButton: React.ForwardRefExoticComponent<Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "color"> & VariantProps<(props?: ({
|
|
24
24
|
color?: "destructive" | "secondary" | null | undefined;
|
|
25
25
|
density?: "compact" | "comfortable" | null | undefined;
|
|
26
26
|
variant?: "solid" | "glass" | null | undefined;
|
|
27
|
-
} & import("class-variance-authority/
|
|
27
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string> & React.RefAttributes<HTMLButtonElement>>;
|
|
28
28
|
declare const ListItemSecondaryActions: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLSpanElement>>;
|
|
29
29
|
declare const ListItemText: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & VariantProps<(props?: ({
|
|
30
30
|
density?: "compact" | "comfortable" | null | undefined;
|
|
31
31
|
textOverflow?: "wrap" | "truncate" | null | undefined;
|
|
32
32
|
variant?: "solid" | "glass" | null | undefined;
|
|
33
|
-
} & import("class-variance-authority/
|
|
33
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string> & {
|
|
34
34
|
primary: React.ReactNode;
|
|
35
35
|
secondary?: React.ReactNode;
|
|
36
36
|
} & React.RefAttributes<HTMLSpanElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../src/components/ui/list.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAIjE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAKrD,UAAU,gBAAgB;IACxB,OAAO,CAAC,EAAE,aAAa,GAAG,SAAS,CAAA;IACnC,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,CAAA;CAC5B;
|
|
1
|
+
{"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../src/components/ui/list.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAIjE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAKrD,UAAU,gBAAgB;IACxB,OAAO,CAAC,EAAE,aAAa,GAAG,SAAS,CAAA;IACnC,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,CAAA;CAC5B;AAgCD,QAAA,MAAM,IAAI,4LA6BT,CAAA;AAkED,QAAA,MAAM,QAAQ;;;;qHA+CZ,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,aAAa;8BAA6B,SAAS;;CAkBxD,CAAA;AAqCD,QAAA,MAAM,cAAc;;;;yHAsClB,CAAA;AAmBF,QAAA,MAAM,wBAAwB,sKA4B5B,CAAA;AAiDF,QAAA,MAAM,YAAY;;;;;aAIH,KAAK,CAAC,SAAS;gBACZ,KAAK,CAAC,SAAS;yCAqB/B,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,SAAS;YAGH,OAAO;uCAajB,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,aAAa,kKAiBjB,CAAA;AAGF;;;;GAIG;AAEH,OAAO,EACL,IAAI,EACJ,QAAQ,EACR,aAAa,EACb,cAAc,EACd,wBAAwB,EACxB,YAAY,EACZ,SAAS,EACT,aAAa,GACd,CAAA"}
|
|
@@ -4,7 +4,7 @@ declare const loaderVariants: (props?: ({
|
|
|
4
4
|
color?: "current" | "destructive" | "neutral" | "primary" | "secondary" | "success" | null | undefined;
|
|
5
5
|
loading?: boolean | null | undefined;
|
|
6
6
|
size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | null | undefined;
|
|
7
|
-
} & import("class-variance-authority/
|
|
7
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
8
8
|
interface LoaderProps extends Omit<React.ComponentProps<'svg'>, 'color'>, VariantProps<typeof loaderVariants> {
|
|
9
9
|
}
|
|
10
10
|
declare const Loader: React.ForwardRefExoticComponent<Omit<LoaderProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"loader.d.ts","sourceRoot":"","sources":["../../../src/components/ui/loader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAMjE,QAAA,MAAM,cAAc;;;;
|
|
1
|
+
{"version":3,"file":"loader.d.ts","sourceRoot":"","sources":["../../../src/components/ui/loader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAMjE,QAAA,MAAM,cAAc;;;;8EAgCnB,CAAA;AAED,UAAU,WACR,SACE,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC,EAC1C,YAAY,CAAC,OAAO,cAAc,CAAC;CAAG;AAE1C,QAAA,MAAM,MAAM,gGA4FX,CAAA;AAID;;;;GAIG;AAEH,OAAO,EAAE,MAAM,EAAE,KAAK,WAAW,EAAE,CAAA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { Popover as PopoverPrimitive } from 'radix-ui';
|
|
3
|
-
declare function Popover(props: React.ComponentProps<typeof PopoverPrimitive.Root>):
|
|
3
|
+
declare function Popover(props: React.ComponentProps<typeof PopoverPrimitive.Root>): React.JSX.Element;
|
|
4
4
|
declare namespace Popover {
|
|
5
5
|
var displayName: string | undefined;
|
|
6
6
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"popover.d.ts","sourceRoot":"","sources":["../../../src/components/ui/popover.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,UAAU,CAAA;AAItD,iBAAS,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,gBAAgB,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"popover.d.ts","sourceRoot":"","sources":["../../../src/components/ui/popover.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,UAAU,CAAA;AAItD,iBAAS,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,gBAAgB,CAAC,IAAI,CAAC,qBAEzE;kBAFQ,OAAO;;;AAMhB;;;;GAIG;AAEH,QAAA,MAAM,cAAc,sKASlB,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,cAAc;gBAGJ,KAAK,CAAC,wBAAwB,CACxC,OAAO,gBAAgB,CAAC,MAAM,CAC/B,CAAC,WAAW,CAAC;wCAwCjB,CAAA;AAGD;;;;GAIG;AAEH,QAAA,MAAM,aAAa,+JASjB,CAAA;AAGF;;;;GAIG;AAEH,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,aAAa,EAAE,CAAA"}
|
|
@@ -6,7 +6,7 @@ interface SelectContextValues {
|
|
|
6
6
|
variant?: 'outline' | 'solid';
|
|
7
7
|
}
|
|
8
8
|
type SelectProps = React.ComponentPropsWithoutRef<typeof SelectPrimitive.Root> & SelectContextValues;
|
|
9
|
-
declare function Select({ color, variant, ...props }: SelectProps):
|
|
9
|
+
declare function Select({ color, variant, ...props }: SelectProps): React.JSX.Element;
|
|
10
10
|
declare namespace Select {
|
|
11
11
|
var displayName: string | undefined;
|
|
12
12
|
}
|
|
@@ -30,7 +30,7 @@ declare const SelectValue: React.ForwardRefExoticComponent<Omit<SelectPrimitive.
|
|
|
30
30
|
declare const selectTriggerVariants: (props?: ({
|
|
31
31
|
color?: "neutral" | null | undefined;
|
|
32
32
|
variant?: "solid" | "outline" | null | undefined;
|
|
33
|
-
} & import("class-variance-authority/
|
|
33
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
34
34
|
interface SelectTrigger extends Omit<React.ComponentPropsWithoutRef<typeof SelectPrimitive.Trigger> & VariantProps<typeof selectTriggerVariants>, 'color' | 'variant'> {
|
|
35
35
|
/**
|
|
36
36
|
* @deprecated
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"select.d.ts","sourceRoot":"","sources":["../../../src/components/ui/select.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,UAAU,CAAA;AAKpD,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAEjE,UAAU,mBAAmB;IAC3B,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,OAAO,CAAC,EAAE,SAAS,GAAG,OAAO,CAAA;CAC9B;AAcD,KAAK,WAAW,GAAG,KAAK,CAAC,wBAAwB,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC,GAC5E,mBAAmB,CAAA;AAErB,iBAAS,MAAM,CAAC,EACd,KAAiB,EACjB,OAAmB,EACnB,GAAG,KAAK,EACT,EAAE,WAAW,
|
|
1
|
+
{"version":3,"file":"select.d.ts","sourceRoot":"","sources":["../../../src/components/ui/select.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,UAAU,CAAA;AAKpD,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAEjE,UAAU,mBAAmB;IAC3B,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,OAAO,CAAC,EAAE,SAAS,GAAG,OAAO,CAAA;CAC9B;AAcD,KAAK,WAAW,GAAG,KAAK,CAAC,wBAAwB,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC,GAC5E,mBAAmB,CAAA;AAErB,iBAAS,MAAM,CAAC,EACd,KAAiB,EACjB,OAAmB,EACnB,GAAG,KAAK,EACT,EAAE,WAAW,qBAWb;kBAfQ,MAAM;;;AAkBf;;;;GAIG;AAEH,QAAA,MAAM,WAAW,4JAKf,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,WAAW,8JAKf,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,qBAAqB;;;8EA+B1B,CAAA;AAED,UAAU,aAAc,SAAQ,IAAI,CAClC,KAAK,CAAC,wBAAwB,CAAC,OAAO,eAAe,CAAC,OAAO,CAAC,GAC5D,YAAY,CAAC,OAAO,qBAAqB,CAAC,EAC5C,OAAO,GAAG,SAAS,CACpB;IACC;;;;;OAKG;IACH,KAAK,CAAC,EAAE,YAAY,CAAC,OAAO,qBAAqB,CAAC,CAAC,OAAO,CAAC,CAAA;IAC3D;;;;;OAKG;IACH,OAAO,CAAC,EAAE,YAAY,CAAC,OAAO,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAA;CAChE;AAED,QAAA,MAAM,aAAa,yFAmClB,CAAA;AAiED,QAAA,MAAM,aAAa;gBALL,KAAK,CAAC,wBAAwB,CACxC,OAAO,eAAe,CAAC,MAAM,CAC9B,CAAC,WAAW,CAAC;wCAgDd,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,WAAW,4JAaf,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,UAAU,2JAgCd,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,eAAe,gKAgBnB,CAAA;AAGF;;;;GAIG;AAEH,OAAO,EACL,MAAM,EACN,WAAW,EACX,WAAW,EACX,aAAa,EACb,aAAa,EACb,WAAW,EACX,UAAU,EACV,eAAe,GAChB,CAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import
|
|
2
|
+
import { Tabs as TabsPrimitive } from 'radix-ui';
|
|
3
3
|
declare const Tabs: React.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React.RefAttributes<HTMLDivElement>>;
|
|
4
4
|
declare const TabsList: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
5
5
|
declare const TabsTrigger: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tabs.d.ts","sourceRoot":"","sources":["../../../src/components/ui/tabs.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,
|
|
1
|
+
{"version":3,"file":"tabs.d.ts","sourceRoot":"","sources":["../../../src/components/ui/tabs.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,IAAI,IAAI,aAAa,EAAE,MAAM,UAAU,CAAA;AAIhD,QAAA,MAAM,IAAI,gGAAqB,CAAA;AAE/B,QAAA,MAAM,QAAQ,uJAYZ,CAAA;AAGF,QAAA,MAAM,WAAW,gKAYf,CAAA;AAGF,QAAA,MAAM,WAAW,0JAYf,CAAA;AAGF,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,EAAE,CAAA"}
|
|
@@ -2,7 +2,7 @@ import * as React from 'react';
|
|
|
2
2
|
import { Toast as ToastPrimitive } from 'radix-ui';
|
|
3
3
|
import { type VariantProps } from 'class-variance-authority';
|
|
4
4
|
declare const Toast: {
|
|
5
|
-
():
|
|
5
|
+
(): React.JSX.Element;
|
|
6
6
|
displayName: string;
|
|
7
7
|
};
|
|
8
8
|
/**
|
|
@@ -10,7 +10,7 @@ declare const Toast: {
|
|
|
10
10
|
* ToastProvider
|
|
11
11
|
* -----------------------------------------------------------------------------
|
|
12
12
|
*/
|
|
13
|
-
declare function ToastProvider(props: React.ComponentPropsWithoutRef<typeof ToastPrimitive.Provider>):
|
|
13
|
+
declare function ToastProvider(props: React.ComponentPropsWithoutRef<typeof ToastPrimitive.Provider>): React.JSX.Element;
|
|
14
14
|
declare namespace ToastProvider {
|
|
15
15
|
var displayName: string | undefined;
|
|
16
16
|
}
|
|
@@ -25,7 +25,7 @@ declare const ToastViewport: React.ForwardRefExoticComponent<Omit<ToastPrimitive
|
|
|
25
25
|
* ToastRoot
|
|
26
26
|
* -----------------------------------------------------------------------------
|
|
27
27
|
*/
|
|
28
|
-
declare const toastRootVariants: (props?: import("class-variance-authority/
|
|
28
|
+
declare const toastRootVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|
|
29
29
|
type ToastProps = Omit<React.ComponentPropsWithoutRef<typeof ToastPrimitive.Root>,
|
|
30
30
|
/**
|
|
31
31
|
* Our toasts don't have a Title/Description relationship.
|
|
@@ -33,7 +33,7 @@ type ToastProps = Omit<React.ComponentPropsWithoutRef<typeof ToastPrimitive.Root
|
|
|
33
33
|
* Remove this should they gain relevance.
|
|
34
34
|
*/
|
|
35
35
|
'title'> & VariantProps<typeof toastRootVariants>;
|
|
36
|
-
declare const ToastRoot: React.ForwardRefExoticComponent<Omit<Omit<ToastPrimitive.ToastProps & React.RefAttributes<HTMLLIElement>, "ref">, "title"> & VariantProps<(props?: import("class-variance-authority/
|
|
36
|
+
declare const ToastRoot: React.ForwardRefExoticComponent<Omit<Omit<ToastPrimitive.ToastProps & React.RefAttributes<HTMLLIElement>, "ref">, "title"> & VariantProps<(props?: import("class-variance-authority/types").ClassProp | undefined) => string> & React.RefAttributes<HTMLLIElement>>;
|
|
37
37
|
/**
|
|
38
38
|
* -----------------------------------------------------------------------------
|
|
39
39
|
* ToastAction
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toast.d.ts","sourceRoot":"","sources":["../../../src/components/ui/toast.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,KAAK,IAAI,cAAc,EAAE,MAAM,UAAU,CAAA;AAClD,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAOjE,QAAA,MAAM,KAAK;;;CAiCV,CAAA;AAGD;;;;GAIG;AAEH,iBAAS,aAAa,CACpB,KAAK,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,cAAc,CAAC,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"toast.d.ts","sourceRoot":"","sources":["../../../src/components/ui/toast.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,KAAK,IAAI,cAAc,EAAE,MAAM,UAAU,CAAA;AAClD,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAOjE,QAAA,MAAM,KAAK;;;CAiCV,CAAA;AAGD;;;;GAIG;AAEH,iBAAS,aAAa,CACpB,KAAK,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,cAAc,CAAC,QAAQ,CAAC,qBAKtE;kBANQ,aAAa;;;AAStB;;;;GAIG;AAEH,QAAA,MAAM,aAAa,iKAkBjB,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,iBAAiB,oFAerB,CAAA;AAEF,KAAK,UAAU,GAAG,IAAI,CACpB,KAAK,CAAC,wBAAwB,CAAC,OAAO,cAAc,CAAC,IAAI,CAAC;AAC1D;;;;GAIG;AACH,OAAO,CACR,GACC,YAAY,CAAC,OAAO,iBAAiB,CAAC,CAAA;AAExC,QAAA,MAAM,SAAS,qQAYb,CAAA;AAGF;;;;GAIG;AAEH,KAAK,kBAAkB,GAAG,KAAK,CAAC,YAAY,CAAC,OAAO,WAAW,CAAC,CAAA;AAEhE,QAAA,MAAM,WAAW,iKAmBf,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,UAAU,gKA8Bd,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,gBAAgB,gKAUpB,CAAA;AAGF;;;;GAIG;AAEH,OAAO,EACL,KAAK,EACL,WAAW,EACX,UAAU,EACV,gBAAgB,EAChB,aAAa,EACb,SAAS,EACT,aAAa,EACb,KAAK,kBAAkB,EACvB,KAAK,UAAU,GAChB,CAAA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { Tooltip as TooltipPrimitive } from 'radix-ui';
|
|
3
|
-
declare function Tooltip(props: React.ComponentProps<typeof TooltipPrimitive.Root>):
|
|
3
|
+
declare function Tooltip(props: React.ComponentProps<typeof TooltipPrimitive.Root>): React.JSX.Element;
|
|
4
4
|
declare namespace Tooltip {
|
|
5
5
|
var displayName: string | undefined;
|
|
6
6
|
}
|
|
@@ -9,7 +9,7 @@ declare namespace Tooltip {
|
|
|
9
9
|
* TooltipProvider
|
|
10
10
|
* -----------------------------------------------------------------------------
|
|
11
11
|
*/
|
|
12
|
-
declare function TooltipProvider({ delayDuration, disableHoverableContent, ...props }: React.ComponentProps<typeof TooltipPrimitive.Provider>):
|
|
12
|
+
declare function TooltipProvider({ delayDuration, disableHoverableContent, ...props }: React.ComponentProps<typeof TooltipPrimitive.Provider>): React.JSX.Element;
|
|
13
13
|
declare namespace TooltipProvider {
|
|
14
14
|
var displayName: string | undefined;
|
|
15
15
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tooltip.d.ts","sourceRoot":"","sources":["../../../src/components/ui/tooltip.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,UAAU,CAAA;AAItD,iBAAS,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,gBAAgB,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"tooltip.d.ts","sourceRoot":"","sources":["../../../src/components/ui/tooltip.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,UAAU,CAAA;AAItD,iBAAS,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,gBAAgB,CAAC,IAAI,CAAC,qBAEzE;kBAFQ,OAAO;;;AAKhB;;;;GAIG;AAEH,iBAAS,eAAe,CAAC,EACvB,aAAiB,EACjB,uBAA8B,EAC9B,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,gBAAgB,CAAC,QAAQ,CAAC,qBASxD;kBAbQ,eAAe;;;AAgBxB;;;;GAIG;AAEH,QAAA,MAAM,cAAc,sKAUlB,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,cAAc,gKAgDnB,CAAA;AAGD;;;;GAIG;AAEH,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,eAAe,EAAE,CAAA"}
|
|
@@ -10,7 +10,7 @@ declare const typographyVariants: (props?: ({
|
|
|
10
10
|
letterSpacing?: "normal" | "wide" | "tighter" | "tight" | "wider" | "widest" | null | undefined;
|
|
11
11
|
lineClamp?: 1 | "none" | 2 | 4 | 3 | 6 | 5 | null | undefined;
|
|
12
12
|
lineHeight?: "none" | "normal" | "loose" | "compact" | "relaxed" | null | undefined;
|
|
13
|
-
size?: "
|
|
13
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | "base" | "default" | "2xl" | "3xl" | "4xl" | null | undefined;
|
|
14
14
|
transform?: "none" | "lowercase" | "uppercase" | "capitalize" | null | undefined;
|
|
15
15
|
screenReaderOnly?: boolean | null | undefined;
|
|
16
16
|
truncate?: boolean | null | undefined;
|
|
@@ -18,7 +18,7 @@ declare const typographyVariants: (props?: ({
|
|
|
18
18
|
wordBreak?: "all" | "words" | "normal" | "keep" | null | undefined;
|
|
19
19
|
wrap?: "wrap" | "balance" | "nowrap" | "pretty" | null | undefined;
|
|
20
20
|
weight?: "bold" | "black" | "normal" | "medium" | "thin" | "light" | "extralight" | "regular" | "semibold" | "extrabold" | null | undefined;
|
|
21
|
-
} & import("class-variance-authority/
|
|
21
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
22
22
|
/** @deprecated Use `md` instead. */
|
|
23
23
|
type DeprecatedTypographySize = 'default';
|
|
24
24
|
type TypographySize = Exclude<FontSizeTokenKey, 'default'> | DeprecatedTypographySize;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typography.d.ts","sourceRoot":"","sources":["../../../src/components/ui/typography.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAGjE,OAAO,KAAK,EACV,gBAAgB,EAGjB,MAAM,qBAAqB,CAAA;AAG5B,QAAA,MAAM,kBAAkB;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"typography.d.ts","sourceRoot":"","sources":["../../../src/components/ui/typography.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAGjE,OAAO,KAAK,EACV,gBAAgB,EAGjB,MAAM,qBAAqB,CAAA;AAG5B,QAAA,MAAM,kBAAkB;;;;;;;;;;;;;;;;;8EAsHtB,CAAA;AAGF,oCAAoC;AACpC,KAAK,wBAAwB,GAAG,SAAS,CAAA;AAEzC,KAAK,cAAc,GACf,OAAO,CAAC,gBAAgB,EAAE,SAAS,CAAC,GACpC,wBAAwB,CAAA;AAE5B,KAAK,mBAAmB,GAAG,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC,EAAE,OAAO,CAAC,GACzE,IAAI,CAAC,YAAY,CAAC,OAAO,kBAAkB,CAAC,EAAE,MAAM,CAAC,GAAG;IACtD,IAAI,CAAC,EAAE,cAAc,GAAG,IAAI,CAAA;CAC7B,CAAA;AAEH;;GAEG;AACH,KAAK,gBAAgB,GAAG,mBAAmB,GAAG;IAC5C,EAAE,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,KAAK,CAAC,YAAY,CAAA;IAC3C,OAAO,CAAC,EAAE,KAAK,CAAA;CAChB,CAAA;AAED;;GAEG;AACH,KAAK,qBAAqB,GAAG,mBAAmB,GAAG;IACjD,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,EAAE,CAAC,EAAE,KAAK,CAAA;CACX,CAAA;AAED,KAAK,eAAe,GAAG,gBAAgB,GAAG,qBAAqB,CAAA;AAE/D,QAAA,MAAM,UAAU,qFAuEf,CAAA;AAGD,OAAO,EAAE,UAAU,EAAE,CAAA"}
|
|
@@ -5,6 +5,6 @@ interface DirectionProviderProps {
|
|
|
5
5
|
dir: Direction;
|
|
6
6
|
}
|
|
7
7
|
declare const useDirection: typeof DirectionPrimitive.useDirection;
|
|
8
|
-
declare function DirectionProvider(props: DirectionProviderProps): import("react
|
|
8
|
+
declare function DirectionProvider(props: DirectionProviderProps): import("react").JSX.Element;
|
|
9
9
|
export { DirectionProvider, useDirection };
|
|
10
10
|
//# sourceMappingURL=use-direction.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-direction.d.ts","sourceRoot":"","sources":["../../src/hooks/use-direction.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,IAAI,kBAAkB,EAAE,MAAM,UAAU,CAAA;AAE1D,KAAK,SAAS,GAAG,KAAK,GAAG,KAAK,CAAA;AAC9B,UAAU,sBAAsB;IAC9B,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,GAAG,EAAE,SAAS,CAAA;CACf;AAED,QAAA,MAAM,YAAY,wCAAkC,CAAA;AAEpD,iBAAS,iBAAiB,CAAC,KAAK,EAAE,sBAAsB
|
|
1
|
+
{"version":3,"file":"use-direction.d.ts","sourceRoot":"","sources":["../../src/hooks/use-direction.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,IAAI,kBAAkB,EAAE,MAAM,UAAU,CAAA;AAE1D,KAAK,SAAS,GAAG,KAAK,GAAG,KAAK,CAAA;AAC9B,UAAU,sBAAsB;IAC9B,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,GAAG,EAAE,SAAS,CAAA;CACf;AAED,QAAA,MAAM,YAAY,wCAAkC,CAAA;AAEpD,iBAAS,iBAAiB,CAAC,KAAK,EAAE,sBAAsB,+BAEvD;AAED,OAAO,EAAE,iBAAiB,EAAE,YAAY,EAAE,CAAA"}
|
|
@@ -10,7 +10,7 @@ declare let initialStrings: {
|
|
|
10
10
|
};
|
|
11
11
|
declare function StringsProvider({ children }: {
|
|
12
12
|
children: React.ReactNode;
|
|
13
|
-
}):
|
|
13
|
+
}): React.JSX.Element;
|
|
14
14
|
declare function useStrings(): {
|
|
15
15
|
toast: {
|
|
16
16
|
dismissButtonLabel: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-strings.d.ts","sourceRoot":"","sources":["../../src/hooks/use-strings.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAG9B,KAAK,aAAa,GAAG,OAAO,cAAc,CAAA;AAI1C,QAAA,IAAI,cAAc;;;;;;;CAOjB,CAAA;AAID,iBAAS,eAAe,CAAC,EAAE,QAAQ,EAAE,EAAE;IAAE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,
|
|
1
|
+
{"version":3,"file":"use-strings.d.ts","sourceRoot":"","sources":["../../src/hooks/use-strings.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAG9B,KAAK,aAAa,GAAG,OAAO,cAAc,CAAA;AAI1C,QAAA,IAAI,cAAc;;;;;;;CAOjB,CAAA;AAID,iBAAS,eAAe,CAAC,EAAE,QAAQ,EAAE,EAAE;IAAE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,qBAMnE;AAED,iBAAS,UAAU;;;;;;;EAalB;AAED;;;;;;GAMG;AACH,iBAAS,gBAAgB,CAAC,iBAAiB,EAAE,aAAa,QAEzD;AAED,OAAO,EAAE,gBAAgB,EAAE,eAAe,EAAE,UAAU,EAAE,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keeper-security/keeper-js-ui",
|
|
3
|
-
"version": "0.28.
|
|
3
|
+
"version": "0.28.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "React components built for accessibility, consistency, and speed.",
|
|
6
6
|
"types": "dist/types/index.d.ts",
|
|
@@ -38,53 +38,51 @@
|
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@radix-ui/react-collapsible": "^1.1.12",
|
|
42
|
-
"@radix-ui/react-tabs": "^1.1.13",
|
|
43
41
|
"class-variance-authority": "^0.7.1",
|
|
44
42
|
"clsx": "^2.1.1",
|
|
45
43
|
"radix-ui": "^1.4.3",
|
|
46
44
|
"tailwind-merge": "^3.4.0"
|
|
47
45
|
},
|
|
48
46
|
"devDependencies": {
|
|
49
|
-
"@chromatic-com/storybook": "^5.1
|
|
50
|
-
"@commitlint/cli": "^
|
|
51
|
-
"@commitlint/config-conventional": "^
|
|
52
|
-
"@eslint/js": "^
|
|
53
|
-
"@storybook/addon-a11y": "10.
|
|
54
|
-
"@storybook/addon-docs": "10.
|
|
55
|
-
"@storybook/addon-themes": "10.
|
|
56
|
-
"@storybook/addon-vitest": "10.
|
|
57
|
-
"@storybook/react-vite": "10.
|
|
47
|
+
"@chromatic-com/storybook": "^5.2.1",
|
|
48
|
+
"@commitlint/cli": "^21.0.2",
|
|
49
|
+
"@commitlint/config-conventional": "^21.0.2",
|
|
50
|
+
"@eslint/js": "^10.0.1",
|
|
51
|
+
"@storybook/addon-a11y": "10.4.6",
|
|
52
|
+
"@storybook/addon-docs": "10.4.6",
|
|
53
|
+
"@storybook/addon-themes": "10.4.6",
|
|
54
|
+
"@storybook/addon-vitest": "10.4.6",
|
|
55
|
+
"@storybook/react-vite": "10.4.6",
|
|
58
56
|
"@tailwindcss/vite": "^4.1.18",
|
|
59
|
-
"@types/node": "^
|
|
57
|
+
"@types/node": "^24.13.2",
|
|
60
58
|
"@types/react": "^18.3.17",
|
|
61
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
62
|
-
"@typescript-eslint/parser": "^8.
|
|
63
|
-
"@vitejs/plugin-react
|
|
64
|
-
"@vitest/browser-playwright": "^4.1.
|
|
65
|
-
"@vitest/coverage-v8": "^4.1.
|
|
66
|
-
"cz-git": "^1.
|
|
67
|
-
"czg": "^1.
|
|
68
|
-
"eslint": "^10.0
|
|
69
|
-
"eslint-plugin-react-refresh": "^0.
|
|
70
|
-
"eslint-plugin-storybook": "10.
|
|
71
|
-
"globals": "^
|
|
59
|
+
"@typescript-eslint/eslint-plugin": "^8.62.0",
|
|
60
|
+
"@typescript-eslint/parser": "^8.62.0",
|
|
61
|
+
"@vitejs/plugin-react": "^6.0.2",
|
|
62
|
+
"@vitest/browser-playwright": "^4.1.9",
|
|
63
|
+
"@vitest/coverage-v8": "^4.1.9",
|
|
64
|
+
"cz-git": "^1.13.1",
|
|
65
|
+
"czg": "^1.13.1",
|
|
66
|
+
"eslint": "^10.5.0",
|
|
67
|
+
"eslint-plugin-react-refresh": "^0.5.3",
|
|
68
|
+
"eslint-plugin-storybook": "10.4.6",
|
|
69
|
+
"globals": "^17.7.0",
|
|
72
70
|
"husky": "^9.1.7",
|
|
73
|
-
"lint-staged": "^
|
|
74
|
-
"playwright": "^1.
|
|
75
|
-
"prettier": "^3.
|
|
76
|
-
"prettier-plugin-tailwindcss": "^0.
|
|
71
|
+
"lint-staged": "^17.0.8",
|
|
72
|
+
"playwright": "^1.61.0",
|
|
73
|
+
"prettier": "^3.8.4",
|
|
74
|
+
"prettier-plugin-tailwindcss": "^0.8.0",
|
|
77
75
|
"react": "^18.3.1",
|
|
78
76
|
"react-dom": "^18.3.1",
|
|
79
77
|
"remark-gfm": "^4.0.1",
|
|
80
|
-
"storybook": "10.
|
|
81
|
-
"storybook-addon-rtl": "^3.0.
|
|
78
|
+
"storybook": "10.4.6",
|
|
79
|
+
"storybook-addon-rtl": "^3.0.2",
|
|
82
80
|
"tailwindcss": "^4.1.18",
|
|
83
|
-
"tsc-alias": "^1.8.
|
|
81
|
+
"tsc-alias": "^1.8.17",
|
|
84
82
|
"tw-animate-css": "^1.4.0",
|
|
85
|
-
"typescript": "^
|
|
86
|
-
"vite": "^
|
|
87
|
-
"vitest": "^4.1.
|
|
83
|
+
"typescript": "^6.0.3",
|
|
84
|
+
"vite": "^8.0.16",
|
|
85
|
+
"vitest": "^4.1.9"
|
|
88
86
|
},
|
|
89
87
|
"peerDependencies": {
|
|
90
88
|
"react": "^18.3.1",
|
|
@@ -101,6 +99,7 @@
|
|
|
101
99
|
"test": "vitest run --",
|
|
102
100
|
"test:ci": "pnpm test --",
|
|
103
101
|
"test:storybook": "vitest --project=storybook",
|
|
102
|
+
"test:storybook:headed": "vitest --project=storybook --browser.headless=false",
|
|
104
103
|
"test:unit": "vitest --project=unit",
|
|
105
104
|
"typecheck": "tsc -p tsconfig.app.json --noEmit",
|
|
106
105
|
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
|