@ama-pt/agora-design-system 1.0.0 → 1.0.2
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/README.md +2 -2
- package/artifacts/dist/index.mjs +958 -960
- package/artifacts/dist/index.mjs.map +1 -1
- package/artifacts/dist/index.umd.js +1 -1
- package/artifacts/dist/index.umd.js.map +1 -1
- package/artifacts/dist/types/components/button-group/button-group.d.ts +2 -2
- package/artifacts/dist/types/components/input-email-bar/input-email-bar.d.ts +2 -2
- package/artifacts/dist/types/components/input-search/input-search.d.ts +1 -1
- package/artifacts/dist/types/components/input-search-bar/input-search-bar.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { FC, HtmlHTMLAttributes, ReactElement } from 'react';
|
|
2
|
-
import { BooleanProp } from '../../models';
|
|
3
1
|
import { ButtonProps, ButtonVariant } from '../../components/button';
|
|
2
|
+
import { BooleanProp } from '../../models';
|
|
3
|
+
import { FC, HtmlHTMLAttributes, ReactElement } from 'react';
|
|
4
4
|
import './button-group.scss';
|
|
5
5
|
export type ButtonGroupOrientation = 'horizontal' | 'vertical';
|
|
6
6
|
export interface ButtonGroupProps extends Omit<HtmlHTMLAttributes<HTMLDivElement>, 'onChange'> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import React, { ComponentPropsWithRef, ReactNode } from 'react';
|
|
2
|
-
import { BooleanProp } from '../../models/boolean-type';
|
|
3
1
|
import { FeedbackState } from '../../models';
|
|
2
|
+
import { BooleanProp } from '../../models/boolean-type';
|
|
3
|
+
import React, { ComponentPropsWithRef, ReactNode } from 'react';
|
|
4
4
|
import './input-email-bar.scss';
|
|
5
5
|
export interface InputEmailBarProps extends ComponentPropsWithRef<'input'> {
|
|
6
6
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React, { ComponentPropsWithRef, ReactNode } from 'react';
|
|
2
1
|
import { BooleanProp, FeedbackState } from '../../models';
|
|
2
|
+
import React, { ComponentPropsWithRef, ReactNode } from 'react';
|
|
3
3
|
import './input-search.scss';
|
|
4
4
|
export interface InputSearchProps extends ComponentPropsWithRef<'input'> {
|
|
5
5
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React, { ComponentPropsWithRef, Ref } from 'react';
|
|
2
1
|
import { BooleanProp } from '../../models';
|
|
2
|
+
import React, { ComponentPropsWithRef, Ref } from 'react';
|
|
3
3
|
import './input-search-bar.scss';
|
|
4
4
|
export interface InputSearchBarElement extends HTMLInputElement {
|
|
5
5
|
/**
|