@mindly/ui-components 8.8.5 → 8.8.7

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.
@@ -8,6 +8,9 @@ export declare const counterStyles: import("tailwind-variants").TVReturnType<{
8
8
  xs: {
9
9
  root: string;
10
10
  };
11
+ xxs: {
12
+ root: string;
13
+ };
11
14
  };
12
15
  }, {
13
16
  root: string;
@@ -21,6 +24,9 @@ export declare const counterStyles: import("tailwind-variants").TVReturnType<{
21
24
  xs: {
22
25
  root: string;
23
26
  };
27
+ xxs: {
28
+ root: string;
29
+ };
24
30
  };
25
31
  }, {
26
32
  root: string;
@@ -34,6 +40,9 @@ export declare const counterStyles: import("tailwind-variants").TVReturnType<{
34
40
  xs: {
35
41
  root: string;
36
42
  };
43
+ xxs: {
44
+ root: string;
45
+ };
37
46
  };
38
47
  }, {
39
48
  root: string;
@@ -2,5 +2,5 @@ import { PropsWithChildren } from 'react';
2
2
  export type CounterProps = PropsWithChildren<{
3
3
  className?: string;
4
4
  variant?: 'default';
5
- size?: 'xs';
5
+ size?: 'xs' | 'xxs';
6
6
  }>;
package/dist/index.d.ts CHANGED
@@ -1946,7 +1946,7 @@ declare const SolidInput: React__default.ForwardRefExoticComponent<Partial<_ioni
1946
1946
  type CounterProps = PropsWithChildren<{
1947
1947
  className?: string;
1948
1948
  variant?: 'default';
1949
- size?: 'xs';
1949
+ size?: 'xs' | 'xxs';
1950
1950
  }>;
1951
1951
 
1952
1952
  declare const Counter: React__default.FC<CounterProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "8.8.5",
3
+ "version": "8.8.7",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",