@telus-uds/palette-allium 2.1.0 → 2.4.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/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 +1 -1
- package/build/android/size.xml +2 -1
- package/build/ios/Border.swift +1 -1
- package/build/ios/Color.swift +41 -41
- package/build/ios/FontSize.swift +1 -1
- package/build/ios/Radius.swift +1 -1
- package/build/ios/Size.swift +2 -1
- package/build/rn/fonts/HelveticaNow-400.woff +0 -0
- package/build/rn/fonts/HelveticaNow-500.woff +0 -0
- package/build/rn/fonts/HelveticaNow-700.woff +0 -0
- package/build/rn/fonts/{HelveticaNow-400.otf → HelveticaNowOTF-400.otf} +0 -0
- package/build/{web/fonts/v2_1_0-HelveticaNow-500-Opu1BvezAmAn3QglAx6BI.otf → rn/fonts/HelveticaNowOTF-500.otf} +0 -0
- package/build/rn/fonts/{HelveticaNow-700.otf → HelveticaNowOTF-700.otf} +0 -0
- package/build/rn/fonts/fonts.css +18 -3
- package/build/rn/fonts/index.js +6 -3
- package/build/rn/icons/Edit.js +26 -0
- package/build/rn/icons/Edit.native.js +26 -0
- package/build/rn/icons/edit.icon.svg +3 -0
- package/build/rn/icons/index.js +1 -0
- package/build/rn/palette.js +11 -4
- package/build/web/fonts/fonts-cdn-family.css +25 -4
- package/build/web/fonts/fonts-cdn.css +19 -4
- package/build/web/fonts/fonts-local-family.css +25 -4
- package/build/web/fonts/fonts-local.css +19 -4
- package/build/web/fonts/{v2_1_0-HelveticaNow-300-7kTh26YQ3tkIEwzkgmEWb.otf → v2_4_0-HelveticaNow-300.otf} +0 -0
- package/build/web/fonts/v2_4_0-HelveticaNow-400.woff +0 -0
- package/build/web/fonts/v2_4_0-HelveticaNow-500.woff +0 -0
- package/build/web/fonts/v2_4_0-HelveticaNow-700.woff +0 -0
- package/build/web/fonts/{v2_1_0-HelveticaNow-400-_EKARAGTdiecwZX78ti7s.otf → v2_4_0-HelveticaNowOTF-400.otf} +0 -0
- package/build/{rn/fonts/HelveticaNow-500.otf → web/fonts/v2_4_0-HelveticaNowOTF-500.otf} +0 -0
- package/build/web/fonts/{v2_1_0-HelveticaNow-700-kEJDAiw_-zJyYhrVbNwbP.otf → v2_4_0-HelveticaNowOTF-700.otf} +0 -0
- package/build/web/icons/Edit.js +26 -0
- package/build/web/icons/edit.icon.svg +3 -0
- package/build/web/icons/index.js +1 -0
- package/build/web/palette.js +12 -5
- package/package.json +3 -3
- package/palette.json +18 -3
- package/CHANGELOG.json +0 -93
- package/CHANGELOG.md +0 -574
package/build/android/border.xml
CHANGED
package/build/android/color.xml
CHANGED
package/build/android/radius.xml
CHANGED
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 Fri, 12 Aug 2022 20:16:36 GMT
|
|
6
6
|
-->
|
|
7
7
|
|
|
8
8
|
<resources>
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
<dimen name="size_40">40.00dp</dimen>
|
|
28
28
|
<dimen name="size_44">44.00dp</dimen>
|
|
29
29
|
<dimen name="size_48">48.00dp</dimen>
|
|
30
|
+
<dimen name="size_56">56.00dp</dimen>
|
|
30
31
|
<dimen name="size_64">64.00dp</dimen>
|
|
31
32
|
<dimen name="size_72">72.00dp</dimen>
|
|
32
33
|
<dimen name="size_8">8.00dp</dimen>
|
package/build/ios/Border.swift
CHANGED
package/build/ios/Color.swift
CHANGED
|
@@ -4,50 +4,50 @@
|
|
|
4
4
|
//
|
|
5
5
|
|
|
6
6
|
// Do not edit directly
|
|
7
|
-
// Generated on
|
|
7
|
+
// Generated on Fri, 12 Aug 2022 20:16:36 GMT
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
import UIKit
|
|
11
11
|
|
|
12
12
|
public enum PaletteColor {
|
|
13
|
-
public static let amber = UIColor(red: 0.980, green: 0.792, blue: 0.412, alpha:1)
|
|
14
|
-
public static let amberDark = UIColor(red: 0.706, green: 0.529, blue: 0.173, alpha:1)
|
|
15
|
-
public static let amberLight = UIColor(red: 1.000, green: 0.976, blue: 0.933, alpha:1)
|
|
16
|
-
public static let bgModal = UIColor(red: 0.957, green: 0.957, blue: 0.969, alpha:0.97)
|
|
17
|
-
public static let dark10 = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha:0.1)
|
|
18
|
-
public static let dark20 = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha:0.2)
|
|
19
|
-
public static let dark40 = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha:0.4)
|
|
20
|
-
public static let dark60 = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha:0.6)
|
|
21
|
-
public static let dark80 = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha:0.8)
|
|
22
|
-
public static let dark97 = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha:0.97)
|
|
23
|
-
public static let greenAccessible = UIColor(red: 0.169, green: 0.502, blue: 0.000, alpha:1)
|
|
24
|
-
public static let greenDarkFern = UIColor(red: 0.086, green: 0.243, blue: 0.024, alpha:1)
|
|
25
|
-
public static let greenPanache = UIColor(red: 0.957, green: 0.976, blue: 0.949, alpha:1)
|
|
26
|
-
public static let greenSanFelix = UIColor(red: 0.122, green: 0.361, blue: 0.035, alpha:1)
|
|
27
|
-
public static let greenTelus = UIColor(red: 0.400, green: 0.800, blue: 0.000, alpha:1)
|
|
28
|
-
public static let greenTusk = UIColor(red: 0.890, green: 0.965, blue: 0.820, alpha:1)
|
|
29
|
-
public static let greenYellow = UIColor(red: 0.749, green: 0.906, blue: 0.592, alpha:1)
|
|
30
|
-
public static let greyAlabaster = UIColor(red: 0.980, green: 0.980, blue: 0.980, alpha:1)
|
|
31
|
-
public static let greyAthens = UIColor(red: 0.957, green: 0.957, blue: 0.969, alpha:1)
|
|
32
|
-
public static let greyCharcoal = UIColor(red: 0.255, green: 0.271, blue: 0.278, alpha:1)
|
|
33
|
-
public static let greyCloud = UIColor(red: 0.698, green: 0.725, blue: 0.749, alpha:1)
|
|
34
|
-
public static let greyMystic = UIColor(red: 0.890, green: 0.902, blue: 0.910, alpha:1)
|
|
35
|
-
public static let greyShuttle = UIColor(red: 0.404, green: 0.431, blue: 0.451, alpha:1)
|
|
36
|
-
public static let greyThunder = UIColor(red: 0.173, green: 0.180, blue: 0.188, alpha:1)
|
|
37
|
-
public static let light10 = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha:0.1)
|
|
38
|
-
public static let light20 = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha:0.2)
|
|
39
|
-
public static let light40 = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha:0.4)
|
|
40
|
-
public static let light60 = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha:0.6)
|
|
41
|
-
public static let light80 = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha:0.8)
|
|
42
|
-
public static let light97 = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha:0.97)
|
|
43
|
-
public static let purpleDark = UIColor(red: 0.247, green: 0.165, blue: 0.329, alpha:1)
|
|
44
|
-
public static let purpleDeluge = UIColor(red: 0.486, green: 0.325, blue: 0.647, alpha:1)
|
|
45
|
-
public static let purpleEminence = UIColor(red: 0.380, green: 0.220, blue: 0.537, alpha:1)
|
|
46
|
-
public static let purpleTelus = UIColor(red: 0.294, green: 0.157, blue: 0.427, alpha:1)
|
|
47
|
-
public static let red = UIColor(red: 0.882, green: 0.137, blue: 0.224, alpha:1)
|
|
48
|
-
public static let redDark = UIColor(red: 0.757, green: 0.137, blue: 0.208, alpha:1)
|
|
49
|
-
public static let redDarker = UIColor(red: 0.337, green: 0.047, blue: 0.047, alpha:1)
|
|
50
|
-
public static let redLight = UIColor(red: 1.000, green: 0.965, blue: 0.973, alpha:1)
|
|
51
|
-
public static let transparent = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha:0)
|
|
52
|
-
public static let white = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha:1)
|
|
13
|
+
public static let amber = UIColor(red: 0.980, green: 0.792, blue: 0.412, alpha: 1)
|
|
14
|
+
public static let amberDark = UIColor(red: 0.706, green: 0.529, blue: 0.173, alpha: 1)
|
|
15
|
+
public static let amberLight = UIColor(red: 1.000, green: 0.976, blue: 0.933, alpha: 1)
|
|
16
|
+
public static let bgModal = UIColor(red: 0.957, green: 0.957, blue: 0.969, alpha: 0.97)
|
|
17
|
+
public static let dark10 = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0.1)
|
|
18
|
+
public static let dark20 = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0.2)
|
|
19
|
+
public static let dark40 = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0.4)
|
|
20
|
+
public static let dark60 = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0.6)
|
|
21
|
+
public static let dark80 = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0.8)
|
|
22
|
+
public static let dark97 = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0.97)
|
|
23
|
+
public static let greenAccessible = UIColor(red: 0.169, green: 0.502, blue: 0.000, alpha: 1)
|
|
24
|
+
public static let greenDarkFern = UIColor(red: 0.086, green: 0.243, blue: 0.024, alpha: 1)
|
|
25
|
+
public static let greenPanache = UIColor(red: 0.957, green: 0.976, blue: 0.949, alpha: 1)
|
|
26
|
+
public static let greenSanFelix = UIColor(red: 0.122, green: 0.361, blue: 0.035, alpha: 1)
|
|
27
|
+
public static let greenTelus = UIColor(red: 0.400, green: 0.800, blue: 0.000, alpha: 1)
|
|
28
|
+
public static let greenTusk = UIColor(red: 0.890, green: 0.965, blue: 0.820, alpha: 1)
|
|
29
|
+
public static let greenYellow = UIColor(red: 0.749, green: 0.906, blue: 0.592, alpha: 1)
|
|
30
|
+
public static let greyAlabaster = UIColor(red: 0.980, green: 0.980, blue: 0.980, alpha: 1)
|
|
31
|
+
public static let greyAthens = UIColor(red: 0.957, green: 0.957, blue: 0.969, alpha: 1)
|
|
32
|
+
public static let greyCharcoal = UIColor(red: 0.255, green: 0.271, blue: 0.278, alpha: 1)
|
|
33
|
+
public static let greyCloud = UIColor(red: 0.698, green: 0.725, blue: 0.749, alpha: 1)
|
|
34
|
+
public static let greyMystic = UIColor(red: 0.890, green: 0.902, blue: 0.910, alpha: 1)
|
|
35
|
+
public static let greyShuttle = UIColor(red: 0.404, green: 0.431, blue: 0.451, alpha: 1)
|
|
36
|
+
public static let greyThunder = UIColor(red: 0.173, green: 0.180, blue: 0.188, alpha: 1)
|
|
37
|
+
public static let light10 = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 0.1)
|
|
38
|
+
public static let light20 = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 0.2)
|
|
39
|
+
public static let light40 = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 0.4)
|
|
40
|
+
public static let light60 = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 0.6)
|
|
41
|
+
public static let light80 = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 0.8)
|
|
42
|
+
public static let light97 = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 0.97)
|
|
43
|
+
public static let purpleDark = UIColor(red: 0.247, green: 0.165, blue: 0.329, alpha: 1)
|
|
44
|
+
public static let purpleDeluge = UIColor(red: 0.486, green: 0.325, blue: 0.647, alpha: 1)
|
|
45
|
+
public static let purpleEminence = UIColor(red: 0.380, green: 0.220, blue: 0.537, alpha: 1)
|
|
46
|
+
public static let purpleTelus = UIColor(red: 0.294, green: 0.157, blue: 0.427, alpha: 1)
|
|
47
|
+
public static let red = UIColor(red: 0.882, green: 0.137, blue: 0.224, alpha: 1)
|
|
48
|
+
public static let redDark = UIColor(red: 0.757, green: 0.137, blue: 0.208, alpha: 1)
|
|
49
|
+
public static let redDarker = UIColor(red: 0.337, green: 0.047, blue: 0.047, alpha: 1)
|
|
50
|
+
public static let redLight = UIColor(red: 1.000, green: 0.965, blue: 0.973, alpha: 1)
|
|
51
|
+
public static let transparent = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0)
|
|
52
|
+
public static let white = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
53
53
|
}
|
package/build/ios/FontSize.swift
CHANGED
package/build/ios/Radius.swift
CHANGED
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 Fri, 12 Aug 2022 20:16:36 GMT
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
import UIKit
|
|
@@ -31,6 +31,7 @@ public enum PaletteSize {
|
|
|
31
31
|
public static let size40 = CGFloat(40)
|
|
32
32
|
public static let size44 = CGFloat(44)
|
|
33
33
|
public static let size48 = CGFloat(48)
|
|
34
|
+
public static let size56 = CGFloat(56)
|
|
34
35
|
public static let size64 = CGFloat(64)
|
|
35
36
|
public static let size72 = CGFloat(72)
|
|
36
37
|
public static let size8 = CGFloat(8)
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/build/rn/fonts/fonts.css
CHANGED
|
@@ -5,16 +5,31 @@
|
|
|
5
5
|
}
|
|
6
6
|
@font-face {
|
|
7
7
|
font-family: 'HelveticaNow400normal';
|
|
8
|
-
src: url('./HelveticaNow-400.
|
|
8
|
+
src: url('./HelveticaNow-400.woff');
|
|
9
9
|
font-display: block;
|
|
10
10
|
}
|
|
11
11
|
@font-face {
|
|
12
12
|
font-family: 'HelveticaNow500normal';
|
|
13
|
-
src: url('./HelveticaNow-500.
|
|
13
|
+
src: url('./HelveticaNow-500.woff');
|
|
14
14
|
font-display: block;
|
|
15
15
|
}
|
|
16
16
|
@font-face {
|
|
17
17
|
font-family: 'HelveticaNow700normal';
|
|
18
|
-
src: url('./HelveticaNow-700.
|
|
18
|
+
src: url('./HelveticaNow-700.woff');
|
|
19
|
+
font-display: block;
|
|
20
|
+
}
|
|
21
|
+
@font-face {
|
|
22
|
+
font-family: 'HelveticaNowOTF400normal';
|
|
23
|
+
src: url('./HelveticaNowOTF-400.otf');
|
|
24
|
+
font-display: block;
|
|
25
|
+
}
|
|
26
|
+
@font-face {
|
|
27
|
+
font-family: 'HelveticaNowOTF500normal';
|
|
28
|
+
src: url('./HelveticaNowOTF-500.otf');
|
|
29
|
+
font-display: block;
|
|
30
|
+
}
|
|
31
|
+
@font-face {
|
|
32
|
+
font-family: 'HelveticaNowOTF700normal';
|
|
33
|
+
src: url('./HelveticaNowOTF-700.otf');
|
|
19
34
|
font-display: block;
|
|
20
35
|
}
|
package/build/rn/fonts/index.js
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
module.exports.HelveticaNow300normal= require('@telus-uds/palette-allium/build/rn/fonts/HelveticaNow-300.otf')
|
|
2
|
-
module.exports.HelveticaNow400normal= require('@telus-uds/palette-allium/build/rn/fonts/HelveticaNow-400.
|
|
3
|
-
module.exports.HelveticaNow500normal= require('@telus-uds/palette-allium/build/rn/fonts/HelveticaNow-500.
|
|
4
|
-
module.exports.HelveticaNow700normal= require('@telus-uds/palette-allium/build/rn/fonts/HelveticaNow-700.
|
|
2
|
+
module.exports.HelveticaNow400normal= require('@telus-uds/palette-allium/build/rn/fonts/HelveticaNow-400.woff')
|
|
3
|
+
module.exports.HelveticaNow500normal= require('@telus-uds/palette-allium/build/rn/fonts/HelveticaNow-500.woff')
|
|
4
|
+
module.exports.HelveticaNow700normal= require('@telus-uds/palette-allium/build/rn/fonts/HelveticaNow-700.woff')
|
|
5
|
+
module.exports.HelveticaNowOTF400normal= require('@telus-uds/palette-allium/build/rn/fonts/HelveticaNowOTF-400.otf')
|
|
6
|
+
module.exports.HelveticaNowOTF500normal= require('@telus-uds/palette-allium/build/rn/fonts/HelveticaNowOTF-500.otf')
|
|
7
|
+
module.exports.HelveticaNowOTF700normal= require('@telus-uds/palette-allium/build/rn/fonts/HelveticaNowOTF-700.otf')
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
|
|
5
|
+
module.exports = ({
|
|
6
|
+
title,
|
|
7
|
+
titleId,
|
|
8
|
+
size,
|
|
9
|
+
color,
|
|
10
|
+
...props
|
|
11
|
+
}) => /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", { ...props,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
height: size,
|
|
14
|
+
width: size,
|
|
15
|
+
fill: color,
|
|
16
|
+
role: title ? 'img' : undefined,
|
|
17
|
+
"aria-hidden": !title,
|
|
18
|
+
"aria-labelledby": titleId,
|
|
19
|
+
children: [title ? /*#__PURE__*/(0, _jsxRuntime.jsx)("title", {
|
|
20
|
+
id: titleId,
|
|
21
|
+
children: title
|
|
22
|
+
}) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
23
|
+
d: "M19.717 2c.612 0 1.198.235 1.61.646a2.275 2.275 0 0 1 .135 3.086l-.138.148L7.11 20.093a2.215 2.215 0 0 1-.227.205l-.03.015-4.114 1.648a.544.544 0 0 1-.581-.119.536.536 0 0 1-.146-.495l.027-.087 1.644-4.118a.519.519 0 0 1 .07-.124l.05-.056L18.107 2.646A2.281 2.281 0 0 1 19.718 2zm-15.1 15.715-1.11 2.776 2.772-1.11-1.663-1.666zM16.114 6.167 5.358 16.931l1.68 1.682 1.335-1.37c1.2-1.216 3.012-3.027 5.672-5.67l3.753-3.721-1.683-1.685zm4.454-2.753a1.222 1.222 0 0 0-1.595-.096l-.103.091-1.993 1.995 1.686 1.689 2.002-1.982c.23-.224.355-.524.355-.844a1.19 1.19 0 0 0-.352-.853z",
|
|
24
|
+
fillRule: "evenodd"
|
|
25
|
+
})]
|
|
26
|
+
});
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _reactNativeSvg = require("react-native-svg");
|
|
4
|
+
|
|
5
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
6
|
+
|
|
7
|
+
module.exports = ({
|
|
8
|
+
title,
|
|
9
|
+
titleId,
|
|
10
|
+
size,
|
|
11
|
+
color,
|
|
12
|
+
...props
|
|
13
|
+
}) => /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.default, { ...props,
|
|
14
|
+
viewBox: "0 0 24 24",
|
|
15
|
+
height: size,
|
|
16
|
+
width: size,
|
|
17
|
+
fill: color,
|
|
18
|
+
"aria-labelledby": titleId,
|
|
19
|
+
children: [title ? /*#__PURE__*/(0, _jsxRuntime.jsx)("title", {
|
|
20
|
+
id: titleId,
|
|
21
|
+
children: title
|
|
22
|
+
}) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
23
|
+
d: "M19.717 2c.612 0 1.198.235 1.61.646a2.275 2.275 0 0 1 .135 3.086l-.138.148L7.11 20.093a2.215 2.215 0 0 1-.227.205l-.03.015-4.114 1.648a.544.544 0 0 1-.581-.119.536.536 0 0 1-.146-.495l.027-.087 1.644-4.118a.519.519 0 0 1 .07-.124l.05-.056L18.107 2.646A2.281 2.281 0 0 1 19.718 2zm-15.1 15.715-1.11 2.776 2.772-1.11-1.663-1.666zM16.114 6.167 5.358 16.931l1.68 1.682 1.335-1.37c1.2-1.216 3.012-3.027 5.672-5.67l3.753-3.721-1.683-1.685zm4.454-2.753a1.222 1.222 0 0 0-1.595-.096l-.103.091-1.993 1.995 1.686 1.689 2.002-1.982c.23-.224.355-.524.355-.844a1.19 1.19 0 0 0-.352-.853z",
|
|
24
|
+
fillRule: "evenodd"
|
|
25
|
+
})]
|
|
26
|
+
});
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24">
|
|
2
|
+
<path d="M19.717 2c.612 0 1.198.235 1.61.646a2.275 2.275 0 01.135 3.086l-.138.148L7.11 20.093a2.215 2.215 0 01-.227.205l-.03.015-4.114 1.648a.544.544 0 01-.581-.119.536.536 0 01-.146-.495l.027-.087 1.644-4.118a.519.519 0 01.07-.124l.05-.056L18.107 2.646A2.281 2.281 0 0119.718 2zm-15.1 15.715l-1.11 2.776 2.772-1.11-1.663-1.666zM16.114 6.167L5.358 16.931l1.68 1.682 1.335-1.37c1.2-1.216 3.012-3.027 5.672-5.67l3.753-3.721-1.683-1.685zm4.454-2.753a1.222 1.222 0 00-1.595-.096l-.103.091-1.993 1.995 1.686 1.689 2.002-1.982c.23-.224.355-.524.355-.844a1.19 1.19 0 00-.352-.853z" fill-rule="evenodd"/>
|
|
3
|
+
</svg>
|
package/build/rn/icons/index.js
CHANGED
|
@@ -73,6 +73,7 @@ module.exports = {
|
|
|
73
73
|
Download: require('./Download'),
|
|
74
74
|
DownloadPdf: require('./DownloadPdf'),
|
|
75
75
|
DownloadPdfs: require('./DownloadPdfs'),
|
|
76
|
+
Edit: require('./Edit'),
|
|
76
77
|
Email: require('./Email'),
|
|
77
78
|
Escalations: require('./Escalations'),
|
|
78
79
|
FavouriteNetwork: require('./FavouriteNetwork'),
|
package/build/rn/palette.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Fri, 12 Aug 2022 20:16:40 GMT
|
|
4
4
|
*/
|
|
5
5
|
module.exports = {
|
|
6
6
|
border: {
|
|
@@ -59,9 +59,14 @@ module.exports = {
|
|
|
59
59
|
font: {
|
|
60
60
|
HelveticaNow: {
|
|
61
61
|
300: '@telus-uds/palette-allium/build/rn/fonts/HelveticaNow-300.otf',
|
|
62
|
-
400: '@telus-uds/palette-allium/build/rn/fonts/HelveticaNow-400.
|
|
63
|
-
500: '@telus-uds/palette-allium/build/rn/fonts/HelveticaNow-500.
|
|
64
|
-
700: '@telus-uds/palette-allium/build/rn/fonts/HelveticaNow-700.
|
|
62
|
+
400: '@telus-uds/palette-allium/build/rn/fonts/HelveticaNow-400.woff',
|
|
63
|
+
500: '@telus-uds/palette-allium/build/rn/fonts/HelveticaNow-500.woff',
|
|
64
|
+
700: '@telus-uds/palette-allium/build/rn/fonts/HelveticaNow-700.woff'
|
|
65
|
+
},
|
|
66
|
+
HelveticaNowOTF: {
|
|
67
|
+
400: '@telus-uds/palette-allium/build/rn/fonts/HelveticaNowOTF-400.otf',
|
|
68
|
+
500: '@telus-uds/palette-allium/build/rn/fonts/HelveticaNowOTF-500.otf',
|
|
69
|
+
700: '@telus-uds/palette-allium/build/rn/fonts/HelveticaNowOTF-700.otf'
|
|
65
70
|
}
|
|
66
71
|
},
|
|
67
72
|
fontSize: {
|
|
@@ -223,6 +228,7 @@ module.exports = {
|
|
|
223
228
|
Download: '@telus-uds/palette-allium/build/rn/icons/download.icon.svg',
|
|
224
229
|
DownloadPdf: '@telus-uds/palette-allium/build/rn/icons/download-pdf.icon.svg',
|
|
225
230
|
DownloadPdfs: '@telus-uds/palette-allium/build/rn/icons/download-pdfs.icon.svg',
|
|
231
|
+
Edit: '@telus-uds/palette-allium/build/rn/icons/edit.icon.svg',
|
|
226
232
|
Email: '@telus-uds/palette-allium/build/rn/icons/email.icon.svg',
|
|
227
233
|
Escalations: '@telus-uds/palette-allium/build/rn/icons/escalations.icon.svg',
|
|
228
234
|
FavouriteNetwork: '@telus-uds/palette-allium/build/rn/icons/favourite-network.icon.svg',
|
|
@@ -465,6 +471,7 @@ module.exports = {
|
|
|
465
471
|
size40: 40,
|
|
466
472
|
size44: 44,
|
|
467
473
|
size48: 48,
|
|
474
|
+
size56: 56,
|
|
468
475
|
size64: 64,
|
|
469
476
|
size72: 72,
|
|
470
477
|
size8: 8,
|
|
@@ -1,27 +1,48 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: 'HelveticaNow';
|
|
3
|
-
src: url('
|
|
3
|
+
src: url('v2_4_0-HelveticaNow-300.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: 'HelveticaNow';
|
|
10
|
-
src: url('
|
|
10
|
+
src: url('v2_4_0-HelveticaNow-400.woff');
|
|
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: 'HelveticaNow';
|
|
17
|
-
src: url('
|
|
17
|
+
src: url('v2_4_0-HelveticaNow-500.woff');
|
|
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: 'HelveticaNow';
|
|
24
|
-
src: url('
|
|
24
|
+
src: url('v2_4_0-HelveticaNow-700.woff');
|
|
25
|
+
font-weight: 700;
|
|
26
|
+
font-style: normal;
|
|
27
|
+
font-display: block;
|
|
28
|
+
}
|
|
29
|
+
@font-face {
|
|
30
|
+
font-family: 'HelveticaNowOTF';
|
|
31
|
+
src: url('v2_4_0-HelveticaNowOTF-400.otf');
|
|
32
|
+
font-weight: 400;
|
|
33
|
+
font-style: normal;
|
|
34
|
+
font-display: block;
|
|
35
|
+
}
|
|
36
|
+
@font-face {
|
|
37
|
+
font-family: 'HelveticaNowOTF';
|
|
38
|
+
src: url('v2_4_0-HelveticaNowOTF-500.otf');
|
|
39
|
+
font-weight: 500;
|
|
40
|
+
font-style: normal;
|
|
41
|
+
font-display: block;
|
|
42
|
+
}
|
|
43
|
+
@font-face {
|
|
44
|
+
font-family: 'HelveticaNowOTF';
|
|
45
|
+
src: url('v2_4_0-HelveticaNowOTF-700.otf');
|
|
25
46
|
font-weight: 700;
|
|
26
47
|
font-style: normal;
|
|
27
48
|
font-display: block;
|
|
@@ -1,20 +1,35 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: 'HelveticaNow300normal';
|
|
3
|
-
src: url('
|
|
3
|
+
src: url('v2_4_0-HelveticaNow-300.otf');
|
|
4
4
|
font-display: block;
|
|
5
5
|
}
|
|
6
6
|
@font-face {
|
|
7
7
|
font-family: 'HelveticaNow400normal';
|
|
8
|
-
src: url('
|
|
8
|
+
src: url('v2_4_0-HelveticaNow-400.woff');
|
|
9
9
|
font-display: block;
|
|
10
10
|
}
|
|
11
11
|
@font-face {
|
|
12
12
|
font-family: 'HelveticaNow500normal';
|
|
13
|
-
src: url('
|
|
13
|
+
src: url('v2_4_0-HelveticaNow-500.woff');
|
|
14
14
|
font-display: block;
|
|
15
15
|
}
|
|
16
16
|
@font-face {
|
|
17
17
|
font-family: 'HelveticaNow700normal';
|
|
18
|
-
src: url('
|
|
18
|
+
src: url('v2_4_0-HelveticaNow-700.woff');
|
|
19
|
+
font-display: block;
|
|
20
|
+
}
|
|
21
|
+
@font-face {
|
|
22
|
+
font-family: 'HelveticaNowOTF400normal';
|
|
23
|
+
src: url('v2_4_0-HelveticaNowOTF-400.otf');
|
|
24
|
+
font-display: block;
|
|
25
|
+
}
|
|
26
|
+
@font-face {
|
|
27
|
+
font-family: 'HelveticaNowOTF500normal';
|
|
28
|
+
src: url('v2_4_0-HelveticaNowOTF-500.otf');
|
|
29
|
+
font-display: block;
|
|
30
|
+
}
|
|
31
|
+
@font-face {
|
|
32
|
+
font-family: 'HelveticaNowOTF700normal';
|
|
33
|
+
src: url('v2_4_0-HelveticaNowOTF-700.otf');
|
|
19
34
|
font-display: block;
|
|
20
35
|
}
|
|
@@ -1,27 +1,48 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: 'HelveticaNow';
|
|
3
|
-
src: url('./
|
|
3
|
+
src: url('./v2_4_0-HelveticaNow-300.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: 'HelveticaNow';
|
|
10
|
-
src: url('./
|
|
10
|
+
src: url('./v2_4_0-HelveticaNow-400.woff');
|
|
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: 'HelveticaNow';
|
|
17
|
-
src: url('./
|
|
17
|
+
src: url('./v2_4_0-HelveticaNow-500.woff');
|
|
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: 'HelveticaNow';
|
|
24
|
-
src: url('./
|
|
24
|
+
src: url('./v2_4_0-HelveticaNow-700.woff');
|
|
25
|
+
font-weight: 700;
|
|
26
|
+
font-style: normal;
|
|
27
|
+
font-display: block;
|
|
28
|
+
}
|
|
29
|
+
@font-face {
|
|
30
|
+
font-family: 'HelveticaNowOTF';
|
|
31
|
+
src: url('./v2_4_0-HelveticaNowOTF-400.otf');
|
|
32
|
+
font-weight: 400;
|
|
33
|
+
font-style: normal;
|
|
34
|
+
font-display: block;
|
|
35
|
+
}
|
|
36
|
+
@font-face {
|
|
37
|
+
font-family: 'HelveticaNowOTF';
|
|
38
|
+
src: url('./v2_4_0-HelveticaNowOTF-500.otf');
|
|
39
|
+
font-weight: 500;
|
|
40
|
+
font-style: normal;
|
|
41
|
+
font-display: block;
|
|
42
|
+
}
|
|
43
|
+
@font-face {
|
|
44
|
+
font-family: 'HelveticaNowOTF';
|
|
45
|
+
src: url('./v2_4_0-HelveticaNowOTF-700.otf');
|
|
25
46
|
font-weight: 700;
|
|
26
47
|
font-style: normal;
|
|
27
48
|
font-display: block;
|
|
@@ -1,20 +1,35 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: 'HelveticaNow300normal';
|
|
3
|
-
src: url('./
|
|
3
|
+
src: url('./v2_4_0-HelveticaNow-300.otf');
|
|
4
4
|
font-display: block;
|
|
5
5
|
}
|
|
6
6
|
@font-face {
|
|
7
7
|
font-family: 'HelveticaNow400normal';
|
|
8
|
-
src: url('./
|
|
8
|
+
src: url('./v2_4_0-HelveticaNow-400.woff');
|
|
9
9
|
font-display: block;
|
|
10
10
|
}
|
|
11
11
|
@font-face {
|
|
12
12
|
font-family: 'HelveticaNow500normal';
|
|
13
|
-
src: url('./
|
|
13
|
+
src: url('./v2_4_0-HelveticaNow-500.woff');
|
|
14
14
|
font-display: block;
|
|
15
15
|
}
|
|
16
16
|
@font-face {
|
|
17
17
|
font-family: 'HelveticaNow700normal';
|
|
18
|
-
src: url('./
|
|
18
|
+
src: url('./v2_4_0-HelveticaNow-700.woff');
|
|
19
|
+
font-display: block;
|
|
20
|
+
}
|
|
21
|
+
@font-face {
|
|
22
|
+
font-family: 'HelveticaNowOTF400normal';
|
|
23
|
+
src: url('./v2_4_0-HelveticaNowOTF-400.otf');
|
|
24
|
+
font-display: block;
|
|
25
|
+
}
|
|
26
|
+
@font-face {
|
|
27
|
+
font-family: 'HelveticaNowOTF500normal';
|
|
28
|
+
src: url('./v2_4_0-HelveticaNowOTF-500.otf');
|
|
29
|
+
font-display: block;
|
|
30
|
+
}
|
|
31
|
+
@font-face {
|
|
32
|
+
font-family: 'HelveticaNowOTF700normal';
|
|
33
|
+
src: url('./v2_4_0-HelveticaNowOTF-700.otf');
|
|
19
34
|
font-display: block;
|
|
20
35
|
}
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
|
|
5
|
+
module.exports = ({
|
|
6
|
+
title,
|
|
7
|
+
titleId,
|
|
8
|
+
size,
|
|
9
|
+
color,
|
|
10
|
+
...props
|
|
11
|
+
}) => /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", { ...props,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
height: size,
|
|
14
|
+
width: size,
|
|
15
|
+
fill: color,
|
|
16
|
+
role: title ? 'img' : undefined,
|
|
17
|
+
"aria-hidden": !title,
|
|
18
|
+
"aria-labelledby": titleId,
|
|
19
|
+
children: [title ? /*#__PURE__*/(0, _jsxRuntime.jsx)("title", {
|
|
20
|
+
id: titleId,
|
|
21
|
+
children: title
|
|
22
|
+
}) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
23
|
+
d: "M19.717 2c.612 0 1.198.235 1.61.646a2.275 2.275 0 0 1 .135 3.086l-.138.148L7.11 20.093a2.215 2.215 0 0 1-.227.205l-.03.015-4.114 1.648a.544.544 0 0 1-.581-.119.536.536 0 0 1-.146-.495l.027-.087 1.644-4.118a.519.519 0 0 1 .07-.124l.05-.056L18.107 2.646A2.281 2.281 0 0 1 19.718 2zm-15.1 15.715-1.11 2.776 2.772-1.11-1.663-1.666zM16.114 6.167 5.358 16.931l1.68 1.682 1.335-1.37c1.2-1.216 3.012-3.027 5.672-5.67l3.753-3.721-1.683-1.685zm4.454-2.753a1.222 1.222 0 0 0-1.595-.096l-.103.091-1.993 1.995 1.686 1.689 2.002-1.982c.23-.224.355-.524.355-.844a1.19 1.19 0 0 0-.352-.853z",
|
|
24
|
+
fillRule: "evenodd"
|
|
25
|
+
})]
|
|
26
|
+
});
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24">
|
|
2
|
+
<path d="M19.717 2c.612 0 1.198.235 1.61.646a2.275 2.275 0 01.135 3.086l-.138.148L7.11 20.093a2.215 2.215 0 01-.227.205l-.03.015-4.114 1.648a.544.544 0 01-.581-.119.536.536 0 01-.146-.495l.027-.087 1.644-4.118a.519.519 0 01.07-.124l.05-.056L18.107 2.646A2.281 2.281 0 0119.718 2zm-15.1 15.715l-1.11 2.776 2.772-1.11-1.663-1.666zM16.114 6.167L5.358 16.931l1.68 1.682 1.335-1.37c1.2-1.216 3.012-3.027 5.672-5.67l3.753-3.721-1.683-1.685zm4.454-2.753a1.222 1.222 0 00-1.595-.096l-.103.091-1.993 1.995 1.686 1.689 2.002-1.982c.23-.224.355-.524.355-.844a1.19 1.19 0 00-.352-.853z" fill-rule="evenodd"/>
|
|
3
|
+
</svg>
|
package/build/web/icons/index.js
CHANGED
|
@@ -73,6 +73,7 @@ module.exports = {
|
|
|
73
73
|
Download: require('./Download'),
|
|
74
74
|
DownloadPdf: require('./DownloadPdf'),
|
|
75
75
|
DownloadPdfs: require('./DownloadPdfs'),
|
|
76
|
+
Edit: require('./Edit'),
|
|
76
77
|
Email: require('./Email'),
|
|
77
78
|
Escalations: require('./Escalations'),
|
|
78
79
|
FavouriteNetwork: require('./FavouriteNetwork'),
|