@weni/unnnic-system 3.12.6-alpha-teleports.0 → 3.12.7-alpha-teleports.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/{es-ebc7770b.mjs → es-95214495.mjs} +1 -1
- package/dist/{index-f117a889.mjs → index-edacc4d7.mjs} +5970 -5904
- package/dist/index.d.ts +144 -0
- package/dist/{pt-br-b1a08da0.mjs → pt-br-fb80e803.mjs} +1 -1
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +165 -163
- package/dist/unnnic.umd.js +32 -32
- package/package.json +1 -1
- package/src/components/index.ts +4 -0
package/package.json
CHANGED
package/src/components/index.ts
CHANGED
|
@@ -28,6 +28,7 @@ import checkbox from './Checkbox/Checkbox.vue';
|
|
|
28
28
|
import checkboxGroup from './CheckboxGroup/CheckboxGroup.vue';
|
|
29
29
|
import collapse from './Collapse/Collapse.vue';
|
|
30
30
|
import radio from './Radio/Radio.vue';
|
|
31
|
+
import radioGroup from './RadioGroup/RadioGroup.vue';
|
|
31
32
|
import languageSelect from './Dropdown/LanguageSelect.vue';
|
|
32
33
|
import modal from './Modal/Modal.vue';
|
|
33
34
|
import modalUpload from './ModalUpload/ModalUpload.vue';
|
|
@@ -162,6 +163,7 @@ export const components: ComponentsMap = {
|
|
|
162
163
|
unnnicCheckboxGroup: checkboxGroup,
|
|
163
164
|
unnnicCollapse: collapse,
|
|
164
165
|
unnnicRadio: radio,
|
|
166
|
+
unnnicRadioGroup: radioGroup,
|
|
165
167
|
unnnicLanguageSelect: languageSelect,
|
|
166
168
|
unnnicModal: modal,
|
|
167
169
|
unnnicModalNext: ModalNext,
|
|
@@ -290,6 +292,7 @@ export const unnnicCheckbox = checkbox;
|
|
|
290
292
|
export const unnnicCheckboxGroup = checkboxGroup;
|
|
291
293
|
export const unnnicCollapse = collapse;
|
|
292
294
|
export const unnnicRadio = radio;
|
|
295
|
+
export const unnnicRadioGroup = radioGroup;
|
|
293
296
|
export const unnniclanguageSelect = languageSelect as VueComponent;
|
|
294
297
|
export const unnnicModal = modal;
|
|
295
298
|
export const unnnicModalDialog = ModalDialog;
|
|
@@ -417,6 +420,7 @@ export const UnnnicCheckbox = checkbox;
|
|
|
417
420
|
export const UnnnicCheckboxGroup = checkboxGroup;
|
|
418
421
|
export const UnnnicCollapse = collapse;
|
|
419
422
|
export const UnnnicRadio = radio;
|
|
423
|
+
export const UnnnicRadioGroup = radioGroup;
|
|
420
424
|
export const UnnniclanguageSelect = languageSelect as VueComponent;
|
|
421
425
|
export const UnnnicModal = modal;
|
|
422
426
|
export const UnnnicModalDialog = ModalDialog;
|