@dynatrace/strato-design-tokens 1.1.3 → 1.1.4

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.
@@ -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
  };
@@ -3,6 +3,7 @@ const Accelerate = "var(--dt-easings-accelerate, cubic-bezier(0.5, 0, 1, 1))";
3
3
  const SlowInFastOut = "var(--dt-easings-slow-in-fast-out, cubic-bezier(0.8, 0, 0.5, 1))";
4
4
  const FastInSlowOut = "var(--dt-easings-fast-in-slow-out, cubic-bezier(0.4, 0, 0.2, 1))";
5
5
  const OutBack = "var(--dt-easings-out-back, cubic-bezier(0.4, 1.6, 0.7, 1))";
6
+ const RotateElastic = "var(--dt-easings-rotate-elastic, cubic-bezier(0.8, 0.3, 0.3, 0.8))";
6
7
  var easings_default = {
7
8
  /**
8
9
  * 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.
@@ -28,7 +29,12 @@ var easings_default = {
28
29
  * 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.
29
30
  * Css custom property: --dt-easings-out-back. Value: cubic-bezier(0.4, 1.6, 0.7, 1).
30
31
  */
31
- OutBack
32
+ OutBack,
33
+ /**
34
+ * Use to create dynamic, nonlinear rotation that adds energy and movement, ideal for rotating loading indicators.
35
+ * Css custom property: --dt-easings-rotate-elastic. Value: cubic-bezier(0.8, 0.3, 0.3, 0.8).
36
+ */
37
+ RotateElastic
32
38
  };
