@linzjs/lui 20.0.3 → 21.0.0

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,5 +1,5 @@
1
1
  {
2
- "version": "20.0.3",
2
+ "version": "21.0.0",
3
3
  "license": "MIT",
4
4
  "repository": {
5
5
  "type": "git",
@@ -153,7 +153,6 @@
153
153
  "camelcase": "^6.0.0",
154
154
  "clsx": "^1.1.0",
155
155
  "container-query-polyfill": "0.1.2",
156
- "formik": "^2.1.4",
157
156
  "framer-motion": "4.1.17",
158
157
  "lottie-web": "^5.9.1",
159
158
  "react-loading-skeleton": "^3.1.0",
@@ -1,9 +0,0 @@
1
- import { ReactNode } from 'react';
2
- import { LuiCommonInputProps } from '../LuiFormikForm';
3
- export declare function LuiFormikCheckbox(props: {
4
- name: string;
5
- value: string;
6
- label: ReactNode;
7
- htmlFor?: string;
8
- className?: string;
9
- } & LuiCommonInputProps): JSX.Element;
@@ -1,10 +0,0 @@
1
- /// <reference types="react" />
2
- import { FormikConfig, FormikValues } from 'formik';
3
- export declare function LuiFormikForm<Values extends FormikValues = FormikValues, ExtraProps = {}>(props: FormikConfig<Values> & ExtraProps & {
4
- className?: string;
5
- }): JSX.Element;
6
- export interface LuiCommonInputProps {
7
- inputProps?: object;
8
- required?: boolean;
9
- disabled?: boolean;
10
- }
@@ -1,8 +0,0 @@
1
- import React from 'react';
2
- export declare const LuiFormikFormLabel: React.FC<React.PropsWithChildren<{
3
- for: string;
4
- label: string;
5
- className?: string;
6
- required?: boolean;
7
- tooltip?: string;
8
- }>>;
@@ -1,6 +0,0 @@
1
- import React from 'react';
2
- export declare const LuiFormikFormSubmitButton: React.ComponentType<{
3
- className?: string | undefined;
4
- disabled?: boolean | undefined;
5
- 'data-testid'?: string | undefined;
6
- }>;
@@ -1,8 +0,0 @@
1
- import React from 'react';
2
- import { LuiCommonInputProps } from '../LuiFormikForm';
3
- export declare const LuiFormikRadioButton: React.FC<React.PropsWithChildren<{
4
- label: string;
5
- className?: string;
6
- value: string;
7
- name: string;
8
- } & LuiCommonInputProps>>;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- export declare const LuiFormikRadioGroup: React.FC<React.PropsWithChildren<{
3
- hint?: string;
4
- legend: string;
5
- name: string;
6
- required?: boolean;
7
- }>>;
@@ -1,11 +0,0 @@
1
- import React from 'react';
2
- import { LuiCommonInputProps } from '../LuiFormikForm';
3
- export declare const LuiFormikSelect: React.ComponentType<{
4
- name: string;
5
- label: string;
6
- className?: string | undefined;
7
- defaultValue?: string | undefined;
8
- helperInfo?: (() => React.Component) | undefined;
9
- tooltip?: string | undefined;
10
- validate?: ((value: string) => string | undefined) | undefined;
11
- } & LuiCommonInputProps>;
@@ -1,17 +0,0 @@
1
- import { FormikContextType } from 'formik';
2
- import React, { ReactNode } from 'react';
3
- import { LuiCommonInputProps } from '../LuiFormikForm';
4
- export declare const LuiFormikTextInput: React.ComponentType<{
5
- name: string;
6
- label?: string | undefined;
7
- className?: string | undefined;
8
- helperInfo?: ReactNode;
9
- tooltip?: string | undefined;
10
- validate?: ((value: string) => string | undefined) | undefined;
11
- onValueChange?: ((newValue: {
12
- value: string;
13
- formik: FormikContextType<any>;
14
- }) => void) | undefined;
15
- validateOnChange?: boolean | undefined;
16
- multiLine?: boolean | undefined;
17
- } & LuiCommonInputProps>;