@telia/teddy 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/LICENSE +661 -0
  2. package/README.md +82 -0
  3. package/dist/assets/button.css +1 -0
  4. package/dist/assets/f2a2f391a886d395.svg +284 -0
  5. package/dist/assets/field-error-text.css +1 -0
  6. package/dist/assets/helper-text.css +1 -0
  7. package/dist/assets/icon.css +1 -0
  8. package/dist/assets/input.css +1 -0
  9. package/dist/assets/label.css +1 -0
  10. package/dist/assets/main.css +1 -0
  11. package/dist/assets/spinner.css +1 -0
  12. package/dist/assets/text-field.css +1 -0
  13. package/dist/assets/text.css +1 -0
  14. package/dist/clsx-DB4S2d7J.js +22 -0
  15. package/dist/components/button/button.d.ts +24 -0
  16. package/dist/components/button/button.js +95 -0
  17. package/dist/components/button/index.d.ts +2 -0
  18. package/dist/components/button/index.js +4 -0
  19. package/dist/components/field-error-text/field-error-text.d.ts +8 -0
  20. package/dist/components/field-error-text/field-error-text.js +28 -0
  21. package/dist/components/field-error-text/index.d.ts +2 -0
  22. package/dist/components/field-error-text/index.js +4 -0
  23. package/dist/components/helper-text/helper-text.d.ts +5 -0
  24. package/dist/components/helper-text/helper-text.js +20 -0
  25. package/dist/components/helper-text/index.d.ts +2 -0
  26. package/dist/components/helper-text/index.js +4 -0
  27. package/dist/components/icon/icon.d.ts +10 -0
  28. package/dist/components/icon/icon.js +27 -0
  29. package/dist/components/icon/index.d.ts +4 -0
  30. package/dist/components/icon/index.js +6 -0
  31. package/dist/components/index.d.ts +9 -0
  32. package/dist/components/index.js +23 -0
  33. package/dist/components/input/index.d.ts +2 -0
  34. package/dist/components/input/index.js +5 -0
  35. package/dist/components/input/input.d.ts +53 -0
  36. package/dist/components/input/input.js +82 -0
  37. package/dist/components/label/index.d.ts +2 -0
  38. package/dist/components/label/index.js +4 -0
  39. package/dist/components/label/label.d.ts +9 -0
  40. package/dist/components/label/label.js +61 -0
  41. package/dist/components/spinner/index.d.ts +1 -0
  42. package/dist/components/spinner/index.js +4 -0
  43. package/dist/components/spinner/spinner.d.ts +26 -0
  44. package/dist/components/spinner/spinner.js +50 -0
  45. package/dist/components/text/index.d.ts +2 -0
  46. package/dist/components/text/index.js +4 -0
  47. package/dist/components/text/text.d.ts +33 -0
  48. package/dist/components/text/text.js +51 -0
  49. package/dist/components/text-field/index.d.ts +2 -0
  50. package/dist/components/text-field/index.js +4 -0
  51. package/dist/components/text-field/text-field.d.ts +101 -0
  52. package/dist/components/text-field/text-field.js +141 -0
  53. package/dist/icons/name.d.js +1 -0
  54. package/dist/icons/name.d.ts +2 -0
  55. package/dist/icons/name.js +283 -0
  56. package/dist/index-TI1xsy6a.js +70 -0
  57. package/dist/main.d.ts +2 -0
  58. package/dist/main.js +38 -0
  59. package/dist/teams/business/index.d.ts +0 -0
  60. package/dist/teams/business/index.js +1 -0
  61. package/dist/teams/index.d.ts +0 -0
  62. package/dist/teams/index.js +1 -0
  63. package/dist/teams/min-side/index.d.ts +0 -0
  64. package/dist/teams/min-side/index.js +1 -0
  65. package/dist/teams/webshop/index.d.ts +0 -0
  66. package/dist/teams/webshop/index.js +1 -0
  67. package/dist/tokens/border/variables.d.ts +9 -0
  68. package/dist/tokens/border/variables.js +12 -0
  69. package/dist/tokens/breakpoint/variables.d.ts +4 -0
  70. package/dist/tokens/breakpoint/variables.js +7 -0
  71. package/dist/tokens/color/variables.d.ts +226 -0
  72. package/dist/tokens/color/variables.js +229 -0
  73. package/dist/tokens/index.d.ts +7 -0
  74. package/dist/tokens/index.js +16 -0
  75. package/dist/tokens/motion/variables.d.ts +11 -0
  76. package/dist/tokens/motion/variables.js +14 -0
  77. package/dist/tokens/shadow/variables.d.ts +4 -0
  78. package/dist/tokens/shadow/variables.js +7 -0
  79. package/dist/tokens/spacing/variables.d.ts +23 -0
  80. package/dist/tokens/spacing/variables.js +26 -0
  81. package/dist/tokens/typography/variables.d.ts +24 -0
  82. package/dist/tokens/typography/variables.js +27 -0
  83. package/dist/utils/action.d.ts +36 -0
  84. package/dist/utils/action.js +18 -0
  85. package/dist/variables-BKiPmtHY.js +458 -0
  86. package/dist/variables-BkY5b0io.js +14 -0
  87. package/dist/variables-Bq0YUbLS.js +14 -0
  88. package/dist/variables-CDK515QX.js +52 -0
  89. package/dist/variables-CMRTN8qo.js +28 -0
  90. package/dist/variables-Dmoh9YtD.js +54 -0
  91. package/dist/variables-IczXZ5CN.js +24 -0
  92. package/dist/vite-env.d.js +1 -0
  93. package/package.json +112 -0