33
39
  export {
34
40
  easings_default as default
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../generated/easings/index.ts"],
4
- "sourcesContent": ["/**\n * Generated file, do not edit directly!\n */\n\n/** Easings define the rate of change of an animation over time, affecting speed, acceleration, and deceleration. */\n\nconst Decelerate = 'var(--dt-easings-decelerate, cubic-bezier(0, 0, 0.2, 1))';\nconst Accelerate = 'var(--dt-easings-accelerate, cubic-bezier(0.5, 0, 1, 1))';\nconst SlowInFastOut =\n 'var(--dt-easings-slow-in-fast-out, cubic-bezier(0.8, 0, 0.5, 1))';\nconst FastInSlowOut =\n 'var(--dt-easings-fast-in-slow-out, cubic-bezier(0.4, 0, 0.2, 1))';\nconst OutBack = 'var(--dt-easings-out-back, cubic-bezier(0.4, 1.6, 0.7, 1))';\nexport default {\n /**\n * 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.\n * Css custom property: --dt-easings-decelerate. Value: cubic-bezier(0, 0, 0.2, 1).\n */\n Decelerate,\n /**\n * Use to convey the acceleration of an object, such as when it's being launched. It starts at a slow pace and then speeds up at the end.\n * Css custom property: --dt-easings-accelerate. Value: cubic-bezier(0.5, 0, 1, 1).\n */\n Accelerate,\n /**\n * Use to draw attention to an object. It starts slowly, accelerates in the middle, and then slows down again at the end.\n * Css custom property: --dt-easings-slow-in-fast-out. Value: cubic-bezier(0.8, 0, 0.5, 1).\n */\n SlowInFastOut,\n /**\n * Use to move or scale objects. It starts slowly, quickly accelerates in the middle, and slows down at the end.\n * Css custom property: --dt-easings-fast-in-slow-out. Value: cubic-bezier(0.4, 0, 0.2, 1).\n */\n FastInSlowOut,\n /**\n * 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.\n * Css custom property: --dt-easings-out-back. Value: cubic-bezier(0.4, 1.6, 0.7, 1).\n */\n OutBack,\n};\n"],
5
- "mappings": "AAMA,MAAM,aAAa;AACnB,MAAM,aAAa;AACnB,MAAM,gBACJ;AACF,MAAM,gBACJ;AACF,MAAM,UAAU;AAChB,IAAO,kBAAQ;AAAA;AAAA;AAAA;AAAA;AAAA,EAKb;AAAA;AAAA;AAAA;AAAA;AAAA,EAKA;AAAA;AAAA;AAAA;AAAA;AAAA,EAKA;AAAA;AAAA;AAAA;AAAA;AAAA,EAKA;AAAA;AAAA;AAAA;AAAA;AAAA,EAKA;AACF;",
4
+ "sourcesContent": ["/**\n * Generated file, do not edit directly!\n */\n\n/** Easings define the rate of change of an animation over time, affecting speed, acceleration, and deceleration. */\n\nconst Decelerate = 'var(--dt-easings-decelerate, cubic-bezier(0, 0, 0.2, 1))';\nconst Accelerate = 'var(--dt-easings-accelerate, cubic-bezier(0.5, 0, 1, 1))';\nconst SlowInFastOut =\n 'var(--dt-easings-slow-in-fast-out, cubic-bezier(0.8, 0, 0.5, 1))';\nconst FastInSlowOut =\n 'var(--dt-easings-fast-in-slow-out, cubic-bezier(0.4, 0, 0.2, 1))';\nconst OutBack = 'var(--dt-easings-out-back, cubic-bezier(0.4, 1.6, 0.7, 1))';\nconst RotateElastic =\n 'var(--dt-easings-rotate-elastic, cubic-bezier(0.8, 0.3, 0.3, 0.8))';\nexport default {\n /**\n * 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.\n * Css custom property: --dt-easings-decelerate. Value: cubic-bezier(0, 0, 0.2, 1).\n */\n Decelerate,\n /**\n * Use to convey the acceleration of an object, such as when it's being launched. It starts at a slow pace and then speeds up at the end.\n * Css custom property: --dt-easings-accelerate. Value: cubic-bezier(0.5, 0, 1, 1).\n */\n Accelerate,\n /**\n * Use to draw attention to an object. It starts slowly, accelerates in the middle, and then slows down again at the end.\n * Css custom property: --dt-easings-slow-in-fast-out. Value: cubic-bezier(0.8, 0, 0.5, 1).\n */\n SlowInFastOut,\n /**\n * Use to move or scale objects. It starts slowly, quickly accelerates in the middle, and slows down at the end.\n * Css custom property: --dt-easings-fast-in-slow-out. Value: cubic-bezier(0.4, 0, 0.2, 1).\n */\n FastInSlowOut,\n /**\n * 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.\n * Css custom property: --dt-easings-out-back. Value: cubic-bezier(0.4, 1.6, 0.7, 1).\n */\n OutBack,\n /**\n * Use to create dynamic, nonlinear rotation that adds energy and movement, ideal for rotating loading indicators.\n * Css custom property: --dt-easings-rotate-elastic. Value: cubic-bezier(0.8, 0.3, 0.3, 0.8).\n */\n RotateElastic,\n};\n"],
5
+ "mappings": "AAMA,MAAM,aAAa;AACnB,MAAM,aAAa;AACnB,MAAM,gBACJ;AACF,MAAM,gBACJ;AACF,MAAM,UAAU;AAChB,MAAM,gBACJ;AACF,IAAO,kBAAQ;AAAA;AAAA;AAAA;AAAA;AAAA,EAKb;AAAA;AAAA;AAAA;AAAA;AAAA,EAKA;AAAA;AAAA;AAAA;AAAA;AAAA,EAKA;AAAA;AAAA;AAAA;AAAA;AAAA,EAKA;AAAA;AAAA;AAAA;AAAA;AAAA,EAKA;AAAA;AAAA;AAAA;AAAA;AAAA,EAKA;AACF;",
6
6
  "names": []
7
7
  }
@@ -3,6 +3,7 @@ const Accelerate = [0.5, 0, 1, 1];
3
3
  const SlowInFastOut = [0.8, 0, 0.5, 1];
4
4
  const FastInSlowOut = [0.4, 0, 0.2, 1];
5
5
  const OutBack = [0.4, 1.6, 0.7, 1];
6
+ const RotateElastic = [0.8, 0.3, 0.3, 0.8];
6
7
  var easings_js_default = {
7
8
  /**
8
9
  * 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.
@@ -28,7 +29,12 @@ var easings_js_default = {
28
29
  * 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.
29
30
  * Value: [ 0.4, 1.6,0.7,1 ].
30
31
  */
31
- OutBack
32
+ OutBack,
33
+ /**
34
+ * Use to create dynamic, nonlinear rotation that adds energy and movement, ideal for rotating loading indicators.
35
+ * Value: [ 0.8, 0.3,0.3,0.8 ].
36
+ */
37
+ RotateElastic
32
38
  };
