@praxisui/core 2.0.0-beta.0 → 3.0.0-beta.1
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/fesm2022/praxisui-core.mjs +11 -0
- package/fesm2022/praxisui-core.mjs.map +1 -1
- package/index.d.ts +7 -1
- package/package.json +1 -1
|
@@ -4185,6 +4185,7 @@ class ComponentMetadataRegistry {
|
|
|
4185
4185
|
metadataMap = new Map();
|
|
4186
4186
|
componentTypeAliases = {
|
|
4187
4187
|
table: 'praxis-table',
|
|
4188
|
+
chart: 'praxis-chart',
|
|
4188
4189
|
form: 'praxis-dynamic-form',
|
|
4189
4190
|
crud: 'praxis-crud',
|
|
4190
4191
|
tabs: 'praxis-tabs',
|
|
@@ -9635,6 +9636,16 @@ const RULE_PROPERTY_SCHEMA = {
|
|
|
9635
9636
|
{ value: 'none', label: 'Nada' },
|
|
9636
9637
|
],
|
|
9637
9638
|
},
|
|
9639
|
+
{
|
|
9640
|
+
name: 'sectionHeader.size',
|
|
9641
|
+
type: 'enum',
|
|
9642
|
+
label: 'Tamanho do avatar',
|
|
9643
|
+
enumValues: [
|
|
9644
|
+
{ value: 'sm', label: 'Pequeno' },
|
|
9645
|
+
{ value: 'md', label: 'Médio' },
|
|
9646
|
+
{ value: 'lg', label: 'Grande' },
|
|
9647
|
+
],
|
|
9648
|
+
},
|
|
9638
9649
|
{ name: 'sectionHeader.initialsMaxLength', type: 'number', label: 'Máximo de iniciais' },
|
|
9639
9650
|
{ name: 'className', type: 'string', label: 'Classe CSS' },
|
|
9640
9651
|
{ name: 'style', type: 'object', label: 'Estilos inline' },
|