@esperanca-ui/componentes 2.14.23 → 2.14.24
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/COMPONENTS.md +0 -2
- package/dist/componentes-esperanca.es.js +5414 -5735
- package/dist/componentes-esperanca.es.js.map +1 -1
- package/dist/componentes-esperanca.umd.js +53 -53
- package/dist/componentes-esperanca.umd.js.map +1 -1
- package/dist/components/DateInput/DateInput.d.ts +5 -0
- package/dist/components/DateTimeInput/DateTimeInput.d.ts +5 -0
- package/dist/index.d.ts +4 -4
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/components/LoginForm/LoginForm.d.ts +0 -31
- package/dist/components/LoginScreen/LoginScreen.d.ts +0 -66
package/COMPONENTS.md
CHANGED
|
@@ -200,8 +200,6 @@ export function TopQuickActions() {
|
|
|
200
200
|
| `FormSidebar` | `import { FormSidebar } from '@esperanca-ui/componentes'` | `<FormSidebar isOpen={open} onClose={...}>...</FormSidebar>` |
|
|
201
201
|
| `Grid` | `import { Grid } from '@esperanca-ui/componentes'` | `<Grid columns={{ base: 1, md: 2 }} gap={4}>...</Grid>` |
|
|
202
202
|
| `Input` | `import { Input } from '@esperanca-ui/componentes'` | `<Input label="Email" placeholder="Digite" />` |
|
|
203
|
-
| `LoginForm` | `import { LoginForm } from '@esperanca-ui/componentes'` | `<LoginForm emailValue={email} onEmailChange={setEmail} passwordValue={password} onPasswordChange={setPassword} onSubmit={...} />` |
|
|
204
|
-
| `LoginScreen` | `import { LoginScreen } from '@esperanca-ui/componentes'` | `<LoginScreen step="credentials" onSubmit={...} />` |
|
|
205
203
|
| `LineChart` | `import { LineChart } from '@esperanca-ui/componentes'` | `<LineChart data={data} series={series} lineWidth={2.5} axisFontSize={11} valueLabelFontSize={10} valueLabelFontWeight={600} legendPosition="top" showValueLabels enableUserPreferences preferencesStorageKey="receita-board" />` |
|
|
206
204
|
| `BarChart` | `import { BarChart } from '@esperanca-ui/componentes'` | `<BarChart data={data} series={series} xAxisLabel="Mes" yAxisLabel="Valor" yAxisTickWidth={112} axisFontSize={11} valueLabelFontSize={10} valueLabelFontWeight={600} showValueLabels enableUserPreferences />` |
|
|
207
205
|
| `Loading` | `import { Loading } from '@esperanca-ui/componentes'` | `<Loading variant="spinner" />` ou `<Loading fullScreen text="Validando acesso" />` |
|