@sandlada/mdk 1.0.3 → 1.0.5
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.
|
@@ -9,16 +9,16 @@ export declare abstract class Easing {
|
|
|
9
9
|
static readonly LegacyAccelerate = "cubic-bezier(0.40, 0.00, 1.0, 1.00)";
|
|
10
10
|
static readonly LegacyDecelerate = "cubic-bezier(0.00, 0.00, 0.2, 1.00)";
|
|
11
11
|
static readonly Linear = "cubic-bezier(0.00, 0.00, 1.0, 1.00)";
|
|
12
|
-
static readonly ExpressiveFastSpatial
|
|
13
|
-
static readonly ExpressiveDefaultSpatial
|
|
14
|
-
static readonly ExpressiveSlowSpatial
|
|
15
|
-
static readonly ExpressiveFastEffects
|
|
16
|
-
static readonly ExpressiveDefaultEffects
|
|
17
|
-
static readonly ExpressiveSlowEffects
|
|
18
|
-
static readonly StandardFastSpatial
|
|
19
|
-
static readonly StandardDefaultSpatial
|
|
20
|
-
static readonly StandardSlowSpatial
|
|
21
|
-
static readonly StandardFastEffects
|
|
22
|
-
static readonly StandardDefaultEffects
|
|
23
|
-
static readonly StandardSlowEffects
|
|
12
|
+
static readonly ExpressiveFastSpatial = "cubic-bezier(0.42, 1.67, 0.21, 0.90)";
|
|
13
|
+
static readonly ExpressiveDefaultSpatial = "cubic-bezier(0.38, 1.21, 0.22, 1.00)";
|
|
14
|
+
static readonly ExpressiveSlowSpatial = "cubic-bezier(0.39, 1.29, 0.35, 0.98)";
|
|
15
|
+
static readonly ExpressiveFastEffects = "cubic-bezier(0.31, 0.94, 0.34, 1.00)";
|
|
16
|
+
static readonly ExpressiveDefaultEffects = "cubic-bezier(0.34, 0.80, 0.34, 1.00)";
|
|
17
|
+
static readonly ExpressiveSlowEffects = "cubic-bezier(0.34, 0.88, 0.34, 1.00)";
|
|
18
|
+
static readonly StandardFastSpatial = "cubic-bezier(0.27, 1.06, 0.18, 1.00)";
|
|
19
|
+
static readonly StandardDefaultSpatial = "cubic-bezier(0.27, 1.06, 0.18, 1.00)";
|
|
20
|
+
static readonly StandardSlowSpatial = "cubic-bezier(0.27, 1.06, 0.18, 1.00)";
|
|
21
|
+
static readonly StandardFastEffects = "cubic-bezier(0.31, 0.94, 0.34, 1.00)";
|
|
22
|
+
static readonly StandardDefaultEffects = "cubic-bezier(0.34, 0.80, 0.34, 1.00)";
|
|
23
|
+
static readonly StandardSlowEffects = "cubic-bezier(0.34, 0.88, 0.34, 1.00)";
|
|
24
24
|
}
|
package/build/modules/easing.js
CHANGED
|
@@ -9,16 +9,16 @@ export class Easing {
|
|
|
9
9
|
static LegacyAccelerate = 'cubic-bezier(0.40, 0.00, 1.0, 1.00)';
|
|
10
10
|
static LegacyDecelerate = 'cubic-bezier(0.00, 0.00, 0.2, 1.00)';
|
|
11
11
|
static Linear = 'cubic-bezier(0.00, 0.00, 1.0, 1.00)';
|
|
12
|
-
static ExpressiveFastSpatial;
|
|
13
|
-
static ExpressiveDefaultSpatial;
|
|
14
|
-
static ExpressiveSlowSpatial;
|
|
15
|
-
static ExpressiveFastEffects;
|
|
16
|
-
static ExpressiveDefaultEffects;
|
|
17
|
-
static ExpressiveSlowEffects;
|
|
18
|
-
static StandardFastSpatial;
|
|
19
|
-
static StandardDefaultSpatial;
|
|
20
|
-
static StandardSlowSpatial;
|
|
21
|
-
static StandardFastEffects;
|
|
22
|
-
static StandardDefaultEffects;
|
|
23
|
-
static StandardSlowEffects;
|
|
12
|
+
static ExpressiveFastSpatial = 'cubic-bezier(0.42, 1.67, 0.21, 0.90)';
|
|
13
|
+
static ExpressiveDefaultSpatial = 'cubic-bezier(0.38, 1.21, 0.22, 1.00)';
|
|
14
|
+
static ExpressiveSlowSpatial = 'cubic-bezier(0.39, 1.29, 0.35, 0.98)';
|
|
15
|
+
static ExpressiveFastEffects = 'cubic-bezier(0.31, 0.94, 0.34, 1.00)';
|
|
16
|
+
static ExpressiveDefaultEffects = 'cubic-bezier(0.34, 0.80, 0.34, 1.00)';
|
|
17
|
+
static ExpressiveSlowEffects = 'cubic-bezier(0.34, 0.88, 0.34, 1.00)';
|
|
18
|
+
static StandardFastSpatial = 'cubic-bezier(0.27, 1.06, 0.18, 1.00)';
|
|
19
|
+
static StandardDefaultSpatial = 'cubic-bezier(0.27, 1.06, 0.18, 1.00)';
|
|
20
|
+
static StandardSlowSpatial = 'cubic-bezier(0.27, 1.06, 0.18, 1.00)';
|
|
21
|
+
static StandardFastEffects = 'cubic-bezier(0.31, 0.94, 0.34, 1.00)';
|
|
22
|
+
static StandardDefaultEffects = 'cubic-bezier(0.34, 0.80, 0.34, 1.00)';
|
|
23
|
+
static StandardSlowEffects = 'cubic-bezier(0.34, 0.88, 0.34, 1.00)';
|
|
24
24
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export declare abstract class ElevationLevel {
|
|
2
|
-
static readonly Level0 = "var(md-sys-elevation-level-0, 0)";
|
|
3
|
-
static readonly Level1 = "var(md-sys-elevation-level-1, 1)";
|
|
4
|
-
static readonly Level2 = "var(md-sys-elevation-level-2, 3)";
|
|
5
|
-
static readonly Level3 = "var(md-sys-elevation-level-3, 6)";
|
|
6
|
-
static readonly Level4 = "var(md-sys-elevation-level-4, 8)";
|
|
7
|
-
static readonly Level5 = "var(md-sys-elevation-level-5, 12)";
|
|
2
|
+
static readonly Level0 = "var(--md-sys-elevation-level-0, 0)";
|
|
3
|
+
static readonly Level1 = "var(--md-sys-elevation-level-1, 1)";
|
|
4
|
+
static readonly Level2 = "var(--md-sys-elevation-level-2, 3)";
|
|
5
|
+
static readonly Level3 = "var(--md-sys-elevation-level-3, 6)";
|
|
6
|
+
static readonly Level4 = "var(--md-sys-elevation-level-4, 8)";
|
|
7
|
+
static readonly Level5 = "var(--md-sys-elevation-level-5, 12)";
|
|
8
8
|
}
|
|
9
9
|
export declare abstract class ElevationBoxShaodw {
|
|
10
10
|
static readonly Level0 = "box-shadow: none";
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export class ElevationLevel {
|
|
2
|
-
static Level0 = `var(md-sys-elevation-level-0, 0)`;
|
|
3
|
-
static Level1 = `var(md-sys-elevation-level-1, 1)`;
|
|
4
|
-
static Level2 = `var(md-sys-elevation-level-2, 3)`;
|
|
5
|
-
static Level3 = `var(md-sys-elevation-level-3, 6)`;
|
|
6
|
-
static Level4 = `var(md-sys-elevation-level-4, 8)`;
|
|
7
|
-
static Level5 = `var(md-sys-elevation-level-5, 12)`;
|
|
2
|
+
static Level0 = `var(--md-sys-elevation-level-0, 0)`;
|
|
3
|
+
static Level1 = `var(--md-sys-elevation-level-1, 1)`;
|
|
4
|
+
static Level2 = `var(--md-sys-elevation-level-2, 3)`;
|
|
5
|
+
static Level3 = `var(--md-sys-elevation-level-3, 6)`;
|
|
6
|
+
static Level4 = `var(--md-sys-elevation-level-4, 8)`;
|
|
7
|
+
static Level5 = `var(--md-sys-elevation-level-5, 12)`;
|
|
8
8
|
}
|
|
9
9
|
export class ElevationBoxShaodw {
|
|
10
10
|
static Level0 = `box-shadow: none`;
|