@rebilly/revel 6.9.0 → 6.10.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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [6.10.0](https://github.com/Rebilly/rebilly/compare/revel-v6.9.0...revel-v6.10.0) (2024-01-15)
2
+
3
+
4
+ ### Features
5
+
6
+ * **billing-portal:** Setup change seats modal ([#2874](https://github.com/Rebilly/rebilly/issues/2874)) ([59c63f6](https://github.com/Rebilly/rebilly/commit/59c63f6b27e25fee0efb38d2b2a5aad6bc2811d3))
7
+
1
8
  ## [6.9.0](https://github.com/Rebilly/rebilly/compare/revel-v6.8.0...revel-v6.9.0) (2024-01-15)
2
9
 
3
10
 
@@ -54,7 +54,7 @@ declare const _default: import("vue").DefineComponent<{
54
54
  };
55
55
  classes(): Record<string, boolean>;
56
56
  }, {
57
- submit(): void;
57
+ submit(data?: object): void;
58
58
  close(): void;
59
59
  /**
60
60
  * Assures that the modal container is focused Or at least
package/dist/revel.mjs CHANGED
@@ -11825,8 +11825,8 @@ const _L = /* @__PURE__ */ Z(vL, [["render", kL]]), IL = U({
11825
11825
  this.leave();
11826
11826
  },
11827
11827
  methods: {
11828
- submit() {
11829
- this.$emit("submit");
11828
+ submit(M) {
11829
+ this.$emit("submit", M);
11830
11830
  },
11831
11831
  close() {
11832
11832
  this.$emit("close");
@@ -11915,10 +11915,16 @@ function GL(M, b, z, p, o, O) {
11915
11915
  ]),
11916
11916
  m("div", jL, [
11917
11917
  M.$slots["left-actions"] ? (r(), d("div", YL, [
11918
- X(M.$slots, "left-actions")
11918
+ X(M.$slots, "left-actions", {
11919
+ submit: M.submit,
11920
+ close: M.close
11921
+ })
11919
11922
  ])) : T("", !0),
11920
11923
  m("div", UL, [
11921
- X(M.$slots, "right-actions", {}, () => [
11924
+ X(M.$slots, "right-actions", {
11925
+ submit: M.submit,
11926
+ close: M.close
11927
+ }, () => [
11922
11928
  x(e, {
11923
11929
  class: I({ "r-inline-3": M.$slots.actions }),
11924
11930
  "aria-label": "close",
@@ -11929,7 +11935,10 @@ function GL(M, b, z, p, o, O) {
11929
11935
  ]),
11930
11936
  _: 1
11931
11937
  }, 8, ["class", "onClick"]),
11932
- X(M.$slots, "actions")
11938
+ X(M.$slots, "actions", {
11939
+ submit: M.submit,
11940
+ close: M.close
11941
+ })
11933
11942
  ])
11934
11943
  ])
11935
11944
  ])