@solfacil/girassol 0.17.0-beta-tabs-slots.1 → 0.17.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 +1 -0
- package/dist/components.json +1 -1
- package/dist/girassol.es.js +7410 -6835
- package/dist/girassol.umd.js +5 -5
- package/dist/style.css +1 -1
- package/dist/types/components/date-picker/DatePicker.vue.d.ts +18 -99
- package/dist/types/components/file-upload/Download.vue.d.ts +12 -82
- package/dist/types/components/file-upload/FileUpload.vue.d.ts +32 -157
- package/dist/types/components/file-upload/Upload.vue.d.ts +19 -103
- package/dist/types/components/forms/checkbox/checkbox/Checkbox.vue.d.ts +13 -81
- package/dist/types/components/forms/inputs/input-core/Input.vue.d.ts +15 -91
- package/dist/types/components/forms/inputs/input-password/InputPassword.vue.d.ts +23 -117
- package/dist/types/components/forms/inputs/input-textarea/InputTextarea.vue.d.ts +25 -121
- package/dist/types/components/forms/radio/radio/Radio.vue.d.ts +12 -78
- package/dist/types/components/forms/switch/Switch.vue.d.ts +21 -108
- package/dist/types/components/informations/text-value/TextValue.vue.d.ts +3 -3
- package/dist/types/components/list/ListItemTextValue.vue.d.ts +4 -4
- package/dist/types/components/loader/CircleLoader.vue.d.ts +10 -72
- package/dist/types/components/menus/menu/Menu.vue.d.ts +7 -7
- package/dist/types/components/{modal → modals/modal}/Modal.vue.d.ts +0 -0
- package/dist/types/components/{modal → modals/modal}/index.d.ts +0 -0
- package/dist/types/components/{modal → modals/modal}/modal.spec.d.ts +0 -0
- package/dist/types/components/{modal → modals/modal}/types.d.ts +0 -0
- package/dist/types/components/modals/onboarding/Onboarding.vue.d.ts +69 -0
- package/dist/types/components/modals/onboarding/Slider.vue.d.ts +31 -0
- package/dist/types/components/modals/onboarding/index.d.ts +2 -0
- package/dist/types/components/modals/onboarding/onboading.spec.d.ts +1 -0
- package/dist/types/components/modals/onboarding/types.d.ts +12 -0
- package/dist/types/components/pagination/Pagination.vue.d.ts +27 -148
- package/dist/types/components/search/Search.vue.d.ts +26 -137
- package/dist/types/components/steps/Steps.vue.d.ts +14 -84
- package/dist/types/components/tabs/Tabs.vue.d.ts +23 -114
- package/dist/types/index.d.ts +1037 -2461
- package/package.json +3 -3
package/dist/components.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ import '@vue/runtime-core'
|
|
|
24
24
|
SolMenuItemLink: typeof import('@solfacil/girassol')['SolMenuItemLink']
|
|
25
25
|
SolMenuNavigationLinks: typeof import('@solfacil/girassol')['SolMenuNavigationLinks']
|
|
26
26
|
SolModal: typeof import('@solfacil/girassol')['SolModal']
|
|
27
|
+
SolOnboarding: typeof import('@solfacil/girassol')['SolOnboarding']
|
|
27
28
|
SolPagination: typeof import('@solfacil/girassol')['SolPagination']
|
|
28
29
|
SolEmptyState: typeof import('@solfacil/girassol')['SolEmptyState']
|
|
29
30
|
SolSearch: typeof import('@solfacil/girassol')['SolSearch']
|
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","SolDatePicker","SolCollapsible","SolSteps","SolTextValue","SolFileUpload","SolMenuItemSeparator"]}
|
|
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","SolOnboarding","SolPagination","SolEmptyState","SolSearch","SolDatePicker","SolCollapsible","SolSteps","SolTextValue","SolFileUpload","SolMenuItemSeparator"]}
|