@gnggln/ng-ui-system 1.0.0-alpha.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/esm2022/gnggln-ng-ui-system.mjs +5 -0
- package/esm2022/lib/components/accordion/accordion.component.mjs +353 -0
- package/esm2022/lib/components/accordion/accordion.types.mjs +6 -0
- package/esm2022/lib/components/accordion/index.mjs +2 -0
- package/esm2022/lib/components/base-layout/base-layout.component.mjs +218 -0
- package/esm2022/lib/components/base-layout/base-layout.types.mjs +6 -0
- package/esm2022/lib/components/base-layout/index.mjs +14 -0
- package/esm2022/lib/components/button/button-area.component.mjs +196 -0
- package/esm2022/lib/components/button/button.component.mjs +164 -0
- package/esm2022/lib/components/button/button.types.mjs +6 -0
- package/esm2022/lib/components/button/index.mjs +16 -0
- package/esm2022/lib/components/crud-table/crud-table.component.mjs +789 -0
- package/esm2022/lib/components/crud-table/crud-table.types.mjs +6 -0
- package/esm2022/lib/components/crud-table/index.mjs +16 -0
- package/esm2022/lib/components/form-builder/adapters/it-date-adapter.mjs +82 -0
- package/esm2022/lib/components/form-builder/directives/currency-input.directive.mjs +184 -0
- package/esm2022/lib/components/form-builder/form-builder.component.mjs +824 -0
- package/esm2022/lib/components/form-builder/form-wizard.component.mjs +510 -0
- package/esm2022/lib/components/form-builder/index.mjs +19 -0
- package/esm2022/lib/components/form-builder/services/form-condition.service.mjs +132 -0
- package/esm2022/lib/components/form-builder/services/form-validation.service.mjs +381 -0
- package/esm2022/lib/components/form-builder/services/location.service.mjs +140 -0
- package/esm2022/lib/components/form-builder/services/wizard-sync.service.mjs +84 -0
- package/esm2022/lib/components/form-builder/sub-components/error-summary/form-error-summary.component.mjs +161 -0
- package/esm2022/lib/components/form-builder/sub-components/file-input/file-input.component.mjs +310 -0
- package/esm2022/lib/components/form-builder/sub-components/specifica-territoriale/specifica-territoriale.component.mjs +648 -0
- package/esm2022/lib/components/form-builder/sub-components/table-territoriale/table-territoriale.component.mjs +432 -0
- package/esm2022/lib/components/form-builder/types/condition.types.mjs +6 -0
- package/esm2022/lib/components/form-builder/types/field.types.mjs +6 -0
- package/esm2022/lib/components/form-builder/types/index.mjs +2 -0
- package/esm2022/lib/components/form-builder/types/schema.types.mjs +6 -0
- package/esm2022/lib/components/form-builder/types/territoriale.types.mjs +6 -0
- package/esm2022/lib/components/form-builder/types/validation.types.mjs +6 -0
- package/esm2022/lib/components/form-builder-editor/form-builder-editor.component.mjs +730 -0
- package/esm2022/lib/components/form-builder-editor/form-builder-editor.service.mjs +56 -0
- package/esm2022/lib/components/form-builder-editor/index.mjs +21 -0
- package/esm2022/lib/components/form-builder-editor/services/editor-persistence.service.mjs +190 -0
- package/esm2022/lib/components/form-builder-editor/services/editor-state.service.mjs +324 -0
- package/esm2022/lib/components/form-builder-editor/services/field-factory.service.mjs +188 -0
- package/esm2022/lib/components/form-builder-editor/sub-components/condition-editor/condition-editor.component.mjs +667 -0
- package/esm2022/lib/components/form-builder-editor/sub-components/editor-toolbar/editor-toolbar.component.mjs +317 -0
- package/esm2022/lib/components/form-builder-editor/sub-components/field-config-panel/field-config-panel.component.mjs +611 -0
- package/esm2022/lib/components/form-builder-editor/sub-components/field-palette/field-palette.component.mjs +267 -0
- package/esm2022/lib/components/form-builder-editor/sub-components/form-values-panel/form-values-panel.component.mjs +276 -0
- package/esm2022/lib/components/form-builder-editor/sub-components/options-editor/options-editor.component.mjs +323 -0
- package/esm2022/lib/components/form-builder-editor/sub-components/preview-container/preview-container.component.mjs +238 -0
- package/esm2022/lib/components/form-builder-editor/sub-components/section-editor/section-editor.component.mjs +472 -0
- package/esm2022/lib/components/form-builder-editor/sub-components/validation-editor/validation-editor.component.mjs +473 -0
- package/esm2022/lib/components/form-builder-editor/types/editor.types.mjs +6 -0
- package/esm2022/lib/components/layout-builder/index.mjs +18 -0
- package/esm2022/lib/components/layout-builder/layout-builder.component.mjs +1730 -0
- package/esm2022/lib/components/layout-builder/layout-builder.types.mjs +9 -0
- package/esm2022/lib/components/layout-builder/layout.service.mjs +239 -0
- package/esm2022/lib/components/modal/confirm-dialog.component.mjs +151 -0
- package/esm2022/lib/components/modal/index.mjs +4 -0
- package/esm2022/lib/components/modal/modal.component.mjs +139 -0
- package/esm2022/lib/components/modal/modal.service.mjs +194 -0
- package/esm2022/lib/components/modal/modal.types.mjs +6 -0
- package/esm2022/lib/components/page-header/breadcrumb.service.mjs +242 -0
- package/esm2022/lib/components/page-header/index.mjs +20 -0
- package/esm2022/lib/components/page-header/page-header.component.mjs +243 -0
- package/esm2022/lib/components/page-header/page-header.types.mjs +21 -0
- package/esm2022/lib/components/table/index.mjs +2 -0
- package/esm2022/lib/components/table/paginated-table.component.mjs +407 -0
- package/esm2022/lib/components/table/table.types.mjs +6 -0
- package/esm2022/lib/core/types/index.mjs +6 -0
- package/esm2022/lib/core/utils/index.mjs +53 -0
- package/esm2022/lib/sources/location-data.opt.json +8942 -0
- package/esm2022/lib/sources/nazioni.opt.json +215 -0
- package/esm2022/public-api.mjs +34 -0
- package/fesm2022/gnggln-ng-ui-system.mjs +55752 -0
- package/fesm2022/gnggln-ng-ui-system.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/accordion/accordion.component.d.ts +118 -0
- package/lib/components/accordion/accordion.types.d.ts +62 -0
- package/lib/components/accordion/index.d.ts +2 -0
- package/lib/components/base-layout/base-layout.component.d.ts +83 -0
- package/lib/components/base-layout/base-layout.types.d.ts +26 -0
- package/lib/components/base-layout/index.d.ts +13 -0
- package/lib/components/button/button-area.component.d.ts +88 -0
- package/lib/components/button/button.component.d.ts +55 -0
- package/lib/components/button/button.types.d.ts +70 -0
- package/lib/components/button/index.d.ts +15 -0
- package/lib/components/crud-table/crud-table.component.d.ts +143 -0
- package/lib/components/crud-table/crud-table.types.d.ts +207 -0
- package/lib/components/crud-table/index.d.ts +15 -0
- package/lib/components/form-builder/adapters/it-date-adapter.d.ts +32 -0
- package/lib/components/form-builder/directives/currency-input.directive.d.ts +48 -0
- package/lib/components/form-builder/form-builder.component.d.ts +183 -0
- package/lib/components/form-builder/form-wizard.component.d.ts +87 -0
- package/lib/components/form-builder/index.d.ts +13 -0
- package/lib/components/form-builder/services/form-condition.service.d.ts +46 -0
- package/lib/components/form-builder/services/form-validation.service.d.ts +63 -0
- package/lib/components/form-builder/services/location.service.d.ts +83 -0
- package/lib/components/form-builder/services/wizard-sync.service.d.ts +63 -0
- package/lib/components/form-builder/sub-components/error-summary/form-error-summary.component.d.ts +28 -0
- package/lib/components/form-builder/sub-components/file-input/file-input.component.d.ts +41 -0
- package/lib/components/form-builder/sub-components/specifica-territoriale/specifica-territoriale.component.d.ts +145 -0
- package/lib/components/form-builder/sub-components/table-territoriale/table-territoriale.component.d.ts +108 -0
- package/lib/components/form-builder/types/condition.types.d.ts +51 -0
- package/lib/components/form-builder/types/field.types.d.ts +288 -0
- package/lib/components/form-builder/types/index.d.ts +5 -0
- package/lib/components/form-builder/types/schema.types.d.ts +227 -0
- package/lib/components/form-builder/types/territoriale.types.d.ts +170 -0
- package/lib/components/form-builder/types/validation.types.d.ts +174 -0
- package/lib/components/form-builder-editor/form-builder-editor.component.d.ts +117 -0
- package/lib/components/form-builder-editor/form-builder-editor.service.d.ts +38 -0
- package/lib/components/form-builder-editor/index.d.ts +15 -0
- package/lib/components/form-builder-editor/services/editor-persistence.service.d.ts +42 -0
- package/lib/components/form-builder-editor/services/editor-state.service.d.ts +66 -0
- package/lib/components/form-builder-editor/services/field-factory.service.d.ts +28 -0
- package/lib/components/form-builder-editor/sub-components/condition-editor/condition-editor.component.d.ts +139 -0
- package/lib/components/form-builder-editor/sub-components/editor-toolbar/editor-toolbar.component.d.ts +43 -0
- package/lib/components/form-builder-editor/sub-components/field-config-panel/field-config-panel.component.d.ts +83 -0
- package/lib/components/form-builder-editor/sub-components/field-palette/field-palette.component.d.ts +40 -0
- package/lib/components/form-builder-editor/sub-components/form-values-panel/form-values-panel.component.d.ts +51 -0
- package/lib/components/form-builder-editor/sub-components/options-editor/options-editor.component.d.ts +63 -0
- package/lib/components/form-builder-editor/sub-components/preview-container/preview-container.component.d.ts +68 -0
- package/lib/components/form-builder-editor/sub-components/section-editor/section-editor.component.d.ts +82 -0
- package/lib/components/form-builder-editor/sub-components/validation-editor/validation-editor.component.d.ts +112 -0
- package/lib/components/form-builder-editor/types/editor.types.d.ts +124 -0
- package/lib/components/layout-builder/index.d.ts +16 -0
- package/lib/components/layout-builder/layout-builder.component.d.ts +85 -0
- package/lib/components/layout-builder/layout-builder.types.d.ts +436 -0
- package/lib/components/layout-builder/layout.service.d.ts +100 -0
- package/lib/components/modal/confirm-dialog.component.d.ts +46 -0
- package/lib/components/modal/index.d.ts +4 -0
- package/lib/components/modal/modal.component.d.ts +44 -0
- package/lib/components/modal/modal.service.d.ts +93 -0
- package/lib/components/modal/modal.types.d.ts +110 -0
- package/lib/components/page-header/breadcrumb.service.d.ts +96 -0
- package/lib/components/page-header/index.d.ts +16 -0
- package/lib/components/page-header/page-header.component.d.ts +59 -0
- package/lib/components/page-header/page-header.types.d.ts +96 -0
- package/lib/components/table/index.d.ts +2 -0
- package/lib/components/table/paginated-table.component.d.ts +85 -0
- package/lib/components/table/table.types.d.ts +81 -0
- package/lib/core/types/index.d.ts +57 -0
- package/lib/core/utils/index.d.ts +29 -0
- package/package.json +44 -0
- package/public-api.d.ts +22 -0
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
{
|
|
2
|
+
"nazioni": [
|
|
3
|
+
{ "x": "ITA", "d": "Italia" },
|
|
4
|
+
{ "x": "AFG", "d": "Afghanistan" },
|
|
5
|
+
{ "x": "AL", "d": "Albania" },
|
|
6
|
+
{ "x": "GBA", "d": "Alderney" },
|
|
7
|
+
{ "x": "DZ", "d": "Algeria" },
|
|
8
|
+
{ "x": "AND", "d": "Andorra" },
|
|
9
|
+
{ "x": "ANG", "d": "Angola" },
|
|
10
|
+
{ "x": "AG", "d": "Antigua e Barbuda" },
|
|
11
|
+
{ "x": "KSA", "d": "Arabia Saudita" },
|
|
12
|
+
{ "x": "RA", "d": "Argentina" },
|
|
13
|
+
{ "x": "ARM", "d": "Armenia" },
|
|
14
|
+
{ "x": "AUS", "d": "Australia" },
|
|
15
|
+
{ "x": "A", "d": "Austria" },
|
|
16
|
+
{ "x": "AZ", "d": "Azerbaijan" },
|
|
17
|
+
{ "x": "BS", "d": "Bahamas" },
|
|
18
|
+
{ "x": "BRN", "d": "Bahrein" },
|
|
19
|
+
{ "x": "BD", "d": "Bangladesh" },
|
|
20
|
+
{ "x": "BDS", "d": "Barbados" },
|
|
21
|
+
{ "x": "B", "d": "Belgio" },
|
|
22
|
+
{ "x": "BH", "d": "Belize" },
|
|
23
|
+
{ "x": "RPB", "d": "Benin" },
|
|
24
|
+
{ "x": "BHT", "d": "Bhutan" },
|
|
25
|
+
{ "x": "BY", "d": "Bielorussia" },
|
|
26
|
+
{ "x": "BUR", "d": "Birmania" },
|
|
27
|
+
{ "x": "BOL", "d": "Bolivia" },
|
|
28
|
+
{ "x": "BiH", "d": "Bosnia-Erzegovina" },
|
|
29
|
+
{ "x": "RB", "d": "Botswana" },
|
|
30
|
+
{ "x": "BR", "d": "Brasile" },
|
|
31
|
+
{ "x": "BRU", "d": "Brunei" },
|
|
32
|
+
{ "x": "BG", "d": "Bulgaria" },
|
|
33
|
+
{ "x": "RHV", "d": "BurkinaFaso" },
|
|
34
|
+
{ "x": "BU", "d": "Burundi" },
|
|
35
|
+
{ "x": "K", "d": "Cambogia" },
|
|
36
|
+
{ "x": "CAM", "d": "Camerun" },
|
|
37
|
+
{ "x": "CDN", "d": "Canada" },
|
|
38
|
+
{ "x": "CV", "d": "CapoVerde" },
|
|
39
|
+
{ "x": "TCH", "d": "Ciad" },
|
|
40
|
+
{ "x": "RCH", "d": "Cile" },
|
|
41
|
+
{ "x": "RC", "d": "Cina" },
|
|
42
|
+
{ "x": "CY", "d": "Cipro" },
|
|
43
|
+
{ "x": "V", "d": "Citta' del Vaticano" },
|
|
44
|
+
{ "x": "CO", "d": "Colombia" },
|
|
45
|
+
{ "x": "COM", "d": "Comore" },
|
|
46
|
+
{ "x": "RCB", "d": "Congo" },
|
|
47
|
+
{ "x": "DVRK", "d": "Corea del Nord" },
|
|
48
|
+
{ "x": "ROK", "d": "Corea del Sud" },
|
|
49
|
+
{ "x": "CI", "d": "Costa d'Avorio" },
|
|
50
|
+
{ "x": "CR", "d": "Costa Rica" },
|
|
51
|
+
{ "x": "HR", "d": "Croazia" },
|
|
52
|
+
{ "x": "C", "d": "Cuba" },
|
|
53
|
+
{ "x": "DK", "d": "Danimarca" },
|
|
54
|
+
{ "x": "WD", "d": "Dominica" },
|
|
55
|
+
{ "x": "EC", "d": "Ecuador" },
|
|
56
|
+
{ "x": "ET", "d": "Egitto" },
|
|
57
|
+
{ "x": "ES", "d": "ElSalvador" },
|
|
58
|
+
{ "x": "UAE", "d": "Emirati Arabi Uniti" },
|
|
59
|
+
{ "x": "ER", "d": "Eritrea" },
|
|
60
|
+
{ "x": "EST", "d": "Estonia" },
|
|
61
|
+
{ "x": "ETH", "d": "Etiopia" },
|
|
62
|
+
{ "x": "FJI", "d": "Figi" },
|
|
63
|
+
{ "x": "RP", "d": "Filippine" },
|
|
64
|
+
{ "x": "FIN", "d": "Finlandia" },
|
|
65
|
+
{ "x": "F", "d": "Francia" },
|
|
66
|
+
{ "x": "G", "d": "Gabon" },
|
|
67
|
+
{ "x": "WAG", "d": "Gambia" },
|
|
68
|
+
{ "x": "GE", "d": "Georgia" },
|
|
69
|
+
{ "x": "D", "d": "Germania" },
|
|
70
|
+
{ "x": "GH", "d": "Ghana" },
|
|
71
|
+
{ "x": "JA", "d": "Giamaica" },
|
|
72
|
+
{ "x": "J", "d": "Giappone" },
|
|
73
|
+
{ "x": "GBZ", "d": "Gibilterra (Regno Unito)" },
|
|
74
|
+
{ "x": "DJI", "d": "Gibuti" },
|
|
75
|
+
{ "x": "HKJ", "d": "Giordania" },
|
|
76
|
+
{ "x": "GR", "d": "Grecia" },
|
|
77
|
+
{ "x": "WG", "d": "Grenada" },
|
|
78
|
+
{ "x": "GP", "d": "Guadalupa" },
|
|
79
|
+
{ "x": "GCA", "d": "Guatemala" },
|
|
80
|
+
{ "x": "GBG", "d": "Guernsey (RegnoUnito)" },
|
|
81
|
+
{ "x": "RG", "d": "Guinea" },
|
|
82
|
+
{ "x": "GNB", "d": "Guinea Bissau" },
|
|
83
|
+
{ "x": "GQ", "d": "Guinea Equatoriale" },
|
|
84
|
+
{ "x": "GUY", "d": "Guyana" },
|
|
85
|
+
{ "x": "RH", "d": "Haiti" },
|
|
86
|
+
{ "x": "HN", "d": "Honduras" },
|
|
87
|
+
{ "x": "HK", "d": "Hong Kong" },
|
|
88
|
+
{ "x": "IND", "d": "India" },
|
|
89
|
+
{ "x": "RI", "d": "Indonesia" },
|
|
90
|
+
{ "x": "IR", "d": "Iran" },
|
|
91
|
+
{ "x": "IRQ", "d": "Iraq" },
|
|
92
|
+
{ "x": "IRL", "d": "Irlanda" },
|
|
93
|
+
{ "x": "IS", "d": "Islanda" },
|
|
94
|
+
{ "x": "GBM", "d": "Isola di Man (RegnoUnito)" },
|
|
95
|
+
{ "x": "BVI", "d": "Isole Vergini Britanniche" },
|
|
96
|
+
{ "x": "FO", "d": "IsoleFaroe" },
|
|
97
|
+
{ "x": "SOL", "d": "IsoleSalomone" },
|
|
98
|
+
{ "x": "IL", "d": "Israele" },
|
|
99
|
+
{ "x": "GBJ", "d": "Jersey (Regno Unito)" },
|
|
100
|
+
{ "x": "KZ", "d": "Kazakistan" },
|
|
101
|
+
{ "x": "EAK", "d": "Kenya" },
|
|
102
|
+
{ "x": "KS", "d": "Kirghizistan" },
|
|
103
|
+
{ "x": "KIR", "d": "Kiribati" },
|
|
104
|
+
{ "x": "RKS", "d": "Kosovo" },
|
|
105
|
+
{ "x": "KWT", "d": "Kuwait" },
|
|
106
|
+
{ "x": "LAO", "d": "Laos" },
|
|
107
|
+
{ "x": "LS", "d": "Lesotho" },
|
|
108
|
+
{ "x": "LV", "d": "Lettonia" },
|
|
109
|
+
{ "x": "RL", "d": "Libano" },
|
|
110
|
+
{ "x": "LB", "d": "Liberia" },
|
|
111
|
+
{ "x": "LAR", "d": "Libia" },
|
|
112
|
+
{ "x": "FL", "d": "Liechtenstein" },
|
|
113
|
+
{ "x": "LT", "d": "Lituania" },
|
|
114
|
+
{ "x": "L", "d": "Lussemburgo" },
|
|
115
|
+
{ "x": "MK", "d": "Macedonia" },
|
|
116
|
+
{ "x": "RM", "d": "Madagascar" },
|
|
117
|
+
{ "x": "MW", "d": "Malawi" },
|
|
118
|
+
{ "x": "MAL2", "d": "Malaysia" },
|
|
119
|
+
{ "x": "MV", "d": "Maldive" },
|
|
120
|
+
{ "x": "MAL", "d": "Malesia" },
|
|
121
|
+
{ "x": "RMM", "d": "Mali" },
|
|
122
|
+
{ "x": "M", "d": "Malta" },
|
|
123
|
+
{ "x": "MA", "d": "Marocco" },
|
|
124
|
+
{ "x": "MH", "d": "Marshall" },
|
|
125
|
+
{ "x": "MQ", "d": "Martinica" },
|
|
126
|
+
{ "x": "RIM", "d": "Mauritania" },
|
|
127
|
+
{ "x": "MS", "d": "Mauritius" },
|
|
128
|
+
{ "x": "MEX", "d": "Messico" },
|
|
129
|
+
{ "x": "FSM", "d": "Micronesia" },
|
|
130
|
+
{ "x": "MD", "d": "Moldavia" },
|
|
131
|
+
{ "x": "MC", "d": "Monaco" },
|
|
132
|
+
{ "x": "MNG", "d": "Mongolia" },
|
|
133
|
+
{ "x": "MNE", "d": "Montenegro" },
|
|
134
|
+
{ "x": "MOC", "d": "Mozambico" },
|
|
135
|
+
{ "x": "NAM", "d": "Namibia" },
|
|
136
|
+
{ "x": "NAU", "d": "Nauru" },
|
|
137
|
+
{ "x": "NEP", "d": "Nepal" },
|
|
138
|
+
{ "x": "NIC", "d": "Nicaragua" },
|
|
139
|
+
{ "x": "RN", "d": "Niger" },
|
|
140
|
+
{ "x": "WAN", "d": "Nigeria" },
|
|
141
|
+
{ "x": "NS", "d": "Non specificato" },
|
|
142
|
+
{ "x": "N", "d": "Norvegia" },
|
|
143
|
+
{ "x": "NZ", "d": "NuovaZelanda" },
|
|
144
|
+
{ "x": "OM", "d": "Oman" },
|
|
145
|
+
{ "x": "SMOM", "d": "OrdinediMalta" },
|
|
146
|
+
{ "x": "NL", "d": "PaesiBassi" },
|
|
147
|
+
{ "x": "PK", "d": "Pakistan" },
|
|
148
|
+
{ "x": "PAL", "d": "Palau" },
|
|
149
|
+
{ "x": "PA", "d": "Panama" },
|
|
150
|
+
{ "x": "PNG", "d": "PapuaNuovaGuinea" },
|
|
151
|
+
{ "x": "PY", "d": "Paraguay" },
|
|
152
|
+
{ "x": "PE", "d": "Peru'" },
|
|
153
|
+
{ "x": "PL", "d": "Polonia" },
|
|
154
|
+
{ "x": "P", "d": "Portogallo" },
|
|
155
|
+
{ "x": "Q", "d": "Qatar" },
|
|
156
|
+
{ "x": "GB", "d": "Regno Unito" },
|
|
157
|
+
{ "x": "CZ", "d": "Repubblica Ceca" },
|
|
158
|
+
{ "x": "RCA", "d": "Repubblica Centrafricana" },
|
|
159
|
+
{ "x": "ZRE", "d": "Repubblica Democratica del Congo" },
|
|
160
|
+
{ "x": "DOM", "d": "Repubblica Dominicana" },
|
|
161
|
+
{ "x": "RO", "d": "Romania" },
|
|
162
|
+
{ "x": "RWA", "d": "Ruanda" },
|
|
163
|
+
{ "x": "RUS", "d": "Russia" },
|
|
164
|
+
{ "x": "KN", "d": "Saint Kittse Nevis" },
|
|
165
|
+
{ "x": "WV", "d": "Saint Vincente Grenadine" },
|
|
166
|
+
{ "x": "WS", "d": "Samoa" },
|
|
167
|
+
{ "x": "RSM", "d": "SanMarino" },
|
|
168
|
+
{ "x": "WL", "d": "SantaLucia" },
|
|
169
|
+
{ "x": "STP", "d": "Sao Tome'e Principe" },
|
|
170
|
+
{ "x": "SN", "d": "Senegal" },
|
|
171
|
+
{ "x": "SRB", "d": "Serbia" },
|
|
172
|
+
{ "x": "SRMN", "d": "Serbia e Montenegro" },
|
|
173
|
+
{ "x": "SY", "d": "Seychelles" },
|
|
174
|
+
{ "x": "WAL", "d": "Sierra Leone" },
|
|
175
|
+
{ "x": "SGP", "d": "Singapore" },
|
|
176
|
+
{ "x": "SYR", "d": "Siria" },
|
|
177
|
+
{ "x": "SK", "d": "Slovacchia" },
|
|
178
|
+
{ "x": "SLO", "d": "Slovenia" },
|
|
179
|
+
{ "x": "SO", "d": "Somalia" },
|
|
180
|
+
{ "x": "E", "d": "Spagna" },
|
|
181
|
+
{ "x": "CL", "d": "SriLanka" },
|
|
182
|
+
{ "x": "USA", "d": "Stati Uniti d'America" },
|
|
183
|
+
{ "x": "ZA", "d": "Sudafrica" },
|
|
184
|
+
{ "x": "SUN", "d": "Sudan" },
|
|
185
|
+
{ "x": "SME", "d": "Suriname" },
|
|
186
|
+
{ "x": "S", "d": "Svezia" },
|
|
187
|
+
{ "x": "CH", "d": "Svizzera" },
|
|
188
|
+
{ "x": "SD", "d": "Swaziland" },
|
|
189
|
+
{ "x": "TJ", "d": "Tagikistan" },
|
|
190
|
+
{ "x": "TAIW", "d": "Taiwan" },
|
|
191
|
+
{ "x": "EAT", "d": "Tanzania" },
|
|
192
|
+
{ "x": "PS", "d": "Territori occupati della Palestina" },
|
|
193
|
+
{ "x": "T", "d": "Thailandia" },
|
|
194
|
+
{ "x": "TL", "d": "TimorEst" },
|
|
195
|
+
{ "x": "TG", "d": "Togo" },
|
|
196
|
+
{ "x": "TO", "d": "Tonga" },
|
|
197
|
+
{ "x": "TT", "d": "Trinidad e Tobago" },
|
|
198
|
+
{ "x": "TN", "d": "Tunisia" },
|
|
199
|
+
{ "x": "TR", "d": "Turchia" },
|
|
200
|
+
{ "x": "TM", "d": "Turkmenistan" },
|
|
201
|
+
{ "x": "TUV", "d": "Tuvalu" },
|
|
202
|
+
{ "x": "UA", "d": "Ucraina" },
|
|
203
|
+
{ "x": "EAU", "d": "Uganda" },
|
|
204
|
+
{ "x": "H", "d": "Ungheria" },
|
|
205
|
+
{ "x": "ROU", "d": "Uruguay" },
|
|
206
|
+
{ "x": "UZ", "d": "Uzbekistan" },
|
|
207
|
+
{ "x": "VU", "d": "Vanuatu" },
|
|
208
|
+
{ "x": "YV", "d": "Venezuela" },
|
|
209
|
+
{ "x": "VN", "d": "Vietnam" },
|
|
210
|
+
{ "x": "ADN", "d": "Yemen" },
|
|
211
|
+
{ "x": "YU", "d": "Yugoslavia" },
|
|
212
|
+
{ "x": "Z", "d": "Zambia" },
|
|
213
|
+
{ "x": "ZW", "d": "Zimbabwe" }
|
|
214
|
+
]
|
|
215
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ng-ui-system - Public API Surface
|
|
3
|
+
*
|
|
4
|
+
* Main entry point that re-exports all secondary entry points.
|
|
5
|
+
* For optimal tree-shaking, prefer importing from specific entry points:
|
|
6
|
+
* import { UiButtonComponent } from 'ng-ui-system/button';
|
|
7
|
+
*
|
|
8
|
+
* For convenience, you can also import from the main entry point:
|
|
9
|
+
* import { UiButtonComponent } from 'ng-ui-system';
|
|
10
|
+
*/
|
|
11
|
+
// Core (design tokens types, shared utilities)
|
|
12
|
+
export * from './lib/core/types/index';
|
|
13
|
+
export * from './lib/core/utils/index';
|
|
14
|
+
// Components — Button
|
|
15
|
+
export * from './lib/components/button/index';
|
|
16
|
+
// Components — Accordion
|
|
17
|
+
export * from './lib/components/accordion/index';
|
|
18
|
+
// Components — Modal
|
|
19
|
+
export * from './lib/components/modal/index';
|
|
20
|
+
// Components — Table
|
|
21
|
+
export * from './lib/components/table/index';
|
|
22
|
+
// Components — CRUD Table
|
|
23
|
+
export * from './lib/components/crud-table/index';
|
|
24
|
+
// Components — Form Builder / Form Wizard
|
|
25
|
+
export * from './lib/components/form-builder/index';
|
|
26
|
+
// Components — Page Header / Breadcrumb
|
|
27
|
+
export * from './lib/components/page-header/index';
|
|
28
|
+
// Components — Base Layout
|
|
29
|
+
export * from './lib/components/base-layout/index';
|
|
30
|
+
// Components — Form Builder Editor (editor visuale)
|
|
31
|
+
export * from './lib/components/form-builder-editor/index';
|
|
32
|
+
// Components — Layout Builder
|
|
33
|
+
export * from './lib/components/layout-builder/index';
|
|
34
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3BhY2thZ2VzL25nLXVpLXN5c3RlbS9zcmMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7O0dBU0c7QUFFSCwrQ0FBK0M7QUFDL0MsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLHdCQUF3QixDQUFDO0FBRXZDLHNCQUFzQjtBQUN0QixjQUFjLCtCQUErQixDQUFDO0FBRTlDLHlCQUF5QjtBQUN6QixjQUFjLGtDQUFrQyxDQUFDO0FBRWpELHFCQUFxQjtBQUNyQixjQUFjLDhCQUE4QixDQUFDO0FBRTdDLHFCQUFxQjtBQUNyQixjQUFjLDhCQUE4QixDQUFDO0FBRTdDLDBCQUEwQjtBQUMxQixjQUFjLG1DQUFtQyxDQUFDO0FBRWxELDBDQUEwQztBQUMxQyxjQUFjLHFDQUFxQyxDQUFDO0FBRXBELHdDQUF3QztBQUN4QyxjQUFjLG9DQUFvQyxDQUFDO0FBRW5ELDJCQUEyQjtBQUMzQixjQUFjLG9DQUFvQyxDQUFDO0FBRW5ELG9EQUFvRDtBQUNwRCxjQUFjLDRDQUE0QyxDQUFDO0FBRTNELDhCQUE4QjtBQUM5QixjQUFjLHVDQUF1QyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXHJcbiAqIG5nLXVpLXN5c3RlbSAtIFB1YmxpYyBBUEkgU3VyZmFjZVxyXG4gKlxyXG4gKiBNYWluIGVudHJ5IHBvaW50IHRoYXQgcmUtZXhwb3J0cyBhbGwgc2Vjb25kYXJ5IGVudHJ5IHBvaW50cy5cclxuICogRm9yIG9wdGltYWwgdHJlZS1zaGFraW5nLCBwcmVmZXIgaW1wb3J0aW5nIGZyb20gc3BlY2lmaWMgZW50cnkgcG9pbnRzOlxyXG4gKiAgIGltcG9ydCB7IFVpQnV0dG9uQ29tcG9uZW50IH0gZnJvbSAnbmctdWktc3lzdGVtL2J1dHRvbic7XHJcbiAqXHJcbiAqIEZvciBjb252ZW5pZW5jZSwgeW91IGNhbiBhbHNvIGltcG9ydCBmcm9tIHRoZSBtYWluIGVudHJ5IHBvaW50OlxyXG4gKiAgIGltcG9ydCB7IFVpQnV0dG9uQ29tcG9uZW50IH0gZnJvbSAnbmctdWktc3lzdGVtJztcclxuICovXHJcblxyXG4vLyBDb3JlIChkZXNpZ24gdG9rZW5zIHR5cGVzLCBzaGFyZWQgdXRpbGl0aWVzKVxyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb3JlL3R5cGVzL2luZGV4JztcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY29yZS91dGlscy9pbmRleCc7XHJcblxyXG4vLyBDb21wb25lbnRzIOKAlCBCdXR0b25cclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9idXR0b24vaW5kZXgnO1xyXG5cclxuLy8gQ29tcG9uZW50cyDigJQgQWNjb3JkaW9uXHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvYWNjb3JkaW9uL2luZGV4JztcclxuXHJcbi8vIENvbXBvbmVudHMg4oCUIE1vZGFsXHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvbW9kYWwvaW5kZXgnO1xyXG5cclxuLy8gQ29tcG9uZW50cyDigJQgVGFibGVcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy90YWJsZS9pbmRleCc7XHJcblxyXG4vLyBDb21wb25lbnRzIOKAlCBDUlVEIFRhYmxlXHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY3J1ZC10YWJsZS9pbmRleCc7XHJcblxyXG4vLyBDb21wb25lbnRzIOKAlCBGb3JtIEJ1aWxkZXIgLyBGb3JtIFdpemFyZFxyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2Zvcm0tYnVpbGRlci9pbmRleCc7XHJcblxyXG4vLyBDb21wb25lbnRzIOKAlCBQYWdlIEhlYWRlciAvIEJyZWFkY3J1bWJcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9wYWdlLWhlYWRlci9pbmRleCc7XHJcblxyXG4vLyBDb21wb25lbnRzIOKAlCBCYXNlIExheW91dFxyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2Jhc2UtbGF5b3V0L2luZGV4JztcclxuXHJcbi8vIENvbXBvbmVudHMg4oCUIEZvcm0gQnVpbGRlciBFZGl0b3IgKGVkaXRvciB2aXN1YWxlKVxyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2Zvcm0tYnVpbGRlci1lZGl0b3IvaW5kZXgnO1xyXG5cclxuLy8gQ29tcG9uZW50cyDigJQgTGF5b3V0IEJ1aWxkZXJcclxuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9sYXlvdXQtYnVpbGRlci9pbmRleCc7XHJcbiJdfQ==
|