@telus-uds/palette-koodo 0.1.0-prerelease.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.
Files changed (91) hide show
  1. package/CHANGELOG.md +134 -0
  2. package/README.md +25 -0
  3. package/build/android/border.xml +14 -0
  4. package/build/android/color.xml +39 -0
  5. package/build/android/font_size.xml +21 -0
  6. package/build/android/radius.xml +13 -0
  7. package/build/android/size.xml +26 -0
  8. package/build/ios/Border.swift +17 -0
  9. package/build/ios/Color.swift +42 -0
  10. package/build/ios/FontSize.swift +24 -0
  11. package/build/ios/Radius.swift +16 -0
  12. package/build/ios/Size.swift +29 -0
  13. package/build/rn/fonts/StagSans-300.otf +0 -0
  14. package/build/rn/fonts/StagSans-400.otf +0 -0
  15. package/build/rn/fonts/StagSans-500.otf +0 -0
  16. package/build/rn/fonts/StagSans-600.otf +0 -0
  17. package/build/rn/fonts/StagSans-700.otf +0 -0
  18. package/build/rn/fonts/fonts.css +25 -0
  19. package/build/rn/fonts/index.js +5 -0
  20. package/build/rn/icons/arrow-down-circled.icon.svg +6 -0
  21. package/build/rn/icons/box-outline-checked.icon.svg +6 -0
  22. package/build/rn/icons/box-outline.icon.svg +6 -0
  23. package/build/rn/icons/bullet.icon.svg +3 -0
  24. package/build/rn/icons/cart.icon.svg +7 -0
  25. package/build/rn/icons/check-circled-filled.icon.svg +6 -0
  26. package/build/rn/icons/check-circled-not-filled.icon.svg +17 -0
  27. package/build/rn/icons/check.icon.svg +6 -0
  28. package/build/rn/icons/chevron-down.icon.svg +6 -0
  29. package/build/rn/icons/chevron-left.icon.svg +6 -0
  30. package/build/rn/icons/chevron-right.icon.svg +6 -0
  31. package/build/rn/icons/chevron-up.icon.svg +6 -0
  32. package/build/rn/icons/circled-line.icon.svg +22 -0
  33. package/build/rn/icons/exclamation-octagon.icon.svg +11 -0
  34. package/build/rn/icons/exclamation-triangle.icon.svg +20 -0
  35. package/build/rn/icons/eye-closed.icon.svg +21 -0
  36. package/build/rn/icons/eye-opened.icon.svg +17 -0
  37. package/build/rn/icons/hamburger.icon.svg +8 -0
  38. package/build/rn/icons/index.js +28 -0
  39. package/build/rn/icons/info-selected.icon.svg +16 -0
  40. package/build/rn/icons/info.icon.svg +9 -0
  41. package/build/rn/icons/information-circled.icon.svg +6 -0
  42. package/build/rn/icons/kebab.icon.svg +15 -0
  43. package/build/rn/icons/radial-outline-checked.icon.svg +6 -0
  44. package/build/rn/icons/radial-outline.icon.svg +6 -0
  45. package/build/rn/icons/refresh.icon.svg +14 -0
  46. package/build/rn/icons/spyglass.icon.svg +6 -0
  47. package/build/rn/icons/times-circled.icon.svg +38 -0
  48. package/build/rn/icons/times.icon.svg +6 -0
  49. package/build/rn/palette.js +129 -0
  50. package/build/rn/palette.mjs +129 -0
  51. package/build/web/fonts/fonts-cdn-family.css +35 -0
  52. package/build/web/fonts/fonts-cdn.css +25 -0
  53. package/build/web/fonts/fonts-local-family.css +35 -0
  54. package/build/web/fonts/fonts-local.css +25 -0
  55. package/build/web/fonts/v0_1_0-prerelease_0-StagSans-300.otf +0 -0
  56. package/build/web/fonts/v0_1_0-prerelease_0-StagSans-400.otf +0 -0
  57. package/build/web/fonts/v0_1_0-prerelease_0-StagSans-500.otf +0 -0
  58. package/build/web/fonts/v0_1_0-prerelease_0-StagSans-600.otf +0 -0
  59. package/build/web/fonts/v0_1_0-prerelease_0-StagSans-700.otf +0 -0
  60. package/build/web/icons/arrow-down-circled.icon.svg +6 -0
  61. package/build/web/icons/box-outline-checked.icon.svg +6 -0
  62. package/build/web/icons/box-outline.icon.svg +6 -0
  63. package/build/web/icons/bullet.icon.svg +3 -0
  64. package/build/web/icons/cart.icon.svg +7 -0
  65. package/build/web/icons/check-circled-filled.icon.svg +6 -0
  66. package/build/web/icons/check-circled-not-filled.icon.svg +17 -0
  67. package/build/web/icons/check.icon.svg +6 -0
  68. package/build/web/icons/chevron-down.icon.svg +6 -0
  69. package/build/web/icons/chevron-left.icon.svg +6 -0
  70. package/build/web/icons/chevron-right.icon.svg +6 -0
  71. package/build/web/icons/chevron-up.icon.svg +6 -0
  72. package/build/web/icons/circled-line.icon.svg +22 -0
  73. package/build/web/icons/exclamation-octagon.icon.svg +11 -0
  74. package/build/web/icons/exclamation-triangle.icon.svg +20 -0
  75. package/build/web/icons/eye-closed.icon.svg +21 -0
  76. package/build/web/icons/eye-opened.icon.svg +17 -0
  77. package/build/web/icons/hamburger.icon.svg +8 -0
  78. package/build/web/icons/index.js +28 -0
  79. package/build/web/icons/info-selected.icon.svg +16 -0
  80. package/build/web/icons/info.icon.svg +9 -0
  81. package/build/web/icons/information-circled.icon.svg +6 -0
  82. package/build/web/icons/kebab.icon.svg +15 -0
  83. package/build/web/icons/radial-outline-checked.icon.svg +6 -0
  84. package/build/web/icons/radial-outline.icon.svg +6 -0
  85. package/build/web/icons/refresh.icon.svg +14 -0
  86. package/build/web/icons/spyglass.icon.svg +6 -0
  87. package/build/web/icons/times-circled.icon.svg +38 -0
  88. package/build/web/icons/times.icon.svg +6 -0
  89. package/build/web/palette.js +129 -0
  90. package/build/web/palette.mjs +129 -0
  91. package/package.json +32 -0
