golden-logic-ui 1.2.373 → 1.2.374
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/main.js +16 -13
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -10,8 +10,8 @@ import { default as T } from "./components/GeneralComponents/GlTextInput.vue.js"
|
|
|
10
10
|
import { default as b } from "./components/GeneralComponents/GlDatePicker.vue.js";
|
|
11
11
|
import { default as C } from "./components/GeneralComponents/GlDateTimePicker.vue.js";
|
|
12
12
|
import { default as M } from "./components/GeneralComponents/GlDateRangePicker.vue.js";
|
|
13
|
-
import { default as
|
|
14
|
-
import { default as
|
|
13
|
+
import { default as P } from "./components/GeneralComponents/GlDateTimeRangePicker.vue.js";
|
|
14
|
+
import { default as y } from "./components/GeneralComponents/GlDateRangeCalendar.vue.js";
|
|
15
15
|
import { default as v } from "./components/GeneralComponents/GlTextInputFile.vue.js";
|
|
16
16
|
import { default as A } from "./components/GeneralComponents/GlTabsWrapper.vue.js";
|
|
17
17
|
import { default as I } from "./components/GeneralComponents/GlTab.vue.js";
|
|
@@ -37,8 +37,8 @@ import { default as Ta } from "./components/GeneralComponents/DataTable/Datatabl
|
|
|
37
37
|
import { default as ba } from "./components/GeneralComponents/DeleteConfirmationModal.vue.js";
|
|
38
38
|
import { default as Ca } from "./components/GeneralComponents/GlAccordionsWrapper.vue.js";
|
|
39
39
|
import { default as Ma } from "./components/GeneralComponents/GlAccordion.vue.js";
|
|
40
|
-
import { default as
|
|
41
|
-
import { default as
|
|
40
|
+
import { default as Pa } from "./components/GeneralComponents/GlToastList.vue.js";
|
|
41
|
+
import { default as ya } from "./Stores/toast.js";
|
|
42
42
|
import { default as va } from "./components/GeneralComponents/DataTable/DatatableAction.vue.js";
|
|
43
43
|
import { default as Aa } from "./components/GeneralComponents/DataTable/DatatableDeleteAction.vue.js";
|
|
44
44
|
import { default as Ia } from "./components/GeneralComponents/DataTable/DatatableDeleteEditAction.vue.js";
|
|
@@ -64,13 +64,14 @@ import { default as Te } from "./components/GeneralComponents/GlCodeCopy.vue.js"
|
|
|
64
64
|
import { default as be } from "./components/GeneralComponents/GlTextCopy.vue.js";
|
|
65
65
|
import { default as Ce } from "./components/GeneralComponents/StatusRunningSuccessFailed.vue.js";
|
|
66
66
|
import { default as Me } from "./components/GeneralComponents/StatusConnectingConnectedDisconnected.vue.js";
|
|
67
|
-
import { default as
|
|
68
|
-
import { default as
|
|
67
|
+
import { default as Pe } from "./ClickOutsideDirective.js";
|
|
68
|
+
import { default as ye } from "./Form.js";
|
|
69
69
|
import { default as ve } from "./multilingual.js";
|
|
70
|
+
import { default as Ae, triggerPrint as Be } from "./print/print.js";
|
|
70
71
|
export {
|
|
71
|
-
|
|
72
|
+
Pe as ClickOutsideDirective,
|
|
72
73
|
ee as DatatableStatusTextLabelGeneral,
|
|
73
|
-
|
|
74
|
+
ye as Form,
|
|
74
75
|
ue as GLDatatableCommand,
|
|
75
76
|
re as GLDatatableDate,
|
|
76
77
|
oe as GLDatatableDateTime,
|
|
@@ -102,10 +103,10 @@ export {
|
|
|
102
103
|
Za as GlDatatableStatusGeneral,
|
|
103
104
|
$a as GlDatatableStatusSpecficColor,
|
|
104
105
|
b as GlDatePicker,
|
|
105
|
-
|
|
106
|
+
y as GlDateRangeCalendar,
|
|
106
107
|
M as GlDateRangePicker,
|
|
107
108
|
C as GlDateTimePicker,
|
|
108
|
-
|
|
109
|
+
P as GlDateTimeRangePicker,
|
|
109
110
|
ba as GlDeleteConfirmationModal,
|
|
110
111
|
Z as GlDropdown,
|
|
111
112
|
ne as GlDynamicConfirmation,
|
|
@@ -117,6 +118,7 @@ export {
|
|
|
117
118
|
H as GlMultiItemSlide,
|
|
118
119
|
E as GlMultiItemSlideDynamic,
|
|
119
120
|
u as GlMultiSelectDropdown,
|
|
121
|
+
Ae as GlPrint,
|
|
120
122
|
Me as GlStatusConnectingConnectedDisconnected,
|
|
121
123
|
Ce as GlStatusRunningSuccessFailed,
|
|
122
124
|
I as GlTab,
|
|
@@ -131,9 +133,10 @@ export {
|
|
|
131
133
|
G as GlTextareaTranslate,
|
|
132
134
|
ea as GlTinymce,
|
|
133
135
|
da as GlTinymceTranslate,
|
|
134
|
-
|
|
135
|
-
|
|
136
|
+
ya as GlToast,
|
|
137
|
+
Pa as GlToastList,
|
|
136
138
|
Q as GlToggleBox,
|
|
137
139
|
X as GlToggleBoxTrueFalse,
|
|
138
|
-
ve as multilingual
|
|
140
|
+
ve as multilingual,
|
|
141
|
+
Be as triggerPrint
|
|
139
142
|
};
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "The most popular library of interactive components built with Vuejs && Tailwind CSS",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
|
-
"version": "1.2.
|
|
6
|
+
"version": "1.2.374",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git+https://github.com/mrgiant/GoldenLogicUi.git"
|