ingred-ui 27.4.3 → 28.0.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.
@@ -1,9 +1,28 @@
1
+ export declare const breakpointPrimitives: {
2
+ readonly xs: 375;
3
+ readonly sm: 576;
4
+ readonly md: 768;
5
+ readonly lg: 1024;
6
+ readonly xl: 1280;
7
+ readonly xxl: 1440;
8
+ };
9
+ export type BreakpointPrimitive = keyof typeof breakpointPrimitives;
1
10
  export declare const BreakPoint: {
2
- X_SMALL: number;
3
- SMALL: number;
4
- MOBILE: number;
5
- MEDIUM: number;
6
- LARGE: number;
7
- X_LARGE: number;
8
- XX_LARGE: number;
11
+ readonly MOBILE_SMALL: 375;
12
+ readonly MOBILE: 576;
13
+ readonly TABLET: 768;
14
+ readonly LAPTOP: 1024;
15
+ readonly DESKTOP: 1280;
16
+ readonly WIDE: 1440;
17
+ };
18
+ /**
19
+ * @container (min-width: ${ContainerBreakPoint.SMALL}px) のように使用。
20
+ */
21
+ export declare const ContainerBreakPoint: {
22
+ readonly X_SMALL: 375;
23
+ readonly SMALL: 576;
24
+ readonly MEDIUM: 768;
25
+ readonly LARGE: 1024;
26
+ readonly X_LARGE: 1280;
27
+ readonly XX_LARGE: 1440;
9
28
  };
@@ -19,7 +19,7 @@ export declare const colors: {
19
19
  100: "#FFE2E5";
20
20
  200: "#FFBAC3";
21
21
  300: "#F96979";
22
- 400: "#F34468";
22
+ 400: "#F1365C";
23
23
  500: "#EB0A4E";
24
24
  600: "#CA0755";
25
25
  700: "#A90556";
@@ -52,7 +52,7 @@ export declare const colors: {
52
52
  600: "#D8BA0E";
53
53
  700: "#B59B0A";
54
54
  800: "#927D06";
55
- 900: "#786603";
55
+ 900: "#695A02";
56
56
  1000: "#2D2601";
57
57
  };
58
58
  green: {
@@ -1,7 +1,8 @@
1
1
  export { Shadow } from "./shadow";
2
2
  export { Radius } from "./radius";
3
3
  export { Space } from "./space";
4
- export { BreakPoint } from "./breakPoint";
4
+ export { breakpointPrimitives, BreakPoint, ContainerBreakPoint, } from "./breakPoint";
5
+ export type { BreakpointPrimitive } from "./breakPoint";
5
6
  export { colors } from "./color";
6
7
  export type { Color } from "./color";
7
8
  export type { Depth } from "./depth";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ingred-ui",
3
- "version": "27.4.3",
3
+ "version": "28.0.0",
4
4
  "description": "",
5
5
  "author": "CARTA HOLDINGS, Inc.",
6
6
  "license": "MIT",