@ambita/design-system 3.0.25-266.0 → 3.0.25-267.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/README.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# design-system-3
|
|
2
2
|
|
|
3
|
+
## Project usage
|
|
4
|
+
|
|
5
|
+
```
|
|
6
|
+
npm i @ambita/design-system
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
Copy the .npmrc file from this project and paste it into the root of your own project.
|
|
10
|
+
This will allow you to install this package assuming you have a valid NPM_TOKEN.
|
|
11
|
+
|
|
3
12
|
## Project setup
|
|
4
13
|
```
|
|
5
14
|
npm install
|
|
@@ -25,6 +34,11 @@ npm run test:unit
|
|
|
25
34
|
npm run lint
|
|
26
35
|
```
|
|
27
36
|
|
|
37
|
+
### Opens Storybook for documentation
|
|
38
|
+
```
|
|
39
|
+
npm run storybook
|
|
40
|
+
```
|
|
41
|
+
|
|
28
42
|
### Customize configuration
|
|
29
43
|
See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
30
44
|
|
|
@@ -36,15 +36,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
36
36
|
} & {
|
|
37
37
|
size: string;
|
|
38
38
|
label: string;
|
|
39
|
-
vertical: boolean;
|
|
40
39
|
suffix: string;
|
|
40
|
+
vertical: boolean;
|
|
41
41
|
} & {
|
|
42
42
|
dataTestid?: string | undefined;
|
|
43
43
|
}> & {
|
|
44
44
|
[x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
45
45
|
}, {
|
|
46
46
|
size: string;
|
|
47
|
-
vertical: boolean;
|
|
48
47
|
suffix: string;
|
|
48
|
+
vertical: boolean;
|
|
49
49
|
}>;
|
|
50
50
|
export default _default;
|
|
@@ -26,7 +26,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
26
26
|
type: StringConstructor;
|
|
27
27
|
};
|
|
28
28
|
resize: {
|
|
29
|
-
type: PropType<"none" | "
|
|
29
|
+
type: PropType<"none" | "vertical" | "horizontal" | "auto" | "both">;
|
|
30
30
|
default: string;
|
|
31
31
|
};
|
|
32
32
|
height: {
|
|
@@ -47,7 +47,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
47
47
|
};
|
|
48
48
|
}, {
|
|
49
49
|
styles: import("vue").ComputedRef<{
|
|
50
|
-
resize: "none" | "
|
|
50
|
+
resize: "none" | "vertical" | "horizontal" | "auto" | "both";
|
|
51
51
|
'max-width': string;
|
|
52
52
|
}>;
|
|
53
53
|
handleInput(event: {
|
|
@@ -72,7 +72,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
72
72
|
required: boolean;
|
|
73
73
|
value: string | number;
|
|
74
74
|
label: string;
|
|
75
|
-
resize: "none" | "
|
|
75
|
+
resize: "none" | "vertical" | "horizontal" | "auto" | "both";
|
|
76
76
|
hideLabel: boolean;
|
|
77
77
|
id: string;
|
|
78
78
|
height: number;
|
|
@@ -89,7 +89,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
89
89
|
}, {
|
|
90
90
|
required: boolean;
|
|
91
91
|
value: string | number;
|
|
92
|
-
resize: "none" | "
|
|
92
|
+
resize: "none" | "vertical" | "horizontal" | "auto" | "both";
|
|
93
93
|
hideLabel: boolean;
|
|
94
94
|
id: string;
|
|
95
95
|
height: number;
|