33
39
  export {
34
40
  easings_js_default as default
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../generated/easings-js/index.ts"],
4
- "sourcesContent": ["/**\n * Generated file, do not edit directly!\n */\n\n/** Easings define the rate of change of an animation over time, affecting speed, acceleration, and deceleration. */\n\nconst Decelerate = [0, 0, 0.2, 1];\nconst Accelerate = [0.5, 0, 1, 1];\nconst SlowInFastOut = [0.8, 0, 0.5, 1];\nconst FastInSlowOut = [0.4, 0, 0.2, 1];\nconst OutBack = [0.4, 1.6, 0.7, 1];\nexport default {\n /**\n * 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.\n * Value: [ 0, 0,0.2,1 ].\n */\n Decelerate,\n /**\n * Use to convey the acceleration of an object, such as when it's being launched. It starts at a slow pace and then speeds up at the end.\n * Value: [ 0.5, 0,1,1 ].\n */\n Accelerate,\n /**\n * Use to draw attention to an object. It starts slowly, accelerates in the middle, and then slows down again at the end.\n * Value: [ 0.8, 0,0.5,1 ].\n */\n SlowInFastOut,\n /**\n * Use to move or scale objects. It starts slowly, quickly accelerates in the middle, and slows down at the end.\n * Value: [ 0.4, 0,0.2,1 ].\n */\n FastInSlowOut,\n /**\n * 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.\n * Value: [ 0.4, 1.6,0.7,1 ].\n */\n OutBack,\n};\n"],
5
- "mappings": "AAMA,MAAM,aAAa,CAAC,GAAG,GAAG,KAAK,CAAC;AAChC,MAAM,aAAa,CAAC,KAAK,GAAG,GAAG,CAAC;AAChC,MAAM,gBAAgB,CAAC,KAAK,GAAG,KAAK,CAAC;AACrC,MAAM,gBAAgB,CAAC,KAAK,GAAG,KAAK,CAAC;AACrC,MAAM,UAAU,CAAC,KAAK,KAAK,KAAK,CAAC;AACjC,IAAO,qBAAQ;AAAA;AAAA;AAAA;AAAA;AAAA,EAKb;AAAA;AAAA;AAAA;AAAA;AAAA,EAKA;AAAA;AAAA;AAAA;AAAA;AAAA,EAKA;AAAA;AAAA;AAAA;AAAA;AAAA,EAKA;AAAA;AAAA;AAAA;AAAA;AAAA,EAKA;AACF;",
4
+ "sourcesContent": ["/**\n * Generated file, do not edit directly!\n */\n\n/** Easings define the rate of change of an animation over time, affecting speed, acceleration, and deceleration. */\n\nconst Decelerate = [0, 0, 0.2, 1];\nconst Accelerate = [0.5, 0, 1, 1];\nconst SlowInFastOut = [0.8, 0, 0.5, 1];\nconst FastInSlowOut = [0.4, 0, 0.2, 1];\nconst OutBack = [0.4, 1.6, 0.7, 1];\nconst RotateElastic = [0.8, 0.3, 0.3, 0.8];\nexport default {\n /**\n * 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.\n * Value: [ 0, 0,0.2,1 ].\n */\n Decelerate,\n /**\n * Use to convey the acceleration of an object, such as when it's being launched. It starts at a slow pace and then speeds up at the end.\n * Value: [ 0.5, 0,1,1 ].\n */\n Accelerate,\n /**\n * Use to draw attention to an object. It starts slowly, accelerates in the middle, and then slows down again at the end.\n * Value: [ 0.8, 0,0.5,1 ].\n */\n SlowInFastOut,\n /**\n * Use to move or scale objects. It starts slowly, quickly accelerates in the middle, and slows down at the end.\n * Value: [ 0.4, 0,0.2,1 ].\n */\n FastInSlowOut,\n /**\n * 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.\n * Value: [ 0.4, 1.6,0.7,1 ].\n */\n OutBack,\n /**\n * Use to create dynamic, nonlinear rotation that adds energy and movement, ideal for rotating loading indicators.\n * Value: [ 0.8, 0.3,0.3,0.8 ].\n */\n RotateElastic,\n};\n"],
5
+ "mappings": "AAMA,MAAM,aAAa,CAAC,GAAG,GAAG,KAAK,CAAC;AAChC,MAAM,aAAa,CAAC,KAAK,GAAG,GAAG,CAAC;AAChC,MAAM,gBAAgB,CAAC,KAAK,GAAG,KAAK,CAAC;AACrC,MAAM,gBAAgB,CAAC,KAAK,GAAG,KAAK,CAAC;AACrC,MAAM,UAAU,CAAC,KAAK,KAAK,KAAK,CAAC;AACjC,MAAM,gBAAgB,CAAC,KAAK,KAAK,KAAK,GAAG;AACzC,IAAO,qBAAQ;AAAA;AAAA;AAAA;AAAA;AAAA,EAKb;AAAA;AAAA;AAAA;AAAA;AAAA,EAKA;AAAA;AAAA;AAAA;AAAA;AAAA,EAKA;AAAA;AAAA;AAAA;AAAA;AAAA,EAKA;AAAA;AAAA;AAAA;AAAA;AAAA,EAKA;AAAA;AAAA;AAAA;AAAA;AAAA,EAKA;AACF;",
6
6
  "names": []
7
7
  }
