hl-core 0.0.10-beta.13 → 0.0.10-beta.15

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.
@@ -195,7 +195,13 @@
195
195
  <base-btn :loading="loading" :text="$dataStore.t('payment.copyUrl')" @click="$dataStore.copyToClipboard(formStore.epayLink)" />
196
196
  <base-btn :loading="loading" :text="$dataStore.t('payment.recipientNumber')" @click="openEpayPanel" />
197
197
  <base-btn :loading="loading" :text="$dataStore.t('sign.convertQr')" @click="convertQr(formStore.epayLink)" />
198
- <base-btn v-if="!useEnv().isProduction" :loading="loading" :btn="$styles.greenBtn" :text="$dataStore.t('payment.halykLink')" @click="convertQr(formStore.epayLink, 'halyk_pay_link_template')" />
198
+ <base-btn
199
+ v-if="!useEnv().isProduction"
200
+ :loading="loading"
201
+ :btn="$styles.greenBtn"
202
+ :text="$dataStore.t('payment.halykLink')"
203
+ @click="convertQr(formStore.epayLink, 'halyk_pay_link_template')"
204
+ />
199
205
  </div>
200
206
  </base-form-section>
201
207
  <div v-if="isSendNumberOpen" :class="[$styles.flexColNav]">
package/configs/pwa.ts CHANGED
@@ -54,10 +54,4 @@ export const pwaBaseConfig: Partial<ModuleOptions> = {
54
54
  },
55
55
  registerWebManifestInRouteRules: true,
56
56
  writePlugin: true,
57
- devOptions: {
58
- enabled: true,
59
- suppressWarnings: true,
60
- navigateFallback: '/',
61
- type: 'module',
62
- },
63
57
  };
package/nuxt.config.ts CHANGED
@@ -29,6 +29,9 @@ export default defineNuxtConfig({
29
29
  include: [path.resolve(__dirname, './src/locales/**')],
30
30
  }),
31
31
  ],
32
+ build: {
33
+ chunkSizeWarningLimit: 2000,
34
+ },
32
35
  },
33
36
 
34
37
  vue: { propsDestructure: true },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hl-core",
3
- "version": "0.0.10-beta.13",
3
+ "version": "0.0.10-beta.15",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "nuxt.config.ts",