@dynatrace/strato-design-tokens 1.1.3 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/colors/index.d.ts CHANGED
@@ -1608,6 +1608,10 @@ declare const _default: {
1608
1608
  /** Css custom property: --dt-colors-charts-security-risk-level-low-default. Default value: #134fc9. */
1609
1609
  Default: string;
1610
1610
  };
1611
+ None: {
1612
+ /** Css custom property: --dt-colors-charts-security-risk-level-none-default. Default value: #2c2f3f. */
1613
+ Default: string;
1614
+ };
1611
1615
  };
1612
1616
  VulnerabilityStatus: {
1613
1617
  Muted: {
package/colors/index.js CHANGED
@@ -1626,6 +1626,10 @@ const Charts = {
1626
1626
  Low: {
1627
1627
  /** Css custom property: --dt-colors-charts-security-risk-level-low-default. Default value: #134fc9. */
1628
1628
  Default: "var(--dt-colors-charts-security-risk-level-low-default, #134fc9)"
1629
+ },
1630
+ None: {
1631
+ /** Css custom property: --dt-colors-charts-security-risk-level-none-default. Default value: #2c2f3f. */
1632
+ Default: "var(--dt-colors-charts-security-risk-level-none-default, #2c2f3f)"
1629
1633
  }
1630
1634
  },
1631
1635
  VulnerabilityStatus: {
@@ -27,5 +27,10 @@ declare const _default: {
27
27
  * Css custom property: --dt-easings-out-back. Value: cubic-bezier(0.4, 1.6, 0.7, 1).
28
28
  */
29
29
  OutBack: string;
30
+ /**
31
+ * Use to create dynamic, nonlinear rotation that adds energy and movement, ideal for rotating loading indicators.
32
+ * Css custom property: --dt-easings-rotate-elastic. Value: cubic-bezier(0.8, 0.3, 0.3, 0.8).
33
+ */
34
+ RotateElastic: string;
30
35
  };
31
36
  export default _default;
package/easings/index.js CHANGED
@@ -26,6 +26,7 @@ const Accelerate = "var(--dt-easings-accelerate, cubic-bezier(0.5, 0, 1, 1))";
26
26
  const SlowInFastOut = "var(--dt-easings-slow-in-fast-out, cubic-bezier(0.8, 0, 0.5, 1))";
27
27
  const FastInSlowOut = "var(--dt-easings-fast-in-slow-out, cubic-bezier(0.4, 0, 0.2, 1))";
28
28
  const OutBack = "var(--dt-easings-out-back, cubic-bezier(0.4, 1.6, 0.7, 1))";
29
+ const RotateElastic = "var(--dt-easings-rotate-elastic, cubic-bezier(0.8, 0.3, 0.3, 0.8))";
29
30
  var easings_default = {
30
31
  /**
31
32
  * Use to convey the deceleration of an object, such as when it's coming to a stop. It starts at a fast pace and then slows down at the end.
@@ -51,5 +52,10 @@ var easings_default = {
51
52
  * Use to convey a playful or elastic effect, such as when an object bounces or stretches. It overshoots its target position before settling back into place.
52
53
  * Css custom property: --dt-easings-out-back. Value: cubic-bezier(0.4, 1.6, 0.7, 1).
53
54
  */
54
- OutBack
55
+ OutBack,
56
+ /**
57
+ * Use to create dynamic, nonlinear rotation that adds energy and movement, ideal for rotating loading indicators.
58
+ * Css custom property: --dt-easings-rotate-elastic. Value: cubic-bezier(0.8, 0.3, 0.3, 0.8).
59
+ */
60
+ RotateElastic
55
61
  };
@@ -27,5 +27,10 @@ declare const _default: {
27
27
  * Value: [ 0.4, 1.6,0.7,1 ].
28
28
  */
29
29
  OutBack: number[];
30
+ /**
31
+ * Use to create dynamic, nonlinear rotation that adds energy and movement, ideal for rotating loading indicators.
32
+ * Value: [ 0.8, 0.3,0.3,0.8 ].
33
+ */
34
+ RotateElastic: number[];
30
35
  };
31
36
  export default _default;
@@ -26,6 +26,7 @@ const Accelerate = [0.5, 0, 1, 1];
26
26
  const SlowInFastOut = [0.8, 0, 0.5, 1];
27
27
  const FastInSlowOut = [0.4, 0, 0.2, 1];
28
28
  const OutBack = [0.4, 1.6, 0.7, 1];
29
+ const RotateElastic = [0.8, 0.3, 0.3, 0.8];
29
30
  var easings_js_default = {
30
31
  /**
31
32
  * Use to convey the deceleration of an object, such as when it's coming to a stop. It starts at a fast pace and then slows down at the end.
@@ -51,5 +52,10 @@ var easings_js_default = {
51
52
  * Use to convey a playful or elastic effect, such as when an object bounces or stretches. It overshoots its target position before settling back into place.
52
53
  * Value: [ 0.4, 1.6,0.7,1 ].
53
54
  */
54
- OutBack
55
+ OutBack,
56
+ /**
57
+ * Use to create dynamic, nonlinear rotation that adds energy and movement, ideal for rotating loading indicators.
58
+ * Value: [ 0.8, 0.3,0.3,0.8 ].
59
+ */
60
+ RotateElastic
55
61
  };
@@ -1603,6 +1603,10 @@ const Charts = {
1603
1603
  Low: {
1604
1604
  /** Css custom property: --dt-colors-charts-security-risk-level-low-default. Default value: #134fc9. */
1605
1605
  Default: "var(--dt-colors-charts-security-risk-level-low-default, #134fc9)"
1606
+ },
1607
+ None: {
1608
+ /** Css custom property: --dt-colors-charts-security-risk-level-none-default. Default value: #2c2f3f. */
1609
+ Default: "var(--dt-colors-charts-security-risk-level-none-default, #2c2f3f)"
1606
1610
  }
1607
1611
  },
1608
1612
  VulnerabilityStatus: {