fu-kit 0.6.1 → 0.6.3
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/package.json +1 -1
- package/src/entry.js +17 -14
package/package.json
CHANGED
package/src/entry.js
CHANGED
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
/* eslint-disable import/prefer-default-export */
|
|
2
|
-
export { default as UiButton }
|
|
3
|
-
export { default as UiButtonLink }
|
|
4
|
-
export { default as UiCodeView }
|
|
5
|
-
export { default as
|
|
6
|
-
export { default as
|
|
7
|
-
export { default as
|
|
8
|
-
export { default as
|
|
9
|
-
export { default as
|
|
10
|
-
export { default as
|
|
11
|
-
export { default as
|
|
12
|
-
export { default as
|
|
13
|
-
export { default as
|
|
14
|
-
export { default as
|
|
15
|
-
export { default as
|
|
2
|
+
export { default as UiButton } from './components/UiButton.vue'
|
|
3
|
+
export { default as UiButtonLink } from './components/UiButtonLink.vue'
|
|
4
|
+
export { default as UiCodeView } from './components/UiCodeView.vue'
|
|
5
|
+
export { default as UiCodeInput } from './components/UiCodeInput.vue'
|
|
6
|
+
export { default as UiCopy } from './components/UiCopy.vue'
|
|
7
|
+
export { default as UiSelect } from './components/UiSelect.vue'
|
|
8
|
+
export { default as UiSelectX } from './components/UiSelectX.vue'
|
|
9
|
+
export { default as UiModal } from './components/UiModal.vue'
|
|
10
|
+
export { default as UiSidebar } from './components/UiSidebar.vue'
|
|
11
|
+
export { default as UiText } from './components/UiText.vue'
|
|
12
|
+
export { default as UiTextarea } from './components/UiTextarea.vue'
|
|
13
|
+
export { default as UiCheck } from './components/UiCheck.vue'
|
|
14
|
+
export { default as UiDropdown } from './components/UiDropdown.vue'
|
|
15
|
+
export { default as UiDropdownItem } from './components/UiDropdownItem.vue'
|
|
16
|
+
export { default as UiIconProvider } from './components/UiIconProvider.vue'
|
|
17
|
+
export { default as UiIcon } from './components/UiIcon.vue'
|
|
18
|
+
export { default as UiProgressRadial } from './components/UiProgressRadial.vue'
|