@weni/unnnic-system 3.12.1 → 3.12.2
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 +9 -0
- package/dist/components/ui/popover/PopoverOption.vue.d.ts.map +1 -1
- package/dist/{es-9756db6d.mjs → es-40d7aad6.mjs} +1 -1
- package/dist/{index-ab280280.mjs → index-56b50ff8.mjs} +4200 -4157
- package/dist/{pt-br-55135cbc.mjs → pt-br-e6e2313f.mjs} +1 -1
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +148 -146
- package/dist/unnnic.umd.js +29 -29
- package/package.json +1 -1
- package/src/components/index.ts +6 -1
package/package.json
CHANGED
package/src/components/index.ts
CHANGED
|
@@ -97,6 +97,7 @@ import Popover from './ui/popover/Popover.vue';
|
|
|
97
97
|
import PopoverContent from './ui/popover/PopoverContent.vue';
|
|
98
98
|
import PopoverTrigger from './ui/popover/PopoverTrigger.vue';
|
|
99
99
|
import PopoverFooter from './ui/popover/PopoverFooter.vue';
|
|
100
|
+
import PopoverOption from './ui/popover/PopoverOption.vue';
|
|
100
101
|
import TemplatePreview from './TemplatePreview/TemplatePreview.vue';
|
|
101
102
|
import TemplatePreviewModal from './TemplatePreview/TemplatePreviewModal.vue';
|
|
102
103
|
import Tabs from './ui/tabs/Tabs.vue';
|
|
@@ -218,6 +219,8 @@ export const components: ComponentsMap = {
|
|
|
218
219
|
unnnicPopover: Popover,
|
|
219
220
|
unnnicPopoverContent: PopoverContent,
|
|
220
221
|
unnnicPopoverTrigger: PopoverTrigger,
|
|
222
|
+
unnnicPopoverFooter: PopoverFooter,
|
|
223
|
+
unnnicPopoverOption: PopoverOption,
|
|
221
224
|
unnnicTabs: Tabs,
|
|
222
225
|
unnnicTabsList: TabsList,
|
|
223
226
|
unnnicTabsTrigger: TabsTrigger,
|
|
@@ -329,6 +332,7 @@ export const unnnicPopover = Popover;
|
|
|
329
332
|
export const unnnicPopoverContent = PopoverContent;
|
|
330
333
|
export const unnnicPopoverTrigger = PopoverTrigger;
|
|
331
334
|
export const unnnicPopoverFooter = PopoverFooter;
|
|
335
|
+
export const unnnicPopoverOption = PopoverOption as VueComponent;
|
|
332
336
|
export const unnnicTemplatePreview = TemplatePreview as VueComponent;
|
|
333
337
|
export const unnnicTemplatePreviewModal = TemplatePreviewModal as VueComponent;
|
|
334
338
|
export const unnnicTabs = Tabs;
|
|
@@ -345,7 +349,7 @@ export const UnnnicFontSize = fontSize;
|
|
|
345
349
|
export const UnnnicFormElement = formElement;
|
|
346
350
|
export const UnnnicInput = input;
|
|
347
351
|
export const UnnnicInputNext = inputNext;
|
|
348
|
-
export const UnnnicInputDatePicker = inputDatePicker;
|
|
352
|
+
export const UnnnicInputDatePicker = inputDatePicker as VueComponent;
|
|
349
353
|
export const UnnnicButton = button;
|
|
350
354
|
export const UnnnicButtonIcon = buttonIcon;
|
|
351
355
|
export const UnnnicSidebar = sidebar;
|
|
@@ -441,6 +445,7 @@ export const UnnnicPopover = Popover;
|
|
|
441
445
|
export const UnnnicPopoverContent = PopoverContent;
|
|
442
446
|
export const UnnnicPopoverTrigger = PopoverTrigger;
|
|
443
447
|
export const UnnnicPopoverFooter = PopoverFooter;
|
|
448
|
+
export const UnnnicPopoverOption = PopoverOption as VueComponent;
|
|
444
449
|
export const UnnnicTemplatePreview = TemplatePreview as VueComponent;
|
|
445
450
|
export const UnnnicTemplatePreviewModal = TemplatePreviewModal as VueComponent;
|
|
446
451
|
export const UnnnicTabs = Tabs;
|