@neatui/nuxt 1.2.5 → 1.2.6

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": "@neatui/nuxt",
3
- "version": "1.2.5",
3
+ "version": "1.2.6",
4
4
  "description": "NeatUI component library for Nuxt 3",
5
5
  "main": "./src/index.ts",
6
6
  "license": "MIT",
@@ -37,7 +37,7 @@
37
37
  "@fekit/scrollto": "^3.0.3",
38
38
  "@fekit/toast": "^2.7.2",
39
39
  "@fekit/utils": "^4.3.1",
40
- "@neatui/css": "^3.10.3",
40
+ "@neatui/css": "^3.10.6",
41
41
  "@rollup/plugin-commonjs": "^26.0.1",
42
42
  "@rollup/plugin-node-resolve": "^15.2.3",
43
43
  "@vue/compiler-sfc": "^3.4.30",
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div :ui-form="`@a type:select${sz ? 'sz:' + sz : ''}`" :ui-form-open="state.show ? 'show' : ''">
2
+ <div :ui-form="`@a type:select sz:${sz}`" :ui-form-open="state.show ? 'show' : ''">
3
3
  <IFollowView ref="ifollow" tipBoxClass="ny-sm nx-no" tipBoxStyle="min-width: 100%" @onshow="onshow" @onhide="onhide">
4
4
  <Input
5
5
  v-bind="{ placeholder, rules, theme, sz, co, block, ready, type, tips, disabled, readonly: true, clearable: false, verify, prefix, suffix, interacted }"
@@ -13,7 +13,7 @@
13
13
  </Input>
14
14
  <template #tips v-if="!readonly && !disabled">
15
15
  <div v-if="search" class="ny-sm nx-sl">
16
- <Input v-model="state.search" sz="s">
16
+ <Input v-model="state.search" :sz="sz">
17
17
  <template #suffix>
18
18
  <i ui-form-search="" class="co-note"></i>
19
19
  </template>
@@ -159,7 +159,7 @@
159
159
  placeholder: '',
160
160
  rules: () => [],
161
161
  theme: '@a',
162
- sz: '',
162
+ sz: 'm',
163
163
  co: '',
164
164
  block: true,
165
165
  ready: false,