@telus-uds/palette-koodo 0.22.0 → 0.23.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 +2 -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 +2 -1
- package/build/ios/Size.swift +1 -1
- package/build/rn/icons/QuoteLeft.js +28 -0
- package/build/rn/icons/QuoteLeft.native.js +28 -0
- package/build/rn/icons/QuoteLeftArrow.js +32 -0
- package/build/rn/icons/QuoteLeftArrow.native.js +32 -0
- package/build/rn/icons/QuoteRightArrow.js +32 -0
- package/build/rn/icons/QuoteRightArrow.native.js +32 -0
- package/build/rn/icons/index.js +3 -0
- package/build/rn/icons/quote-left-arrow.icon.svg +4 -0
- package/build/rn/icons/quote-left.icon.svg +3 -0
- package/build/rn/icons/quote-right-arrow.icon.svg +4 -0
- package/build/rn/palette.js +5 -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/QuoteLeft.js +28 -0
- package/build/web/icons/QuoteLeftArrow.js +32 -0
- package/build/web/icons/QuoteRightArrow.js +32 -0
- package/build/web/icons/index.js +3 -0
- package/build/web/icons/quote-left-arrow.icon.svg +4 -0
- package/build/web/icons/quote-left.icon.svg +3 -0
- package/build/web/icons/quote-right-arrow.icon.svg +4 -0
- package/build/web/palette.js +10 -6
- package/package.json +1 -1
- package/palette.json +13 -0
- /package/build/web/fonts/{v0_22_0-StagSans-300-kcSnDtK9Pe5PTv1b58ofc.otf → v0_23_0-StagSans-300-sCMaZHMHAe27vDQRAOeN1.otf} +0 -0
- /package/build/web/fonts/{v0_22_0-StagSans-400-ya6GUrqGrUJlQVzduxJaA.otf → v0_23_0-StagSans-400-WJNU98crO9tJYJeH-bBG5.otf} +0 -0
- /package/build/web/fonts/{v0_22_0-StagSans-500-xoEZhk2SHaFivVrCq6fkF.otf → v0_23_0-StagSans-500-XWsooPlmA2mFU9GmLrD98.otf} +0 -0
- /package/build/web/fonts/{v0_22_0-StagSans-600-sfBKrEkirjv11nHXNm0ZV.otf → v0_23_0-StagSans-600-t9gJiMPEczUrSjrwNPYlr.otf} +0 -0
- /package/build/web/fonts/{v0_22_0-StagSans-700-GuHOgtVwAGsnsZG8D-ZOk.otf → v0_23_0-StagSans-700-DpcxNhX64bhMZK30cFmMA.otf} +0 -0
package/build/android/border.xml
CHANGED
package/build/android/color.xml
CHANGED
package/build/android/radius.xml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<!--
|
|
4
4
|
Do not edit directly
|
|
5
|
-
Generated on Fri,
|
|
5
|
+
Generated on Fri, 14 Jul 2023 19:43:46 GMT
|
|
6
6
|
-->
|
|
7
7
|
|
|
8
8
|
<resources>
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
<dimen name="pill_32">32.00dp</dimen>
|
|
11
11
|
<dimen name="radius_1">1.00dp</dimen>
|
|
12
12
|
<dimen name="radius_12">12.00dp</dimen>
|
|
13
|
+
<dimen name="radius_24">24.00dp</dimen>
|
|
13
14
|
<dimen name="radius_4">4.00dp</dimen>
|
|
14
15
|
<dimen name="radius_48">48.00dp</dimen>
|
|
15
16
|
<dimen name="radius_6">6.00dp</dimen>
|
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
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
//
|
|
5
5
|
|
|
6
6
|
// Do not edit directly
|
|
7
|
-
// Generated on Fri,
|
|
7
|
+
// Generated on Fri, 14 Jul 2023 19:43:46 GMT
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
import UIKit
|
|
@@ -14,6 +14,7 @@ public enum PaletteRadius {
|
|
|
14
14
|
public static let pill32 = CGFloat(32)
|
|
15
15
|
public static let radius1 = CGFloat(1)
|
|
16
16
|
public static let radius12 = CGFloat(12)
|
|
17
|
+
public static let radius24 = CGFloat(24)
|
|
17
18
|
public static let radius4 = CGFloat(4)
|
|
18
19
|
public static let radius48 = CGFloat(48)
|
|
19
20
|
public static let radius6 = CGFloat(6)
|
package/build/ios/Size.swift
CHANGED
|
@@ -0,0 +1,28 @@
|
|
|
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
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13
|
+
viewBox: "0 0 24 24",
|
|
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
|
+
d: "M11.066 13.653c.6 2.604-.867 5.432-3.314 6.133-2.538.727-7.748-.084-7.752-7.384 0-4.183 1.953-6.73 4.113-8.245a.927.927 0 0 1 1.31.29.911.911 0 0 1-.106 1.082C4.454 6.54 3.905 7.887 3.905 9.673v.233c.016.594.536.981.995.744.219-.114.447-.21.681-.285 2.43-.785 4.885.685 5.485 3.288Zm12.8 0c.6 2.604-.867 5.432-3.314 6.133-2.54.727-7.748-.084-7.752-7.384 0-4.183 1.953-6.73 4.113-8.245a.927.927 0 0 1 1.31.29.911.911 0 0 1-.106 1.082c-.863 1.011-1.412 2.358-1.412 4.144v.233c.016.594.537.981.995.744a4.4 4.4 0 0 1 .681-.285c2.43-.785 4.885.685 5.485 3.288Z",
|
|
26
|
+
clipRule: "evenodd"
|
|
27
|
+
})]
|
|
28
|
+
});
|
|
@@ -0,0 +1,28 @@
|
|
|
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
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
viewBox: "0 0 24 24",
|
|
16
|
+
height: size,
|
|
17
|
+
width: size,
|
|
18
|
+
fill: color,
|
|
19
|
+
"aria-labelledby": titleId,
|
|
20
|
+
children: [title ? /*#__PURE__*/(0, _jsxRuntime.jsx)("title", {
|
|
21
|
+
id: titleId,
|
|
22
|
+
children: title
|
|
23
|
+
}) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
24
|
+
fillRule: "evenodd",
|
|
25
|
+
d: "M11.066 13.653c.6 2.604-.867 5.432-3.314 6.133-2.538.727-7.748-.084-7.752-7.384 0-4.183 1.953-6.73 4.113-8.245a.927.927 0 0 1 1.31.29.911.911 0 0 1-.106 1.082C4.454 6.54 3.905 7.887 3.905 9.673v.233c.016.594.536.981.995.744.219-.114.447-.21.681-.285 2.43-.785 4.885.685 5.485 3.288Zm12.8 0c.6 2.604-.867 5.432-3.314 6.133-2.54.727-7.748-.084-7.752-7.384 0-4.183 1.953-6.73 4.113-8.245a.927.927 0 0 1 1.31.29.911.911 0 0 1-.106 1.082c-.863 1.011-1.412 2.358-1.412 4.144v.233c.016.594.537.981.995.744a4.4 4.4 0 0 1 .681-.285c2.43-.785 4.885.685 5.485 3.288Z",
|
|
26
|
+
clipRule: "evenodd"
|
|
27
|
+
})]
|
|
28
|
+
});
|
|
@@ -0,0 +1,32 @@
|
|
|
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
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13
|
+
viewBox: "0 0 24 24",
|
|
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
|
+
d: "M12.632 19.33c.3.304.544.834.093 1.361-.45.527-1.128.278-1.345 0l-8.695-8.264a.735.735 0 0 1 0-.975l8.695-8.087c.246-.267.8-.605 1.345-.117.545.488.153 1.16-.093 1.428l-6.743 7.32 6.743 7.334Z",
|
|
26
|
+
clipRule: "evenodd"
|
|
27
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
28
|
+
fillRule: "evenodd",
|
|
29
|
+
d: "M21.632 19.33c.3.304.544.834.093 1.361-.45.527-1.128.278-1.345 0l-8.695-8.264a.735.735 0 0 1 0-.975l8.695-8.087c.246-.267.8-.605 1.345-.117.545.488.153 1.16-.093 1.428l-6.743 7.32 6.743 7.334Z",
|
|
30
|
+
clipRule: "evenodd"
|
|
31
|
+
})]
|
|
32
|
+
});
|
|
@@ -0,0 +1,32 @@
|
|
|
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
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
viewBox: "0 0 24 24",
|
|
16
|
+
height: size,
|
|
17
|
+
width: size,
|
|
18
|
+
fill: color,
|
|
19
|
+
"aria-labelledby": titleId,
|
|
20
|
+
children: [title ? /*#__PURE__*/(0, _jsxRuntime.jsx)("title", {
|
|
21
|
+
id: titleId,
|
|
22
|
+
children: title
|
|
23
|
+
}) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
24
|
+
fillRule: "evenodd",
|
|
25
|
+
d: "M12.632 19.33c.3.304.544.834.093 1.361-.45.527-1.128.278-1.345 0l-8.695-8.264a.735.735 0 0 1 0-.975l8.695-8.087c.246-.267.8-.605 1.345-.117.545.488.153 1.16-.093 1.428l-6.743 7.32 6.743 7.334Z",
|
|
26
|
+
clipRule: "evenodd"
|
|
27
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
28
|
+
fillRule: "evenodd",
|
|
29
|
+
d: "M21.632 19.33c.3.304.544.834.093 1.361-.45.527-1.128.278-1.345 0l-8.695-8.264a.735.735 0 0 1 0-.975l8.695-8.087c.246-.267.8-.605 1.345-.117.545.488.153 1.16-.093 1.428l-6.743 7.32 6.743 7.334Z",
|
|
30
|
+
clipRule: "evenodd"
|
|
31
|
+
})]
|
|
32
|
+
});
|
|
@@ -0,0 +1,32 @@
|
|
|
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
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13
|
+
viewBox: "0 0 24 24",
|
|
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
|
+
d: "M2.275 20.691c-.451-.527-.207-1.057.093-1.36l6.743-7.336-6.743-7.32c-.246-.267-.638-.94-.093-1.427.545-.488 1.1-.15 1.345.117l8.695 8.087a.735.735 0 0 1 0 .975L3.62 20.691c-.217.278-.894.527-1.345 0Z",
|
|
26
|
+
clipRule: "evenodd"
|
|
27
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
28
|
+
fillRule: "evenodd",
|
|
29
|
+
d: "M11.275 20.691c-.451-.527-.207-1.057.093-1.36l6.743-7.336-6.743-7.32c-.246-.267-.638-.94-.093-1.427.545-.488 1.1-.15 1.345.117l8.695 8.087a.735.735 0 0 1 0 .975l-8.695 8.264c-.217.278-.894.527-1.345 0Z",
|
|
30
|
+
clipRule: "evenodd"
|
|
31
|
+
})]
|
|
32
|
+
});
|
|
@@ -0,0 +1,32 @@
|
|
|
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
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
viewBox: "0 0 24 24",
|
|
16
|
+
height: size,
|
|
17
|
+
width: size,
|
|
18
|
+
fill: color,
|
|
19
|
+
"aria-labelledby": titleId,
|
|
20
|
+
children: [title ? /*#__PURE__*/(0, _jsxRuntime.jsx)("title", {
|
|
21
|
+
id: titleId,
|
|
22
|
+
children: title
|
|
23
|
+
}) : null, /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
24
|
+
fillRule: "evenodd",
|
|
25
|
+
d: "M2.275 20.691c-.451-.527-.207-1.057.093-1.36l6.743-7.336-6.743-7.32c-.246-.267-.638-.94-.093-1.427.545-.488 1.1-.15 1.345.117l8.695 8.087a.735.735 0 0 1 0 .975L3.62 20.691c-.217.278-.894.527-1.345 0Z",
|
|
26
|
+
clipRule: "evenodd"
|
|
27
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
28
|
+
fillRule: "evenodd",
|
|
29
|
+
d: "M11.275 20.691c-.451-.527-.207-1.057.093-1.36l6.743-7.336-6.743-7.32c-.246-.267-.638-.94-.093-1.427.545-.488 1.1-.15 1.345.117l8.695 8.087a.735.735 0 0 1 0 .975l-8.695 8.264c-.217.278-.894.527-1.345 0Z",
|
|
30
|
+
clipRule: "evenodd"
|
|
31
|
+
})]
|
|
32
|
+
});
|
package/build/rn/icons/index.js
CHANGED
|
@@ -55,6 +55,9 @@ module.exports = {
|
|
|
55
55
|
PlayVideo: require('./PlayVideo'),
|
|
56
56
|
Question: require('./Question'),
|
|
57
57
|
QuestionFilled: require('./QuestionFilled'),
|
|
58
|
+
QuoteLeft: require('./QuoteLeft'),
|
|
59
|
+
QuoteLeftArrow: require('./QuoteLeftArrow'),
|
|
60
|
+
QuoteRightArrow: require('./QuoteRightArrow'),
|
|
58
61
|
RadialOutline: require('./RadialOutline'),
|
|
59
62
|
RadialOutlineChecked: require('./RadialOutlineChecked'),
|
|
60
63
|
Receipt: require('./Receipt'),
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
2
|
+
<path fill-rule="evenodd" d="M12.632 19.33c.3.304.544.834.093 1.361-.45.527-1.128.278-1.345 0l-8.695-8.264a.735.735 0 0 1 0-.975l8.695-8.087c.246-.267.8-.605 1.345-.117.545.488.153 1.16-.093 1.428l-6.743 7.32 6.743 7.334Z" clip-rule="evenodd"/>
|
|
3
|
+
<path fill-rule="evenodd" d="M21.632 19.33c.3.304.544.834.093 1.361-.45.527-1.128.278-1.345 0l-8.695-8.264a.735.735 0 0 1 0-.975l8.695-8.087c.246-.267.8-.605 1.345-.117.545.488.153 1.16-.093 1.428l-6.743 7.32 6.743 7.334Z" clip-rule="evenodd"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
2
|
+
<path fill-rule="evenodd" d="M11.066 13.653c.6 2.604-.867 5.432-3.314 6.133-2.538.727-7.748-.084-7.752-7.384 0-4.183 1.953-6.73 4.113-8.245a.927.927 0 0 1 1.31.29.911.911 0 0 1-.106 1.082C4.454 6.54 3.905 7.887 3.905 9.673v.233c.016.594.536.981.995.744.219-.114.447-.21.681-.285 2.43-.785 4.885.685 5.485 3.288Zm12.8 0c.6 2.604-.867 5.432-3.314 6.133-2.54.727-7.748-.084-7.752-7.384 0-4.183 1.953-6.73 4.113-8.245a.927.927 0 0 1 1.31.29.911.911 0 0 1-.106 1.082c-.863 1.011-1.412 2.358-1.412 4.144v.233c.016.594.537.981.995.744a4.4 4.4 0 0 1 .681-.285c2.43-.785 4.885.685 5.485 3.288Z" clip-rule="evenodd"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
2
|
+
<path fill-rule="evenodd" d="M2.275 20.691c-.451-.527-.207-1.057.093-1.36l6.743-7.336-6.743-7.32c-.246-.267-.638-.94-.093-1.427.545-.488 1.1-.15 1.345.117l8.695 8.087a.735.735 0 0 1 0 .975L3.62 20.691c-.217.278-.894.527-1.345 0Z" clip-rule="evenodd"/>
|
|
3
|
+
<path fill-rule="evenodd" d="M11.275 20.691c-.451-.527-.207-1.057.093-1.36l6.743-7.336-6.743-7.32c-.246-.267-.638-.94-.093-1.427.545-.488 1.1-.15 1.345.117l8.695 8.087a.735.735 0 0 1 0 .975l-8.695 8.264c-.217.278-.894.527-1.345 0Z" clip-rule="evenodd"/>
|
|
4
|
+
</svg>
|
package/build/rn/palette.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Fri,
|
|
3
|
+
* Generated on Fri, 14 Jul 2023 19:43:49 GMT
|
|
4
4
|
*/
|
|
5
5
|
module.exports = {
|
|
6
6
|
border: {
|
|
@@ -174,6 +174,9 @@ module.exports = {
|
|
|
174
174
|
PlayVideo: '@telus-uds/palette-koodo/build/rn/icons/play-video.icon.svg',
|
|
175
175
|
Question: '@telus-uds/palette-koodo/build/rn/icons/question.icon.svg',
|
|
176
176
|
QuestionFilled: '@telus-uds/palette-koodo/build/rn/icons/question-filled.icon.svg',
|
|
177
|
+
QuoteLeft: '@telus-uds/palette-koodo/build/rn/icons/quote-left.icon.svg',
|
|
178
|
+
QuoteLeftArrow: '@telus-uds/palette-koodo/build/rn/icons/quote-left-arrow.icon.svg',
|
|
179
|
+
QuoteRightArrow: '@telus-uds/palette-koodo/build/rn/icons/quote-right-arrow.icon.svg',
|
|
177
180
|
RadialOutline: '@telus-uds/palette-koodo/build/rn/icons/radial-outline.icon.svg',
|
|
178
181
|
RadialOutlineChecked: '@telus-uds/palette-koodo/build/rn/icons/radial-outline-checked.icon.svg',
|
|
179
182
|
Receipt: '@telus-uds/palette-koodo/build/rn/icons/receipt.icon.svg',
|
|
@@ -235,6 +238,7 @@ module.exports = {
|
|
|
235
238
|
pill32: 32,
|
|
236
239
|
radius1: 1,
|
|
237
240
|
radius12: 12,
|
|
241
|
+
radius24: 24,
|
|
238
242
|
radius4: 4,
|
|
239
243
|
radius48: 48,
|
|
240
244
|
radius6: 6,
|
|
@@ -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_23_0-StagSans-300-sCMaZHMHAe27vDQRAOeN1.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_23_0-StagSans-400-WJNU98crO9tJYJeH-bBG5.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_23_0-StagSans-500-XWsooPlmA2mFU9GmLrD98.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_23_0-StagSans-600-t9gJiMPEczUrSjrwNPYlr.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_23_0-StagSans-700-DpcxNhX64bhMZK30cFmMA.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_23_0-StagSans-300-sCMaZHMHAe27vDQRAOeN1.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_23_0-StagSans-400-WJNU98crO9tJYJeH-bBG5.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_23_0-StagSans-500-XWsooPlmA2mFU9GmLrD98.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_23_0-StagSans-600-t9gJiMPEczUrSjrwNPYlr.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_23_0-StagSans-700-DpcxNhX64bhMZK30cFmMA.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_23_0-StagSans-300-sCMaZHMHAe27vDQRAOeN1.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_23_0-StagSans-400-WJNU98crO9tJYJeH-bBG5.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_23_0-StagSans-500-XWsooPlmA2mFU9GmLrD98.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_23_0-StagSans-600-t9gJiMPEczUrSjrwNPYlr.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_23_0-StagSans-700-DpcxNhX64bhMZK30cFmMA.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_23_0-StagSans-300-sCMaZHMHAe27vDQRAOeN1.otf');
|
|
4
4
|
font-display: block;
|
|
5
5
|
}
|
|
6
6
|
@font-face {
|
|
7
7
|
font-family: 'StagSans400normal';
|
|
8
|
-
src: url('./
|
|
8
|
+
src: url('./v0_23_0-StagSans-400-WJNU98crO9tJYJeH-bBG5.otf');
|
|
9
9
|
font-display: block;
|
|
10
10
|
}
|
|
11
11
|
@font-face {
|
|
12
12
|
font-family: 'StagSans500normal';
|
|
13
|
-
src: url('./
|
|
13
|
+
src: url('./v0_23_0-StagSans-500-XWsooPlmA2mFU9GmLrD98.otf');
|
|
14
14
|
font-display: block;
|
|
15
15
|
}
|
|
16
16
|
@font-face {
|
|
17
17
|
font-family: 'StagSans600normal';
|
|
18
|
-
src: url('./
|
|
18
|
+
src: url('./v0_23_0-StagSans-600-t9gJiMPEczUrSjrwNPYlr.otf');
|
|
19
19
|
font-display: block;
|
|
20
20
|
}
|
|
21
21
|
@font-face {
|
|
22
22
|
font-family: 'StagSans700normal';
|
|
23
|
-
src: url('./
|
|
23
|
+
src: url('./v0_23_0-StagSans-700-DpcxNhX64bhMZK30cFmMA.otf');
|
|
24
24
|
font-display: block;
|
|
25
25
|
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13
|
+
viewBox: "0 0 24 24",
|
|
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
|
+
d: "M11.066 13.653c.6 2.604-.867 5.432-3.314 6.133-2.538.727-7.748-.084-7.752-7.384 0-4.183 1.953-6.73 4.113-8.245a.927.927 0 0 1 1.31.29.911.911 0 0 1-.106 1.082C4.454 6.54 3.905 7.887 3.905 9.673v.233c.016.594.536.981.995.744.219-.114.447-.21.681-.285 2.43-.785 4.885.685 5.485 3.288Zm12.8 0c.6 2.604-.867 5.432-3.314 6.133-2.54.727-7.748-.084-7.752-7.384 0-4.183 1.953-6.73 4.113-8.245a.927.927 0 0 1 1.31.29.911.911 0 0 1-.106 1.082c-.863 1.011-1.412 2.358-1.412 4.144v.233c.016.594.537.981.995.744a4.4 4.4 0 0 1 .681-.285c2.43-.785 4.885.685 5.485 3.288Z",
|
|
26
|
+
clipRule: "evenodd"
|
|
27
|
+
})]
|
|
28
|
+
});
|
|
@@ -0,0 +1,32 @@
|
|
|
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
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13
|
+
viewBox: "0 0 24 24",
|
|
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
|
+
d: "M12.632 19.33c.3.304.544.834.093 1.361-.45.527-1.128.278-1.345 0l-8.695-8.264a.735.735 0 0 1 0-.975l8.695-8.087c.246-.267.8-.605 1.345-.117.545.488.153 1.16-.093 1.428l-6.743 7.32 6.743 7.334Z",
|
|
26
|
+
clipRule: "evenodd"
|
|
27
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
28
|
+
fillRule: "evenodd",
|
|
29
|
+
d: "M21.632 19.33c.3.304.544.834.093 1.361-.45.527-1.128.278-1.345 0l-8.695-8.264a.735.735 0 0 1 0-.975l8.695-8.087c.246-.267.8-.605 1.345-.117.545.488.153 1.16-.093 1.428l-6.743 7.32 6.743 7.334Z",
|
|
30
|
+
clipRule: "evenodd"
|
|
31
|
+
})]
|
|
32
|
+
});
|
|
@@ -0,0 +1,32 @@
|
|
|
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
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13
|
+
viewBox: "0 0 24 24",
|
|
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
|
+
d: "M2.275 20.691c-.451-.527-.207-1.057.093-1.36l6.743-7.336-6.743-7.32c-.246-.267-.638-.94-.093-1.427.545-.488 1.1-.15 1.345.117l8.695 8.087a.735.735 0 0 1 0 .975L3.62 20.691c-.217.278-.894.527-1.345 0Z",
|
|
26
|
+
clipRule: "evenodd"
|
|
27
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
|
|
28
|
+
fillRule: "evenodd",
|
|
29
|
+
d: "M11.275 20.691c-.451-.527-.207-1.057.093-1.36l6.743-7.336-6.743-7.32c-.246-.267-.638-.94-.093-1.427.545-.488 1.1-.15 1.345.117l8.695 8.087a.735.735 0 0 1 0 .975l-8.695 8.264c-.217.278-.894.527-1.345 0Z",
|
|
30
|
+
clipRule: "evenodd"
|
|
31
|
+
})]
|
|
32
|
+
});
|
package/build/web/icons/index.js
CHANGED
|
@@ -55,6 +55,9 @@ module.exports = {
|
|
|
55
55
|
PlayVideo: require('./PlayVideo'),
|
|
56
56
|
Question: require('./Question'),
|
|
57
57
|
QuestionFilled: require('./QuestionFilled'),
|
|
58
|
+
QuoteLeft: require('./QuoteLeft'),
|
|
59
|
+
QuoteLeftArrow: require('./QuoteLeftArrow'),
|
|
60
|
+
QuoteRightArrow: require('./QuoteRightArrow'),
|
|
58
61
|
RadialOutline: require('./RadialOutline'),
|
|
59
62
|
RadialOutlineChecked: require('./RadialOutlineChecked'),
|
|
60
63
|
Receipt: require('./Receipt'),
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
2
|
+
<path fill-rule="evenodd" d="M12.632 19.33c.3.304.544.834.093 1.361-.45.527-1.128.278-1.345 0l-8.695-8.264a.735.735 0 0 1 0-.975l8.695-8.087c.246-.267.8-.605 1.345-.117.545.488.153 1.16-.093 1.428l-6.743 7.32 6.743 7.334Z" clip-rule="evenodd"/>
|
|
3
|
+
<path fill-rule="evenodd" d="M21.632 19.33c.3.304.544.834.093 1.361-.45.527-1.128.278-1.345 0l-8.695-8.264a.735.735 0 0 1 0-.975l8.695-8.087c.246-.267.8-.605 1.345-.117.545.488.153 1.16-.093 1.428l-6.743 7.32 6.743 7.334Z" clip-rule="evenodd"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
2
|
+
<path fill-rule="evenodd" d="M11.066 13.653c.6 2.604-.867 5.432-3.314 6.133-2.538.727-7.748-.084-7.752-7.384 0-4.183 1.953-6.73 4.113-8.245a.927.927 0 0 1 1.31.29.911.911 0 0 1-.106 1.082C4.454 6.54 3.905 7.887 3.905 9.673v.233c.016.594.536.981.995.744.219-.114.447-.21.681-.285 2.43-.785 4.885.685 5.485 3.288Zm12.8 0c.6 2.604-.867 5.432-3.314 6.133-2.54.727-7.748-.084-7.752-7.384 0-4.183 1.953-6.73 4.113-8.245a.927.927 0 0 1 1.31.29.911.911 0 0 1-.106 1.082c-.863 1.011-1.412 2.358-1.412 4.144v.233c.016.594.537.981.995.744a4.4 4.4 0 0 1 .681-.285c2.43-.785 4.885.685 5.485 3.288Z" clip-rule="evenodd"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
2
|
+
<path fill-rule="evenodd" d="M2.275 20.691c-.451-.527-.207-1.057.093-1.36l6.743-7.336-6.743-7.32c-.246-.267-.638-.94-.093-1.427.545-.488 1.1-.15 1.345.117l8.695 8.087a.735.735 0 0 1 0 .975L3.62 20.691c-.217.278-.894.527-1.345 0Z" clip-rule="evenodd"/>
|
|
3
|
+
<path fill-rule="evenodd" d="M11.275 20.691c-.451-.527-.207-1.057.093-1.36l6.743-7.336-6.743-7.32c-.246-.267-.638-.94-.093-1.427.545-.488 1.1-.15 1.345.117l8.695 8.087a.735.735 0 0 1 0 .975l-8.695 8.264c-.217.278-.894.527-1.345 0Z" clip-rule="evenodd"/>
|
|
4
|
+
</svg>
|
package/build/web/palette.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Fri,
|
|
3
|
+
* Generated on Fri, 14 Jul 2023 19:43:47 GMT
|
|
4
4
|
*/
|
|
5
5
|
module.exports = {
|
|
6
6
|
border: {
|
|
@@ -71,11 +71,11 @@ module.exports = {
|
|
|
71
71
|
},
|
|
72
72
|
font: {
|
|
73
73
|
StagSans: {
|
|
74
|
-
300: 'https://cdn.telus.digital/uds/
|
|
75
|
-
400: 'https://cdn.telus.digital/uds/
|
|
76
|
-
500: 'https://cdn.telus.digital/uds/
|
|
77
|
-
600: 'https://cdn.telus.digital/uds/
|
|
78
|
-
700: 'https://cdn.telus.digital/uds/
|
|
74
|
+
300: 'https://cdn.telus.digital/uds/v0_23_0-StagSans-300-sCMaZHMHAe27vDQRAOeN1.otf',
|
|
75
|
+
400: 'https://cdn.telus.digital/uds/v0_23_0-StagSans-400-WJNU98crO9tJYJeH-bBG5.otf',
|
|
76
|
+
500: 'https://cdn.telus.digital/uds/v0_23_0-StagSans-500-XWsooPlmA2mFU9GmLrD98.otf',
|
|
77
|
+
600: 'https://cdn.telus.digital/uds/v0_23_0-StagSans-600-t9gJiMPEczUrSjrwNPYlr.otf',
|
|
78
|
+
700: 'https://cdn.telus.digital/uds/v0_23_0-StagSans-700-DpcxNhX64bhMZK30cFmMA.otf'
|
|
79
79
|
}
|
|
80
80
|
},
|
|
81
81
|
fontSize: {
|
|
@@ -161,6 +161,9 @@ module.exports = {
|
|
|
161
161
|
PlayVideo: '@telus-uds/palette-koodo/build/web/icons/play-video.icon.svg',
|
|
162
162
|
Question: '@telus-uds/palette-koodo/build/web/icons/question.icon.svg',
|
|
163
163
|
QuestionFilled: '@telus-uds/palette-koodo/build/web/icons/question-filled.icon.svg',
|
|
164
|
+
QuoteLeft: '@telus-uds/palette-koodo/build/web/icons/quote-left.icon.svg',
|
|
165
|
+
QuoteLeftArrow: '@telus-uds/palette-koodo/build/web/icons/quote-left-arrow.icon.svg',
|
|
166
|
+
QuoteRightArrow: '@telus-uds/palette-koodo/build/web/icons/quote-right-arrow.icon.svg',
|
|
164
167
|
RadialOutline: '@telus-uds/palette-koodo/build/web/icons/radial-outline.icon.svg',
|
|
165
168
|
RadialOutlineChecked: '@telus-uds/palette-koodo/build/web/icons/radial-outline-checked.icon.svg',
|
|
166
169
|
Receipt: '@telus-uds/palette-koodo/build/web/icons/receipt.icon.svg',
|
|
@@ -222,6 +225,7 @@ module.exports = {
|
|
|
222
225
|
pill32: '32px',
|
|
223
226
|
radius1: '1px',
|
|
224
227
|
radius12: '12px',
|
|
228
|
+
radius24: '24px',
|
|
225
229
|
radius4: '4px',
|
|
226
230
|
radius48: '48px',
|
|
227
231
|
radius6: '6px',
|
package/package.json
CHANGED
package/palette.json
CHANGED
|
@@ -619,6 +619,16 @@
|
|
|
619
619
|
"tags": ["General"],
|
|
620
620
|
"value": "icon/question-filled.svg"
|
|
621
621
|
},
|
|
622
|
+
"QuoteLeft": {
|
|
623
|
+
"tags": ["General"],
|
|
624
|
+
"value": "icon/quote-left.svg"
|
|
625
|
+
},
|
|
626
|
+
"QuoteLeftArrow": {
|
|
627
|
+
"value": "icon/quote-left-fr.svg"
|
|
628
|
+
},
|
|
629
|
+
"QuoteRightArrow": {
|
|
630
|
+
"value": "icon/quote-right-fr.svg"
|
|
631
|
+
},
|
|
622
632
|
"RadialOutline": {
|
|
623
633
|
"tags": ["Legacy"],
|
|
624
634
|
"value": "icon/radial-outline.svg"
|
|
@@ -816,6 +826,9 @@
|
|
|
816
826
|
"radius12": {
|
|
817
827
|
"value": 12
|
|
818
828
|
},
|
|
829
|
+
"radius24": {
|
|
830
|
+
"value": 24
|
|
831
|
+
},
|
|
819
832
|
"radius4": {
|
|
820
833
|
"value": 4
|
|
821
834
|
},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|