@telia/teddy 0.7.60 → 0.7.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/style.css
CHANGED
|
@@ -3864,6 +3864,8 @@
|
|
|
3864
3864
|
--teddy-color-background-interactive-primary-active: var(--teddy-color-purple-600);
|
|
3865
3865
|
--teddy-color-background-interactive-primary-hover: var(--teddy-color-purple-700);
|
|
3866
3866
|
--teddy-color-background-interactive-primary: var(--teddy-color-purple-800);
|
|
3867
|
+
--teddy-color-background-secondary-active: var(--teddy-color-gray-200);
|
|
3868
|
+
--teddy-color-background-secondary-hover: var(--teddy-color-gray-100);
|
|
3867
3869
|
--teddy-color-background-secondary-negative: var(--teddy-color-gray-900);
|
|
3868
3870
|
--teddy-color-background-secondary: var(--teddy-color-gray-50);
|
|
3869
3871
|
--teddy-color-background-primary-negative: var(--teddy-color-gray-900);
|
|
@@ -8581,6 +8583,8 @@
|
|
|
8581
8583
|
--teddy-color-background-interactive-primary-active: var(--teddy-color-purple-600);
|
|
8582
8584
|
--teddy-color-background-interactive-primary-hover: var(--teddy-color-purple-700);
|
|
8583
8585
|
--teddy-color-background-interactive-primary: var(--teddy-color-purple-800);
|
|
8586
|
+
--teddy-color-background-secondary-active: var(--teddy-color-gray-200);
|
|
8587
|
+
--teddy-color-background-secondary-hover: var(--teddy-color-gray-100);
|
|
8584
8588
|
--teddy-color-background-secondary-negative: var(--teddy-color-gray-900);
|
|
8585
8589
|
--teddy-color-background-secondary: var(--teddy-color-gray-50);
|
|
8586
8590
|
--teddy-color-background-primary-negative: var(--teddy-color-gray-900);
|
|
@@ -177,6 +177,8 @@ const teddyColorBackgroundPrimary = "#ffffff";
|
|
|
177
177
|
const teddyColorBackgroundPrimaryNegative = "#1e1e20";
|
|
178
178
|
const teddyColorBackgroundSecondary = "#f3f3f8";
|
|
179
179
|
const teddyColorBackgroundSecondaryNegative = "#1e1e20";
|
|
180
|
+
const teddyColorBackgroundSecondaryHover = "#e5e5eb";
|
|
181
|
+
const teddyColorBackgroundSecondaryActive = "#c6c6cd";
|
|
180
182
|
const teddyColorBackgroundInteractivePrimary = "#4e0174";
|
|
181
183
|
const teddyColorBackgroundInteractivePrimaryHover = "#6d02a3";
|
|
182
184
|
const teddyColorBackgroundInteractivePrimaryActive = "#8c07d0";
|
|
@@ -385,6 +387,8 @@ const variables = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePro
|
|
|
385
387
|
teddyColorBackgroundPrimary,
|
|
386
388
|
teddyColorBackgroundPrimaryNegative,
|
|
387
389
|
teddyColorBackgroundSecondary,
|
|
390
|
+
teddyColorBackgroundSecondaryActive,
|
|
391
|
+
teddyColorBackgroundSecondaryHover,
|
|
388
392
|
teddyColorBackgroundSecondaryNegative,
|
|
389
393
|
teddyColorBackgroundStatusAttention,
|
|
390
394
|
teddyColorBackgroundStatusAttentionNegative,
|
|
@@ -691,6 +695,8 @@ exports.teddyColorBackgroundLightPurpleNegative = teddyColorBackgroundLightPurpl
|
|
|
691
695
|
exports.teddyColorBackgroundPrimary = teddyColorBackgroundPrimary;
|
|
692
696
|
exports.teddyColorBackgroundPrimaryNegative = teddyColorBackgroundPrimaryNegative;
|
|
693
697
|
exports.teddyColorBackgroundSecondary = teddyColorBackgroundSecondary;
|
|
698
|
+
exports.teddyColorBackgroundSecondaryActive = teddyColorBackgroundSecondaryActive;
|
|
699
|
+
exports.teddyColorBackgroundSecondaryHover = teddyColorBackgroundSecondaryHover;
|
|
694
700
|
exports.teddyColorBackgroundSecondaryNegative = teddyColorBackgroundSecondaryNegative;
|
|
695
701
|
exports.teddyColorBackgroundStatusAttention = teddyColorBackgroundStatusAttention;
|
|
696
702
|
exports.teddyColorBackgroundStatusAttentionNegative = teddyColorBackgroundStatusAttentionNegative;
|
|
@@ -175,6 +175,8 @@ export declare const teddyColorBackgroundPrimary = "#ffffff";
|
|
|
175
175
|
export declare const teddyColorBackgroundPrimaryNegative = "#1e1e20";
|
|
176
176
|
export declare const teddyColorBackgroundSecondary = "#f3f3f8";
|
|
177
177
|
export declare const teddyColorBackgroundSecondaryNegative = "#1e1e20";
|
|
178
|
+
export declare const teddyColorBackgroundSecondaryHover = "#e5e5eb";
|
|
179
|
+
export declare const teddyColorBackgroundSecondaryActive = "#c6c6cd";
|
|
178
180
|
export declare const teddyColorBackgroundInteractivePrimary = "#4e0174";
|
|
179
181
|
export declare const teddyColorBackgroundInteractivePrimaryHover = "#6d02a3";
|
|
180
182
|
export declare const teddyColorBackgroundInteractivePrimaryActive = "#8c07d0";
|
|
@@ -175,6 +175,8 @@ const teddyColorBackgroundPrimary = "#ffffff";
|
|
|
175
175
|
const teddyColorBackgroundPrimaryNegative = "#1e1e20";
|
|
176
176
|
const teddyColorBackgroundSecondary = "#f3f3f8";
|
|
177
177
|
const teddyColorBackgroundSecondaryNegative = "#1e1e20";
|
|
178
|
+
const teddyColorBackgroundSecondaryHover = "#e5e5eb";
|
|
179
|
+
const teddyColorBackgroundSecondaryActive = "#c6c6cd";
|
|
178
180
|
const teddyColorBackgroundInteractivePrimary = "#4e0174";
|
|
179
181
|
const teddyColorBackgroundInteractivePrimaryHover = "#6d02a3";
|
|
180
182
|
const teddyColorBackgroundInteractivePrimaryActive = "#8c07d0";
|
|
@@ -383,6 +385,8 @@ const variables = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePro
|
|
|
383
385
|
teddyColorBackgroundPrimary,
|
|
384
386
|
teddyColorBackgroundPrimaryNegative,
|
|
385
387
|
teddyColorBackgroundSecondary,
|
|
388
|
+
teddyColorBackgroundSecondaryActive,
|
|
389
|
+
teddyColorBackgroundSecondaryHover,
|
|
386
390
|
teddyColorBackgroundSecondaryNegative,
|
|
387
391
|
teddyColorBackgroundStatusAttention,
|
|
388
392
|
teddyColorBackgroundStatusAttentionNegative,
|
|
@@ -690,6 +694,8 @@ export {
|
|
|
690
694
|
teddyColorBackgroundPrimary,
|
|
691
695
|
teddyColorBackgroundPrimaryNegative,
|
|
692
696
|
teddyColorBackgroundSecondary,
|
|
697
|
+
teddyColorBackgroundSecondaryActive,
|
|
698
|
+
teddyColorBackgroundSecondaryHover,
|
|
693
699
|
teddyColorBackgroundSecondaryNegative,
|
|
694
700
|
teddyColorBackgroundStatusAttention,
|
|
695
701
|
teddyColorBackgroundStatusAttentionNegative,
|