1.0.25 • Published 13 days ago

@limanmys/frontend-kit v1.0.25

Weekly downloads
-
License
-
Repository
github
Last release
13 days ago

Liman Extension Development Utilities Frontend Kit

This kit is designed to streamline the process of developing extensions for your extensions. It provides a set of utilities and tools that simplify the tasks of creating and deploying frontend extensions.

Features

  • Extension Generator: A tool that automates the creation of basic extension structures, saving you time and ensuring consistency across your extensions.
  • Deployment Tools: Simplify the process of deploying your extensions to your application.

Getting Started

  1. Clone the repository
  2. Install the dependencies with pnpm install
  3. Start developing your extension

Modal Usage

const openModal = () => {
  modal.open({
    title: "Test",
    formMode: true,
    formOptions: {
      options: {
        submitBtn: {
          text: "Gönder",
          show: true,
        },
        onSubmit: (data: any) => {
          console.log(data)
        },
      },
      rule: [
        {
          type: "input",
          field: "goods_name",
          title: "Name",
          validate: [
            {
              required: true,
              trigger: "blur",
              message: "Name cannot be empty",
            },
          ],
        },
        {
          type: "checkbox",
          field: "label",
          title: "Select",
          options: [
            { label: "a", value: 0 },
            { label: "b", value: 1 },
            { label: "c", value: 2 },
            { label: "d", value: 3 },
          ],
        },
      ],
    },
  })
}
1.0.25

13 days ago

1.0.24

2 months ago

1.0.23

3 months ago

1.0.22

3 months ago

1.0.18

3 months ago

1.0.21

3 months ago

1.0.20

3 months ago

1.0.17

3 months ago

1.0.16

4 months ago

1.0.15

4 months ago

1.0.14

4 months ago

1.0.13

4 months ago

1.0.12

4 months ago

1.0.9

4 months ago

1.0.8

4 months ago

1.0.11

4 months ago

1.0.10

4 months ago

1.0.7

4 months ago

1.0.6

4 months ago

1.0.5

4 months ago

1.0.4

4 months ago

1.0.3

4 months ago

1.0.2

4 months ago

1.0.1

4 months ago

1.0.0

4 months ago