@telus-uds/palette-koodo 0.1.0-prerelease.3 → 0.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/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 +2 -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 +2 -1
- 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 +3 -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_0-prerelease_2-StagSans-300-SIdtvc1GNy55QQVhWJb65.otf → v0_1_1-StagSans-300-KODBXfxZh5kPm8plpNUsg.otf} +0 -0
- package/build/web/fonts/{v0_1_0-prerelease_2-StagSans-400-Q03VUUPzb-J1uH_0Tp_zJ.otf → v0_1_1-StagSans-400-d5Ej1-UR8pOGuEJOJxVJZ.otf} +0 -0
- package/build/web/fonts/{v0_1_0-prerelease_2-StagSans-500-cv8pFY_SGXh6QYDVZ3r4U.otf → v0_1_1-StagSans-500-5cgnjcnhOEs-VdNNbc_8k.otf} +0 -0
- package/build/web/fonts/{v0_1_0-prerelease_2-StagSans-600-Glr-vkbc0VFpKwEguJghZ.otf → v0_1_1-StagSans-600-MLIKVnAuZsaNCGK5jCzi5.otf} +0 -0
- package/build/web/fonts/{v0_1_0-prerelease_2-StagSans-700-3W5GmkJ3rhaHpdgnJQjSA.otf → v0_1_1-StagSans-700-DFXRhELO-g3vx5yVfoFdE.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 +8 -6
- package/package.json +5 -8
- package/palette.json +9 -0
- package/CHANGELOG.md +0 -185
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 Fri, 29 Apr 2022 14:49:06 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
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<!--
|
|
4
4
|
Do not edit directly
|
|
5
|
-
Generated on
|
|
5
|
+
Generated on Fri, 29 Apr 2022 14:49:06 GMT
|
|
6
6
|
-->
|
|
7
7
|
|
|
8
8
|
<resources>
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
<dimen name="size_12">12.00dp</dimen>
|
|
13
13
|
<dimen name="size_120">120.00dp</dimen>
|
|
14
14
|
<dimen name="size_14">14.00dp</dimen>
|
|
15
|
+
<dimen name="size_15">15.00dp</dimen>
|
|
15
16
|
<dimen name="size_16">16.00dp</dimen>
|
|
16
17
|
<dimen name="size_2">2.00dp</dimen>
|
|
17
18
|
<dimen name="size_20">20.00dp</dimen>
|
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 Fri, 29 Apr 2022 14:49:06 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
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
//
|
|
5
5
|
|
|
6
6
|
// Do not edit directly
|
|
7
|
-
// Generated on
|
|
7
|
+
// Generated on Fri, 29 Apr 2022 14:49:06 GMT
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
import UIKit
|
|
@@ -16,6 +16,7 @@ public enum PaletteSize {
|
|
|
16
16
|
public static let size12 = CGFloat(12)
|
|
17
17
|
public static let size120 = CGFloat(120)
|
|
18
18
|
public static let size14 = CGFloat(14)
|
|
19
|
+
public static let size15 = CGFloat(15)
|
|
19
20
|
public static let size16 = CGFloat(16)
|
|
20
21
|
public static let size2 = CGFloat(2)
|
|
21
22
|
public static let size20 = CGFloat(20)
|
|
@@ -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 Fri, 29 Apr 2022 14:49:08 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',
|
|
@@ -136,6 +137,7 @@ module.exports = {
|
|
|
136
137
|
size12: 12,
|
|
137
138
|
size120: 120,
|
|
138
139
|
size14: 14,
|
|
140
|
+
size15: 15,
|
|
139
141
|
size16: 16,
|
|
140
142
|
size2: 2,
|
|
141
143
|
size20: 20,
|
|
@@ -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_1-StagSans-300-KODBXfxZh5kPm8plpNUsg.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_1-StagSans-400-d5Ej1-UR8pOGuEJOJxVJZ.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_1-StagSans-500-5cgnjcnhOEs-VdNNbc_8k.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_1-StagSans-600-MLIKVnAuZsaNCGK5jCzi5.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_1-StagSans-700-DFXRhELO-g3vx5yVfoFdE.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_1-StagSans-300-KODBXfxZh5kPm8plpNUsg.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_1-StagSans-400-d5Ej1-UR8pOGuEJOJxVJZ.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_1-StagSans-500-5cgnjcnhOEs-VdNNbc_8k.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_1-StagSans-600-MLIKVnAuZsaNCGK5jCzi5.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_1-StagSans-700-DFXRhELO-g3vx5yVfoFdE.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_1-StagSans-300-KODBXfxZh5kPm8plpNUsg.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_1-StagSans-400-d5Ej1-UR8pOGuEJOJxVJZ.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_1-StagSans-500-5cgnjcnhOEs-VdNNbc_8k.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_1-StagSans-600-MLIKVnAuZsaNCGK5jCzi5.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_1-StagSans-700-DFXRhELO-g3vx5yVfoFdE.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_1-StagSans-300-KODBXfxZh5kPm8plpNUsg.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_1-StagSans-400-d5Ej1-UR8pOGuEJOJxVJZ.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_1-StagSans-500-5cgnjcnhOEs-VdNNbc_8k.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_1-StagSans-600-MLIKVnAuZsaNCGK5jCzi5.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_1-StagSans-700-DFXRhELO-g3vx5yVfoFdE.otf');
|
|
24
24
|
font-display: block;
|
|
25
25
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -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 Fri, 29 Apr 2022 14:49:06 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_1-StagSans-300-KODBXfxZh5kPm8plpNUsg.otf',
|
|
52
|
+
400: 'https://cdn.telus.digital/uds/v0_1_1-StagSans-400-d5Ej1-UR8pOGuEJOJxVJZ.otf',
|
|
53
|
+
500: 'https://cdn.telus.digital/uds/v0_1_1-StagSans-500-5cgnjcnhOEs-VdNNbc_8k.otf',
|
|
54
|
+
600: 'https://cdn.telus.digital/uds/v0_1_1-StagSans-600-MLIKVnAuZsaNCGK5jCzi5.otf',
|
|
55
|
+
700: 'https://cdn.telus.digital/uds/v0_1_1-StagSans-700-DFXRhELO-g3vx5yVfoFdE.otf'
|
|
55
56
|
}
|
|
56
57
|
},
|
|
57
58
|
fontSize: {
|
|
@@ -129,6 +130,7 @@ module.exports = {
|
|
|
129
130
|
size12: '12px',
|
|
130
131
|
size120: '120px',
|
|
131
132
|
size14: '14px',
|
|
133
|
+
size15: '15px',
|
|
132
134
|
size16: '16px',
|
|
133
135
|
size2: '2px',
|
|
134
136
|
size20: '20px',
|
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.1",
|
|
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"],
|
|
@@ -409,6 +414,10 @@
|
|
|
409
414
|
"description": "Allows for the PaginationSideButton icon size",
|
|
410
415
|
"value": 14
|
|
411
416
|
},
|
|
417
|
+
"size15": {
|
|
418
|
+
"description": "StepTracker knob diameter",
|
|
419
|
+
"value": 15
|
|
420
|
+
},
|
|
412
421
|
"size16": {
|
|
413
422
|
"value": 16
|
|
414
423
|
},
|
package/CHANGELOG.md
DELETED
|
@@ -1,185 +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.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)
|
|
6
|
-
|
|
7
|
-
### Features
|
|
8
|
-
|
|
9
|
-
- **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))
|
|
10
|
-
|
|
11
|
-
### Change summary (does not include documentation changes)
|
|
12
|
-
|
|
13
|
-
#### New keys
|
|
14
|
-
|
|
15
|
-
- `size.size1`
|
|
16
|
-
- `size.size14`
|
|
17
|
-
|
|
18
|
-
## [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)
|
|
19
|
-
|
|
20
|
-
### Features
|
|
21
|
-
|
|
22
|
-
- 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))
|
|
23
|
-
- **base:** add `ProgressBar` component ([#890](https://github.com/telus/universal-design-system/issues/890)) ([b98315c](https://github.com/telus/universal-design-system/commit/b98315cc7dabb2c7130c62c9c3bbf6fdfb7419a0))
|
|
24
|
-
- **base:** add `Radio` button ([#731](https://github.com/telus/universal-design-system/issues/731)) ([ad1613c](https://github.com/telus/universal-design-system/commit/ad1613c547fe3b0cdf1490a92267f32045356133))
|
|
25
|
-
- **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))
|
|
26
|
-
- **base:** add Tooltip component ([#687](https://github.com/telus/universal-design-system/issues/687)) ([38aaad4](https://github.com/telus/universal-design-system/commit/38aaad43d664b76e85a264901df5e1ca045a0304))
|
|
27
|
-
|
|
28
|
-
### Bug Fixes
|
|
29
|
-
|
|
30
|
-
- **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))
|
|
31
|
-
|
|
32
|
-
### Change summary (does not include documentation changes)
|
|
33
|
-
|
|
34
|
-
#### New keys
|
|
35
|
-
|
|
36
|
-
- `size.size2`
|
|
37
|
-
- `size.size12`
|
|
38
|
-
- `radius.radius12`
|
|
39
|
-
- `border.border3`
|
|
40
|
-
- `shadow.none.inset`
|
|
41
|
-
- `shadow.none.color`
|
|
42
|
-
- `shadow.none.offsetX`
|
|
43
|
-
- `shadow.none.offsetY`
|
|
44
|
-
- `shadow.none.blur`
|
|
45
|
-
- `shadow.none.spread`
|
|
46
|
-
- `opacity.opacity3`
|
|
47
|
-
- `opacity.opacity5`
|
|
48
|
-
- `opacity.opacity8`
|
|
49
|
-
- `duration.duration300`
|
|
50
|
-
- `duration.duration250`
|
|
51
|
-
|
|
52
|
-
## [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)
|
|
53
|
-
|
|
54
|
-
### Palette change summary (does not include documentation changes)
|
|
55
|
-
|
|
56
|
-
## 0.1.0-prerelease.0 (2021-10-08)
|
|
57
|
-
|
|
58
|
-
### Features
|
|
59
|
-
|
|
60
|
-
- 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))
|
|
61
|
-
- **base:** add SideNav component ([#500](https://github.com/telus/universal-design-system/issues/500)) ([edc45e8](https://github.com/telus/universal-design-system/commit/edc45e84d627f371bb6d8c5053bcff1259ebabb2))
|
|
62
|
-
- icon index ([#209](https://github.com/telus/universal-design-system/issues/209)) ([5b4423a](https://github.com/telus/universal-design-system/commit/5b4423a6004c5fe5ff1953933199bcacb26e1da2))
|
|
63
|
-
- **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))
|
|
64
|
-
- ios and android builds ([#110](https://github.com/telus/universal-design-system/issues/110)) ([b014773](https://github.com/telus/universal-design-system/commit/b01477326fdb471cbfb835a1203dabe00bb0ff3d))
|
|
65
|
-
- **koodo:** introduce koodo theme ([#216](https://github.com/telus/universal-design-system/issues/216)) ([3bcf63d](https://github.com/telus/universal-design-system/commit/3bcf63d22bce3f351a36927a5872c19a44df59c1))
|
|
66
|
-
- **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))
|
|
67
|
-
- Palette tooling ([#109](https://github.com/telus/universal-design-system/issues/109)) ([4bfa5a7](https://github.com/telus/universal-design-system/commit/4bfa5a7fb126c12a832d6dab2c75ccd89b342b98))
|
|
68
|
-
- **palette:** introduce Koodo brand palette ([275a463](https://github.com/telus/universal-design-system/commit/275a463251dba643b9a878bd979005b6720d55fe))
|
|
69
|
-
- **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)
|
|
70
|
-
- **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))
|
|
71
|
-
- **tools:** font assets ([#165](https://github.com/telus/universal-design-system/issues/165)) ([8b6c36c](https://github.com/telus/universal-design-system/commit/8b6c36c1ec4044c7672ba9800e118e653b62a06e))
|
|
72
|
-
|
|
73
|
-
### Bug Fixes
|
|
74
|
-
|
|
75
|
-
- **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))
|
|
76
|
-
- missed a spacings ([#186](https://github.com/telus/universal-design-system/issues/186)) ([8668ed7](https://github.com/telus/universal-design-system/commit/8668ed746162fa7dcfe0197adfab0f9521c32873))
|
|
77
|
-
- **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))
|
|
78
|
-
|
|
79
|
-
### Palette change summary (does not include documentation changes)
|
|
80
|
-
|
|
81
|
-
#### New keys
|
|
82
|
-
|
|
83
|
-
- `color.flirt`
|
|
84
|
-
- `color.mosque`
|
|
85
|
-
- `color.darkMosque`
|
|
86
|
-
- `color.blue`
|
|
87
|
-
- `color.darkBlue`
|
|
88
|
-
- `color.texas`
|
|
89
|
-
- `color.amaranth`
|
|
90
|
-
- `color.cardinalPink`
|
|
91
|
-
- `color.trinidad`
|
|
92
|
-
- `color.onahau`
|
|
93
|
-
- `color.burntSienna`
|
|
94
|
-
- `color.chathamsBlue`
|
|
95
|
-
- `color.wellRead`
|
|
96
|
-
- `color.wattle`
|
|
97
|
-
- `color.beeswax`
|
|
98
|
-
- `color.bilbao`
|
|
99
|
-
- `color.seaBuckthorn`
|
|
100
|
-
- `color.mintTulip`
|
|
101
|
-
- `color.turquoise`
|
|
102
|
-
- `color.hibiscus`
|
|
103
|
-
- `color.carouselPink`
|
|
104
|
-
- `color.white`
|
|
105
|
-
- `color.black`
|
|
106
|
-
- `color.mortar`
|
|
107
|
-
- `color.gallery`
|
|
108
|
-
- `color.silver`
|
|
109
|
-
- `color.dove`
|
|
110
|
-
- `color.iceberg`
|
|
111
|
-
- `color.transparent`
|
|
112
|
-
- `font.StagSans.300`
|
|
113
|
-
- `font.StagSans.400`
|
|
114
|
-
- `font.StagSans.500`
|
|
115
|
-
- `font.StagSans.600`
|
|
116
|
-
- `font.StagSans.700`
|
|
117
|
-
- `fontSize.size12`
|
|
118
|
-
- `fontSize.size14`
|
|
119
|
-
- `fontSize.size16`
|
|
120
|
-
- `fontSize.size20`
|
|
121
|
-
- `fontSize.size24`
|
|
122
|
-
- `fontSize.size28`
|
|
123
|
-
- `fontSize.size40`
|
|
124
|
-
- `fontSize.size44`
|
|
125
|
-
- `fontSize.size48`
|
|
126
|
-
- `fontSize.size56`
|
|
127
|
-
- `fontSize.size64`
|
|
128
|
-
- `size.size0`
|
|
129
|
-
- `size.size4`
|
|
130
|
-
- `size.size8`
|
|
131
|
-
- `size.size10`
|
|
132
|
-
- `size.size16`
|
|
133
|
-
- `size.size20`
|
|
134
|
-
- `size.size24`
|
|
135
|
-
- `size.size32`
|
|
136
|
-
- `size.size36`
|
|
137
|
-
- `size.size40`
|
|
138
|
-
- `size.size48`
|
|
139
|
-
- `size.size64`
|
|
140
|
-
- `size.size72`
|
|
141
|
-
- `size.size80`
|
|
142
|
-
- `size.size96`
|
|
143
|
-
- `size.size120`
|
|
144
|
-
- `radius.none`
|
|
145
|
-
- `radius.radius4`
|
|
146
|
-
- `radius.pill32`
|
|
147
|
-
- `border.none`
|
|
148
|
-
- `border.border1`
|
|
149
|
-
- `border.border2`
|
|
150
|
-
- `border.border4`
|
|
151
|
-
- `lineHeight.multiply160`
|
|
152
|
-
- `lineHeight.multiply150`
|
|
153
|
-
- `lineHeight.multiply140`
|
|
154
|
-
- `lineHeight.multiply130`
|
|
155
|
-
- `lineHeight.multiply120`
|
|
156
|
-
- `lineHeight.multiply110`
|
|
157
|
-
- `letterSpacing.default`
|
|
158
|
-
- `icon.ChevronUp`
|
|
159
|
-
- `icon.ChevronRight`
|
|
160
|
-
- `icon.ChevronDown`
|
|
161
|
-
- `icon.ChevronLeft`
|
|
162
|
-
- `icon.Cart`
|
|
163
|
-
- `icon.CircledLine`
|
|
164
|
-
- `icon.Times`
|
|
165
|
-
- `icon.TimesCircled`
|
|
166
|
-
- `icon.Check`
|
|
167
|
-
- `icon.CheckCircledFilled`
|
|
168
|
-
- `icon.CheckCircledNotFilled`
|
|
169
|
-
- `icon.ArrowDownCircled`
|
|
170
|
-
- `icon.ExclamationTriangle`
|
|
171
|
-
- `icon.ExclamationOctagon`
|
|
172
|
-
- `icon.InformationCircled`
|
|
173
|
-
- `icon.BoxOutline`
|
|
174
|
-
- `icon.BoxOutlineChecked`
|
|
175
|
-
- `icon.RadialOutline`
|
|
176
|
-
- `icon.RadialOutlineChecked`
|
|
177
|
-
- `icon.Hamburger`
|
|
178
|
-
- `icon.Spyglass`
|
|
179
|
-
- `icon.Bullet`
|
|
180
|
-
- `icon.Info`
|
|
181
|
-
- `icon.InfoSelected`
|
|
182
|
-
- `icon.Refresh`
|
|
183
|
-
- `icon.Kebab`
|
|
184
|
-
- `icon.EyeOpened`
|
|
185
|
-
- `icon.EyeClosed`
|