kwant-ui 3.14.4 → 3.14.6-alpha.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.
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kwant-ui",
3
- "version": "3.14.4",
3
+ "version": "3.14.6-alpha.0",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",
@@ -45,6 +45,16 @@ declare const meta: {
45
45
  };
46
46
  description: string;
47
47
  };
48
+ disableEdit: {
49
+ options: string[];
50
+ control: {
51
+ type: string;
52
+ };
53
+ defaultValue: {
54
+ summary: boolean;
55
+ };
56
+ description: string;
57
+ };
48
58
  numberOfMonths: {
49
59
  options: number[];
50
60
  control: {
@@ -62,3 +72,4 @@ export declare const Default: Story;
62
72
  export declare const EditMode: Story;
63
73
  export declare const DateRangeEnabled: Story;
64
74
  export declare const DateRangeSelectFromTwoMonths: Story;
75
+ export declare const DisableEdit: Story;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kwant-ui",
3
- "version": "3.14.4",
3
+ "version": "3.14.6-alpha.0",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,19 +0,0 @@
1
- import { AvatarDeclarations } from '../Avatar/Avatar.types';
2
- export declare namespace AvatarGroupDelcarations {
3
- interface Props {
4
- borderWidth?: number;
5
- borderColor?: string;
6
- boxShadow?: string;
7
- avatars?: AvatarDeclarations.Props[];
8
- size?: AvatarDeclarations.Size;
9
- }
10
- interface StyledAvatarContainer {
11
- height: string;
12
- }
13
- interface StyledAvatarItem {
14
- borderWidth?: string;
15
- borderColor?: string;
16
- boxShadow?: string;
17
- index?: number;
18
- }
19
- }