@@ -0,0 +1,226 @@
1
+ export declare const teddyColorPurple50 = "#faf0ff";
2
+ export declare const teddyColorPurple100 = "#f5e0ff";
3
+ export declare const teddyColorPurple200 = "#e4b6fb";
4
+ export declare const teddyColorPurple300 = "#d58df9";
5
+ export declare const teddyColorPurple400 = "#c461f7";
6
+ export declare const teddyColorPurple500 = "#b12df4";
7
+ export declare const teddyColorPurple550 = "#990ae3";
8
+ export declare const teddyColorPurple600 = "#8c07d0";
9
+ export declare const teddyColorPurple700 = "#6d02a3";
10
+ export declare const teddyColorPurple800 = "#4e0174";
11
+ export declare const teddyColorPurple900 = "#29003e";
12
+ export declare const teddyColorPurple950 = "#1f002e";
13
+ export declare const teddyColorBeige50 = "#f9f1ec";
14
+ export declare const teddyColorBeige100 = "#ede1d8";
15
+ export declare const teddyColorBeige200 = "#d7c3b5";
16
+ export declare const teddyColorBeige300 = "#bba494";
17
+ export declare const teddyColorBeige400 = "#a08877";
18
+ export declare const teddyColorBeige500 = "#807268";
19
+ export declare const teddyColorBeige600 = "#665e58";
20
+ export declare const teddyColorBeige700 = "#4f4741";
21
+ export declare const teddyColorBeige800 = "#3b332d";
22
+ export declare const teddyColorBeige900 = "#241c16";
23
+ export declare const teddyColorBeige950 = "#170f09";
24
+ export declare const teddyColorTeal50 = "#edf5f5";
25
+ export declare const teddyColorTeal100 = "#d5eae9";
26
+ export declare const teddyColorTeal200 = "#a1cfcd";
27
+ export declare const teddyColorTeal300 = "#6eb5b2";
28
+ export declare const teddyColorTeal400 = "#3a9b96";
29
+ export declare const teddyColorTeal500 = "#00847e";
30
+ export declare const teddyColorTeal600 = "#006c67";
31
+ export declare const teddyColorTeal700 = "#02534f";
32
+ export declare const teddyColorTeal800 = "#063c39";
33
+ export declare const teddyColorTeal900 = "#032220";
34
+ export declare const teddyColorTeal950 = "#011413";
35
+ export declare const teddyColorGray50 = "#f3f3f8";
36
+ export declare const teddyColorGray100 = "#e5e5eb";
37
+ export declare const teddyColorGray150 = "#d6d6dd";
38
+ export declare const teddyColorGray200 = "#c6c6cd";
39
+ export declare const teddyColorGray300 = "#aaaab0";
40
+ export declare const teddyColorGray400 = "#8d8d94";
41
+ export declare const teddyColorGray500 = "#757579";
42
+ export declare const teddyColorGray600 = "#5f5f63";
43
+ export declare const teddyColorGray700 = "#4a4a4d";
44
+ export declare const teddyColorGray800 = "#353537";
45
+ export declare const teddyColorGray850 = "#2a2a2c";
46
+ export declare const teddyColorGray900 = "#1e1e20";
47
+ export declare const teddyColorGray950 = "#111111";
48
+ export declare const teddyColorGreen50 = "#e1f9ec";
49
+ export declare const teddyColorGreen100 = "#c5efd9";
50
+ export declare const teddyColorGreen200 = "#79d9a7";
51
+ export declare const teddyColorGreen300 = "#3dbf7c";
52
+ export declare const teddyColorGreen400 = "#1fa15e";
53
+ export declare const teddyColorGreen500 = "#018842";
54
+ export declare const teddyColorGreen600 = "#017037";
55
+ export declare const teddyColorGreen700 = "#02562b";
56
+ export declare const teddyColorGreen800 = "#003e1e";
57
+ export declare const teddyColorGreen900 = "#002411";
58
+ export declare const teddyColorGreen950 = "#00150a";
59
+ export declare const teddyColorRed50 = "#fff0f5";
60
+ export declare const teddyColorRed100 = "#ffdde8";
61
+ export declare const teddyColorRed200 = "#ffafc9";
62
+ export declare const teddyColorRed300 = "#ff80ab";
63
+ export declare const teddyColorRed400 = "#fb4885";
64
+ export declare const teddyColorRed500 = "#e4175c";
65
+ export declare const teddyColorRed600 = "#c00543";
66
+ export declare const teddyColorRed700 = "#980233";
67
+ export declare const teddyColorRed800 = "#700025";
68
+ export declare const teddyColorRed900 = "#440016";
69
+ export declare const teddyColorRed950 = "#2c000e";
70
+ export declare const teddyColorOrange50 = "#fff2de";
71
+ export declare const teddyColorOrange100 = "#ffe1b3";
72
+ export declare const teddyColorOrange200 = "#f9bb5b";
73
+ export declare const teddyColorOrange300 = "#f39200";
74
+ export declare const teddyColorOrange400 = "#cc7a00";
75
+ export declare const teddyColorOrange500 = "#a86602";
76
+ export declare const teddyColorOrange600 = "#8b5301";
77
+ export declare const teddyColorOrange700 = "#6a4102";
78
+ export declare const teddyColorOrange800 = "#4c2f03";
79
+ export declare const teddyColorOrange900 = "#2b1b03";
80
+ export declare const teddyColorOrange950 = "#1a0f00";
81
+ export declare const teddyColorBlue50 = "#e8f6ff";
82
+ export declare const teddyColorBlue100 = "#caeaff";
83
+ export declare const teddyColorBlue200 = "#91cdf4";
84
+ export declare const teddyColorBlue300 = "#62b2e7";
85
+ export declare const teddyColorBlue400 = "#3694d3";
86
+ export declare const teddyColorBlue500 = "#0078cb";
87
+ export declare const teddyColorBlue600 = "#0063a6";
88
+ export declare const teddyColorBlue700 = "#014d80";
89
+ export declare const teddyColorBlue800 = "#03385b";
90
+ export declare const teddyColorBlue900 = "#002036";
91
+ export declare const teddyColorBlue950 = "#011320";
92
+ export declare const teddyColorTransparentBlack50 = "rgba(0, 0, 0, 0.05)";
93
+ export declare const teddyColorTransparentBlack100 = "rgba(0, 0, 0, 0.1)";
94
+ export declare const teddyColorTransparentBlack150 = "rgba(0, 0, 0, 0.16)";
95
+ export declare const teddyColorTransparentBlack200 = "rgba(0, 0, 0, 0.22)";
96
+ export declare const teddyColorTransparentBlack300 = "rgba(0, 0, 0, 0.33)";
97
+ export declare const teddyColorTransparentBlack400 = "rgba(0, 0, 0, 0.44)";
98
+ export declare const teddyColorTransparentBlack500 = "rgba(0, 0, 0, 0.54)";
99
+ export declare const teddyColorTransparentBlack600 = "rgba(0, 0, 0, 0.62)";
100
+ export declare const teddyColorTransparentBlack700 = "rgba(0, 0, 0, 0.71)";
101
+ export declare const teddyColorTransparentBlack800 = "rgba(0, 0, 0, 0.8)";
102
+ export declare const teddyColorTransparentBlack850 = "rgba(0, 0, 0, 0.84)";
103
+ export declare const teddyColorTransparentBlack900 = "rgba(0, 0, 0, 0.88)";
104
+ export declare const teddyColorTransparentBlack950 = "rgba(0, 0, 0, 0.93)";
105
+ export declare const teddyColorTransparentWhite50 = "rgba(255, 255, 255, 0.07)";
106
+ export declare const teddyColorTransparentWhite100 = "rgba(255, 255, 255, 0.11)";
107
+ export declare const teddyColorTransparentWhite150 = "rgba(255, 255, 255, 0.16)";
108
+ export declare const teddyColorTransparentWhite200 = "rgba(255, 255, 255, 0.21)";
109
+ export declare const teddyColorTransparentWhite300 = "rgba(255, 255, 255, 0.29)";
110
+ export declare const teddyColorTransparentWhite400 = "rgba(255, 255, 255, 0.37)";
111
+ export declare const teddyColorTransparentWhite500 = "rgba(255, 255, 255, 0.46)";
112
+ export declare const teddyColorTransparentWhite600 = "rgba(255, 255, 255, 0.55)";
113
+ export declare const teddyColorTransparentWhite700 = "rgba(255, 255, 255, 0.66)";
114
+ export declare const teddyColorTransparentWhite800 = "rgba(255, 255, 255, 0.79)";
115
+ export declare const teddyColorTransparentWhite850 = "rgba(255, 255, 255, 0.84)";
116
+ export declare const teddyColorTransparentWhite900 = "rgba(255, 255, 255, 0.89)";
117
+ export declare const teddyColorTransparentWhite950 = "rgba(255, 255, 255, 0.95)";
118
+ export declare const teddyColorFunctionalBlack = "#000000";
119
+ export declare const teddyColorFunctionalWhite = "#ffffff";
120
+ export declare const teddyColorFunctionalTransparent = "rgba(255, 255, 255, 0)";
121
+ export declare const teddyColorBrandDeepPurple = "#29003e";
122
+ export declare const teddyColorBrandCorePurple = "#990ae3";
123
+ export declare const teddyColorBrandLightPurple = "#f5e0ff";
124
+ export declare const teddyColorBrandDeepBeige = "#4f4741";
125
+ export declare const teddyColorBrandBeige = "#ede1d8";
126
+ export declare const teddyColorBrandLightBeige = "#f9f1ec";
127
+ export declare const teddyColorBrandOffBlack = "#1e1e20";
128
+ export declare const teddyColorBrandWhite = "#ffffff";
129
+ export declare const teddyColorTextDefault = "rgba(0, 0, 0, 0.84)";
130
+ export declare const teddyColorTextMedium = "rgba(0, 0, 0, 0.62)";
131
+ export declare const teddyColorTextWeak = "rgba(0, 0, 0, 0.44)";
132
+ export declare const teddyColorTextDefaultNegative = "rgba(255, 255, 255, 0.84)";
133
+ export declare const teddyColorTextMediumNegative = "rgba(255, 255, 255, 0.55)";
134
+ export declare const teddyColorTextWeakNegative = "rgba(255, 255, 255, 0.37)";
135
+ export declare const teddyColorTextInteractivePrimary = "#6d02a3";
136
+ export declare const teddyColorTextInteractivePrimaryHover = "#4e0174";
137
+ export declare const teddyColorTextInteractivePrimaryActive = "#29003e";
138
+ export declare const teddyColorTextInteractiveOnPrimary = "#ffffff";
139
+ export declare const teddyColorTextInteractiveOnPrimaryNegative = "#4e0174";
140
+ export declare const teddyColorTextInteractivePrimaryNegative = "#f5e0ff";
141
+ export declare const teddyColorTextInteractivePrimaryNegativeHover = "#e4b6fb";
142
+ export declare const teddyColorTextInteractivePrimaryNegativeActive = "#e4b6fb";
143
+ export declare const teddyColorTextInteractiveOnExpressive = "#ffffff";
144
+ export declare const teddyColorTextInteractiveOnExpressiveNegative = "#ffffff";
145
+ export declare const teddyColorTextInteractiveOnExpressiveNegativeHover = "#29003e";
146
+ export declare const teddyColorTextInteractiveOnExpressiveNegativeActive = "#29003e";
147
+ export declare const teddyColorTextInteractiveOnDestructive = "#ffffff";
148
+ export declare const teddyColorTextInteractiveSelected = "#990ae3";
149
+ export declare const teddyColorTextStatusDiscount = "#990ae3";
150
+ export declare const teddyColorTextStatusErrorStrong = "#980233";
151
+ export declare const teddyColorTextStatusErrorMedium = "#e4175c";
152
+ export declare const teddyColorTextStatusSuccessStrong = "#02562b";
153
+ export declare const teddyColorTextStatusSuccessMedium = "#018842";
154
+ export declare const teddyColorTextStatusWarningStrong = "#6a4102";
155
+ export declare const teddyColorTextStatusWarningMedium = "#a86602";
156
+ export declare const teddyColorTextStatusInfoStrong = "#014d80";
157
+ export declare const teddyColorTextStatusInfoMedium = "#0078cb";
158
+ export declare const teddyColorTextStatusNeutral = "rgba(0, 0, 0, 0.71)";
159
+ export declare const teddyColorTextStatusSpecial = "#4e0174";
160
+ export declare const teddyColorTextStatusAttention = "#ffffff";
161
+ export declare const teddyColorTextToneOnTonePrimary = "#f5e0ff";
162
+ export declare const teddyColorTextToneOnToneSecondary = "#29003e";
163
+ export declare const teddyColorTextToneOnToneTertiary = "#4f4741";
164
+ export declare const teddyColorBackgroundPrimary = "#ffffff";
165
+ export declare const teddyColorBackgroundSecondary = "#f3f3f8";
166
+ export declare const teddyColorBackgroundInteractivePrimary = "#4e0174";
167
+ export declare const teddyColorBackgroundInteractivePrimaryHover = "#6d02a3";
168
+ export declare const teddyColorBackgroundInteractivePrimaryActive = "#8c07d0";
169
+ export declare const teddyColorBackgroundInteractivePrimaryNegative = "#f5e0ff";
170
+ export declare const teddyColorBackgroundInteractivePrimaryNegativeHover = "#e4b6fb";
171
+ export declare const teddyColorBackgroundInteractivePrimaryNegativeActive = "#d58df9";
172
+ export declare const teddyColorBackgroundInteractiveExpressive = "#990ae3";
173
+ export declare const teddyColorBackgroundInteractiveExpressiveHover = "#6d02a3";
174
+ export declare const teddyColorBackgroundInteractiveExpressiveActive = "#4e0174";
175
+ export declare const teddyColorBackgroundInteractiveExpressiveNegative = "#990ae3";
176
+ export declare const teddyColorBackgroundInteractiveExpressiveNegativeHover = "#c461f7";
177
+ export declare const teddyColorBackgroundInteractiveExpressiveNegativeActive = "#d58df9";
178
+ export declare const teddyColorBackgroundInteractiveDisabled = "rgba(0, 0, 0, 0.1)";
179
+ export declare const teddyColorBackgroundInteractiveDisabledNegative = "rgba(255, 255, 255, 0.11)";
180
+ export declare const teddyColorBackgroundInteractiveTransparent = "rgba(255, 255, 255, 0)";
181
+ export declare const teddyColorBackgroundInteractiveTransparentHover = "#f5e0ff";
182
+ export declare const teddyColorBackgroundInteractiveTransparentNegativeHover = "#4e0174";
183
+ export declare const teddyColorBackgroundInteractiveTransparentActive = "#e4b6fb";
184
+ export declare const teddyColorBackgroundInteractiveTransparentNegativeActive = "#6d02a3";
185
+ export declare const teddyColorBackgroundInteractiveInactive = "rgba(0, 0, 0, 0.05)";
186
+ export declare const teddyColorBackgroundInteractiveInactiveNegative = "rgba(255, 255, 255, 0.16)";
187
+ export declare const teddyColorBackgroundInteractiveReadOnly = "rgba(0, 0, 0, 0.05)";
188
+ export declare const teddyColorBackgroundInteractiveDestructive = "#e4175c";
189
+ export declare const teddyColorBackgroundInteractiveDestructiveHover = "#c00543";
190
+ export declare const teddyColorBackgroundInteractiveDestructiveActive = "#980233";
191
+ export declare const teddyColorBackgroundStatusInfo = "#e8f6ff";
192
+ export declare const teddyColorBackgroundStatusInfoStrong = "#caeaff";
193
+ export declare const teddyColorBackgroundStatusSuccess = "#e1f9ec";
194
+ export declare const teddyColorBackgroundStatusSuccessStrong = "#c5efd9";
195
+ export declare const teddyColorBackgroundStatusError = "#fff0f5";
196
+ export declare const teddyColorBackgroundStatusErrorStrong = "#ffdde8";
197
+ export declare const teddyColorBackgroundStatusWarning = "#fff2de";
198
+ export declare const teddyColorBackgroundStatusWarningStrong = "#ffe1b3";
199
+ export declare const teddyColorBackgroundStatusNeutral = "#e5e5eb";
200
+ export declare const teddyColorBackgroundStatusSpecial = "#f5e0ff";
201
+ export declare const teddyColorBackgroundStatusAttention = "#6d02a3";
202
+ export declare const teddyColorBackgroundToneOnTonePrimary = "#29003e";
203
+ export declare const teddyColorBackgroundToneOnToneSecondary = "#f5e0ff";
204
+ export declare const teddyColorBackgroundToneOnToneTertiary = "#ede1d8";
205
+ export declare const teddyColorBackgroundToneOnToneQuaternary = "#f9f1ec";
206
+ export declare const teddyColorBorderMedium = "rgba(0, 0, 0, 0.33)";
207
+ export declare const teddyColorBorderMediumNegative = "rgba(255, 255, 255, 0.29)";
208
+ export declare const teddyColorBorderStrong = "rgba(0, 0, 0, 0.54)";
209
+ export declare const teddyColorBorderStrongNegative = "rgba(255, 255, 255, 0.46)";
210
+ export declare const teddyColorBorderWeak = "rgba(0, 0, 0, 0.16)";
211
+ export declare const teddyColorBorderWeakNegative = "rgba(255, 255, 255, 0.16)";
212
+ export declare const teddyColorBorderInteractiveFocus = "#0078cb";
213
+ export declare const teddyColorBorderInteractivePrimary = "#6d02a3";
214
+ export declare const teddyColorBorderInteractivePrimaryNegative = "#f5e0ff";
215
+ export declare const teddyColorBorderInteractivePrimaryHover = "#4e0174";
216
+ export declare const teddyColorBorderInteractivePrimaryActive = "#29003e";
217
+ export declare const teddyColorBorderInteractivePrimaryNegativeHover = "#e4b6fb";
218
+ export declare const teddyColorBorderInteractivePrimaryNegativeActive = "#e4b6fb";
219
+ export declare const teddyColorBorderInteractiveSelected = "#990ae3";
220
+ export declare const teddyColorBorderInteractiveSubtle = "rgba(0, 0, 0, 0.33)";
221
+ export declare const teddyColorBorderInteractiveSubtleHover = "#4e0174";
222
+ export declare const teddyColorBorderStatusError = "#e4175c";
223
+ export declare const teddyColorBorderStatusWarning = "#cc7a00";
224
+ export declare const teddyColorBorderStatusInfo = "#0078cb";
225
+ export declare const teddyColorBorderStatusSuccess = "#018842";
226
+ export declare const teddyColorOverlayDefault = "rgba(0, 0, 0, 0.33)";
@@ -0,0 +1,229 @@
1
+ import { c6 as r, c8 as o, c7 as d, bY as t, bZ as s, bS as l, bU as y, bT as n, bV as C, bX as c, bW as i, c3 as u, c4 as v, bM as g, bO as B, bN as T, bP as b, bR as p, bQ as k, c5 as I, b_ as S, c1 as x, b$ as P, c2 as m, c0 as N, bK as O, bL as G, cj as W, cd as h, ce as E, c9 as A, ca as H, ch as D, ci as f, cb as R, cc as M, cf as F, cg as L, ck as j, cn as q, cl as w, cm as z, m as Q, n as J, o as K, p as U, l as V, q as X, r as Y, s as Z, u as _, w as $, x as ee, as as ae, at as re, au as oe, av as de, ar as te, aw as se, ax as le, ay as ye, az as ne, aA as Ce, aB as ce, cu as ie, cv as ue, cy as ve, cx as ge, cw as Be, cA as Te, cz as be, cB as pe, cC as ke, cD as Ie, co as Se, cp as xe, cE as Pe, cG as me, cH as Ne, cF as Oe, cq as Ge, cr as We, cs as he, ct as Ee, b7 as Ae, b4 as He, b6 as De, b3 as fe, b8 as Re, b5 as Me, b9 as Fe, ba as Le, b0 as je, b2 as qe, b1 as we, K as ze, L as Qe, M as Je, N as Ke, O as Ue, J as Ve, P as Xe, Q as Ye, R as Ze, S as _e, T as $e, U as ea, V as aa, X as ra, Y as oa, Z as da, _ as ta, W as sa, $ as la, a0 as ya, a1 as na, a2 as Ca, a3 as ca, a4 as ia, ah as ua, ai as va, aj as ga, ak as Ba, ag as Ta, al as ba, am as pa, an as ka, ao as Ia, ap as Sa, aq as xa, cI as Pa, a as ma, b as Na, c as Oa, d as Ga, t as Wa, e as ha, f as Ea, g as Aa, h as Ha, i as Da, j as fa, k as Ra, a6 as Ma, a7 as Fa, a8 as La, a9 as ja, a5 as qa, aa as wa, ab as za, ac as Qa, ad as Ja, ae as Ka, af as Ua, z as Va, A as Xa, B as Ya, C as Za, y as _a, D as $a, E as er, F as ar, G as rr, H as or, I as dr, bb as tr, be as sr, bt as lr, bp as yr, bq as nr, bs as Cr, br as cr, bk as ir, bl as ur, bh as vr, bj as gr, bi as Br, bm as Tr, bo as br, bn as pr, bu as kr, bc as Ir, bf as Sr, bG as xr, bv as Pr, bx as mr, bw as Nr, bD as Or, bC as Gr, bE as Wr, bF as hr, bz as Er, by as Ar, bB as Hr, bA as Dr, bH as fr, bI as Rr, bJ as Mr, bd as Fr, bg as Lr, aD as jr, aE as qr, aF as wr, aG as zr, aH as Qr, aC as Jr, aI as Kr, aJ as Ur, aK as Vr, aL as Xr, aM as Yr, aN as Zr, aO as _r, aQ as $r, aR as eo, aS as ao, aT as ro, aU as oo, aP as to, aV as so, aW as lo, aX as yo, aY as no, aZ as Co, a_ as co, a$ as io } from "../../variables-BKiPmtHY.js";
2
+ export {
3
+ r as teddyColorBackgroundInteractiveDestructive,
4
+ o as teddyColorBackgroundInteractiveDestructiveActive,
5
+ d as teddyColorBackgroundInteractiveDestructiveHover,
6
+ t as teddyColorBackgroundInteractiveDisabled,
7
+ s as teddyColorBackgroundInteractiveDisabledNegative,
8
+ l as teddyColorBackgroundInteractiveExpressive,
9
+ y as teddyColorBackgroundInteractiveExpressiveActive,
10
+ n as teddyColorBackgroundInteractiveExpressiveHover,
11
+ C as teddyColorBackgroundInteractiveExpressiveNegative,
12
+ c as teddyColorBackgroundInteractiveExpressiveNegativeActive,
13
+ i as teddyColorBackgroundInteractiveExpressiveNegativeHover,
14
+ u as teddyColorBackgroundInteractiveInactive,
15
+ v as teddyColorBackgroundInteractiveInactiveNegative,
16
+ g as teddyColorBackgroundInteractivePrimary,
17
+ B as teddyColorBackgroundInteractivePrimaryActive,
18
+ T as teddyColorBackgroundInteractivePrimaryHover,
19
+ b as teddyColorBackgroundInteractivePrimaryNegative,
20
+ p as teddyColorBackgroundInteractivePrimaryNegativeActive,
21
+ k as teddyColorBackgroundInteractivePrimaryNegativeHover,
22
+ I as teddyColorBackgroundInteractiveReadOnly,
23
+ S as teddyColorBackgroundInteractiveTransparent,
24
+ x as teddyColorBackgroundInteractiveTransparentActive,
25
+ P as teddyColorBackgroundInteractiveTransparentHover,
26
+ m as teddyColorBackgroundInteractiveTransparentNegativeActive,
27
+ N as teddyColorBackgroundInteractiveTransparentNegativeHover,
28
+ O as teddyColorBackgroundPrimary,
29
+ G as teddyColorBackgroundSecondary,
30
+ W as teddyColorBackgroundStatusAttention,
31
+ h as teddyColorBackgroundStatusError,
32
+ E as teddyColorBackgroundStatusErrorStrong,
33
+ A as teddyColorBackgroundStatusInfo,
34
+ H as teddyColorBackgroundStatusInfoStrong,
35
+ D as teddyColorBackgroundStatusNeutral,
36
+ f as teddyColorBackgroundStatusSpecial,
37
+ R as teddyColorBackgroundStatusSuccess,
38
+ M as teddyColorBackgroundStatusSuccessStrong,
39
+ F as teddyColorBackgroundStatusWarning,
40
+ L as teddyColorBackgroundStatusWarningStrong,
41
+ j as teddyColorBackgroundToneOnTonePrimary,
42
+ q as teddyColorBackgroundToneOnToneQuaternary,
43
+ w as teddyColorBackgroundToneOnToneSecondary,
44
+ z as teddyColorBackgroundToneOnToneTertiary,
45
+ Q as teddyColorBeige100,
46
+ J as teddyColorBeige200,
47
+ K as teddyColorBeige300,
48
+ U as teddyColorBeige400,
49
+ V as teddyColorBeige50,
50
+ X as teddyColorBeige500,
51
+ Y as teddyColorBeige600,
52
+ Z as teddyColorBeige700,
53
+ _ as teddyColorBeige800,
54
+ $ as teddyColorBeige900,
55
+ ee as teddyColorBeige950,
56
+ ae as teddyColorBlue100,
57
+ re as teddyColorBlue200,
58
+ oe as teddyColorBlue300,
59
+ de as teddyColorBlue400,
60
+ te as teddyColorBlue50,
61
+ se as teddyColorBlue500,
62
+ le as teddyColorBlue600,
63
+ ye as teddyColorBlue700,
64
+ ne as teddyColorBlue800,
65
+ Ce as teddyColorBlue900,
66
+ ce as teddyColorBlue950,
67
+ ie as teddyColorBorderInteractiveFocus,
68
+ ue as teddyColorBorderInteractivePrimary,
69
+ ve as teddyColorBorderInteractivePrimaryActive,
70
+ ge as teddyColorBorderInteractivePrimaryHover,
71
+ Be as teddyColorBorderInteractivePrimaryNegative,
72
+ Te as teddyColorBorderInteractivePrimaryNegativeActive,
73
+ be as teddyColorBorderInteractivePrimaryNegativeHover,
74
+ pe as teddyColorBorderInteractiveSelected,
75
+ ke as teddyColorBorderInteractiveSubtle,
76
+ Ie as teddyColorBorderInteractiveSubtleHover,
77
+ Se as teddyColorBorderMedium,
78
+ xe as teddyColorBorderMediumNegative,
79
+ Pe as teddyColorBorderStatusError,
80
+ me as teddyColorBorderStatusInfo,
81
+ Ne as teddyColorBorderStatusSuccess,
82
+ Oe as teddyColorBorderStatusWarning,
83
+ Ge as teddyColorBorderStrong,
84
+ We as teddyColorBorderStrongNegative,
85
+ he as teddyColorBorderWeak,
86
+ Ee as teddyColorBorderWeakNegative,
87
+ Ae as teddyColorBrandBeige,
88
+ He as teddyColorBrandCorePurple,
89
+ De as teddyColorBrandDeepBeige,
90
+ fe as teddyColorBrandDeepPurple,
91
+ Re as teddyColorBrandLightBeige,
92
+ Me as teddyColorBrandLightPurple,
93
+ Fe as teddyColorBrandOffBlack,
94
+ Le as teddyColorBrandWhite,
95
+ je as teddyColorFunctionalBlack,
96
+ qe as teddyColorFunctionalTransparent,
97
+ we as teddyColorFunctionalWhite,
98
+ ze as teddyColorGray100,
99
+ Qe as teddyColorGray150,
100
+ Je as teddyColorGray200,
101
+ Ke as teddyColorGray300,
102
+ Ue as teddyColorGray400,
103
+ Ve as teddyColorGray50,
104
+ Xe as teddyColorGray500,
105
+ Ye as teddyColorGray600,
106
+ Ze as teddyColorGray700,
107
+ _e as teddyColorGray800,
108
+ $e as teddyColorGray850,
109
+ ea as teddyColorGray900,
110
+ aa as teddyColorGray950,
111
+ ra as teddyColorGreen100,
112
+ oa as teddyColorGreen200,
113
+ da as teddyColorGreen300,
114
+ ta as teddyColorGreen400,
115
+ sa as teddyColorGreen50,
116
+ la as teddyColorGreen500,
117
+ ya as teddyColorGreen600,
118
+ na as teddyColorGreen700,
119
+ Ca as teddyColorGreen800,
120
+ ca as teddyColorGreen900,
121
+ ia as teddyColorGreen950,
122
+ ua as teddyColorOrange100,
123
+ va as teddyColorOrange200,
124
+ ga as teddyColorOrange300,
125
+ Ba as teddyColorOrange400,
126
+ Ta as teddyColorOrange50,
127
+ ba as teddyColorOrange500,
128
+ pa as teddyColorOrange600,
129
+ ka as teddyColorOrange700,
130
+ Ia as teddyColorOrange800,
131
+ Sa as teddyColorOrange900,
132
+ xa as teddyColorOrange950,
133
+ Pa as teddyColorOverlayDefault,
134
+ ma as teddyColorPurple100,
135
+ Na as teddyColorPurple200,
136
+ Oa as teddyColorPurple300,
137
+ Ga as teddyColorPurple400,
138
+ Wa as teddyColorPurple50,
139
+ ha as teddyColorPurple500,
140
+ Ea as teddyColorPurple550,
141
+ Aa as teddyColorPurple600,
142
+ Ha as teddyColorPurple700,
143
+ Da as teddyColorPurple800,
144
+ fa as teddyColorPurple900,
145
+ Ra as teddyColorPurple950,
146
+ Ma as teddyColorRed100,
147
+ Fa as teddyColorRed200,
148
+ La as teddyColorRed300,
149
+ ja as teddyColorRed400,
150
+ qa as teddyColorRed50,
151
+ wa as teddyColorRed500,
152
+ za as teddyColorRed600,
153
+ Qa as teddyColorRed700,
154
+ Ja as teddyColorRed800,
155
+ Ka as teddyColorRed900,
156
+ Ua as teddyColorRed950,
157
+ Va as teddyColorTeal100,
158
+ Xa as teddyColorTeal200,
159
+ Ya as teddyColorTeal300,
160
+ Za as teddyColorTeal400,
161
+ _a as teddyColorTeal50,
162
+ $a as teddyColorTeal500,
163
+ er as teddyColorTeal600,
164
+ ar as teddyColorTeal700,
165
+ rr as teddyColorTeal800,
166
+ or as teddyColorTeal900,
167
+ dr as teddyColorTeal950,
168
+ tr as teddyColorTextDefault,
169
+ sr as teddyColorTextDefaultNegative,
170
+ lr as teddyColorTextInteractiveOnDestructive,
171
+ yr as teddyColorTextInteractiveOnExpressive,
172
+ nr as teddyColorTextInteractiveOnExpressiveNegative,
173
+ Cr as teddyColorTextInteractiveOnExpressiveNegativeActive,
174
+ cr as teddyColorTextInteractiveOnExpressiveNegativeHover,
175
+ ir as teddyColorTextInteractiveOnPrimary,
176
+ ur as teddyColorTextInteractiveOnPrimaryNegative,
177
+ vr as teddyColorTextInteractivePrimary,
178
+ gr as teddyColorTextInteractivePrimaryActive,
179
+ Br as teddyColorTextInteractivePrimaryHover,
180
+ Tr as teddyColorTextInteractivePrimaryNegative,
181
+ br as teddyColorTextInteractivePrimaryNegativeActive,
182
+ pr as teddyColorTextInteractivePrimaryNegativeHover,
183
+ kr as teddyColorTextInteractiveSelected,
184
+ Ir as teddyColorTextMedium,
185
+ Sr as teddyColorTextMediumNegative,
186
+ xr as teddyColorTextStatusAttention,
187
+ Pr as teddyColorTextStatusDiscount,
188
+ mr as teddyColorTextStatusErrorMedium,
189
+ Nr as teddyColorTextStatusErrorStrong,
190
+ Or as teddyColorTextStatusInfoMedium,
191
+ Gr as teddyColorTextStatusInfoStrong,
192
+ Wr as teddyColorTextStatusNeutral,
193
+ hr as teddyColorTextStatusSpecial,
194
+ Er as teddyColorTextStatusSuccessMedium,
195
+ Ar as teddyColorTextStatusSuccessStrong,
196
+ Hr as teddyColorTextStatusWarningMedium,
197
+ Dr as teddyColorTextStatusWarningStrong,
198
+ fr as teddyColorTextToneOnTonePrimary,
199
+ Rr as teddyColorTextToneOnToneSecondary,
200
+ Mr as teddyColorTextToneOnToneTertiary,
201
+ Fr as teddyColorTextWeak,
202
+ Lr as teddyColorTextWeakNegative,
203
+ jr as teddyColorTransparentBlack100,
204
+ qr as teddyColorTransparentBlack150,
205
+ wr as teddyColorTransparentBlack200,
206
+ zr as teddyColorTransparentBlack300,
207
+ Qr as teddyColorTransparentBlack400,
208
+ Jr as teddyColorTransparentBlack50,
209
+ Kr as teddyColorTransparentBlack500,
210
+ Ur as teddyColorTransparentBlack600,
211
+ Vr as teddyColorTransparentBlack700,
212
+ Xr as teddyColorTransparentBlack800,
213
+ Yr as teddyColorTransparentBlack850,
214
+ Zr as teddyColorTransparentBlack900,
215
+ _r as teddyColorTransparentBlack950,
216
+ $r as teddyColorTransparentWhite100,
217
+ eo as teddyColorTransparentWhite150,
218
+ ao as teddyColorTransparentWhite200,
219
+ ro as teddyColorTransparentWhite300,
220
+ oo as teddyColorTransparentWhite400,
221
+ to as teddyColorTransparentWhite50,
222
+ so as teddyColorTransparentWhite500,
223
+ lo as teddyColorTransparentWhite600,
224
+ yo as teddyColorTransparentWhite700,
225
+ no as teddyColorTransparentWhite800,
226
+ Co as teddyColorTransparentWhite850,
227
+ co as teddyColorTransparentWhite900,
228
+ io as teddyColorTransparentWhite950
229
+ };
@@ -0,0 +1,7 @@
1
+ export * as border from './border/variables';
2
+ export * as breakpoint from './breakpoint/variables';
3
+ export * as color from './color/variables';
4
+ export * as motion from './motion/variables';
5
+ export * as shadow from './shadow/variables';
6
+ export * as spacing from './spacing/variables';
7
+ export * as typography from './typography/variables';
@@ -0,0 +1,16 @@
1
+ import { v as a } from "../variables-IczXZ5CN.js";
2
+ import { v as t } from "../variables-BkY5b0io.js";
3
+ import { v as s } from "../variables-BKiPmtHY.js";
4
+ import { v as f } from "../variables-CMRTN8qo.js";
5
+ import { v as x } from "../variables-Bq0YUbLS.js";
6
+ import { v as n } from "../variables-CDK515QX.js";
7
+ import { v as c } from "../variables-Dmoh9YtD.js";
8
+ export {
9
+ a as border,
10
+ t as breakpoint,
11
+ s as color,
12
+ f as motion,
13
+ x as shadow,
14
+ n as spacing,
15
+ c as typography
16
+ };
@@ -0,0 +1,11 @@
1
+ export declare const teddyMotionDuration100 = "100ms";
2
+ export declare const teddyMotionDuration150 = "150ms";
3
+ export declare const teddyMotionDuration200 = "200ms";
4
+ export declare const teddyMotionDuration300 = "300ms";
5
+ export declare const teddyMotionDuration400 = "400ms";
6
+ export declare const teddyMotionDuration500 = "500ms";
7
+ export declare const teddyMotionDuration1500 = "1500ms";
8
+ export declare const teddyMotionDuration2000 = "2000ms";
9
+ export declare const teddyMotionEasingEaseIn = "cubic-bezier(0.35, 0.07, 0.88, 0.43)";
10
+ export declare const teddyMotionEasingEaseOut = "cubic-bezier(0.33, 0.9, 0.75, 0.95)";
11
+ export declare const teddyMotionEasingEaseInOut = "cubic-bezier(0.45, 0, 0.52, 0.98)";
@@ -0,0 +1,14 @@
1
+ import { t as a, a as n, f as d, b as i, g as s, c as e, d as y, e as M, h as r, j as u, i as D } from "../../variables-CMRTN8qo.js";
2
+ export {
3
+ a as teddyMotionDuration100,
4
+ n as teddyMotionDuration150,
5
+ d as teddyMotionDuration1500,
6
+ i as teddyMotionDuration200,
7
+ s as teddyMotionDuration2000,
8
+ e as teddyMotionDuration300,
9
+ y as teddyMotionDuration400,
10
+ M as teddyMotionDuration500,
11
+ r as teddyMotionEasingEaseIn,
12
+ u as teddyMotionEasingEaseInOut,
13
+ D as teddyMotionEasingEaseOut
14
+ };
@@ -0,0 +1,4 @@
1
+ export declare const teddyShadowNone = "0rem 0rem 0rem 0rem rgba(0, 0, 0, 0.1)";
2
+ export declare const teddyShadowSm = "0rem 0.0625rem 0.25rem 0rem rgba(0, 0, 0, 0.1)";
3
+ export declare const teddyShadowMd = "0rem 0.25rem 0.75rem 0rem rgba(0, 0, 0, 0.1)";
4
+ export declare const teddyShadowLg = "0rem 0.75rem 1.5rem 0rem rgba(0, 0, 0, 0.1)";
@@ -0,0 +1,7 @@
1
+ import { c as o, b as e, t, a as S } from "../../variables-Bq0YUbLS.js";
2
+ export {
3
+ o as teddyShadowLg,
4
+ e as teddyShadowMd,
5
+ t as teddyShadowNone,
6
+ S as teddyShadowSm
7
+ };
@@ -0,0 +1,23 @@
1
+ export declare const teddySpacing0 = "0rem";
2
+ export declare const teddySpacing10 = "0.0625rem";
3
+ export declare const teddySpacing25 = "0.125rem";
4
+ export declare const teddySpacing50 = "0.25rem";
5
+ export declare const teddySpacing100 = "0.5rem";
6
+ export declare const teddySpacing150 = "0.75rem";
7
+ export declare const teddySpacing200 = "1rem";
8
+ export declare const teddySpacing250 = "1.25rem";
9
+ export declare const teddySpacing300 = "1.5rem";
10
+ export declare const teddySpacing400 = "2rem";
11
+ export declare const teddySpacing600 = "3rem";
12
+ export declare const teddySpacing800 = "4rem";
13
+ export declare const teddySpacing1000 = "5rem";
14
+ export declare const teddySpacing1200 = "6rem";
15
+ export declare const teddySpacing1600 = "8rem";
16
+ export declare const teddySpacingGutterSm = "1rem";
17
+ export declare const teddySpacingGutterMd = "1.5rem";
18
+ export declare const teddySpacingGutterLg = "1.5rem";
19
+ export declare const teddySpacingGutterXl = "1.5rem";
20
+ export declare const teddySpacingPagePaddingSm = "1rem";
21
+ export declare const teddySpacingPagePaddingMd = "1.5rem";
22
+ export declare const teddySpacingPagePaddingLg = "3rem";
23
+ export declare const teddySpacingPagePaddingXl = "3rem";
@@ -0,0 +1,26 @@
1
+ import { t as g, a as e, d as t, l as i, m as n, e as p, n as S, f as c, b as s, g as y, h as P, i as r, c as u, j as m, k as G, q as l, p as o, o as f, r as x, w as L, u as M, s as X, x as b } from "../../variables-CDK515QX.js";
2
+ export {
3
+ g as teddySpacing0,
4
+ e as teddySpacing10,
5
+ t as teddySpacing100,
6
+ i as teddySpacing1000,
7
+ n as teddySpacing1200,
8
+ p as teddySpacing150,
9
+ S as teddySpacing1600,
10
+ c as teddySpacing200,
11
+ s as teddySpacing25,
12
+ y as teddySpacing250,
13
+ P as teddySpacing300,
14
+ r as teddySpacing400,
15
+ u as teddySpacing50,
16
+ m as teddySpacing600,
17
+ G as teddySpacing800,
18
+ l as teddySpacingGutterLg,
19
+ o as teddySpacingGutterMd,
20
+ f as teddySpacingGutterSm,
21
+ x as teddySpacingGutterXl,
22
+ L as teddySpacingPagePaddingLg,
23
+ M as teddySpacingPagePaddingMd,
24
+ X as teddySpacingPagePaddingSm,
25
+ b as teddySpacingPagePaddingXl
26
+ };
@@ -0,0 +1,24 @@
1
+ export declare const teddyTypographyFamilyDefault = "TeliaSans, Helvetica, sans-serif";
2
+ export declare const teddyTypographyFamilyDisplay = "TeliaSansHeading, Helvetica, sans-serif";
3
+ export declare const teddyTypographyWeightNormal = "400";
4
+ export declare const teddyTypographyWeightMedium = "500";
5
+ export declare const teddyTypographyWeightBold = "700";
6
+ export declare const teddyTypographyLineHeightTight = "100%";
7
+ export declare const teddyTypographyLineHeightDefault = "125%";
8
+ export declare const teddyTypographyLineHeightLoose = "150%";
9
+ export declare const teddyTypographyLineHeightLooser = "175%";
10
+ export declare const teddyTypographyScale50 = "0.75rem";
11
+ export declare const teddyTypographyScale75 = "0.875rem";
12
+ export declare const teddyTypographyScale100 = "1rem";
13
+ export declare const teddyTypographyScale150 = "1.125rem";
14
+ export declare const teddyTypographyScale200 = "1.25rem";
15
+ export declare const teddyTypographyScale400 = "1.5rem";
16
+ export declare const teddyTypographyScale500 = "1.75rem";
17
+ export declare const teddyTypographyScale600 = "2rem";
18
+ export declare const teddyTypographyScale650 = "2.25rem";
19
+ export declare const teddyTypographyScale700 = "2.5rem";
20
+ export declare const teddyTypographyScale800 = "3rem";
21
+ export declare const teddyTypographyScale850 = "3.5rem";
22
+ export declare const teddyTypographyScale900 = "4rem";
23
+ export declare const teddyTypographyScale1000 = "5rem";
24
+ export declare const teddyTypographyScale1100 = "6rem";
@@ -0,0 +1,27 @@
1
+ import { t as e, a as d, f as p, g as t, h as g, e as h, k as o, x as r, y as s, l as T, m as l, n as i, i as c, o as S, p as m, q as L, r as n, j as f, s as u, u as H, w as D, d as W, c as x, b as F } from "../../variables-Dmoh9YtD.js";
2
+ export {
3
+ e as teddyTypographyFamilyDefault,
4
+ d as teddyTypographyFamilyDisplay,
5
+ p as teddyTypographyLineHeightDefault,
6
+ t as teddyTypographyLineHeightLoose,
7
+ g as teddyTypographyLineHeightLooser,
8
+ h as teddyTypographyLineHeightTight,
9
+ o as teddyTypographyScale100,
10
+ r as teddyTypographyScale1000,
11
+ s as teddyTypographyScale1100,
12
+ T as teddyTypographyScale150,
13
+ l as teddyTypographyScale200,
14
+ i as teddyTypographyScale400,
15
+ c as teddyTypographyScale50,
16
+ S as teddyTypographyScale500,
17
+ m as teddyTypographyScale600,
18
+ L as teddyTypographyScale650,
19
+ n as teddyTypographyScale700,
20
+ f as teddyTypographyScale75,
21
+ u as teddyTypographyScale800,
22
+ H as teddyTypographyScale850,
23
+ D as teddyTypographyScale900,
24
+ W as teddyTypographyWeightBold,
25
+ x as teddyTypographyWeightMedium,
26
+ F as teddyTypographyWeightNormal
27
+ };