@@ -0,0 +1,17 @@
1
+ <svg viewBox="0 0 29 18">
2
+ <g stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
3
+ <g
4
+ transform="translate(-842.000000, -448.000000)"
5
+ fillRule="nonzero"
6
+ stroke="#016b6a"
7
+ strokeWidth="2"
8
+ >
9
+ <g transform="translate(844.000000, 449.000000)">
10
+ <g>
11
+ <path d="M12.5,16 C17.1023729,16 21.2690396,13.3333333 25,8 C21.2690396,2.66666667 17.1023729,0 12.5,0 C7.89762709,0 3.73096042,2.66666667 0,8 C3.73096042,13.3333333 7.89762709,16 12.5,16 Z" />
12
+ <circle cx="12" cy="8" r="4" />
13
+ </g>
14
+ </g>
15
+ </g>
16
+ </g>
17
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24">
2
+ <g transform="translate(-276.000000, -46.000000)" fill="#000000">
3
+ <path
4
+ d="M277,60 C276.447715,60 276,59.5522847 276,59 L276,58 C276,57.4477153 276.447715,57 277,57 L298,57 C298.552285,57 299,57.4477153 299,58 L299,59 C299,59.5522847 298.552285,60 298,60 L277,60 Z M277,68 C276.447715,68 276,67.5522847 276,67 L276,66 C276,65.4477153 276.447715,65 277,65 L298,65 C298.552285,65 299,65.4477153 299,66 L299,67 C299,67.5522847 298.552285,68 298,68 L277,68 Z M277,52 C276.447715,52 276,51.5522847 276,51 L276,50 C276,49.4477153 276.447715,49 277,49 L298,49 C298.552285,49 299,49.4477153 299,50 L299,51 C299,51.5522847 298.552285,52 298,52 L277,52 Z"
5
+ id="Combined-Shape"
6
+ />
7
+ </g>
8
+ </svg>
@@ -0,0 +1,28 @@
1
+ export { default as ChevronUp } from '@telus-uds/palette-koodo/build/rn/icons/chevron-up.icon.svg'
2
+ export { default as ChevronRight } from '@telus-uds/palette-koodo/build/rn/icons/chevron-right.icon.svg'
3
+ export { default as ChevronDown } from '@telus-uds/palette-koodo/build/rn/icons/chevron-down.icon.svg'
4
+ export { default as ChevronLeft } from '@telus-uds/palette-koodo/build/rn/icons/chevron-left.icon.svg'
5
+ export { default as Cart } from '@telus-uds/palette-koodo/build/rn/icons/cart.icon.svg'
6
+ export { default as CircledLine } from '@telus-uds/palette-koodo/build/rn/icons/circled-line.icon.svg'
7
+ export { default as Times } from '@telus-uds/palette-koodo/build/rn/icons/times.icon.svg'
8
+ export { default as TimesCircled } from '@telus-uds/palette-koodo/build/rn/icons/times-circled.icon.svg'
9
+ export { default as Check } from '@telus-uds/palette-koodo/build/rn/icons/check.icon.svg'
10
+ export { default as CheckCircledFilled } from '@telus-uds/palette-koodo/build/rn/icons/check-circled-filled.icon.svg'
11
+ export { default as CheckCircledNotFilled } from '@telus-uds/palette-koodo/build/rn/icons/check-circled-not-filled.icon.svg'
12
+ export { default as ArrowDownCircled } from '@telus-uds/palette-koodo/build/rn/icons/arrow-down-circled.icon.svg'
13
+ export { default as ExclamationTriangle } from '@telus-uds/palette-koodo/build/rn/icons/exclamation-triangle.icon.svg'
14
+ export { default as ExclamationOctagon } from '@telus-uds/palette-koodo/build/rn/icons/exclamation-octagon.icon.svg'
15
+ export { default as InformationCircled } from '@telus-uds/palette-koodo/build/rn/icons/information-circled.icon.svg'
16
+ export { default as BoxOutline } from '@telus-uds/palette-koodo/build/rn/icons/box-outline.icon.svg'
17
+ export { default as BoxOutlineChecked } from '@telus-uds/palette-koodo/build/rn/icons/box-outline-checked.icon.svg'
18
+ export { default as RadialOutline } from '@telus-uds/palette-koodo/build/rn/icons/radial-outline.icon.svg'
19
+ export { default as RadialOutlineChecked } from '@telus-uds/palette-koodo/build/rn/icons/radial-outline-checked.icon.svg'
20
+ export { default as Hamburger } from '@telus-uds/palette-koodo/build/rn/icons/hamburger.icon.svg'
21
+ export { default as Spyglass } from '@telus-uds/palette-koodo/build/rn/icons/spyglass.icon.svg'
22
+ export { default as Bullet } from '@telus-uds/palette-koodo/build/rn/icons/bullet.icon.svg'
23
+ export { default as Info } from '@telus-uds/palette-koodo/build/rn/icons/info.icon.svg'
24
+ export { default as InfoSelected } from '@telus-uds/palette-koodo/build/rn/icons/info-selected.icon.svg'
25
+ export { default as Refresh } from '@telus-uds/palette-koodo/build/rn/icons/refresh.icon.svg'
26
+ export { default as Kebab } from '@telus-uds/palette-koodo/build/rn/icons/kebab.icon.svg'
27
+ export { default as EyeOpened } from '@telus-uds/palette-koodo/build/rn/icons/eye-opened.icon.svg'
28
+ export { default as EyeClosed } from '@telus-uds/palette-koodo/build/rn/icons/eye-closed.icon.svg'
@@ -0,0 +1,16 @@
1
+ <svg viewBox="0 0 24 24">
2
+ <g stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
3
+ <circle
4
+ stroke="#016b6a"
5
+ fill="#c3efff"
6
+ fillRule="nonzero"
7
+ cx="12"
8
+ cy="12"
9
+ r="11"
10
+ />
11
+ <path
12
+ d="M12.8333333,18 L11.1333333,18 L11.1333333,8.2732475 L12.0833333,8.2732475 C12.75,8.2732475 12.8333333,8.49642346 12.8333333,9.72389127 L12.8333333,18 Z M12,7.19456366 C11.4666667,7.19456366 11,6.71101574 11,6.11587983 C11,5.50214592 11.4666667,5 12,5 C12.5333333,5 13,5.50214592 13,6.11587983 C13,6.71101574 12.5333333,7.19456366 12,7.19456366 Z"
13
+ fill="#016b6a"
14
+ />
15
+ </g>
16
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg viewBox="0 0 24 24">
2
+ <g stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
3
+ <circle stroke="#016b6a" fillRule="nonzero" cx="12" cy="12" r="11" />
4
+ <path
5
+ d="M12.8333333,18 L11.1333333,18 L11.1333333,8.2732475 L12.0833333,8.2732475 C12.75,8.2732475 12.8333333,8.49642346 12.8333333,9.72389127 L12.8333333,18 Z M12,7.19456366 C11.4666667,7.19456366 11,6.71101574 11,6.11587983 C11,5.50214592 11.4666667,5 12,5 C12.5333333,5 13,5.50214592 13,6.11587983 C13,6.71101574 12.5333333,7.19456366 12,7.19456366 Z"
6
+ fill="#016b6a"
7
+ />
8
+ </g>
9
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24">
2
+ <path
3
+ d="M10.724 8.897h2.596V6.532h-2.596v2.365zm-.027 8.625h2.596v-6.341h-2.596v6.341zM12 1C5.924 1 1 5.927 1 12c0 6.076 4.924 11 11 11 6.073 0 11-4.924 11-11 0-6.073-4.927-11-11-11z"
4
+ fillRule="evenodd"
5
+ />
6
+ </svg>
@@ -0,0 +1,15 @@
1
+ <svg viewBox="0 0 4 16">
2
+ <g fill="none" fillRule="evenodd" stroke="none" strokeWidth="1">
3
+ <g fill="#000" transform="translate(-293.000000, -502.000000)">
4
+ <g transform="translate(0.000000, 424.000000)">
5
+ <g transform="translate(0.000000, 57.000000)">
6
+ <g transform="translate(293.000000, 21.000000)">
7
+ <circle cx="2" cy="2" r="2" />
8
+ <circle cx="2" cy="8" r="2" />
9
+ <circle cx="2" cy="14" r="2" />
10
+ </g>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ </g>
15
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24">
2
+ <path
3
+ d="M12 20.36c-4.609 0-8.36-3.75-8.36-8.36 0-4.61 3.751-8.36 8.36-8.36 4.61 0 8.36 3.75 8.36 8.36 0 4.61-3.75 8.36-8.36 8.36M12 1C5.935 1 1 5.935 1 12c0 6.066 4.934 11 11 11s11-4.934 11-11c0-6.065-4.934-11-11-11m0 17.6a6.6 6.6 0 1 1 0-13.2 6.6 6.6 0 0 1 0 13.2"
4
+ fillRule="evenodd"
5
+ />
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24">
2
+ <path
3
+ d="M12 3.64c-4.61 0-8.361 3.751-8.361 8.36s3.75 8.36 8.361 8.36c4.61 0 8.36-3.751 8.36-8.36S16.61 3.64 12 3.64M12 23C5.935 23 1 18.065 1 12 1 5.934 5.935 1 12 1s11 4.934 11 11c0 6.065-4.935 11-11 11"
4
+ fillRule="evenodd"
5
+ />
6
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg viewBox="0 0 24 24">
2
+ <g id="Newer" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
3
+ <g id="refresh" fill="#666666" fillRule="nonzero">
4
+ <path
5
+ d="M9.815,-1.82076576e-13 C9.57935,-1.82076576e-13 9.388325,0.191025 9.388325,0.426675 L9.388325,1.985275 C7.191675,-0.1414 3.68695,-0.08465 1.560275,2.111975 C0.558025,3.1472 -0.0011,4.532425 0.00166471975,5.973325 C0.00166471975,6.208975 0.1927,6.4 0.42835,6.4 C0.664,6.4 0.855,6.208975 0.855,5.973325 C0.855525,3.381275 2.9572,1.2804 5.549275,1.280925 C6.8657,1.281175 8.121475,1.8343 9.010325,2.805325 L7.1202,3.4355 C6.89635,3.509975 6.775225,3.7518 6.8497,3.97565 C6.924175,4.1995 7.166,4.320625 7.38985,4.24615 L9.94985,3.392825 C10.1246,3.334625 10.242275,3.170825 10.2417021,2.98665 L10.2417021,0.42665 C10.2417021,0.191025 10.05065,-1.82076576e-13 9.815,-1.82076576e-13 Z"
6
+ id="Path"
7
+ />
8
+ <path
9
+ d="M10.668325,5.546675 C10.432675,5.546675 10.24165,5.7377 10.24165,5.97335 C10.241125,8.5654 8.13945,10.666275 5.547375,10.66575 C4.23095,10.6655 2.975175,10.112375 2.086325,9.14135 L3.97645,8.511175 C4.2003,8.4367 4.321425,8.194875 4.24695,7.971025 C4.172475,7.747175 3.93065,7.62605 3.7068,7.700525 L1.1468,8.55385 C0.97205,8.61205 0.854375,8.77585 0.854947902,8.960025 L0.854947902,11.520025 C0.854947902,11.755675 1.045975,11.9467 1.281625,11.9467 C1.517275,11.9467 1.7083,11.755675 1.7083,11.520025 L1.7083,9.9614 C3.90495,12.088075 7.4097,12.03135 9.53635,9.8347 C10.5386,8.799475 11.097725,7.41425 11.0949603,5.97335 C11.0949603,5.7377 10.903975,5.546675 10.668325,5.546675 Z"
10
+ id="Path"
11
+ />
12
+ </g>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24">
2
+ <path
3
+ d="M3.838,9.8165 C3.838,6.509625 6.528875,3.828375 9.84675,3.828375 C13.166,3.828375 15.8555,6.509625 15.8555,9.8165 C15.8555,13.123375 13.166,15.804625 9.84675,15.804625 C6.528875,15.804625 3.838,13.123375 3.838,9.8165 M22.269875,18.75675 L17.58525,14.08725 C18.28925,12.82225 18.6935,11.3675 18.6935,9.8165 C18.6935,4.947625 14.732125,1 9.84675,1 C4.96,1 1,4.947625 1,9.8165 C1,14.68675 4.96,18.633 9.84675,18.633 C11.374375,18.633 12.809875,18.248 14.063875,17.56875 L14.041875,17.589375 L18.741625,22.272625 C19.227,22.758 19.865,23 20.50575,23 C21.14375,23 21.78175,22.758 22.269875,22.272625 C23.243375,21.301875 23.243375,19.7275 22.269875,18.75675"
4
+ fillRule="evenodd"
5
+ />
6
+ </svg>
@@ -0,0 +1,38 @@
1
+ <svg viewBox="0 0 14 14">
2
+ <g stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
3
+ <g transform="translate(-179.000000, -650.000000)">
4
+ <g transform="translate(0.000000, 571.000000)">
5
+ <g transform="translate(179.000000, 79.000000)">
6
+ <g>
7
+ <g>
8
+ <mask fill="#fff" />
9
+ </g>
10
+ <path
11
+ d="M7,0 C3.1335,0 0,3.1335 0,7 C0,10.866 3.1335,14 7,14 C10.866,14 14,10.866 14,7 C14,3.1335 10.866,0 7,0"
12
+ fill="#df3d0c"
13
+ mask="url(#mask-2)"
14
+ />
15
+ </g>
16
+ <rect
17
+ fill="#fff"
18
+ transform="translate(7.000000, 7.000000) rotate(-315.000000) translate(-7.000000, -7.000000)"
19
+ x="3"
20
+ y="6"
21
+ width="8"
22
+ height="2"
23
+ rx="1"
24
+ />
25
+ <rect
26
+ fill="#fff"
27
+ transform="translate(7.000000, 7.000000) rotate(-225.000000) translate(-7.000000, -7.000000)"
28
+ x="3"
29
+ y="6"
30
+ width="8"
31
+ height="2"
32
+ rx="1"
33
+ />
34
+ </g>
35
+ </g>
36
+ </g>
37
+ </g>
38
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24">
2
+ <path
3
+ d="M14.943 12l7.44-7.42a2.107 2.107 0 0 0 .023-2.956 2.05 2.05 0 0 0-2.92-.023L12 9.066 4.515 1.601a2.047 2.047 0 0 0-2.92.023 2.109 2.109 0 0 0 .021 2.957L9.057 12l-7.44 7.418a2.108 2.108 0 0 0-.023 2.957 2.046 2.046 0 0 0 2.92.022L12 14.935l7.485 7.463a2.045 2.045 0 0 0 2.92-.022 2.109 2.109 0 0 0-.021-2.957l-7.441-7.418z"
4
+ fillRule="evenodd"
5
+ />
6
+ </svg>
@@ -0,0 +1,129 @@
1
+ /**
2
+ * Do not edit directly
3
+ * Generated on Fri, 08 Oct 2021 13:23:52 GMT
4
+ */
5
+ module.exports = {
6
+ color: {
7
+ flirt: '#7c1366',
8
+ mosque: '#016b6a',
9
+ darkMosque: '#014847',
10
+ blue: '#00a1db',
11
+ darkBlue: '#0083b3',
12
+ texas: '#f9f6a5',
13
+ amaranth: '#ee2c74',
14
+ cardinalPink: '#8c0448',
15
+ trinidad: '#df3d0c',
16
+ onahau: '#c3efff',
17
+ burntSienna: '#ed6358',
18
+ chathamsBlue: '#17367d',
19
+ wellRead: '#b8373e',
20
+ wattle: '#d5e04d',
21
+ beeswax: '#feeec7',
22
+ bilbao: '#258b0b',
23
+ seaBuckthorn: '#fbaf34',
24
+ mintTulip: '#c1f2e8',
25
+ turquoise: '#39cdc9',
26
+ hibiscus: '#c53a70',
27
+ carouselPink: '#fae6f4',
28
+ white: '#ffffff',
29
+ black: '#000000',
30
+ mortar: '#595959',
31
+ gallery: '#efefef',
32
+ silver: '#c9c8c8',
33
+ dove: '#666666',
34
+ iceberg: '#cbf0e8',
35
+ transparent: 'rgba(0, 0, 0, 0)'
36
+ },
37
+ font: {
38
+ StagSans: {
39
+ 300: '@telus-uds/palette-koodo/build/rn/fonts/StagSans-300.otf',
40
+ 400: '@telus-uds/palette-koodo/build/rn/fonts/StagSans-400.otf',
41
+ 500: '@telus-uds/palette-koodo/build/rn/fonts/StagSans-500.otf',
42
+ 600: '@telus-uds/palette-koodo/build/rn/fonts/StagSans-600.otf',
43
+ 700: '@telus-uds/palette-koodo/build/rn/fonts/StagSans-700.otf'
44
+ }
45
+ },
46
+ fontSize: {
47
+ size12: 12,
48
+ size14: 14,
49
+ size16: 16,
50
+ size20: 20,
51
+ size24: 24,
52
+ size28: 28,
53
+ size40: 40,
54
+ size44: 44,
55
+ size48: 48,
56
+ size56: 56,
57
+ size64: 64
58
+ },
59
+ size: {
60
+ size0: 0,
61
+ size4: 4,
62
+ size8: 8,
63
+ size10: 10,
64
+ size16: 16,
65
+ size20: 20,
66
+ size24: 24,
67
+ size32: 32,
68
+ size36: 36,
69
+ size40: 40,
70
+ size48: 48,
71
+ size64: 64,
72
+ size72: 72,
73
+ size80: 80,
74
+ size96: 96,
75
+ size120: 120
76
+ },
77
+ radius: {
78
+ none: 0,
79
+ radius4: 4,
80
+ pill32: 32
81
+ },
82
+ border: {
83
+ none: 0,
84
+ border1: 1,
85
+ border2: 2,
86
+ border4: 4
87
+ },
88
+ lineHeight: {
89
+ multiply160: 1.6,
90
+ multiply150: 1.5,
91
+ multiply140: 1.4,
92
+ multiply130: 1.3,
93
+ multiply120: 1.2,
94
+ multiply110: 1.1
95
+ },
96
+ letterSpacing: {
97
+ default: 0
98
+ },
99
+ icon: {
100
+ ChevronUp: '@telus-uds/palette-koodo/build/rn/icons/chevron-up.icon.svg',
101
+ ChevronRight: '@telus-uds/palette-koodo/build/rn/icons/chevron-right.icon.svg',
102
+ ChevronDown: '@telus-uds/palette-koodo/build/rn/icons/chevron-down.icon.svg',
103
+ ChevronLeft: '@telus-uds/palette-koodo/build/rn/icons/chevron-left.icon.svg',
104
+ Cart: '@telus-uds/palette-koodo/build/rn/icons/cart.icon.svg',
105
+ CircledLine: '@telus-uds/palette-koodo/build/rn/icons/circled-line.icon.svg',
106
+ Times: '@telus-uds/palette-koodo/build/rn/icons/times.icon.svg',
107
+ TimesCircled: '@telus-uds/palette-koodo/build/rn/icons/times-circled.icon.svg',
108
+ Check: '@telus-uds/palette-koodo/build/rn/icons/check.icon.svg',
109
+ CheckCircledFilled: '@telus-uds/palette-koodo/build/rn/icons/check-circled-filled.icon.svg',
110
+ CheckCircledNotFilled: '@telus-uds/palette-koodo/build/rn/icons/check-circled-not-filled.icon.svg',
111
+ ArrowDownCircled: '@telus-uds/palette-koodo/build/rn/icons/arrow-down-circled.icon.svg',
112
+ ExclamationTriangle: '@telus-uds/palette-koodo/build/rn/icons/exclamation-triangle.icon.svg',
113
+ ExclamationOctagon: '@telus-uds/palette-koodo/build/rn/icons/exclamation-octagon.icon.svg',
114
+ InformationCircled: '@telus-uds/palette-koodo/build/rn/icons/information-circled.icon.svg',
115
+ BoxOutline: '@telus-uds/palette-koodo/build/rn/icons/box-outline.icon.svg',
116
+ BoxOutlineChecked: '@telus-uds/palette-koodo/build/rn/icons/box-outline-checked.icon.svg',
117
+ RadialOutline: '@telus-uds/palette-koodo/build/rn/icons/radial-outline.icon.svg',
118
+ RadialOutlineChecked: '@telus-uds/palette-koodo/build/rn/icons/radial-outline-checked.icon.svg',
119
+ Hamburger: '@telus-uds/palette-koodo/build/rn/icons/hamburger.icon.svg',
120
+ Spyglass: '@telus-uds/palette-koodo/build/rn/icons/spyglass.icon.svg',
121
+ Bullet: '@telus-uds/palette-koodo/build/rn/icons/bullet.icon.svg',
122
+ Info: '@telus-uds/palette-koodo/build/rn/icons/info.icon.svg',
123
+ InfoSelected: '@telus-uds/palette-koodo/build/rn/icons/info-selected.icon.svg',
124
+ Refresh: '@telus-uds/palette-koodo/build/rn/icons/refresh.icon.svg',
125
+ Kebab: '@telus-uds/palette-koodo/build/rn/icons/kebab.icon.svg',
126
+ EyeOpened: '@telus-uds/palette-koodo/build/rn/icons/eye-opened.icon.svg',
127
+ EyeClosed: '@telus-uds/palette-koodo/build/rn/icons/eye-closed.icon.svg'
128
+ }
129
+ }
@@ -0,0 +1,129 @@
1
+ /**
2
+ * Do not edit directly
3
+ * Generated on Fri, 08 Oct 2021 13:23:52 GMT
4
+ */
5
+ export default {
6
+ color: {
7
+ flirt: '#7c1366',
8
+ mosque: '#016b6a',
9
+ darkMosque: '#014847',
10
+ blue: '#00a1db',
11
+ darkBlue: '#0083b3',
12
+ texas: '#f9f6a5',
13
+ amaranth: '#ee2c74',
14
+ cardinalPink: '#8c0448',
15
+ trinidad: '#df3d0c',
16
+ onahau: '#c3efff',
17
+ burntSienna: '#ed6358',
18
+ chathamsBlue: '#17367d',
19
+ wellRead: '#b8373e',
20
+ wattle: '#d5e04d',
21
+ beeswax: '#feeec7',
22
+ bilbao: '#258b0b',
23
+ seaBuckthorn: '#fbaf34',
24
+ mintTulip: '#c1f2e8',
25
+ turquoise: '#39cdc9',
26
+ hibiscus: '#c53a70',
27
+ carouselPink: '#fae6f4',
28
+ white: '#ffffff',
29
+ black: '#000000',
30
+ mortar: '#595959',
31
+ gallery: '#efefef',
32
+ silver: '#c9c8c8',
33
+ dove: '#666666',
34
+ iceberg: '#cbf0e8',
35
+ transparent: 'rgba(0, 0, 0, 0)'
36
+ },
37
+ font: {
38
+ StagSans: {
39
+ 300: '@telus-uds/palette-koodo/build/rn/fonts/StagSans-300.otf',
40
+ 400: '@telus-uds/palette-koodo/build/rn/fonts/StagSans-400.otf',
41
+ 500: '@telus-uds/palette-koodo/build/rn/fonts/StagSans-500.otf',
42
+ 600: '@telus-uds/palette-koodo/build/rn/fonts/StagSans-600.otf',
43
+ 700: '@telus-uds/palette-koodo/build/rn/fonts/StagSans-700.otf'
44
+ }
45
+ },
46
+ fontSize: {
47
+ size12: 12,
48
+ size14: 14,
49
+ size16: 16,
50
+ size20: 20,
51
+ size24: 24,
52
+ size28: 28,
53
+ size40: 40,
54
+ size44: 44,
55
+ size48: 48,
56
+ size56: 56,
57
+ size64: 64
58
+ },
59
+ size: {
60
+ size0: 0,
61
+ size4: 4,
62
+ size8: 8,
63
+ size10: 10,
64
+ size16: 16,
65
+ size20: 20,
66
+ size24: 24,
67
+ size32: 32,
68
+ size36: 36,
69
+ size40: 40,
70
+ size48: 48,
71
+ size64: 64,
72
+ size72: 72,
73
+ size80: 80,
74
+ size96: 96,
75
+ size120: 120
76
+ },
77
+ radius: {
78
+ none: 0,
79
+ radius4: 4,
80
+ pill32: 32
81
+ },
82
+ border: {
83
+ none: 0,
84
+ border1: 1,
85
+ border2: 2,
86
+ border4: 4
87
+ },
88
+ lineHeight: {
89
+ multiply160: 1.6,
90
+ multiply150: 1.5,
91
+ multiply140: 1.4,
92
+ multiply130: 1.3,
93
+ multiply120: 1.2,
94
+ multiply110: 1.1
95
+ },
96
+ letterSpacing: {
97
+ default: 0
98
+ },
99
+ icon: {
100
+ ChevronUp: '@telus-uds/palette-koodo/build/rn/icons/chevron-up.icon.svg',
101
+ ChevronRight: '@telus-uds/palette-koodo/build/rn/icons/chevron-right.icon.svg',
102
+ ChevronDown: '@telus-uds/palette-koodo/build/rn/icons/chevron-down.icon.svg',
103
+ ChevronLeft: '@telus-uds/palette-koodo/build/rn/icons/chevron-left.icon.svg',
104
+ Cart: '@telus-uds/palette-koodo/build/rn/icons/cart.icon.svg',
105
+ CircledLine: '@telus-uds/palette-koodo/build/rn/icons/circled-line.icon.svg',
106
+ Times: '@telus-uds/palette-koodo/build/rn/icons/times.icon.svg',
107
+ TimesCircled: '@telus-uds/palette-koodo/build/rn/icons/times-circled.icon.svg',
108
+ Check: '@telus-uds/palette-koodo/build/rn/icons/check.icon.svg',
109
+ CheckCircledFilled: '@telus-uds/palette-koodo/build/rn/icons/check-circled-filled.icon.svg',
110
+ CheckCircledNotFilled: '@telus-uds/palette-koodo/build/rn/icons/check-circled-not-filled.icon.svg',
111
+ ArrowDownCircled: '@telus-uds/palette-koodo/build/rn/icons/arrow-down-circled.icon.svg',
112
+ ExclamationTriangle: '@telus-uds/palette-koodo/build/rn/icons/exclamation-triangle.icon.svg',
113
+ ExclamationOctagon: '@telus-uds/palette-koodo/build/rn/icons/exclamation-octagon.icon.svg',
114
+ InformationCircled: '@telus-uds/palette-koodo/build/rn/icons/information-circled.icon.svg',
115
+ BoxOutline: '@telus-uds/palette-koodo/build/rn/icons/box-outline.icon.svg',
116
+ BoxOutlineChecked: '@telus-uds/palette-koodo/build/rn/icons/box-outline-checked.icon.svg',
117
+ RadialOutline: '@telus-uds/palette-koodo/build/rn/icons/radial-outline.icon.svg',
118
+ RadialOutlineChecked: '@telus-uds/palette-koodo/build/rn/icons/radial-outline-checked.icon.svg',
119
+ Hamburger: '@telus-uds/palette-koodo/build/rn/icons/hamburger.icon.svg',
120
+ Spyglass: '@telus-uds/palette-koodo/build/rn/icons/spyglass.icon.svg',
121
+ Bullet: '@telus-uds/palette-koodo/build/rn/icons/bullet.icon.svg',
122
+ Info: '@telus-uds/palette-koodo/build/rn/icons/info.icon.svg',
123
+ InfoSelected: '@telus-uds/palette-koodo/build/rn/icons/info-selected.icon.svg',
124
+ Refresh: '@telus-uds/palette-koodo/build/rn/icons/refresh.icon.svg',
125
+ Kebab: '@telus-uds/palette-koodo/build/rn/icons/kebab.icon.svg',
126
+ EyeOpened: '@telus-uds/palette-koodo/build/rn/icons/eye-opened.icon.svg',
127
+ EyeClosed: '@telus-uds/palette-koodo/build/rn/icons/eye-closed.icon.svg'
128
+ }
129
+ }
@@ -0,0 +1,35 @@
1
+ @font-face {
2
+ font-family: 'StagSans';
3
+ src: url('v0_1_0-prerelease_0-StagSans-300.otf');
4
+ font-weight: 300;
5
+ font-style: normal;
6
+ font-display: block;
7
+ }
8
+ @font-face {
9
+ font-family: 'StagSans';
10
+ src: url('v0_1_0-prerelease_0-StagSans-400.otf');
11
+ font-weight: 400;
12
+ font-style: normal;
13
+ font-display: block;
14
+ }
15
+ @font-face {
16
+ font-family: 'StagSans';
17
+ src: url('v0_1_0-prerelease_0-StagSans-500.otf');
18
+ font-weight: 500;
19
+ font-style: normal;
20
+ font-display: block;
21
+ }
22
+ @font-face {
23
+ font-family: 'StagSans';
24
+ src: url('v0_1_0-prerelease_0-StagSans-600.otf');
25
+ font-weight: 600;
26
+ font-style: normal;
27
+ font-display: block;
28
+ }
29
+ @font-face {
30
+ font-family: 'StagSans';
31
+ src: url('v0_1_0-prerelease_0-StagSans-700.otf');
32
+ font-weight: 700;
33
+ font-style: normal;
34
+ font-display: block;
35
+ }
@@ -0,0 +1,25 @@
1
+ @font-face {
2
+ font-family: 'StagSans300normal';
3
+ src: url('v0_1_0-prerelease_0-StagSans-300.otf');
4
+ font-display: block;
5
+ }
6
+ @font-face {
7
+ font-family: 'StagSans400normal';
8
+ src: url('v0_1_0-prerelease_0-StagSans-400.otf');
9
+ font-display: block;
10
+ }
11
+ @font-face {
12
+ font-family: 'StagSans500normal';
13
+ src: url('v0_1_0-prerelease_0-StagSans-500.otf');
14
+ font-display: block;
15
+ }
16
+ @font-face {
17
+ font-family: 'StagSans600normal';
18
+ src: url('v0_1_0-prerelease_0-StagSans-600.otf');
19
+ font-display: block;
20
+ }
21
+ @font-face {
22
+ font-family: 'StagSans700normal';
23
+ src: url('v0_1_0-prerelease_0-StagSans-700.otf');
24
+ font-display: block;
25
+ }
@@ -0,0 +1,35 @@
1
+ @font-face {
2
+ font-family: 'StagSans';
3
+ src: url('./v0_1_0-prerelease_0-StagSans-300.otf');
4
+ font-weight: 300;
5
+ font-style: normal;
6
+ font-display: block;
7
+ }
8
+ @font-face {
9
+ font-family: 'StagSans';
10
+ src: url('./v0_1_0-prerelease_0-StagSans-400.otf');
11
+ font-weight: 400;
12
+ font-style: normal;
13
+ font-display: block;
14
+ }
15
+ @font-face {
16
+ font-family: 'StagSans';
17
+ src: url('./v0_1_0-prerelease_0-StagSans-500.otf');
18
+ font-weight: 500;
19
+ font-style: normal;
20
+ font-display: block;
21
+ }
22
+ @font-face {
23
+ font-family: 'StagSans';
24
+ src: url('./v0_1_0-prerelease_0-StagSans-600.otf');
25
+ font-weight: 600;
26
+ font-style: normal;
27
+ font-display: block;
28
+ }
29
+ @font-face {
30
+ font-family: 'StagSans';
31
+ src: url('./v0_1_0-prerelease_0-StagSans-700.otf');
32
+ font-weight: 700;
33
+ font-style: normal;
34
+ font-display: block;
35
+ }
@@ -0,0 +1,25 @@
1
+ @font-face {
2
+ font-family: 'StagSans300normal';
3
+ src: url('./v0_1_0-prerelease_0-StagSans-300.otf');
4
+ font-display: block;
5
+ }
6
+ @font-face {
7
+ font-family: 'StagSans400normal';
8
+ src: url('./v0_1_0-prerelease_0-StagSans-400.otf');
9
+ font-display: block;
10
+ }
11
+ @font-face {
12
+ font-family: 'StagSans500normal';
13
+ src: url('./v0_1_0-prerelease_0-StagSans-500.otf');
14
+ font-display: block;
15
+ }
16
+ @font-face {
17
+ font-family: 'StagSans600normal';
18
+ src: url('./v0_1_0-prerelease_0-StagSans-600.otf');
19
+ font-display: block;
20
+ }
21
+ @font-face {
22
+ font-family: 'StagSans700normal';
23
+ src: url('./v0_1_0-prerelease_0-StagSans-700.otf');
24
+ font-display: block;
25
+ }
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24">
2
+ <path
3
+ d="M12 1c6.077 0 11 4.925 11 11s-4.924 11-11 11C5.925 23 1 18.075 1 12S5.925 1 12 1zm2.391 4.132l-4.69.018v8.238l-2.88.027 5.225 5.454 5.134-5.554-2.789.028V5.132z"
4
+ fillRule="evenodd"
5
+ />
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24">
2
+ <path
3
+ d="M1 23h22V1H1v22zm2.64-2.64h16.72V3.64H3.64v16.72zm3.435-9.111l2.487 2.479 7.356-7.355 1.951 1.951-9.296 9.289-.01.014-4.433-4.433 1.945-1.945z"
4
+ fillRule="evenodd"
5
+ />
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24">
2
+ <path
3
+ d="M1 23h22V1H1v22zm2.64-2.64h16.721V3.639H3.64V20.36z"
4
+ fillRule="evenodd"
5
+ />
6
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24">
2
+ <path d="M1.399 14.925A10.926 10.926 0 0 1 1 12.003c0-1.99.557-3.95 1.503-5.558a11.294 11.294 0 0 1 3.943-3.952A11.058 11.058 0 0 1 11.997 1c1.99 0 3.952.547 5.558 1.493a11.329 11.329 0 0 1 3.952 3.952C22.453 8.052 23 10.013 23 12.003c0 1.99-.547 3.943-1.493 5.55a11.294 11.294 0 0 1-3.952 3.944A11.09 11.09 0 0 1 11.997 23c-1.99 0-3.943-.557-5.55-1.503a11.26 11.26 0 0 1-3.944-3.943 10.724 10.724 0 0 1-1.104-2.63m8.254-5.272a3.203 3.203 0 0 0-.976 2.35 3.322 3.322 0 0 0 3.32 3.321 3.327 3.327 0 0 0 3.326-3.32 3.331 3.331 0 0 0-3.326-3.326c-.917 0-1.698.321-2.344.975" />
3
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg viewBox="0 0 24 24">
2
+ <path
3
+ d="M22.7034044,17.6991753 L7.13509386,17.6991753 C6.77772829,17.6991753 6.46719695,17.0952557 6.46719695,16.7369811 L6.46719695,14.0002317 L22.6519885,12.1782802 C23.309195,12.1048925 23.6314349,11.5488788 23.6314349,10.886351 L23.6314349,3.08585063 C23.6314349,2.36777242 23.4191537,2.24342105 22.7034044,2.24342105 L5.72599427,2.24342105 L4.16061088,0.527474055 C3.91727649,0.28386768 3.58790964,0 3.24327076,0 L1.29761374,0 C0.580846325,0 0,0.6528447 0,1.37092291 C0,2.08900111 0.580846325,2.74184581 1.29761374,2.74184581 L2.70620426,2.74184581 L3.73146675,3.62402706 L3.73146675,10.886351 L3.73146675,12.8367309 L3.73146675,16.7369811 C3.73146675,18.528864 5.34724785,20.4415308 7.13509386,20.4415308 L7.34330258,20.4415308 C7.33923003,20.4848499 7.33006682,20.5266401 7.33006682,20.5714881 C7.33006682,21.3604059 7.96894687,22 8.75698377,22 C9.54552975,22 10.1844098,21.3604059 10.1844098,20.5714881 C10.1844098,20.5266401 10.1752466,20.4848499 10.171174,20.4415308 L18.704168,20.4415308 C18.7000955,20.4848499 18.6909322,20.5266401 18.6909322,20.5714881 C18.6909322,21.3604059 19.3298123,22 20.1178492,22 C20.9063952,22 21.5452752,21.3604059 21.5452752,20.5714881 C21.5452752,20.5266401 21.536112,20.4848499 21.5320395,20.4415308 L22.7034044,20.4415308 C23.4196627,20.4415308 24,19.7886861 24,19.0700982 C24,18.3525297 23.4196627,17.6991753 22.7034044,17.6991753"
4
+ fill="#020303"
5
+ mask="url(#mask-2)"
6
+ />
7
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24">
2
+ <path
3
+ d="M9.573 17.613l-.01.014-4.433-4.433 1.946-1.945 2.486 2.478 7.356-7.355 1.951 1.953-9.296 9.288zM12 1C6.17 1 1.414 5.536 1.037 11.271 1.02 11.513 1 11.752 1 12a11.002 11.002 0 0 0 10.999 11C18.072 23 23 18.07 23 11.999 23 5.924 18.072 1 11.999 1z"
4
+ fillRule="evenodd"
5
+ />
6
+ </svg>