scorer-ui-kit 2.3.0 → 2.5.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/Form/atoms/Button.d.ts +2 -0
- package/dist/Form/atoms/ButtonWithIcon.d.ts +2 -0
- package/dist/Form/atoms/ButtonWithLoading.d.ts +1 -0
- package/dist/Form/index.d.ts +1 -1
- package/dist/index.js +2578 -3694
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2578 -3694
- package/dist/index.modern.js.map +1 -1
- package/package.json +5 -5
- package/dist/themes/common.d.ts +0 -99
- package/dist/themes/light/colors.d.ts +0 -42
- package/dist/themes/light/custom.d.ts +0 -148
- package/dist/themes/light/light.d.ts +0 -1626
- package/dist/themes/light/styles.d.ts +0 -540
- package/dist/themes/light/typography.d.ts +0 -794
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scorer-ui-kit",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"description": "SCORER UI Components",
|
|
5
5
|
"author": "Josh Lipps",
|
|
6
6
|
"license": "MIT",
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
"@types/styled-components": "^5.1.25",
|
|
51
51
|
"@typescript-eslint/eslint-plugin": "^5.32.0",
|
|
52
52
|
"@typescript-eslint/parser": "^5.56.0",
|
|
53
|
-
"@zeplin/cli": "^
|
|
54
|
-
"@zeplin/cli-connect-react-plugin": "^1.1.
|
|
55
|
-
"@zeplin/cli-connect-storybook-plugin": "^0.
|
|
53
|
+
"@zeplin/cli": "^2.0.2",
|
|
54
|
+
"@zeplin/cli-connect-react-plugin": "^1.1.2",
|
|
55
|
+
"@zeplin/cli-connect-storybook-plugin": "^2.0.0",
|
|
56
56
|
"babel-eslint": "^10.0.3",
|
|
57
57
|
"cross-env": "^7.0.3",
|
|
58
58
|
"eslint": "^7.12.1",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"eslint-plugin-react": "^7.30.1",
|
|
64
64
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
65
65
|
"eslint-plugin-standard": "^4.1.0",
|
|
66
|
-
"gh-pages": "^
|
|
66
|
+
"gh-pages": "^5.0.0",
|
|
67
67
|
"microbundle-crl": "^0.13.11",
|
|
68
68
|
"npm-run-all": "^4.1.5",
|
|
69
69
|
"react": "^17.0.2",
|
package/dist/themes/common.d.ts
DELETED
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
export declare const fontFamily: {
|
|
2
|
-
ui: string;
|
|
3
|
-
data: string;
|
|
4
|
-
};
|
|
5
|
-
export declare const dimensions: {
|
|
6
|
-
icons: {
|
|
7
|
-
weights: {
|
|
8
|
-
light: number;
|
|
9
|
-
regular: number;
|
|
10
|
-
heavy: number;
|
|
11
|
-
strong: number;
|
|
12
|
-
};
|
|
13
|
-
};
|
|
14
|
-
form: {
|
|
15
|
-
button: {
|
|
16
|
-
xsmall: {
|
|
17
|
-
height: string;
|
|
18
|
-
padding: string;
|
|
19
|
-
iconSize: number;
|
|
20
|
-
};
|
|
21
|
-
small: {
|
|
22
|
-
height: string;
|
|
23
|
-
padding: string;
|
|
24
|
-
iconSize: number;
|
|
25
|
-
};
|
|
26
|
-
normal: {
|
|
27
|
-
height: string;
|
|
28
|
-
padding: string;
|
|
29
|
-
iconSize: number;
|
|
30
|
-
};
|
|
31
|
-
large: {
|
|
32
|
-
height: string;
|
|
33
|
-
padding: string;
|
|
34
|
-
iconSize: number;
|
|
35
|
-
};
|
|
36
|
-
};
|
|
37
|
-
input: {
|
|
38
|
-
height: string;
|
|
39
|
-
};
|
|
40
|
-
switch: {
|
|
41
|
-
outer: {
|
|
42
|
-
width: string;
|
|
43
|
-
height: string;
|
|
44
|
-
borderRadius: string;
|
|
45
|
-
};
|
|
46
|
-
inner: {
|
|
47
|
-
width: string;
|
|
48
|
-
height: string;
|
|
49
|
-
borderRadius: string;
|
|
50
|
-
};
|
|
51
|
-
positions: {
|
|
52
|
-
top: string;
|
|
53
|
-
off: string;
|
|
54
|
-
neutral: string;
|
|
55
|
-
locked: string;
|
|
56
|
-
on: string;
|
|
57
|
-
};
|
|
58
|
-
};
|
|
59
|
-
};
|
|
60
|
-
global: {
|
|
61
|
-
mainMenu: {
|
|
62
|
-
width: {
|
|
63
|
-
open: string;
|
|
64
|
-
closed: string;
|
|
65
|
-
};
|
|
66
|
-
};
|
|
67
|
-
};
|
|
68
|
-
};
|
|
69
|
-
export declare const animation: {
|
|
70
|
-
easing: {
|
|
71
|
-
primary: {
|
|
72
|
-
inOut: string;
|
|
73
|
-
out: string;
|
|
74
|
-
in: string;
|
|
75
|
-
};
|
|
76
|
-
};
|
|
77
|
-
speed: {
|
|
78
|
-
faster: string;
|
|
79
|
-
fast: string;
|
|
80
|
-
normal: string;
|
|
81
|
-
slow: string;
|
|
82
|
-
slower: string;
|
|
83
|
-
slowest: string;
|
|
84
|
-
};
|
|
85
|
-
};
|
|
86
|
-
export declare const deviceSize: {
|
|
87
|
-
small: number;
|
|
88
|
-
medium: number;
|
|
89
|
-
large: number;
|
|
90
|
-
xlarge: number;
|
|
91
|
-
xxlarge: number;
|
|
92
|
-
};
|
|
93
|
-
export declare const deviceMediaQuery: {
|
|
94
|
-
small: string;
|
|
95
|
-
medium: string;
|
|
96
|
-
large: string;
|
|
97
|
-
xlarge: string;
|
|
98
|
-
xxlarge: string;
|
|
99
|
-
};
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
export declare const colors: {
|
|
2
|
-
pureBase: string;
|
|
3
|
-
pureTop: string;
|
|
4
|
-
divider: string;
|
|
5
|
-
icons: {
|
|
6
|
-
inverse: string;
|
|
7
|
-
mono: string;
|
|
8
|
-
dimmed: string;
|
|
9
|
-
subtle: string;
|
|
10
|
-
primary: string;
|
|
11
|
-
danger: string;
|
|
12
|
-
white: string;
|
|
13
|
-
};
|
|
14
|
-
menu: {
|
|
15
|
-
active: string;
|
|
16
|
-
hover: string;
|
|
17
|
-
default: string;
|
|
18
|
-
indicator: string;
|
|
19
|
-
passive: string;
|
|
20
|
-
};
|
|
21
|
-
feedback: {
|
|
22
|
-
error: string;
|
|
23
|
-
info: string;
|
|
24
|
-
neutral: string;
|
|
25
|
-
success: string;
|
|
26
|
-
warning: string;
|
|
27
|
-
};
|
|
28
|
-
status: {
|
|
29
|
-
caution: string;
|
|
30
|
-
danger: string;
|
|
31
|
-
folder: string;
|
|
32
|
-
highlight: string;
|
|
33
|
-
good: string;
|
|
34
|
-
neutral: string;
|
|
35
|
-
};
|
|
36
|
-
transparent: string;
|
|
37
|
-
input: {
|
|
38
|
-
border: {
|
|
39
|
-
default: string;
|
|
40
|
-
};
|
|
41
|
-
};
|
|
42
|
-
};
|
|
@@ -1,148 +0,0 @@
|
|
|
1
|
-
export declare const custom: {
|
|
2
|
-
lines: {
|
|
3
|
-
primary: {
|
|
4
|
-
label: {
|
|
5
|
-
fill: string;
|
|
6
|
-
};
|
|
7
|
-
contrastLine: {
|
|
8
|
-
stroke: string;
|
|
9
|
-
};
|
|
10
|
-
highlightLine: {
|
|
11
|
-
stroke: string;
|
|
12
|
-
};
|
|
13
|
-
highlightLineBorder: {
|
|
14
|
-
stroke: string;
|
|
15
|
-
};
|
|
16
|
-
grabHandle: {
|
|
17
|
-
fill: string;
|
|
18
|
-
stroke: string;
|
|
19
|
-
};
|
|
20
|
-
point: {
|
|
21
|
-
fill: string;
|
|
22
|
-
};
|
|
23
|
-
grabHandleContrast: {
|
|
24
|
-
stroke: string;
|
|
25
|
-
};
|
|
26
|
-
grabHandleText: {
|
|
27
|
-
fill: string;
|
|
28
|
-
};
|
|
29
|
-
handleBase: {
|
|
30
|
-
fill: string;
|
|
31
|
-
};
|
|
32
|
-
handleRingLayer: {
|
|
33
|
-
stroke: string;
|
|
34
|
-
};
|
|
35
|
-
handleReactiveFill: {
|
|
36
|
-
fill: string;
|
|
37
|
-
};
|
|
38
|
-
handleReactiveRing: {
|
|
39
|
-
stroke: string;
|
|
40
|
-
};
|
|
41
|
-
handleContrastLayer: {
|
|
42
|
-
stroke: string;
|
|
43
|
-
};
|
|
44
|
-
stopStart: {
|
|
45
|
-
stopColor: string;
|
|
46
|
-
};
|
|
47
|
-
stopEnd: {
|
|
48
|
-
stopColor: string;
|
|
49
|
-
};
|
|
50
|
-
};
|
|
51
|
-
secondary: {
|
|
52
|
-
label: {
|
|
53
|
-
fill: string;
|
|
54
|
-
};
|
|
55
|
-
contrastLine: {
|
|
56
|
-
stroke: string;
|
|
57
|
-
};
|
|
58
|
-
highlightLine: {
|
|
59
|
-
stroke: string;
|
|
60
|
-
};
|
|
61
|
-
highlightLineBorder: {
|
|
62
|
-
stroke: string;
|
|
63
|
-
};
|
|
64
|
-
grabHandle: {
|
|
65
|
-
fill: string;
|
|
66
|
-
stroke: string;
|
|
67
|
-
};
|
|
68
|
-
point: {
|
|
69
|
-
fill: string;
|
|
70
|
-
};
|
|
71
|
-
grabHandleContrast: {
|
|
72
|
-
stroke: string;
|
|
73
|
-
};
|
|
74
|
-
grabHandleText: {
|
|
75
|
-
fill: string;
|
|
76
|
-
};
|
|
77
|
-
handleBase: {
|
|
78
|
-
fill: string;
|
|
79
|
-
};
|
|
80
|
-
handleRingLayer: {
|
|
81
|
-
stroke: string;
|
|
82
|
-
};
|
|
83
|
-
handleReactiveFill: {
|
|
84
|
-
fill: string;
|
|
85
|
-
};
|
|
86
|
-
handleReactiveRing: {
|
|
87
|
-
stroke: string;
|
|
88
|
-
};
|
|
89
|
-
handleContrastLayer: {
|
|
90
|
-
stroke: string;
|
|
91
|
-
};
|
|
92
|
-
stopStart: {
|
|
93
|
-
stopColor: string;
|
|
94
|
-
};
|
|
95
|
-
stopEnd: {
|
|
96
|
-
stopColor: string;
|
|
97
|
-
};
|
|
98
|
-
};
|
|
99
|
-
danger: {
|
|
100
|
-
label: {
|
|
101
|
-
fill: string;
|
|
102
|
-
};
|
|
103
|
-
contrastLine: {
|
|
104
|
-
stroke: string;
|
|
105
|
-
};
|
|
106
|
-
highlightLine: {
|
|
107
|
-
stroke: string;
|
|
108
|
-
};
|
|
109
|
-
highlightLineBorder: {
|
|
110
|
-
stroke: string;
|
|
111
|
-
};
|
|
112
|
-
grabHandle: {
|
|
113
|
-
fill: string;
|
|
114
|
-
stroke: string;
|
|
115
|
-
};
|
|
116
|
-
point: {
|
|
117
|
-
fill: string;
|
|
118
|
-
};
|
|
119
|
-
grabHandleText: {
|
|
120
|
-
fill: string;
|
|
121
|
-
};
|
|
122
|
-
grabHandleContrast: {
|
|
123
|
-
stroke: string;
|
|
124
|
-
};
|
|
125
|
-
handleBase: {
|
|
126
|
-
fill: string;
|
|
127
|
-
};
|
|
128
|
-
handleRingLayer: {
|
|
129
|
-
stroke: string;
|
|
130
|
-
};
|
|
131
|
-
handleReactiveFill: {
|
|
132
|
-
fill: string;
|
|
133
|
-
};
|
|
134
|
-
handleReactiveRing: {
|
|
135
|
-
stroke: string;
|
|
136
|
-
};
|
|
137
|
-
handleContrastLayer: {
|
|
138
|
-
stroke: string;
|
|
139
|
-
};
|
|
140
|
-
stopStart: {
|
|
141
|
-
stopColor: string;
|
|
142
|
-
};
|
|
143
|
-
stopEnd: {
|
|
144
|
-
stopColor: string;
|
|
145
|
-
};
|
|
146
|
-
};
|
|
147
|
-
};
|
|
148
|
-
};
|