@stokelp/ui 1.14.2 → 1.16.0

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.
@@ -0,0 +1,21 @@
1
+ import { ComponentProps, ForwardRefExoticComponent, DetailedHTMLProps, ButtonHTMLAttributes, DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES, RefObject, HTMLAttributes } from 'react';
2
+ import { ComponentVariants } from '../../utils/slots.tsx';
3
+ import { StyledComponent } from '@stokelp/styled-system/jsx';
4
+ import { PolymorphicProps } from '@ark-ui/react';
5
+ import { ActionCardRecipe } from '@stokelp/styled-system/recipes';
6
+
7
+ export declare const ActionCard: ComponentVariants<StyledComponent<ForwardRefExoticComponent<Omit< DetailedHTMLProps<ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
8
+ ref?: ((instance: HTMLButtonElement | null) => void | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | RefObject<HTMLButtonElement> | null | undefined;
9
+ } & PolymorphicProps>, {}>, ActionCardRecipe>;
10
+ export declare const ActionCardTitle: StyledComponent<ForwardRefExoticComponent<Omit< DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref"> & {
11
+ ref?: ((instance: HTMLHeadingElement | null) => void | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | RefObject<HTMLHeadingElement> | null | undefined;
12
+ } & PolymorphicProps>, {}>;
13
+ export declare const ActionCardDescription: StyledComponent<ForwardRefExoticComponent<Omit< DetailedHTMLProps<HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & {
14
+ ref?: ((instance: HTMLParagraphElement | null) => void | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | RefObject<HTMLParagraphElement> | null | undefined;
15
+ } & PolymorphicProps>, {}>;
16
+ export interface ActionCardProps extends ComponentProps<typeof ActionCard> {
17
+ }
18
+ export interface ActionCardTitleProps extends ComponentProps<typeof ActionCardTitle> {
19
+ }
20
+ export interface ActionCardDescriptionProps extends ComponentProps<typeof ActionCardDescription> {
21
+ }
@@ -0,0 +1 @@
1
+ export * from './ActionCard';
@@ -0,0 +1,24 @@
1
+ import { ComponentProps, ForwardRefExoticComponent, DetailedHTMLProps, HTMLAttributes, DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES, RefObject, ButtonHTMLAttributes } from 'react';
2
+ import { ComponentVariants } from '../../utils/slots';
3
+ import { StyledComponent } from '@stokelp/styled-system/jsx';
4
+ import { PolymorphicProps } from '@ark-ui/react';
5
+ import { ChipRecipe } from '@stokelp/styled-system/recipes';
6
+
7
+ export declare const Chip: ComponentVariants<StyledComponent<ForwardRefExoticComponent<Omit< DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
8
+ ref?: ((instance: HTMLSpanElement | null) => void | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | RefObject<HTMLSpanElement> | null | undefined;
9
+ } & PolymorphicProps>, {}>, ChipRecipe>;
10
+ export declare const ChipAvatar: StyledComponent<"img", {}>;
11
+ export declare const ChipLabel: StyledComponent<ForwardRefExoticComponent<Omit< DetailedHTMLProps<HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & {
12
+ ref?: ((instance: HTMLParagraphElement | null) => void | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | RefObject<HTMLParagraphElement> | null | undefined;
13
+ } & PolymorphicProps>, {}>;
14
+ export declare const ChipClearTrigger: StyledComponent<ForwardRefExoticComponent<Omit< DetailedHTMLProps<ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
15
+ ref?: ((instance: HTMLButtonElement | null) => void | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | RefObject<HTMLButtonElement> | null | undefined;
16
+ } & PolymorphicProps>, {}>;
17
+ export interface ChipProps extends ComponentProps<typeof Chip> {
18
+ }
19
+ export interface ChipAvatarProps extends ComponentProps<typeof ChipAvatar> {
20
+ }
21
+ export interface ChipLabelProps extends ComponentProps<typeof ChipLabel> {
22
+ }
23
+ export interface ChipClearTriggerProps extends ComponentProps<typeof ChipClearTrigger> {
24
+ }
@@ -0,0 +1 @@
1
+ export * from './Chip';
@@ -15,3 +15,5 @@ export * from './date-picker';
15
15
  export * from './tag';
16
16
  export * from './radio-button-group';
17
17
  export * from './radio-group';
18
+ export * from './chip';
19
+ export * from './action-card';