Skip to content
ripple-ui-forms / 2.9.1-next.0394d9a6a.1457

ripple-ui-forms 2.9.1-next.0394d9a6a.1457

Install from the command line:
Learn more about npm packages
$ npm install @dpc-sdp/ripple-ui-forms@2.9.1-next.0394d9a6a.1457
Install via package.json:
"@dpc-sdp/ripple-ui-forms": "2.9.1-next.0394d9a6a.1457"

About this version

Ripple UI Forms

A Vue 3 form component library built with Formkit. View the Ripple storybook to start exploring available components.

Form fields can be used individually <RplFormInput> to handcraft form experiences. However, using the <RplForm> component and providing a form schema provides a simpler way to define and generate forms.

<template>
  <RplForm
    id="shorten-url"
    title="URL Shorten"
    :schema="[
      {
        $formkit: 'RplFormEmail',
        label: 'Email Address',
        id: 'email',
        name: 'email',
        validation: 'required'
      },
      {
        $formkit: 'RplFormActions',
        label: 'Subscribe',
        id: 'submit'
      }
    ]"
    :submissionState="{
      status: 'error',
      title: 'Error',
      message: 'Sorry, something went wrong.'
    }"
    @submit="({ data }) => { postFormData(data) }"
  >
  </RplForm>
</template>

SDP Platform (Tide)

If you're using this package within a Tide environment you don't need to directly install it, it will be installed as a dependency of @dpc-sdp/nuxt-ripple and all components will be available globally, if you wish to be explicit you can import them from #components.

The details below relate to using this package outside of Tide.

Installation

npm install @dpc-sdp/ripple-ui-forms

Usage (Nuxt)

Ripple UI Forms exports a Nuxt 3 module that you can add to your nuxt config, note the addition of /nuxt.

export default defineNuxtConfig({
  modules: [
    '@dpc-sdp/ripple-ui-forms/nuxt'
  ]
})

Note: Nuxt 2 is not supported.

There is no need to import the components as they will be registered globally by the nuxt module.

<template>
  <RplFormInput id="name" name="name" type="text" />
</template>

Usage (Vue)

Usage in a Vue app is unfortunately not currently possible, we hope to support this in the future.

Details


Assets

  • ripple-ui-forms-2.9.1-next.0394d9a6a.1457.tgz

Download activity

  • Total downloads 0
  • Last 30 days 0
  • Last week 0
  • Today 0