@weni/unnnic-system 3.12.6 → 3.12.7
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/{es-e7dc92a2.mjs → es-c84c6e0c.mjs} +1 -1
- package/dist/{index-84ade580.mjs → index-71322a23.mjs} +5336 -5267
- package/dist/index.d.ts +144 -0
- package/dist/{pt-br-51fd679a.mjs → pt-br-f53036d2.mjs} +1 -1
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +147 -145
- package/dist/unnnic.umd.js +31 -31
- 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';
|
|
@@ -148,6 +149,7 @@ export const components: ComponentsMap = {
|
|
|
148
149
|
unnnicCheckboxGroup: checkboxGroup,
|
|
149
150
|
unnnicCollapse: collapse,
|
|
150
151
|
unnnicRadio: radio,
|
|
152
|
+
unnnicRadioGroup: radioGroup,
|
|
151
153
|
unnnicLanguageSelect: languageSelect,
|
|
152
154
|
unnnicModal: modal,
|
|
153
155
|
unnnicModalNext: ModalNext,
|
|
@@ -262,6 +264,7 @@ export const unnnicCheckbox = checkbox;
|
|
|
262
264
|
export const unnnicCheckboxGroup = checkboxGroup;
|
|
263
265
|
export const unnnicCollapse = collapse;
|
|
264
266
|
export const unnnicRadio = radio;
|
|
267
|
+
export const unnnicRadioGroup = radioGroup;
|
|
265
268
|
export const unnniclanguageSelect = languageSelect as VueComponent;
|
|
266
269
|
export const unnnicModal = modal;
|
|
267
270
|
export const unnnicModalDialog = ModalDialog;
|
|
@@ -375,6 +378,7 @@ export const UnnnicCheckbox = checkbox;
|
|
|
375
378
|
export const UnnnicCheckboxGroup = checkboxGroup;
|
|
376
379
|
export const UnnnicCollapse = collapse;
|
|
377
380
|
export const UnnnicRadio = radio;
|
|
381
|
+
export const UnnnicRadioGroup = radioGroup;
|
|
378
382
|
export const UnnniclanguageSelect = languageSelect as VueComponent;
|
|
379
383
|
export const UnnnicModal = modal;
|
|
380
384
|
export const UnnnicModalDialog = ModalDialog;
|