ingred-ui 27.2.0 → 27.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ingred-ui",
3
- "version": "27.2.0",
3
+ "version": "27.3.1",
4
4
  "description": "",
5
5
  "author": "CARTA HOLDINGS, Inc.",
6
6
  "license": "MIT",
@@ -104,7 +104,9 @@
104
104
  "bin"
105
105
  ],
106
106
  "resolutions": {
107
+ "vitest/vite": "8.0.5",
107
108
  "fast-xml-parser": "5.3.8",
109
+ "@rollup/plugin-commonjs/minimatch": "5.1.9",
108
110
  "colors": "1.4.0",
109
111
  "react": "18.1.0",
110
112
  "react-dom": "18.1.0",
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- import { Dayjs } from "dayjs";
3
- export declare const useScrollYearMonths: (current: Dayjs, ref: React.RefObject<HTMLDivElement>) => {
4
- ref: import("react").RefObject<HTMLDivElement>;
5
- years: number[];
6
- };
@@ -1,11 +0,0 @@
1
- import React from "react";
2
- import { Dayjs } from "dayjs";
3
- type Props = {
4
- date: Dayjs;
5
- current: Dayjs;
6
- yearIsOpen: boolean;
7
- onYearIsOpen: (yearIsOpen: boolean) => void;
8
- onClick: (date: Dayjs) => void;
9
- };
10
- export declare const YearMonths: React.FC<Props>;
11
- export {};
@@ -1 +0,0 @@
1
- export { YearMonths } from "./YearMonths";
@@ -1,9 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const YearMonthsContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, import("../../../Flex/Flex").FlexProps, never>;
3
- export declare const YearMonthTitleContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
4
- export declare const YearContainer: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../../../Typography/Typography").TypographyProps & import("react").RefAttributes<HTMLElement>>, import("styled-components").DefaultTheme, {}, never>;
5
- export declare const MonthContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, import("../../../Flex/Flex").FlexProps, never>;
6
- export declare const Month: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {}, never>;
7
- export declare const IconButton: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
8
- expanded: boolean;
9
- }, never>;