@central-design-system/components 3.0.0-alpha.4 → 3.0.0-alpha.5

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.
Files changed (32) hide show
  1. package/dist/cds.css +1 -1
  2. package/dist/cds.d.ts +4 -3
  3. package/dist/cds.es.js +4036 -3634
  4. package/dist/cds.umd.js +1 -1
  5. package/dist/components/CdsButton/CdsButton.vue.d.ts +9 -0
  6. package/dist/components/CdsCheckbox/CdsCheckbox.vue.d.ts +11 -11
  7. package/dist/components/CdsCheckbox/CdsCheckboxGroup.vue.d.ts +18 -18
  8. package/dist/components/CdsCombobox/CdsCombobox.vue.d.ts +109 -167
  9. package/dist/components/CdsDatePicker/CdsDatePicker.vue.d.ts +17 -17
  10. package/dist/components/CdsDatePicker/composable/calendar.d.ts +3 -1
  11. package/dist/components/CdsDropdown/CdsDropdown.vue.d.ts +76 -77
  12. package/dist/components/CdsForm/CdsForm.vue.d.ts +1 -1
  13. package/dist/components/CdsInput/CdsInput.vue.d.ts +11 -11
  14. package/dist/components/CdsRadioButton/CdsRadio.vue.d.ts +18 -18
  15. package/dist/components/CdsRadioButton/CdsRadioButton.vue.d.ts +18 -18
  16. package/dist/components/CdsSelect/CdsSelect.vue.d.ts +51 -33
  17. package/dist/components/CdsTextArea/CdsTextArea.vue.d.ts +83 -62
  18. package/dist/components/CdsTextInput/CdsTextInput.vue.d.ts +37 -73
  19. package/dist/components/CdsTimePicker/CdsTimePicker.vue.d.ts +171 -0
  20. package/dist/components/CdsTimePicker/composable/index.d.ts +1 -0
  21. package/dist/components/CdsTimePicker/composable/time.d.ts +134 -0
  22. package/dist/components/index.d.ts +2 -1
  23. package/dist/composable/datetime.d.ts +2 -17
  24. package/dist/composable/index.d.ts +1 -0
  25. package/dist/composable/readonly.d.ts +19 -0
  26. package/dist/composable/validation.d.ts +0 -16
  27. package/dist/utils/date.d.ts +2 -1
  28. package/dist/utils/helpers.d.ts +1 -0
  29. package/package.json +1 -1
  30. package/src/scss/themes/index.ts +1 -1
  31. package/src/utils/date.ts +9 -3
  32. package/src/utils/helpers.ts +2 -1
package/dist/cds.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  /**
2
2
  * Automatically generated by CDS CLI
3
- * Generated on 5/10/2023, 7:16:03 PM
3
+ * Generated on 5/23/2023, 3:10:54 PM
4
4
  **/
5
5
  import type { Plugin } from 'vue';
6
- import { CdsBadge, CdsBreadcrumbs, CdsBreadcrumbsItem, CdsButton, CdsCheckbox, CdsCheckboxGroup, CdsCombobox, CdsDatePicker, CdsDrawer, CdsDropdown, CdsEmptyState, CdsForm, CdsCol, CdsGrid, CdsRow, CdsIcon, CdsInput, CdsInputCounter, CdsInputDescription, CdsInputLabel, CdsInputMessages, CdsLink, CdsList, CdsListGroup, CdsListItem, CdsLoader, CdsMenu, CdsOverlay, CdsRadio, CdsRadioButton, CdsSelect, CdsSidebar, CdsStages, CdsStatus, CdsTag, CdsTextArea, CdsTextInput } from './components';
6
+ import { CdsBadge, CdsBreadcrumbs, CdsBreadcrumbsItem, CdsButton, CdsCheckbox, CdsCheckboxGroup, CdsCombobox, CdsDatePicker, CdsDrawer, CdsDropdown, CdsEmptyState, CdsForm, CdsCol, CdsGrid, CdsRow, CdsIcon, CdsInput, CdsInputCounter, CdsInputDescription, CdsInputLabel, CdsInputMessages, CdsLink, CdsList, CdsListGroup, CdsListItem, CdsLoader, CdsMenu, CdsOverlay, CdsRadio, CdsRadioButton, CdsSelect, CdsSidebar, CdsStages, CdsStatus, CdsTag, CdsTextArea, CdsTextInput, CdsTimePicker } from './components';
7
7
  export * from './directives';
8
8
  export * from './plugins';
9
9
  export * from './utils';
@@ -46,9 +46,10 @@ declare module '@vue/runtime-core' {
46
46
  CdsTag: typeof CdsTag;
47
47
  CdsTextArea: typeof CdsTextArea;
48
48
  CdsTextInput: typeof CdsTextInput;
49
+ CdsTimePicker: typeof CdsTimePicker;
49
50
  }
50
51
  }
51
- export { CdsBadge, CdsBreadcrumbs, CdsBreadcrumbsItem, CdsButton, CdsCheckbox, CdsCheckboxGroup, CdsCombobox, CdsDatePicker, CdsDrawer, CdsDropdown, CdsEmptyState, CdsForm, CdsCol, CdsGrid, CdsRow, CdsIcon, CdsInput, CdsInputCounter, CdsInputDescription, CdsInputLabel, CdsInputMessages, CdsLink, CdsList, CdsListGroup, CdsListItem, CdsLoader, CdsMenu, CdsOverlay, CdsRadio, CdsRadioButton, CdsSelect, CdsSidebar, CdsStages, CdsStatus, CdsTag, CdsTextArea, CdsTextInput };
52
+ export { CdsBadge, CdsBreadcrumbs, CdsBreadcrumbsItem, CdsButton, CdsCheckbox, CdsCheckboxGroup, CdsCombobox, CdsDatePicker, CdsDrawer, CdsDropdown, CdsEmptyState, CdsForm, CdsCol, CdsGrid, CdsRow, CdsIcon, CdsInput, CdsInputCounter, CdsInputDescription, CdsInputLabel, CdsInputMessages, CdsLink, CdsList, CdsListGroup, CdsListItem, CdsLoader, CdsMenu, CdsOverlay, CdsRadio, CdsRadioButton, CdsSelect, CdsSidebar, CdsStages, CdsStatus, CdsTag, CdsTextArea, CdsTextInput, CdsTimePicker };
52
53
  declare const plugin: Plugin;
53
54
  export { plugin as Cds };
54
55
  export default plugin;