asma-ui-core 3.45.0 → 3.45.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.
@@ -3,5 +3,5 @@ export interface DynamicToolbarLayoutContextValue {
3
3
  filterIconOnly: boolean;
4
4
  trailingIconOnly: boolean;
5
5
  }
6
- export declare const DynamicToolbarLayoutContext: import('node_modules/@types/react').Context<DynamicToolbarLayoutContextValue>;
6
+ export declare const DynamicToolbarLayoutContext: import('react').Context<DynamicToolbarLayoutContextValue>;
7
7
  export declare function useDynamicToolbarLayout(): DynamicToolbarLayoutContextValue;
@@ -2,8 +2,8 @@
2
2
  * @figmaNode none — DS **Section title** typography (Roboto SemiBold 18/28, `delta-800`). Widget/
3
3
  * widget-header heading; theme-safe via the delta token layer.
4
4
  */
5
- export declare const StyledWidgetTitle: import('node_modules/@types/react').ForwardRefExoticComponent<{
5
+ export declare const StyledWidgetTitle: import('react').ForwardRefExoticComponent<{
6
6
  className?: string;
7
7
  } & {
8
- children?: import('node_modules/@types/react').ReactNode | undefined;
9
- } & import('node_modules/@types/react').RefAttributes<HTMLDivElement>>;
8
+ children?: import('react').ReactNode | undefined;
9
+ } & import('react').RefAttributes<HTMLDivElement>>;
@@ -72,5 +72,5 @@ export interface StyledChipProps {
72
72
  * `data-hovered`/`data-focus` attributes MUI set (state tables rely on them). Public props +
73
73
  * `classes`/`sx` slots preserved (DEC-003). TASK-101a.
74
74
  */
75
- export declare const StyledChip: import('node_modules/@types/react').ForwardRefExoticComponent<StyledChipProps & import('node_modules/@types/react').RefAttributes<HTMLDivElement>>;
75
+ export declare const StyledChip: import('react').ForwardRefExoticComponent<StyledChipProps & import('react').RefAttributes<HTMLDivElement>>;
76
76
  export {};
@@ -25,4 +25,4 @@ export interface StyledInteractiveChipProps extends ComponentProps<typeof Styled
25
25
  * checked/read-only colours, so the old nested `.MuiChip-avatar .Mui*` `sx` is gone). Public props
26
26
  * preserved (DEC-003). TASK-101a.
27
27
  */
28
- export declare const StyledInteractiveChip: import('node_modules/@types/react').ForwardRefExoticComponent<Omit<StyledInteractiveChipProps, "ref"> & import('node_modules/@types/react').RefAttributes<HTMLDivElement>>;
28
+ export declare const StyledInteractiveChip: import('react').ForwardRefExoticComponent<Omit<StyledInteractiveChipProps, "ref"> & import('react').RefAttributes<HTMLDivElement>>;
@@ -6,5 +6,5 @@ interface StyledAlertSnackbarProps extends CustomContentProps {
6
6
  alertVariant?: 'standard' | 'filled' | 'outlined';
7
7
  closeButton?: boolean;
8
8
  }
9
- export declare const StyledAlertSnackbar: import('node_modules/@types/react').ForwardRefExoticComponent<StyledAlertSnackbarProps & import('node_modules/@types/react').RefAttributes<HTMLDivElement>>;
9
+ export declare const StyledAlertSnackbar: import('react').ForwardRefExoticComponent<StyledAlertSnackbarProps & import('react').RefAttributes<HTMLDivElement>>;
10
10
  export {};
@@ -13,4 +13,4 @@ export interface StyledDefaultSnackbarProps extends CustomContentProps {
13
13
  /** @figmaProp Label = the bold severity title (falls back to the severity name) */
14
14
  title?: SnackbarMessage;
15
15
  }
16
- export declare const StyledDefaultSnackbar: import('node_modules/@types/react').ForwardRefExoticComponent<StyledDefaultSnackbarProps & import('node_modules/@types/react').RefAttributes<HTMLDivElement>>;
16
+ export declare const StyledDefaultSnackbar: import('react').ForwardRefExoticComponent<StyledDefaultSnackbarProps & import('react').RefAttributes<HTMLDivElement>>;
@@ -7,5 +7,5 @@ interface StyledInfoSnackbarProps extends CustomContentProps {
7
7
  closeButton?: boolean;
8
8
  type?: 'loading';
9
9
  }
10
- export declare const StyledInfoSnackbar: import('node_modules/@types/react').ForwardRefExoticComponent<StyledInfoSnackbarProps & import('node_modules/@types/react').RefAttributes<HTMLDivElement>>;
10
+ export declare const StyledInfoSnackbar: import('react').ForwardRefExoticComponent<StyledInfoSnackbarProps & import('react').RefAttributes<HTMLDivElement>>;
11
11
  export {};
@@ -6,5 +6,5 @@ export interface RadioGroupContextValue {
6
6
  onSelect: (value: RadioValue) => void;
7
7
  }
8
8
  /** Shared state for the native radio group (replaces `@base-ui/react`'s RadioGroup context). */
9
- export declare const RadioGroupContext: import('node_modules/@types/react').Context<RadioGroupContextValue | null>;
9
+ export declare const RadioGroupContext: import('react').Context<RadioGroupContextValue | null>;
10
10
  export declare const useRadioGroupContext: () => RadioGroupContextValue | null;
@@ -10,5 +10,5 @@ export interface FormControlContextValue {
10
10
  setFocused: (value: boolean) => void;
11
11
  setFilled: (value: boolean) => void;
12
12
  }
13
- export declare const FormControlContext: import('node_modules/@types/react').Context<FormControlContextValue | null>;
13
+ export declare const FormControlContext: import('react').Context<FormControlContextValue | null>;
14
14
  export declare const useFormControlContext: () => FormControlContextValue | null;
@@ -7,5 +7,5 @@ export interface TabsContextValue {
7
7
  /** Registers a tab button so the parent can measure the active indicator and drive arrow-key focus. */
8
8
  register: (value: TabValue, node: HTMLButtonElement | null) => void;
9
9
  }
10
- export declare const TabsContext: import('node_modules/@types/react').Context<TabsContextValue | null>;
10
+ export declare const TabsContext: import('react').Context<TabsContextValue | null>;
11
11
  export declare const useTabsContext: () => TabsContextValue | null;
@@ -6,5 +6,5 @@ export interface AccordionContextValue {
6
6
  panelId: string;
7
7
  }
8
8
  /** Shared open-state + ARIA ids for the accordion compound (replaces `@base-ui/react`). */
9
- export declare const AccordionContext: import('node_modules/@types/react').Context<AccordionContextValue | null>;
9
+ export declare const AccordionContext: import('react').Context<AccordionContextValue | null>;
10
10
  export declare const useAccordionContext: () => AccordionContextValue;
@@ -1,4 +1,4 @@
1
1
  export declare const TableSkeleton: ({ colSpan, rowHeight }: {
2
2
  colSpan: number;
3
3
  rowHeight?: number;
4
- }) => import("node_modules/@types/react").JSX.Element;
4
+ }) => import("react").JSX.Element;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "3.45.0",
6
+ "version": "3.45.1",
7
7
  "type": "module",
8
8
  "sideEffects": [
9
9
  "**/*.css",