@eui/core 23.0.0-alpha.1 → 23.0.0-alpha.10
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/CHANGELOG.md +614 -0
- package/assets/i18n-eui/bg.json +7 -0
- package/assets/i18n-eui/cs.json +7 -0
- package/assets/i18n-eui/da.json +7 -0
- package/assets/i18n-eui/de.json +7 -0
- package/assets/i18n-eui/el.json +7 -0
- package/assets/i18n-eui/en.json +8 -1
- package/assets/i18n-eui/es.json +7 -0
- package/assets/i18n-eui/et.json +7 -0
- package/assets/i18n-eui/fi.json +7 -0
- package/assets/i18n-eui/fr.json +8 -1
- package/assets/i18n-eui/ga.json +7 -0
- package/assets/i18n-eui/hr.json +7 -0
- package/assets/i18n-eui/hu.json +7 -0
- package/assets/i18n-eui/it.json +7 -0
- package/assets/i18n-eui/lt.json +7 -0
- package/assets/i18n-eui/lv.json +7 -0
- package/assets/i18n-eui/mt.json +7 -0
- package/assets/i18n-eui/nl.json +7 -0
- package/assets/i18n-eui/pl.json +7 -0
- package/assets/i18n-eui/pt.json +7 -0
- package/assets/i18n-eui/ro.json +7 -0
- package/assets/i18n-eui/sk.json +7 -0
- package/assets/i18n-eui/sl.json +7 -0
- package/assets/i18n-eui/sv.json +7 -0
- package/docs/architecture.html +223 -0
- package/docs/changelog.html +1013 -2
- package/docs/classes/ActivatedRouteAction.html +70 -20
- package/docs/classes/AddApiQueueItemAction.html +70 -20
- package/docs/classes/AddAppLoadedConfigModulesAction.html +70 -20
- package/docs/classes/ApiQueueServiceMock.html +77 -20
- package/docs/classes/AsyncStorageService.html +86 -20
- package/docs/classes/AsyncStorageServiceMock.html +73 -17
- package/docs/classes/CssUtils.html +74 -20
- package/docs/classes/EmptyApiQueueAction.html +67 -17
- package/docs/classes/ErrorSubClass.html +68 -16
- package/docs/classes/EuiAppShellServiceMock.html +505 -0
- package/docs/classes/EuiCoreRootGuardClass.html +39 -8
- package/docs/classes/EuiError.html +69 -17
- package/docs/classes/I18nResourceImpl.html +50 -17
- package/docs/classes/InitStoreAction.html +70 -20
- package/docs/classes/LogServiceMock.html +67 -17
- package/docs/classes/RemoveApiQueueItemAction.html +67 -17
- package/docs/classes/StorageService.html +83 -19
- package/docs/classes/StorageServiceMock.html +70 -17
- package/docs/classes/TranslateServiceMock.html +90 -35
- package/docs/classes/UpdateAppConnectionAction.html +67 -17
- package/docs/classes/UpdateAppStatusAction.html +67 -17
- package/docs/classes/UpdateAppVersionAction.html +67 -17
- package/docs/classes/UpdateCurrentModuleAction.html +67 -17
- package/docs/classes/UpdateI18nStateAction.html +67 -17
- package/docs/classes/UpdateLocaleStateAction.html +67 -17
- package/docs/classes/UpdateNotificationsListAction.html +67 -17
- package/docs/classes/UpdateUserDashboardAction.html +67 -17
- package/docs/classes/UpdateUserDetailsAction.html +67 -17
- package/docs/classes/UpdateUserPreferencesAction.html +67 -17
- package/docs/classes/UpdateUserRightsAction.html +67 -17
- package/docs/classes/UpdateUserStateAction.html +67 -17
- package/docs/dependencies.html +38 -4
- package/docs/directives/TranslateMockDirective.html +72 -19
- package/docs/index.html +26 -2
- package/docs/injectables/ApiQueueService.html +97 -20
- package/docs/injectables/EuiAppShellService.html +147 -68
- package/docs/injectables/EuiDynamicComponentService.html +51 -18
- package/docs/injectables/EuiDynamicMenuService.html +67 -20
- package/docs/injectables/EuiGrowlService.html +85 -21
- package/docs/injectables/EuiLoaderService.html +65 -17
- package/docs/injectables/EuiPermissionService.html +95 -20
- package/docs/injectables/EuiThemeService.html +94 -107
- package/docs/injectables/EuiTimezoneService.html +51 -16
- package/docs/injectables/GlobalErrorHandler.html +79 -17
- package/docs/injectables/I18nLoader.html +53 -17
- package/docs/injectables/I18nService.html +101 -23
- package/docs/injectables/I18nServiceMock.html +96 -34
- package/docs/injectables/LocalForageService.html +81 -21
- package/docs/injectables/LocalStorageService.html +78 -21
- package/docs/injectables/LocaleService.html +124 -41
- package/docs/injectables/LocaleServiceMock.html +72 -18
- package/docs/injectables/LogService.html +68 -17
- package/docs/injectables/SessionStorageService.html +78 -21
- package/docs/injectables/StoreService.html +91 -22
- package/docs/injectables/StoreServiceMock.html +72 -17
- package/docs/injectables/UserService.html +97 -23
- package/docs/injectables/UserServiceMock.html +81 -23
- package/docs/interceptors/AddLangParamInterceptor.html +49 -18
- package/docs/interceptors/CachePreventionInterceptor.html +48 -17
- package/docs/interceptors/CorsSecurityInterceptor.html +48 -17
- package/docs/interceptors/CsrfPreventionInterceptor.html +48 -17
- package/docs/interceptors/EuLoginSessionTimeoutHandlingInterceptor.html +48 -17
- package/docs/interceptors/HttpErrorHandlerInterceptor.html +48 -17
- package/docs/interceptors/UxRequestErrorModelInterceptor.html +48 -17
- package/docs/interfaces/Action.html +158 -60
- package/docs/interfaces/ActionReducer.html +84 -55
- package/docs/interfaces/ComponentInfo.html +395 -0
- package/docs/interfaces/Dependency.html +278 -250
- package/docs/interfaces/Edit-1.html +395 -0
- package/docs/interfaces/Edit-2.html +395 -0
- package/docs/interfaces/Edit-3.html +395 -0
- package/docs/interfaces/Edit.html +395 -0
- package/docs/interfaces/EuiComponentEntry.html +485 -0
- package/docs/interfaces/EuiTimeZone.html +121 -93
- package/docs/interfaces/IEuiTheme.html +181 -153
- package/docs/interfaces/ImportToAdd.html +413 -0
- package/docs/interfaces/ImportsArrayInfo.html +356 -0
- package/docs/interfaces/Library.html +169 -137
- package/docs/interfaces/LoadedResources.html +164 -136
- package/docs/interfaces/LoadedResourcesError.html +121 -93
- package/docs/interfaces/MemoizedSelector.html +187 -138
- package/docs/interfaces/MemoizedSelectorWithProps.html +188 -139
- package/docs/interfaces/MigrateAllSchema.html +458 -0
- package/docs/interfaces/MigrationResult.html +395 -0
- package/docs/interfaces/ModuleLoadEvent.html +164 -136
- package/docs/interfaces/ModuleMapping.html +356 -0
- package/docs/interfaces/NgModuleInfo.html +395 -0
- package/docs/interfaces/Policy.html +164 -136
- package/docs/interfaces/ResourceError.html +170 -142
- package/docs/interfaces/Schema-1.html +368 -0
- package/docs/interfaces/Schema-10.html +368 -0
- package/docs/interfaces/Schema-11.html +368 -0
- package/docs/interfaces/Schema-12.html +368 -0
- package/docs/interfaces/Schema-13.html +368 -0
- package/docs/interfaces/Schema-14.html +368 -0
- package/docs/interfaces/Schema-15.html +368 -0
- package/docs/interfaces/Schema-16.html +368 -0
- package/docs/interfaces/Schema-17.html +368 -0
- package/docs/interfaces/Schema-18.html +368 -0
- package/docs/interfaces/Schema-19.html +368 -0
- package/docs/interfaces/Schema-2.html +380 -0
- package/docs/interfaces/Schema-20.html +368 -0
- package/docs/interfaces/Schema-21.html +368 -0
- package/docs/interfaces/Schema-3.html +431 -0
- package/docs/interfaces/Schema-4.html +368 -0
- package/docs/interfaces/Schema-5.html +368 -0
- package/docs/interfaces/Schema-6.html +368 -0
- package/docs/interfaces/Schema-7.html +368 -0
- package/docs/interfaces/Schema-8.html +368 -0
- package/docs/interfaces/Schema-9.html +368 -0
- package/docs/interfaces/Schema.html +413 -0
- package/docs/interfaces/SelectorEntry.html +511 -0
- package/docs/interfaces/TextChange.html +395 -0
- package/docs/interfaces/ThemeState.html +121 -93
- package/docs/interfaces/TranslationKeys.html +41 -11
- package/docs/interfaces/UIState.html +1713 -1640
- package/docs/interfaces/body.html +181 -153
- package/docs/js/architecture-graph.js +288 -0
- package/docs/js/libs/bootstrap-native.js +4 -2
- package/docs/js/libs/tablesort.min.js +3 -3
- package/docs/js/libs/tablesort.number.min.js +2 -2
- package/docs/js/libs/vis-network.min.js +7 -7
- package/docs/js/menu-wc.js +158 -14
- package/docs/js/routes.js +138 -37
- package/docs/js/search/search.js +62 -0
- package/docs/js/search/search_index.js +2 -2
- package/docs/js/tabs.js +98 -15
- package/docs/js/tree.js +44 -7
- package/docs/json/EuiPermissionService.md +1 -0
- package/docs/json/LocaleService.md +1 -0
- package/docs/json/documentation.json +43849 -14367
- package/docs/license.html +26 -2
- package/docs/llms.txt +2318 -0
- package/docs/miscellaneous/enumerations.html +38 -34
- package/docs/miscellaneous/functions.html +19810 -769
- package/docs/miscellaneous/typealiases.html +59 -27
- package/docs/miscellaneous/variables.html +4036 -1032
- package/docs/modules/CoreModule.html +34 -9
- package/docs/modules/I18nModule.html +34 -9
- package/docs/modules/LogModule.html +34 -9
- package/docs/modules/TranslateMockModule.html +60 -13
- package/docs/modules.html +26 -2
- package/docs/overview.html +29 -5
- package/docs/pipes/TranslateMockPipe.html +87 -9
- package/docs/properties.html +27 -3
- package/docs/routes.html +26 -2
- package/docs/styles/compodoc.css +365 -44
- package/docs/styles/dark.css +16 -0
- package/docs/template-playground/hbs-render.service.ts +6 -1
- package/fesm2022/eui-core.mjs +326 -145
- package/fesm2022/eui-core.mjs.map +1 -1
- package/package.json +16 -11
- package/schematics/add-eui-imports/index.d.ts +8 -0
- package/schematics/add-eui-imports/index.js +525 -0
- package/schematics/add-eui-imports/index.js.map +1 -0
- package/schematics/add-eui-imports/schema.json +24 -0
- package/schematics/add-eui-imports/selector-map.d.ts +35 -0
- package/schematics/add-eui-imports/selector-map.js +246 -0
- package/schematics/add-eui-imports/selector-map.js.map +1 -0
- package/schematics/collection.json +123 -0
- package/schematics/fix-no-multiple-empty-lines/index.d.ts +7 -0
- package/schematics/fix-no-multiple-empty-lines/index.js +90 -0
- package/schematics/fix-no-multiple-empty-lines/index.js.map +1 -0
- package/schematics/fix-no-multiple-empty-lines/schema.json +19 -0
- package/schematics/icon-migrate/index.d.ts +3 -0
- package/schematics/icon-migrate/index.js +228 -0
- package/schematics/icon-migrate/index.js.map +1 -0
- package/schematics/icon-migrate/schema.d.ts +6 -0
- package/schematics/icon-migrate/schema.js +3 -0
- package/schematics/icon-migrate/schema.js.map +1 -0
- package/schematics/icon-migrate/schema.json +20 -0
- package/schematics/migrate/index.d.ts +3 -0
- package/schematics/migrate/index.js +98 -0
- package/schematics/migrate/index.js.map +1 -0
- package/schematics/migrate/replacements/breaking-changes.d.ts +6 -0
- package/schematics/migrate/replacements/breaking-changes.js +173 -0
- package/schematics/migrate/replacements/breaking-changes.js.map +1 -0
- package/schematics/migrate/replacements/eui-modules.d.ts +29 -0
- package/schematics/migrate/replacements/eui-modules.js +231 -0
- package/schematics/migrate/replacements/eui-modules.js.map +1 -0
- package/schematics/migrate/replacements/icons.d.ts +14 -0
- package/schematics/migrate/replacements/icons.js +235 -0
- package/schematics/migrate/replacements/icons.js.map +1 -0
- package/schematics/migrate/replacements/mwp.d.ts +6 -0
- package/schematics/migrate/replacements/mwp.js +148 -0
- package/schematics/migrate/replacements/mwp.js.map +1 -0
- package/schematics/migrate/schema.d.ts +8 -0
- package/schematics/migrate/schema.js +3 -0
- package/schematics/migrate/schema.js.map +1 -0
- package/schematics/migrate/schema.json +25 -0
- package/schematics/migrate/utils.d.ts +21 -0
- package/schematics/migrate/utils.js +106 -0
- package/schematics/migrate/utils.js.map +1 -0
- package/schematics/migrate-all/index.d.ts +8 -0
- package/schematics/migrate-all/index.js +31 -0
- package/schematics/migrate-all/index.js.map +1 -0
- package/schematics/migrate-all/schema.json +30 -0
- package/schematics/migrate-eui-accent/index.d.ts +7 -0
- package/schematics/migrate-eui-accent/index.js +193 -0
- package/schematics/migrate-eui-accent/index.js.map +1 -0
- package/schematics/migrate-eui-accent/schema.json +19 -0
- package/schematics/migrate-eui-alert/index.d.ts +7 -0
- package/schematics/migrate-eui-alert/index.js +152 -0
- package/schematics/migrate-eui-alert/index.js.map +1 -0
- package/schematics/migrate-eui-alert/schema.json +19 -0
- package/schematics/migrate-eui-avatar/index.d.ts +7 -0
- package/schematics/migrate-eui-avatar/index.js +155 -0
- package/schematics/migrate-eui-avatar/index.js.map +1 -0
- package/schematics/migrate-eui-avatar/schema.json +19 -0
- package/schematics/migrate-eui-button/index.d.ts +7 -0
- package/schematics/migrate-eui-button/index.js +191 -0
- package/schematics/migrate-eui-button/index.js.map +1 -0
- package/schematics/migrate-eui-button/schema.json +19 -0
- package/schematics/migrate-eui-chip/index.d.ts +7 -0
- package/schematics/migrate-eui-chip/index.js +153 -0
- package/schematics/migrate-eui-chip/index.js.map +1 -0
- package/schematics/migrate-eui-chip/schema.json +19 -0
- package/schematics/migrate-eui-chip-list/index.d.ts +7 -0
- package/schematics/migrate-eui-chip-list/index.js +472 -0
- package/schematics/migrate-eui-chip-list/index.js.map +1 -0
- package/schematics/migrate-eui-chip-list/schema.json +19 -0
- package/schematics/migrate-eui-discussion-thread/index.d.ts +7 -0
- package/schematics/migrate-eui-discussion-thread/index.js +143 -0
- package/schematics/migrate-eui-discussion-thread/index.js.map +1 -0
- package/schematics/migrate-eui-discussion-thread/schema.json +19 -0
- package/schematics/migrate-eui-editor/index.d.ts +7 -0
- package/schematics/migrate-eui-editor/index.js +198 -0
- package/schematics/migrate-eui-editor/index.js.map +1 -0
- package/schematics/migrate-eui-editor/schema.json +19 -0
- package/schematics/migrate-eui-fieldset/index.d.ts +7 -0
- package/schematics/migrate-eui-fieldset/index.js +186 -0
- package/schematics/migrate-eui-fieldset/index.js.map +1 -0
- package/schematics/migrate-eui-fieldset/schema.json +19 -0
- package/schematics/migrate-eui-icon-svg/index.d.ts +7 -0
- package/schematics/migrate-eui-icon-svg/index.js +197 -0
- package/schematics/migrate-eui-icon-svg/index.js.map +1 -0
- package/schematics/migrate-eui-icon-svg/schema.json +19 -0
- package/schematics/migrate-eui-icon-toggle/index.d.ts +7 -0
- package/schematics/migrate-eui-icon-toggle/index.js +194 -0
- package/schematics/migrate-eui-icon-toggle/index.js.map +1 -0
- package/schematics/migrate-eui-icon-toggle/schema.json +19 -0
- package/schematics/migrate-eui-popover/index.d.ts +7 -0
- package/schematics/migrate-eui-popover/index.js +152 -0
- package/schematics/migrate-eui-popover/index.js.map +1 -0
- package/schematics/migrate-eui-popover/schema.json +19 -0
- package/schematics/migrate-eui-progress-circle/index.d.ts +7 -0
- package/schematics/migrate-eui-progress-circle/index.js +192 -0
- package/schematics/migrate-eui-progress-circle/index.js.map +1 -0
- package/schematics/migrate-eui-progress-circle/schema.json +19 -0
- package/schematics/migrate-eui-table/index.d.ts +7 -0
- package/schematics/migrate-eui-table/index.js +544 -0
- package/schematics/migrate-eui-table/index.js.map +1 -0
- package/schematics/migrate-eui-table/schema.json +19 -0
- package/schematics/migrate-eui-tabs/index.d.ts +7 -0
- package/schematics/migrate-eui-tabs/index.js +296 -0
- package/schematics/migrate-eui-tabs/index.js.map +1 -0
- package/schematics/migrate-eui-tabs/schema.json +19 -0
- package/schematics/migrate-eui-toolbar-menu/index.d.ts +7 -0
- package/schematics/migrate-eui-toolbar-menu/index.js +358 -0
- package/schematics/migrate-eui-toolbar-menu/index.js.map +1 -0
- package/schematics/migrate-eui-toolbar-menu/schema.json +19 -0
- package/schematics/migrate-eui-tooltip/index.d.ts +7 -0
- package/schematics/migrate-eui-tooltip/index.js +263 -0
- package/schematics/migrate-eui-tooltip/index.js.map +1 -0
- package/schematics/migrate-to-standalone/index.d.ts +7 -0
- package/schematics/migrate-to-standalone/index.js +723 -0
- package/schematics/migrate-to-standalone/index.js.map +1 -0
- package/schematics/migrate-to-standalone/schema.json +19 -0
- package/schematics/package.json +1 -0
- package/schematics/utils/dry-run.d.ts +3 -0
- package/schematics/utils/dry-run.js +14 -0
- package/schematics/utils/dry-run.js.map +1 -0
- package/types/eui-core.d.ts +75 -17
- package/types/eui-core.d.ts.map +1 -1
- package/docs/js/menu-wc_es5.js +0 -40
package/assets/i18n-eui/pt.json
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"eui.OK": "Ok",
|
|
15
15
|
"eui.REFRESH": "Atualizar",
|
|
16
16
|
"eui.SETTINGS": "Definições",
|
|
17
|
+
"eui.HIDE": "Ocultar",
|
|
17
18
|
"eui.VIEWALLNOTIFICATIONS": "Ver todas as notificações",
|
|
18
19
|
"eui.MYNOTIFICATIONS": "As minhas notificações",
|
|
19
20
|
"eui.NONOTIFICATIONFOUND": "Não foi encontrada nenhuma notificação",
|
|
@@ -24,6 +25,9 @@
|
|
|
24
25
|
"eui.NOTIFICATIONSOLDEST": "Notificações mais antigas",
|
|
25
26
|
"eui.NOTIFICATIONSUNREAD": "Não lidas",
|
|
26
27
|
"eui.NOTIFICATIONSTOTAL": "Total",
|
|
28
|
+
"eui.NOTIFICATIONSHIDE": "Ocultar",
|
|
29
|
+
"eui.NOTIFICATIONSNEW": "Nova",
|
|
30
|
+
"eui.NOTIFICATIONSREFRESH": "Atualizar",
|
|
27
31
|
"eui.AUTOCOMPLETETAGREQUIREDITEMSREQUIRED": "Tem de selecionar um elemento",
|
|
28
32
|
"eui.AUTOCOMPLETETAGREQUIREDITEMSVALIDATION": "Tem de selecionar mais {{items}} elemento(s) da lista",
|
|
29
33
|
"eui.AUTOCOMPLETETAGMAXREQUIREDITEMSVALIDATION": "Número máximo de elementos excedido (máximo: {{maximum}} / atual: {{actual}})",
|
|
@@ -105,9 +109,12 @@
|
|
|
105
109
|
"eui.euifileupload.CHOOSE-FILE": "Selecionar ficheiro",
|
|
106
110
|
"eui.euifileupload.RESET-LIST": "Repor lista",
|
|
107
111
|
"eui.euifileupload.TOTAL-SIZE": "tamanho total",
|
|
112
|
+
"eui.euifileupload.FILE-EXTENSION-NOT-ALLOWED": "Extensão de ficheiro não permitida",
|
|
108
113
|
"eui.uxtree.SELECT-ALL": "Selecionar tudo",
|
|
109
114
|
"eui.uxtree.UNSELECT-ALL": "Anular a seleção",
|
|
110
115
|
"eui.languageSelector.modalTitle": "Selecionar língua",
|
|
116
|
+
"eui.languageSelector.euLanguages": "Línguas oficiais da UE",
|
|
117
|
+
"eui.languageSelector.nonEuLanguages": "Línguas não pertencentes à UE",
|
|
111
118
|
"eui.growl.dismiss-all": "Fechar tudo",
|
|
112
119
|
"eui.euitable.NO-SORTING-ICON": "Sem ícone de ordenação",
|
|
113
120
|
"eui.euitable.ASCENDING-ICON": "Ícone de ordem ascendente",
|
package/assets/i18n-eui/ro.json
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"eui.OK": "OK",
|
|
15
15
|
"eui.REFRESH": "Reîmprospătați",
|
|
16
16
|
"eui.SETTINGS": "Setări",
|
|
17
|
+
"eui.HIDE": "Ascunde",
|
|
17
18
|
"eui.VIEWALLNOTIFICATIONS": "Vedeți toate notificările",
|
|
18
19
|
"eui.MYNOTIFICATIONS": "Notificările mele",
|
|
19
20
|
"eui.NONOTIFICATIONFOUND": "Nu s-a găsit nicio notificare",
|
|
@@ -24,6 +25,9 @@
|
|
|
24
25
|
"eui.NOTIFICATIONSOLDEST": "Cele mai vechi notificări",
|
|
25
26
|
"eui.NOTIFICATIONSUNREAD": "Necitite",
|
|
26
27
|
"eui.NOTIFICATIONSTOTAL": "Total",
|
|
28
|
+
"eui.NOTIFICATIONSHIDE": "Ascunde",
|
|
29
|
+
"eui.NOTIFICATIONSNEW": "Nou",
|
|
30
|
+
"eui.NOTIFICATIONSREFRESH": "Reîmprospătare",
|
|
27
31
|
"eui.AUTOCOMPLETETAGREQUIREDITEMSREQUIRED": "Trebuie să selectați un element",
|
|
28
32
|
"eui.AUTOCOMPLETETAGREQUIREDITEMSVALIDATION": "Trebuie să selectați încă {{items}} elemente din listă",
|
|
29
33
|
"eui.AUTOCOMPLETETAGMAXREQUIREDITEMSVALIDATION": "Ați depășit numărul maxim de elemente (maximum: {{maximum}} / în prezent: {{actual}})",
|
|
@@ -104,9 +108,12 @@
|
|
|
104
108
|
"eui.euifileupload.CHOOSE-FILE": "Alegeți fișierul",
|
|
105
109
|
"eui.euifileupload.RESET-LIST": "Resetați lista",
|
|
106
110
|
"eui.euifileupload.TOTAL-SIZE": "dimensiune totală",
|
|
111
|
+
"eui.euifileupload.FILE-EXTENSION-NOT-ALLOWED": "Extensia fișierului nu este permisă",
|
|
107
112
|
"eui.uxtree.SELECT-ALL": "Selectați tot",
|
|
108
113
|
"eui.uxtree.UNSELECT-ALL": "Deselectați tot",
|
|
109
114
|
"eui.languageSelector.modalTitle": "Selectați limba",
|
|
115
|
+
"eui.languageSelector.euLanguages": "Limbile oficiale ale UE",
|
|
116
|
+
"eui.languageSelector.nonEuLanguages": "Limbi din afara UE",
|
|
110
117
|
"eui.growl.dismiss-all": "Închide tot",
|
|
111
118
|
"eui.euitable.NO-SORTING-ICON": "Fără pictogramă de sortare",
|
|
112
119
|
"eui.euitable.ASCENDING-ICON": "Pictogramă de ordine crescătoare",
|
package/assets/i18n-eui/sk.json
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"eui.OK": "OK",
|
|
15
15
|
"eui.REFRESH": "Aktualizovať",
|
|
16
16
|
"eui.SETTINGS": "Nastavenia",
|
|
17
|
+
"eui.HIDE": "Skryť",
|
|
17
18
|
"eui.VIEWALLNOTIFICATIONS": "Zobraziť všetky oznámenia",
|
|
18
19
|
"eui.MYNOTIFICATIONS": "Moje oznámenia",
|
|
19
20
|
"eui.NONOTIFICATIONFOUND": "Neboli nájdené žiadne oznámenia",
|
|
@@ -24,6 +25,9 @@
|
|
|
24
25
|
"eui.NOTIFICATIONSOLDEST": "Najstaršie oznámenia",
|
|
25
26
|
"eui.NOTIFICATIONSUNREAD": "Neprečítané",
|
|
26
27
|
"eui.NOTIFICATIONSTOTAL": "Spolu",
|
|
28
|
+
"eui.NOTIFICATIONSHIDE": "Skryť",
|
|
29
|
+
"eui.NOTIFICATIONSNEW": "Nové",
|
|
30
|
+
"eui.NOTIFICATIONSREFRESH": "Obnoviť",
|
|
27
31
|
"eui.AUTOCOMPLETETAGREQUIREDITEMSREQUIRED": "Musíte vybrať položku",
|
|
28
32
|
"eui.AUTOCOMPLETETAGREQUIREDITEMSVALIDATION": "Musíte vybrať ešte {{items}} položku(-y)(-iek) zo zoznamu",
|
|
29
33
|
"eui.AUTOCOMPLETETAGMAXREQUIREDITEMSVALIDATION": "Maximálny počet prvkov bol prekročený (maximálne: {{maximum}} /aktuálne: {{actual}})",
|
|
@@ -105,9 +109,12 @@
|
|
|
105
109
|
"eui.euifileupload.CHOOSE-FILE": "Vybrať súbor",
|
|
106
110
|
"eui.euifileupload.RESET-LIST": "Resetovať zoznam",
|
|
107
111
|
"eui.euifileupload.TOTAL-SIZE": "celková veľkosť",
|
|
112
|
+
"eui.euifileupload.FILE-EXTENSION-NOT-ALLOWED": "Prípona súboru nie je povolená",
|
|
108
113
|
"eui.uxtree.SELECT-ALL": "Vybrať všetko",
|
|
109
114
|
"eui.uxtree.UNSELECT-ALL": "Zrušiť výber",
|
|
110
115
|
"eui.languageSelector.modalTitle": "Vybrať jazyk",
|
|
116
|
+
"eui.languageSelector.euLanguages": "Oficiálne jazyky EÚ",
|
|
117
|
+
"eui.languageSelector.nonEuLanguages": "Jazyky mimo EÚ",
|
|
111
118
|
"eui.growl.dismiss-all": "Zatvoriť všetko",
|
|
112
119
|
"eui.euitable.NO-SORTING-ICON": "Chýba ikona triedenia",
|
|
113
120
|
"eui.euitable.ASCENDING-ICON": "Ikona vzostupného poradia",
|
package/assets/i18n-eui/sl.json
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"eui.OK": "V redu",
|
|
15
15
|
"eui.REFRESH": "Osveži",
|
|
16
16
|
"eui.SETTINGS": "Nastavitve",
|
|
17
|
+
"eui.HIDE": "Skrij",
|
|
17
18
|
"eui.VIEWALLNOTIFICATIONS": "Prikaz vseh obvestil",
|
|
18
19
|
"eui.MYNOTIFICATIONS": "Moja obvestila",
|
|
19
20
|
"eui.NONOTIFICATIONFOUND": "Ni obvestil",
|
|
@@ -24,6 +25,9 @@
|
|
|
24
25
|
"eui.NOTIFICATIONSOLDEST": "Starejša obvestila",
|
|
25
26
|
"eui.NOTIFICATIONSUNREAD": "Neprebrano",
|
|
26
27
|
"eui.NOTIFICATIONSTOTAL": "Skupaj",
|
|
28
|
+
"eui.NOTIFICATIONSHIDE": "Skrij",
|
|
29
|
+
"eui.NOTIFICATIONSNEW": "Novo",
|
|
30
|
+
"eui.NOTIFICATIONSREFRESH": "Osveži",
|
|
27
31
|
"eui.AUTOCOMPLETETAGREQUIREDITEMSREQUIRED": "Izbrati morate element",
|
|
28
32
|
"eui.AUTOCOMPLETETAGREQUIREDITEMSVALIDATION": "Izbrati morate še {{items}} elementov s seznama",
|
|
29
33
|
"eui.AUTOCOMPLETETAGMAXREQUIREDITEMSVALIDATION": "Največje možno število elementov je preseženo (največ: {{maximum}} / trenutno število: {{actual}})",
|
|
@@ -105,9 +109,12 @@
|
|
|
105
109
|
"eui.euifileupload.CHOOSE-FILE": "Izberi datoteko",
|
|
106
110
|
"eui.euifileupload.RESET-LIST": "Ponastavi seznam",
|
|
107
111
|
"eui.euifileupload.TOTAL-SIZE": "skupna velikost",
|
|
112
|
+
"eui.euifileupload.FILE-EXTENSION-NOT-ALLOWED": "Končnica datoteke ni dovoljena",
|
|
108
113
|
"eui.uxtree.SELECT-ALL": "Izberi vse",
|
|
109
114
|
"eui.uxtree.UNSELECT-ALL": "Prekliči izbor",
|
|
110
115
|
"eui.languageSelector.modalTitle": "Izberi jezik",
|
|
116
|
+
"eui.languageSelector.euLanguages": "Uradni jeziki EU",
|
|
117
|
+
"eui.languageSelector.nonEuLanguages": "Jeziki zunaj EU",
|
|
111
118
|
"eui.growl.dismiss-all": "Zavrni vse",
|
|
112
119
|
"eui.euitable.NO-SORTING-ICON": "Ikona brez razvrščanja",
|
|
113
120
|
"eui.euitable.ASCENDING-ICON": "Ikona naraščajočega vrstnega reda",
|
package/assets/i18n-eui/sv.json
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"eui.OK": "OK",
|
|
15
15
|
"eui.REFRESH": "Uppdatera",
|
|
16
16
|
"eui.SETTINGS": "Inställningar",
|
|
17
|
+
"eui.HIDE": "Dölj",
|
|
17
18
|
"eui.VIEWALLNOTIFICATIONS": "Se alla aviseringar",
|
|
18
19
|
"eui.MYNOTIFICATIONS": "Mina aviseringar",
|
|
19
20
|
"eui.NONOTIFICATIONFOUND": "Ingen avisering hittades",
|
|
@@ -24,6 +25,9 @@
|
|
|
24
25
|
"eui.NOTIFICATIONSOLDEST": "Äldsta aviseringarna",
|
|
25
26
|
"eui.NOTIFICATIONSUNREAD": "Oläst",
|
|
26
27
|
"eui.NOTIFICATIONSTOTAL": "Totalt",
|
|
28
|
+
"eui.NOTIFICATIONSHIDE": "Dölj",
|
|
29
|
+
"eui.NOTIFICATIONSNEW": "Ny",
|
|
30
|
+
"eui.NOTIFICATIONSREFRESH": "Uppdatera",
|
|
27
31
|
"eui.AUTOCOMPLETETAGREQUIREDITEMSREQUIRED": "Du måste välja ett objekt",
|
|
28
32
|
"eui.AUTOCOMPLETETAGREQUIREDITEMSVALIDATION": "Du måste välja {{items}} objekt till i listan",
|
|
29
33
|
"eui.AUTOCOMPLETETAGMAXREQUIREDITEMSVALIDATION": "Du har överskridit högsta antalet objekt (max: {{maximum}} / ditt antal: {{actual}})",
|
|
@@ -105,9 +109,12 @@
|
|
|
105
109
|
"eui.euifileupload.CHOOSE-FILE": "Välj fil",
|
|
106
110
|
"eui.euifileupload.RESET-LIST": "Återställ lista",
|
|
107
111
|
"eui.euifileupload.TOTAL-SIZE": "storlek totalt",
|
|
112
|
+
"eui.euifileupload.FILE-EXTENSION-NOT-ALLOWED": "Filtillägget är inte tillåtet",
|
|
108
113
|
"eui.uxtree.SELECT-ALL": "Välj alla",
|
|
109
114
|
"eui.uxtree.UNSELECT-ALL": "Avmarkera alla",
|
|
110
115
|
"eui.languageSelector.modalTitle": "Välj språk",
|
|
116
|
+
"eui.languageSelector.euLanguages": "EU:s officiella språk",
|
|
117
|
+
"eui.languageSelector.nonEuLanguages": "Språk utanför EU",
|
|
111
118
|
"eui.growl.dismiss-all": "Stäng alla",
|
|
112
119
|
"eui.euitable.NO-SORTING-ICON": "Ingen sorteringsikon",
|
|
113
120
|
"eui.euitable.ASCENDING-ICON": "Stigande ordning ikon",
|
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html class="no-js" lang="">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
6
|
+
<title>eui documentation</title>
|
|
7
|
+
<meta name="description" content="">
|
|
8
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
|
+
|
|
10
|
+
<link rel="icon" type="image/x-icon" href="./images/favicon.ico">
|
|
11
|
+
<link rel="stylesheet" href="./styles/style.css">
|
|
12
|
+
<link rel="stylesheet" href="./styles/dark.css">
|
|
13
|
+
<link rel="stylesheet" href="./styles/material.css">
|
|
14
|
+
</head>
|
|
15
|
+
<body>
|
|
16
|
+
<script>
|
|
17
|
+
// Blocking script to avoid flickering dark mode
|
|
18
|
+
// Dark mode toggle button
|
|
19
|
+
var useDark = window.matchMedia('(prefers-color-scheme: dark)');
|
|
20
|
+
var darkModeState = useDark.matches;
|
|
21
|
+
var $darkModeToggleSwitchers = document.querySelectorAll('.dark-mode-switch input');
|
|
22
|
+
var $darkModeToggles = document.querySelectorAll('.dark-mode-switch');
|
|
23
|
+
var darkModeStateLocal = localStorage.getItem('compodoc_darkmode-state');
|
|
24
|
+
|
|
25
|
+
function checkToggle(check) {
|
|
26
|
+
for (var i = 0; i < $darkModeToggleSwitchers.length; i++) {
|
|
27
|
+
$darkModeToggleSwitchers[i].checked = check;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
function toggleDarkMode(state) {
|
|
32
|
+
if (window.localStorage) {
|
|
33
|
+
localStorage.setItem('compodoc_darkmode-state', state);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
checkToggle(state);
|
|
37
|
+
|
|
38
|
+
const hasClass = document.body.classList.contains('dark');
|
|
39
|
+
|
|
40
|
+
if (state) {
|
|
41
|
+
for (var i = 0; i < $darkModeToggles.length; i++) {
|
|
42
|
+
$darkModeToggles[i].classList.add('dark');
|
|
43
|
+
}
|
|
44
|
+
if (!hasClass) {
|
|
45
|
+
document.body.classList.add('dark');
|
|
46
|
+
}
|
|
47
|
+
} else {
|
|
48
|
+
for (var i = 0; i < $darkModeToggles.length; i++) {
|
|
49
|
+
$darkModeToggles[i].classList.remove('dark');
|
|
50
|
+
}
|
|
51
|
+
if (hasClass) {
|
|
52
|
+
document.body.classList.remove('dark');
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
useDark.addEventListener('change', function (evt) {
|
|
58
|
+
toggleDarkMode(evt.matches);
|
|
59
|
+
});
|
|
60
|
+
if (darkModeStateLocal) {
|
|
61
|
+
darkModeState = darkModeStateLocal === 'true';
|
|
62
|
+
}
|
|
63
|
+
toggleDarkMode(darkModeState);
|
|
64
|
+
</script>
|
|
65
|
+
<script>
|
|
66
|
+
// --- Iframe navigation tracking for Template Playground ---
|
|
67
|
+
function sendCurrentUrlToParent() {
|
|
68
|
+
if (window.parent && window.parent !== window) {
|
|
69
|
+
window.parent.postMessage({
|
|
70
|
+
type: 'compodoc-iframe-navigate',
|
|
71
|
+
url: window.location.pathname + window.location.hash
|
|
72
|
+
}, '*');
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
window.addEventListener('hashchange', sendCurrentUrlToParent, false);
|
|
76
|
+
window.addEventListener('popstate', sendCurrentUrlToParent, false);
|
|
77
|
+
window.addEventListener('DOMContentLoaded', sendCurrentUrlToParent, false);
|
|
78
|
+
</script>
|
|
79
|
+
|
|
80
|
+
<div class="navbar navbar-default navbar-fixed-top d-md-none p-0">
|
|
81
|
+
<div class="d-flex">
|
|
82
|
+
<a href="./" class="navbar-brand">eui documentation</a>
|
|
83
|
+
<button type="button" class="btn btn-default btn-menu ion-ios-menu" id="btn-menu"></button>
|
|
84
|
+
</div>
|
|
85
|
+
</div>
|
|
86
|
+
|
|
87
|
+
<div class="xs-menu menu" id="mobile-menu">
|
|
88
|
+
<div id="book-search-input" role="search">
|
|
89
|
+
<input type="text" placeholder="Type to search">
|
|
90
|
+
<button type="button"
|
|
91
|
+
class="search-input-clear"
|
|
92
|
+
aria-label="Clear search"
|
|
93
|
+
data-search-input-clear>×</button>
|
|
94
|
+
</div>
|
|
95
|
+
<compodoc-menu></compodoc-menu>
|
|
96
|
+
</div>
|
|
97
|
+
|
|
98
|
+
<div class="container-fluid main">
|
|
99
|
+
<div class="row main">
|
|
100
|
+
<div class="d-none d-md-block menu">
|
|
101
|
+
<compodoc-menu mode="normal"></compodoc-menu>
|
|
102
|
+
</div>
|
|
103
|
+
<!-- START CONTENT -->
|
|
104
|
+
<div class="content architecture">
|
|
105
|
+
<div class="content-data">
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
<ol class="breadcrumb">
|
|
113
|
+
<li class="breadcrumb-item">Architecture</li>
|
|
114
|
+
</ol>
|
|
115
|
+
|
|
116
|
+
<p class="alert alert-warning">Graph generation is disabled.</p>
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
</div><div class="search-results">
|
|
137
|
+
<div class="has-results">
|
|
138
|
+
<h1 class="search-results-title"><span class='search-results-count'></span> results matching "<span class='search-query'></span>"</h1>
|
|
139
|
+
<ul class="search-results-list"></ul>
|
|
140
|
+
</div>
|
|
141
|
+
<div class="no-results">
|
|
142
|
+
<h1 class="search-results-title">No results matching "<span class='search-query'></span>"</h1>
|
|
143
|
+
</div>
|
|
144
|
+
</div>
|
|
145
|
+
</div>
|
|
146
|
+
<!-- END CONTENT -->
|
|
147
|
+
</div>
|
|
148
|
+
</div>
|
|
149
|
+
|
|
150
|
+
<label class="dark-mode-switch">
|
|
151
|
+
<input type="checkbox">
|
|
152
|
+
<span class="slider">
|
|
153
|
+
<svg class="slider-icon" viewBox="0 0 24 24" fill="none" height="20" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg">
|
|
154
|
+
<path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"></path>
|
|
155
|
+
</svg>
|
|
156
|
+
</span>
|
|
157
|
+
</label>
|
|
158
|
+
|
|
159
|
+
<script>
|
|
160
|
+
var COMPODOC_CURRENT_PAGE_DEPTH = 0;
|
|
161
|
+
var COMPODOC_CURRENT_PAGE_CONTEXT = 'architecture';
|
|
162
|
+
var COMPODOC_CURRENT_PAGE_URL = 'architecture.html';
|
|
163
|
+
var MAX_SEARCH_RESULTS = 15;
|
|
164
|
+
</script>
|
|
165
|
+
|
|
166
|
+
<script>
|
|
167
|
+
$darkModeToggleSwitchers = document.querySelectorAll('.dark-mode-switch input');
|
|
168
|
+
var updateDarkModeSwitchOffset = function () {
|
|
169
|
+
var content = document.querySelector('.content');
|
|
170
|
+
var scrollbarWidth = 0;
|
|
171
|
+
|
|
172
|
+
if (content) {
|
|
173
|
+
scrollbarWidth = Math.max(0, content.offsetWidth - content.clientWidth);
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
document.documentElement.style.setProperty(
|
|
177
|
+
'--content-scrollbar-width',
|
|
178
|
+
scrollbarWidth + 'px'
|
|
179
|
+
);
|
|
180
|
+
};
|
|
181
|
+
|
|
182
|
+
updateDarkModeSwitchOffset();
|
|
183
|
+
requestAnimationFrame(updateDarkModeSwitchOffset);
|
|
184
|
+
window.addEventListener('resize', updateDarkModeSwitchOffset);
|
|
185
|
+
|
|
186
|
+
checkToggle(darkModeState);
|
|
187
|
+
if ($darkModeToggleSwitchers.length > 0) {
|
|
188
|
+
for (var i = 0; i < $darkModeToggleSwitchers.length; i++) {
|
|
189
|
+
$darkModeToggleSwitchers[i].addEventListener('change', function (event) {
|
|
190
|
+
darkModeState = !darkModeState;
|
|
191
|
+
toggleDarkMode(darkModeState);
|
|
192
|
+
});
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
</script>
|
|
196
|
+
|
|
197
|
+
<script src="./js/libs/custom-elements.min.js"></script>
|
|
198
|
+
<script src="./js/libs/lit-html.js"></script>
|
|
199
|
+
|
|
200
|
+
<script src="./js/menu-wc.js" defer></script>
|
|
201
|
+
|
|
202
|
+
<script src="./js/libs/bootstrap-native.js"></script>
|
|
203
|
+
|
|
204
|
+
<script src="./js/libs/es6-shim.min.js"></script>
|
|
205
|
+
<script src="./js/libs/EventDispatcher.js"></script>
|
|
206
|
+
<script src="./js/libs/promise.min.js"></script>
|
|
207
|
+
|
|
208
|
+
<script src="./js/compodoc.js"></script>
|
|
209
|
+
|
|
210
|
+
<script src="./js/tabs.js"></script>
|
|
211
|
+
<script src="./js/menu.js"></script>
|
|
212
|
+
<script src="./js/libs/clipboard.min.js"></script>
|
|
213
|
+
<script src="./js/libs/prism.js"></script>
|
|
214
|
+
<script src="./js/sourceCode.js"></script>
|
|
215
|
+
<script src="./js/search/search.js"></script>
|
|
216
|
+
<script src="./js/search/lunr.min.js"></script>
|
|
217
|
+
<script src="./js/search/search-lunr.js"></script>
|
|
218
|
+
<script src="./js/search/search_index.js"></script>
|
|
219
|
+
<script src="./js/lazy-load-graphs.js"></script>
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
</body>
|
|
223
|
+
</html>
|