@brycks/core-front 0.2.1 → 0.2.3

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.
Files changed (43) hide show
  1. package/dist/components/data/InfoItem/InfoItem.d.ts +44 -0
  2. package/dist/components/data/InfoItem/InfoItem.d.ts.map +1 -0
  3. package/dist/components/data/InfoItem/index.d.ts +2 -0
  4. package/dist/components/data/InfoItem/index.d.ts.map +1 -0
  5. package/dist/components/data/index.d.ts +1 -0
  6. package/dist/components/data/index.d.ts.map +1 -1
  7. package/dist/components/form/Form/Form.d.ts +16 -0
  8. package/dist/components/form/Form/Form.d.ts.map +1 -0
  9. package/dist/components/form/Form/index.d.ts +2 -0
  10. package/dist/components/form/Form/index.d.ts.map +1 -0
  11. package/dist/components/form/FormGroup/FormGroup.d.ts +31 -0
  12. package/dist/components/form/FormGroup/FormGroup.d.ts.map +1 -0
  13. package/dist/components/form/FormGroup/index.d.ts +2 -0
  14. package/dist/components/form/FormGroup/index.d.ts.map +1 -0
  15. package/dist/components/form/FormLabel/FormLabel.d.ts +20 -0
  16. package/dist/components/form/FormLabel/FormLabel.d.ts.map +1 -0
  17. package/dist/components/form/FormLabel/index.d.ts +2 -0
  18. package/dist/components/form/FormLabel/index.d.ts.map +1 -0
  19. package/dist/components/form/index.d.ts +3 -0
  20. package/dist/components/form/index.d.ts.map +1 -1
  21. package/dist/components/typography/Text/Text.d.ts +13 -11
  22. package/dist/components/typography/Text/Text.d.ts.map +1 -1
  23. package/dist/components/utility/Avatar/Avatar.d.ts +23 -0
  24. package/dist/components/utility/Avatar/Avatar.d.ts.map +1 -0
  25. package/dist/components/utility/Avatar/index.d.ts +3 -0
  26. package/dist/components/utility/Avatar/index.d.ts.map +1 -0
  27. package/dist/components/utility/Logo/Logo.d.ts +15 -0
  28. package/dist/components/utility/Logo/Logo.d.ts.map +1 -0
  29. package/dist/components/utility/Logo/index.d.ts +3 -0
  30. package/dist/components/utility/Logo/index.d.ts.map +1 -0
  31. package/dist/components/utility/ScreenReaderOnly/ScreenReaderOnly.d.ts +17 -0
  32. package/dist/components/utility/ScreenReaderOnly/ScreenReaderOnly.d.ts.map +1 -0
  33. package/dist/components/utility/ScreenReaderOnly/index.d.ts +2 -0
  34. package/dist/components/utility/ScreenReaderOnly/index.d.ts.map +1 -0
  35. package/dist/components/utility/index.d.ts +3 -0
  36. package/dist/components/utility/index.d.ts.map +1 -1
  37. package/dist/index.cjs +15 -15
  38. package/dist/index.cjs.map +1 -1
  39. package/dist/index.d.ts +10 -0
  40. package/dist/index.d.ts.map +1 -1
  41. package/dist/index.js +1725 -1359
  42. package/dist/index.js.map +1 -1
  43. package/package.json +1 -1
