@weni/unnnic-system 1.16.30-develop.0 → 1.16.31-develop.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/unnnic.common.js +776 -34
- package/dist/unnnic.common.js.map +1 -1
- package/dist/unnnic.css +1 -1
- package/dist/unnnic.umd.js +776 -34
- package/dist/unnnic.umd.js.map +1 -1
- package/dist/unnnic.umd.min.js +14 -14
- package/dist/unnnic.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/index.js +3 -0
package/package.json
CHANGED
package/src/components/index.js
CHANGED
|
@@ -31,6 +31,7 @@ import modal from './Modal/Modal.vue';
|
|
|
31
31
|
import modalNext from './ModalNext/ModalNext.vue';
|
|
32
32
|
import modalUpload from './ModalUpload/ModalUpload.vue';
|
|
33
33
|
import call from '../utils/call';
|
|
34
|
+
import selectSmart from './SelectSmart/SelectSmart.vue';
|
|
34
35
|
import select from './Select/Select.vue';
|
|
35
36
|
import selectItem from './Select/SelectItem.vue';
|
|
36
37
|
import selectListItem from './SelectListItem/SelectListItem.vue';
|
|
@@ -102,6 +103,7 @@ const components = {
|
|
|
102
103
|
unnnicModal: modal,
|
|
103
104
|
unnnicModalNext: modalNext,
|
|
104
105
|
unnnicModalUpload: modalUpload,
|
|
106
|
+
unnnicSelectSmart: selectSmart,
|
|
105
107
|
unnnicSelect: select,
|
|
106
108
|
unnnicSelectItem: selectItem,
|
|
107
109
|
unnnicSelectListItem: selectListItem,
|
|
@@ -178,6 +180,7 @@ export const unnniclanguageSelect = languageSelect;
|
|
|
178
180
|
export const unnnicModal = modal;
|
|
179
181
|
export const unnnicModalNext = modalNext;
|
|
180
182
|
export const unnnicModalUpload = modalUpload;
|
|
183
|
+
export const unnnicSelectSmart = selectSmart;
|
|
181
184
|
export const unnnicSelect = select;
|
|
182
185
|
export const unnnicSelectItem = selectItem;
|
|
183
186
|
export const unnnicSelectListItem = selectListItem;
|