@leavepulse/ui 0.12.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/LICENSE +21 -0
- package/README.md +61 -0
- package/dist/component-names.d.ts +1 -0
- package/dist/components/LayoutCanvas.vue.d.ts +28 -0
- package/dist/components/LayoutNode.vue.d.ts +40 -0
- package/dist/components/LpAlert.vue.d.ts +44 -0
- package/dist/components/LpAppShell.vue.d.ts +83 -0
- package/dist/components/LpAutocomplete.vue.d.ts +50 -0
- package/dist/components/LpAvatar.vue.d.ts +20 -0
- package/dist/components/LpBadge.vue.d.ts +47 -0
- package/dist/components/LpBreadcrumbs.vue.d.ts +14 -0
- package/dist/components/LpButton.vue.d.ts +113 -0
- package/dist/components/LpCalendar.vue.d.ts +20 -0
- package/dist/components/LpCard.vue.d.ts +29 -0
- package/dist/components/LpCheckbox.vue.d.ts +28 -0
- package/dist/components/LpCodeBlock.vue.d.ts +39 -0
- package/dist/components/LpCommandPalette.vue.d.ts +42 -0
- package/dist/components/LpConfirmDialog.vue.d.ts +32 -0
- package/dist/components/LpContextMenu.vue.d.ts +30 -0
- package/dist/components/LpDatePicker.vue.d.ts +25 -0
- package/dist/components/LpDisclosure.vue.d.ts +37 -0
- package/dist/components/LpDivider.vue.d.ts +17 -0
- package/dist/components/LpDrawer.vue.d.ts +88 -0
- package/dist/components/LpDropdownMenu.vue.d.ts +23 -0
- package/dist/components/LpEmptyState.vue.d.ts +18 -0
- package/dist/components/LpFormField.vue.d.ts +21 -0
- package/dist/components/LpIcon.vue.d.ts +8 -0
- package/dist/components/LpInfraNode.vue.d.ts +21 -0
- package/dist/components/LpInput.vue.d.ts +68 -0
- package/dist/components/LpLaneNode.vue.d.ts +24 -0
- package/dist/components/LpLink.vue.d.ts +27 -0
- package/dist/components/LpLogViewer.vue.d.ts +92 -0
- package/dist/components/LpModal.vue.d.ts +43 -0
- package/dist/components/LpNotificationBell.vue.d.ts +51 -0
- package/dist/components/LpNumberField.vue.d.ts +14 -0
- package/dist/components/LpOtpInput.vue.d.ts +27 -0
- package/dist/components/LpPagination.vue.d.ts +25 -0
- package/dist/components/LpPasswordInput.vue.d.ts +28 -0
- package/dist/components/LpPhoneInput.vue.d.ts +37 -0
- package/dist/components/LpPopover.vue.d.ts +34 -0
- package/dist/components/LpProgress.vue.d.ts +12 -0
- package/dist/components/LpRadio.vue.d.ts +18 -0
- package/dist/components/LpRadioGroup.vue.d.ts +26 -0
- package/dist/components/LpScrollArea.vue.d.ts +24 -0
- package/dist/components/LpSegmented.vue.d.ts +24 -0
- package/dist/components/LpSelect.vue.d.ts +45 -0
- package/dist/components/LpServiceNode.vue.d.ts +14 -0
- package/dist/components/LpSidebar.vue.d.ts +85 -0
- package/dist/components/LpSidebarNav.vue.d.ts +34 -0
- package/dist/components/LpSkeleton.vue.d.ts +6 -0
- package/dist/components/LpSlider.vue.d.ts +23 -0
- package/dist/components/LpStat.vue.d.ts +22 -0
- package/dist/components/LpStepper.vue.d.ts +10 -0
- package/dist/components/LpSwitch.vue.d.ts +11 -0
- package/dist/components/LpTable.vue.d.ts +63 -0
- package/dist/components/LpTableOfContents.vue.d.ts +19 -0
- package/dist/components/LpTabs.vue.d.ts +45 -0
- package/dist/components/LpTextarea.vue.d.ts +17 -0
- package/dist/components/LpThemeSwitcher.vue.d.ts +40 -0
- package/dist/components/LpToaster.vue.d.ts +3 -0
- package/dist/components/LpTooltip.vue.d.ts +19 -0
- package/dist/components/LpTopologyCanvas.vue.d.ts +154 -0
- package/dist/components/LpUptimeBar.vue.d.ts +30 -0
- package/dist/components/codeHighlight.d.ts +8 -0
- package/dist/components/countries-data.d.ts +2 -0
- package/dist/components/countries.d.ts +20 -0
- package/dist/components/dropdown.d.ts +29 -0
- package/dist/components/sidebar.d.ts +18 -0
- package/dist/composables/useInputFilter.d.ts +14 -0
- package/dist/composables/usePillTransition.d.ts +9 -0
- package/dist/composables/useToast.d.ts +39 -0
- package/dist/countries-data-9rgqJWHo.js +203 -0
- package/dist/icons.d.ts +1 -0
- package/dist/index.css +1 -0
- package/dist/index.d.ts +100 -0
- package/dist/index.js +17600 -0
- package/dist/layout/registry.d.ts +26 -0
- package/dist/layout/tree.d.ts +75 -0
- package/dist/layout/useLayout.d.ts +39 -0
- package/dist/theme/config.d.ts +16 -0
- package/dist/theme/define.d.ts +12 -0
- package/dist/theme/presets.d.ts +20 -0
- package/dist/theme/tokens.d.ts +72 -0
- package/dist/theme/useTheme.d.ts +36 -0
- package/package.json +93 -0
- package/src/canvas.css +67 -0
- package/src/component-names.ts +65 -0
- package/src/components/LayoutCanvas.vue +76 -0
- package/src/components/LayoutNode.vue +248 -0
- package/src/components/LpAlert.vue +59 -0
- package/src/components/LpAppShell.vue +210 -0
- package/src/components/LpAutocomplete.vue +244 -0
- package/src/components/LpAvatar.vue +67 -0
- package/src/components/LpBadge.vue +32 -0
- package/src/components/LpBreadcrumbs.vue +35 -0
- package/src/components/LpButton.vue +111 -0
- package/src/components/LpCalendar.vue +134 -0
- package/src/components/LpCard.vue +71 -0
- package/src/components/LpCheckbox.vue +44 -0
- package/src/components/LpCodeBlock.vue +298 -0
- package/src/components/LpCommandPalette.vue +323 -0
- package/src/components/LpConfirmDialog.vue +49 -0
- package/src/components/LpContextMenu.vue +111 -0
- package/src/components/LpDatePicker.vue +117 -0
- package/src/components/LpDisclosure.vue +92 -0
- package/src/components/LpDivider.vue +20 -0
- package/src/components/LpDrawer.vue +402 -0
- package/src/components/LpDropdownMenu.vue +54 -0
- package/src/components/LpEmptyState.vue +21 -0
- package/src/components/LpFormField.vue +31 -0
- package/src/components/LpIcon.vue +49 -0
- package/src/components/LpInfraNode.vue +108 -0
- package/src/components/LpInput.vue +147 -0
- package/src/components/LpLaneNode.vue +48 -0
- package/src/components/LpLink.vue +48 -0
- package/src/components/LpLogViewer.vue +569 -0
- package/src/components/LpModal.vue +123 -0
- package/src/components/LpNotificationBell.vue +238 -0
- package/src/components/LpNumberField.vue +56 -0
- package/src/components/LpOtpInput.vue +81 -0
- package/src/components/LpPagination.vue +165 -0
- package/src/components/LpPasswordInput.vue +50 -0
- package/src/components/LpPhoneInput.vue +241 -0
- package/src/components/LpPopover.vue +42 -0
- package/src/components/LpProgress.vue +30 -0
- package/src/components/LpRadio.vue +28 -0
- package/src/components/LpRadioGroup.vue +43 -0
- package/src/components/LpScrollArea.vue +82 -0
- package/src/components/LpSegmented.vue +83 -0
- package/src/components/LpSelect.vue +0 -0
- package/src/components/LpServiceNode.vue +57 -0
- package/src/components/LpSidebar.vue +200 -0
- package/src/components/LpSidebarNav.vue +118 -0
- package/src/components/LpSkeleton.vue +16 -0
- package/src/components/LpSlider.vue +53 -0
- package/src/components/LpStat.vue +90 -0
- package/src/components/LpStepper.vue +46 -0
- package/src/components/LpSwitch.vue +19 -0
- package/src/components/LpTable.vue +252 -0
- package/src/components/LpTableOfContents.vue +183 -0
- package/src/components/LpTabs.vue +120 -0
- package/src/components/LpTextarea.vue +39 -0
- package/src/components/LpThemeSwitcher.vue +168 -0
- package/src/components/LpToaster.vue +216 -0
- package/src/components/LpTooltip.vue +30 -0
- package/src/components/LpTopologyCanvas.vue +370 -0
- package/src/components/LpUptimeBar.vue +126 -0
- package/src/components/codeHighlight.ts +137 -0
- package/src/components/countries-data.ts +207 -0
- package/src/components/countries.ts +67 -0
- package/src/components/dropdown.ts +64 -0
- package/src/components/sidebar.ts +26 -0
- package/src/composables/useInputFilter.ts +89 -0
- package/src/composables/usePillTransition.ts +19 -0
- package/src/composables/useToast.ts +92 -0
- package/src/icons.ts +11 -0
- package/src/index.css +21 -0
- package/src/index.ts +146 -0
- package/src/layout/registry.ts +44 -0
- package/src/layout/tree.ts +288 -0
- package/src/layout/useLayout.ts +134 -0
- package/src/nuxt.ts +22 -0
- package/src/theme/config.ts +48 -0
- package/src/theme/define.ts +50 -0
- package/src/theme/presets.ts +279 -0
- package/src/theme/tokens.ts +151 -0
- package/src/theme/useTheme.ts +288 -0
- package/src/tokens/scrollbar.css +138 -0
- package/src/tokens/tokens.css +333 -0
- package/src/tokens/utilities.css +23 -0
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
const a = [
|
|
2
|
+
{ iso2: "AF", name: "Afghanistan", dial: "93" },
|
|
3
|
+
{ iso2: "AL", name: "Albania", dial: "355" },
|
|
4
|
+
{ iso2: "DZ", name: "Algeria", dial: "213" },
|
|
5
|
+
{ iso2: "AD", name: "Andorra", dial: "376" },
|
|
6
|
+
{ iso2: "AO", name: "Angola", dial: "244" },
|
|
7
|
+
{ iso2: "AG", name: "Antigua and Barbuda", dial: "1268" },
|
|
8
|
+
{ iso2: "AR", name: "Argentina", dial: "54" },
|
|
9
|
+
{ iso2: "AM", name: "Armenia", dial: "374" },
|
|
10
|
+
{ iso2: "AU", name: "Australia", dial: "61" },
|
|
11
|
+
{ iso2: "AT", name: "Austria", dial: "43" },
|
|
12
|
+
{ iso2: "AZ", name: "Azerbaijan", dial: "994" },
|
|
13
|
+
{ iso2: "BS", name: "Bahamas", dial: "1242" },
|
|
14
|
+
{ iso2: "BH", name: "Bahrain", dial: "973" },
|
|
15
|
+
{ iso2: "BD", name: "Bangladesh", dial: "880" },
|
|
16
|
+
{ iso2: "BB", name: "Barbados", dial: "1246" },
|
|
17
|
+
{ iso2: "BY", name: "Belarus", dial: "375" },
|
|
18
|
+
{ iso2: "BE", name: "Belgium", dial: "32" },
|
|
19
|
+
{ iso2: "BZ", name: "Belize", dial: "501" },
|
|
20
|
+
{ iso2: "BJ", name: "Benin", dial: "229" },
|
|
21
|
+
{ iso2: "BT", name: "Bhutan", dial: "975" },
|
|
22
|
+
{ iso2: "BO", name: "Bolivia", dial: "591" },
|
|
23
|
+
{ iso2: "BA", name: "Bosnia and Herzegovina", dial: "387" },
|
|
24
|
+
{ iso2: "BW", name: "Botswana", dial: "267" },
|
|
25
|
+
{ iso2: "BR", name: "Brazil", dial: "55" },
|
|
26
|
+
{ iso2: "BN", name: "Brunei", dial: "673" },
|
|
27
|
+
{ iso2: "BG", name: "Bulgaria", dial: "359" },
|
|
28
|
+
{ iso2: "BF", name: "Burkina Faso", dial: "226" },
|
|
29
|
+
{ iso2: "BI", name: "Burundi", dial: "257" },
|
|
30
|
+
{ iso2: "KH", name: "Cambodia", dial: "855" },
|
|
31
|
+
{ iso2: "CM", name: "Cameroon", dial: "237" },
|
|
32
|
+
{ iso2: "CA", name: "Canada", dial: "1" },
|
|
33
|
+
{ iso2: "CV", name: "Cape Verde", dial: "238" },
|
|
34
|
+
{ iso2: "CF", name: "Central African Republic", dial: "236" },
|
|
35
|
+
{ iso2: "TD", name: "Chad", dial: "235" },
|
|
36
|
+
{ iso2: "CL", name: "Chile", dial: "56" },
|
|
37
|
+
{ iso2: "CN", name: "China", dial: "86" },
|
|
38
|
+
{ iso2: "CO", name: "Colombia", dial: "57" },
|
|
39
|
+
{ iso2: "KM", name: "Comoros", dial: "269" },
|
|
40
|
+
{ iso2: "CG", name: "Congo", dial: "242" },
|
|
41
|
+
{ iso2: "CD", name: "Congo (DRC)", dial: "243" },
|
|
42
|
+
{ iso2: "CR", name: "Costa Rica", dial: "506" },
|
|
43
|
+
{ iso2: "CI", name: "Côte d’Ivoire", dial: "225" },
|
|
44
|
+
{ iso2: "HR", name: "Croatia", dial: "385" },
|
|
45
|
+
{ iso2: "CU", name: "Cuba", dial: "53" },
|
|
46
|
+
{ iso2: "CY", name: "Cyprus", dial: "357" },
|
|
47
|
+
{ iso2: "CZ", name: "Czechia", dial: "420" },
|
|
48
|
+
{ iso2: "DK", name: "Denmark", dial: "45" },
|
|
49
|
+
{ iso2: "DJ", name: "Djibouti", dial: "253" },
|
|
50
|
+
{ iso2: "DM", name: "Dominica", dial: "1767" },
|
|
51
|
+
{ iso2: "DO", name: "Dominican Republic", dial: "1809" },
|
|
52
|
+
{ iso2: "EC", name: "Ecuador", dial: "593" },
|
|
53
|
+
{ iso2: "EG", name: "Egypt", dial: "20" },
|
|
54
|
+
{ iso2: "SV", name: "El Salvador", dial: "503" },
|
|
55
|
+
{ iso2: "GQ", name: "Equatorial Guinea", dial: "240" },
|
|
56
|
+
{ iso2: "ER", name: "Eritrea", dial: "291" },
|
|
57
|
+
{ iso2: "EE", name: "Estonia", dial: "372" },
|
|
58
|
+
{ iso2: "SZ", name: "Eswatini", dial: "268" },
|
|
59
|
+
{ iso2: "ET", name: "Ethiopia", dial: "251" },
|
|
60
|
+
{ iso2: "FJ", name: "Fiji", dial: "679" },
|
|
61
|
+
{ iso2: "FI", name: "Finland", dial: "358" },
|
|
62
|
+
{ iso2: "FR", name: "France", dial: "33" },
|
|
63
|
+
{ iso2: "GA", name: "Gabon", dial: "241" },
|
|
64
|
+
{ iso2: "GM", name: "Gambia", dial: "220" },
|
|
65
|
+
{ iso2: "GE", name: "Georgia", dial: "995" },
|
|
66
|
+
{ iso2: "DE", name: "Germany", dial: "49" },
|
|
67
|
+
{ iso2: "GH", name: "Ghana", dial: "233" },
|
|
68
|
+
{ iso2: "GR", name: "Greece", dial: "30" },
|
|
69
|
+
{ iso2: "GD", name: "Grenada", dial: "1473" },
|
|
70
|
+
{ iso2: "GT", name: "Guatemala", dial: "502" },
|
|
71
|
+
{ iso2: "GN", name: "Guinea", dial: "224" },
|
|
72
|
+
{ iso2: "GW", name: "Guinea-Bissau", dial: "245" },
|
|
73
|
+
{ iso2: "GY", name: "Guyana", dial: "592" },
|
|
74
|
+
{ iso2: "HT", name: "Haiti", dial: "509" },
|
|
75
|
+
{ iso2: "HN", name: "Honduras", dial: "504" },
|
|
76
|
+
{ iso2: "HK", name: "Hong Kong", dial: "852" },
|
|
77
|
+
{ iso2: "HU", name: "Hungary", dial: "36" },
|
|
78
|
+
{ iso2: "IS", name: "Iceland", dial: "354" },
|
|
79
|
+
{ iso2: "IN", name: "India", dial: "91" },
|
|
80
|
+
{ iso2: "ID", name: "Indonesia", dial: "62" },
|
|
81
|
+
{ iso2: "IR", name: "Iran", dial: "98" },
|
|
82
|
+
{ iso2: "IQ", name: "Iraq", dial: "964" },
|
|
83
|
+
{ iso2: "IE", name: "Ireland", dial: "353" },
|
|
84
|
+
{ iso2: "IL", name: "Israel", dial: "972" },
|
|
85
|
+
{ iso2: "IT", name: "Italy", dial: "39" },
|
|
86
|
+
{ iso2: "JM", name: "Jamaica", dial: "1876" },
|
|
87
|
+
{ iso2: "JP", name: "Japan", dial: "81" },
|
|
88
|
+
{ iso2: "JO", name: "Jordan", dial: "962" },
|
|
89
|
+
{ iso2: "KZ", name: "Kazakhstan", dial: "7" },
|
|
90
|
+
{ iso2: "KE", name: "Kenya", dial: "254" },
|
|
91
|
+
{ iso2: "KI", name: "Kiribati", dial: "686" },
|
|
92
|
+
{ iso2: "KW", name: "Kuwait", dial: "965" },
|
|
93
|
+
{ iso2: "KG", name: "Kyrgyzstan", dial: "996" },
|
|
94
|
+
{ iso2: "LA", name: "Laos", dial: "856" },
|
|
95
|
+
{ iso2: "LV", name: "Latvia", dial: "371" },
|
|
96
|
+
{ iso2: "LB", name: "Lebanon", dial: "961" },
|
|
97
|
+
{ iso2: "LS", name: "Lesotho", dial: "266" },
|
|
98
|
+
{ iso2: "LR", name: "Liberia", dial: "231" },
|
|
99
|
+
{ iso2: "LY", name: "Libya", dial: "218" },
|
|
100
|
+
{ iso2: "LI", name: "Liechtenstein", dial: "423" },
|
|
101
|
+
{ iso2: "LT", name: "Lithuania", dial: "370" },
|
|
102
|
+
{ iso2: "LU", name: "Luxembourg", dial: "352" },
|
|
103
|
+
{ iso2: "MO", name: "Macau", dial: "853" },
|
|
104
|
+
{ iso2: "MG", name: "Madagascar", dial: "261" },
|
|
105
|
+
{ iso2: "MW", name: "Malawi", dial: "265" },
|
|
106
|
+
{ iso2: "MY", name: "Malaysia", dial: "60" },
|
|
107
|
+
{ iso2: "MV", name: "Maldives", dial: "960" },
|
|
108
|
+
{ iso2: "ML", name: "Mali", dial: "223" },
|
|
109
|
+
{ iso2: "MT", name: "Malta", dial: "356" },
|
|
110
|
+
{ iso2: "MH", name: "Marshall Islands", dial: "692" },
|
|
111
|
+
{ iso2: "MR", name: "Mauritania", dial: "222" },
|
|
112
|
+
{ iso2: "MU", name: "Mauritius", dial: "230" },
|
|
113
|
+
{ iso2: "MX", name: "Mexico", dial: "52" },
|
|
114
|
+
{ iso2: "FM", name: "Micronesia", dial: "691" },
|
|
115
|
+
{ iso2: "MD", name: "Moldova", dial: "373" },
|
|
116
|
+
{ iso2: "MC", name: "Monaco", dial: "377" },
|
|
117
|
+
{ iso2: "MN", name: "Mongolia", dial: "976" },
|
|
118
|
+
{ iso2: "ME", name: "Montenegro", dial: "382" },
|
|
119
|
+
{ iso2: "MA", name: "Morocco", dial: "212" },
|
|
120
|
+
{ iso2: "MZ", name: "Mozambique", dial: "258" },
|
|
121
|
+
{ iso2: "MM", name: "Myanmar", dial: "95" },
|
|
122
|
+
{ iso2: "NA", name: "Namibia", dial: "264" },
|
|
123
|
+
{ iso2: "NR", name: "Nauru", dial: "674" },
|
|
124
|
+
{ iso2: "NP", name: "Nepal", dial: "977" },
|
|
125
|
+
{ iso2: "NL", name: "Netherlands", dial: "31" },
|
|
126
|
+
{ iso2: "NZ", name: "New Zealand", dial: "64" },
|
|
127
|
+
{ iso2: "NI", name: "Nicaragua", dial: "505" },
|
|
128
|
+
{ iso2: "NE", name: "Niger", dial: "227" },
|
|
129
|
+
{ iso2: "NG", name: "Nigeria", dial: "234" },
|
|
130
|
+
{ iso2: "KP", name: "North Korea", dial: "850" },
|
|
131
|
+
{ iso2: "MK", name: "North Macedonia", dial: "389" },
|
|
132
|
+
{ iso2: "NO", name: "Norway", dial: "47" },
|
|
133
|
+
{ iso2: "OM", name: "Oman", dial: "968" },
|
|
134
|
+
{ iso2: "PK", name: "Pakistan", dial: "92" },
|
|
135
|
+
{ iso2: "PW", name: "Palau", dial: "680" },
|
|
136
|
+
{ iso2: "PS", name: "Palestine", dial: "970" },
|
|
137
|
+
{ iso2: "PA", name: "Panama", dial: "507" },
|
|
138
|
+
{ iso2: "PG", name: "Papua New Guinea", dial: "675" },
|
|
139
|
+
{ iso2: "PY", name: "Paraguay", dial: "595" },
|
|
140
|
+
{ iso2: "PE", name: "Peru", dial: "51" },
|
|
141
|
+
{ iso2: "PH", name: "Philippines", dial: "63" },
|
|
142
|
+
{ iso2: "PL", name: "Poland", dial: "48" },
|
|
143
|
+
{ iso2: "PT", name: "Portugal", dial: "351" },
|
|
144
|
+
{ iso2: "QA", name: "Qatar", dial: "974" },
|
|
145
|
+
{ iso2: "RO", name: "Romania", dial: "40" },
|
|
146
|
+
{ iso2: "RU", name: "Russia", dial: "7" },
|
|
147
|
+
{ iso2: "RW", name: "Rwanda", dial: "250" },
|
|
148
|
+
{ iso2: "KN", name: "Saint Kitts and Nevis", dial: "1869" },
|
|
149
|
+
{ iso2: "LC", name: "Saint Lucia", dial: "1758" },
|
|
150
|
+
{ iso2: "VC", name: "Saint Vincent and the Grenadines", dial: "1784" },
|
|
151
|
+
{ iso2: "WS", name: "Samoa", dial: "685" },
|
|
152
|
+
{ iso2: "SM", name: "San Marino", dial: "378" },
|
|
153
|
+
{ iso2: "ST", name: "São Tomé and Príncipe", dial: "239" },
|
|
154
|
+
{ iso2: "SA", name: "Saudi Arabia", dial: "966" },
|
|
155
|
+
{ iso2: "SN", name: "Senegal", dial: "221" },
|
|
156
|
+
{ iso2: "RS", name: "Serbia", dial: "381" },
|
|
157
|
+
{ iso2: "SC", name: "Seychelles", dial: "248" },
|
|
158
|
+
{ iso2: "SL", name: "Sierra Leone", dial: "232" },
|
|
159
|
+
{ iso2: "SG", name: "Singapore", dial: "65" },
|
|
160
|
+
{ iso2: "SK", name: "Slovakia", dial: "421" },
|
|
161
|
+
{ iso2: "SI", name: "Slovenia", dial: "386" },
|
|
162
|
+
{ iso2: "SB", name: "Solomon Islands", dial: "677" },
|
|
163
|
+
{ iso2: "SO", name: "Somalia", dial: "252" },
|
|
164
|
+
{ iso2: "ZA", name: "South Africa", dial: "27" },
|
|
165
|
+
{ iso2: "KR", name: "South Korea", dial: "82" },
|
|
166
|
+
{ iso2: "SS", name: "South Sudan", dial: "211" },
|
|
167
|
+
{ iso2: "ES", name: "Spain", dial: "34" },
|
|
168
|
+
{ iso2: "LK", name: "Sri Lanka", dial: "94" },
|
|
169
|
+
{ iso2: "SD", name: "Sudan", dial: "249" },
|
|
170
|
+
{ iso2: "SR", name: "Suriname", dial: "597" },
|
|
171
|
+
{ iso2: "SE", name: "Sweden", dial: "46" },
|
|
172
|
+
{ iso2: "CH", name: "Switzerland", dial: "41" },
|
|
173
|
+
{ iso2: "SY", name: "Syria", dial: "963" },
|
|
174
|
+
{ iso2: "TW", name: "Taiwan", dial: "886" },
|
|
175
|
+
{ iso2: "TJ", name: "Tajikistan", dial: "992" },
|
|
176
|
+
{ iso2: "TZ", name: "Tanzania", dial: "255" },
|
|
177
|
+
{ iso2: "TH", name: "Thailand", dial: "66" },
|
|
178
|
+
{ iso2: "TL", name: "Timor-Leste", dial: "670" },
|
|
179
|
+
{ iso2: "TG", name: "Togo", dial: "228" },
|
|
180
|
+
{ iso2: "TO", name: "Tonga", dial: "676" },
|
|
181
|
+
{ iso2: "TT", name: "Trinidad and Tobago", dial: "1868" },
|
|
182
|
+
{ iso2: "TN", name: "Tunisia", dial: "216" },
|
|
183
|
+
{ iso2: "TR", name: "Turkey", dial: "90" },
|
|
184
|
+
{ iso2: "TM", name: "Turkmenistan", dial: "993" },
|
|
185
|
+
{ iso2: "TV", name: "Tuvalu", dial: "688" },
|
|
186
|
+
{ iso2: "UG", name: "Uganda", dial: "256" },
|
|
187
|
+
{ iso2: "UA", name: "Ukraine", dial: "380" },
|
|
188
|
+
{ iso2: "AE", name: "United Arab Emirates", dial: "971" },
|
|
189
|
+
{ iso2: "GB", name: "United Kingdom", dial: "44" },
|
|
190
|
+
{ iso2: "US", name: "United States", dial: "1" },
|
|
191
|
+
{ iso2: "UY", name: "Uruguay", dial: "598" },
|
|
192
|
+
{ iso2: "UZ", name: "Uzbekistan", dial: "998" },
|
|
193
|
+
{ iso2: "VU", name: "Vanuatu", dial: "678" },
|
|
194
|
+
{ iso2: "VA", name: "Vatican City", dial: "39" },
|
|
195
|
+
{ iso2: "VE", name: "Venezuela", dial: "58" },
|
|
196
|
+
{ iso2: "VN", name: "Vietnam", dial: "84" },
|
|
197
|
+
{ iso2: "YE", name: "Yemen", dial: "967" },
|
|
198
|
+
{ iso2: "ZM", name: "Zambia", dial: "260" },
|
|
199
|
+
{ iso2: "ZW", name: "Zimbabwe", dial: "263" }
|
|
200
|
+
];
|
|
201
|
+
export {
|
|
202
|
+
a as COUNTRIES
|
|
203
|
+
};
|
package/dist/icons.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/index.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.lp-cmd-item[data-v-d845063e]{animation:lp-cmd-in-d845063e .14s ease-out both}@keyframes lp-cmd-in-d845063e{0%{opacity:0;transform:translateY(3px)}}@media(prefers-reduced-motion:reduce){.lp-cmd-item[data-v-d845063e]{animation:none}}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
export { default as LayoutCanvas } from './components/LayoutCanvas.vue';
|
|
2
|
+
export { default as LpAlert } from './components/LpAlert.vue';
|
|
3
|
+
export { default as LpAppShell } from './components/LpAppShell.vue';
|
|
4
|
+
export { default as LpAutocomplete } from './components/LpAutocomplete.vue';
|
|
5
|
+
export type { AutocompleteOption } from './components/LpAutocomplete.vue';
|
|
6
|
+
export { default as LpAvatar } from './components/LpAvatar.vue';
|
|
7
|
+
export { default as LpBadge } from './components/LpBadge.vue';
|
|
8
|
+
export { default as LpBreadcrumbs } from './components/LpBreadcrumbs.vue';
|
|
9
|
+
export type { Crumb } from './components/LpBreadcrumbs.vue';
|
|
10
|
+
export { default as LpButton } from './components/LpButton.vue';
|
|
11
|
+
export { default as LpCalendar } from './components/LpCalendar.vue';
|
|
12
|
+
export { default as LpCard } from './components/LpCard.vue';
|
|
13
|
+
export { default as LpCheckbox } from './components/LpCheckbox.vue';
|
|
14
|
+
export { default as LpCodeBlock } from './components/LpCodeBlock.vue';
|
|
15
|
+
export type { CodeLang } from './components/codeHighlight';
|
|
16
|
+
export { default as LpCommandPalette } from './components/LpCommandPalette.vue';
|
|
17
|
+
export type { Command } from './components/LpCommandPalette.vue';
|
|
18
|
+
export { default as LpConfirmDialog } from './components/LpConfirmDialog.vue';
|
|
19
|
+
export { default as LpContextMenu } from './components/LpContextMenu.vue';
|
|
20
|
+
export type { ContextMenuItemDef } from './components/LpContextMenu.vue';
|
|
21
|
+
export { default as LpDatePicker } from './components/LpDatePicker.vue';
|
|
22
|
+
export { default as LpDisclosure } from './components/LpDisclosure.vue';
|
|
23
|
+
export { default as LpDivider } from './components/LpDivider.vue';
|
|
24
|
+
export { default as LpDrawer } from './components/LpDrawer.vue';
|
|
25
|
+
export { default as LpDropdownMenu } from './components/LpDropdownMenu.vue';
|
|
26
|
+
export type { MenuItem } from './components/LpDropdownMenu.vue';
|
|
27
|
+
export { default as LpEmptyState } from './components/LpEmptyState.vue';
|
|
28
|
+
export { default as LpFormField } from './components/LpFormField.vue';
|
|
29
|
+
export { default as LpIcon } from './components/LpIcon.vue';
|
|
30
|
+
export { default as LpInfraNode } from './components/LpInfraNode.vue';
|
|
31
|
+
export type { InfraNodeData } from './components/LpInfraNode.vue';
|
|
32
|
+
export { default as LpInput } from './components/LpInput.vue';
|
|
33
|
+
export { default as LpLink } from './components/LpLink.vue';
|
|
34
|
+
export { default as LpLogViewer } from './components/LpLogViewer.vue';
|
|
35
|
+
export type { LogLevel, LogLine } from './components/LpLogViewer.vue';
|
|
36
|
+
export { default as LpModal } from './components/LpModal.vue';
|
|
37
|
+
export { default as LpNotificationBell } from './components/LpNotificationBell.vue';
|
|
38
|
+
export type { NotificationItem } from './components/LpNotificationBell.vue';
|
|
39
|
+
export { default as LpNumberField } from './components/LpNumberField.vue';
|
|
40
|
+
export { default as LpOtpInput } from './components/LpOtpInput.vue';
|
|
41
|
+
export { default as LpPagination } from './components/LpPagination.vue';
|
|
42
|
+
export { default as LpPasswordInput } from './components/LpPasswordInput.vue';
|
|
43
|
+
export { default as LpPhoneInput } from './components/LpPhoneInput.vue';
|
|
44
|
+
export type { PhoneDetail } from './components/LpPhoneInput.vue';
|
|
45
|
+
export { flagEmoji, loadCountries, matchCountryByValue } from './components/countries';
|
|
46
|
+
export type { Country } from './components/countries';
|
|
47
|
+
export { default as LpPopover } from './components/LpPopover.vue';
|
|
48
|
+
export { default as LpProgress } from './components/LpProgress.vue';
|
|
49
|
+
export { default as LpRadio } from './components/LpRadio.vue';
|
|
50
|
+
export { default as LpRadioGroup } from './components/LpRadioGroup.vue';
|
|
51
|
+
export type { RadioOption } from './components/LpRadioGroup.vue';
|
|
52
|
+
export { default as LpScrollArea } from './components/LpScrollArea.vue';
|
|
53
|
+
export { default as LpSegmented } from './components/LpSegmented.vue';
|
|
54
|
+
export type { SegmentedOption } from './components/LpSegmented.vue';
|
|
55
|
+
export { default as LpSelect } from './components/LpSelect.vue';
|
|
56
|
+
export type { SelectOption, SelectValue } from './components/LpSelect.vue';
|
|
57
|
+
export { default as LpServiceNode } from './components/LpServiceNode.vue';
|
|
58
|
+
export type { ServiceNodeData } from './components/LpServiceNode.vue';
|
|
59
|
+
export { default as LpSidebar } from './components/LpSidebar.vue';
|
|
60
|
+
export type { SidebarItem, SidebarSection } from './components/LpSidebar.vue';
|
|
61
|
+
export { default as LpSkeleton } from './components/LpSkeleton.vue';
|
|
62
|
+
export { default as LpSlider } from './components/LpSlider.vue';
|
|
63
|
+
export { default as LpStat } from './components/LpStat.vue';
|
|
64
|
+
export { default as LpStepper } from './components/LpStepper.vue';
|
|
65
|
+
export type { Step } from './components/LpStepper.vue';
|
|
66
|
+
export { default as LpSwitch } from './components/LpSwitch.vue';
|
|
67
|
+
export { default as LpTable } from './components/LpTable.vue';
|
|
68
|
+
export type { SortState, TableColumn } from './components/LpTable.vue';
|
|
69
|
+
export { default as LpTableOfContents } from './components/LpTableOfContents.vue';
|
|
70
|
+
export type { TocLink } from './components/LpTableOfContents.vue';
|
|
71
|
+
export { default as LpTabs } from './components/LpTabs.vue';
|
|
72
|
+
export type { TabItem } from './components/LpTabs.vue';
|
|
73
|
+
export { default as LpTextarea } from './components/LpTextarea.vue';
|
|
74
|
+
export { default as LpThemeSwitcher } from './components/LpThemeSwitcher.vue';
|
|
75
|
+
export { default as LpToaster } from './components/LpToaster.vue';
|
|
76
|
+
export { default as LpTooltip } from './components/LpTooltip.vue';
|
|
77
|
+
export { default as LpTopologyCanvas } from './components/LpTopologyCanvas.vue';
|
|
78
|
+
export type { CanvasViewport, EdgeCategory, EdgeObserved, TopologyEdge, TopologyLane, TopologyNode, } from './components/LpTopologyCanvas.vue';
|
|
79
|
+
export { default as LpUptimeBar } from './components/LpUptimeBar.vue';
|
|
80
|
+
export type { UptimeSegment, UptimeStatus } from './components/LpUptimeBar.vue';
|
|
81
|
+
export { addLeaf, addTab, countBlocks, countLeaves, deserializeLayout, makeLayout, moveLeaf, removeBlock, removeLeaf, reorderTab, resizeAt, setActiveTab, serializeLayout, } from './layout/tree';
|
|
82
|
+
export type { Dir, LayoutNode, Leaf, Side, Split } from './layout/tree';
|
|
83
|
+
export { blockTitle, defineBlocks } from './layout/registry';
|
|
84
|
+
export type { BlockDef, BlockRegistry } from './layout/registry';
|
|
85
|
+
export { useLayout } from './layout/useLayout';
|
|
86
|
+
export type { UseLayout, UseLayoutOptions } from './layout/useLayout';
|
|
87
|
+
export { applyTheme, applyThemeWithTransition, bootstrapTheme, parseTheme, serializeTheme, themeToCssRule, themeToCssVars, useTheme, } from './theme/useTheme';
|
|
88
|
+
export type { RevealOrigin } from './theme/useTheme';
|
|
89
|
+
export { DEFAULT_SURFACE } from './theme/tokens';
|
|
90
|
+
export { defineTheme } from './theme/define';
|
|
91
|
+
export type { ThemeOverrides } from './theme/define';
|
|
92
|
+
export type { ColorTokens, DensityTokens, FontTokens, ShapeTokens, SurfaceTokens, TokenSet, } from './theme/tokens';
|
|
93
|
+
export { amber, dark, leavepulse, light, lime, nord, presets, rose, violet } from './theme/presets';
|
|
94
|
+
export type { PresetName } from './theme/presets';
|
|
95
|
+
export { parseConfig, serializeConfig, UI_CONFIG_VERSION } from './theme/config';
|
|
96
|
+
export type { UiConfig } from './theme/config';
|
|
97
|
+
export { useInputFilter } from './composables/useInputFilter';
|
|
98
|
+
export type { UseInputFilterOptions } from './composables/useInputFilter';
|
|
99
|
+
export { useToast } from './composables/useToast';
|
|
100
|
+
export type { ToastAction, ToastItem, ToastOptions, ToastVariant, } from './composables/useToast';
|