@@ -36,12 +36,21 @@ const Slow = {
36
36
  /** Css custom property: --dt-timings-slow-gentle. Default value: 800ms. */
37
37
  Gentle: "var(--dt-timings-slow-gentle, 800ms)"
38
38
  };
39
+ const Slowest = {
40
+ /** Css custom property: --dt-timings-slowest-default. Default value: 1000ms. */
41
+ Default: "var(--dt-timings-slowest-default, 1000ms)",
42
+ /** Css custom property: --dt-timings-slowest-moderate. Default value: 1200ms. */
43
+ Moderate: "var(--dt-timings-slowest-moderate, 1200ms)",
44
+ /** Css custom property: --dt-timings-slowest-gentle. Default value: 1500ms. */
45
+ Gentle: "var(--dt-timings-slowest-gentle, 1500ms)"
46
+ };
39
47
  var timings_default = {
40
48
  Instant,
41
49
  Offset,
42
50
  Fast,
43
51
  Base,
44
- Slow
52
+ Slow,
53
+ Slowest
45
54
  };
46
55
  export {
47
56
  timings_default as default
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../generated/timings/index.ts"],
4
- "sourcesContent": ["/**\n * Generated file, do not edit directly!\n */\n\n/** Timings define the duration of an animation. */\n\nconst Instant = {\n /** Css custom property: --dt-timings-instant-default. Default value: 0ms. */\n Default: 'var(--dt-timings-instant-default, 0ms)',\n};\nconst Offset = {\n /** Css custom property: --dt-timings-offset-short. Default value: 20ms. */\n Short: 'var(--dt-timings-offset-short, 20ms)',\n /** Css custom property: --dt-timings-offset-medium. Default value: 30ms. */\n Medium: 'var(--dt-timings-offset-medium, 30ms)',\n /** Css custom property: --dt-timings-offset-long. Default value: 100ms. */\n Long: 'var(--dt-timings-offset-long, 100ms)',\n /** Css custom property: --dt-timings-offset-default. Default value: 50ms. */\n Default: 'var(--dt-timings-offset-default, 50ms)',\n};\nconst Fast = {\n /** Css custom property: --dt-timings-fast-quick. Default value: 150ms. */\n Quick: 'var(--dt-timings-fast-quick, 150ms)',\n /** Css custom property: --dt-timings-fast-default. Default value: 170ms. */\n Default: 'var(--dt-timings-fast-default, 170ms)',\n /** Css custom property: --dt-timings-fast-moderate. Default value: 200ms. */\n Moderate: 'var(--dt-timings-fast-moderate, 200ms)',\n};\nconst Base = {\n /** Css custom property: --dt-timings-base-quick. Default value: 250ms. */\n Quick: 'var(--dt-timings-base-quick, 250ms)',\n /** Css custom property: --dt-timings-base-default. Default value: 300ms. */\n Default: 'var(--dt-timings-base-default, 300ms)',\n /** Css custom property: --dt-timings-base-moderate. Default value: 350ms. */\n Moderate: 'var(--dt-timings-base-moderate, 350ms)',\n};\nconst Slow = {\n /** Css custom property: --dt-timings-slow-default. Default value: 400ms. */\n Default: 'var(--dt-timings-slow-default, 400ms)',\n /** Css custom property: --dt-timings-slow-moderate. Default value: 600ms. */\n Moderate: 'var(--dt-timings-slow-moderate, 600ms)',\n /** Css custom property: --dt-timings-slow-gentle. Default value: 800ms. */\n Gentle: 'var(--dt-timings-slow-gentle, 800ms)',\n};\nexport default {\n Instant,\n Offset,\n Fast,\n Base,\n Slow,\n};\n"],
5
- "mappings": "AAMA,MAAM,UAAU;AAAA;AAAA,EAEd,SAAS;AACX;AACA,MAAM,SAAS;AAAA;AAAA,EAEb,OAAO;AAAA;AAAA,EAEP,QAAQ;AAAA;AAAA,EAER,MAAM;AAAA;AAAA,EAEN,SAAS;AACX;AACA,MAAM,OAAO;AAAA;AAAA,EAEX,OAAO;AAAA;AAAA,EAEP,SAAS;AAAA;AAAA,EAET,UAAU;AACZ;AACA,MAAM,OAAO;AAAA;AAAA,EAEX,OAAO;AAAA;AAAA,EAEP,SAAS;AAAA;AAAA,EAET,UAAU;AACZ;AACA,MAAM,OAAO;AAAA;AAAA,EAEX,SAAS;AAAA;AAAA,EAET,UAAU;AAAA;AAAA,EAEV,QAAQ;AACV;AACA,IAAO,kBAAQ;AAAA,EACb;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;",
4
+ "sourcesContent": ["/**\n * Generated file, do not edit directly!\n */\n\n/** Timings define the duration of an animation. */\n\nconst Instant = {\n /** Css custom property: --dt-timings-instant-default. Default value: 0ms. */\n Default: 'var(--dt-timings-instant-default, 0ms)',\n};\nconst Offset = {\n /** Css custom property: --dt-timings-offset-short. Default value: 20ms. */\n Short: 'var(--dt-timings-offset-short, 20ms)',\n /** Css custom property: --dt-timings-offset-medium. Default value: 30ms. */\n Medium: 'var(--dt-timings-offset-medium, 30ms)',\n /** Css custom property: --dt-timings-offset-long. Default value: 100ms. */\n Long: 'var(--dt-timings-offset-long, 100ms)',\n /** Css custom property: --dt-timings-offset-default. Default value: 50ms. */\n Default: 'var(--dt-timings-offset-default, 50ms)',\n};\nconst Fast = {\n /** Css custom property: --dt-timings-fast-quick. Default value: 150ms. */\n Quick: 'var(--dt-timings-fast-quick, 150ms)',\n /** Css custom property: --dt-timings-fast-default. Default value: 170ms. */\n Default: 'var(--dt-timings-fast-default, 170ms)',\n /** Css custom property: --dt-timings-fast-moderate. Default value: 200ms. */\n Moderate: 'var(--dt-timings-fast-moderate, 200ms)',\n};\nconst Base = {\n /** Css custom property: --dt-timings-base-quick. Default value: 250ms. */\n Quick: 'var(--dt-timings-base-quick, 250ms)',\n /** Css custom property: --dt-timings-base-default. Default value: 300ms. */\n Default: 'var(--dt-timings-base-default, 300ms)',\n /** Css custom property: --dt-timings-base-moderate. Default value: 350ms. */\n Moderate: 'var(--dt-timings-base-moderate, 350ms)',\n};\nconst Slow = {\n /** Css custom property: --dt-timings-slow-default. Default value: 400ms. */\n Default: 'var(--dt-timings-slow-default, 400ms)',\n /** Css custom property: --dt-timings-slow-moderate. Default value: 600ms. */\n Moderate: 'var(--dt-timings-slow-moderate, 600ms)',\n /** Css custom property: --dt-timings-slow-gentle. Default value: 800ms. */\n Gentle: 'var(--dt-timings-slow-gentle, 800ms)',\n};\nconst Slowest = {\n /** Css custom property: --dt-timings-slowest-default. Default value: 1000ms. */\n Default: 'var(--dt-timings-slowest-default, 1000ms)',\n /** Css custom property: --dt-timings-slowest-moderate. Default value: 1200ms. */\n Moderate: 'var(--dt-timings-slowest-moderate, 1200ms)',\n /** Css custom property: --dt-timings-slowest-gentle. Default value: 1500ms. */\n Gentle: 'var(--dt-timings-slowest-gentle, 1500ms)',\n};\nexport default {\n Instant,\n Offset,\n Fast,\n Base,\n Slow,\n Slowest,\n};\n"],
5
+ "mappings": "AAMA,MAAM,UAAU;AAAA;AAAA,EAEd,SAAS;AACX;AACA,MAAM,SAAS;AAAA;AAAA,EAEb,OAAO;AAAA;AAAA,EAEP,QAAQ;AAAA;AAAA,EAER,MAAM;AAAA;AAAA,EAEN,SAAS;AACX;AACA,MAAM,OAAO;AAAA;AAAA,EAEX,OAAO;AAAA;AAAA,EAEP,SAAS;AAAA;AAAA,EAET,UAAU;AACZ;AACA,MAAM,OAAO;AAAA;AAAA,EAEX,OAAO;AAAA;AAAA,EAEP,SAAS;AAAA;AAAA,EAET,UAAU;AACZ;AACA,MAAM,OAAO;AAAA;AAAA,EAEX,SAAS;AAAA;AAAA,EAET,UAAU;AAAA;AAAA,EAEV,QAAQ;AACV;AACA,MAAM,UAAU;AAAA;AAAA,EAEd,SAAS;AAAA;AAAA,EAET,UAAU;AAAA;AAAA,EAEV,QAAQ;AACV;AACA,IAAO,kBAAQ;AAAA,EACb;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;",
6
6
  "names": []
7
7
  }
