@deskhero/dh_ui 2.7.1 → 2.8.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/Input.vue.d.ts +51 -0
- package/dist/dh_ui.es.js +4733 -4774
- package/dist/dh_ui.umd.js +72 -105
- package/dist/index.d.ts +2 -1
- package/dist/style.css +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import DhExpansionPanel from "./components/ExpansionPanel.vue";
|
|
|
10
10
|
import DhFileUpload from "./components/FileUpload.vue";
|
|
11
11
|
import DhIcon from "./components/Icon.vue";
|
|
12
12
|
import DhIconWithText from "./components/IconWithText.vue";
|
|
13
|
+
import DhInput from "./components/Input.vue";
|
|
13
14
|
import DhInputDropdown from "./components/InputDropdown.vue";
|
|
14
15
|
import DhInputDropdownMultiple from "./components/InputDropdownMultiple.vue";
|
|
15
16
|
import DhInputGroup from "./components/InputGroup.vue";
|
|
@@ -30,5 +31,5 @@ import DhVerificationCode from "./components/VerificationCode.vue";
|
|
|
30
31
|
import DhImageCropper from "./components/ImageCropper.vue";
|
|
31
32
|
import type DropdownMenuItem from "./models/DropdownMenuItem.model";
|
|
32
33
|
import type InputList from "./models/InputList.model";
|
|
33
|
-
export { DhAdvancedDatePicker, DhAdvancedFilter, DhCopyText, DhDatePicker, DhFileUpload, DhError, DhIcon, DhIconWithText, DhModal, DhNotification, DhNumberRange, DhPasswordField, DhRadioBox, DhRadioBoxGroup, DhSearchInput, DhStepper, DhSwitch, DhTooltip, DhVerificationCode, DhExpansionPanel, DhDropdownMenu, DhInputDropdown, DhInputDropdownMultiple, DhInputList, DhInputGroup, DhTag, DhTextEditor, DhButton, DhImageCropper, };
|
|
34
|
+
export { DhAdvancedDatePicker, DhAdvancedFilter, DhCopyText, DhDatePicker, DhFileUpload, DhError, DhIcon, DhIconWithText, DhModal, DhNotification, DhNumberRange, DhPasswordField, DhRadioBox, DhRadioBoxGroup, DhSearchInput, DhStepper, DhSwitch, DhTooltip, DhVerificationCode, DhExpansionPanel, DhDropdownMenu, DhInput, DhInputDropdown, DhInputDropdownMultiple, DhInputList, DhInputGroup, DhTag, DhTextEditor, DhButton, DhImageCropper, };
|
|
34
35
|
export type { DropdownMenuItem, InputList };
|