@designcrowd/fe-shared-lib 1.5.12-kp-2 → 1.5.12-kp-3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@designcrowd/fe-shared-lib",
3
- "version": "1.5.12-kp-2",
3
+ "version": "1.5.12-kp-3",
4
4
  "scripts": {
5
5
  "start": "run-p storybook watch:translation",
6
6
  "build": "npm run build:css --production",
@@ -31,6 +31,7 @@
31
31
  :domain-name-items="domainNameItems"
32
32
  :currency="userCurrency"
33
33
  :model-value="modelValue"
34
+ @on-buy-now-click="onBuyNowClick"
34
35
  />
35
36
  </template>
36
37
  </Modal>
@@ -191,6 +192,9 @@ export default {
191
192
  onCloseModal() {
192
193
  this.$emit('close-modal');
193
194
  },
195
+ onBuyNowClick() {
196
+ this.$emit('on-buy-now-click');
197
+ },
194
198
  onSearchTextInputChange(newVal) {
195
199
  this.searchText = newVal;
196
200
  },