@salesql/sql_components_vue3 2.0.0 → 2.1.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/README.md +37 -1
- package/dist/constants/events.d.ts +20 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +40 -6
- package/dist/index.es.js +2205 -618
- package/dist/index.es.js.map +1 -1
- package/dist/sql_components_vue3.css +1 -1
- package/dist/ui/DsAlert/DsAlert.vue.d.ts +15 -2
- package/dist/ui/DsAvatar/DsAvatar.types.d.ts +6 -0
- package/dist/ui/DsAvatar/DsAvatar.vue.d.ts +47 -2
- package/dist/ui/DsButton/DsButton.types.d.ts +3 -1
- package/dist/ui/DsButton/DsButton.vue.d.ts +3 -0
- package/dist/ui/DsCell/DsCell.types.d.ts +19 -0
- package/dist/ui/DsCell/DsCell.vue.d.ts +71 -0
- package/dist/ui/DsCell/index.d.ts +2 -0
- package/dist/ui/DsCheckbox/DsCheckbox.types.d.ts +2 -0
- package/dist/ui/DsCheckbox/DsCheckbox.vue.d.ts +10 -1
- package/dist/ui/DsContactValue/DsContactValue.types.d.ts +4 -0
- package/dist/ui/DsContactValue/DsContactValue.vue.d.ts +18 -0
- package/dist/ui/DsCustomTag/DsCustomTag.types.d.ts +9 -0
- package/dist/ui/DsCustomTag/DsCustomTag.vue.d.ts +29 -0
- package/dist/ui/DsCustomTag/index.d.ts +2 -0
- package/dist/ui/DsDataCard/DsDataCard.types.d.ts +2 -0
- package/dist/ui/DsDataCard/DsDataCard.vue.d.ts +58 -1
- package/dist/ui/DsEmptyState/DsEmptyState.types.d.ts +12 -0
- package/dist/ui/DsEmptyState/DsEmptyState.vue.d.ts +53 -0
- package/dist/ui/DsEmptyState/index.d.ts +2 -0
- package/dist/ui/DsInput/DsInput.vue.d.ts +36 -2
- package/dist/ui/DsItemSelectorButton/DsItemSelectorButton.types.d.ts +20 -0
- package/dist/ui/DsItemSelectorButton/DsItemSelectorButton.vue.d.ts +50 -0
- package/dist/ui/DsItemSelectorButton/index.d.ts +2 -0
- package/dist/ui/DsMenuItem/DsMenuItem.types.d.ts +6 -0
- package/dist/ui/DsMenuItem/DsMenuItem.vue.d.ts +42 -0
- package/dist/ui/DsMenuItem/index.d.ts +2 -0
- package/dist/ui/DsModal/DsModal.types.d.ts +10 -0
- package/dist/ui/DsModal/DsModal.vue.d.ts +39 -0
- package/dist/ui/DsNotification/DsNotification.types.d.ts +7 -0
- package/dist/ui/DsNotification/DsNotification.vue.d.ts +14 -3
- package/dist/ui/DsPaginator/DsPaginator.types.d.ts +12 -0
- package/dist/ui/DsPaginator/DsPaginator.vue.d.ts +101 -0
- package/dist/ui/DsPaginator/index.d.ts +2 -0
- package/dist/ui/DsPill/DsPill.types.d.ts +11 -0
- package/dist/ui/DsPill/DsPill.vue.d.ts +46 -0
- package/dist/ui/DsPill/index.d.ts +2 -0
- package/dist/ui/DsPillWithBorder/DsPillWithBorder.types.d.ts +2 -0
- package/dist/ui/DsPillWithBorder/DsPillWithBorder.vue.d.ts +18 -0
- package/dist/ui/DsPillWithBorder/index.d.ts +2 -0
- package/dist/ui/DsRadio/DsRadio.types.d.ts +7 -0
- package/dist/ui/DsRadio/DsRadio.vue.d.ts +55 -0
- package/dist/ui/DsRadio/index.d.ts +2 -0
- package/dist/ui/DsRow/DsRow.types.d.ts +6 -0
- package/dist/ui/DsRow/DsRow.vue.d.ts +37 -0
- package/dist/ui/DsRow/index.d.ts +2 -0
- package/dist/ui/DsSegmentedProgressBar/DsSegmentedProgressBar.types.d.ts +5 -0
- package/dist/ui/DsSegmentedProgressBar/DsSegmentedProgressBar.vue.d.ts +62 -0
- package/dist/ui/DsSegmentedProgressBar/index.d.ts +2 -0
- package/dist/ui/DsSelect/DsSelect.types.d.ts +33 -0
- package/dist/ui/DsSelect/DsSelect.vue.d.ts +126 -0
- package/dist/ui/DsSelect/index.d.ts +2 -0
- package/dist/ui/DsSpinner/DsSpinner.types.d.ts +6 -0
- package/dist/ui/DsSpinner/DsSpinner.vue.d.ts +4 -4
- package/dist/ui/DsSwitch/DsSwitch.types.d.ts +6 -0
- package/dist/ui/DsSwitch/DsSwitch.vue.d.ts +30 -0
- package/dist/ui/DsSwitch/index.d.ts +2 -0
- package/dist/ui/DsTable/DsTable.types.d.ts +11 -0
- package/dist/ui/DsTable/DsTable.vue.d.ts +103 -10
- package/dist/ui/DsTag/DsTag.vue.d.ts +6 -0
- package/dist/ui/DsTextarea/DsTextarea.types.d.ts +8 -0
- package/dist/ui/DsTextarea/DsTextarea.vue.d.ts +14 -3
- package/dist/ui/DsTooltip/DsTooltip.types.d.ts +7 -0
- package/dist/ui/DsTooltip/DsTooltip.vue.d.ts +64 -0
- package/dist/ui/DsTooltip/index.d.ts +2 -0
- package/dist/ui/DsWizardStepper/DsWizardStepper.types.d.ts +13 -0
- package/dist/ui/DsWizardStepper/DsWizardStepper.vue.d.ts +58 -0
- package/dist/ui/DsWizardStepper/index.d.ts +2 -0
- package/llms-full.txt +1350 -0
- package/llms.txt +40 -0
- package/package.json +6 -3
package/dist/index.d.ts
CHANGED
|
@@ -11,11 +11,11 @@ export type { DsBadgeTone } from './ui/DsBadge';
|
|
|
11
11
|
export { DsAvatar } from './ui/DsAvatar';
|
|
12
12
|
export type { DsAvatarProps } from './ui/DsAvatar';
|
|
13
13
|
export { DsSpinner } from './ui/DsSpinner';
|
|
14
|
-
export { DS_SPINNER_TONES } from './ui/DsSpinner';
|
|
15
|
-
export type { DsSpinnerTone } from './ui/DsSpinner';
|
|
14
|
+
export { DS_SPINNER_TONES, DS_SPINNER_SIZES } from './ui/DsSpinner';
|
|
15
|
+
export type { DsSpinnerTone, DsSpinnerSize } from './ui/DsSpinner';
|
|
16
16
|
export { DsTable } from './ui/DsTable';
|
|
17
|
-
export { DS_TABLE_ALIGN } from './ui/DsTable';
|
|
18
|
-
export type { DsTableColumn, DsTableRow, DsTableAlign } from './ui/DsTable';
|
|
17
|
+
export { DS_TABLE_ALIGN, DS_TABLE_PIN } from './ui/DsTable';
|
|
18
|
+
export type { DsTableColumn, DsTableRow, DsTableAlign, DsTablePin, DsTableHeader, } from './ui/DsTable';
|
|
19
19
|
export { DsInput } from './ui/DsInput';
|
|
20
20
|
export { DS_INPUT_TYPES, DS_INPUT_SIZES } from './ui/DsInput';
|
|
21
21
|
export type { DsInputType, DsInputSize } from './ui/DsInput';
|
|
@@ -27,10 +27,13 @@ export { DsAlert } from './ui/DsAlert';
|
|
|
27
27
|
export { DS_ALERT_TYPES, DS_ALERT_EFFECTS, DS_ALERT_ICONS } from './ui/DsAlert';
|
|
28
28
|
export type { DsAlertType, DsAlertEffect } from './ui/DsAlert';
|
|
29
29
|
export { DsNotification } from './ui/DsNotification';
|
|
30
|
-
export { DS_NOTIFICATION_TYPES, DS_NOTIFICATION_POSITIONS, DS_NOTIFICATION_ICONS, } from './ui/DsNotification';
|
|
31
|
-
export type { DsNotificationType, DsNotificationPosition } from './ui/DsNotification';
|
|
30
|
+
export { DS_NOTIFICATION_TYPES, DS_NOTIFICATION_POSITIONS, DS_NOTIFICATION_ICONS, DS_NOTIFICATION_LINK_TARGETS, } from './ui/DsNotification';
|
|
31
|
+
export type { DsNotificationType, DsNotificationPosition, DsNotificationLinkTarget, } from './ui/DsNotification';
|
|
32
32
|
export { DsModal } from './ui/DsModal';
|
|
33
33
|
export type { DsModalProps } from './ui/DsModal';
|
|
34
|
+
export { DsTooltip } from './ui/DsTooltip';
|
|
35
|
+
export { DS_TOOLTIP_PLACEMENTS } from './ui/DsTooltip';
|
|
36
|
+
export type { DsTooltipPlacement } from './ui/DsTooltip';
|
|
34
37
|
export { DsVerificationIcon } from './ui/DsVerificationIcon';
|
|
35
38
|
export { DS_VERIFICATION_STATES } from './ui/DsVerificationIcon';
|
|
36
39
|
export type { DsVerificationState } from './ui/DsVerificationIcon';
|
|
@@ -38,3 +41,34 @@ export { DsContactValue } from './ui/DsContactValue';
|
|
|
38
41
|
export type { DsContactValueProps } from './ui/DsContactValue';
|
|
39
42
|
export { DsDataCard } from './ui/DsDataCard';
|
|
40
43
|
export type { DsContactDatum } from './ui/DsDataCard';
|
|
44
|
+
export { DsRadio } from './ui/DsRadio';
|
|
45
|
+
export type { DsRadioProps } from './ui/DsRadio';
|
|
46
|
+
export { DsSwitch } from './ui/DsSwitch';
|
|
47
|
+
export type { DsSwitchProps } from './ui/DsSwitch';
|
|
48
|
+
export { DsItemSelectorButton } from './ui/DsItemSelectorButton';
|
|
49
|
+
export type { DsSelectorItem, DsItemSelectorButtonProps } from './ui/DsItemSelectorButton';
|
|
50
|
+
export { DsSelect } from './ui/DsSelect';
|
|
51
|
+
export { DS_SELECT_TYPES, DS_SELECT_WIDTHS } from './ui/DsSelect';
|
|
52
|
+
export type { DsSelectOption, DsSelectType, DsSelectModelValue, DsSelectWidth, DsSelectWidthName, } from './ui/DsSelect';
|
|
53
|
+
export { DsRow } from './ui/DsRow';
|
|
54
|
+
export type { DsRowProps } from './ui/DsRow';
|
|
55
|
+
export { DsCell } from './ui/DsCell';
|
|
56
|
+
export type { DsCellProps } from './ui/DsCell';
|
|
57
|
+
export { DsCustomTag } from './ui/DsCustomTag';
|
|
58
|
+
export { DS_CUSTOM_TAG_TYPES } from './ui/DsCustomTag';
|
|
59
|
+
export type { DsCustomTagType } from './ui/DsCustomTag';
|
|
60
|
+
export { DsPill } from './ui/DsPill';
|
|
61
|
+
export type { DsPillProps } from './ui/DsPill';
|
|
62
|
+
export { DsPillWithBorder } from './ui/DsPillWithBorder';
|
|
63
|
+
export type { DsPillWithBorderProps } from './ui/DsPillWithBorder';
|
|
64
|
+
export { DsSegmentedProgressBar } from './ui/DsSegmentedProgressBar';
|
|
65
|
+
export type { DsProgressSegment } from './ui/DsSegmentedProgressBar';
|
|
66
|
+
export { DsEmptyState } from './ui/DsEmptyState';
|
|
67
|
+
export type { DsEmptyStateProps } from './ui/DsEmptyState';
|
|
68
|
+
export { DsPaginator } from './ui/DsPaginator';
|
|
69
|
+
export type { DsPaginatorProps } from './ui/DsPaginator';
|
|
70
|
+
export { DsMenuItem } from './ui/DsMenuItem';
|
|
71
|
+
export type { DsMenuItemProps } from './ui/DsMenuItem';
|
|
72
|
+
export { DsWizardStepper } from './ui/DsWizardStepper';
|
|
73
|
+
export { DS_WIZARD_STEP_STATES } from './ui/DsWizardStepper';
|
|
74
|
+
export type { DsWizardStep, DsWizardStepState } from './ui/DsWizardStepper';
|