@@ -36,12 +36,21 @@ const Slow = {
36
36
  /** Value: 0.8. */
37
37
  Gentle: 0.8
38
38
  };
39
+ const Slowest = {
40
+ /** Value: 1. */
41
+ Default: 1,
42
+ /** Value: 1.2. */
43
+ Moderate: 1.2,
44
+ /** Value: 1.5. */
45
+ Gentle: 1.5
46
+ };
39
47
  var timings_js_default = {
40
48
  Instant,
41
49
  Offset,
42
50
  Fast,
43
51
  Base,
44
- Slow
52
+ Slow,
53
+ Slowest
45
54
  };
46
55
  export {
47
56
  timings_js_default as default
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../generated/timings-js/index.ts"],
4
- "sourcesContent": ["/**\n * Generated file, do not edit directly!\n */\n\n/** Timings define the duration of an animation. */\n\nconst Instant = {\n /** Value: 0. */\n Default: 0,\n};\nconst Offset = {\n /** Value: 0.02. */\n Short: 0.02,\n /** Value: 0.03. */\n Medium: 0.03,\n /** Value: 0.1. */\n Long: 0.1,\n /** Value: 0.05. */\n Default: 0.05,\n};\nconst Fast = {\n /** Value: 0.15. */\n Quick: 0.15,\n /** Value: 0.17. */\n Default: 0.17,\n /** Value: 0.2. */\n Moderate: 0.2,\n};\nconst Base = {\n /** Value: 0.25. */\n Quick: 0.25,\n /** Value: 0.3. */\n Default: 0.3,\n /** Value: 0.35. */\n Moderate: 0.35,\n};\nconst Slow = {\n /** Value: 0.4. */\n Default: 0.4,\n /** Value: 0.6. */\n Moderate: 0.6,\n /** Value: 0.8. */\n Gentle: 0.8,\n};\nexport default {\n Instant,\n Offset,\n Fast,\n Base,\n Slow,\n};\n"],
5
- "mappings": "AAMA,MAAM,UAAU;AAAA;AAAA,EAEd,SAAS;AACX;AACA,MAAM,SAAS;AAAA;AAAA,EAEb,OAAO;AAAA;AAAA,EAEP,QAAQ;AAAA;AAAA,EAER,MAAM;AAAA;AAAA,EAEN,SAAS;AACX;AACA,MAAM,OAAO;AAAA;AAAA,EAEX,OAAO;AAAA;AAAA,EAEP,SAAS;AAAA;AAAA,EAET,UAAU;AACZ;AACA,MAAM,OAAO;AAAA;AAAA,EAEX,OAAO;AAAA;AAAA,EAEP,SAAS;AAAA;AAAA,EAET,UAAU;AACZ;AACA,MAAM,OAAO;AAAA;AAAA,EAEX,SAAS;AAAA;AAAA,EAET,UAAU;AAAA;AAAA,EAEV,QAAQ;AACV;AACA,IAAO,qBAAQ;AAAA,EACb;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;",
4
+ "sourcesContent": ["/**\n * Generated file, do not edit directly!\n */\n\n/** Timings define the duration of an animation. */\n\nconst Instant = {\n /** Value: 0. */\n Default: 0,\n};\nconst Offset = {\n /** Value: 0.02. */\n Short: 0.02,\n /** Value: 0.03. */\n Medium: 0.03,\n /** Value: 0.1. */\n Long: 0.1,\n /** Value: 0.05. */\n Default: 0.05,\n};\nconst Fast = {\n /** Value: 0.15. */\n Quick: 0.15,\n /** Value: 0.17. */\n Default: 0.17,\n /** Value: 0.2. */\n Moderate: 0.2,\n};\nconst Base = {\n /** Value: 0.25. */\n Quick: 0.25,\n /** Value: 0.3. */\n Default: 0.3,\n /** Value: 0.35. */\n Moderate: 0.35,\n};\nconst Slow = {\n /** Value: 0.4. */\n Default: 0.4,\n /** Value: 0.6. */\n Moderate: 0.6,\n /** Value: 0.8. */\n Gentle: 0.8,\n};\nconst Slowest = {\n /** Value: 1. */\n Default: 1,\n /** Value: 1.2. */\n Moderate: 1.2,\n /** Value: 1.5. */\n Gentle: 1.5,\n};\nexport default {\n Instant,\n Offset,\n Fast,\n Base,\n Slow,\n Slowest,\n};\n"],
5
+ "mappings": "AAMA,MAAM,UAAU;AAAA;AAAA,EAEd,SAAS;AACX;AACA,MAAM,SAAS;AAAA;AAAA,EAEb,OAAO;AAAA;AAAA,EAEP,QAAQ;AAAA;AAAA,EAER,MAAM;AAAA;AAAA,EAEN,SAAS;AACX;AACA,MAAM,OAAO;AAAA;AAAA,EAEX,OAAO;AAAA;AAAA,EAEP,SAAS;AAAA;AAAA,EAET,UAAU;AACZ;AACA,MAAM,OAAO;AAAA;AAAA,EAEX,OAAO;AAAA;AAAA,EAEP,SAAS;AAAA;AAAA,EAET,UAAU;AACZ;AACA,MAAM,OAAO;AAAA;AAAA,EAEX,SAAS;AAAA;AAAA,EAET,UAAU;AAAA;AAAA,EAEV,QAAQ;AACV;AACA,MAAM,UAAU;AAAA;AAAA,EAEd,SAAS;AAAA;AAAA,EAET,UAAU;AAAA;AAAA,EAEV,QAAQ;AACV;AACA,IAAO,qBAAQ;AAAA,EACb;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;",
6
6
  "names": []
7
7
  }
