@telus-uds/palette-koodo 0.1.0-prerelease.4 → 0.1.2
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 +1 -1
- package/build/android/border.xml +1 -1
- package/build/android/color.xml +2 -1
- package/build/android/font_size.xml +1 -1
- package/build/android/radius.xml +1 -1
- package/build/android/size.xml +1 -1
- package/build/ios/Border.swift +1 -1
- package/build/ios/Color.swift +31 -30
- package/build/ios/FontSize.swift +1 -1
- package/build/ios/Radius.swift +1 -1
- package/build/ios/Size.swift +1 -1
- package/build/rn/fonts/StagSans-300.otf +0 -0
- package/build/rn/fonts/StagSans-400.otf +0 -0
- package/build/rn/fonts/StagSans-500.otf +0 -0
- package/build/rn/fonts/StagSans-600.otf +0 -0
- package/build/rn/fonts/StagSans-700.otf +0 -0
- package/build/rn/icons/ExclamationOctagon.js +9 -6
- package/build/rn/icons/ExclamationOctagon.native.js +9 -6
- package/build/rn/icons/exclamation-octagon.icon.svg +1 -1
- package/build/rn/palette.js +2 -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/fonts/v0_1_2-StagSans-300-QFIJS7717Liw469N3a7WH.otf +0 -0
- package/build/web/fonts/v0_1_2-StagSans-400-uc7iJKgxavwq-T8P0wo8b.otf +0 -0
- package/build/web/fonts/v0_1_2-StagSans-500-7ajqw-ubiB3To96yOudaK.otf +0 -0
- package/build/web/fonts/v0_1_2-StagSans-600-JmArAcCzJaPDGFRq_9vtu.otf +0 -0
- package/build/web/fonts/v0_1_2-StagSans-700-wPQ50jCx1PlfrCspneMf9.otf +0 -0
- package/build/web/icons/ExclamationOctagon.js +9 -6
- package/build/web/icons/exclamation-octagon.icon.svg +1 -1
- package/build/web/palette.js +7 -6
- package/package.json +5 -8
- package/palette.json +5 -0
- package/CHANGELOG.md +0 -197
- package/build/web/fonts/v0_1_0-prerelease_3-StagSans-300-sLT1MmpRsuPLSDRRGOhC0.otf +0 -0
- package/build/web/fonts/v0_1_0-prerelease_3-StagSans-400-67cZTqZXiJtGc66lne43n.otf +0 -0
- package/build/web/fonts/v0_1_0-prerelease_3-StagSans-500-Vtx9X6AxXIm5sAB2O7EpR.otf +0 -0
- package/build/web/fonts/v0_1_0-prerelease_3-StagSans-600-XXrMTsz039b_ZRWQqQiJc.otf +0 -0
- package/build/web/fonts/v0_1_0-prerelease_3-StagSans-700-F47eH_w_GZXuWhY9xqssy.otf +0 -0
package/README.md
CHANGED
package/build/android/border.xml
CHANGED
package/build/android/color.xml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<!--
|
|
4
4
|
Do not edit directly
|
|
5
|
-
Generated on
|
|
5
|
+
Generated on Tue, 10 May 2022 13:55:43 GMT
|
|
6
6
|
-->
|
|
7
7
|
|
|
8
8
|
<resources>
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
<color name="mint_tulip">#ffc1f2e8</color>
|
|
26
26
|
<color name="mortar">#ff595959</color>
|
|
27
27
|
<color name="mosque">#ff016b6a</color>
|
|
28
|
+
<color name="notification_error_bg">#fff8dde3</color>
|
|
28
29
|
<color name="onahau">#ffc3efff</color>
|
|
29
30
|
<color name="sea_buckthorn">#fffbaf34</color>
|
|
30
31
|
<color name="silver">#ffc9c8c8</color>
|
package/build/android/radius.xml
CHANGED
package/build/android/size.xml
CHANGED
package/build/ios/Border.swift
CHANGED
package/build/ios/Color.swift
CHANGED
|
@@ -4,39 +4,40 @@
|
|
|
4
4
|
//
|
|
5
5
|
|
|
6
6
|
// Do not edit directly
|
|
7
|
-
// Generated on
|
|
7
|
+
// Generated on Tue, 10 May 2022 13:55:43 GMT
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
import UIKit
|
|
11
11
|
|
|
12
12
|
public enum PaletteColor {
|
|
13
|
-
public static let amaranth = UIColor(red: 0.933, green: 0.173, blue: 0.455, alpha:1)
|
|
14
|
-
public static let beeswax = UIColor(red: 0.996, green: 0.933, blue: 0.780, alpha:1)
|
|
15
|
-
public static let bilbao = UIColor(red: 0.145, green: 0.545, blue: 0.043, alpha:1)
|
|
16
|
-
public static let black = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha:1)
|
|
17
|
-
public static let blue = UIColor(red: 0.000, green: 0.631, blue: 0.859, alpha:1)
|
|
18
|
-
public static let burntSienna = UIColor(red: 0.929, green: 0.388, blue: 0.345, alpha:1)
|
|
19
|
-
public static let cardinalPink = UIColor(red: 0.549, green: 0.016, blue: 0.282, alpha:1)
|
|
20
|
-
public static let carouselPink = UIColor(red: 0.980, green: 0.902, blue: 0.957, alpha:1)
|
|
21
|
-
public static let chathamsBlue = UIColor(red: 0.090, green: 0.212, blue: 0.490, alpha:1)
|
|
22
|
-
public static let darkBlue = UIColor(red: 0.000, green: 0.514, blue: 0.702, alpha:1)
|
|
23
|
-
public static let darkMosque = UIColor(red: 0.004, green: 0.282, blue: 0.278, alpha:1)
|
|
24
|
-
public static let dove = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha:1)
|
|
25
|
-
public static let flirt = UIColor(red: 0.486, green: 0.075, blue: 0.400, alpha:1)
|
|
26
|
-
public static let gallery = UIColor(red: 0.937, green: 0.937, blue: 0.937, alpha:1)
|
|
27
|
-
public static let hibiscus = UIColor(red: 0.773, green: 0.227, blue: 0.439, alpha:1)
|
|
28
|
-
public static let iceberg = UIColor(red: 0.796, green: 0.941, blue: 0.910, alpha:1)
|
|
29
|
-
public static let mintTulip = UIColor(red: 0.757, green: 0.949, blue: 0.910, alpha:1)
|
|
30
|
-
public static let mortar = UIColor(red: 0.349, green: 0.349, blue: 0.349, alpha:1)
|
|
31
|
-
public static let mosque = UIColor(red: 0.004, green: 0.420, blue: 0.416, alpha:1)
|
|
32
|
-
public static let
|
|
33
|
-
public static let
|
|
34
|
-
public static let
|
|
35
|
-
public static let
|
|
36
|
-
public static let
|
|
37
|
-
public static let
|
|
38
|
-
public static let
|
|
39
|
-
public static let
|
|
40
|
-
public static let
|
|
41
|
-
public static let
|
|
13
|
+
public static let amaranth = UIColor(red: 0.933, green: 0.173, blue: 0.455, alpha: 1)
|
|
14
|
+
public static let beeswax = UIColor(red: 0.996, green: 0.933, blue: 0.780, alpha: 1)
|
|
15
|
+
public static let bilbao = UIColor(red: 0.145, green: 0.545, blue: 0.043, alpha: 1)
|
|
16
|
+
public static let black = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1)
|
|
17
|
+
public static let blue = UIColor(red: 0.000, green: 0.631, blue: 0.859, alpha: 1)
|
|
18
|
+
public static let burntSienna = UIColor(red: 0.929, green: 0.388, blue: 0.345, alpha: 1)
|
|
19
|
+
public static let cardinalPink = UIColor(red: 0.549, green: 0.016, blue: 0.282, alpha: 1)
|
|
20
|
+
public static let carouselPink = UIColor(red: 0.980, green: 0.902, blue: 0.957, alpha: 1)
|
|
21
|
+
public static let chathamsBlue = UIColor(red: 0.090, green: 0.212, blue: 0.490, alpha: 1)
|
|
22
|
+
public static let darkBlue = UIColor(red: 0.000, green: 0.514, blue: 0.702, alpha: 1)
|
|
23
|
+
public static let darkMosque = UIColor(red: 0.004, green: 0.282, blue: 0.278, alpha: 1)
|
|
24
|
+
public static let dove = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1)
|
|
25
|
+
public static let flirt = UIColor(red: 0.486, green: 0.075, blue: 0.400, alpha: 1)
|
|
26
|
+
public static let gallery = UIColor(red: 0.937, green: 0.937, blue: 0.937, alpha: 1)
|
|
27
|
+
public static let hibiscus = UIColor(red: 0.773, green: 0.227, blue: 0.439, alpha: 1)
|
|
28
|
+
public static let iceberg = UIColor(red: 0.796, green: 0.941, blue: 0.910, alpha: 1)
|
|
29
|
+
public static let mintTulip = UIColor(red: 0.757, green: 0.949, blue: 0.910, alpha: 1)
|
|
30
|
+
public static let mortar = UIColor(red: 0.349, green: 0.349, blue: 0.349, alpha: 1)
|
|
31
|
+
public static let mosque = UIColor(red: 0.004, green: 0.420, blue: 0.416, alpha: 1)
|
|
32
|
+
public static let notificationErrorBg = UIColor(red: 0.973, green: 0.867, blue: 0.890, alpha: 1)
|
|
33
|
+
public static let onahau = UIColor(red: 0.765, green: 0.937, blue: 1.000, alpha: 1)
|
|
34
|
+
public static let seaBuckthorn = UIColor(red: 0.984, green: 0.686, blue: 0.204, alpha: 1)
|
|
35
|
+
public static let silver = UIColor(red: 0.788, green: 0.784, blue: 0.784, alpha: 1)
|
|
36
|
+
public static let texas = UIColor(red: 0.976, green: 0.965, blue: 0.647, alpha: 1)
|
|
37
|
+
public static let transparent = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 0)
|
|
38
|
+
public static let trinidad = UIColor(red: 0.875, green: 0.239, blue: 0.047, alpha: 1)
|
|
39
|
+
public static let turquoise = UIColor(red: 0.224, green: 0.804, blue: 0.788, alpha: 1)
|
|
40
|
+
public static let wattle = UIColor(red: 0.835, green: 0.878, blue: 0.302, alpha: 1)
|
|
41
|
+
public static let wellRead = UIColor(red: 0.722, green: 0.216, blue: 0.243, alpha: 1)
|
|
42
|
+
public static let white = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
42
43
|
}
|
package/build/ios/FontSize.swift
CHANGED
package/build/ios/Radius.swift
CHANGED
package/build/ios/Size.swift
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -19,11 +19,14 @@ module.exports = ({
|
|
|
19
19
|
children: [title ? /*#__PURE__*/(0, _jsxRuntime.jsx)("title", {
|
|
20
20
|
id: titleId,
|
|
21
21
|
children: title
|
|
22
|
-
}) : null, /*#__PURE__*/(0, _jsxRuntime.
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
22
|
+
}) : null, /*#__PURE__*/(0, _jsxRuntime.jsxs)("g", {
|
|
23
|
+
fillRule: "evenodd",
|
|
24
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
25
|
+
fill: "#FFF",
|
|
26
|
+
d: "M9 3h3.4v17H9z"
|
|
27
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
28
|
+
d: "M9.618 13.073h2.762v-9.67H9.618v9.67Zm0 5.524h2.762v-2.762H9.618v2.762ZM6.443 0 0 6.442v9.115L6.443 22h9.114L22 15.557V6.442L15.557 0H6.443Z",
|
|
29
|
+
fill: "#E61360"
|
|
30
|
+
})]
|
|
28
31
|
})]
|
|
29
32
|
});
|
|
@@ -19,11 +19,14 @@ module.exports = ({
|
|
|
19
19
|
children: [title ? /*#__PURE__*/(0, _jsxRuntime.jsx)("title", {
|
|
20
20
|
id: titleId,
|
|
21
21
|
children: title
|
|
22
|
-
}) : null, /*#__PURE__*/(0, _jsxRuntime.
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
22
|
+
}) : null, /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.G, {
|
|
23
|
+
fillRule: "evenodd",
|
|
24
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
25
|
+
fill: "#FFF",
|
|
26
|
+
d: "M9 3h3.4v17H9z"
|
|
27
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
28
|
+
d: "M9.618 13.073h2.762v-9.67H9.618v9.67Zm0 5.524h2.762v-2.762H9.618v2.762ZM6.443 0 0 6.442v9.115L6.443 22h9.114L22 15.557V6.442L15.557 0H6.443Z",
|
|
29
|
+
fill: "#E61360"
|
|
30
|
+
})]
|
|
28
31
|
})]
|
|
29
32
|
});
|
package/build/rn/palette.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 10 May 2022 13:55:44 GMT
|
|
4
4
|
*/
|
|
5
5
|
module.exports = {
|
|
6
6
|
border: {
|
|
@@ -30,6 +30,7 @@ module.exports = {
|
|
|
30
30
|
mintTulip: '#c1f2e8',
|
|
31
31
|
mortar: '#595959',
|
|
32
32
|
mosque: '#016b6a',
|
|
33
|
+
notificationErrorBg: '#f8dde3',
|
|
33
34
|
onahau: '#c3efff',
|
|
34
35
|
seaBuckthorn: '#fbaf34',
|
|
35
36
|
silver: '#c9c8c8',
|
|
@@ -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/v0_1_2-StagSans-300-QFIJS7717Liw469N3a7WH.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/v0_1_2-StagSans-400-uc7iJKgxavwq-T8P0wo8b.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/v0_1_2-StagSans-500-7ajqw-ubiB3To96yOudaK.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/v0_1_2-StagSans-600-JmArAcCzJaPDGFRq_9vtu.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/v0_1_2-StagSans-700-wPQ50jCx1PlfrCspneMf9.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/v0_1_2-StagSans-300-QFIJS7717Liw469N3a7WH.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/v0_1_2-StagSans-400-uc7iJKgxavwq-T8P0wo8b.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/v0_1_2-StagSans-500-7ajqw-ubiB3To96yOudaK.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/v0_1_2-StagSans-600-JmArAcCzJaPDGFRq_9vtu.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/v0_1_2-StagSans-700-wPQ50jCx1PlfrCspneMf9.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('./v0_1_2-StagSans-300-QFIJS7717Liw469N3a7WH.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('./v0_1_2-StagSans-400-uc7iJKgxavwq-T8P0wo8b.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('./v0_1_2-StagSans-500-7ajqw-ubiB3To96yOudaK.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('./v0_1_2-StagSans-600-JmArAcCzJaPDGFRq_9vtu.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('./v0_1_2-StagSans-700-wPQ50jCx1PlfrCspneMf9.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('./v0_1_2-StagSans-300-QFIJS7717Liw469N3a7WH.otf');
|
|
4
4
|
font-display: block;
|
|
5
5
|
}
|
|
6
6
|
@font-face {
|
|
7
7
|
font-family: 'StagSans400normal';
|
|
8
|
-
src: url('./
|
|
8
|
+
src: url('./v0_1_2-StagSans-400-uc7iJKgxavwq-T8P0wo8b.otf');
|
|
9
9
|
font-display: block;
|
|
10
10
|
}
|
|
11
11
|
@font-face {
|
|
12
12
|
font-family: 'StagSans500normal';
|
|
13
|
-
src: url('./
|
|
13
|
+
src: url('./v0_1_2-StagSans-500-7ajqw-ubiB3To96yOudaK.otf');
|
|
14
14
|
font-display: block;
|
|
15
15
|
}
|
|
16
16
|
@font-face {
|
|
17
17
|
font-family: 'StagSans600normal';
|
|
18
|
-
src: url('./
|
|
18
|
+
src: url('./v0_1_2-StagSans-600-JmArAcCzJaPDGFRq_9vtu.otf');
|
|
19
19
|
font-display: block;
|
|
20
20
|
}
|
|
21
21
|
@font-face {
|
|
22
22
|
font-family: 'StagSans700normal';
|
|
23
|
-
src: url('./
|
|
23
|
+
src: url('./v0_1_2-StagSans-700-wPQ50jCx1PlfrCspneMf9.otf');
|
|
24
24
|
font-display: block;
|
|
25
25
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -19,11 +19,14 @@ module.exports = ({
|
|
|
19
19
|
children: [title ? /*#__PURE__*/(0, _jsxRuntime.jsx)("title", {
|
|
20
20
|
id: titleId,
|
|
21
21
|
children: title
|
|
22
|
-
}) : null, /*#__PURE__*/(0, _jsxRuntime.
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
22
|
+
}) : null, /*#__PURE__*/(0, _jsxRuntime.jsxs)("g", {
|
|
23
|
+
fillRule: "evenodd",
|
|
24
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
25
|
+
fill: "#FFF",
|
|
26
|
+
d: "M9 3h3.4v17H9z"
|
|
27
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
28
|
+
d: "M9.618 13.073h2.762v-9.67H9.618v9.67Zm0 5.524h2.762v-2.762H9.618v2.762ZM6.443 0 0 6.442v9.115L6.443 22h9.114L22 15.557V6.442L15.557 0H6.443Z",
|
|
29
|
+
fill: "#E61360"
|
|
30
|
+
})]
|
|
28
31
|
})]
|
|
29
32
|
});
|
package/build/web/palette.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 10 May 2022 13:55:43 GMT
|
|
4
4
|
*/
|
|
5
5
|
module.exports = {
|
|
6
6
|
border: {
|
|
@@ -30,6 +30,7 @@ module.exports = {
|
|
|
30
30
|
mintTulip: '#c1f2e8',
|
|
31
31
|
mortar: '#595959',
|
|
32
32
|
mosque: '#016b6a',
|
|
33
|
+
notificationErrorBg: '#f8dde3',
|
|
33
34
|
onahau: '#c3efff',
|
|
34
35
|
seaBuckthorn: '#fbaf34',
|
|
35
36
|
silver: '#c9c8c8',
|
|
@@ -47,11 +48,11 @@ module.exports = {
|
|
|
47
48
|
},
|
|
48
49
|
font: {
|
|
49
50
|
StagSans: {
|
|
50
|
-
300: 'https://cdn.telus.digital/uds/
|
|
51
|
-
400: 'https://cdn.telus.digital/uds/
|
|
52
|
-
500: 'https://cdn.telus.digital/uds/
|
|
53
|
-
600: 'https://cdn.telus.digital/uds/
|
|
54
|
-
700: 'https://cdn.telus.digital/uds/
|
|
51
|
+
300: 'https://cdn.telus.digital/uds/v0_1_2-StagSans-300-QFIJS7717Liw469N3a7WH.otf',
|
|
52
|
+
400: 'https://cdn.telus.digital/uds/v0_1_2-StagSans-400-uc7iJKgxavwq-T8P0wo8b.otf',
|
|
53
|
+
500: 'https://cdn.telus.digital/uds/v0_1_2-StagSans-500-7ajqw-ubiB3To96yOudaK.otf',
|
|
54
|
+
600: 'https://cdn.telus.digital/uds/v0_1_2-StagSans-600-JmArAcCzJaPDGFRq_9vtu.otf',
|
|
55
|
+
700: 'https://cdn.telus.digital/uds/v0_1_2-StagSans-700-wPQ50jCx1PlfrCspneMf9.otf'
|
|
55
56
|
}
|
|
56
57
|
},
|
|
57
58
|
fontSize: {
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telus-uds/palette-koodo",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Koodo palette",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"keywords": [
|
|
7
7
|
"koodo"
|
|
8
8
|
],
|
|
9
9
|
"author": "TELUS Digital",
|
|
10
|
-
"homepage": "https://github.com/telus/
|
|
10
|
+
"homepage": "https://github.com/telus/koodo-design-system#readme",
|
|
11
11
|
"license": "UNLICENSED",
|
|
12
12
|
"main": "build/rn/palette.js",
|
|
13
13
|
"files": [
|
|
@@ -16,17 +16,14 @@
|
|
|
16
16
|
],
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|
|
19
|
-
"url": "git+https://github.com/telus/
|
|
19
|
+
"url": "git+https://github.com/telus/koodo-design-system.git"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "system-tokens-build-palette",
|
|
23
23
|
"dev": "nodemon -w palette.json -x 'yarn build'",
|
|
24
|
-
"
|
|
24
|
+
"prepublishOnly": "npm run build"
|
|
25
25
|
},
|
|
26
26
|
"bugs": {
|
|
27
|
-
"url": "https://github.com/telus/
|
|
28
|
-
},
|
|
29
|
-
"devDependencies": {
|
|
30
|
-
"@telus-uds/system-tokens": "^0.0.1"
|
|
27
|
+
"url": "https://github.com/telus/koodo-design-system/issues"
|
|
31
28
|
}
|
|
32
29
|
}
|
package/palette.json
CHANGED
|
@@ -115,6 +115,11 @@
|
|
|
115
115
|
"tags": ["brand"],
|
|
116
116
|
"value": "rgb(1, 107, 106)"
|
|
117
117
|
},
|
|
118
|
+
"notificationErrorBg": {
|
|
119
|
+
"description": "Used for error notifications, tbc if should be in palette",
|
|
120
|
+
"tags": [],
|
|
121
|
+
"value": "rgb(248, 221, 227)"
|
|
122
|
+
},
|
|
118
123
|
"onahau": {
|
|
119
124
|
"description": "",
|
|
120
125
|
"tags": ["ui"],
|
package/CHANGELOG.md
DELETED
|
@@ -1,197 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
-
|
|
5
|
-
## [0.1.0-prerelease.4](https://github.com/telus/universal-design-system/compare/@telus-uds/palette-koodo/v0.1.0-prerelease.3...@telus-uds/palette-koodo/v0.1.0-prerelease.4) (2022-03-02)
|
|
6
|
-
|
|
7
|
-
### Features
|
|
8
|
-
|
|
9
|
-
- align Koodo StepTracker component with Figma ([#1377](https://github.com/telus/universal-design-system/issues/1377)) ([d083584](https://github.com/telus/universal-design-system/commit/d083584880100617fb5402558a1538097912fef8))
|
|
10
|
-
|
|
11
|
-
### Change summary (does not include documentation changes)
|
|
12
|
-
|
|
13
|
-
#### New keys
|
|
14
|
-
|
|
15
|
-
- `size.size15`
|
|
16
|
-
|
|
17
|
-
## [0.1.0-prerelease.3](https://github.com/telus/universal-design-system/compare/@telus-uds/palette-koodo/v0.1.0-prerelease.2...@telus-uds/palette-koodo/v0.1.0-prerelease.3) (2022-02-28)
|
|
18
|
-
|
|
19
|
-
### Features
|
|
20
|
-
|
|
21
|
-
- **themes:** validate theme token types ([#1221](https://github.com/telus/universal-design-system/issues/1221)) ([dae382d](https://github.com/telus/universal-design-system/commit/dae382d19f86b88cd5de9df8c94f8200aee5b33f))
|
|
22
|
-
|
|
23
|
-
### Change summary (does not include documentation changes)
|
|
24
|
-
|
|
25
|
-
#### New keys
|
|
26
|
-
|
|
27
|
-
- `size.size1`
|
|
28
|
-
- `size.size14`
|
|
29
|
-
|
|
30
|
-
## [0.1.0-prerelease.2](https://github.com/telus/universal-design-system/compare/@telus-uds/palette-koodo/v0.1.0-prerelease.1...@telus-uds/palette-koodo/v0.1.0-prerelease.2) (2022-01-20)
|
|
31
|
-
|
|
32
|
-
### Features
|
|
33
|
-
|
|
34
|
-
- add opacity and duration tokens to palettes ([#754](https://github.com/telus/universal-design-system/issues/754)) ([e1de9a6](https://github.com/telus/universal-design-system/commit/e1de9a62ec78d217677409590ad46e3674aabf2f))
|
|
35
|
-
- **base:** add `ProgressBar` component ([#890](https://github.com/telus/universal-design-system/issues/890)) ([b98315c](https://github.com/telus/universal-design-system/commit/b98315cc7dabb2c7130c62c9c3bbf6fdfb7419a0))
|
|
36
|
-
- **base:** add `Radio` button ([#731](https://github.com/telus/universal-design-system/issues/731)) ([ad1613c](https://github.com/telus/universal-design-system/commit/ad1613c547fe3b0cdf1490a92267f32045356133))
|
|
37
|
-
- **base:** add base `StepTracker` component ([#800](https://github.com/telus/universal-design-system/issues/800)) ([aa7d472](https://github.com/telus/universal-design-system/commit/aa7d47297c1d9ba13daef60b5184ead07b95cd52))
|
|
38
|
-
- **base:** add Tooltip component ([#687](https://github.com/telus/universal-design-system/issues/687)) ([38aaad4](https://github.com/telus/universal-design-system/commit/38aaad43d664b76e85a264901df5e1ca045a0304))
|
|
39
|
-
|
|
40
|
-
### Bug Fixes
|
|
41
|
-
|
|
42
|
-
- **koodo:** fix and migrate koodo theme ([#904](https://github.com/telus/universal-design-system/issues/904)) ([c40972c](https://github.com/telus/universal-design-system/commit/c40972c6e9eff5b892d45ce87b039eb3aae6fea2))
|
|
43
|
-
|
|
44
|
-
### Change summary (does not include documentation changes)
|
|
45
|
-
|
|
46
|
-
#### New keys
|
|
47
|
-
|
|
48
|
-
- `size.size2`
|
|
49
|
-
- `size.size12`
|
|
50
|
-
- `radius.radius12`
|
|
51
|
-
- `border.border3`
|
|
52
|
-
- `shadow.none.inset`
|
|
53
|
-
- `shadow.none.color`
|
|
54
|
-
- `shadow.none.offsetX`
|
|
55
|
-
- `shadow.none.offsetY`
|
|
56
|
-
- `shadow.none.blur`
|
|
57
|
-
- `shadow.none.spread`
|
|
58
|
-
- `opacity.opacity3`
|
|
59
|
-
- `opacity.opacity5`
|
|
60
|
-
- `opacity.opacity8`
|
|
61
|
-
- `duration.duration300`
|
|
62
|
-
- `duration.duration250`
|
|
63
|
-
|
|
64
|
-
## [0.1.0-prerelease.1](https://github.com/telus/universal-design-system/compare/@telus-uds/palette-koodo/v0.1.0-prerelease.0...@telus-uds/palette-koodo/v0.1.0-prerelease.1) (2021-10-27)
|
|
65
|
-
|
|
66
|
-
### Palette change summary (does not include documentation changes)
|
|
67
|
-
|
|
68
|
-
## 0.1.0-prerelease.0 (2021-10-08)
|
|
69
|
-
|
|
70
|
-
### Features
|
|
71
|
-
|
|
72
|
-
- add letter spacing to palette schema, palettes and themes ([#345](https://github.com/telus/universal-design-system/issues/345)) ([fd83f6e](https://github.com/telus/universal-design-system/commit/fd83f6e4e750da3d5b9db12a601877085a7ca347))
|
|
73
|
-
- **base:** add SideNav component ([#500](https://github.com/telus/universal-design-system/issues/500)) ([edc45e8](https://github.com/telus/universal-design-system/commit/edc45e84d627f371bb6d8c5053bcff1259ebabb2))
|
|
74
|
-
- icon index ([#209](https://github.com/telus/universal-design-system/issues/209)) ([5b4423a](https://github.com/telus/universal-design-system/commit/5b4423a6004c5fe5ff1953933199bcacb26e1da2))
|
|
75
|
-
- **icons:** add svg icon resources ([#160](https://github.com/telus/universal-design-system/issues/160)) ([a832f3b](https://github.com/telus/universal-design-system/commit/a832f3b3486bf2e9fb96c3848b72c7d3126647d4))
|
|
76
|
-
- ios and android builds ([#110](https://github.com/telus/universal-design-system/issues/110)) ([b014773](https://github.com/telus/universal-design-system/commit/b01477326fdb471cbfb835a1203dabe00bb0ff3d))
|
|
77
|
-
- **koodo:** introduce koodo theme ([#216](https://github.com/telus/universal-design-system/issues/216)) ([3bcf63d](https://github.com/telus/universal-design-system/commit/3bcf63d22bce3f351a36927a5872c19a44df59c1))
|
|
78
|
-
- **lerna:** add lerna and folder structure ([#1](https://github.com/telus/universal-design-system/issues/1)) ([db8a5ee](https://github.com/telus/universal-design-system/commit/db8a5ee32e2a7b5672f55e2a91310d53541fc53c))
|
|
79
|
-
- Palette tooling ([#109](https://github.com/telus/universal-design-system/issues/109)) ([4bfa5a7](https://github.com/telus/universal-design-system/commit/4bfa5a7fb126c12a832d6dab2c75ccd89b342b98))
|
|
80
|
-
- **palette:** introduce Koodo brand palette ([275a463](https://github.com/telus/universal-design-system/commit/275a463251dba643b9a878bd979005b6720d55fe))
|
|
81
|
-
- **theme:** update theming based on ADR ([#458](https://github.com/telus/universal-design-system/issues/458)) ([4591fbd](https://github.com/telus/universal-design-system/commit/4591fbdd6c7088b9e03d38a0abc17901854d85bb)), closes [#375](https://github.com/telus/universal-design-system/issues/375) [#412](https://github.com/telus/universal-design-system/issues/412) [#413](https://github.com/telus/universal-design-system/issues/413) [#414](https://github.com/telus/universal-design-system/issues/414) [#428](https://github.com/telus/universal-design-system/issues/428) [#443](https://github.com/telus/universal-design-system/issues/443) [#429](https://github.com/telus/universal-design-system/issues/429) [#445](https://github.com/telus/universal-design-system/issues/445) [#451](https://github.com/telus/universal-design-system/issues/451) [#452](https://github.com/telus/universal-design-system/issues/452) [#457](https://github.com/telus/universal-design-system/issues/457)
|
|
82
|
-
- **theming:** basic theme provider, variant handling and sample theme ([#67](https://github.com/telus/universal-design-system/issues/67)) ([beb04e4](https://github.com/telus/universal-design-system/commit/beb04e4fbcd9c56ef7d7e6b56fb56925989648f1))
|
|
83
|
-
- **tools:** font assets ([#165](https://github.com/telus/universal-design-system/issues/165)) ([8b6c36c](https://github.com/telus/universal-design-system/commit/8b6c36c1ec4044c7672ba9800e118e653b62a06e))
|
|
84
|
-
|
|
85
|
-
### Bug Fixes
|
|
86
|
-
|
|
87
|
-
- **linting:** fix all the linting errors ([#99](https://github.com/telus/universal-design-system/issues/99)) ([d92861b](https://github.com/telus/universal-design-system/commit/d92861b27afc8ca42f7c06dbc66f99628b2395f6))
|
|
88
|
-
- missed a spacings ([#186](https://github.com/telus/universal-design-system/issues/186)) ([8668ed7](https://github.com/telus/universal-design-system/commit/8668ed746162fa7dcfe0197adfab0f9521c32873))
|
|
89
|
-
- **palette:** fix invalid svg breaking koodo ([#332](https://github.com/telus/universal-design-system/issues/332)) ([48430cf](https://github.com/telus/universal-design-system/commit/48430cff7910659d393b85fe356e38debd8b3496))
|
|
90
|
-
|
|
91
|
-
### Palette change summary (does not include documentation changes)
|
|
92
|
-
|
|
93
|
-
#### New keys
|
|
94
|
-
|
|
95
|
-
- `color.flirt`
|
|
96
|
-
- `color.mosque`
|
|
97
|
-
- `color.darkMosque`
|
|
98
|
-
- `color.blue`
|
|
99
|
-
- `color.darkBlue`
|
|
100
|
-
- `color.texas`
|
|
101
|
-
- `color.amaranth`
|
|
102
|
-
- `color.cardinalPink`
|
|
103
|
-
- `color.trinidad`
|
|
104
|
-
- `color.onahau`
|
|
105
|
-
- `color.burntSienna`
|
|
106
|
-
- `color.chathamsBlue`
|
|
107
|
-
- `color.wellRead`
|
|
108
|
-
- `color.wattle`
|
|
109
|
-
- `color.beeswax`
|
|
110
|
-
- `color.bilbao`
|
|
111
|
-
- `color.seaBuckthorn`
|
|
112
|
-
- `color.mintTulip`
|
|
113
|
-
- `color.turquoise`
|
|
114
|
-
- `color.hibiscus`
|
|
115
|
-
- `color.carouselPink`
|
|
116
|
-
- `color.white`
|
|
117
|
-
- `color.black`
|
|
118
|
-
- `color.mortar`
|
|
119
|
-
- `color.gallery`
|
|
120
|
-
- `color.silver`
|
|
121
|
-
- `color.dove`
|
|
122
|
-
- `color.iceberg`
|
|
123
|
-
- `color.transparent`
|
|
124
|
-
- `font.StagSans.300`
|
|
125
|
-
- `font.StagSans.400`
|
|
126
|
-
- `font.StagSans.500`
|
|
127
|
-
- `font.StagSans.600`
|
|
128
|
-
- `font.StagSans.700`
|
|
129
|
-
- `fontSize.size12`
|
|
130
|
-
- `fontSize.size14`
|
|
131
|
-
- `fontSize.size16`
|
|
132
|
-
- `fontSize.size20`
|
|
133
|
-
- `fontSize.size24`
|
|
134
|
-
- `fontSize.size28`
|
|
135
|
-
- `fontSize.size40`
|
|
136
|
-
- `fontSize.size44`
|
|
137
|
-
- `fontSize.size48`
|
|
138
|
-
- `fontSize.size56`
|
|
139
|
-
- `fontSize.size64`
|
|
140
|
-
- `size.size0`
|
|
141
|
-
- `size.size4`
|
|
142
|
-
- `size.size8`
|
|
143
|
-
- `size.size10`
|
|
144
|
-
- `size.size16`
|
|
145
|
-
- `size.size20`
|
|
146
|
-
- `size.size24`
|
|
147
|
-
- `size.size32`
|
|
148
|
-
- `size.size36`
|
|
149
|
-
- `size.size40`
|
|
150
|
-
- `size.size48`
|
|
151
|
-
- `size.size64`
|
|
152
|
-
- `size.size72`
|
|
153
|
-
- `size.size80`
|
|
154
|
-
- `size.size96`
|
|
155
|
-
- `size.size120`
|
|
156
|
-
- `radius.none`
|
|
157
|
-
- `radius.radius4`
|
|
158
|
-
- `radius.pill32`
|
|
159
|
-
- `border.none`
|
|
160
|
-
- `border.border1`
|
|
161
|
-
- `border.border2`
|
|
162
|
-
- `border.border4`
|
|
163
|
-
- `lineHeight.multiply160`
|
|
164
|
-
- `lineHeight.multiply150`
|
|
165
|
-
- `lineHeight.multiply140`
|
|
166
|
-
- `lineHeight.multiply130`
|
|
167
|
-
- `lineHeight.multiply120`
|
|
168
|
-
- `lineHeight.multiply110`
|
|
169
|
-
- `letterSpacing.default`
|
|
170
|
-
- `icon.ChevronUp`
|
|
171
|
-
- `icon.ChevronRight`
|
|
172
|
-
- `icon.ChevronDown`
|
|
173
|
-
- `icon.ChevronLeft`
|
|
174
|
-
- `icon.Cart`
|
|
175
|
-
- `icon.CircledLine`
|
|
176
|
-
- `icon.Times`
|
|
177
|
-
- `icon.TimesCircled`
|
|
178
|
-
- `icon.Check`
|
|
179
|
-
- `icon.CheckCircledFilled`
|
|
180
|
-
- `icon.CheckCircledNotFilled`
|
|
181
|
-
- `icon.ArrowDownCircled`
|
|
182
|
-
- `icon.ExclamationTriangle`
|
|
183
|
-
- `icon.ExclamationOctagon`
|
|
184
|
-
- `icon.InformationCircled`
|
|
185
|
-
- `icon.BoxOutline`
|
|
186
|
-
- `icon.BoxOutlineChecked`
|
|
187
|
-
- `icon.RadialOutline`
|
|
188
|
-
- `icon.RadialOutlineChecked`
|
|
189
|
-
- `icon.Hamburger`
|
|
190
|
-
- `icon.Spyglass`
|
|
191
|
-
- `icon.Bullet`
|
|
192
|
-
- `icon.Info`
|
|
193
|
-
- `icon.InfoSelected`
|
|
194
|
-
- `icon.Refresh`
|
|
195
|
-
- `icon.Kebab`
|
|
196
|
-
- `icon.EyeOpened`
|
|
197
|
-
- `icon.EyeClosed`
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|