@eui/mobile-core 10.0.0-rc.9 → 14.0.0-beta.3
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/docs/classes/EuimMenuItem.html +463 -0
- package/docs/classes/EuimStepperChangeEvent.html +33 -79
- package/docs/components/EuiMUserProfileActionComponent.html +950 -51
- package/docs/components/EuiMUserProfileAvatarComponent.html +949 -50
- package/docs/components/EuiMUserProfileInfosComponent.html +949 -50
- package/docs/components/EuiMUserProfileInfosItemComponent.html +953 -50
- package/docs/components/EuimAppComponent.html +860 -50
- package/docs/components/EuimAppSidebarComponent.html +1113 -0
- package/docs/components/EuimAppSidebarFooterComponent.html +347 -0
- package/docs/components/{EuimPageComponent.html → EuimAppSidebarHeaderComponent.html} +38 -25
- package/docs/components/EuimAppSidebarMenuComponent.html +386 -0
- package/docs/components/EuimAvatarComponent.html +860 -62
- package/docs/components/EuimControlFeedbackComponent.html +1515 -0
- package/docs/components/EuimEmptyListPlaceholderComponent.html +921 -78
- package/docs/components/EuimFieldSetComponent.html +1162 -0
- package/docs/components/EuimFieldsetActionsComponent.html +1158 -0
- package/docs/components/EuimFieldsetLegendComponent.html +1158 -0
- package/docs/components/EuimLabelComponent.html +951 -156
- package/docs/components/EuimLanguageListComponent.html +1388 -0
- package/docs/components/EuimLanguageSelectorComponent.html +1145 -196
- package/docs/components/EuimMenuComponent.html +1281 -0
- package/docs/components/EuimMessageComponent.html +892 -157
- package/docs/components/EuimMessageTitleComponent.html +1158 -0
- package/docs/components/EuimStepperComponent.html +950 -121
- package/docs/components/EuimToolbarActionItemsComponent.html +1143 -0
- package/docs/components/EuimToolbarComponent.html +1351 -0
- package/docs/components/EuimToolbarTitleComponent.html +1143 -0
- package/docs/components/EuimUserProfileComponent.html +957 -54
- package/docs/dependencies.html +25 -17
- package/docs/directives/EuimBaseDirective.html +582 -303
- package/docs/{classes/EuimBaseEvent.html → directives/EuimListHeaderDirective.html} +106 -69
- package/docs/index.html +21 -9
- package/docs/injectables/EuimAppService.html +83 -44
- package/docs/interfaces/UIState.html +33 -171
- package/docs/js/libs/prism.js +46 -14
- package/docs/js/menu-wc.js +188 -85
- package/docs/js/menu-wc_es5.js +60 -0
- package/docs/js/menu.js +75 -15
- package/docs/js/search/lunr.min.js +3 -3
- package/docs/js/search/search_index.js +2 -2
- package/docs/license.html +17 -5
- package/docs/miscellaneous/typealiases.html +40 -7
- package/docs/miscellaneous/variables.html +199 -81
- package/docs/modules/EuimAllModule.html +49 -12
- package/docs/modules/EuimAppModule.html +31 -6
- package/docs/modules/EuimAppSidebarModule.html +187 -0
- package/docs/modules/EuimAvatarModule.html +19 -6
- package/docs/{components/BaseComponent.html → modules/EuimControlFeedbackModule.html} +59 -80
- package/docs/modules/EuimEmptyListPlaceholderModule.html +19 -6
- package/docs/modules/EuimFieldsetModule.html +178 -0
- package/docs/modules/EuimLabelModule.html +19 -6
- package/docs/modules/EuimLanguageSelectorModule.html +25 -6
- package/docs/modules/{EuimPageComponentModule.html → EuimListHeaderModule.html} +23 -10
- package/docs/modules/{EuimPageHeaderComponentModule.html → EuimMenuModule.html} +23 -10
- package/docs/modules/EuimMessageModule.html +33 -8
- package/docs/modules/EuimStepperComponentModule.html +19 -6
- package/docs/modules/EuimToolbarComponentModule.html +187 -0
- package/docs/modules/EuimUserProfileModule.html +26 -25
- package/docs/modules.html +82 -22
- package/docs/properties.html +124 -0
- package/docs/styles/bootstrap.min.css +4 -3
- package/docs/styles/compodoc.css +120 -34
- package/docs/styles/dark.css +117 -0
- package/docs/styles/laravel.css +50 -6
- package/docs/styles/material.css +29 -7
- package/docs/styles/original.css +10 -6
- package/docs/styles/postmark.css +21 -7
- package/docs/styles/prism.css +169 -135
- package/docs/styles/readthedocs.css +20 -11
- package/docs/styles/reset.css +115 -34
- package/docs/styles/stripe.css +46 -5
- package/docs/styles/vagrant.css +40 -6
- package/esm2020/eui-mobile-core.mjs +5 -0
- package/esm2020/index.mjs +5 -0
- package/esm2020/lib/components/atoms/euim-control-feedback/euim-control-feedback.component.mjs +101 -0
- package/esm2020/lib/components/atoms/euim-control-feedback/euim-control-feedback.module.mjs +29 -0
- package/esm2020/lib/components/atoms/euim-control-feedback/index.mjs +3 -0
- package/esm2020/lib/components/atoms/euim-label/euim-label.component.mjs +52 -0
- package/esm2020/lib/components/atoms/euim-label/euim-label.module.mjs +29 -0
- package/esm2020/lib/components/atoms/euim-label/index.mjs +3 -0
- package/esm2020/lib/components/directives/euim-list-header/euim-list-header.directive.mjs +21 -0
- package/esm2020/lib/components/directives/euim-list-header/euim-list-header.module.mjs +29 -0
- package/esm2020/lib/components/directives/euim-list-header/index.mjs +3 -0
- package/esm2020/lib/components/euim-avatar/euim-avatar.component.mjs +48 -0
- package/esm2020/lib/components/euim-avatar/euim-avatar.module.mjs +29 -0
- package/esm2020/lib/components/euim-avatar/index.mjs +3 -0
- package/esm2020/lib/components/euim-base.directive.mjs +132 -0
- package/esm2020/lib/components/euim-empty-list-placeholder/euim-empty-list-placeholder.component.mjs +64 -0
- package/esm2020/lib/components/euim-empty-list-placeholder/euim-empty-list-placeholder.module.mjs +33 -0
- package/esm2020/lib/components/euim-empty-list-placeholder/index.mjs +3 -0
- package/esm2020/lib/components/euim-fieldset/euim-fieldset-actions/euim-fieldset-actions.component.mjs +25 -0
- package/esm2020/lib/components/euim-fieldset/euim-fieldset-legend/euim-fieldset-legend.component.mjs +25 -0
- package/esm2020/lib/components/euim-fieldset/euim-fieldset.component.mjs +31 -0
- package/esm2020/lib/components/euim-fieldset/euim-fieldset.module.mjs +40 -0
- package/esm2020/lib/components/euim-fieldset/index.mjs +5 -0
- package/esm2020/lib/components/euim-menu/euim-menu.component.mjs +85 -0
- package/esm2020/lib/components/euim-menu/euim-menu.module.mjs +33 -0
- package/esm2020/lib/components/euim-menu/index.mjs +4 -0
- package/esm2020/lib/components/euim-menu/models/eui-menu-item.model.mjs +7 -0
- package/esm2020/lib/components/euim-message/euim-message-title/euim-message-title.component.mjs +24 -0
- package/esm2020/lib/components/euim-message/euim-message.component.mjs +126 -0
- package/esm2020/lib/components/euim-message/euim-message.module.mjs +36 -0
- package/esm2020/lib/components/euim-message/index.mjs +4 -0
- package/esm2020/lib/components/euim-stepper/euim-steper.module.mjs +33 -0
- package/esm2020/lib/components/euim-stepper/euim-stepper.component.mjs +99 -0
- package/esm2020/lib/components/euim-stepper/index.mjs +3 -0
- package/esm2020/lib/components/index.mjs +14 -0
- package/esm2020/lib/components/layout/euim-app/euim-app-sidebar/index.mjs +6 -0
- package/esm2020/lib/components/layout/euim-app/euim-app-sidebar/sidebar-footer/sidebar-footer.component.mjs +25 -0
- package/esm2020/lib/components/layout/euim-app/euim-app-sidebar/sidebar-header/sidebar-header.component.mjs +15 -0
- package/esm2020/lib/components/layout/euim-app/euim-app-sidebar/sidebar-menu/sidebar-menu.component.mjs +28 -0
- package/esm2020/lib/components/layout/euim-app/euim-app-sidebar/sidebar.component.mjs +37 -0
- package/esm2020/lib/components/layout/euim-app/euim-app-sidebar/sidebar.module.mjs +49 -0
- package/esm2020/lib/components/layout/euim-app/euim-app.component.mjs +32 -0
- package/esm2020/lib/components/layout/euim-app/euim-app.module.mjs +37 -0
- package/esm2020/lib/components/layout/euim-app/index.mjs +4 -0
- package/esm2020/lib/components/layout/euim-language-selector/euim-language-list.component.mjs +87 -0
- package/esm2020/lib/components/layout/euim-language-selector/euim-language-selector.component.mjs +96 -0
- package/esm2020/lib/components/layout/euim-language-selector/euim-language-selector.module.mjs +49 -0
- package/esm2020/lib/components/layout/euim-language-selector/index.mjs +4 -0
- package/esm2020/lib/components/layout/euim-toolbar/euim-toolbar-action-items/euim-toolbar-action-items.component.mjs +24 -0
- package/esm2020/lib/components/layout/euim-toolbar/euim-toolbar-title/euim-toolbar-title.component.mjs +24 -0
- package/esm2020/lib/components/layout/euim-toolbar/euim-toolbar.component.mjs +89 -0
- package/esm2020/lib/components/layout/euim-toolbar/euim-toolbar.module.mjs +47 -0
- package/esm2020/lib/components/layout/euim-toolbar/index.mjs +5 -0
- package/esm2020/lib/components/layout/euim-user-profile/euim-user-profile-action/euim-user-profile-action.component.mjs +27 -0
- package/esm2020/lib/components/layout/euim-user-profile/euim-user-profile-avatar/euim-user-profile-avatar.component.mjs +24 -0
- package/esm2020/lib/components/layout/euim-user-profile/euim-user-profile-infos/euim-user-profile-infos.component.mjs +24 -0
- package/esm2020/lib/components/layout/euim-user-profile/euim-user-profile-infos-item/euim-user-profile-infos-item.component.mjs +24 -0
- package/esm2020/lib/components/layout/euim-user-profile/euim-user-profile.component.mjs +28 -0
- package/esm2020/lib/components/layout/euim-user-profile/euim-user-profile.module.mjs +48 -0
- package/esm2020/lib/components/layout/euim-user-profile/index.mjs +7 -0
- package/esm2020/lib/euim-all.module.mjs +93 -0
- package/esm2020/lib/services/euim-app.service.mjs +35 -0
- package/esm2020/lib/services/index.mjs +2 -0
- package/fesm2015/eui-mobile-core.mjs +2116 -0
- package/fesm2015/eui-mobile-core.mjs.map +1 -0
- package/fesm2020/eui-mobile-core.mjs +1877 -0
- package/fesm2020/eui-mobile-core.mjs.map +1 -0
- package/lib/components/atoms/euim-control-feedback/euim-control-feedback.component.d.ts +26 -0
- package/lib/components/atoms/euim-control-feedback/euim-control-feedback.module.d.ts +9 -0
- package/lib/components/atoms/euim-control-feedback/index.d.ts +2 -0
- package/lib/components/atoms/euim-label/euim-label.component.d.ts +2 -2
- package/lib/components/atoms/euim-label/euim-label.module.d.ts +3 -2
- package/lib/components/directives/euim-list-header/euim-list-header.directive.d.ts +6 -0
- package/lib/components/directives/euim-list-header/euim-list-header.module.d.ts +9 -0
- package/lib/components/directives/euim-list-header/index.d.ts +2 -0
- package/lib/components/euim-avatar/euim-avatar.component.d.ts +2 -2
- package/lib/components/euim-avatar/euim-avatar.module.d.ts +3 -2
- package/lib/components/euim-base.directive.d.ts +5 -2
- package/lib/components/euim-empty-list-placeholder/euim-empty-list-placeholder.component.d.ts +4 -5
- package/lib/components/euim-empty-list-placeholder/euim-empty-list-placeholder.module.d.ts +3 -2
- package/lib/components/euim-fieldset/euim-fieldset-actions/euim-fieldset-actions.component.d.ts +7 -0
- package/lib/components/euim-fieldset/euim-fieldset-legend/euim-fieldset-legend.component.d.ts +7 -0
- package/lib/components/euim-fieldset/euim-fieldset.component.d.ts +7 -0
- package/lib/components/euim-fieldset/euim-fieldset.module.d.ts +11 -0
- package/lib/components/euim-fieldset/index.d.ts +4 -0
- package/lib/components/euim-menu/euim-menu.component.d.ts +14 -0
- package/lib/components/euim-menu/euim-menu.module.d.ts +10 -0
- package/lib/components/euim-menu/index.d.ts +3 -0
- package/lib/components/euim-menu/models/eui-menu-item.model.d.ts +12 -0
- package/lib/components/euim-message/euim-message-title/euim-message-title.component.d.ts +7 -0
- package/lib/components/euim-message/euim-message.component.d.ts +5 -3
- package/lib/components/euim-message/euim-message.module.d.ts +6 -4
- package/lib/components/euim-message/index.d.ts +1 -0
- package/lib/components/euim-stepper/euim-steper.module.d.ts +3 -2
- package/lib/components/euim-stepper/euim-stepper.component.d.ts +3 -4
- package/lib/components/index.d.ts +9 -6
- package/lib/components/layout/euim-app/euim-app-sidebar/index.d.ts +5 -0
- package/lib/components/layout/euim-app/euim-app-sidebar/sidebar-footer/sidebar-footer.component.d.ts +9 -0
- package/lib/components/layout/euim-app/euim-app-sidebar/sidebar-header/sidebar-header.component.d.ts +5 -0
- package/lib/components/layout/euim-app/euim-app-sidebar/sidebar-menu/sidebar-menu.component.d.ts +11 -0
- package/lib/components/layout/euim-app/euim-app-sidebar/sidebar.component.d.ts +9 -0
- package/lib/components/layout/euim-app/euim-app-sidebar/sidebar.module.d.ts +14 -0
- package/lib/components/layout/euim-app/euim-app.component.d.ts +4 -7
- package/lib/components/layout/euim-app/euim-app.module.d.ts +5 -2
- package/lib/components/layout/euim-app/index.d.ts +1 -0
- package/lib/components/layout/euim-language-selector/euim-language-list.component.d.ts +25 -0
- package/lib/components/layout/euim-language-selector/euim-language-selector.component.d.ts +11 -8
- package/lib/components/layout/euim-language-selector/euim-language-selector.module.d.ts +7 -5
- package/lib/components/layout/euim-language-selector/index.d.ts +1 -0
- package/lib/components/layout/euim-toolbar/euim-toolbar-action-items/euim-toolbar-action-items.component.d.ts +7 -0
- package/lib/components/layout/euim-toolbar/euim-toolbar-title/euim-toolbar-title.component.d.ts +7 -0
- package/lib/components/layout/euim-toolbar/euim-toolbar.component.d.ts +15 -0
- package/lib/components/layout/euim-toolbar/euim-toolbar.module.d.ts +13 -0
- package/lib/components/layout/euim-toolbar/index.d.ts +4 -0
- package/lib/components/layout/euim-user-profile/{user-profile-action/user-profile-action.component.d.ts → euim-user-profile-action/euim-user-profile-action.component.d.ts} +2 -2
- package/lib/components/layout/euim-user-profile/{user-profile-avatar/user-profile-avatar.component.d.ts → euim-user-profile-avatar/euim-user-profile-avatar.component.d.ts} +2 -2
- package/lib/components/layout/euim-user-profile/{user-profile-infos/user-profile-infos.component.d.ts → euim-user-profile-infos/euim-user-profile-infos.component.d.ts} +2 -2
- package/lib/components/layout/euim-user-profile/{user-profile-infos-item/user-profile-infos-item.component.d.ts → euim-user-profile-infos-item/euim-user-profile-infos-item.component.d.ts} +2 -2
- package/lib/components/layout/euim-user-profile/{user-profile.component.d.ts → euim-user-profile.component.d.ts} +2 -2
- package/lib/components/layout/euim-user-profile/{user-profile.module.d.ts → euim-user-profile.module.d.ts} +8 -7
- package/lib/components/layout/euim-user-profile/index.d.ts +6 -6
- package/lib/euim-all.module.d.ts +16 -11
- package/lib/services/euim-app.service.d.ts +5 -11
- package/package.json +26 -13
- package/bundles/eui-mobile-core.umd.js +0 -1976
- package/bundles/eui-mobile-core.umd.js.map +0 -1
- package/bundles/eui-mobile-core.umd.min.js +0 -17
- package/bundles/eui-mobile-core.umd.min.js.map +0 -1
- package/docs/components/EuimPageHeaderComponent.html +0 -197
- package/esm2015/eui-mobile-core.js +0 -5
- package/esm2015/index.js +0 -5
- package/esm2015/lib/components/atoms/euim-label/euim-label.component.js +0 -58
- package/esm2015/lib/components/atoms/euim-label/euim-label.module.js +0 -30
- package/esm2015/lib/components/atoms/euim-label/index.js +0 -3
- package/esm2015/lib/components/euim-avatar/euim-avatar.component.js +0 -54
- package/esm2015/lib/components/euim-avatar/euim-avatar.module.js +0 -30
- package/esm2015/lib/components/euim-avatar/index.js +0 -3
- package/esm2015/lib/components/euim-base.directive.js +0 -126
- package/esm2015/lib/components/euim-empty-list-placeholder/euim-empty-list-placeholder.component.js +0 -72
- package/esm2015/lib/components/euim-empty-list-placeholder/euim-empty-list-placeholder.module.js +0 -34
- package/esm2015/lib/components/euim-empty-list-placeholder/index.js +0 -3
- package/esm2015/lib/components/euim-message/euim-message.component.js +0 -120
- package/esm2015/lib/components/euim-message/euim-message.module.js +0 -30
- package/esm2015/lib/components/euim-message/index.js +0 -3
- package/esm2015/lib/components/euim-stepper/euim-steper.module.js +0 -34
- package/esm2015/lib/components/euim-stepper/euim-stepper.component.js +0 -120
- package/esm2015/lib/components/euim-stepper/index.js +0 -3
- package/esm2015/lib/components/index.js +0 -11
- package/esm2015/lib/components/layout/euim-app/euim-app.component.js +0 -36
- package/esm2015/lib/components/layout/euim-app/euim-app.module.js +0 -30
- package/esm2015/lib/components/layout/euim-app/index.js +0 -3
- package/esm2015/lib/components/layout/euim-language-selector/euim-language-selector.component.js +0 -99
- package/esm2015/lib/components/layout/euim-language-selector/euim-language-selector.module.js +0 -45
- package/esm2015/lib/components/layout/euim-language-selector/index.js +0 -3
- package/esm2015/lib/components/layout/euim-page/euim-page.component.js +0 -26
- package/esm2015/lib/components/layout/euim-page/euim-page.module.js +0 -34
- package/esm2015/lib/components/layout/euim-page/index.js +0 -3
- package/esm2015/lib/components/layout/euim-page-header/euim-page-header.component.js +0 -28
- package/esm2015/lib/components/layout/euim-page-header/euim-page-header.module.js +0 -34
- package/esm2015/lib/components/layout/euim-page-header/index.js +0 -3
- package/esm2015/lib/components/layout/euim-user-profile/index.js +0 -7
- package/esm2015/lib/components/layout/euim-user-profile/user-profile-action/user-profile-action.component.js +0 -30
- package/esm2015/lib/components/layout/euim-user-profile/user-profile-avatar/user-profile-avatar.component.js +0 -30
- package/esm2015/lib/components/layout/euim-user-profile/user-profile-infos/user-profile-infos.component.js +0 -30
- package/esm2015/lib/components/layout/euim-user-profile/user-profile-infos-item/user-profile-infos-item.component.js +0 -30
- package/esm2015/lib/components/layout/euim-user-profile/user-profile.component.js +0 -38
- package/esm2015/lib/components/layout/euim-user-profile/user-profile.module.js +0 -49
- package/esm2015/lib/euim-all.module.js +0 -73
- package/esm2015/lib/model/euim-base.event.js +0 -9
- package/esm2015/lib/services/euim-app.service.js +0 -51
- package/esm2015/lib/services/index.js +0 -2
- package/eui-mobile-core.d.ts +0 -5
- package/fesm2015/eui-mobile-core.js +0 -1269
- package/fesm2015/eui-mobile-core.js.map +0 -1
- package/lib/components/layout/euim-page/euim-page.component.d.ts +0 -6
- package/lib/components/layout/euim-page/euim-page.module.d.ts +0 -9
- package/lib/components/layout/euim-page/index.d.ts +0 -2
- package/lib/components/layout/euim-page-header/euim-page-header.component.d.ts +0 -6
- package/lib/components/layout/euim-page-header/euim-page-header.module.d.ts +0 -9
- package/lib/components/layout/euim-page-header/index.d.ts +0 -2
- package/lib/model/euim-base.event.d.ts +0 -5
|
@@ -0,0 +1,463 @@
|
|
|
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>csdr 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
|
+
|
|
17
|
+
<div class="navbar navbar-default navbar-fixed-top visible-xs">
|
|
18
|
+
<a href="../" class="navbar-brand">csdr documentation</a>
|
|
19
|
+
<button type="button" class="btn btn-default btn-menu ion-ios-menu" id="btn-menu"></button>
|
|
20
|
+
</div>
|
|
21
|
+
|
|
22
|
+
<div class="xs-menu menu" id="mobile-menu">
|
|
23
|
+
<div id="book-search-input" role="search"><input type="text" placeholder="Type to search"></div> <compodoc-menu></compodoc-menu>
|
|
24
|
+
</div>
|
|
25
|
+
|
|
26
|
+
<div class="container-fluid main">
|
|
27
|
+
<div class="row main">
|
|
28
|
+
<div class="hidden-xs menu">
|
|
29
|
+
<compodoc-menu mode="normal"></compodoc-menu>
|
|
30
|
+
</div>
|
|
31
|
+
<!-- START CONTENT -->
|
|
32
|
+
<div class="content class">
|
|
33
|
+
<div class="content-data">
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
<ol class="breadcrumb">
|
|
47
|
+
<li>Classes</li>
|
|
48
|
+
<li >EuimMenuItem</li>
|
|
49
|
+
</ol>
|
|
50
|
+
|
|
51
|
+
<ul class="nav nav-tabs" role="tablist">
|
|
52
|
+
<li class="active">
|
|
53
|
+
<a href="#info" role="tab" id="info-tab" data-toggle="tab" data-link="info">Info</a>
|
|
54
|
+
</li>
|
|
55
|
+
</ul>
|
|
56
|
+
|
|
57
|
+
<div class="tab-content">
|
|
58
|
+
<div class="tab-pane fade active in" id="c-info">
|
|
59
|
+
<p class="comment">
|
|
60
|
+
<h3>File</h3>
|
|
61
|
+
</p>
|
|
62
|
+
<p class="comment">
|
|
63
|
+
<code>packages/eui-mobile/packages/core/src/lib/components/euim-menu/models/eui-menu-item.model.ts</code>
|
|
64
|
+
</p>
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
<section>
|
|
72
|
+
<h3 id="index">Index</h3>
|
|
73
|
+
<table class="table table-sm table-bordered index-table">
|
|
74
|
+
<tbody>
|
|
75
|
+
<tr>
|
|
76
|
+
<td class="col-md-4">
|
|
77
|
+
<h6><b>Properties</b></h6>
|
|
78
|
+
</td>
|
|
79
|
+
</tr>
|
|
80
|
+
<tr>
|
|
81
|
+
<td class="col-md-4">
|
|
82
|
+
<ul class="index-list">
|
|
83
|
+
<li>
|
|
84
|
+
<span class="modifier">Optional</span>
|
|
85
|
+
<a href="#children" >children</a>
|
|
86
|
+
</li>
|
|
87
|
+
<li>
|
|
88
|
+
<span class="modifier">Optional</span>
|
|
89
|
+
<a href="#disabled" >disabled</a>
|
|
90
|
+
</li>
|
|
91
|
+
<li>
|
|
92
|
+
<span class="modifier">Optional</span>
|
|
93
|
+
<a href="#expanded" >expanded</a>
|
|
94
|
+
</li>
|
|
95
|
+
<li>
|
|
96
|
+
<span class="modifier">Optional</span>
|
|
97
|
+
<a href="#icon" >icon</a>
|
|
98
|
+
</li>
|
|
99
|
+
<li>
|
|
100
|
+
<span class="modifier">Optional</span>
|
|
101
|
+
<a href="#iconColor" >iconColor</a>
|
|
102
|
+
</li>
|
|
103
|
+
<li>
|
|
104
|
+
<span class="modifier">Optional</span>
|
|
105
|
+
<a href="#label" >label</a>
|
|
106
|
+
</li>
|
|
107
|
+
<li>
|
|
108
|
+
<span class="modifier">Optional</span>
|
|
109
|
+
<a href="#lines" >lines</a>
|
|
110
|
+
</li>
|
|
111
|
+
<li>
|
|
112
|
+
<span class="modifier">Optional</span>
|
|
113
|
+
<a href="#subtitle" >subtitle</a>
|
|
114
|
+
</li>
|
|
115
|
+
<li>
|
|
116
|
+
<span class="modifier">Optional</span>
|
|
117
|
+
<a href="#url" >url</a>
|
|
118
|
+
</li>
|
|
119
|
+
</ul>
|
|
120
|
+
</td>
|
|
121
|
+
</tr>
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
</tbody>
|
|
129
|
+
</table>
|
|
130
|
+
</section>
|
|
131
|
+
|
|
132
|
+
<section>
|
|
133
|
+
<h3 id="constructor">Constructor</h3>
|
|
134
|
+
<table class="table table-sm table-bordered">
|
|
135
|
+
<tbody>
|
|
136
|
+
<tr>
|
|
137
|
+
<td class="col-md-4">
|
|
138
|
+
<code>constructor(values: <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object" target="_blank">Object</a>)</code>
|
|
139
|
+
</td>
|
|
140
|
+
</tr>
|
|
141
|
+
|
|
142
|
+
<tr>
|
|
143
|
+
<td class="col-md-4">
|
|
144
|
+
<div>
|
|
145
|
+
<b>Parameters :</b>
|
|
146
|
+
<table class="params">
|
|
147
|
+
<thead>
|
|
148
|
+
<tr>
|
|
149
|
+
<td>Name</td>
|
|
150
|
+
<td>Type</td>
|
|
151
|
+
<td>Optional</td>
|
|
152
|
+
</tr>
|
|
153
|
+
</thead>
|
|
154
|
+
<tbody>
|
|
155
|
+
<tr>
|
|
156
|
+
<td>values</td>
|
|
157
|
+
|
|
158
|
+
<td>
|
|
159
|
+
<code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object" target="_blank" >Object</a></code>
|
|
160
|
+
</td>
|
|
161
|
+
|
|
162
|
+
<td>
|
|
163
|
+
No
|
|
164
|
+
</td>
|
|
165
|
+
|
|
166
|
+
</tr>
|
|
167
|
+
</tbody>
|
|
168
|
+
</table>
|
|
169
|
+
</div>
|
|
170
|
+
</td>
|
|
171
|
+
</tr>
|
|
172
|
+
</tbody>
|
|
173
|
+
</table>
|
|
174
|
+
</section>
|
|
175
|
+
|
|
176
|
+
<section>
|
|
177
|
+
|
|
178
|
+
<h3 id="inputs">
|
|
179
|
+
Properties
|
|
180
|
+
</h3>
|
|
181
|
+
<table class="table table-sm table-bordered">
|
|
182
|
+
<tbody>
|
|
183
|
+
<tr>
|
|
184
|
+
<td class="col-md-4">
|
|
185
|
+
<a name="children"></a>
|
|
186
|
+
<span class="name">
|
|
187
|
+
<span class="modifier">Optional</span>
|
|
188
|
+
<span ><b>children</b></span>
|
|
189
|
+
<a href="#children"><span class="icon ion-ios-link"></span></a>
|
|
190
|
+
</span>
|
|
191
|
+
</td>
|
|
192
|
+
</tr>
|
|
193
|
+
<tr>
|
|
194
|
+
<td class="col-md-4">
|
|
195
|
+
<i>Type : </i> <code><a href="../classes/EuimMenuItem.html" target="_self" >EuimMenuItem[]</a></code>
|
|
196
|
+
|
|
197
|
+
</td>
|
|
198
|
+
</tr>
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
</tbody>
|
|
202
|
+
</table>
|
|
203
|
+
<table class="table table-sm table-bordered">
|
|
204
|
+
<tbody>
|
|
205
|
+
<tr>
|
|
206
|
+
<td class="col-md-4">
|
|
207
|
+
<a name="disabled"></a>
|
|
208
|
+
<span class="name">
|
|
209
|
+
<span class="modifier">Optional</span>
|
|
210
|
+
<span ><b>disabled</b></span>
|
|
211
|
+
<a href="#disabled"><span class="icon ion-ios-link"></span></a>
|
|
212
|
+
</span>
|
|
213
|
+
</td>
|
|
214
|
+
</tr>
|
|
215
|
+
<tr>
|
|
216
|
+
<td class="col-md-4">
|
|
217
|
+
<i>Type : </i> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/boolean" target="_blank" >boolean</a></code>
|
|
218
|
+
|
|
219
|
+
</td>
|
|
220
|
+
</tr>
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
</tbody>
|
|
224
|
+
</table>
|
|
225
|
+
<table class="table table-sm table-bordered">
|
|
226
|
+
<tbody>
|
|
227
|
+
<tr>
|
|
228
|
+
<td class="col-md-4">
|
|
229
|
+
<a name="expanded"></a>
|
|
230
|
+
<span class="name">
|
|
231
|
+
<span class="modifier">Optional</span>
|
|
232
|
+
<span ><b>expanded</b></span>
|
|
233
|
+
<a href="#expanded"><span class="icon ion-ios-link"></span></a>
|
|
234
|
+
</span>
|
|
235
|
+
</td>
|
|
236
|
+
</tr>
|
|
237
|
+
<tr>
|
|
238
|
+
<td class="col-md-4">
|
|
239
|
+
<i>Type : </i> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/boolean" target="_blank" >boolean</a></code>
|
|
240
|
+
|
|
241
|
+
</td>
|
|
242
|
+
</tr>
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
</tbody>
|
|
246
|
+
</table>
|
|
247
|
+
<table class="table table-sm table-bordered">
|
|
248
|
+
<tbody>
|
|
249
|
+
<tr>
|
|
250
|
+
<td class="col-md-4">
|
|
251
|
+
<a name="icon"></a>
|
|
252
|
+
<span class="name">
|
|
253
|
+
<span class="modifier">Optional</span>
|
|
254
|
+
<span ><b>icon</b></span>
|
|
255
|
+
<a href="#icon"><span class="icon ion-ios-link"></span></a>
|
|
256
|
+
</span>
|
|
257
|
+
</td>
|
|
258
|
+
</tr>
|
|
259
|
+
<tr>
|
|
260
|
+
<td class="col-md-4">
|
|
261
|
+
<i>Type : </i> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target="_blank" >string</a></code>
|
|
262
|
+
|
|
263
|
+
</td>
|
|
264
|
+
</tr>
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
</tbody>
|
|
268
|
+
</table>
|
|
269
|
+
<table class="table table-sm table-bordered">
|
|
270
|
+
<tbody>
|
|
271
|
+
<tr>
|
|
272
|
+
<td class="col-md-4">
|
|
273
|
+
<a name="iconColor"></a>
|
|
274
|
+
<span class="name">
|
|
275
|
+
<span class="modifier">Optional</span>
|
|
276
|
+
<span ><b>iconColor</b></span>
|
|
277
|
+
<a href="#iconColor"><span class="icon ion-ios-link"></span></a>
|
|
278
|
+
</span>
|
|
279
|
+
</td>
|
|
280
|
+
</tr>
|
|
281
|
+
<tr>
|
|
282
|
+
<td class="col-md-4">
|
|
283
|
+
<i>Type : </i> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target="_blank" >string</a></code>
|
|
284
|
+
|
|
285
|
+
</td>
|
|
286
|
+
</tr>
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
</tbody>
|
|
290
|
+
</table>
|
|
291
|
+
<table class="table table-sm table-bordered">
|
|
292
|
+
<tbody>
|
|
293
|
+
<tr>
|
|
294
|
+
<td class="col-md-4">
|
|
295
|
+
<a name="label"></a>
|
|
296
|
+
<span class="name">
|
|
297
|
+
<span class="modifier">Optional</span>
|
|
298
|
+
<span ><b>label</b></span>
|
|
299
|
+
<a href="#label"><span class="icon ion-ios-link"></span></a>
|
|
300
|
+
</span>
|
|
301
|
+
</td>
|
|
302
|
+
</tr>
|
|
303
|
+
<tr>
|
|
304
|
+
<td class="col-md-4">
|
|
305
|
+
<i>Type : </i> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target="_blank" >string</a></code>
|
|
306
|
+
|
|
307
|
+
</td>
|
|
308
|
+
</tr>
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
</tbody>
|
|
312
|
+
</table>
|
|
313
|
+
<table class="table table-sm table-bordered">
|
|
314
|
+
<tbody>
|
|
315
|
+
<tr>
|
|
316
|
+
<td class="col-md-4">
|
|
317
|
+
<a name="lines"></a>
|
|
318
|
+
<span class="name">
|
|
319
|
+
<span class="modifier">Optional</span>
|
|
320
|
+
<span ><b>lines</b></span>
|
|
321
|
+
<a href="#lines"><span class="icon ion-ios-link"></span></a>
|
|
322
|
+
</span>
|
|
323
|
+
</td>
|
|
324
|
+
</tr>
|
|
325
|
+
<tr>
|
|
326
|
+
<td class="col-md-4">
|
|
327
|
+
<i>Type : </i> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target="_blank" >string</a></code>
|
|
328
|
+
|
|
329
|
+
</td>
|
|
330
|
+
</tr>
|
|
331
|
+
<tr>
|
|
332
|
+
<td class="col-md-4">
|
|
333
|
+
<i>Default value : </i><code>'none'</code>
|
|
334
|
+
</td>
|
|
335
|
+
</tr>
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
</tbody>
|
|
339
|
+
</table>
|
|
340
|
+
<table class="table table-sm table-bordered">
|
|
341
|
+
<tbody>
|
|
342
|
+
<tr>
|
|
343
|
+
<td class="col-md-4">
|
|
344
|
+
<a name="subtitle"></a>
|
|
345
|
+
<span class="name">
|
|
346
|
+
<span class="modifier">Optional</span>
|
|
347
|
+
<span ><b>subtitle</b></span>
|
|
348
|
+
<a href="#subtitle"><span class="icon ion-ios-link"></span></a>
|
|
349
|
+
</span>
|
|
350
|
+
</td>
|
|
351
|
+
</tr>
|
|
352
|
+
<tr>
|
|
353
|
+
<td class="col-md-4">
|
|
354
|
+
<i>Type : </i> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target="_blank" >string</a></code>
|
|
355
|
+
|
|
356
|
+
</td>
|
|
357
|
+
</tr>
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
</tbody>
|
|
361
|
+
</table>
|
|
362
|
+
<table class="table table-sm table-bordered">
|
|
363
|
+
<tbody>
|
|
364
|
+
<tr>
|
|
365
|
+
<td class="col-md-4">
|
|
366
|
+
<a name="url"></a>
|
|
367
|
+
<span class="name">
|
|
368
|
+
<span class="modifier">Optional</span>
|
|
369
|
+
<span ><b>url</b></span>
|
|
370
|
+
<a href="#url"><span class="icon ion-ios-link"></span></a>
|
|
371
|
+
</span>
|
|
372
|
+
</td>
|
|
373
|
+
</tr>
|
|
374
|
+
<tr>
|
|
375
|
+
<td class="col-md-4">
|
|
376
|
+
<i>Type : </i> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target="_blank" >string</a></code>
|
|
377
|
+
|
|
378
|
+
</td>
|
|
379
|
+
</tr>
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
</tbody>
|
|
383
|
+
</table>
|
|
384
|
+
</section>
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
</div>
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
</div>
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
</div><div class="search-results">
|
|
406
|
+
<div class="has-results">
|
|
407
|
+
<h1 class="search-results-title"><span class='search-results-count'></span> results matching "<span class='search-query'></span>"</h1>
|
|
408
|
+
<ul class="search-results-list"></ul>
|
|
409
|
+
</div>
|
|
410
|
+
<div class="no-results">
|
|
411
|
+
<h1 class="search-results-title">No results matching "<span class='search-query'></span>"</h1>
|
|
412
|
+
</div>
|
|
413
|
+
</div>
|
|
414
|
+
</div>
|
|
415
|
+
<!-- END CONTENT -->
|
|
416
|
+
</div>
|
|
417
|
+
</div>
|
|
418
|
+
|
|
419
|
+
<label class="dark-mode-switch">
|
|
420
|
+
<input type="checkbox">
|
|
421
|
+
<span class="slider">
|
|
422
|
+
<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">
|
|
423
|
+
<path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"></path>
|
|
424
|
+
</svg>
|
|
425
|
+
</span>
|
|
426
|
+
</label>
|
|
427
|
+
|
|
428
|
+
<script>
|
|
429
|
+
var COMPODOC_CURRENT_PAGE_DEPTH = 1;
|
|
430
|
+
var COMPODOC_CURRENT_PAGE_CONTEXT = 'class';
|
|
431
|
+
var COMPODOC_CURRENT_PAGE_URL = 'EuimMenuItem.html';
|
|
432
|
+
var MAX_SEARCH_RESULTS = 15;
|
|
433
|
+
</script>
|
|
434
|
+
|
|
435
|
+
<script src="../js/libs/custom-elements.min.js"></script>
|
|
436
|
+
<script src="../js/libs/lit-html.js"></script>
|
|
437
|
+
|
|
438
|
+
<script src="../js/menu-wc.js" defer></script>
|
|
439
|
+
<script nomodule src="../js/menu-wc_es5.js" defer></script>
|
|
440
|
+
|
|
441
|
+
<script src="../js/libs/bootstrap-native.js"></script>
|
|
442
|
+
|
|
443
|
+
<script src="../js/libs/es6-shim.min.js"></script>
|
|
444
|
+
<script src="../js/libs/EventDispatcher.js"></script>
|
|
445
|
+
<script src="../js/libs/promise.min.js"></script>
|
|
446
|
+
<script src="../js/libs/zepto.min.js"></script>
|
|
447
|
+
|
|
448
|
+
<script src="../js/compodoc.js"></script>
|
|
449
|
+
|
|
450
|
+
<script src="../js/tabs.js"></script>
|
|
451
|
+
<script src="../js/menu.js"></script>
|
|
452
|
+
<script src="../js/libs/clipboard.min.js"></script>
|
|
453
|
+
<script src="../js/libs/prism.js"></script>
|
|
454
|
+
<script src="../js/sourceCode.js"></script>
|
|
455
|
+
<script src="../js/search/search.js"></script>
|
|
456
|
+
<script src="../js/search/lunr.min.js"></script>
|
|
457
|
+
<script src="../js/search/search-lunr.js"></script>
|
|
458
|
+
<script src="../js/search/search_index.js"></script>
|
|
459
|
+
<script src="../js/lazy-load-graphs.js"></script>
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
</body>
|
|
463
|
+
</html>
|
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
9
|
|
|
10
10
|
<link rel="icon" type="image/x-icon" href="../images/favicon.ico">
|
|
11
|
-
|
|
11
|
+
<link rel="stylesheet" href="../styles/style.css">
|
|
12
|
+
<link rel="stylesheet" href="../styles/dark.css">
|
|
12
13
|
<link rel="stylesheet" href="../styles/material.css">
|
|
13
14
|
</head>
|
|
14
15
|
<body>
|
|
@@ -41,9 +42,10 @@
|
|
|
41
42
|
|
|
42
43
|
|
|
43
44
|
|
|
45
|
+
|
|
44
46
|
<ol class="breadcrumb">
|
|
45
47
|
<li>Classes</li>
|
|
46
|
-
<li>EuimStepperChangeEvent</li>
|
|
48
|
+
<li >EuimStepperChangeEvent</li>
|
|
47
49
|
</ol>
|
|
48
50
|
|
|
49
51
|
<ul class="nav nav-tabs" role="tablist">
|
|
@@ -62,12 +64,7 @@
|
|
|
62
64
|
</p>
|
|
63
65
|
|
|
64
66
|
|
|
65
|
-
|
|
66
|
-
<h3>Extends</h3>
|
|
67
|
-
</p>
|
|
68
|
-
<p class="comment">
|
|
69
|
-
<code><a href="../classes/EuimBaseEvent.html" target="_self" >EuimBaseEvent</a></code>
|
|
70
|
-
</p>
|
|
67
|
+
|
|
71
68
|
|
|
72
69
|
|
|
73
70
|
|
|
@@ -85,26 +82,12 @@
|
|
|
85
82
|
<ul class="index-list">
|
|
86
83
|
<li>
|
|
87
84
|
<span class="modifier">Public</span>
|
|
88
|
-
<a href="#currentStep">currentStep</a>
|
|
85
|
+
<a href="#currentStep" >currentStep</a>
|
|
89
86
|
</li>
|
|
90
87
|
</ul>
|
|
91
88
|
</td>
|
|
92
89
|
</tr>
|
|
93
90
|
|
|
94
|
-
<tr>
|
|
95
|
-
<td class="col-md-4">
|
|
96
|
-
<h6><b>Methods</b></h6>
|
|
97
|
-
</td>
|
|
98
|
-
</tr>
|
|
99
|
-
<tr>
|
|
100
|
-
<td class="col-md-4">
|
|
101
|
-
<ul class="index-list">
|
|
102
|
-
<li>
|
|
103
|
-
<a href="#preventDefault">preventDefault</a>
|
|
104
|
-
</li>
|
|
105
|
-
</ul>
|
|
106
|
-
</td>
|
|
107
|
-
</tr>
|
|
108
91
|
|
|
109
92
|
|
|
110
93
|
|
|
@@ -160,70 +143,29 @@
|
|
|
160
143
|
|
|
161
144
|
<section>
|
|
162
145
|
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
</h3>
|
|
166
|
-
<table class="table table-sm table-bordered">
|
|
167
|
-
<tbody>
|
|
168
|
-
<tr>
|
|
169
|
-
<td class="col-md-4">
|
|
170
|
-
<a name="currentStep"></a>
|
|
171
|
-
<span class="name">
|
|
172
|
-
<b>
|
|
173
|
-
<span class="modifier">Public</span>
|
|
174
|
-
currentStep</b>
|
|
175
|
-
<a href="#currentStep"><span class="icon ion-ios-link"></span></a>
|
|
176
|
-
</span>
|
|
177
|
-
</td>
|
|
178
|
-
</tr>
|
|
179
|
-
<tr>
|
|
180
|
-
<td class="col-md-4">
|
|
181
|
-
<i>Type : </i> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/number" target="_blank" >number</a></code>
|
|
182
|
-
|
|
183
|
-
</td>
|
|
184
|
-
</tr>
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
</tbody>
|
|
188
|
-
</table>
|
|
189
|
-
</section>
|
|
190
|
-
|
|
191
|
-
<section>
|
|
192
|
-
|
|
193
|
-
<h3 id="methods">
|
|
194
|
-
Methods
|
|
146
|
+
<h3 id="inputs">
|
|
147
|
+
Properties
|
|
195
148
|
</h3>
|
|
196
149
|
<table class="table table-sm table-bordered">
|
|
197
150
|
<tbody>
|
|
198
151
|
<tr>
|
|
199
152
|
<td class="col-md-4">
|
|
200
|
-
<a name="
|
|
153
|
+
<a name="currentStep"></a>
|
|
201
154
|
<span class="name">
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
<a href="#preventDefault"><span class="icon ion-ios-link"></span></a>
|
|
155
|
+
<span class="modifier">Public</span>
|
|
156
|
+
<span ><b>currentStep</b></span>
|
|
157
|
+
<a href="#currentStep"><span class="icon ion-ios-link"></span></a>
|
|
206
158
|
</span>
|
|
207
159
|
</td>
|
|
208
160
|
</tr>
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
<code>
|
|
212
|
-
</td>
|
|
213
|
-
</tr>
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
161
|
+
<tr>
|
|
162
|
+
<td class="col-md-4">
|
|
163
|
+
<i>Type : </i> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/number" target="_blank" >number</a></code>
|
|
217
164
|
|
|
218
|
-
|
|
219
|
-
|
|
165
|
+
</td>
|
|
166
|
+
</tr>
|
|
220
167
|
|
|
221
|
-
<div class="io-description">
|
|
222
|
-
<b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >void</a></code>
|
|
223
168
|
|
|
224
|
-
</div>
|
|
225
|
-
</td>
|
|
226
|
-
</tr>
|
|
227
169
|
</tbody>
|
|
228
170
|
</table>
|
|
229
171
|
</section>
|
|
@@ -232,6 +174,8 @@
|
|
|
232
174
|
|
|
233
175
|
|
|
234
176
|
|
|
177
|
+
|
|
178
|
+
|
|
235
179
|
</div>
|
|
236
180
|
|
|
237
181
|
|
|
@@ -239,14 +183,15 @@
|
|
|
239
183
|
|
|
240
184
|
|
|
241
185
|
|
|
242
|
-
|
|
186
|
+
|
|
187
|
+
|
|
243
188
|
|
|
244
189
|
|
|
245
190
|
|
|
246
191
|
|
|
247
192
|
</div><div class="search-results">
|
|
248
193
|
<div class="has-results">
|
|
249
|
-
<h1 class="search-results-title"><span class='search-results-count'></span>
|
|
194
|
+
<h1 class="search-results-title"><span class='search-results-count'></span> results matching "<span class='search-query'></span>"</h1>
|
|
250
195
|
<ul class="search-results-list"></ul>
|
|
251
196
|
</div>
|
|
252
197
|
<div class="no-results">
|
|
@@ -258,6 +203,15 @@
|
|
|
258
203
|
</div>
|
|
259
204
|
</div>
|
|
260
205
|
|
|
206
|
+
<label class="dark-mode-switch">
|
|
207
|
+
<input type="checkbox">
|
|
208
|
+
<span class="slider">
|
|
209
|
+
<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">
|
|
210
|
+
<path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"></path>
|
|
211
|
+
</svg>
|
|
212
|
+
</span>
|
|
213
|
+
</label>
|
|
214
|
+
|
|
261
215
|
<script>
|
|
262
216
|
var COMPODOC_CURRENT_PAGE_DEPTH = 1;
|
|
263
217
|
var COMPODOC_CURRENT_PAGE_CONTEXT = 'class';
|
|
@@ -267,9 +221,9 @@
|
|
|
267
221
|
|
|
268
222
|
<script src="../js/libs/custom-elements.min.js"></script>
|
|
269
223
|
<script src="../js/libs/lit-html.js"></script>
|
|
270
|
-
|
|
271
|
-
<script src="../js/libs/custom-elements-es5-adapter.js" charset="utf-8" defer></script>
|
|
224
|
+
|
|
272
225
|
<script src="../js/menu-wc.js" defer></script>
|
|
226
|
+
<script nomodule src="../js/menu-wc_es5.js" defer></script>
|
|
273
227
|
|
|
274
228
|
<script src="../js/libs/bootstrap-native.js"></script>
|
|
275
229
|
|