@telus-uds/palette-koodo 1.1.0 → 1.1.1
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/build/android/border.xml +1 -1
- package/build/android/color.xml +1 -1
- package/build/android/font_size.xml +1 -1
- package/build/android/radius.xml +2 -1
- package/build/android/size.xml +3 -1
- package/build/ios/Border.swift +1 -1
- package/build/ios/Color.swift +1 -1
- package/build/ios/FontSize.swift +1 -1
- package/build/ios/Radius.swift +2 -1
- package/build/ios/Size.swift +3 -1
- package/build/rn/palette.js +12 -1
- package/build/web/fonts/fonts-cdn-family.css +5 -5
- package/build/web/fonts/fonts-cdn.css +5 -5
- package/build/web/fonts/fonts-local-family.css +5 -5
- package/build/web/fonts/fonts-local.css +5 -5
- package/build/web/palette.js +10 -6
- package/package.json +1 -1
- package/palette.json +20 -0
- /package/build/web/fonts/{v1_1_0-StagSans-300-4BdJgiOOkjoVWXCVqhvJ1.otf → v1_1_1-StagSans-300-VK_PrkkhCFxiRi09t3hd4.otf} +0 -0
- /package/build/web/fonts/{v1_1_0-StagSans-400-ArV-U7cLMeFcU6ehYKduu.otf → v1_1_1-StagSans-400-T5kWhVuglXSyqIaZZVhYa.otf} +0 -0
- /package/build/web/fonts/{v1_1_0-StagSans-500-8C2GnatgIsqI6_eqt7sQo.otf → v1_1_1-StagSans-500-_LinNRrtRAIWnAmd1y-WT.otf} +0 -0
- /package/build/web/fonts/{v1_1_0-StagSans-600-edqqOJ3192K9-u6leh_4M.otf → v1_1_1-StagSans-600-eceWZ4U5DZAcR0BrYvACE.otf} +0 -0
- /package/build/web/fonts/{v1_1_0-StagSans-700-5V-tyBe84YiaOnIjNKu9f.otf → v1_1_1-StagSans-700-kuvS58qFwCkxrpnstP4L9.otf} +0 -0
package/build/android/border.xml
CHANGED
package/build/android/color.xml
CHANGED
package/build/android/radius.xml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<!--
|
|
4
4
|
Do not edit directly
|
|
5
|
-
Generated on
|
|
5
|
+
Generated on Wed, 13 Dec 2023 21:20:10 GMT
|
|
6
6
|
-->
|
|
7
7
|
|
|
8
8
|
<resources>
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
<dimen name="radius_2">2.00dp</dimen>
|
|
14
14
|
<dimen name="radius_24">24.00dp</dimen>
|
|
15
15
|
<dimen name="radius_4">4.00dp</dimen>
|
|
16
|
+
<dimen name="radius_45">45.00dp</dimen>
|
|
16
17
|
<dimen name="radius_48">48.00dp</dimen>
|
|
17
18
|
<dimen name="radius_6">6.00dp</dimen>
|
|
18
19
|
<dimen name="radius_8">8.00dp</dimen>
|
package/build/android/size.xml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<!--
|
|
4
4
|
Do not edit directly
|
|
5
|
-
Generated on
|
|
5
|
+
Generated on Wed, 13 Dec 2023 21:20:10 GMT
|
|
6
6
|
-->
|
|
7
7
|
|
|
8
8
|
<resources>
|
|
@@ -37,9 +37,11 @@
|
|
|
37
37
|
<dimen name="size_40">40.00dp</dimen>
|
|
38
38
|
<dimen name="size_412">412.00dp</dimen>
|
|
39
39
|
<dimen name="size_44">44.00dp</dimen>
|
|
40
|
+
<dimen name="size_45">45.00dp</dimen>
|
|
40
41
|
<dimen name="size_48">48.00dp</dimen>
|
|
41
42
|
<dimen name="size_480">480.00dp</dimen>
|
|
42
43
|
<dimen name="size_5">5.00dp</dimen>
|
|
44
|
+
<dimen name="size_53">53.00dp</dimen>
|
|
43
45
|
<dimen name="size_544">544.00dp</dimen>
|
|
44
46
|
<dimen name="size_56">56.00dp</dimen>
|
|
45
47
|
<dimen name="size_576">576.00dp</dimen>
|
package/build/ios/Border.swift
CHANGED
package/build/ios/Color.swift
CHANGED
package/build/ios/FontSize.swift
CHANGED
package/build/ios/Radius.swift
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
//
|
|
5
5
|
|
|
6
6
|
// Do not edit directly
|
|
7
|
-
// Generated on
|
|
7
|
+
// Generated on Wed, 13 Dec 2023 21:20:10 GMT
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
import UIKit
|
|
@@ -17,6 +17,7 @@ public enum PaletteRadius {
|
|
|
17
17
|
public static let radius2 = CGFloat(2)
|
|
18
18
|
public static let radius24 = CGFloat(24)
|
|
19
19
|
public static let radius4 = CGFloat(4)
|
|
20
|
+
public static let radius45 = CGFloat(45)
|
|
20
21
|
public static let radius48 = CGFloat(48)
|
|
21
22
|
public static let radius6 = CGFloat(6)
|
|
22
23
|
public static let radius8 = CGFloat(8)
|
package/build/ios/Size.swift
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
//
|
|
5
5
|
|
|
6
6
|
// Do not edit directly
|
|
7
|
-
// Generated on
|
|
7
|
+
// Generated on Wed, 13 Dec 2023 21:20:10 GMT
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
import UIKit
|
|
@@ -41,9 +41,11 @@ public enum PaletteSize {
|
|
|
41
41
|
public static let size40 = CGFloat(40)
|
|
42
42
|
public static let size412 = CGFloat(412)
|
|
43
43
|
public static let size44 = CGFloat(44)
|
|
44
|
+
public static let size45 = CGFloat(45)
|
|
44
45
|
public static let size48 = CGFloat(48)
|
|
45
46
|
public static let size480 = CGFloat(480)
|
|
46
47
|
public static let size5 = CGFloat(5)
|
|
48
|
+
public static let size53 = CGFloat(53)
|
|
47
49
|
public static let size544 = CGFloat(544)
|
|
48
50
|
public static let size56 = CGFloat(56)
|
|
49
51
|
public static let size576 = CGFloat(576)
|
package/build/rn/palette.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Wed, 13 Dec 2023 21:20:12 GMT
|
|
4
4
|
*/
|
|
5
5
|
module.exports = {
|
|
6
6
|
border: {
|
|
@@ -246,6 +246,7 @@ module.exports = {
|
|
|
246
246
|
radius2: 2,
|
|
247
247
|
radius24: 24,
|
|
248
248
|
radius4: 4,
|
|
249
|
+
radius45: 45,
|
|
249
250
|
radius48: 48,
|
|
250
251
|
radius6: 6,
|
|
251
252
|
radius8: 8
|
|
@@ -283,6 +284,14 @@ module.exports = {
|
|
|
283
284
|
spread: 0,
|
|
284
285
|
color: 'rgba(0, 0, 0, 0)'
|
|
285
286
|
},
|
|
287
|
+
surfaceInset: {
|
|
288
|
+
inset: true,
|
|
289
|
+
offsetX: 0,
|
|
290
|
+
offsetY: 2,
|
|
291
|
+
blur: 2,
|
|
292
|
+
spread: 0,
|
|
293
|
+
color: 'rgba(0, 0, 0, 0.1)'
|
|
294
|
+
},
|
|
286
295
|
surfaceRaised: {
|
|
287
296
|
inset: false,
|
|
288
297
|
offsetX: 0,
|
|
@@ -324,9 +333,11 @@ module.exports = {
|
|
|
324
333
|
size40: 40,
|
|
325
334
|
size412: 412,
|
|
326
335
|
size44: 44,
|
|
336
|
+
size45: 45,
|
|
327
337
|
size48: 48,
|
|
328
338
|
size480: 480,
|
|
329
339
|
size5: 5,
|
|
340
|
+
size53: 53,
|
|
330
341
|
size544: 544,
|
|
331
342
|
size56: 56,
|
|
332
343
|
size576: 576,
|
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: 'StagSans';
|
|
3
|
-
src: url('https://cdn.telus.digital/uds/
|
|
3
|
+
src: url('https://cdn.telus.digital/uds/v1_1_1-StagSans-300-VK_PrkkhCFxiRi09t3hd4.otf');
|
|
4
4
|
font-weight: 300;
|
|
5
5
|
font-style: normal;
|
|
6
6
|
font-display: block;
|
|
7
7
|
}
|
|
8
8
|
@font-face {
|
|
9
9
|
font-family: 'StagSans';
|
|
10
|
-
src: url('https://cdn.telus.digital/uds/
|
|
10
|
+
src: url('https://cdn.telus.digital/uds/v1_1_1-StagSans-400-T5kWhVuglXSyqIaZZVhYa.otf');
|
|
11
11
|
font-weight: 400;
|
|
12
12
|
font-style: normal;
|
|
13
13
|
font-display: block;
|
|
14
14
|
}
|
|
15
15
|
@font-face {
|
|
16
16
|
font-family: 'StagSans';
|
|
17
|
-
src: url('https://cdn.telus.digital/uds/
|
|
17
|
+
src: url('https://cdn.telus.digital/uds/v1_1_1-StagSans-500-_LinNRrtRAIWnAmd1y-WT.otf');
|
|
18
18
|
font-weight: 500;
|
|
19
19
|
font-style: normal;
|
|
20
20
|
font-display: block;
|
|
21
21
|
}
|
|
22
22
|
@font-face {
|
|
23
23
|
font-family: 'StagSans';
|
|
24
|
-
src: url('https://cdn.telus.digital/uds/
|
|
24
|
+
src: url('https://cdn.telus.digital/uds/v1_1_1-StagSans-600-eceWZ4U5DZAcR0BrYvACE.otf');
|
|
25
25
|
font-weight: 600;
|
|
26
26
|
font-style: normal;
|
|
27
27
|
font-display: block;
|
|
28
28
|
}
|
|
29
29
|
@font-face {
|
|
30
30
|
font-family: 'StagSans';
|
|
31
|
-
src: url('https://cdn.telus.digital/uds/
|
|
31
|
+
src: url('https://cdn.telus.digital/uds/v1_1_1-StagSans-700-kuvS58qFwCkxrpnstP4L9.otf');
|
|
32
32
|
font-weight: 700;
|
|
33
33
|
font-style: normal;
|
|
34
34
|
font-display: block;
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: 'StagSans300normal';
|
|
3
|
-
src: url('https://cdn.telus.digital/uds/
|
|
3
|
+
src: url('https://cdn.telus.digital/uds/v1_1_1-StagSans-300-VK_PrkkhCFxiRi09t3hd4.otf');
|
|
4
4
|
font-display: block;
|
|
5
5
|
}
|
|
6
6
|
@font-face {
|
|
7
7
|
font-family: 'StagSans400normal';
|
|
8
|
-
src: url('https://cdn.telus.digital/uds/
|
|
8
|
+
src: url('https://cdn.telus.digital/uds/v1_1_1-StagSans-400-T5kWhVuglXSyqIaZZVhYa.otf');
|
|
9
9
|
font-display: block;
|
|
10
10
|
}
|
|
11
11
|
@font-face {
|
|
12
12
|
font-family: 'StagSans500normal';
|
|
13
|
-
src: url('https://cdn.telus.digital/uds/
|
|
13
|
+
src: url('https://cdn.telus.digital/uds/v1_1_1-StagSans-500-_LinNRrtRAIWnAmd1y-WT.otf');
|
|
14
14
|
font-display: block;
|
|
15
15
|
}
|
|
16
16
|
@font-face {
|
|
17
17
|
font-family: 'StagSans600normal';
|
|
18
|
-
src: url('https://cdn.telus.digital/uds/
|
|
18
|
+
src: url('https://cdn.telus.digital/uds/v1_1_1-StagSans-600-eceWZ4U5DZAcR0BrYvACE.otf');
|
|
19
19
|
font-display: block;
|
|
20
20
|
}
|
|
21
21
|
@font-face {
|
|
22
22
|
font-family: 'StagSans700normal';
|
|
23
|
-
src: url('https://cdn.telus.digital/uds/
|
|
23
|
+
src: url('https://cdn.telus.digital/uds/v1_1_1-StagSans-700-kuvS58qFwCkxrpnstP4L9.otf');
|
|
24
24
|
font-display: block;
|
|
25
25
|
}
|
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: 'StagSans';
|
|
3
|
-
src: url('./
|
|
3
|
+
src: url('./v1_1_1-StagSans-300-VK_PrkkhCFxiRi09t3hd4.otf');
|
|
4
4
|
font-weight: 300;
|
|
5
5
|
font-style: normal;
|
|
6
6
|
font-display: block;
|
|
7
7
|
}
|
|
8
8
|
@font-face {
|
|
9
9
|
font-family: 'StagSans';
|
|
10
|
-
src: url('./
|
|
10
|
+
src: url('./v1_1_1-StagSans-400-T5kWhVuglXSyqIaZZVhYa.otf');
|
|
11
11
|
font-weight: 400;
|
|
12
12
|
font-style: normal;
|
|
13
13
|
font-display: block;
|
|
14
14
|
}
|
|
15
15
|
@font-face {
|
|
16
16
|
font-family: 'StagSans';
|
|
17
|
-
src: url('./
|
|
17
|
+
src: url('./v1_1_1-StagSans-500-_LinNRrtRAIWnAmd1y-WT.otf');
|
|
18
18
|
font-weight: 500;
|
|
19
19
|
font-style: normal;
|
|
20
20
|
font-display: block;
|
|
21
21
|
}
|
|
22
22
|
@font-face {
|
|
23
23
|
font-family: 'StagSans';
|
|
24
|
-
src: url('./
|
|
24
|
+
src: url('./v1_1_1-StagSans-600-eceWZ4U5DZAcR0BrYvACE.otf');
|
|
25
25
|
font-weight: 600;
|
|
26
26
|
font-style: normal;
|
|
27
27
|
font-display: block;
|
|
28
28
|
}
|
|
29
29
|
@font-face {
|
|
30
30
|
font-family: 'StagSans';
|
|
31
|
-
src: url('./
|
|
31
|
+
src: url('./v1_1_1-StagSans-700-kuvS58qFwCkxrpnstP4L9.otf');
|
|
32
32
|
font-weight: 700;
|
|
33
33
|
font-style: normal;
|
|
34
34
|
font-display: block;
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: 'StagSans300normal';
|
|
3
|
-
src: url('./
|
|
3
|
+
src: url('./v1_1_1-StagSans-300-VK_PrkkhCFxiRi09t3hd4.otf');
|
|
4
4
|
font-display: block;
|
|
5
5
|
}
|
|
6
6
|
@font-face {
|
|
7
7
|
font-family: 'StagSans400normal';
|
|
8
|
-
src: url('./
|
|
8
|
+
src: url('./v1_1_1-StagSans-400-T5kWhVuglXSyqIaZZVhYa.otf');
|
|
9
9
|
font-display: block;
|
|
10
10
|
}
|
|
11
11
|
@font-face {
|
|
12
12
|
font-family: 'StagSans500normal';
|
|
13
|
-
src: url('./
|
|
13
|
+
src: url('./v1_1_1-StagSans-500-_LinNRrtRAIWnAmd1y-WT.otf');
|
|
14
14
|
font-display: block;
|
|
15
15
|
}
|
|
16
16
|
@font-face {
|
|
17
17
|
font-family: 'StagSans600normal';
|
|
18
|
-
src: url('./
|
|
18
|
+
src: url('./v1_1_1-StagSans-600-eceWZ4U5DZAcR0BrYvACE.otf');
|
|
19
19
|
font-display: block;
|
|
20
20
|
}
|
|
21
21
|
@font-face {
|
|
22
22
|
font-family: 'StagSans700normal';
|
|
23
|
-
src: url('./
|
|
23
|
+
src: url('./v1_1_1-StagSans-700-kuvS58qFwCkxrpnstP4L9.otf');
|
|
24
24
|
font-display: block;
|
|
25
25
|
}
|
package/build/web/palette.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Wed, 13 Dec 2023 21:20:10 GMT
|
|
4
4
|
*/
|
|
5
5
|
module.exports = {
|
|
6
6
|
border: {
|
|
@@ -67,11 +67,11 @@ module.exports = {
|
|
|
67
67
|
},
|
|
68
68
|
font: {
|
|
69
69
|
StagSans: {
|
|
70
|
-
300: 'https://cdn.telus.digital/uds/
|
|
71
|
-
400: 'https://cdn.telus.digital/uds/
|
|
72
|
-
500: 'https://cdn.telus.digital/uds/
|
|
73
|
-
600: 'https://cdn.telus.digital/uds/
|
|
74
|
-
700: 'https://cdn.telus.digital/uds/
|
|
70
|
+
300: 'https://cdn.telus.digital/uds/v1_1_1-StagSans-300-VK_PrkkhCFxiRi09t3hd4.otf',
|
|
71
|
+
400: 'https://cdn.telus.digital/uds/v1_1_1-StagSans-400-T5kWhVuglXSyqIaZZVhYa.otf',
|
|
72
|
+
500: 'https://cdn.telus.digital/uds/v1_1_1-StagSans-500-_LinNRrtRAIWnAmd1y-WT.otf',
|
|
73
|
+
600: 'https://cdn.telus.digital/uds/v1_1_1-StagSans-600-eceWZ4U5DZAcR0BrYvACE.otf',
|
|
74
|
+
700: 'https://cdn.telus.digital/uds/v1_1_1-StagSans-700-kuvS58qFwCkxrpnstP4L9.otf'
|
|
75
75
|
}
|
|
76
76
|
},
|
|
77
77
|
fontSize: {
|
|
@@ -233,6 +233,7 @@ module.exports = {
|
|
|
233
233
|
radius2: '2px',
|
|
234
234
|
radius24: '24px',
|
|
235
235
|
radius4: '4px',
|
|
236
|
+
radius45: '45px',
|
|
236
237
|
radius48: '48px',
|
|
237
238
|
radius6: '6px',
|
|
238
239
|
radius8: '8px'
|
|
@@ -242,6 +243,7 @@ module.exports = {
|
|
|
242
243
|
elevation2: '0px 12px 12px 0px rgba(0, 0, 0, 0.03)',
|
|
243
244
|
elevation3: '0px 32px 32px 0px rgba(0, 0, 0, 0.03)',
|
|
244
245
|
none: '0px 0px 0px 0px rgba(0, 0, 0, 0)',
|
|
246
|
+
surfaceInset: '0px 2px 2px 0px inset rgba(0, 0, 0, 0.1)',
|
|
245
247
|
surfaceRaised: '0px 2px 2px 0px rgba(0, 0, 0, 0.2)'
|
|
246
248
|
},
|
|
247
249
|
size: {
|
|
@@ -276,9 +278,11 @@ module.exports = {
|
|
|
276
278
|
size40: '40px',
|
|
277
279
|
size412: '412px',
|
|
278
280
|
size44: '44px',
|
|
281
|
+
size45: '45px',
|
|
279
282
|
size48: '48px',
|
|
280
283
|
size480: '480px',
|
|
281
284
|
size5: '5px',
|
|
285
|
+
size53: '53px',
|
|
282
286
|
size544: '544px',
|
|
283
287
|
size56: '56px',
|
|
284
288
|
size576: '576px',
|
package/package.json
CHANGED
package/palette.json
CHANGED
|
@@ -851,6 +851,9 @@
|
|
|
851
851
|
"radius4": {
|
|
852
852
|
"value": 4
|
|
853
853
|
},
|
|
854
|
+
"radius45": {
|
|
855
|
+
"value": 45
|
|
856
|
+
},
|
|
854
857
|
"radius48": {
|
|
855
858
|
"value": 48
|
|
856
859
|
},
|
|
@@ -907,6 +910,17 @@
|
|
|
907
910
|
"spread": 0
|
|
908
911
|
}
|
|
909
912
|
},
|
|
913
|
+
"surfaceInset": {
|
|
914
|
+
"description": "Use inset shadow to drop the element below the surface for interactive elements such as UI meters, card call-outs, and ToggleSwitch",
|
|
915
|
+
"value": {
|
|
916
|
+
"blur": 2,
|
|
917
|
+
"color": "rgba(0, 0, 0, 0.1)",
|
|
918
|
+
"inset": true,
|
|
919
|
+
"offsetX": 0,
|
|
920
|
+
"offsetY": 2,
|
|
921
|
+
"spread": 0
|
|
922
|
+
}
|
|
923
|
+
},
|
|
910
924
|
"surfaceRaised": {
|
|
911
925
|
"description": "Use raised shadow to raise the element for interactive elements within an inset interface such as the knob in the ToggleSwitch",
|
|
912
926
|
"value": {
|
|
@@ -1027,6 +1041,9 @@
|
|
|
1027
1041
|
"size44": {
|
|
1028
1042
|
"value": 44
|
|
1029
1043
|
},
|
|
1044
|
+
"size45": {
|
|
1045
|
+
"value": 45
|
|
1046
|
+
},
|
|
1030
1047
|
"size48": {
|
|
1031
1048
|
"value": 48
|
|
1032
1049
|
},
|
|
@@ -1037,6 +1054,9 @@
|
|
|
1037
1054
|
"size5": {
|
|
1038
1055
|
"value": 5
|
|
1039
1056
|
},
|
|
1057
|
+
"size53": {
|
|
1058
|
+
"value": 53
|
|
1059
|
+
},
|
|
1040
1060
|
"size544": {
|
|
1041
1061
|
"description": "Multiselect filter max width at sm - xl breakpoints",
|
|
1042
1062
|
"value": 544
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|