@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.
Files changed (141) hide show
  1. package/esm2022/gnggln-ng-ui-system.mjs +5 -0
  2. package/esm2022/lib/components/accordion/accordion.component.mjs +353 -0
  3. package/esm2022/lib/components/accordion/accordion.types.mjs +6 -0
  4. package/esm2022/lib/components/accordion/index.mjs +2 -0
  5. package/esm2022/lib/components/base-layout/base-layout.component.mjs +218 -0
  6. package/esm2022/lib/components/base-layout/base-layout.types.mjs +6 -0
  7. package/esm2022/lib/components/base-layout/index.mjs +14 -0
  8. package/esm2022/lib/components/button/button-area.component.mjs +196 -0
  9. package/esm2022/lib/components/button/button.component.mjs +164 -0
  10. package/esm2022/lib/components/button/button.types.mjs +6 -0
  11. package/esm2022/lib/components/button/index.mjs +16 -0
  12. package/esm2022/lib/components/crud-table/crud-table.component.mjs +789 -0
  13. package/esm2022/lib/components/crud-table/crud-table.types.mjs +6 -0
  14. package/esm2022/lib/components/crud-table/index.mjs +16 -0
  15. package/esm2022/lib/components/form-builder/adapters/it-date-adapter.mjs +82 -0
  16. package/esm2022/lib/components/form-builder/directives/currency-input.directive.mjs +184 -0
  17. package/esm2022/lib/components/form-builder/form-builder.component.mjs +824 -0
  18. package/esm2022/lib/components/form-builder/form-wizard.component.mjs +510 -0
  19. package/esm2022/lib/components/form-builder/index.mjs +19 -0
  20. package/esm2022/lib/components/form-builder/services/form-condition.service.mjs +132 -0
  21. package/esm2022/lib/components/form-builder/services/form-validation.service.mjs +381 -0
  22. package/esm2022/lib/components/form-builder/services/location.service.mjs +140 -0
  23. package/esm2022/lib/components/form-builder/services/wizard-sync.service.mjs +84 -0
  24. package/esm2022/lib/components/form-builder/sub-components/error-summary/form-error-summary.component.mjs +161 -0
  25. package/esm2022/lib/components/form-builder/sub-components/file-input/file-input.component.mjs +310 -0
  26. package/esm2022/lib/components/form-builder/sub-components/specifica-territoriale/specifica-territoriale.component.mjs +648 -0
  27. package/esm2022/lib/components/form-builder/sub-components/table-territoriale/table-territoriale.component.mjs +432 -0
  28. package/esm2022/lib/components/form-builder/types/condition.types.mjs +6 -0
  29. package/esm2022/lib/components/form-builder/types/field.types.mjs +6 -0
  30. package/esm2022/lib/components/form-builder/types/index.mjs +2 -0
  31. package/esm2022/lib/components/form-builder/types/schema.types.mjs +6 -0
  32. package/esm2022/lib/components/form-builder/types/territoriale.types.mjs +6 -0
  33. package/esm2022/lib/components/form-builder/types/validation.types.mjs +6 -0
  34. package/esm2022/lib/components/form-builder-editor/form-builder-editor.component.mjs +730 -0
  35. package/esm2022/lib/components/form-builder-editor/form-builder-editor.service.mjs +56 -0
  36. package/esm2022/lib/components/form-builder-editor/index.mjs +21 -0
  37. package/esm2022/lib/components/form-builder-editor/services/editor-persistence.service.mjs +190 -0
  38. package/esm2022/lib/components/form-builder-editor/services/editor-state.service.mjs +324 -0
  39. package/esm2022/lib/components/form-builder-editor/services/field-factory.service.mjs +188 -0
  40. package/esm2022/lib/components/form-builder-editor/sub-components/condition-editor/condition-editor.component.mjs +667 -0
  41. package/esm2022/lib/components/form-builder-editor/sub-components/editor-toolbar/editor-toolbar.component.mjs +317 -0
  42. package/esm2022/lib/components/form-builder-editor/sub-components/field-config-panel/field-config-panel.component.mjs +611 -0
  43. package/esm2022/lib/components/form-builder-editor/sub-components/field-palette/field-palette.component.mjs +267 -0
  44. package/esm2022/lib/components/form-builder-editor/sub-components/form-values-panel/form-values-panel.component.mjs +276 -0
  45. package/esm2022/lib/components/form-builder-editor/sub-components/options-editor/options-editor.component.mjs +323 -0
  46. package/esm2022/lib/components/form-builder-editor/sub-components/preview-container/preview-container.component.mjs +238 -0
  47. package/esm2022/lib/components/form-builder-editor/sub-components/section-editor/section-editor.component.mjs +472 -0
  48. package/esm2022/lib/components/form-builder-editor/sub-components/validation-editor/validation-editor.component.mjs +473 -0
  49. package/esm2022/lib/components/form-builder-editor/types/editor.types.mjs +6 -0
  50. package/esm2022/lib/components/layout-builder/index.mjs +18 -0
  51. package/esm2022/lib/components/layout-builder/layout-builder.component.mjs +1730 -0
  52. package/esm2022/lib/components/layout-builder/layout-builder.types.mjs +9 -0
  53. package/esm2022/lib/components/layout-builder/layout.service.mjs +239 -0
  54. package/esm2022/lib/components/modal/confirm-dialog.component.mjs +151 -0
  55. package/esm2022/lib/components/modal/index.mjs +4 -0
  56. package/esm2022/lib/components/modal/modal.component.mjs +139 -0
  57. package/esm2022/lib/components/modal/modal.service.mjs +194 -0
  58. package/esm2022/lib/components/modal/modal.types.mjs +6 -0
  59. package/esm2022/lib/components/page-header/breadcrumb.service.mjs +242 -0
  60. package/esm2022/lib/components/page-header/index.mjs +20 -0
  61. package/esm2022/lib/components/page-header/page-header.component.mjs +243 -0
  62. package/esm2022/lib/components/page-header/page-header.types.mjs +21 -0
  63. package/esm2022/lib/components/table/index.mjs +2 -0
  64. package/esm2022/lib/components/table/paginated-table.component.mjs +407 -0
  65. package/esm2022/lib/components/table/table.types.mjs +6 -0
  66. package/esm2022/lib/core/types/index.mjs +6 -0
  67. package/esm2022/lib/core/utils/index.mjs +53 -0
  68. package/esm2022/lib/sources/location-data.opt.json +8942 -0
  69. package/esm2022/lib/sources/nazioni.opt.json +215 -0
  70. package/esm2022/public-api.mjs +34 -0
  71. package/fesm2022/gnggln-ng-ui-system.mjs +55752 -0
  72. package/fesm2022/gnggln-ng-ui-system.mjs.map +1 -0
  73. package/index.d.ts +5 -0
  74. package/lib/components/accordion/accordion.component.d.ts +118 -0
  75. package/lib/components/accordion/accordion.types.d.ts +62 -0
  76. package/lib/components/accordion/index.d.ts +2 -0
  77. package/lib/components/base-layout/base-layout.component.d.ts +83 -0
  78. package/lib/components/base-layout/base-layout.types.d.ts +26 -0
  79. package/lib/components/base-layout/index.d.ts +13 -0
  80. package/lib/components/button/button-area.component.d.ts +88 -0
  81. package/lib/components/button/button.component.d.ts +55 -0
  82. package/lib/components/button/button.types.d.ts +70 -0
  83. package/lib/components/button/index.d.ts +15 -0
  84. package/lib/components/crud-table/crud-table.component.d.ts +143 -0
  85. package/lib/components/crud-table/crud-table.types.d.ts +207 -0
  86. package/lib/components/crud-table/index.d.ts +15 -0
  87. package/lib/components/form-builder/adapters/it-date-adapter.d.ts +32 -0
  88. package/lib/components/form-builder/directives/currency-input.directive.d.ts +48 -0
  89. package/lib/components/form-builder/form-builder.component.d.ts +183 -0
  90. package/lib/components/form-builder/form-wizard.component.d.ts +87 -0
  91. package/lib/components/form-builder/index.d.ts +13 -0
  92. package/lib/components/form-builder/services/form-condition.service.d.ts +46 -0
  93. package/lib/components/form-builder/services/form-validation.service.d.ts +63 -0
  94. package/lib/components/form-builder/services/location.service.d.ts +83 -0
  95. package/lib/components/form-builder/services/wizard-sync.service.d.ts +63 -0
  96. package/lib/components/form-builder/sub-components/error-summary/form-error-summary.component.d.ts +28 -0
  97. package/lib/components/form-builder/sub-components/file-input/file-input.component.d.ts +41 -0
  98. package/lib/components/form-builder/sub-components/specifica-territoriale/specifica-territoriale.component.d.ts +145 -0
  99. package/lib/components/form-builder/sub-components/table-territoriale/table-territoriale.component.d.ts +108 -0
  100. package/lib/components/form-builder/types/condition.types.d.ts +51 -0
  101. package/lib/components/form-builder/types/field.types.d.ts +288 -0
  102. package/lib/components/form-builder/types/index.d.ts +5 -0
  103. package/lib/components/form-builder/types/schema.types.d.ts +227 -0
  104. package/lib/components/form-builder/types/territoriale.types.d.ts +170 -0
  105. package/lib/components/form-builder/types/validation.types.d.ts +174 -0
  106. package/lib/components/form-builder-editor/form-builder-editor.component.d.ts +117 -0
  107. package/lib/components/form-builder-editor/form-builder-editor.service.d.ts +38 -0
  108. package/lib/components/form-builder-editor/index.d.ts +15 -0
  109. package/lib/components/form-builder-editor/services/editor-persistence.service.d.ts +42 -0
  110. package/lib/components/form-builder-editor/services/editor-state.service.d.ts +66 -0
  111. package/lib/components/form-builder-editor/services/field-factory.service.d.ts +28 -0
  112. package/lib/components/form-builder-editor/sub-components/condition-editor/condition-editor.component.d.ts +139 -0
  113. package/lib/components/form-builder-editor/sub-components/editor-toolbar/editor-toolbar.component.d.ts +43 -0
  114. package/lib/components/form-builder-editor/sub-components/field-config-panel/field-config-panel.component.d.ts +83 -0
  115. package/lib/components/form-builder-editor/sub-components/field-palette/field-palette.component.d.ts +40 -0
  116. package/lib/components/form-builder-editor/sub-components/form-values-panel/form-values-panel.component.d.ts +51 -0
  117. package/lib/components/form-builder-editor/sub-components/options-editor/options-editor.component.d.ts +63 -0
  118. package/lib/components/form-builder-editor/sub-components/preview-container/preview-container.component.d.ts +68 -0
  119. package/lib/components/form-builder-editor/sub-components/section-editor/section-editor.component.d.ts +82 -0
  120. package/lib/components/form-builder-editor/sub-components/validation-editor/validation-editor.component.d.ts +112 -0
  121. package/lib/components/form-builder-editor/types/editor.types.d.ts +124 -0
  122. package/lib/components/layout-builder/index.d.ts +16 -0
  123. package/lib/components/layout-builder/layout-builder.component.d.ts +85 -0
  124. package/lib/components/layout-builder/layout-builder.types.d.ts +436 -0
  125. package/lib/components/layout-builder/layout.service.d.ts +100 -0
  126. package/lib/components/modal/confirm-dialog.component.d.ts +46 -0
  127. package/lib/components/modal/index.d.ts +4 -0
  128. package/lib/components/modal/modal.component.d.ts +44 -0
  129. package/lib/components/modal/modal.service.d.ts +93 -0
  130. package/lib/components/modal/modal.types.d.ts +110 -0
  131. package/lib/components/page-header/breadcrumb.service.d.ts +96 -0
  132. package/lib/components/page-header/index.d.ts +16 -0
  133. package/lib/components/page-header/page-header.component.d.ts +59 -0
  134. package/lib/components/page-header/page-header.types.d.ts +96 -0
  135. package/lib/components/table/index.d.ts +2 -0
  136. package/lib/components/table/paginated-table.component.d.ts +85 -0
  137. package/lib/components/table/table.types.d.ts +81 -0
  138. package/lib/core/types/index.d.ts +57 -0
  139. package/lib/core/utils/index.d.ts +29 -0
  140. package/package.json +44 -0
  141. 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==