alouette 20.1.0 → 20.2.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.
@@ -4,6 +4,7 @@ import type { Accent } from "../../core/AlouetteConfig";
4
4
  import { type BoxProps } from "./Box";
5
5
  declare const surfaceVariants: import("tailwind-variants").TVReturnType<{
6
6
  size: {
7
+ xs: string;
7
8
  sm: string;
8
9
  md: string;
9
10
  lg: string;
@@ -24,6 +25,7 @@ declare const surfaceVariants: import("tailwind-variants").TVReturnType<{
24
25
  };
25
26
  }, undefined, "overflow-hidden", {
26
27
  size: {
28
+ xs: string;
27
29
  sm: string;
28
30
  md: string;
29
31
  lg: string;
@@ -44,6 +46,7 @@ declare const surfaceVariants: import("tailwind-variants").TVReturnType<{
44
46
  };
45
47
  }, undefined, import("tailwind-variants").TVReturnType<{
46
48
  size: {
49
+ xs: string;
47
50
  sm: string;
48
51
  md: string;
49
52
  lg: string;
@@ -1 +1 @@
1
- {"version":3,"file":"Surface.d.ts","sourceRoot":"","sources":["../../../../src/ui/containers/Surface.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,IAAI,MAAM,EAAE,MAAM,cAAc,CAAC;AACnD,OAAO,EAAE,KAAK,YAAY,EAAM,MAAM,mBAAmB,CAAC;AAC1D,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,2BAA2B,CAAC;AAExD,OAAO,EAAO,KAAK,QAAQ,EAAE,MAAM,OAAO,CAAC;AAE3C,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8DA+BpB,CAAC;AAEF,KAAK,mBAAmB,GAAG,YAAY,CAAC,OAAO,eAAe,CAAC,CAAC;AAEhE,MAAM,WAAW,YAAa,SAAQ,QAAQ,EAAE,mBAAmB;IACjE,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,OAAO,iGAmBnB,CAAC"}
1
+ {"version":3,"file":"Surface.d.ts","sourceRoot":"","sources":["../../../../src/ui/containers/Surface.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,IAAI,MAAM,EAAE,MAAM,cAAc,CAAC;AACnD,OAAO,EAAE,KAAK,YAAY,EAAM,MAAM,mBAAmB,CAAC;AAC1D,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,2BAA2B,CAAC;AAExD,OAAO,EAAO,KAAK,QAAQ,EAAE,MAAM,OAAO,CAAC;AAE3C,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8DAgCpB,CAAC;AAEF,KAAK,mBAAmB,GAAG,YAAY,CAAC,OAAO,eAAe,CAAC,CAAC;AAEhE,MAAM,WAAW,YAAa,SAAQ,QAAQ,EAAE,mBAAmB;IACjE,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,OAAO,iGAmBnB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Surface.stories.d.ts","sourceRoot":"","sources":["../../../../src/ui/containers/Surface.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAI5D,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEpC,KAAK,SAAS,GAAG,QAAQ,CAAC,OAAO,OAAO,CAAC,CAAC;;;;;;;;;;;;;AAE1C,wBAuBiC;AAEjC,eAAO,MAAM,mBAAmB,EAAE,SAUjC,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,SAoElC,CAAC"}
1
+ {"version":3,"file":"Surface.stories.d.ts","sourceRoot":"","sources":["../../../../src/ui/containers/Surface.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAI5D,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEpC,KAAK,SAAS,GAAG,QAAQ,CAAC,OAAO,OAAO,CAAC,CAAC;;;;;;;;;;;;;AAE1C,wBAuBiC;AAEjC,eAAO,MAAM,mBAAmB,EAAE,SAUjC,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,SAyElC,CAAC"}
@@ -850,7 +850,8 @@ const surfaceVariants = tv(
850
850
  base: "overflow-hidden",
851
851
  variants: {
852
852
  size: {
853
- sm: "p-m rounded-xs",
853
+ xs: "p-sm rounded-xs",
854
+ sm: "p-m rounded-sm",
854
855
  md: "p-xl rounded-sm",
855
856
  lg: "p-xxl rounded-md"
856
857
  },