@weni/unnnic-system 2.0.26 → 2.0.27
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/CHANGELOG.md +6 -0
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +3464 -3269
- package/dist/unnnic.umd.js +23 -23
- package/package.json +2 -2
- package/src/components/index.js +3 -0
package/package.json
CHANGED
package/src/components/index.js
CHANGED
|
@@ -80,6 +80,7 @@ import ChartFunnel from './ChartFunnel/ChartFunnel.vue';
|
|
|
80
80
|
import Disclaimer from './Disclaimer/Disclaimer.vue';
|
|
81
81
|
import Drawer from './Drawer/Drawer.vue';
|
|
82
82
|
import TableNext from './TableNext/TableNext.vue';
|
|
83
|
+
import ModalNext from './ModalNext/ModalNext.vue';
|
|
83
84
|
|
|
84
85
|
export const components = {
|
|
85
86
|
unnnicFormElement: formElement,
|
|
@@ -112,6 +113,7 @@ export const components = {
|
|
|
112
113
|
unnnicRadio: radio,
|
|
113
114
|
unnnicLanguageSelect: languageSelect,
|
|
114
115
|
unnnicModal: modal,
|
|
116
|
+
unnnicModalNext: ModalNext,
|
|
115
117
|
unnnicModalUpload: modalUpload,
|
|
116
118
|
unnnicSelectSmart: selectSmart,
|
|
117
119
|
// unnnicSelect: select,
|
|
@@ -198,6 +200,7 @@ export const unnnicCollapse = collapse;
|
|
|
198
200
|
export const unnnicRadio = radio;
|
|
199
201
|
export const unnniclanguageSelect = languageSelect;
|
|
200
202
|
export const unnnicModal = modal;
|
|
203
|
+
export const unnnicModalNext = ModalNext;
|
|
201
204
|
export const unnnicModalUpload = modalUpload;
|
|
202
205
|
export const unnnicSelectSmart = selectSmart;
|
|
203
206
|
// export const unnnicSelect = select;
|