@fewangsit/wangsvue-fats 1.0.0-alpha.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/assets/json/currencies.json.d.ts +1068 -0
- package/assets/json/supported-official-langs.json.d.ts +530 -0
- package/assets/lottie/admin/loading-page.lottie +0 -0
- package/assets/lottie/admin/loading-table.lottie +0 -0
- package/assets/lottie/admin/no-data.lottie +0 -0
- package/assets/lottie/supplyasset/loading-page.lottie +0 -0
- package/assets/lottie/supplyasset/loading-table.lottie +0 -0
- package/assets/lottie/supplyasset/no-data.lottie +0 -0
- package/assets/lottie/workspace/loading-page.lottie +0 -0
- package/assets/lottie/workspace/loading-plane.lottie +0 -0
- package/assets/lottie/workspace/loading-table.lottie +0 -0
- package/assets/lottie/workspace/no-data.lottie +0 -0
- package/build-entry.d.ts +14 -0
- package/components/animation/Animation.vue.d.ts +24 -0
- package/components/approverinfo/ApproverInfo.vue.d.ts +51 -0
- package/components/badge/Badge.vue.d.ts +73 -0
- package/components/badgegroup/BadgeGroup.vue.d.ts +52 -0
- package/components/basecomponent/index.d.ts +28 -0
- package/components/basetree/BaseTree.vue.d.ts +591 -0
- package/components/basetree/TreeNode.vue.d.ts +35 -0
- package/components/breadcrumb/Breadcrumb.vue.d.ts +26 -0
- package/components/button/Button.vue.d.ts +185 -0
- package/components/buttonImportExcel/ButtonImportExcel.vue.d.ts +35 -0
- package/components/buttonbulkaction/ButtonBulkAction.vue.d.ts +104 -0
- package/components/buttoncopy/ButtonCopy.vue.d.ts +26 -0
- package/components/buttondownload/ButtonDownload.vue.d.ts +49 -0
- package/components/buttonfilter/ButtonFilter.vue.d.ts +12 -0
- package/components/buttonradio/ButtonRadio.vue.d.ts +257 -0
- package/components/buttonsearch/ButtonSearch.vue.d.ts +38 -0
- package/components/buttonselecttree/ButtonSelectTree.vue.d.ts +198 -0
- package/components/buttonsplit/ButtonSplit.d.ts +350 -0
- package/components/buttonsplit/ButtonSplit.vue.d.ts +34 -0
- package/components/buttontoggle/ButtonToggle.vue.d.ts +18 -0
- package/components/calendar/BaseCalendar.vue.d.ts +86 -0
- package/components/calendar/Calendar.vue.d.ts +570 -0
- package/components/card/Card.vue.d.ts +139 -0
- package/components/checkbox/Checkbox.vue.d.ts +329 -0
- package/components/codesnippet/CodeSnippet.vue.d.ts +14 -0
- package/components/customcolumn/ColumnList.vue.d.ts +27 -0
- package/components/customcolumn/CustomColumn.vue.d.ts +37 -0
- package/components/customcolumn/helpers/setVisibilityColumn.helper.d.ts +12 -0
- package/components/datatable/DataTable.vue.d.ts +735 -0
- package/components/datatable/MultiRow.vue.d.ts +16 -0
- package/components/datatable/helpers/adjustMenuPosition.helper.d.ts +1 -0
- package/components/datatable/helpers/filter.helper.d.ts +28 -0
- package/components/datatable/helpers/index.d.ts +3 -0
- package/components/datatable/helpers/readConfig.helper.d.ts +2 -0
- package/components/datatable/store/dataTable.store.d.ts +22 -0
- package/components/dialog/Dialog.vue.d.ts +464 -0
- package/components/dialogconfirm/DialogConfirm.vue.d.ts +164 -0
- package/components/dialogform/DialogForm.vue.d.ts +349 -0
- package/components/dialogselecttree/DialogSelectTree.vue.d.ts +136 -0
- package/components/dropdown/Dropdown.vue.d.ts +264 -0
- package/components/editor/CodeSnippetAdapter.vue.d.ts +92 -0
- package/components/editor/Editor.vue.d.ts +191 -0
- package/components/editor/EditorButton.vue.d.ts +15 -0
- package/components/editor/MentionList.vue.d.ts +35 -0
- package/components/editor/MentionSection.vue.d.ts +92 -0
- package/components/editor/codeSnippetExtension.d.ts +3 -0
- package/components/editor/mentionSectionExtension.d.ts +3 -0
- package/components/editor/suggestion.d.ts +2 -0
- package/components/fieldwrapper/FieldWrapper.vue.d.ts +69 -0
- package/components/fileupload/FileUpload.vue.d.ts +169 -0
- package/components/filtercontainer/FilterContainer.vue.d.ts +181 -0
- package/components/filtercontainer/helpers/applyFilter.helper.d.ts +5 -0
- package/components/filtercontainer/helpers/formatDateTimeRange.helper.d.ts +7 -0
- package/components/filtercontainer/helpers/getOption.helper.d.ts +3 -0
- package/components/form/Form.vue.d.ts +316 -0
- package/components/gallerypreview/GalleryPreview.vue.d.ts +31 -0
- package/components/helpers/convertToArrayClass.helper.d.ts +2 -0
- package/components/helpers/index.d.ts +2 -0
- package/components/helpers/label.d.ts +15 -0
- package/components/icon/Icon.vue.d.ts +256 -0
- package/components/image/Image.vue.d.ts +403 -0
- package/components/imagecompressor/BackgroundImageCropper.vue.d.ts +36 -0
- package/components/imagecompressor/ImageCompressor.vue.d.ts +223 -0
- package/components/imagecompressor/ImageInputInfo.vue.d.ts +30 -0
- package/components/index.d.ts +63 -0
- package/components/inlinemessage/InlineMessage.vue.d.ts +167 -0
- package/components/inputbadge/InputBadge.vue.d.ts +122 -0
- package/components/inputcurrency/InputCurrency.vue.d.ts +170 -0
- package/components/inputcurrency/helpers/currency.helper.d.ts +4 -0
- package/components/inputemail/InputEmail.vue.d.ts +25 -0
- package/components/inputgroup/InputGroup.vue.d.ts +141 -0
- package/components/inputnumber/InputNumber.vue.d.ts +282 -0
- package/components/inputpassword/InputPassword.vue.d.ts +32 -0
- package/components/inputphonenumber/InputPhoneNumber.vue.d.ts +99 -0
- package/components/inputphonenumber/helpers/getUserLocation.helper.d.ts +8 -0
- package/components/inputrangenumber/InputRangeNumber.vue.d.ts +120 -0
- package/components/inputtext/InputText.vue.d.ts +352 -0
- package/components/inputurl/InputURL.vue.d.ts +39 -0
- package/components/invisiblefield/InvisibleField.vue.d.ts +36 -0
- package/components/languagedropdown/LanguageDropdown.vue.d.ts +50 -0
- package/components/languagedropdown/LanguageDropdownOption.vue.d.ts +18 -0
- package/components/languageswitcher/LanguageSwitcher.vue.d.ts +15 -0
- package/components/litedropdown/LiteDropdown.vue.d.ts +96 -0
- package/components/loading/Loading.vue.d.ts +47 -0
- package/components/loading/store/loading.store.d.ts +8 -0
- package/components/menu/Menu.vue.d.ts +390 -0
- package/components/menu/helpers/filterMenu.helper.d.ts +12 -0
- package/components/menu/helpers/index.d.ts +1 -0
- package/components/menuitem/MenuItem.vue.d.ts +19 -0
- package/components/menuitem/index.d.ts +106 -0
- package/components/multiselect/MultiSelect.vue.d.ts +192 -0
- package/components/overlaypanel/OverlayPanel.vue.d.ts +301 -0
- package/components/passthrough/index.d.ts +16 -0
- package/components/progressbar/ProgressBar.vue.d.ts +72 -0
- package/components/quickfilter/QuickFilter.vue.d.ts +25 -0
- package/components/tabmenu/TabMenu.vue.d.ts +288 -0
- package/components/textarea/Textarea.vue.d.ts +170 -0
- package/components/timeline/Timeline.vue.d.ts +115 -0
- package/components/timeline/TimelineContentByType.vue.d.ts +16 -0
- package/components/toast/Toast.vue.d.ts +367 -0
- package/components/toggleswitch/ToggleSwitch.vue.d.ts +281 -0
- package/components/tooltipspan/TooltipSpan.vue.d.ts +20 -0
- package/components/tree/Tree.vue.d.ts +148 -0
- package/components/tree/helpers/filterNodeKeys.helper.d.ts +16 -0
- package/components/tree/helpers/flattenTreeNodeChildren.helper.d.ts +6 -0
- package/components/tree/helpers/index.d.ts +3 -0
- package/components/treesearchinput/TreeSearchInput.vue.d.ts +16 -0
- package/components/ts-helpers.d.ts +83 -0
- package/components/usergroup/UserGroup.vue.d.ts +57 -0
- package/components/username/UserName.vue.d.ts +113 -0
- package/components/validatormessage/ValidatorMessage.vue.d.ts +12 -0
- package/config/defaultProps.d.ts +3 -0
- package/config/index.d.ts +3 -0
- package/config/locale.d.ts +3 -0
- package/directives/focus.d.ts +7 -0
- package/directives/index.d.ts +1 -0
- package/event-bus/index.d.ts +58 -0
- package/event-bus/mitt.d.ts +26 -0
- package/loading-page-BrQattYE.js +1 -0
- package/loading-page-CgfbWppy.js +1 -0
- package/loading-page-CoC9UhfC.js +4 -0
- package/loading-page-CoXtqoc9.js +4 -0
- package/loading-page-DbLuqCHa.js +1 -0
- package/loading-page-f8D03l3G.js +4 -0
- package/loading-plane-CgfbWppy.js +1 -0
- package/loading-plane-CoXtqoc9.js +4 -0
- package/loading-table-Bdr9ZhtP.js +1 -0
- package/loading-table-ByUoWqUo.js +4 -0
- package/loading-table-BygEMzFM.js +4 -0
- package/loading-table-BzrSQlA0.js +1 -0
- package/loading-table-D9bw9OcI.js +4 -0
- package/loading-table-chOgXi94.js +1 -0
- package/main.d.ts +2 -0
- package/no-data-CTKux8RI.js +4 -0
- package/no-data-Cgze_Rvp.js +1 -0
- package/no-data-DLHO1L_u.js +4 -0
- package/no-data-Dep79CBh.js +1 -0
- package/no-data-g0dJCy2p.js +4 -0
- package/no-data-y1X5WtcQ.js +1 -0
- package/package.json +16 -0
- package/plugins/WangsVue.d.ts +131 -0
- package/plugins/formValidation.d.ts +10 -0
- package/plugins/translation.d.ts +84 -0
- package/style.css +1 -0
- package/types/options.type.d.ts +16 -0
- package/utils/addAttachment.util.d.ts +43 -0
- package/utils/date.util.d.ts +46 -0
- package/utils/exportToExcel.util.d.ts +20 -0
- package/utils/filterOptions.util.d.ts +3 -0
- package/utils/genPlaceholder.util.d.ts +8 -0
- package/utils/getAttachmentIcon.util.d.ts +8 -0
- package/utils/index.d.ts +21 -0
- package/utils/mergePropsWithDefaults.util.d.ts +20 -0
- package/utils/object.util.d.ts +16 -0
- package/utils/role.util.d.ts +2 -0
- package/utils/textFormatter.util.d.ts +17 -0
- package/utils/toast.util.d.ts +120 -0
- package/wangsvue-fats.es.js +132743 -0
- package/wangsvue-fats.system.js +489 -0
|
@@ -0,0 +1,530 @@
|
|
|
1
|
+
declare const _default: [
|
|
2
|
+
{
|
|
3
|
+
"language": "af",
|
|
4
|
+
"name": "Afrikaans",
|
|
5
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/a/af/Flag_of_South_Africa.svg/60px-Flag_of_South_Africa.svg.png"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"language": "sq",
|
|
9
|
+
"name": "Albanian",
|
|
10
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/Flag_of_Albania.svg/60px-Flag_of_Albania.svg.png"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"language": "am",
|
|
14
|
+
"name": "Amharic",
|
|
15
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Flag_of_Ethiopia.svg/45px-Flag_of_Ethiopia.svg.png"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"language": "ar",
|
|
19
|
+
"name": "Arabic",
|
|
20
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/2/2b/Flag_of_the_Arab_League.svg/60px-Flag_of_the_Arab_League.svg.png"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"language": "hy",
|
|
24
|
+
"name": "Armenian",
|
|
25
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/Flag_of_Armenia.svg/60px-Flag_of_Armenia.svg.png"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"language": "ay",
|
|
29
|
+
"name": "Aymara",
|
|
30
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/de/Flag_of_Bolivia_%28state%29.svg/60px-Flag_of_Bolivia_%28state%29.svg.png"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"language": "az",
|
|
34
|
+
"name": "Azerbaijani",
|
|
35
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Flag_of_Azerbaijan.svg/60px-Flag_of_Azerbaijan.svg.png"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"language": "bm",
|
|
39
|
+
"name": "Bambara",
|
|
40
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Flag_of_Mali.svg/60px-Flag_of_Mali.svg.png"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"language": "be",
|
|
44
|
+
"name": "Belarusian",
|
|
45
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Flag_of_Belarus.svg/60px-Flag_of_Belarus.svg.png"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"language": "bem",
|
|
49
|
+
"name": "Bemba",
|
|
50
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/0/06/Flag_of_Zambia.svg/60px-Flag_of_Zambia.svg.png"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"language": "bn",
|
|
54
|
+
"name": "Bengali",
|
|
55
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/Bengali_language.svg/60px-Bengali_language.svg.png"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"language": "bs",
|
|
59
|
+
"name": "Bosnian",
|
|
60
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Flag_of_Bosnia_and_Herzegovina.svg/60px-Flag_of_Bosnia_and_Herzegovina.svg.png"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"language": "bg",
|
|
64
|
+
"name": "Bulgarian",
|
|
65
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Flag_of_Bulgaria.svg/60px-Flag_of_Bulgaria.svg.png"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"language": "ca",
|
|
69
|
+
"name": "Catalan",
|
|
70
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/ce/Flag_of_Catalonia.svg/60px-Flag_of_Catalonia.svg.png"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"language": "ny",
|
|
74
|
+
"name": "Chichewa",
|
|
75
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d1/Flag_of_Malawi.svg/60px-Flag_of_Malawi.svg.png"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"language": "zh",
|
|
79
|
+
"name": "Chinese (Simplified)",
|
|
80
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Flag_of_the_People%27s_Republic_of_China.svg/60px-Flag_of_the_People%27s_Republic_of_China.svg.png"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"language": "hr",
|
|
84
|
+
"name": "Croatian",
|
|
85
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Flag_of_Croatia.svg/60px-Flag_of_Croatia.svg.png"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"language": "cs",
|
|
89
|
+
"name": "Czech",
|
|
90
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Flag_of_the_Czech_Republic.svg/60px-Flag_of_the_Czech_Republic.svg.png"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"language": "da",
|
|
94
|
+
"name": "Danish",
|
|
95
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Flag_of_Denmark.svg/60px-Flag_of_Denmark.svg.png"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"language": "dv",
|
|
99
|
+
"name": "Dhivehi",
|
|
100
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Flag_of_Maldives.svg/60px-Flag_of_Maldives.svg.png"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"language": "nl",
|
|
104
|
+
"name": "Dutch",
|
|
105
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Flag_of_the_Netherlands.svg/60px-Flag_of_the_Netherlands.svg.png"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"language": "dz",
|
|
109
|
+
"name": "Dzongkha",
|
|
110
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Flag_of_Bhutan.svg/60px-Flag_of_Bhutan.svg.png"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"language": "en",
|
|
114
|
+
"name": "English",
|
|
115
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/English_language.svg/60px-English_language.svg.png"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"language": "et",
|
|
119
|
+
"name": "Estonian",
|
|
120
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Flag_of_Estonia.svg/60px-Flag_of_Estonia.svg.png"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"language": "ee",
|
|
124
|
+
"name": "Ewe",
|
|
125
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b8/Flag_of_the_Ewe_people.svg/60px-Flag_of_the_Ewe_people.svg.png"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"language": "fj",
|
|
129
|
+
"name": "Fijian",
|
|
130
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Flag_of_Fiji.svg/45px-Flag_of_Fiji.svg.png"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"language": "tl",
|
|
134
|
+
"name": "Filipino",
|
|
135
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Flag_of_the_Philippines.svg/60px-Flag_of_the_Philippines.svg.png"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"language": "fi",
|
|
139
|
+
"name": "Finnish",
|
|
140
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/bc/Flag_of_Finland.svg/60px-Flag_of_Finland.svg.png"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"language": "fr",
|
|
144
|
+
"name": "French",
|
|
145
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Flag_of_France.svg/60px-Flag_of_France.svg.png"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"language": "fy",
|
|
149
|
+
"name": "Frisian",
|
|
150
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Frisian_flag.svg/60px-Frisian_flag.svg.png"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"language": "ff",
|
|
154
|
+
"name": "Fulani",
|
|
155
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/NE-CM-BF-GM_flag.svg/60px-NE-CM-BF-GM_flag.svg.png"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"language": "gaa",
|
|
159
|
+
"name": "Ga",
|
|
160
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Flag_of_Accra.svg/60px-Flag_of_Accra.svg.png"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"language": "gl",
|
|
164
|
+
"name": "Galician",
|
|
165
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/64/Flag_of_Galicia.svg/60px-Flag_of_Galicia.svg.png"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"language": "ka",
|
|
169
|
+
"name": "Georgian",
|
|
170
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Flag_of_Georgia.svg/60px-Flag_of_Georgia.svg.png"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"language": "de",
|
|
174
|
+
"name": "German",
|
|
175
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Flag_of_Germany.svg/60px-Flag_of_Germany.svg.png"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"language": "el",
|
|
179
|
+
"name": "Greek",
|
|
180
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Flag_of_Greece.svg/60px-Flag_of_Greece.svg.png"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"language": "ht",
|
|
184
|
+
"name": "Haitian Creole",
|
|
185
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/5/56/Flag_of_Haiti.svg/60px-Flag_of_Haiti.svg.png"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"language": "ha",
|
|
189
|
+
"name": "Hausa",
|
|
190
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/5/5d/Flag_of_the_Hausa_people.svg/60px-Flag_of_the_Hausa_people.svg.png"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"language": "iw",
|
|
194
|
+
"name": "Hebrew",
|
|
195
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Flag_of_Israel.svg/45px-Flag_of_Israel.svg.png"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"language": "he",
|
|
199
|
+
"name": "Hebrew",
|
|
200
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Flag_of_Israel.svg/45px-Flag_of_Israel.svg.png"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"language": "hi",
|
|
204
|
+
"name": "Hindi",
|
|
205
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Flag_of_India.svg/60px-Flag_of_India.svg.png"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"language": "hu",
|
|
209
|
+
"name": "Hungarian",
|
|
210
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/Flag_of_Hungary.svg/60px-Flag_of_Hungary.svg.png"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"language": "is",
|
|
214
|
+
"name": "Icelandic",
|
|
215
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/ce/Flag_of_Iceland.svg/60px-Flag_of_Iceland.svg.png"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"language": "id",
|
|
219
|
+
"name": "Indonesian",
|
|
220
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Flag_of_Indonesia.svg/60px-Flag_of_Indonesia.svg.png"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"language": "ga",
|
|
224
|
+
"name": "Irish",
|
|
225
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/45/Flag_of_Ireland.svg/60px-Flag_of_Ireland.svg.png"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"language": "it",
|
|
229
|
+
"name": "Italian",
|
|
230
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Flag_of_Italy.svg/60px-Flag_of_Italy.svg.png"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"language": "ja",
|
|
234
|
+
"name": "Japanese",
|
|
235
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Flag_of_Japan.svg/60px-Flag_of_Japan.svg.png"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"language": "kk",
|
|
239
|
+
"name": "Kazakh",
|
|
240
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Flag_of_Kazakhstan.svg/60px-Flag_of_Kazakhstan.svg.png"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"language": "km",
|
|
244
|
+
"name": "Khmer",
|
|
245
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/8/83/Flag_of_Cambodia.svg/60px-Flag_of_Cambodia.svg.png"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"language": "rw",
|
|
249
|
+
"name": "Kinyarwanda",
|
|
250
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Flag_of_Rwanda.svg/60px-Flag_of_Rwanda.svg.png"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"language": "ko",
|
|
254
|
+
"name": "Korean",
|
|
255
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/8/8a/Unification_flag_of_Korea.svg/60px-Unification_flag_of_Korea.svg.png"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"language": "kri",
|
|
259
|
+
"name": "Krio",
|
|
260
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Flag_of_Sierra_Leone.svg/60px-Flag_of_Sierra_Leone.svg.png"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"language": "ky",
|
|
264
|
+
"name": "Kyrgyz",
|
|
265
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/c7/Flag_of_Kyrgyzstan.svg/60px-Flag_of_Kyrgyzstan.svg.png"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"language": "lo",
|
|
269
|
+
"name": "Lao",
|
|
270
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/5/56/Flag_of_Laos.svg/60px-Flag_of_Laos.svg.png"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"language": "lv",
|
|
274
|
+
"name": "Latvian",
|
|
275
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Flag_of_Latvia.svg/60px-Flag_of_Latvia.svg.png"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"language": "ln",
|
|
279
|
+
"name": "Lingala",
|
|
280
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Flag_of_the_Democratic_Republic_of_the_Congo.svg/60px-Flag_of_the_Democratic_Republic_of_the_Congo.svg.png"
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"language": "lt",
|
|
284
|
+
"name": "Lithuanian",
|
|
285
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Flag_of_Lithuania.svg/60px-Flag_of_Lithuania.svg.png"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"language": "lg",
|
|
289
|
+
"name": "Luganda",
|
|
290
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Flag_of_Uganda.svg/60px-Flag_of_Uganda.svg.png"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"language": "lb",
|
|
294
|
+
"name": "Luxembourgish",
|
|
295
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/Flag_of_Luxembourg.svg/60px-Flag_of_Luxembourg.svg.png"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"language": "mk",
|
|
299
|
+
"name": "Macedonian",
|
|
300
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/Flag_of_North_Macedonia.svg/60px-Flag_of_North_Macedonia.svg.png"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"language": "mg",
|
|
304
|
+
"name": "Malagasy",
|
|
305
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/bc/Flag_of_Madagascar.svg/60px-Flag_of_Madagascar.svg.png"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"language": "ms",
|
|
309
|
+
"name": "Malay",
|
|
310
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Flag_of_Malaysia_and_Indonesia.svg/60px-Flag_of_Malaysia_and_Indonesia.svg.png"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"language": "mt",
|
|
314
|
+
"name": "Maltese",
|
|
315
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/7/73/Flag_of_Malta.svg/60px-Flag_of_Malta.svg.png"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"language": "mi",
|
|
319
|
+
"name": "Maori",
|
|
320
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/3/3e/Flag_of_New_Zealand.svg/60px-Flag_of_New_Zealand.svg.png"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"language": "mn",
|
|
324
|
+
"name": "Mongolian",
|
|
325
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Flag_of_Mongolia.svg/60px-Flag_of_Mongolia.svg.png"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"language": "ne",
|
|
329
|
+
"name": "Nepali",
|
|
330
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Flag_of_Nepal.svg/20px-Flag_of_Nepal.svg.png"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"language": "no",
|
|
334
|
+
"name": "Norwegian",
|
|
335
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Flag_of_Norway.svg/60px-Flag_of_Norway.svg.png"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"language": "om",
|
|
339
|
+
"name": "Oromo",
|
|
340
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Flag_of_the_Oromia_Region.svg/60px-Flag_of_the_Oromia_Region.svg.png"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"language": "ps",
|
|
344
|
+
"name": "Pashto",
|
|
345
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Flag_of_Afghanistan_%282013%E2%80%932021%29.svg/60px-Flag_of_Afghanistan_%282013%E2%80%932021%29.svg.png"
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"language": "fa",
|
|
349
|
+
"name": "Persian",
|
|
350
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/60px-Flag_of_Iran.svg.png"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"language": "pl",
|
|
354
|
+
"name": "Polish",
|
|
355
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/12/Flag_of_Poland.svg/45px-Flag_of_Poland.svg.png"
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"language": "pt",
|
|
359
|
+
"name": "Portuguese (Brazil)",
|
|
360
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Flag_of_Portuguese_language_%28PT-BR%29.svg/60px-Flag_of_Portuguese_language_%28PT-BR%29.svg.png"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"language": "qu",
|
|
364
|
+
"name": "Quechua",
|
|
365
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Quechuas_flag.svg/60px-Quechuas_flag.svg.png"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"language": "ro",
|
|
369
|
+
"name": "Romanian",
|
|
370
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/7/73/Flag_of_Romania.svg/45px-Flag_of_Romania.svg.png"
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"language": "ru",
|
|
374
|
+
"name": "Russian",
|
|
375
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Flag_of_Russia.svg/60px-Flag_of_Russia.svg.png"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"language": "sg",
|
|
379
|
+
"name": "Sango",
|
|
380
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Flag_of_the_Central_African_Republic.svg/45px-Flag_of_the_Central_African_Republic.svg.png"
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"language": "gd",
|
|
384
|
+
"name": "Scots Gaelic",
|
|
385
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Flag_of_Scotland.svg/60px-Flag_of_Scotland.svg.png"
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"language": "nso",
|
|
389
|
+
"name": "Sepedi",
|
|
390
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/a/af/Flag_of_South_Africa.svg/60px-Flag_of_South_Africa.svg.png"
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"language": "sr",
|
|
394
|
+
"name": "Serbian",
|
|
395
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/fb/HR-BA-ME-RS_flag.svg/60px-HR-BA-ME-RS_flag.svg.png"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"language": "st",
|
|
399
|
+
"name": "Sesotho",
|
|
400
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Flag_of_Lesotho.svg/60px-Flag_of_Lesotho.svg.png"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"language": "crs",
|
|
404
|
+
"name": "Seychellois Creole",
|
|
405
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Flag_of_Seychelles.svg/60px-Flag_of_Seychelles.svg.png"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"language": "sn",
|
|
409
|
+
"name": "Shona",
|
|
410
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Flag_of_Zimbabwe.svg/60px-Flag_of_Zimbabwe.svg.png"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"language": "si",
|
|
414
|
+
"name": "Sinhala",
|
|
415
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Flag_of_Sri_Lanka.svg/60px-Flag_of_Sri_Lanka.svg.png"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"language": "sk",
|
|
419
|
+
"name": "Slovak",
|
|
420
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Flag_of_Slovakia.svg/45px-Flag_of_Slovakia.svg.png"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"language": "so",
|
|
424
|
+
"name": "Somali",
|
|
425
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/Flag_of_Somalia.svg/45px-Flag_of_Somalia.svg.png"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"language": "nr",
|
|
429
|
+
"name": "Southern Ndebele",
|
|
430
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Flag_of_Mpumalanga_Province.svg/60px-Flag_of_Mpumalanga_Province.svg.png"
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"language": "es",
|
|
434
|
+
"name": "Spanish",
|
|
435
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/49/Flag_of_Spanish_language_%28ES-MX%29.svg/60px-Flag_of_Spanish_language_%28ES-MX%29.svg.png"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"language": "sw",
|
|
439
|
+
"name": "Swahili",
|
|
440
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/49/Flag_of_Kenya.svg/60px-Flag_of_Kenya.svg.png"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"language": "sv",
|
|
444
|
+
"name": "Swedish",
|
|
445
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Flag_of_Sweden.svg/60px-Flag_of_Sweden.svg.png"
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"language": "tg",
|
|
449
|
+
"name": "Tajik",
|
|
450
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Flag_of_Tajikistan.svg/60px-Flag_of_Tajikistan.svg.png"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"language": "ta",
|
|
454
|
+
"name": "Tamil",
|
|
455
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Tamil_Eelam_Flag.svg/60px-Tamil_Eelam_Flag.svg.png"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"language": "tet",
|
|
459
|
+
"name": "Tetum",
|
|
460
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/2/26/Flag_of_East_Timor.svg/60px-Flag_of_East_Timor.svg.png"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"language": "th",
|
|
464
|
+
"name": "Thai",
|
|
465
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Flag_of_Thailand.svg/45px-Flag_of_Thailand.svg.png"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"language": "ti",
|
|
469
|
+
"name": "Tigrinya",
|
|
470
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/Flag_of_Eritrea.svg/60px-Flag_of_Eritrea.svg.png"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"language": "ts",
|
|
474
|
+
"name": "Tsonga",
|
|
475
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/7/70/Flag_of_Tsonga_language.svg/60px-Flag_of_Tsonga_language.svg.png"
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"language": "tn",
|
|
479
|
+
"name": "Tswana",
|
|
480
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Flag_of_Botswana.svg/60px-Flag_of_Botswana.svg.png"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"language": "tr",
|
|
484
|
+
"name": "Turkish",
|
|
485
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Flag_of_Turkey.svg/60px-Flag_of_Turkey.svg.png"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"language": "tk",
|
|
489
|
+
"name": "Turkmen",
|
|
490
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Flag_of_Turkmenistan.svg/60px-Flag_of_Turkmenistan.svg.png"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"language": "uk",
|
|
494
|
+
"name": "Ukrainian",
|
|
495
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/49/Flag_of_Ukraine.svg/60px-Flag_of_Ukraine.svg.png"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"language": "ur",
|
|
499
|
+
"name": "Urdu",
|
|
500
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Flag_of_Pakistan.svg/60px-Flag_of_Pakistan.svg.png"
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"language": "uz",
|
|
504
|
+
"name": "Uzbek",
|
|
505
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Flag_of_Uzbekistan.svg/60px-Flag_of_Uzbekistan.svg.png"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"language": "vi",
|
|
509
|
+
"name": "Vietnamese",
|
|
510
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Flag_of_Vietnam.svg/60px-Flag_of_Vietnam.svg.png"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"language": "xh",
|
|
514
|
+
"name": "Xhosa",
|
|
515
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/cc/Flag_of_Ciskei.svg/60px-Flag_of_Ciskei.svg.png"
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"language": "yo",
|
|
519
|
+
"name": "Yoruba",
|
|
520
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/Flag_of_Nigeria.svg/60px-Flag_of_Nigeria.svg.png"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"language": "zu",
|
|
524
|
+
"name": "Zulu",
|
|
525
|
+
"flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/60/Flag_of_the_KwaZulu-Natal_Province.png/60px-Flag_of_the_KwaZulu-Natal_Province.png"
|
|
526
|
+
}
|
|
527
|
+
]
|
|
528
|
+
;
|
|
529
|
+
|
|
530
|
+
export default _default;
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/build-entry.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export { default as mitt } from './event-bus/mitt';
|
|
2
|
+
export { default as eventBus, extendEventBus } from './event-bus';
|
|
3
|
+
export { default as ToastService } from 'primevue/toastservice';
|
|
4
|
+
export * from './utils';
|
|
5
|
+
export { formatCurrency } from './components/inputcurrency/helpers/currency.helper';
|
|
6
|
+
export { default as useLoadingStore } from './components/loading/store/loading.store';
|
|
7
|
+
export { default as Tooltip } from 'primevue/tooltip';
|
|
8
|
+
export { Focus } from './directives';
|
|
9
|
+
export { useForm, useField } from './plugins/formValidation';
|
|
10
|
+
export type { FormContext } from './plugins/formValidation';
|
|
11
|
+
export * from './plugins/translation';
|
|
12
|
+
export { default as i18n } from './plugins/translation';
|
|
13
|
+
export * from './components';
|
|
14
|
+
export { default as WangsVue } from './config';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ClassComponent } from 'lib/components/ts-helpers.d';
|
|
2
|
+
|
|
3
|
+
export interface AnimationDefaultConfig {
|
|
4
|
+
libPath: 'supplyasset' | 'workspace' | 'admin';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
export interface AnimationProps {
|
|
8
|
+
animation: 'no-data' | 'loading-plane' | 'loading-page' | 'loading-table';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* **WangsVue - Animation**
|
|
13
|
+
*
|
|
14
|
+
* _Animation is a lottie animation wrapper._
|
|
15
|
+
*
|
|
16
|
+
* @group Component
|
|
17
|
+
*/
|
|
18
|
+
declare class Animation extends ClassComponent<
|
|
19
|
+
AnimationProps,
|
|
20
|
+
unknown,
|
|
21
|
+
unknown
|
|
22
|
+
> {}
|
|
23
|
+
|
|
24
|
+
export default Animation;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers.d';
|
|
2
|
+
|
|
3
|
+
export interface ApproverDetail {
|
|
4
|
+
_id?: string;
|
|
5
|
+
level: number;
|
|
6
|
+
type: 'and' | 'or';
|
|
7
|
+
status: 'disetujui' | 'ditolak' | 'menunggu approval';
|
|
8
|
+
approvers: {
|
|
9
|
+
_id: string;
|
|
10
|
+
fullName: string;
|
|
11
|
+
actionAt?: string;
|
|
12
|
+
action?: 'menyetujui' | 'menolak' | null;
|
|
13
|
+
}[];
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export interface ApproverInfoProps {
|
|
17
|
+
approvals?: ApproverDetail[];
|
|
18
|
+
/**
|
|
19
|
+
* To determine whether this component show short information about approval or not
|
|
20
|
+
* @default true
|
|
21
|
+
*/
|
|
22
|
+
showShortInfo?: boolean;
|
|
23
|
+
/**
|
|
24
|
+
* To set label text when showShortInfo is false
|
|
25
|
+
*/
|
|
26
|
+
label?: string;
|
|
27
|
+
/**
|
|
28
|
+
* To set the button label that opens the approval dialog
|
|
29
|
+
* @default 'more'
|
|
30
|
+
*/
|
|
31
|
+
btnLabel?: string;
|
|
32
|
+
/**
|
|
33
|
+
* To format date in list approver
|
|
34
|
+
* @default true
|
|
35
|
+
*/
|
|
36
|
+
useFormatDate?: boolean;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
declare class ApproverInfo extends ClassComponent<
|
|
40
|
+
ApproverInfoProps,
|
|
41
|
+
unknown,
|
|
42
|
+
unknown
|
|
43
|
+
> {}
|
|
44
|
+
|
|
45
|
+
declare module '@vue/runtime-core' {
|
|
46
|
+
interface GlobalComponents {
|
|
47
|
+
ApproverInfo: GlobalComponentConstructor<ApproverInfo>;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export default ApproverInfo;
|