@telus-uds/palette-koodo 1.8.0 → 1.9.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 +1 -1
- package/build/ios/Border.swift +1 -1
- package/build/ios/Color.swift +1 -1
- package/build/ios/FontSize.swift +1 -1
- package/build/ios/Radius.swift +1 -1
- package/build/ios/Size.swift +1 -1
- package/build/rn/icons/BulletCircle.js +28 -0
- package/build/rn/icons/BulletCircle.native.js +27 -0
- package/build/rn/icons/bullet-circle.icon.svg +3 -0
- package/build/rn/icons/index.js +1 -0
- 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/icons/BulletCircle.js +28 -0
- package/build/web/icons/bullet-circle.icon.svg +3 -0
- package/build/web/icons/index.js +1 -0
- package/build/web/palette.js +7 -6
- package/package.json +1 -1
- package/palette.json +5 -2
- /package/build/web/fonts/{StagSans-Bold-v1_8_0.otf → StagSans-Bold-v1_9_0.otf} +0 -0
- /package/build/web/fonts/{StagSans-Light-v1_8_0.otf → StagSans-Light-v1_9_0.otf} +0 -0
- /package/build/web/fonts/{StagSans-Medium-v1_8_0.otf → StagSans-Medium-v1_9_0.otf} +0 -0
- /package/build/web/fonts/{StagSans-Regular-v1_8_0.otf → StagSans-Regular-v1_9_0.otf} +0 -0
- /package/build/web/fonts/{StagSans-Semibold-v1_8_0.otf → StagSans-Semibold-v1_9_0.otf} +0 -0
package/build/android/border.xml
CHANGED
package/build/android/color.xml
CHANGED
package/build/android/radius.xml
CHANGED
package/build/android/size.xml
CHANGED
package/build/ios/Border.swift
CHANGED
package/build/ios/Color.swift
CHANGED
package/build/ios/FontSize.swift
CHANGED
package/build/ios/Radius.swift
CHANGED
package/build/ios/Size.swift
CHANGED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
module.exports = ({
|
|
5
|
+
title,
|
|
6
|
+
titleId,
|
|
7
|
+
size,
|
|
8
|
+
color,
|
|
9
|
+
...props
|
|
10
|
+
}) => /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", {
|
|
11
|
+
...props,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14
|
+
height: size,
|
|
15
|
+
width: size,
|
|
16
|
+
fill: color,
|
|
17
|
+
role: title ? 'img' : undefined,
|
|
18
|
+
"aria-hidden": !title,
|
|
19
|
+
"aria-labelledby": titleId,
|
|
20
|
+
children: [title ? /*#__PURE__*/(0, _jsxRuntime.jsx)("title", {
|
|
21
|
+
id: titleId,
|
|
22
|
+
children: title
|
|
23
|
+
}) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
24
|
+
fillRule: "evenodd",
|
|
25
|
+
clipRule: "evenodd",
|
|
26
|
+
d: "M12 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 1a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"
|
|
27
|
+
})]
|
|
28
|
+
});
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _reactNativeSvg = require("react-native-svg");
|
|
4
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
5
|
+
module.exports = ({
|
|
6
|
+
title,
|
|
7
|
+
titleId,
|
|
8
|
+
size,
|
|
9
|
+
color,
|
|
10
|
+
...props
|
|
11
|
+
}) => /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNativeSvg.default, {
|
|
12
|
+
...props,
|
|
13
|
+
viewBox: "0 0 24 24",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
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
|
+
fillRule: "evenodd",
|
|
24
|
+
clipRule: "evenodd",
|
|
25
|
+
d: "M12 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 1a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"
|
|
26
|
+
})]
|
|
27
|
+
});
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14ZM12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z" />
|
|
3
|
+
</svg>
|
package/build/rn/icons/index.js
CHANGED
|
@@ -9,6 +9,7 @@ module.exports = {
|
|
|
9
9
|
BoxOutline: require('./BoxOutline'),
|
|
10
10
|
BoxOutlineChecked: require('./BoxOutlineChecked'),
|
|
11
11
|
Bullet: require('./Bullet'),
|
|
12
|
+
BulletCircle: require('./BulletCircle'),
|
|
12
13
|
BulletFill: require('./BulletFill'),
|
|
13
14
|
Cart: require('./Cart'),
|
|
14
15
|
CartFilled: require('./CartFilled'),
|
package/build/rn/palette.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Sat, 12 Oct 2024 00:36:35 GMT
|
|
4
4
|
*/
|
|
5
5
|
module.exports = {
|
|
6
6
|
border: {
|
|
@@ -126,6 +126,7 @@ module.exports = {
|
|
|
126
126
|
BoxOutline: '@telus-uds/palette-koodo/build/rn/icons/box-outline.icon.svg',
|
|
127
127
|
BoxOutlineChecked: '@telus-uds/palette-koodo/build/rn/icons/box-outline-checked.icon.svg',
|
|
128
128
|
Bullet: '@telus-uds/palette-koodo/build/rn/icons/bullet.icon.svg',
|
|
129
|
+
BulletCircle: '@telus-uds/palette-koodo/build/rn/icons/bullet-circle.icon.svg',
|
|
129
130
|
BulletFill: '@telus-uds/palette-koodo/build/rn/icons/bullet-fill.icon.svg',
|
|
130
131
|
Cart: '@telus-uds/palette-koodo/build/rn/icons/cart.icon.svg',
|
|
131
132
|
CartFilled: '@telus-uds/palette-koodo/build/rn/icons/cart-filled.icon.svg',
|
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: 'StagSans';
|
|
3
|
-
src: url('https://cdn.telus.digital/uds/StagSans-Light-
|
|
3
|
+
src: url('https://cdn.telus.digital/uds/StagSans-Light-v1_9_0.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/StagSans-Regular-
|
|
10
|
+
src: url('https://cdn.telus.digital/uds/StagSans-Regular-v1_9_0.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/StagSans-Medium-
|
|
17
|
+
src: url('https://cdn.telus.digital/uds/StagSans-Medium-v1_9_0.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/StagSans-Semibold-
|
|
24
|
+
src: url('https://cdn.telus.digital/uds/StagSans-Semibold-v1_9_0.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/StagSans-Bold-
|
|
31
|
+
src: url('https://cdn.telus.digital/uds/StagSans-Bold-v1_9_0.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/StagSans-Light-
|
|
3
|
+
src: url('https://cdn.telus.digital/uds/StagSans-Light-v1_9_0.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/StagSans-Regular-
|
|
8
|
+
src: url('https://cdn.telus.digital/uds/StagSans-Regular-v1_9_0.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/StagSans-Medium-
|
|
13
|
+
src: url('https://cdn.telus.digital/uds/StagSans-Medium-v1_9_0.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/StagSans-Semibold-
|
|
18
|
+
src: url('https://cdn.telus.digital/uds/StagSans-Semibold-v1_9_0.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/StagSans-Bold-
|
|
23
|
+
src: url('https://cdn.telus.digital/uds/StagSans-Bold-v1_9_0.otf');
|
|
24
24
|
font-display: block;
|
|
25
25
|
}
|
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: 'StagSans';
|
|
3
|
-
src: url('./StagSans-Light-
|
|
3
|
+
src: url('./StagSans-Light-v1_9_0.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('./StagSans-Regular-
|
|
10
|
+
src: url('./StagSans-Regular-v1_9_0.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('./StagSans-Medium-
|
|
17
|
+
src: url('./StagSans-Medium-v1_9_0.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('./StagSans-Semibold-
|
|
24
|
+
src: url('./StagSans-Semibold-v1_9_0.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('./StagSans-Bold-
|
|
31
|
+
src: url('./StagSans-Bold-v1_9_0.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('./StagSans-Light-
|
|
3
|
+
src: url('./StagSans-Light-v1_9_0.otf');
|
|
4
4
|
font-display: block;
|
|
5
5
|
}
|
|
6
6
|
@font-face {
|
|
7
7
|
font-family: 'StagSans400normal';
|
|
8
|
-
src: url('./StagSans-Regular-
|
|
8
|
+
src: url('./StagSans-Regular-v1_9_0.otf');
|
|
9
9
|
font-display: block;
|
|
10
10
|
}
|
|
11
11
|
@font-face {
|
|
12
12
|
font-family: 'StagSans500normal';
|
|
13
|
-
src: url('./StagSans-Medium-
|
|
13
|
+
src: url('./StagSans-Medium-v1_9_0.otf');
|
|
14
14
|
font-display: block;
|
|
15
15
|
}
|
|
16
16
|
@font-face {
|
|
17
17
|
font-family: 'StagSans600normal';
|
|
18
|
-
src: url('./StagSans-Semibold-
|
|
18
|
+
src: url('./StagSans-Semibold-v1_9_0.otf');
|
|
19
19
|
font-display: block;
|
|
20
20
|
}
|
|
21
21
|
@font-face {
|
|
22
22
|
font-family: 'StagSans700normal';
|
|
23
|
-
src: url('./StagSans-Bold-
|
|
23
|
+
src: url('./StagSans-Bold-v1_9_0.otf');
|
|
24
24
|
font-display: block;
|
|
25
25
|
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
module.exports = ({
|
|
5
|
+
title,
|
|
6
|
+
titleId,
|
|
7
|
+
size,
|
|
8
|
+
color,
|
|
9
|
+
...props
|
|
10
|
+
}) => /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", {
|
|
11
|
+
...props,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14
|
+
height: size,
|
|
15
|
+
width: size,
|
|
16
|
+
fill: color,
|
|
17
|
+
role: title ? 'img' : undefined,
|
|
18
|
+
"aria-hidden": !title,
|
|
19
|
+
"aria-labelledby": titleId,
|
|
20
|
+
children: [title ? /*#__PURE__*/(0, _jsxRuntime.jsx)("title", {
|
|
21
|
+
id: titleId,
|
|
22
|
+
children: title
|
|
23
|
+
}) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
24
|
+
fillRule: "evenodd",
|
|
25
|
+
clipRule: "evenodd",
|
|
26
|
+
d: "M12 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 1a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"
|
|
27
|
+
})]
|
|
28
|
+
});
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14ZM12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z" />
|
|
3
|
+
</svg>
|
package/build/web/icons/index.js
CHANGED
|
@@ -9,6 +9,7 @@ module.exports = {
|
|
|
9
9
|
BoxOutline: require('./BoxOutline'),
|
|
10
10
|
BoxOutlineChecked: require('./BoxOutlineChecked'),
|
|
11
11
|
Bullet: require('./Bullet'),
|
|
12
|
+
BulletCircle: require('./BulletCircle'),
|
|
12
13
|
BulletFill: require('./BulletFill'),
|
|
13
14
|
Cart: require('./Cart'),
|
|
14
15
|
CartFilled: require('./CartFilled'),
|
package/build/web/palette.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Sat, 12 Oct 2024 00:36:33 GMT
|
|
4
4
|
*/
|
|
5
5
|
module.exports = {
|
|
6
6
|
border: {
|
|
@@ -69,11 +69,11 @@ module.exports = {
|
|
|
69
69
|
},
|
|
70
70
|
font: {
|
|
71
71
|
StagSans: {
|
|
72
|
-
300: 'https://cdn.telus.digital/uds/StagSans-Light-
|
|
73
|
-
400: 'https://cdn.telus.digital/uds/StagSans-Regular-
|
|
74
|
-
500: 'https://cdn.telus.digital/uds/StagSans-Medium-
|
|
75
|
-
600: 'https://cdn.telus.digital/uds/StagSans-Semibold-
|
|
76
|
-
700: 'https://cdn.telus.digital/uds/StagSans-Bold-
|
|
72
|
+
300: 'https://cdn.telus.digital/uds/StagSans-Light-v1_9_0.otf',
|
|
73
|
+
400: 'https://cdn.telus.digital/uds/StagSans-Regular-v1_9_0.otf',
|
|
74
|
+
500: 'https://cdn.telus.digital/uds/StagSans-Medium-v1_9_0.otf',
|
|
75
|
+
600: 'https://cdn.telus.digital/uds/StagSans-Semibold-v1_9_0.otf',
|
|
76
|
+
700: 'https://cdn.telus.digital/uds/StagSans-Bold-v1_9_0.otf'
|
|
77
77
|
}
|
|
78
78
|
},
|
|
79
79
|
fontSize: {
|
|
@@ -113,6 +113,7 @@ module.exports = {
|
|
|
113
113
|
BoxOutline: '@telus-uds/palette-koodo/build/web/icons/box-outline.icon.svg',
|
|
114
114
|
BoxOutlineChecked: '@telus-uds/palette-koodo/build/web/icons/box-outline-checked.icon.svg',
|
|
115
115
|
Bullet: '@telus-uds/palette-koodo/build/web/icons/bullet.icon.svg',
|
|
116
|
+
BulletCircle: '@telus-uds/palette-koodo/build/web/icons/bullet-circle.icon.svg',
|
|
116
117
|
BulletFill: '@telus-uds/palette-koodo/build/web/icons/bullet-fill.icon.svg',
|
|
117
118
|
Cart: '@telus-uds/palette-koodo/build/web/icons/cart.icon.svg',
|
|
118
119
|
CartFilled: '@telus-uds/palette-koodo/build/web/icons/cart-filled.icon.svg',
|
package/package.json
CHANGED
package/palette.json
CHANGED
|
@@ -426,6 +426,9 @@
|
|
|
426
426
|
"tags": ["General"],
|
|
427
427
|
"value": "icon/bullet.svg"
|
|
428
428
|
},
|
|
429
|
+
"BulletCircle": {
|
|
430
|
+
"value": "icon/bullet-circle.svg"
|
|
431
|
+
},
|
|
429
432
|
"BulletFill": {
|
|
430
433
|
"tags": ["Interface", "List"],
|
|
431
434
|
"value": "icon/bullet-fill.svg"
|
|
@@ -686,10 +689,10 @@
|
|
|
686
689
|
"value": "icon/quote-left.svg"
|
|
687
690
|
},
|
|
688
691
|
"QuoteLeftArrow": {
|
|
689
|
-
"value": "icon/quote-left-
|
|
692
|
+
"value": "icon/quote-left-arrow.svg"
|
|
690
693
|
},
|
|
691
694
|
"QuoteRightArrow": {
|
|
692
|
-
"value": "icon/quote-right-
|
|
695
|
+
"value": "icon/quote-right-arrow.svg"
|
|
693
696
|
},
|
|
694
697
|
"RadialOutline": {
|
|
695
698
|
"tags": ["Legacy"],
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|