srcdev-nuxt-forms 0.0.14 → 0.0.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.
package/nuxt.config.ts CHANGED
@@ -8,7 +8,7 @@ export default defineNuxtConfig({
8
8
  components: [
9
9
  {
10
10
  path: '~/components',
11
- pathPrefix: false,
11
+ pathPrefix: true,
12
12
  },
13
13
  ],
14
14
  })
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "srcdev-nuxt-forms",
3
3
  "type": "module",
4
- "version": "0.0.14",
4
+ "version": "0.0.15",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev",
package/pages/index.vue CHANGED
@@ -5,19 +5,19 @@
5
5
  <div>
6
6
  <h1>Sample form page</h1>
7
7
 
8
- <FormWrapper width="medium">
8
+ <FormsUiFormWrapper width="medium">
9
9
  <template #default>
10
10
  <form>
11
11
  <p>Form content</p>
12
- <InputField width="wide" :has-gutter="true">
12
+ <FormsUiField width="wide" :has-gutter="true">
13
13
  <template #default>
14
14
  <p>Input text</p>
15
- <InputText />
15
+ <FormsInputTextCore />
16
16
  </template>
17
- </InputField>
17
+ </FormsUiField>
18
18
  </form>
19
19
  </template>
20
- </FormWrapper>
20
+ </FormsUiFormWrapper>
21
21
  </div>
22
22
  </template>
23
23
  </NuxtLayout>