@@ -0,0 +1,44 @@
1
+ import { HTMLAttributes, ReactNode } from 'react';
2
+ export type InfoItemLayout = 'vertical' | 'horizontal' | 'inline';
3
+ export type InfoItemSize = 'sm' | 'md' | 'lg';
4
+ export interface InfoItemProps extends HTMLAttributes<HTMLDivElement> {
5
+ /** Label text */
6
+ label: ReactNode;
7
+ /** Value to display */
8
+ value?: ReactNode;
9
+ /** Children (alternative to value prop) */
10
+ children?: ReactNode;
11
+ /** Layout direction */
12
+ layout?: InfoItemLayout;
13
+ /** Size variant */
14
+ size?: InfoItemSize;
15
+ /** Hide if value is empty */
16
+ hideEmpty?: boolean;
17
+ /** Custom label width (for horizontal layout) */
18
+ labelWidth?: string | number;
19
+ /** Custom class name */
20
+ className?: string;
21
+ /** Test ID */
22
+ testId?: string;
23
+ }
24
+ export declare const InfoItem: import('react').ForwardRefExoticComponent<InfoItemProps & import('react').RefAttributes<HTMLDivElement>>;
25
+ /**
26
+ * InfoList Component
27
+ *
28
+ * A container for multiple InfoItem components.
29
+ * Provides consistent spacing and layout for info items.
30
+ */
31
+ export interface InfoListProps extends HTMLAttributes<HTMLDListElement> {
32
+ /** Gap between items */
33
+ gap?: 'sm' | 'md' | 'lg';
34
+ /** Number of columns */
35
+ columns?: 1 | 2 | 3 | 4;
36
+ /** Children (InfoItem components) */
37
+ children: ReactNode;
38
+ /** Custom class name */
39
+ className?: string;
40
+ /** Test ID */
41
+ testId?: string;
42
+ }
43
+ export declare const InfoList: import('react').ForwardRefExoticComponent<InfoListProps & import('react').RefAttributes<HTMLDListElement>>;
44
+ //# sourceMappingURL=InfoItem.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"InfoItem.d.ts","sourceRoot":"","sources":["../../../../src/components/data/InfoItem/InfoItem.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAc,KAAK,cAAc,EAAE,KAAK,SAAS,EAAsB,MAAM,OAAO,CAAA;AAI3F,MAAM,MAAM,cAAc,GAAG,UAAU,GAAG,YAAY,GAAG,QAAQ,CAAA;AACjE,MAAM,MAAM,YAAY,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAA;AAE7C,MAAM,WAAW,aAAc,SAAQ,cAAc,CAAC,cAAc,CAAC;IACnE,iBAAiB;IACjB,KAAK,EAAE,SAAS,CAAA;IAChB,uBAAuB;IACvB,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,2CAA2C;IAC3C,QAAQ,CAAC,EAAE,SAAS,CAAA;IACpB,uBAAuB;IACvB,MAAM,CAAC,EAAE,cAAc,CAAA;IACvB,mBAAmB;IACnB,IAAI,CAAC,EAAE,YAAY,CAAA;IACnB,6BAA6B;IAC7B,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,iDAAiD;IACjD,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IAC5B,wBAAwB;IACxB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,cAAc;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAoBD,eAAO,MAAM,QAAQ,0GA0FnB,CAAA;AAIF;;;;;GAKG;AACH,MAAM,WAAW,aAAc,SAAQ,cAAc,CAAC,gBAAgB,CAAC;IACrE,wBAAwB;IACxB,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAA;IACxB,wBAAwB;IACxB,OAAO,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAA;IACvB,qCAAqC;IACrC,QAAQ,EAAE,SAAS,CAAA;IACnB,wBAAwB;IACxB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,cAAc;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAQD,eAAO,MAAM,QAAQ,4GAoCnB,CAAA"}
@@ -0,0 +1,2 @@
1
+ export { InfoItem, InfoList, type InfoItemProps, type InfoItemLayout, type InfoItemSize, type InfoListProps, } from './InfoItem';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/data/InfoItem/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,QAAQ,EACR,QAAQ,EACR,KAAK,aAAa,EAClB,KAAK,cAAc,EACnB,KAAK,YAAY,EACjB,KAAK,aAAa,GACnB,MAAM,YAAY,CAAA"}
@@ -3,4 +3,5 @@
3
3
  */
4
4
  export * from './Table';
5
5
  export * from './List';
