cja-phoenix 0.2.7 → 0.2.8

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.
@@ -38,6 +38,11 @@ withDefaults(
38
38
  column-gap: $grid-column-gap-lg;
39
39
  padding-left: $grid-side-padding-lg;
40
40
  padding-right: $grid-side-padding-lg;
41
+ }
42
+
43
+ @media screen and (min-width: 1200px) {
44
+ padding-left: $grid-side-padding-xl;
45
+ padding-right: $grid-side-padding-xl;
41
46
  max-width: 1440px;
42
47
  margin-left: auto;
43
48
  margin-right: auto;
package/src/index.ts CHANGED
@@ -4,7 +4,6 @@ import VueTippy from "vue-tippy";
4
4
 
5
5
  function install(app: App) {
6
6
  for (const key in components) {
7
- // @ts-expect-error
8
7
  app.component(key, components[key]);
9
8
  }
10
9
 
@@ -0,0 +1,5 @@
1
+ export interface CheckoutMilestone {
2
+ status: "past" | "current" | "future";
3
+ title: string;
4
+ description?: string;
5
+ }
@@ -2,5 +2,6 @@ import { MacroStep } from "./MacroStep";
2
2
  import { Tab } from "./Tab";
3
3
  import { SelectOption } from "./SelectOption";
4
4
  import { TileOption } from "./TileOption";
5
+ import { CheckoutMilestone } from "./CheckoutMilestone";
5
6
 
6
- export type { MacroStep, Tab, SelectOption, TileOption };
7
+ export type { MacroStep, Tab, SelectOption, TileOption, CheckoutMilestone };