@@ -1066,6 +1066,8 @@ const customPropertiesUnified = {
1066
1066
  "--dt-easings-fast-in-slow-out": "cubic-bezier(0.4, 0, 0.2, 1)",
1067
1067
  /** 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. */
1068
1068
  "--dt-easings-out-back": "cubic-bezier(0.4, 1.6, 0.7, 1)",
1069
+ /** Use to create dynamic, nonlinear rotation that adds energy and movement, ideal for rotating loading indicators. */
1070
+ "--dt-easings-rotate-elastic": "cubic-bezier(0.8, 0.3, 0.3, 0.8)",
1069
1071
  "--dt-timings-instant-default": "0ms",
1070
1072
  "--dt-timings-offset-short": "20ms",
1071
1073
  "--dt-timings-offset-medium": "30ms",
@@ -1079,7 +1081,10 @@ const customPropertiesUnified = {
1079
1081
  "--dt-timings-base-moderate": "350ms",
1080
1082
  "--dt-timings-slow-default": "400ms",
1081
1083
  "--dt-timings-slow-moderate": "600ms",
1082
- "--dt-timings-slow-gentle": "800ms"
1084
+ "--dt-timings-slow-gentle": "800ms",
1085
+ "--dt-timings-slowest-default": "1000ms",
1086
+ "--dt-timings-slowest-moderate": "1200ms",
1087
+ "--dt-timings-slowest-gentle": "1500ms"
1083
1088
  };
1084
1089
  var variables_default = customPropertiesUnified;
1085
1090
  export {