6
+ export * from './InfoItem';
6
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/data/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,cAAc,SAAS,CAAA;AACvB,cAAc,QAAQ,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/data/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,cAAc,SAAS,CAAA;AACvB,cAAc,QAAQ,CAAA;AACtB,cAAc,YAAY,CAAA"}
@@ -0,0 +1,16 @@
1
+ import { FormHTMLAttributes, ReactNode } from 'react';
2
+ export type FormGap = 'sm' | 'md' | 'lg' | 'xl';
3
+ export interface FormProps extends FormHTMLAttributes<HTMLFormElement> {
4
+ /** Gap between form groups */
5
+ gap?: FormGap;
6
+ /** Disable the form */
7
+ disabled?: boolean;
8
+ /** Form children */
9
+ children: ReactNode;
10
+ /** Custom class name */
11
+ className?: string;
12
+ /** Test ID */
13
+ testId?: string;
14
+ }
15
+ export declare const Form: import('react').ForwardRefExoticComponent<FormProps & import('react').RefAttributes<HTMLFormElement>>;
16
+ //# sourceMappingURL=Form.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Form.d.ts","sourceRoot":"","sources":["../../../../src/components/form/Form/Form.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAc,KAAK,kBAAkB,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAA;AAI3E,MAAM,MAAM,OAAO,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAA;AAE/C,MAAM,WAAW,SAAU,SAAQ,kBAAkB,CAAC,eAAe,CAAC;IACpE,8BAA8B;IAC9B,GAAG,CAAC,EAAE,OAAO,CAAA;IACb,uBAAuB;IACvB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,oBAAoB;IACpB,QAAQ,EAAE,SAAS,CAAA;IACnB,wBAAwB;IACxB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,cAAc;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AASD,eAAO,MAAM,IAAI,uGAwDf,CAAA"}
@@ -0,0 +1,2 @@
1
+ export { Form, type FormProps, type FormGap } from './Form';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/form/Form/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,KAAK,SAAS,EAAE,KAAK,OAAO,EAAE,MAAM,QAAQ,CAAA"}
@@ -0,0 +1,31 @@
1
+ import { HTMLAttributes, ReactNode } from 'react';
2
+ import { FormLabelSize } from '../FormLabel';
3
+ export type FormGroupGap = 'none' | 'xs' | 'sm' | 'md';
4
+ export interface FormGroupProps extends HTMLAttributes<HTMLDivElement> {
5
+ /** Label text for the form field */
6
+ label?: ReactNode;
7
+ /** Form field ID - auto-generated if not provided */
8
+ fieldId?: string;
9
+ /** Label size */
10
+ labelSize?: FormLabelSize;
11
+ /** Whether the field is required */
12
+ required?: boolean;
13
+ /** Whether the field is disabled */
14
+ disabled?: boolean;
15
+ /** Optional description text below the label */
16
+ description?: ReactNode;
17
+ /** Error message to display */
18
+ error?: ReactNode;
19
+ /** Helper text to display below the input */
20
+ helperText?: ReactNode;
21
+ /** Gap between label and input */
22
+ gap?: FormGroupGap;
23
+ /** Children (the form input) */
24
+ children: ReactNode;
25
+ /** Custom class name */
26
+ className?: string;
27
+ /** Test ID */
28
+ testId?: string;
29
+ }
30
+ export declare const FormGroup: import('react').ForwardRefExoticComponent<FormGroupProps & import('react').RefAttributes<HTMLDivElement>>;
31
+ //# sourceMappingURL=FormGroup.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FormGroup.d.ts","sourceRoot":"","sources":["../../../../src/components/form/FormGroup/FormGroup.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAc,KAAK,cAAc,EAAE,KAAK,SAAS,EAAS,MAAM,OAAO,CAAA;AAG9E,OAAO,EAAa,KAAK,aAAa,EAAE,MAAM,cAAc,CAAA;AAE5D,MAAM,MAAM,YAAY,GAAG,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAA;AAEtD,MAAM,WAAW,cAAe,SAAQ,cAAc,CAAC,cAAc,CAAC;IACpE,oCAAoC;IACpC,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,qDAAqD;IACrD,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,iBAAiB;IACjB,SAAS,CAAC,EAAE,aAAa,CAAA;IACzB,oCAAoC;IACpC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,oCAAoC;IACpC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,gDAAgD;IAChD,WAAW,CAAC,EAAE,SAAS,CAAA;IACvB,+BAA+B;IAC/B,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,6CAA6C;IAC7C,UAAU,CAAC,EAAE,SAAS,CAAA;IACtB,kCAAkC;IAClC,GAAG,CAAC,EAAE,YAAY,CAAA;IAClB,gCAAgC;IAChC,QAAQ,EAAE,SAAS,CAAA;IACnB,wBAAwB;IACxB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,cAAc;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AASD,eAAO,MAAM,SAAS,2GAkFpB,CAAA"}
@@ -0,0 +1,2 @@
1
+ export { FormGroup, type FormGroupProps, type FormGroupGap } from './FormGroup';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/form/FormGroup/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,KAAK,cAAc,EAAE,KAAK,YAAY,EAAE,MAAM,aAAa,CAAA"}
@@ -0,0 +1,20 @@
1
+ import { LabelHTMLAttributes, ReactNode } from 'react';
2
+ export type FormLabelSize = 'sm' | 'md' | 'lg';
3
+ export interface FormLabelProps extends LabelHTMLAttributes<HTMLLabelElement> {
4
+ /** Label text */
5
+ children: ReactNode;
6
+ /** Label size */
7
+ size?: FormLabelSize;
8
+ /** Whether the field is required */
9
+ required?: boolean;
10
+ /** Whether the field is disabled */
11
+ disabled?: boolean;
12
+ /** Optional description text */
13
+ description?: ReactNode;
14
+ /** Custom class name */
15
+ className?: string;
16
+ /** Test ID */
17
+ testId?: string;
18
+ }
19
+ export declare const FormLabel: import('react').ForwardRefExoticComponent<FormLabelProps & import('react').RefAttributes<HTMLLabelElement>>;
20
+ //# sourceMappingURL=FormLabel.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FormLabel.d.ts","sourceRoot":"","sources":["../../../../src/components/form/FormLabel/FormLabel.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAc,KAAK,mBAAmB,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAA;AAI5E,MAAM,MAAM,aAAa,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAA;AAE9C,MAAM,WAAW,cAAe,SAAQ,mBAAmB,CAAC,gBAAgB,CAAC;IAC3E,iBAAiB;IACjB,QAAQ,EAAE,SAAS,CAAA;IACnB,iBAAiB;IACjB,IAAI,CAAC,EAAE,aAAa,CAAA;IACpB,oCAAoC;IACpC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,oCAAoC;IACpC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,gCAAgC;IAChC,WAAW,CAAC,EAAE,SAAS,CAAA;IACvB,wBAAwB;IACxB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,cAAc;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAQD,eAAO,MAAM,SAAS,6GAqEpB,CAAA"}
@@ -0,0 +1,2 @@
1
+ export { FormLabel, type FormLabelProps, type FormLabelSize } from './FormLabel';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/form/FormLabel/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,KAAK,cAAc,EAAE,KAAK,aAAa,EAAE,MAAM,aAAa,CAAA"}
@@ -15,4 +15,7 @@ export * from './DateInput';
15
15
  export * from './FileInput';
