@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 40 40">
2
+ <g fill="none" fillRule="evenodd" stroke="none" strokeWidth="1">
3
+ <g transform="translate(-141.000000, -16.000000)">
4
+ <g transform="translate(20.000000, 16.000000)">
5
+ <g transform="translate(121.000000, 0.000000)">
6
+ <path
7
+ d="M20,40 C31.045695,40 40,31.045695 40,20 C40,8.954305 31.045695,1.0658141e-14 20,1.0658141e-14 C8.954305,1.0658141e-14 0,8.954305 0,20 C0,31.045695 8.954305,40 20,40 Z"
8
+ fill="#016b6a"
9
+ />
10
+ <g fill="#fff" transform="translate(3.000000, 3.000000)">
11
+ <path d="M13.5619271,24.9513958 L13.5463438,24.970875 L7.26820833,18.6907917 L10.0245104,15.9364375 L13.5463438,19.4465833 L23.9676979,9.02717708 L26.7317917,11.7932187 L13.5619271,24.9513958 Z M16.9980521,1.41666667 C8.74278125,1.41666667 2.00298958,7.84284375 1.46926042,15.9676042 C1.4439375,16.3104375 1.41666667,16.649375 1.41666667,16.9980521 C1.41666667,22.9002396 4.70085417,28.033 9.53753125,30.6802188 C11.7542604,31.8879271 14.2962917,32.5833333 16.9980521,32.5833333 C25.602,32.5833333 32.5833333,25.6000521 32.5833333,16.9980521 C32.5833333,8.39215625 25.602,1.41666667 16.9980521,1.41666667 L16.9980521,1.41666667 Z" />
12
+ </g>
13
+ </g>
14
+ </g>
15
+ </g>
16
+ </g>
17
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24">
2
+ <path
3
+ d="M19.876 2.998l-11.78 11.78-3.983-3.97L1 13.923l7.096 7.1.018-.023L22.998 6.125z"
4
+ fillRule="evenodd"
5
+ />
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24">
2
+ <path
3
+ d="M12 19L1.598 8.515a2.053 2.053 0 0 1 .023-2.919 2.087 2.087 0 0 1 2.939.02l7.44 7.5 7.44-7.5a2.085 2.085 0 0 1 2.94-.02c.818.8.828 2.106.022 2.92L12 19z"
4
+ fillRule="evenodd"
5
+ />
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24">
2
+ <path
3
+ d="M16.935 23a2.046 2.046 0 0 1-1.449-.599L5 12 15.486 1.598a2.053 2.053 0 0 1 2.92.023c.8.818.79 2.134-.022 2.939l-7.5 7.44 7.5 7.44c.813.806.823 2.122.022 2.94a2.05 2.05 0 0 1-1.471.62"
4
+ fillRule="evenodd"
5
+ />
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24">
2
+ <path
3
+ d="M7.065 23a2.05 2.05 0 0 1-1.47-.62 2.089 2.089 0 0 1 .021-2.94L13.115 12 5.616 4.56a2.087 2.087 0 0 1-.022-2.938 2.05 2.05 0 0 1 2.92-.023L18.999 12 8.514 22.401c-.402.4-.925.599-1.449.599"
4
+ fillRule="evenodd"
5
+ />
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24">
2
+ <path
3
+ d="M20.92 19a2.078 2.078 0 0 1-1.48-.615l-7.44-7.5-7.44 7.5a2.089 2.089 0 0 1-2.94.02 2.053 2.053 0 0 1-.022-2.919L12 5l10.402 10.486c.806.811.796 2.12-.023 2.92a2.075 2.075 0 0 1-1.458.594"
4
+ fillRule="evenodd"
5
+ />
6
+ </svg>
@@ -0,0 +1,22 @@
1
+ <svg viewBox="0 0 14 14">
2
+ <g stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
3
+ <g transform="translate(-179.000000, -707.000000)">
4
+ <g transform="translate(0.000000, 571.000000)">
5
+ <g transform="translate(179.000000, 136.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="#000"
13
+ mask="url(#mask-2)"
14
+ />
15
+ </g>
16
+ <rect fill="#fff" x="3" y="6" width="8" height="2" rx="1" />
17
+ </g>
18
+ </g>
19
+ </g>
20
+ </g>
21
+ </g>
22
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg viewBox="0 0 24 24">
2
+ <g fillRule="evenodd">
3
+ <g transform="translate(-1.000000, -1.000000)">
4
+ <rect fill="#FFFFFF" x="10" y="4" width="3.4000001" height="17" />
5
+ <path
6
+ d="M10.618125,14.072625 L13.3805,14.072625 L13.3805,4.403625 L10.618125,4.403625 L10.618125,14.072625 Z M10.618125,19.597375 L13.3805,19.597375 L13.3805,16.835 L10.618125,16.835 L10.618125,19.597375 Z M7.44325,1.0005 L1,7.442375 L1,16.55725 L7.44325,23.0005 L16.55675,23.0005 L23,16.55725 L23,7.442375 L16.55675,1.0005 L7.44325,1.0005 Z"
7
+ fill="#E61360"
8
+ />
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,20 @@
1
+ <svg viewBox="0 0 28 25">
2
+ <g stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
3
+ <g transform="translate(-81.000000, -46.000000)">
4
+ <g transform="translate(81.000000, 46.000000)">
5
+ <path
6
+ d="M1.00362145,24 L26.9965429,24 C27.5488276,24 27.9965429,23.5522847 27.9965429,23 C27.9965429,22.8211759 27.9485908,22.6456233 27.8576821,22.4916308 L14.8612214,0.476601297 C14.5804569,0.00100722868 13.9673071,-0.156933311 13.491713,0.123831229 C13.346208,0.20972938 13.2248411,0.331096274 13.1389429,0.476601297 L0.142482211,22.4916308 C-0.138282329,22.9672249 0.0196582105,23.5803747 0.495252279,23.8611392 C0.649244721,23.9520479 0.824797357,24 1.00362145,24 Z"
7
+ id="Page-1"
8
+ fill="#E61360"
9
+ />
10
+ <rect fill="#EE2C74" x="12" y="7" width="5" height="16" />
11
+ <path
12
+ d="M8.5,15.5 L19.5,15.5"
13
+ stroke="#FFFFFF"
14
+ strokeWidth="2"
15
+ strokeLinecap="square"
16
+ />
17
+ </g>
18
+ </g>
19
+ </g>
20
+ </svg>
@@ -0,0 +1,21 @@
1
+ <svg viewBox="0 0 29 24">
2
+ <g stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
3
+ <g
4
+ transform="translate(-824.000000, -438.000000)"
5
+ fillRule="nonzero"
6
+ stroke="#016b6a"
7
+ strokeWidth="2"
8
+ >
9
+ <g transform="translate(826.000000, 438.000000)">
10
+ <g>
11
+ <path d="M12.5,20 C17.1023729,20 21.2690396,17.3333333 25,12 C21.2690396,6.66666667 17.1023729,4 12.5,4 C7.89762709,4 3.73096042,6.66666667 0,12 C3.73096042,17.3333333 7.89762709,20 12.5,20 Z" />
12
+ <circle cx="12" cy="12" r="4" />
13
+ <path
14
+ d="M1,23 C16.6110454,7.66666667 23.9443787,0.333333333 23,1"
15
+ strokeLinecap="round"
16
+ />
17
+ </g>
18
+ </g>
19
+ </g>
20
+ </g>
21
+ </svg>
@@ -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/web/icons/chevron-up.icon.svg'
2
+ export { default as ChevronRight } from '@telus-uds/palette-koodo/build/web/icons/chevron-right.icon.svg'
3
+ export { default as ChevronDown } from '@telus-uds/palette-koodo/build/web/icons/chevron-down.icon.svg'
4
+ export { default as ChevronLeft } from '@telus-uds/palette-koodo/build/web/icons/chevron-left.icon.svg'
5
+ export { default as Cart } from '@telus-uds/palette-koodo/build/web/icons/cart.icon.svg'
6
+ export { default as CircledLine } from '@telus-uds/palette-koodo/build/web/icons/circled-line.icon.svg'
7
+ export { default as Times } from '@telus-uds/palette-koodo/build/web/icons/times.icon.svg'
8
+ export { default as TimesCircled } from '@telus-uds/palette-koodo/build/web/icons/times-circled.icon.svg'
9
+ export { default as Check } from '@telus-uds/palette-koodo/build/web/icons/check.icon.svg'
10
+ export { default as CheckCircledFilled } from '@telus-uds/palette-koodo/build/web/icons/check-circled-filled.icon.svg'
11
+ export { default as CheckCircledNotFilled } from '@telus-uds/palette-koodo/build/web/icons/check-circled-not-filled.icon.svg'
12
+ export { default as ArrowDownCircled } from '@telus-uds/palette-koodo/build/web/icons/arrow-down-circled.icon.svg'
13
+ export { default as ExclamationTriangle } from '@telus-uds/palette-koodo/build/web/icons/exclamation-triangle.icon.svg'
14
+ export { default as ExclamationOctagon } from '@telus-uds/palette-koodo/build/web/icons/exclamation-octagon.icon.svg'
15
+ export { default as InformationCircled } from '@telus-uds/palette-koodo/build/web/icons/information-circled.icon.svg'
16
+ export { default as BoxOutline } from '@telus-uds/palette-koodo/build/web/icons/box-outline.icon.svg'
17
+ export { default as BoxOutlineChecked } from '@telus-uds/palette-koodo/build/web/icons/box-outline-checked.icon.svg'
18
+ export { default as RadialOutline } from '@telus-uds/palette-koodo/build/web/icons/radial-outline.icon.svg'
19
+ export { default as RadialOutlineChecked } from '@telus-uds/palette-koodo/build/web/icons/radial-outline-checked.icon.svg'
20
+ export { default as Hamburger } from '@telus-uds/palette-koodo/build/web/icons/hamburger.icon.svg'
21
+ export { default as Spyglass } from '@telus-uds/palette-koodo/build/web/icons/spyglass.icon.svg'
22
+ export { default as Bullet } from '@telus-uds/palette-koodo/build/web/icons/bullet.icon.svg'
23
+ export { default as Info } from '@telus-uds/palette-koodo/build/web/icons/info.icon.svg'
24
+ export { default as InfoSelected } from '@telus-uds/palette-koodo/build/web/icons/info-selected.icon.svg'
25
+ export { default as Refresh } from '@telus-uds/palette-koodo/build/web/icons/refresh.icon.svg'
26
+ export { default as Kebab } from '@telus-uds/palette-koodo/build/web/icons/kebab.icon.svg'
27
+ export { default as EyeOpened } from '@telus-uds/palette-koodo/build/web/icons/eye-opened.icon.svg'
28
+ export { default as EyeClosed } from '@telus-uds/palette-koodo/build/web/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: 'v0_1_0-prerelease_0-StagSans-300.otf',
40
+ 400: 'v0_1_0-prerelease_0-StagSans-400.otf',
41
+ 500: 'v0_1_0-prerelease_0-StagSans-500.otf',
42
+ 600: 'v0_1_0-prerelease_0-StagSans-600.otf',
43
+ 700: 'v0_1_0-prerelease_0-StagSans-700.otf'
44
+ }
45
+ },
46
+ fontSize: {
47
+ size12: '0.75rem',
48
+ size14: '0.875rem',
49
+ size16: '1rem',
50
+ size20: '1.25rem',
51
+ size24: '1.5rem',
52
+ size28: '1.75rem',
53
+ size40: '2.5rem',
54
+ size44: '2.75rem',
55
+ size48: '3rem',
56
+ size56: '3.5rem',
57
+ size64: '4rem'
58
+ },
59
+ size: {
60
+ size0: '0px',
61
+ size4: '4px',
62
+ size8: '8px',
63
+ size10: '10px',
64
+ size16: '16px',
65
+ size20: '20px',
66
+ size24: '24px',
67
+ size32: '32px',
68
+ size36: '36px',
69
+ size40: '40px',
70
+ size48: '48px',
71
+ size64: '64px',
72
+ size72: '72px',
73
+ size80: '80px',
74
+ size96: '96px',
75
+ size120: '120px'
76
+ },
77
+ radius: {
78
+ none: '0px',
79
+ radius4: '4px',
80
+ pill32: '32px'
81
+ },
82
+ border: {
83
+ none: '0px',
84
+ border1: '1px',
85
+ border2: '2px',
86
+ border4: '4px'
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/web/icons/chevron-up.icon.svg',
101
+ ChevronRight: '@telus-uds/palette-koodo/build/web/icons/chevron-right.icon.svg',
102
+ ChevronDown: '@telus-uds/palette-koodo/build/web/icons/chevron-down.icon.svg',
103
+ ChevronLeft: '@telus-uds/palette-koodo/build/web/icons/chevron-left.icon.svg',
104
+ Cart: '@telus-uds/palette-koodo/build/web/icons/cart.icon.svg',
105
+ CircledLine: '@telus-uds/palette-koodo/build/web/icons/circled-line.icon.svg',
106
+ Times: '@telus-uds/palette-koodo/build/web/icons/times.icon.svg',
107
+ TimesCircled: '@telus-uds/palette-koodo/build/web/icons/times-circled.icon.svg',
108
+ Check: '@telus-uds/palette-koodo/build/web/icons/check.icon.svg',
109
+ CheckCircledFilled: '@telus-uds/palette-koodo/build/web/icons/check-circled-filled.icon.svg',
110
+ CheckCircledNotFilled: '@telus-uds/palette-koodo/build/web/icons/check-circled-not-filled.icon.svg',
111
+ ArrowDownCircled: '@telus-uds/palette-koodo/build/web/icons/arrow-down-circled.icon.svg',
112
+ ExclamationTriangle: '@telus-uds/palette-koodo/build/web/icons/exclamation-triangle.icon.svg',
113
+ ExclamationOctagon: '@telus-uds/palette-koodo/build/web/icons/exclamation-octagon.icon.svg',
114
+ InformationCircled: '@telus-uds/palette-koodo/build/web/icons/information-circled.icon.svg',
115
+ BoxOutline: '@telus-uds/palette-koodo/build/web/icons/box-outline.icon.svg',
116
+ BoxOutlineChecked: '@telus-uds/palette-koodo/build/web/icons/box-outline-checked.icon.svg',
117
+ RadialOutline: '@telus-uds/palette-koodo/build/web/icons/radial-outline.icon.svg',
118
+ RadialOutlineChecked: '@telus-uds/palette-koodo/build/web/icons/radial-outline-checked.icon.svg',
119
+ Hamburger: '@telus-uds/palette-koodo/build/web/icons/hamburger.icon.svg',
120
+ Spyglass: '@telus-uds/palette-koodo/build/web/icons/spyglass.icon.svg',
121
+ Bullet: '@telus-uds/palette-koodo/build/web/icons/bullet.icon.svg',
122
+ Info: '@telus-uds/palette-koodo/build/web/icons/info.icon.svg',
123
+ InfoSelected: '@telus-uds/palette-koodo/build/web/icons/info-selected.icon.svg',
124
+ Refresh: '@telus-uds/palette-koodo/build/web/icons/refresh.icon.svg',
125
+ Kebab: '@telus-uds/palette-koodo/build/web/icons/kebab.icon.svg',
126
+ EyeOpened: '@telus-uds/palette-koodo/build/web/icons/eye-opened.icon.svg',
127
+ EyeClosed: '@telus-uds/palette-koodo/build/web/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: 'v0_1_0-prerelease_0-StagSans-300.otf',
40
+ 400: 'v0_1_0-prerelease_0-StagSans-400.otf',
41
+ 500: 'v0_1_0-prerelease_0-StagSans-500.otf',
42
+ 600: 'v0_1_0-prerelease_0-StagSans-600.otf',
43
+ 700: 'v0_1_0-prerelease_0-StagSans-700.otf'
44
+ }
45
+ },
46
+ fontSize: {
47
+ size12: '0.75rem',
48
+ size14: '0.875rem',
49
+ size16: '1rem',
50
+ size20: '1.25rem',
51
+ size24: '1.5rem',
52
+ size28: '1.75rem',
53
+ size40: '2.5rem',
54
+ size44: '2.75rem',
55
+ size48: '3rem',
56
+ size56: '3.5rem',
57
+ size64: '4rem'
58
+ },
59
+ size: {
60
+ size0: '0px',
61
+ size4: '4px',
62
+ size8: '8px',
63
+ size10: '10px',
64
+ size16: '16px',
65
+ size20: '20px',
66
+ size24: '24px',
67
+ size32: '32px',
68
+ size36: '36px',
69
+ size40: '40px',
70
+ size48: '48px',
71
+ size64: '64px',
72
+ size72: '72px',
73
+ size80: '80px',
74
+ size96: '96px',
75
+ size120: '120px'
76
+ },
77
+ radius: {
78
+ none: '0px',
79
+ radius4: '4px',
80
+ pill32: '32px'
81
+ },
82
+ border: {
83
+ none: '0px',
84
+ border1: '1px',
85
+ border2: '2px',
86
+ border4: '4px'
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/web/icons/chevron-up.icon.svg',
101
+ ChevronRight: '@telus-uds/palette-koodo/build/web/icons/chevron-right.icon.svg',
102
+ ChevronDown: '@telus-uds/palette-koodo/build/web/icons/chevron-down.icon.svg',
103
+ ChevronLeft: '@telus-uds/palette-koodo/build/web/icons/chevron-left.icon.svg',
104
+ Cart: '@telus-uds/palette-koodo/build/web/icons/cart.icon.svg',
105
+ CircledLine: '@telus-uds/palette-koodo/build/web/icons/circled-line.icon.svg',
106
+ Times: '@telus-uds/palette-koodo/build/web/icons/times.icon.svg',
107
+ TimesCircled: '@telus-uds/palette-koodo/build/web/icons/times-circled.icon.svg',
108
+ Check: '@telus-uds/palette-koodo/build/web/icons/check.icon.svg',
109
+ CheckCircledFilled: '@telus-uds/palette-koodo/build/web/icons/check-circled-filled.icon.svg',
110
+ CheckCircledNotFilled: '@telus-uds/palette-koodo/build/web/icons/check-circled-not-filled.icon.svg',
111
+ ArrowDownCircled: '@telus-uds/palette-koodo/build/web/icons/arrow-down-circled.icon.svg',
112
+ ExclamationTriangle: '@telus-uds/palette-koodo/build/web/icons/exclamation-triangle.icon.svg',
113
+ ExclamationOctagon: '@telus-uds/palette-koodo/build/web/icons/exclamation-octagon.icon.svg',
114
+ InformationCircled: '@telus-uds/palette-koodo/build/web/icons/information-circled.icon.svg',
115
+ BoxOutline: '@telus-uds/palette-koodo/build/web/icons/box-outline.icon.svg',
116
+ BoxOutlineChecked: '@telus-uds/palette-koodo/build/web/icons/box-outline-checked.icon.svg',
117
+ RadialOutline: '@telus-uds/palette-koodo/build/web/icons/radial-outline.icon.svg',
118
+ RadialOutlineChecked: '@telus-uds/palette-koodo/build/web/icons/radial-outline-checked.icon.svg',
119
+ Hamburger: '@telus-uds/palette-koodo/build/web/icons/hamburger.icon.svg',
120
+ Spyglass: '@telus-uds/palette-koodo/build/web/icons/spyglass.icon.svg',
121
+ Bullet: '@telus-uds/palette-koodo/build/web/icons/bullet.icon.svg',
122
+ Info: '@telus-uds/palette-koodo/build/web/icons/info.icon.svg',
123
+ InfoSelected: '@telus-uds/palette-koodo/build/web/icons/info-selected.icon.svg',
124
+ Refresh: '@telus-uds/palette-koodo/build/web/icons/refresh.icon.svg',
125
+ Kebab: '@telus-uds/palette-koodo/build/web/icons/kebab.icon.svg',
126
+ EyeOpened: '@telus-uds/palette-koodo/build/web/icons/eye-opened.icon.svg',
127
+ EyeClosed: '@telus-uds/palette-koodo/build/web/icons/eye-closed.icon.svg'
128
+ }
129
+ }
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "@telus-uds/palette-koodo",
3
+ "version": "0.1.0-prerelease.0",
4
+ "description": "Koodo palette",
5
+ "keywords": [
6
+ "koodo"
7
+ ],
8
+ "author": "TELUS Digital",
9
+ "homepage": "https://github.com/telus/universal-design-system#readme",
10
+ "license": "ISC",
11
+ "main": "build/rn/palette.js",
12
+ "module": "build/rn/palette.mjs",
13
+ "files": [
14
+ "build/"
15
+ ],
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/telus/universal-design-system.git"
19
+ },
20
+ "scripts": {
21
+ "build": "system-tokens-build-palette",
22
+ "dev": "nodemon -w palette.json -x 'yarn build'",
23
+ "release": "standard-version"
24
+ },
25
+ "bugs": {
26
+ "url": "https://github.com/telus/universal-design-system/issues"
27
+ },
28
+ "devDependencies": {
29
+ "@telus-uds/system-tokens": "^0.0.1"
30
+ },
31
+ "gitHead": "a4930bde09eae51c0c77e78c8fd1bdeb918f5bd3"
32
+ }