@solfacil/girassol 0.12.0 → 0.14.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/dist/components.d.ts +4 -0
- package/dist/components.json +1 -1
- package/dist/girassol.es.js +12137 -2962
- package/dist/girassol.umd.js +9 -8
- package/dist/style.css +1 -1
- package/dist/types/components/collapsible/Collapsible.vue.d.ts +114 -0
- package/dist/types/components/collapsible/collapsible.spec.d.ts +1 -0
- package/dist/types/components/collapsible/index.d.ts +2 -0
- package/dist/types/components/collapsible/types.d.ts +4 -0
- package/dist/types/components/date-picker/DatePicker.vue.d.ts +129 -0
- package/dist/types/components/date-picker/datepicker.spec.d.ts +1 -0
- package/dist/types/components/date-picker/index.d.ts +2 -0
- package/dist/types/components/date-picker/types.d.ts +15 -0
- package/dist/types/components/empty-state/EmptyState.vue.d.ts +5 -5
- package/dist/types/components/filters/chip/removable-chip/RemovableChip.vue.d.ts +4 -4
- package/dist/types/components/filters/chip/selectable-chip/SelectableChip.vue.d.ts +1 -1
- package/dist/types/components/forms/button/button/Button.vue.d.ts +4 -4
- package/dist/types/components/forms/checkbox/checkbox-group/CheckboxGroup.vue.d.ts +1 -1
- package/dist/types/components/forms/inputs/input-text/InputText.vue.d.ts +4 -4
- package/dist/types/components/forms/inputs/input-textarea/InputTextarea.vue.d.ts +8 -8
- package/dist/types/components/forms/radio/radio-group/RadioGroup.vue.d.ts +1 -1
- package/dist/types/components/forms/select/Select.vue.d.ts +10 -10
- package/dist/types/components/informations/tag/Tag.vue.d.ts +4 -4
- package/dist/types/components/informations/text-value/TextValue.vue.d.ts +27 -28
- package/dist/types/components/informations/text-value/index.d.ts +2 -0
- package/dist/types/components/informations/text-value/text-value.spec.d.ts +1 -0
- package/dist/types/components/informations/text-value/types.d.ts +7 -0
- package/dist/types/components/list/ListItemTextValue.vue.d.ts +105 -0
- package/dist/types/components/modal/Modal.vue.d.ts +9 -9
- package/dist/types/components/search/Search.vue.d.ts +10 -10
- package/dist/types/components/steps/Steps.vue.d.ts +112 -0
- package/dist/types/components/steps/index.d.ts +2 -0
- package/dist/types/components/steps/steps.spec.d.ts +1 -0
- package/dist/types/components/steps/types.d.ts +12 -0
- package/dist/types/index.d.ts +1104 -541
- package/package.json +11 -9
package/dist/components.d.ts
CHANGED
|
@@ -27,6 +27,10 @@ import '@vue/runtime-core'
|
|
|
27
27
|
SolPagination: typeof import('@solfacil/girassol')['SolPagination']
|
|
28
28
|
SolEmptyState: typeof import('@solfacil/girassol')['SolEmptyState']
|
|
29
29
|
SolSearch: typeof import('@solfacil/girassol')['SolSearch']
|
|
30
|
+
SolDatePicker: typeof import('@solfacil/girassol')['SolDatePicker']
|
|
31
|
+
SolCollapsible: typeof import('@solfacil/girassol')['SolCollapsible']
|
|
32
|
+
SolSteps: typeof import('@solfacil/girassol')['SolSteps']
|
|
33
|
+
SolTextValue: typeof import('@solfacil/girassol')['SolTextValue']
|
|
30
34
|
}
|
|
31
35
|
}
|
|
32
36
|
|
package/dist/components.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"components":["SolButton","SolButtonDestructive","SolInputTextarea","SolInputText","SolInputTextPassword","SolRadio","SolRadioGroup","SolCheckbox","SolCheckboxGroup","SolSwitch","SolSelect","SolRemovableChip","SolSelectableChip","SolTag","SolAlert","SolAccordion","SolList","SolTabs","SolMenu","SolMenuItem","SolMenuItemLink","SolMenuNavigationLinks","SolModal","SolPagination","SolEmptyState","SolSearch"]}
|
|
1
|
+
{"components":["SolButton","SolButtonDestructive","SolInputTextarea","SolInputText","SolInputTextPassword","SolRadio","SolRadioGroup","SolCheckbox","SolCheckboxGroup","SolSwitch","SolSelect","SolRemovableChip","SolSelectableChip","SolTag","SolAlert","SolAccordion","SolList","SolTabs","SolMenu","SolMenuItem","SolMenuItemLink","SolMenuNavigationLinks","SolModal","SolPagination","SolEmptyState","SolSearch","SolDatePicker","SolCollapsible","SolSteps","SolTextValue"]}
|