16
16
  export * from './FormField';
17
17
  export * from './FieldError';
18
+ export * from './Form';
19
+ export * from './FormLabel';
20
+ export * from './FormGroup';
18
21
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/form/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,cAAc,SAAS,CAAA;AACvB,cAAc,aAAa,CAAA;AAC3B,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA;AAC1B,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA;AAC1B,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AACxB,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,cAAc,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/form/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,cAAc,SAAS,CAAA;AACvB,cAAc,aAAa,CAAA;AAC3B,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA;AAC1B,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA;AAC1B,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AACxB,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,cAAc,CAAA;AAC5B,cAAc,QAAQ,CAAA;AACtB,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA"}
@@ -1,8 +1,6 @@
1
1
  import { default as React, ElementType, ComponentPropsWithRef, CSSProperties, ReactNode, ComponentPropsWithoutRef } from 'react';
2
2
  import { FontSize, FontWeight, LineHeight } from '../../../design-system';
3
3
  export interface TextOwnProps {
4
- /** The element type to render */
5
- as?: ElementType;
6
4
  /** Text style preset */
7
5
  variant?: 'body' | 'bodyLarge' | 'bodySmall' | 'label' | 'caption' | 'overline' | 'code';
8
6
  /** Font size */
@@ -28,14 +26,18 @@ export interface TextOwnProps {
28
26
  /** Test ID */
29
27
  testId?: string;
30
28
  }
31
- export type TextProps<E extends ElementType = 'p'> = TextOwnProps & Omit<ComponentPropsWithoutRef<E>, keyof TextOwnProps>;
32
- interface TextComponent {
33
- <E extends ElementType = 'p'>(props: TextProps<E> & {
34
- ref?: ComponentPropsWithRef<E>['ref'];
35
- }): React.JSX.Element | null;
36
- displayName?: string;
37
- }
38
- export declare const Text: TextComponent;
39
- export declare const Code: TextComponent;
29
+ export type TextProps<E extends ElementType = 'p'> = TextOwnProps & Omit<ComponentPropsWithoutRef<E>, keyof TextOwnProps> & {
30
+ /** The element type to render */
31
+ as?: E;
32
+ };
33
+ type TextComponent = <E extends ElementType = 'p'>(props: TextProps<E> & {
34
+ ref?: ComponentPropsWithRef<E>['ref'];
35
+ }) => React.JSX.Element | null;
36
+ export declare const Text: TextComponent & {
37
+ displayName: string;
38
+ };
39
+ export declare const Code: TextComponent & {
40
+ displayName: string;
41
+ };
40
42
  export {};
41
43
  //# sourceMappingURL=Text.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../../../src/components/typography/Text/Text.tsx"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAE,EAEZ,KAAK,WAAW,EAChB,KAAK,qBAAqB,EAC1B,KAAK,aAAa,EAClB,KAAK,SAAS,EACd,KAAK,wBAAwB,EAC9B,MAAM,OAAO,CAAA;AACd,OAAO,EAML,KAAK,QAAQ,EACb,KAAK,UAAU,EACf,KAAK,UAAU,EAChB,MAAM,wBAAwB,CAAA;AAG/B,MAAM,WAAW,YAAY;IAC3B,iCAAiC;IACjC,EAAE,CAAC,EAAE,WAAW,CAAA;IAChB,wBAAwB;IACxB,OAAO,CAAC,EAAE,MAAM,GAAG,WAAW,GAAG,WAAW,GAAG,OAAO,GAAG,SAAS,GAAG,UAAU,GAAG,MAAM,CAAA;IACxF,gBAAgB;IAChB,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,kBAAkB;IAClB,MAAM,CAAC,EAAE,UAAU,CAAA;IACnB,kBAAkB;IAClB,OAAO,CAAC,EAAE,UAAU,CAAA;IACpB,qBAAqB;IACrB,KAAK,CAAC,EAAE,aAAa,CAAC,WAAW,CAAC,CAAA;IAClC,gDAAgD;IAChD,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,iDAAiD;IACjD,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,4CAA4C;IAC5C,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,wBAAwB;IACxB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,2BAA2B;IAC3B,KAAK,CAAC,EAAE,aAAa,CAAA;IACrB,eAAe;IACf,QAAQ,CAAC,EAAE,SAAS,CAAA;IACpB,cAAc;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,MAAM,MAAM,SAAS,CAAC,CAAC,SAAS,WAAW,GAAG,GAAG,IAAI,YAAY,GAC/D,IAAI,CAAC,wBAAwB,CAAC,CAAC,CAAC,EAAE,MAAM,YAAY,CAAC,CAAA;AAEvD,UAAU,aAAa;IACrB,CAAC,CAAC,SAAS,WAAW,GAAG,GAAG,EAC1B,KAAK,EAAE,SAAS,CAAC,CAAC,CAAC,GAAG;QAAE,GAAG,CAAC,EAAE,qBAAqB,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAA;KAAE,GAC9D,KAAK,CAAC,GAAG,CAAC,OAAO,GAAG,IAAI,CAAA;IAC3B,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB;AAkFD,eAAO,MAAM,IAAI,EAA4B,aAAa,CAAA;AAwB1D,eAAO,MAAM,IAAI,EAA4B,aAAa,CAAA"}
1
+ {"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../../../src/components/typography/Text/Text.tsx"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAE,EAEZ,KAAK,WAAW,EAChB,KAAK,qBAAqB,EAC1B,KAAK,aAAa,EAClB,KAAK,SAAS,EACd,KAAK,wBAAwB,EAC9B,MAAM,OAAO,CAAA;AACd,OAAO,EAML,KAAK,QAAQ,EACb,KAAK,UAAU,EACf,KAAK,UAAU,EAChB,MAAM,wBAAwB,CAAA;AAG/B,MAAM,WAAW,YAAY;IAC3B,wBAAwB;IACxB,OAAO,CAAC,EAAE,MAAM,GAAG,WAAW,GAAG,WAAW,GAAG,OAAO,GAAG,SAAS,GAAG,UAAU,GAAG,MAAM,CAAA;IACxF,gBAAgB;IAChB,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,kBAAkB;IAClB,MAAM,CAAC,EAAE,UAAU,CAAA;IACnB,kBAAkB;IAClB,OAAO,CAAC,EAAE,UAAU,CAAA;IACpB,qBAAqB;IACrB,KAAK,CAAC,EAAE,aAAa,CAAC,WAAW,CAAC,CAAA;IAClC,gDAAgD;IAChD,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,iDAAiD;IACjD,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,4CAA4C;IAC5C,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,wBAAwB;IACxB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,2BAA2B;IAC3B,KAAK,CAAC,EAAE,aAAa,CAAA;IACrB,eAAe;IACf,QAAQ,CAAC,EAAE,SAAS,CAAA;IACpB,cAAc;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,MAAM,MAAM,SAAS,CAAC,CAAC,SAAS,WAAW,GAAG,GAAG,IAAI,YAAY,GAC/D,IAAI,CAAC,wBAAwB,CAAC,CAAC,CAAC,EAAE,MAAM,YAAY,CAAC,GAAG;IACtD,iCAAiC;IACjC,EAAE,CAAC,EAAE,CAAC,CAAA;CACP,CAAA;AAEH,KAAK,aAAa,GAAG,CAAC,CAAC,SAAS,WAAW,GAAG,GAAG,EAC/C,KAAK,EAAE,SAAS,CAAC,CAAC,CAAC,GAAG;IAAE,GAAG,CAAC,EAAE,qBAAqB,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAA;CAAE,KAC5D,KAAK,CAAC,GAAG,CAAC,OAAO,GAAG,IAAI,CAAA;AAmF7B,eAAO,MAAM,IAAI;;CAAyD,CAAA;AAuB1E,eAAO,MAAM,IAAI;;CAAyD,CAAA"}
@@ -0,0 +1,23 @@
1
+ import { ReactNode, ButtonHTMLAttributes } from 'react';
2
+ type AvatarSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
3
+ export interface AvatarProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'children'> {
4
+ /** Size of the avatar */
5
+ size?: AvatarSize;
6
+ /** Name to display initials from */
7
+ name?: string;
8
+ /** Image source URL */
9
+ src?: string;
10
+ /** Alt text for the image */
11
+ alt?: string;
12
+ /** Custom content to render inside */
13
+ children?: ReactNode;
14
+ /** Whether the avatar is interactive (button) or static (div) */
15
+ interactive?: boolean;
16
+ /** Custom class name */
17
+ className?: string;
18
+ /** Test ID */
19
+ testId?: string;
20
+ }
21
+ export declare const Avatar: import('react').ForwardRefExoticComponent<AvatarProps & import('react').RefAttributes<HTMLButtonElement | HTMLDivElement>>;
22
+ export {};
23
+ //# sourceMappingURL=Avatar.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Avatar.d.ts","sourceRoot":"","sources":["../../../../src/components/utility/Avatar/Avatar.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAkC,KAAK,SAAS,EAAE,KAAK,oBAAoB,EAAE,MAAM,OAAO,CAAA;AAGjG,KAAK,UAAU,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAA;AAkBlD,MAAM,WAAW,WAAY,SAAQ,IAAI,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,EAAE,UAAU,CAAC;IAC5F,yBAAyB;IACzB,IAAI,CAAC,EAAE,UAAU,CAAA;IACjB,oCAAoC;IACpC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,uBAAuB;IACvB,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,6BAA6B;IAC7B,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,sCAAsC;IACtC,QAAQ,CAAC,EAAE,SAAS,CAAA;IACpB,iEAAiE;IACjE,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,wBAAwB;IACxB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,cAAc;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAUD,eAAO,MAAM,MAAM,4HAqFlB,CAAA"}
@@ -0,0 +1,3 @@
1
+ export { Avatar } from './Avatar';
2
+ export type { AvatarProps } from './Avatar';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/utility/Avatar/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AACjC,YAAY,EAAE,WAAW,EAAE,MAAM,UAAU,CAAA"}
@@ -0,0 +1,15 @@
1
+ import { ReactNode, HTMLAttributes } from 'react';
2
+ type LogoSize = 'sm' | 'md' | 'lg' | 'xl';
3
+ export interface LogoProps extends HTMLAttributes<HTMLDivElement> {
4
+ /** Size of the logo */
5
+ size?: LogoSize;
6
+ /** Content to display (usually a letter or icon) */
7
+ children?: ReactNode;
8
+ /** Custom class name */
9
+ className?: string;
10
+ /** Test ID */
11
+ testId?: string;
12
+ }
13
+ export declare const Logo: import('react').ForwardRefExoticComponent<LogoProps & import('react').RefAttributes<HTMLDivElement>>;
14
+ export {};
15
+ //# sourceMappingURL=Logo.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Logo.d.ts","sourceRoot":"","sources":["../../../../src/components/utility/Logo/Logo.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAkC,KAAK,SAAS,EAAE,KAAK,cAAc,EAAE,MAAM,OAAO,CAAA;AAG3F,KAAK,QAAQ,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAA;AAuBzC,MAAM,WAAW,SAAU,SAAQ,cAAc,CAAC,cAAc,CAAC;IAC/D,uBAAuB;IACvB,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,oDAAoD;IACpD,QAAQ,CAAC,EAAE,SAAS,CAAA;IACpB,wBAAwB;IACxB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,cAAc;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,eAAO,MAAM,IAAI,sGA6ChB,CAAA"}
@@ -0,0 +1,3 @@
1
+ export { Logo } from './Logo';
2
+ export type { LogoProps } from './Logo';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/utility/Logo/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAA;AAC7B,YAAY,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAA"}
@@ -0,0 +1,17 @@
1
+ import { HTMLAttributes, ReactNode } from 'react';
2
+ export interface ScreenReaderOnlyProps extends HTMLAttributes<HTMLSpanElement> {
3
+ /** Content to be read by screen readers */
4
+ children: ReactNode;
5
+ /** Whether to make content focusable (shows on focus) */
6
+ focusable?: boolean;
7
+ /** Custom class name */
8
+ className?: string;
9
+ /** Test ID */
10
+ testId?: string;
11
+ }
12
+ export declare const ScreenReaderOnly: import('react').ForwardRefExoticComponent<ScreenReaderOnlyProps & import('react').RefAttributes<HTMLSpanElement>>;
13
+ /**
14
+ * Alias for ScreenReaderOnly with a shorter name
15
+ */
16
+ export declare const SrOnly: import('react').ForwardRefExoticComponent<ScreenReaderOnlyProps & import('react').RefAttributes<HTMLSpanElement>>;
17
+ //# sourceMappingURL=ScreenReaderOnly.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ScreenReaderOnly.d.ts","sourceRoot":"","sources":["../../../../src/components/utility/ScreenReaderOnly/ScreenReaderOnly.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EAAc,KAAK,cAAc,EAAE,KAAK,SAAS,EAAsB,MAAM,OAAO,CAAA;AAG3F,MAAM,WAAW,qBAAsB,SAAQ,cAAc,CAAC,eAAe,CAAC;IAC5E,2CAA2C;IAC3C,QAAQ,EAAE,SAAS,CAAA;IACnB,yDAAyD;IACzD,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,wBAAwB;IACxB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,cAAc;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAyBD,eAAO,MAAM,gBAAgB,mHAgC5B,CAAA;AAID;;GAEG;AACH,eAAO,MAAM,MAAM,mHAAmB,CAAA"}
@@ -0,0 +1,2 @@
1
+ export { ScreenReaderOnly, SrOnly, type ScreenReaderOnlyProps, } from './ScreenReaderOnly';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/utility/ScreenReaderOnly/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAChB,MAAM,EACN,KAAK,qBAAqB,GAC3B,MAAM,oBAAoB,CAAA"}
@@ -11,4 +11,7 @@ export * from './EmptyState';
11
11
  export * from './Portal';
12
12
  export * from './FocusTrap';
13
13
  export * from './Overlay';
14
+ export * from './ScreenReaderOnly';
15
+ export * from './Avatar';
16
+ export * from './Logo';
14
17
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/utility/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,cAAc,CAAA;AAC5B,cAAc,UAAU,CAAA;AACxB,cAAc,aAAa,CAAA;AAC3B,cAAc,WAAW,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/utility/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,cAAc,CAAA;AAC5B,cAAc,UAAU,CAAA;AACxB,cAAc,aAAa,CAAA;AAC3B,cAAc,WAAW,CAAA;AACzB,cAAc,oBAAoB,CAAA;AAClC,cAAc,UAAU,CAAA;AACxB,cAAc,QAAQ,CAAA"}